@import url(https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400&display=swap);
/*
Button
*/
.tf-admin-btn {
  display: inline-flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #ffffff;
  color: #003c79;
  padding: 10px 25px;
  border: 1px solid #003c79;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tf-admin-btn i {
  margin-right: 8px;
  font-size: 1.125rem;
}
.tf-admin-btn:hover {
  background-color: #003c79;
  color: #ffffff;
}
.tf-admin-btn.tf-btn-secondary {
  background-color: #003c79;
  border-color: #003c79;
  color: #ffffff;
  font-weight: 600;
}
.tf-admin-btn.tf-btn-secondary:hover {
  background-color: #001f3e;
  border-color: #001f3e;
  color: #ffffff;
}
.tf-admin-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.tf-btn {
  font-size: 1rem;
  color: #ffffff;
  background-color: #003c79;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -ms-border-radius: 5px;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  display: inline-block;
  padding: 5px 20px;
  font-weight: 500;
  text-decoration: none;
  line-height: 2.1875rem;
  border: none;
  cursor: pointer;
  outline: none;
}
.tf-btn:hover {
  background-color: #002f5e;
  color: #ffffff;
  border: none;
  box-shadow: none !important;
  outline: none;
}

.tf-link-btn {
  display: inline-flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
  padding: 10px 25px;
  border: none;
  border-radius: 0;
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
  font-size: 1rem;
  color: #003c79;
}
.tf-link-btn i {
  margin-right: 8px;
  font-size: 1.125rem;
}

/*
Custom Modal
*/
.tf-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  -o-transform: scale(0.7);
  transform: scale(0.7);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tf-modal.tf-modal-show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.tf-modal .tf-modal-dialog {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - 40px);
  max-width: 100%;
  margin: 20px auto;
  position: relative;
  pointer-events: none;
}
.tf-modal .tf-modal-content {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 80%;
  max-width: 1080px;
  pointer-events: auto;
  background-color: #f5f8ff;
  outline: 0;
  margin: 0 auto;
  border-radius: 10px;
  padding: 30px;
  overflow: hidden;
}
.tf-modal .tf-modal-close {
  color: #003162;
  cursor: pointer;
  font-size: 22px;
  position: absolute;
  top: 10px;
  right: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tf-modal .tf-modal-close:hover {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

/*
Ajax Loader
*/
.tf-btn-loading {
  padding-right: 40px !important;
  position: relative;
}

.tf-btn-loading:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -7px;
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid #ffffff;
  border-left-color: transparent;
  border-radius: 50%;
  vertical-align: middle;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  -webkit-animation: tf-rotate 450ms infinite linear;
  animation: tf-rotate 450ms infinite linear;
}

@-webkit-keyframes tf-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes tf-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
body.tf-modal-open {
  overflow: hidden;
}
body.tf-modal-open .tf-modal {
  overflow-x: hidden;
  overflow-y: auto;
}
body.tf-modal-open:after {
  content: "";
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.4);
}

@media only screen and (max-width: 1024px) {
  #poststuff h2 {
    justify-content: initial;
  }
}

#poststuff h2 a {
  color: #222;
  font-size: 1.25rem;
  display: none;
}
@media only screen and (max-width: 1024px) {
  #poststuff h2 a {
    display: inline-block;
    margin-right: 15px;
  }
}

.tf-field-disable {
  user-select: none;
  opacity: 0.6;
}

.tf-field-disable.tf-field-upcoming {
  user-select: none;
  cursor: default;
}
.tf-field-disable.tf-field-upcoming * {
  cursor: default !important;
}

/*
Fontawesome
*/
.fa, .far, .fas {
  font-family: "FontAwesome" !important;
}

.tf-field.tf-field-editor iframe {
  height: 400px;
}

/* admin switcher */
.tf-booking-status-swt .tf-booking-status {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.tf-booking-status-swt .tf-booking-status span {
  font-weight: 700;
  font-size: 0.938rem;
}
.tf-booking-status-swt .tf-booking-status .switch {
  margin-left: 15px;
  position: relative;
  display: inline-block;
  width: 48px;
  height: 20px;
}
.tf-booking-status-swt .tf-booking-status .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.tf-booking-status-swt .tf-booking-status .switcher.round {
  border-radius: 20px;
}
.tf-booking-status-swt .tf-booking-status .switcher {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}

.tf-booking-status-swt .switcher.round::before {
  border-radius: 50%;
}

.tf-booking-status-swt .switcher::before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 1px;
  background: #ffffff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.tf-booking-status-swt input:checked + .switcher {
  background-color: #002C66;
}

.tf-booking-status-swt input:checked + .switcher::before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

#tf-booking-status-loader, #tf-enquiry-status-loader {
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}
#tf-booking-status-loader img, #tf-enquiry-status-loader img {
  width: 120px;
}

#tf-enquiry-status-loader {
  background-color: rgba(0, 0, 0, 0.2);
}

#tf-booking-status-loader.show, #tf-enquiry-status-loader.show {
  visibility: visible;
  opacity: 1;
}

.tf-small-btn {
  margin-left: 10px;
  font-size: 0.75rem;
  padding: 7px 15px;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content {
  overflow: hidden !important;
}

.tf-post-states {
  display: inline-block;
  font-size: 11px;
  padding: 1px 8px;
  border-radius: 10px;
  background: #333;
  color: #ffffff;
}

.tf-depend-hidden.tf-depend-on {
  display: none;
}

.tf-depend-hidden {
  display: block;
}

.csf-section .csf-field.tf-csf-disable {
  opacity: 1;
  user-select: none;
  border-top: 1px solid #eee;
}
.csf-section .csf-field.tf-csf-disable .clear:before {
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background-color: #eee;
  opacity: 0.25;
  z-index: 10;
}
.csf-section .csf-field.tf-csf-pro {
  cursor: pointer;
}

.tf-csf-disable.tf-csf-pro {
  z-index: 9999999999;
}

.tf-csf-badge .tf-upcoming {
  display: inline-block;
  color: #ffffff;
  padding: 3px 10px 3px 10px;
  border-radius: 3px;
  text-align: center;
  margin: 5px 0 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 13px;
  background: #006600;
  margin-right: 5px;
}
.tf-csf-badge .tf-pro {
  display: inline-block;
  color: #ffffff;
  padding: 3px 10px 3px 10px;
  border-radius: 3px;
  text-align: center;
  margin: 5px 0 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 13px;
  background: #b30000;
}

#tf_room_opt .unique-id {
  display: none;
}
#tf_room_opt .tf-order_id {
  display: none;
}

.tf-section-name-hidden {
  display: none;
}

button.tf-order-remove {
  background: #f44336 !important;
  border: 1px solid #f44336 !important;
  color: #ffffff !important;
  padding: 2px 18px !important;
  font-family: "lato";
  margin-top: 6px !important;
}

.document-button {
  display: block;
  background: #ddd;
  color: #050505;
  border-radius: 3px;
  line-height: 1;
  padding: 10px 15px;
  margin: 0;
  font-size: 0.875rem;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}
.document-button:hover {
  background: #135e96;
  color: #ffffff;
}

.tf-major-update-warning {
  margin-bottom: 15px;
  max-width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tf-major-update-warning + p {
  display: none;
}

.tf-major-update-warning__separator {
  margin: 15px -12px;
}

.tf-major-update-warning__icon {
  margin-right: 9px;
  margin-left: 2px;
}
.tf-major-update-warning__icon svg {
  width: 18px;
  height: 18px;
  padding: 0;
  margin: 0;
  line-height: 1;
}

.tf-major-update-warning__title {
  font-weight: 600;
  margin-bottom: 10px;
}

.notice-success .tf-major-update-warning__separator {
  border: 1px solid #46b450;
}
.notice-success .tf-major-update-warning__icon {
  fill: #79ba49;
}

.notice-warning .tf-major-update-warning__separator {
  border: 1px solid #ffb900;
}
.notice-warning .tf-major-update-warning__icon {
  fill: #f56e28;
}

#adminmenu .toplevel_page_tf_settings .dashicons-before img, #adminmenu .menu-icon-tf_tours .dashicons-before img, #adminmenu .menu-icon-tf_hotel .dashicons-before img, #adminmenu .menu-icon-tf_apartment .dashicons-before img, #adminmenu .toplevel_page_tf-multi-vendor .dashicons-before img, #adminmenu .menu-icon-tf_email_templates .dashicons-before img {
  opacity: 1;
}
#adminmenu .menu-icon-tf_hotel .dashicons-before:before {
  color: #03a9f4;
}
#adminmenu .menu-icon-tf_tours .dashicons-before:before {
  color: #ffc107;
}
#adminmenu .menu-icon-tf_apartment .dashicons-before:before {
  color: #f02348;
}

.tf-notice.tf-notice-danger {
  color: red;
  font-size: 1rem;
}

.tf-license-activate {
  display: inline-block;
}
.tf-license-activate p.submit {
  margin: 0px !important;
}
.tf-license-activate p.submit input {
  background-color: #003C79 !important;
  border-color: #003C79 !important;
  color: #ffffff;
  padding: 4px 25px;
  font-size: 1rem;
}

.el-license-active-btn {
  display: inline-block;
}
.el-license-active-btn p.submit {
  margin: 0px !important;
}
.el-license-active-btn p.submit input {
  background-color: #003C79 !important;
  border-color: #003C79 !important;
  color: #ffffff;
  padding: 4px 25px;
  font-size: 1rem;
}

input.select2-search__field {
  width: 100% !important;
  min-width: 150px !important;
}

.wp-block input.select2-search__field {
  min-width: unset;
}

.widget-content .select2-selection__rendered {
  display: none;
}

.tf-widget-field .select2-container:last-child {
  display: none;
}

.tf-duplicator-loader {
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
  cursor: wait;
}

.tf-post-data-duplicate:focus {
  outline: none;
  box-shadow: none;
}

body.tourfic-settings_page_tf-setup-wizard {
  background-color: #EBF5FF;
}

.tf-quick-setup-btn {
  border-radius: 8px;
  background: linear-gradient(180deg, #0051A3 0%, #003C79 100%);
  cursor: pointer;
  border: 0px solid;
  padding: 12px 32px;
  color: #ffffff;
  font-family: Inter;
  font-size: 0.938rem;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  display: inline-flex;
  gap: 8px;
  transition: 0.3s all ease;
  text-decoration: none;
  min-width: 130px;
  position: relative;
  z-index: 0;
}
.tf-quick-setup-btn::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(0deg, #0051A3 0%, #003C79 100%);
  border-radius: 8px;
  transition: 0.3s all ease;
}
.tf-quick-setup-btn:hover {
  color: #ffffff;
  box-shadow: 0px 24px 20px 0px rgba(8, 20, 33, 0.08), 0px 8px 16px 0px rgba(8, 20, 33, 0.08), 0px 16px 8px 0px rgba(8, 20, 33, 0.04);
}
.tf-quick-setup-btn:hover::after {
  opacity: 1;
}

.tf-link-skip-btn {
  border-radius: 8px;
  background: #EBF5FF;
  cursor: pointer;
  border: 0px solid;
  padding: 12px 32px;
  color: #003C79;
  font-family: Inter;
  font-size: 0.938rem;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 160% */
  transition: 0.3s all ease;
  text-decoration: none;
  min-width: 130px;
  position: relative;
  z-index: 0;
}
.tf-link-skip-btn::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(0deg, #0051A3 0%, #003C79 100%);
  border-radius: 8px;
  transition: 0.3s all ease;
}
.tf-link-skip-btn:hover {
  box-shadow: 0px 16px 8px 0px rgba(8, 20, 33, 0.04), 0px 8px 16px 0px rgba(8, 20, 33, 0.08), 0px 24px 20px 0px rgba(8, 20, 33, 0.08);
  color: #ffffff;
}
.tf-link-skip-btn:hover::after {
  opacity: 1;
}

.tf-theme-activation-btn {
  min-width: 267px;
  justify-content: center;
}

.tf-settings-finish-btn {
  min-width: 140px;
}

.tf-settings-default-button {
  min-width: auto;
}

.tourfic-settings_page_tf-setup-wizard #wpcontent {
  margin-left: 0 !important;
}

.tourfic-settings_page_tf-setup-wizard #wpbody-content, .tourfic-settings_page_tf-setup-wizard #wpcontent {
  padding: 0;
  overflow-x: hidden !important;
  min-height: calc(100vh - 32px);
}

.tourfic-settings_page_tf-setup-wizard #adminmenumain, .tourfic-settings_page_tf-setup-wizard .error, .tourfic-settings_page_tf-setup-wizard .notice, .tourfic-settings_page_tf-setup-wizard .update-nag, .tourfic-settings_page_tf-setup-wizard .updated, .tourfic-settings_page_tf-setup-wizard div#wpadminbar, .tourfic-settings_page_tf-setup-wizard div#wpfooter {
  display: none;
}

.tourfic-settings_page_tf-setup-wizard #wpbody {
  padding-top: 0px;
}

.tf-setup-header {
  padding: 16px 56px;
  background: #F8FAFC;
  box-shadow: 0px 32px 32px 0px rgba(125, 168, 212, 0.02), 0px 16px 40px 0px rgba(125, 168, 212, 0.04), 0px 32px 56px 0px rgba(125, 168, 212, 0.08);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 575.98px) {
  .tf-setup-header {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
}
.tf-setup-header .tf-setup-header-left {
  height: 48px;
}
.tf-setup-header .tf-setup-header-left img {
  width: 44px;
  height: 48px;
}
.tf-setup-header .tf-setup-header-right span {
  color: #566676;
  font-family: Inter;
  font-size: 0.938rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 160% */
}
.tf-setup-header .tf-setup-header-right span a {
  color: #003C79;
  font-family: Inter;
  font-size: 0.938rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-decoration-line: underline;
}

/*
Welcome Step
*/
.tf-setup-content-layout {
  min-width: 886px;
  width: 886px;
  display: none;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 auto;
  margin-top: 72px;
  margin-bottom: 72px;
}
@media only screen and (max-width: 885px) {
  .tf-setup-content-layout {
    min-width: auto;
    width: auto;
    margin-left: 12px;
    margin-right: 12px;
  }
}
.tf-setup-content-layout .tf-back-btn {
  display: inline-flex;
  gap: 8px;
  text-decoration: none;
  margin: 0px 0px 16px 8px;
}
.tf-setup-content-layout .tf-back-btn:focus {
  outline: none;
  box-shadow: none;
}
.tf-setup-content-layout .tf-back-btn span {
  color: #003C79;
  font-family: Inter;
  font-size: 0.938rem;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.tf-setup-content-layout .setup-content-warper {
  border-radius: 16px;
  background: #ffffff;
  text-align: center;
  padding: 104px 112px;
}
@media only screen and (max-width: 885px) {
  .tf-setup-content-layout .setup-content-warper {
    padding: 32px;
  }
}
.tf-setup-content-layout.active {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.tf-setup-content-layout .welcome-img {
  margin-bottom: 20px;
}
.tf-setup-content-layout .welcome-img img {
  width: 87px;
}
.tf-setup-content-layout .tf-setup-welcome-title {
  color: #27333F;
  font-family: Inter;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 36px */
  margin: 0px;
}
.tf-setup-content-layout .tf-setup-welcome-description {
  color: #566676;
  text-align: center;
  font-family: Inter;
  font-size: 0.938rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-top: 8px;
}
.tf-setup-content-layout .tf-setup-welcome-footer {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 48px;
}
.tf-setup-content-layout .tf-setup-welcome-footer .tf-link-btn {
  color: #11142e;
  font-weight: 500;
  text-decoration: underline;
}
.tf-setup-content-layout .tf-setup-welcome-footer.tf-setup-finish-footer {
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .tf-setup-content-layout .tf-setup-welcome-footer.tf-setup-finish-footer {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
}
.tf-setup-content-layout .tf-setup-welcome-footer.tf-setup-finish-footer .tf-admin-btn {
  margin-bottom: 0;
  margin-right: 10px;
}
.tf-setup-content-layout .tf-setup-finish-content {
  border-radius: 16px;
  background: #ffffff;
  padding: 56px 32px 96px 32px;
  text-align: center;
}
.tf-setup-content-layout .tf-setup-finish-content .welcome-img {
  margin-bottom: 50px;
}
.tf-setup-content-layout .tf-setup-finish-content .welcome-img img {
  width: 133px;
  height: 130px;
  transform: rotate(-45deg);
}
.tf-setup-content-layout .tf-setup-finish-content .tf-setup-welcome-description {
  margin-top: 8px;
}
.tf-setup-content-layout .tf-setup-finish-content .tf-setup-finish-footer {
  gap: 16px;
  flex-wrap: wrap;
}
.tf-setup-content-layout .tf-setup-finish-content a:focus {
  outline: none;
  box-shadow: none;
}

/*
Woocommerce
*/
.tf-setup-woocommerce-step .welcome-img img {
  width: 96px;
  margin-bottom: 16px;
}

.tf-setup-step-container {
  min-width: 886px;
  width: 886px;
  display: none;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 auto;
  margin-top: 72px;
  margin-bottom: 72px;
}
@media only screen and (max-width: 885px) {
  .tf-setup-step-container {
    min-width: auto;
    width: auto;
    margin-left: 12px;
    margin-right: 12px;
  }
}

/*
Steps
*/
.tf-setup-steps {
  box-sizing: border-box;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 0;
  list-style: none;
  width: 100%;
  text-align: initial;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
}
.tf-setup-steps .tf-steps-item {
  position: relative;
  display: inline-block;
}
.tf-setup-steps .tf-steps-item .tf-steps-item-tail {
  padding: 3.5px 45px 3.5px 35px;
  margin-left: 58px;
  top: 8px;
  position: absolute;
  left: 0;
  width: 70%;
}
@media only screen and (max-width: 575.98px) {
  .tf-setup-steps .tf-steps-item .tf-steps-item-tail {
    margin-left: 10px;
    width: 60%;
  }
}
.tf-setup-steps .tf-steps-item .tf-steps-item-tail::after {
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #f0f0f0;
  border-radius: 1px;
  transition: background 0.3s;
  content: "";
}
.tf-setup-steps .tf-steps-item .tf-steps-item-icon {
  width: auto;
  height: inherit;
  line-height: inherit;
  background: 0 0;
  border: 0;
  border-radius: 0;
  display: inline-block;
  font-size: 0.75rem;
  text-align: center;
  border-color: #1890ff;
  display: block;
}

.tf-setup-step-container {
  display: none;
}
.tf-setup-step-container.active {
  display: block;
}
.tf-setup-step-container .tf-back-btn {
  display: inline-flex;
  gap: 8px;
  text-decoration: none;
  margin: 0px 0px 16px 8px;
}
.tf-setup-step-container .tf-back-btn:focus {
  outline: none;
  box-shadow: none;
}
.tf-setup-step-container .tf-back-btn span {
  color: #003C79;
  font-family: Inter;
  font-size: 0.938rem;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.tf-setup-step-container .tf-template-selection {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.tf-setup-step-container .tf-template-selection .tf-single-theme label {
  position: relative;
  display: block;
}
.tf-setup-step-container .tf-template-selection .tf-single-theme label .checked-svg {
  position: absolute;
  left: 8px;
  top: 8px;
  display: none;
}
.tf-setup-step-container .tf-template-selection .tf-single-theme label input {
  display: none;
}
.tf-setup-step-container .tf-template-selection .tf-single-theme label input:checked + img {
  border: 1px solid #003C79;
}
.tf-setup-step-container .tf-template-selection .tf-single-theme label input:checked ~ .checked-svg {
  display: block;
}
.tf-setup-step-container .tf-template-selection .tf-single-theme label h4 {
  color: #27333F;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 153.846% */
  margin: 0;
  margin-top: 8px;
}
.tf-setup-step-container .tf-template-selection .tf-single-theme label img {
  box-shadow: 0px 10px 20px 0px rgba(0, 36, 72, 0.04), 0px 10px 16px 0px rgba(0, 36, 72, 0.04);
  border-radius: 12px;
  border: 1px solid transparent;
}
.tf-setup-step-container .tf-setup-step-layout {
  padding: 56px 96px;
  border-radius: 16px;
  background: var(--UI-0, #ffffff);
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media only screen and (max-width: 885px) {
  .tf-setup-step-container .tf-setup-step-layout {
    padding: 32px;
  }
}
.tf-setup-step-container .tf-setup-step-title {
  color: #27333F;
  font-family: Inter;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin: 0px 0px 0px 0px;
}
.tf-setup-step-container .tf-setup-step-subtitle {
  text-align: left;
  color: #27333F;
  font-family: Inter;
  font-size: 0.938rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 0 0 2px 0px;
}
.tf-setup-step-container .tf-select-title {
  color: #27333f;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin: 0px 0px 24px 0px;
}
.tf-setup-step-container .tf-setup-step-desc {
  color: #566676;
  font-family: Inter;
  font-size: 0.938rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 160% */
  margin: 8px 0px 32px 0px;
}
.tf-setup-step-container .tf-select-service {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 56px;
  margin: 0;
}
@media only screen and (max-width: 885px) {
  .tf-setup-step-container .tf-select-service {
    gap: 24px;
    flex-wrap: wrap;
  }
}
.tf-setup-step-container .tf-select-service input[type=checkbox] {
  display: none;
}
.tf-setup-step-container .tf-select-service label {
  display: block;
  position: relative;
  cursor: pointer;
  border-radius: 6px;
}
@media only screen and (max-width: 575.98px) {
  .tf-setup-step-container .tf-select-service label {
    padding: 5px;
  }
}
.tf-setup-step-container .tf-select-service label span {
  color: #566676;
  font-family: Inter;
  font-size: 0.938rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  display: block;
  margin-top: 16px;
}
.tf-setup-step-container .tf-select-service label:before {
  background: #ffffff #ffffff;
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  left: -5px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 26px;
  transition-duration: 0.4s;
  transform: scale(0);
  font-family: "dashicons";
  font-size: 1.25rem;
}
@media only screen and (max-width: 575.98px) {
  .tf-setup-step-container .tf-select-service label:before {
    width: 20px;
    height: 20px;
    top: -3px;
    left: -3px;
    font-size: 1.125rem;
    line-height: 20px;
  }
}
.tf-setup-step-container .tf-select-service label {
  position: relative;
}
.tf-setup-step-container .tf-select-service label .tf-inactive img {
  width: 150px;
  transition: 0.3s all ease;
  border-radius: 12px;
}
.tf-setup-step-container .tf-select-service label .tf-inactive img:hover {
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0px 10px 16px 0px rgba(0, 36, 72, 0.04), 0px 10px 20px 0px rgba(0, 36, 72, 0.04);
}
.tf-setup-step-container .tf-select-service label .tf-active {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: 0.3s all ease;
  opacity: 0;
  z-index: -1;
}
.tf-setup-step-container .tf-select-service label .tf-active img {
  width: 150px;
  box-shadow: 0px 10px 16px 0px rgba(0, 36, 72, 0.04), 0px 10px 20px 0px rgba(0, 36, 72, 0.04);
  border-radius: 12px;
}
.tf-setup-step-container .tf-select-service :checked + label .tf-active {
  opacity: 1;
  z-index: 99;
}
.tf-setup-step-container .tf-setup-action-btn-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 48px;
}
.tf-setup-step-container .tf-setup-action-btn-wrapper .tf-setup-action-btn-next {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.tf-setup-step-container .setup-form-group {
  border-radius: 12px;
  border: 1px solid #EEF2F6;
  background: #ffffff;
  padding: 16px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tf-setup-step-container .setup-form-group .tf-setup-form-item-wrap {
  text-align: left;
}
.tf-setup-step-container .setup-form-group .tf-setup-field-desc {
  display: block;
  margin-top: 4px;
}
.tf-setup-step-container .setup-form-group .tf-setup-form-item {
  width: 100%;
}
.tf-setup-step-container .setup-form-group .tf-setup-form-item .tf-setup-form-item-label {
  display: block;
  flex-grow: 0;
  overflow: hidden;
  white-space: nowrap;
  text-align: left;
  margin-bottom: 4px;
}
.tf-setup-step-container .setup-form-group .tf-setup-form-item .tf-setup-form-item-label label {
  color: #27333F;
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.tf-setup-step-container .setup-form-group .tf-setup-form-item .tf-setup-form-item-input {
  flex: 1 1 0;
  min-width: 0;
}
.tf-setup-step-container .setup-form-group .tf-setup-form-item .tf-setup-form-item-input input[type=text],
.tf-setup-step-container .setup-form-group .tf-setup-form-item .tf-setup-form-item-input input[type=email],
.tf-setup-step-container .setup-form-group .tf-setup-form-item .tf-setup-form-item-input input[type=number],
.tf-setup-step-container .setup-form-group .tf-setup-form-item .tf-setup-form-item-input select {
  border-radius: 4px;
  border: 1px solid #EEF2F6;
  background-color: #F8FAFC;
  height: 40px;
  padding: 8px 12px;
  color: #566676;
  font-family: Inter;
  font-size: 0.938rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  transition: all 0.3s;
  outline: none;
  max-width: 100%;
  width: 100%;
}
.tf-setup-step-container .setup-form-group .tf-setup-form-item .tf-setup-form-item-input input[type=text]:focus,
.tf-setup-step-container .setup-form-group .tf-setup-form-item .tf-setup-form-item-input input[type=email]:focus,
.tf-setup-step-container .setup-form-group .tf-setup-form-item .tf-setup-form-item-input input[type=number]:focus,
.tf-setup-step-container .setup-form-group .tf-setup-form-item .tf-setup-form-item-input select:focus {
  outline: none;
  box-shadow: none;
}
.tf-setup-step-container .setup-form-group .tf-setup-form-item .tf-switch-label {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 20px;
  border-radius: 20px;
}
.tf-setup-step-container .setup-form-group .tf-setup-form-item .tf-switch-label input {
  display: none;
}
.tf-setup-step-container .setup-form-group .tf-setup-form-item .tf-switch-label .tf-switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(192, 204, 216);
  border-radius: 20px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.tf-setup-step-container .setup-form-group .tf-setup-form-item .tf-switch-label .tf-switch-slider::before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  border-radius: 12px;
  top: 3px;
  left: 4px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 8px rgba(27, 25, 25, 0.3);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.tf-setup-step-container .setup-form-group .tf-setup-form-item .tf-switch-label input:checked + .tf-switch-slider {
  background-color: rgb(0, 60, 121);
}
.tf-setup-step-container .setup-form-group .tf-setup-form-item .tf-switch-label input:checked + .tf-switch-slider:before {
  left: 100%;
  margin-left: -18px;
}
.tf-setup-step-container .setup-form-group .tf-setup-form-item-inline {
  border-radius: 4px;
  border: 1px solid #EEF2F6;
  background: #F8FAFC;
  display: flex;
  padding: 16px 12px;
  justify-content: space-between;
  box-sizing: border-box;
  align-items: center;
  height: 56px;
}
.tf-setup-step-container .setup-form-group .tf-setup-form-item-inline .tf-setup-form-item-label {
  margin: 0;
}
.tf-setup-step-container .setup-form-group .tf-setup-form-item-inline .tf-setup-form-item-label label {
  font-size: 0.938rem;
}
.tf-setup-step-container .setup-form-group .tf-setup-form-item-inline .tf-setup-form-item-input {
  text-align: right;
  max-width: 246px !important;
}
@media only screen and (max-width: 640px) {
  .tf-setup-step-container .setup-form-group .tf-setup-form-item-inline .tf-setup-form-item-input {
    max-width: 120px !important;
  }
}
.tf-setup-step-container .setup-form-group .tf-setup-form-item-inline .tf-setup-form-item-input input[type=text] {
  height: 32px;
  margin: 0;
  background: #ffffff;
}
.tf-setup-step-container .setup-form-group .tf-field-imageselect {
  padding: 0;
}
.tf-setup-step-container .setup-form-group .tf-field-imageselect label {
  color: #27333F;
  font-family: Inter;
  font-size: 0.938rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  text-align: left;
}
.tf-setup-step-container .setup-form-group .tf-field-imageselect .tf-fieldset {
  margin-top: 16px;
}
.tf-setup-step-container .setup-form-group .tf-field-imageselect .tf-fieldset .tf-image-radio-group {
  gap: 22px;
}
.tf-setup-step-container .setup-form-group .tf-field-imageselect .tf-fieldset .tf-image-radio-group li {
  margin: 0;
  width: 200px;
  border-radius: 8px;
  box-sizing: border-box;
}
.tf-setup-step-container .setup-form-group .tf-field-imageselect .tf-fieldset .tf-image-radio-group li .tf-image-checkbox .select-image-box {
  width: 200px;
  height: 180px;
  padding: 8px 24px 2px 24px;
  box-sizing: border-box;
  cursor: pointer;
}
.tf-setup-step-container .setup-form-group .tf-field-imageselect .tf-fieldset .tf-image-radio-group li .tf-image-checkbox .select-image-box img {
  width: 100%;
  height: 100%;
  border: 2px solid rgba(0, 0, 0, 0) !important;
  object-fit: cover;
}
.tf-setup-step-container .setup-form-group .tf-field-imageselect .tf-fieldset .tf-image-radio-group li .tf-image-checkbox .select-image-box {
  border: 2px solid transparent !important;
  border-radius: 8px;
  background-color: rgb(235, 245, 255);
}
.tf-setup-step-container .setup-form-group .tf-field-imageselect .tf-fieldset .tf-image-radio-group li .tf-image-checkbox > input:checked + .select-image-box {
  border-color: #003C79 !important;
  border-radius: 8px;
}
.tf-setup-step-container .setup-form-group .tf-archive-imageselect-box .tf-image-checkbox .select-image-box {
  background-color: #fafafa !important;
}
.tf-setup-step-container .setup-form-group .tf-setup-permalink {
  padding: 12px;
}
.tf-setup-step-container .tf-setup-group-general {
  padding-top: 24px;
  gap: 24px;
}
.tf-setup-step-container .tf-setup-step-description {
  margin-bottom: 30px;
}
.tf-setup-step-container.tf-setup-step-3 .tf-setup-step-layout {
  padding-left: 73px;
  padding-right: 73px;
}
@media only screen and (max-width: 885px) {
  .tf-setup-step-container.tf-setup-step-3 .tf-setup-step-layout {
    padding: 32px;
  }
}
.tf-setup-step-container.tf-setup-step-3 .tf-setup-step-layout .tf-theme-setting-heading {
  position: relative;
  z-index: 0;
}
.tf-setup-step-container.tf-setup-step-3 .tf-setup-step-layout .tf-theme-setting-heading .tf-setup-title-shape {
  position: absolute;
  left: 2px;
  bottom: 20px;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.tf-setup-step-container.tf-setup-step-3 .tf-setup-step-layout .tf-setup-step-desc a {
  text-decoration: none;
  color: #003C79;
}
@media only screen and (max-width: 885px) {
  .tf-setup-step-container.tf-setup-step-3 .tf-setup-step-layout .setup-theme-style img {
    width: 100%;
  }
}
.tf-setup-step-container.tf-setup-step-5 .tf-setup-step-desc, .tf-setup-step-container.tf-setup-step-6 .tf-setup-step-desc {
  margin-bottom: 0px;
}
.tf-setup-step-container .tf-hotel-setup-wizard,
.tf-setup-step-container .tf-tour-setup-wizard,
.tf-setup-step-container .tf-apartment-setup-wizard,
.tf-setup-step-container .tf-car-setup-wizard {
  margin-top: 48px;
}
.tf-setup-step-container .tf-hotel-setup-wizard .tf-setup-step-desc,
.tf-setup-step-container .tf-tour-setup-wizard .tf-setup-step-desc,
.tf-setup-step-container .tf-apartment-setup-wizard .tf-setup-step-desc,
.tf-setup-step-container .tf-car-setup-wizard .tf-setup-step-desc {
  text-align: left;
  margin: 0 0 16px 0;
  color: #566676;
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.tf-setup-step-container .tf-hotel-setup-wizard .tf-setup-step-desc span,
.tf-setup-step-container .tf-tour-setup-wizard .tf-setup-step-desc span,
.tf-setup-step-container .tf-apartment-setup-wizard .tf-setup-step-desc span,
.tf-setup-step-container .tf-car-setup-wizard .tf-setup-step-desc span {
  color: #27333F;
}
.tf-setup-step-container.tf-setup-step-5 .setup-form-group {
  gap: 32px;
}
.tf-setup-step-container .tf-auto-publish-field {
  margin-top: 8px;
}
.tf-setup-step-container {
  /*
  Ajax Loader
  */
}
.tf-setup-step-container .tf-btn-loading {
  padding-right: 40px;
  position: relative;
}
.tf-setup-step-container .tf-quick-setup-btn.tf-btn-loading {
  padding-right: 50px !important;
}
.tf-setup-step-container .tf-btn-loading:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  margin-top: -7px;
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid #ffffff;
  border-left-color: transparent;
  border-radius: 50%;
  vertical-align: middle;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  -webkit-animation: tf-rotate 450ms infinite linear;
  animation: tf-rotate 450ms infinite linear;
}
@-webkit-keyframes tf-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes tf-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.tf-setup-step-container .tf-template-step .tf-hotel-setup-wizard ul,
.tf-setup-step-container .tf-template-step .tf-tour-setup-wizard ul {
  margin-bottom: 0px;
}
.tf-setup-step-container .tf-template-step .tf-hotel-setup-wizard .tf-field-imageselect .tf-image-checkbox img,
.tf-setup-step-container .tf-template-step .tf-tour-setup-wizard .tf-field-imageselect .tf-image-checkbox img {
  width: 200px;
  height: 140px;
}
.tf-setup-step-container .tf-template-step .tf-hotel-setup-wizard .tf-field-imageselect .tf-image-checkbox > input:checked + img,
.tf-setup-step-container .tf-template-step .tf-tour-setup-wizard .tf-field-imageselect .tf-image-checkbox > input:checked + img {
  border-color: #5D5DFF;
  border-radius: 5px;
}

@media only screen and (max-width: 1024px) {
  #tf_tours_opt .tf-admin-meta-box {
    position: relative;
    min-height: 660px;
  }
}

.tf-admin-meta-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin: -6px -12px -12px -12px;
  z-index: 10;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .tf-admin-meta-box {
    position: relative;
    min-height: 500px;
  }
}
.tf-admin-meta-box.tf-taxonomy-metabox {
  display: block;
  margin: 0;
  max-width: 95%;
}
.tf-admin-meta-box .tf-admin-tab.active {
  display: block;
  position: absolute;
  z-index: 99999;
  top: 0;
  bottom: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tf-admin-meta-box .tf-admin-tab {
  border-right: 1px solid #e1e5ea;
  background-color: #FFFFFF;
  min-width: 242px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1024px) {
  .tf-admin-meta-box .tf-admin-tab {
    display: none;
  }
}
.tf-admin-meta-box .tf-admin-tab {
  padding: 24px;
  box-sizing: border-box;
}
.tf-admin-meta-box .tf-admin-tab a.tf-tablinks {
  font-style: normal;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  color: #27333F;
  padding: 12px 16px;
  text-align: left;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 8px;
}
.tf-admin-meta-box .tf-admin-tab a.tf-tablinks .tf-sec-icon {
  margin-right: 8px;
  color: #566676;
  min-width: 25px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tf-admin-meta-box .tf-admin-tab a.tf-tablinks:focus {
  box-shadow: none;
  outline: none;
}
.tf-admin-meta-box .tf-admin-tab a.tf-tablinks.active {
  position: relative;
  color: #FFFFFF;
  border-radius: 8px;
  background: linear-gradient(180deg, #0051A3 0%, #003C79 100%);
}
@media only screen and (max-width: 1024px) {
  .tf-admin-meta-box .tf-admin-tab a.tf-tablinks.active {
    position: static;
  }
}
.tf-admin-meta-box .tf-admin-tab a.tf-tablinks.active .tf-sec-icon {
  color: #ffffff;
}
.tf-admin-meta-box .tf-admin-tab ul.tf-submenu {
  margin: 0;
  display: none;
}
.tf-admin-meta-box .tf-admin-tab ul.tf-submenu li {
  margin-bottom: 0;
}
.tf-admin-meta-box .tf-admin-tab ul.tf-submenu li a.tf-tablinks {
  padding: 0;
}
.tf-admin-meta-box .tf-admin-tab ul.tf-submenu li a.tf-tablinks span.tf-tablinks-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 20px;
  margin-left: 24px;
  border-left: 1px solid #c4cbd4;
  position: relative;
}
.tf-admin-meta-box .tf-admin-tab ul.tf-submenu li a.tf-tablinks span.tf-tablinks-inner::after {
  position: absolute;
  content: "";
  height: 25px;
  width: 14px;
  border-width: 0 0 1px 1px;
  border-style: solid;
  border-color: #c4cbd4;
  left: -1px;
  top: 0;
  border-bottom-left-radius: 8px;
}
.tf-admin-meta-box .tf-admin-tab ul.tf-submenu li:last-child a.tf-tablinks span.tf-tablinks-inner {
  border-left: none;
}
.tf-admin-meta-box .tf-admin-tab ul.tf-submenu li:last-child a.tf-tablinks span.tf-tablinks-inner::after {
  left: 0;
}
.tf-admin-meta-box .tf-tab-wrapper {
  -webkit-flex: 0 0 calc(100% - 242px);
  -ms-flex: 0 0 calc(100% - 242px);
  flex: 0 0 calc(100% - 242px);
}
@media only screen and (max-width: 1024px) {
  .tf-admin-meta-box .tf-tab-wrapper {
    flex: 0 0 calc(100% - 0px);
  }
}
.tf-admin-meta-box .tf-tab-wrapper .tf-tab-content {
  display: none;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0 24px;
}
.tf-admin-meta-box .tf-tab-wrapper .tf-tab-content.active {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.tf-option-wrapper .tf-option-footer {
  position: relative;
  padding: 15px 0px;
  text-align: right;
}
.tf-option-wrapper .tf-option-footer button {
  padding: 10px 25px;
  font-size: 1rem;
}
.tf-option-wrapper .tf-option-footer span {
  display: block;
  font-size: 1rem;
  color: #8997a9;
  font-weight: 600;
  margin-top: 5px;
}
.tf-option-wrapper .tf-option-footer span a {
  color: #8997a9;
  display: inline;
  margin-left: 5px;
}
.tf-option-wrapper .tf-option-footer span a:focus {
  outline: none;
  box-shadow: none;
}

.tf-option {
  width: 100%;
  margin: 0;
}
.tf-option .tf-tab-wrapper {
  -webkit-flex: 0 0 calc(100% - 281px);
  -ms-flex: 0 0 calc(100% - 281px);
  flex: 0 0 calc(100% - 281px);
  background-color: #ffffff;
  padding: 12px 0;
}
@media only screen and (max-width: 1024px) {
  .tf-option .tf-tab-wrapper {
    flex: 0 0 calc(100% - 0px);
  }
}

.tourfic-settings_page_tf_dashboard #wpcontent,
.tourfic-settings_page_tf_workspace #wpcontent {
  background-color: #F5F9FF;
}

.tourfic-settings_page_tf_get_help #wpcontent {
  background-color: #EBF5FF;
}

.tf-setting-dashboard .tf-setting-top-bar {
  padding: 12px 32px;
  margin-left: -20px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  background: #F8FAFC;
  box-shadow: 0 32px 56px 0 rgba(125, 168, 212, 0.08), 0 16px 40px 0 rgba(125, 168, 212, 0.04), 0 32px 32px 0 rgba(125, 168, 212, 0.02);
}
.tf-setting-dashboard .tf-setting-top-bar .version {
  display: flex;
  align-items: center;
}
.tf-setting-dashboard .tf-setting-top-bar .version img {
  width: 138px;
}
@media only screen and (max-width: 480px) {
  .tf-setting-dashboard .tf-setting-top-bar .version img {
    width: 100px;
  }
}
.tf-setting-dashboard .tf-setting-top-bar .version span {
  color: #7D8FA0;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  margin-left: 8px;
}
.tf-setting-dashboard .tf-setting-top-bar .other-document span {
  color: #566676;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}
.tf-setting-dashboard .tf-setting-top-bar .other-document span a {
  color: #003C79;
  text-decoration: underline;
}
.tf-setting-dashboard .tf-setting-banner {
  background-color: transparent;
  padding: 30px 100px;
  border-radius: 10px;
  margin: 40px 20px 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: radial-gradient(at center center, #004A9E 0%, #001C39 75%);
}
@media only screen and (max-width: 1024px) {
  .tf-setting-dashboard .tf-setting-banner {
    display: flow-root;
  }
}
@media only screen and (max-width: 768px) {
  .tf-setting-dashboard .tf-setting-banner {
    padding: 30px 40px;
  }
}
.tf-setting-dashboard .tf-setting-banner .tf-setting-banner-content {
  width: 50%;
}
@media only screen and (max-width: 1024px) {
  .tf-setting-dashboard .tf-setting-banner .tf-setting-banner-content {
    width: 100%;
  }
}
.tf-setting-dashboard .tf-setting-banner .tf-setting-banner-content img {
  width: 200px;
  display: block;
  margin-bottom: 15px;
}
.tf-setting-dashboard .tf-setting-banner .tf-setting-banner-content span {
  color: #ffffff;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 200;
}
@media only screen and (max-width: 575.98px) {
  .tf-setting-dashboard .tf-setting-banner .tf-setting-banner-content span {
    font-size: 26px;
  }
}
.tf-setting-dashboard .tf-setting-banner .tf-setting-banner-content span b {
  display: block;
  font-weight: 700;
}
.tf-setting-dashboard .tf-setting-banner .tf-setting-banner-image {
  width: 30%;
}
@media only screen and (max-width: 1024px) {
  .tf-setting-dashboard .tf-setting-banner .tf-setting-banner-image {
    width: 100%;
  }
}
.tf-setting-dashboard .tf-setting-banner .tf-setting-banner-image img {
  width: 100%;
}
.tf-setting-dashboard .tf-setting-overview-section {
  position: relative;
  margin-bottom: 32px;
}
.tf-setting-dashboard .tf-setting-overview-section .tf-performance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 12px;
  width: 100%;
}
@media all and (max-width: 1299px) {
  .tf-setting-dashboard .tf-setting-overview-section .tf-performance-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media only screen and (max-width: 1199.98px) {
  .tf-setting-dashboard .tf-setting-overview-section .tf-performance-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (max-width: 640px) {
  .tf-setting-dashboard .tf-setting-overview-section .tf-performance-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 480px) {
  .tf-setting-dashboard .tf-setting-overview-section .tf-performance-grid {
    grid-template-columns: 1fr;
  }
}
.tf-setting-dashboard .tf-setting-overview-section .tf-performance-grid .tf-single-performance-grid {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #E7F5FD;
  background: linear-gradient(180deg, rgba(231, 245, 253, 0.1) 0%, rgba(252, 235, 224, 0.1) 100%), #FFF;
  box-shadow: 0 32px 56px 0 rgba(125, 168, 212, 0.08), 0 16px 40px 0 rgba(125, 168, 212, 0.04), 0 32px 32px 0 rgba(125, 168, 212, 0.02);
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
}
@media only screen and (max-width: 1650px) {
  .tf-setting-dashboard .tf-setting-overview-section .tf-performance-grid .tf-single-performance-grid {
    padding: 12px;
  }
}
.tf-setting-dashboard .tf-setting-overview-section .tf-performance-grid .tf-single-performance-grid:nth-child(2) {
  border: 1px solid #FFE5D3;
  background: linear-gradient(180deg, rgba(255, 229, 211, 0.1) 0%, rgba(255, 226, 240, 0.1) 100%), #FFF;
  box-shadow: 0 32px 56px 0 rgba(125, 168, 212, 0.08), 0 16px 40px 0 rgba(125, 168, 212, 0.04), 0 32px 32px 0 rgba(125, 168, 212, 0.02);
}
.tf-setting-dashboard .tf-setting-overview-section .tf-performance-grid .tf-single-performance-grid:nth-child(3) {
  border: 1px solid #CBF4DF;
  background: linear-gradient(180deg, rgba(203, 244, 223, 0.1) 0%, rgba(240, 252, 245, 0.1) 100%), #FFF;
  box-shadow: 0 32px 56px 0 rgba(125, 168, 212, 0.08), 0 16px 40px 0 rgba(125, 168, 212, 0.04), 0 32px 32px 0 rgba(125, 168, 212, 0.02);
}
.tf-setting-dashboard .tf-setting-overview-section .tf-performance-grid .tf-single-performance-grid:nth-child(4) {
  border: 1px solid #DCE9FF;
  background: linear-gradient(180deg, rgba(241, 234, 255, 0.1) 0%, rgba(255, 237, 237, 0.1) 100%), #FFF;
  box-shadow: 0 32px 56px 0 rgba(125, 168, 212, 0.08), 0 16px 40px 0 rgba(125, 168, 212, 0.04), 0 32px 32px 0 rgba(125, 168, 212, 0.02);
}
.tf-setting-dashboard .tf-setting-overview-section .tf-performance-grid .tf-single-performance-grid:nth-child(5) {
  border: 1px solid #F1EAFF;
  background: linear-gradient(180deg, rgba(235, 223, 248, 0.1) 0%, rgba(248, 251, 220, 0.1) 100%), #FFF;
  box-shadow: 0 32px 56px 0 rgba(125, 168, 212, 0.08), 0 16px 40px 0 rgba(125, 168, 212, 0.04), 0 32px 32px 0 rgba(125, 168, 212, 0.02);
}
.tf-setting-dashboard .tf-setting-overview-section .tf-performance-grid .tf-single-performance-grid .tf-single-performance-content p {
  color: #414D59;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  display: flex;
  gap: 4px;
  margin: 0;
  align-items: center;
}
@media only screen and (max-width: 1650px) {
  .tf-setting-dashboard .tf-setting-overview-section .tf-performance-grid .tf-single-performance-grid .tf-single-performance-content p {
    font-size: 0.875rem;
  }
}
.tf-setting-dashboard .tf-setting-overview-section .tf-performance-grid .tf-single-performance-grid .tf-single-performance-content h3 {
  color: #27333F;
  font-size: 30px;
  font-weight: 600;
  line-height: 120%;
  margin: 0 0 8px 0;
}
@media only screen and (max-width: 1650px) {
  .tf-setting-dashboard .tf-setting-overview-section .tf-performance-grid .tf-single-performance-grid .tf-single-performance-content h3 {
    font-size: 1.5rem;
  }
}
.tf-setting-dashboard .tf-setting-performace-section {
  margin: 24px 24px 0px 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 24px;
  position: relative;
  justify-content: space-between;
}
@media only screen and (max-width: 991.98px) {
  .tf-setting-dashboard .tf-setting-performace-section {
    flex-direction: column;
  }
}
.tf-setting-dashboard .tf-setting-performace-section h2 {
  color: #27333F;
  font-size: 17px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.25px;
  margin: 0 0 8px 0;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-report-wrapper {
  width: calc(100% - 288px);
}
@media only screen and (max-width: 991.98px) {
  .tf-setting-dashboard .tf-setting-performace-section .tf-report-wrapper {
    width: 100%;
  }
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar {
  width: 256px;
  margin-top: 33px;
}
@media only screen and (max-width: 991.98px) {
  .tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar {
    width: 100%;
  }
}
.tf-setting-dashboard .tf-setting-performace-section #tf-report-loader {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}
.tf-setting-dashboard .tf-setting-performace-section #tf-report-loader img {
  width: 120px;
}
.tf-setting-dashboard .tf-setting-performace-section #tf-report-loader.show {
  opacity: 1;
  visibility: visible;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-order-report {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
}
@media only screen and (max-width: 640px) {
  .tf-setting-dashboard .tf-setting-performace-section .tf-order-report {
    padding: 0;
  }
}
.tf-setting-dashboard .tf-setting-performace-section .tf-order-report canvas {
  width: 100% !important;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-report-filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 640px) {
  .tf-setting-dashboard .tf-setting-performace-section .tf-report-filter {
    flex-direction: column;
    align-items: flex-start;
  }
}
.tf-setting-dashboard .tf-setting-performace-section .tf-report-filter .tf-dates-filter {
  position: relative;
  top: 53px;
  right: 25px;
}
@media only screen and (max-width: 640px) {
  .tf-setting-dashboard .tf-setting-performace-section .tf-report-filter .tf-dates-filter {
    position: static;
  }
}
.tf-setting-dashboard .tf-setting-performace-section .tf-report-filter .tf-month-filter {
  display: inline-block;
}
@media only screen and (max-width: 640px) {
  .tf-setting-dashboard .tf-setting-performace-section .tf-report-filter .tf-month-filter {
    margin-bottom: 8px;
  }
}
.tf-setting-dashboard .tf-setting-performace-section .tf-report-filter .tf-month-filter select {
  width: 125px;
  height: 35px;
  border-radius: 6px;
  border: 1px solid #F2F5F7;
  background-color: #EBF5FF;
  color: #27333F;
  font-size: 15px;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-report-filter .tf-month-filter select:focus {
  box-shadow: none;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-workspace-box .tf-workspace-boxs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 12px;
}
@media only screen and (max-width: 1650px) {
  .tf-setting-dashboard .tf-setting-performace-section .tf-workspace-box .tf-workspace-boxs {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (max-width: 1320px) {
  .tf-setting-dashboard .tf-setting-performace-section .tf-workspace-box .tf-workspace-boxs {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 1024px) {
  .tf-setting-dashboard .tf-setting-performace-section .tf-workspace-box .tf-workspace-boxs {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 991.98px) {
  .tf-setting-dashboard .tf-setting-performace-section .tf-workspace-box .tf-workspace-boxs {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 640px) {
  .tf-setting-dashboard .tf-setting-performace-section .tf-workspace-box .tf-workspace-boxs {
    grid-template-columns: 1fr;
  }
}
.tf-setting-dashboard .tf-setting-performace-section .tf-workspace-box .tf-workspace-boxs .tf-single-workspace {
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #F2F5F7;
  background: #FFF;
  box-shadow: 0 32px 56px 0 rgba(125, 168, 212, 0.08), 0 16px 40px 0 rgba(125, 168, 212, 0.04), 0 32px 32px 0 rgba(125, 168, 212, 0.02);
  display: flex;
  flex-direction: column;
  position: relative;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-workspace-box .tf-workspace-boxs .tf-single-workspace span.pro {
  border-radius: 6px;
  background: #F0FDF4;
  padding: 4px 6px;
  color: #16A34A;
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
  width: fit-content;
  position: absolute;
  right: 16px;
  top: 16px;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-workspace-box .tf-workspace-boxs .tf-single-workspace h3 {
  color: #27333F;
  font-size: 19px;
  font-weight: 600;
  line-height: 150%;
  margin: 0;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-workspace-box .tf-workspace-boxs .tf-single-workspace ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 32px 0;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-workspace-box .tf-workspace-boxs .tf-single-workspace ul li {
  color: #27333F;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-workspace-box .tf-workspace-boxs .tf-single-workspace a {
  border-radius: 8px;
  border: 1px solid #0352A0;
  color: #0464C8;
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  padding: 12px 32px;
  text-align: center;
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 8px;
  margin-top: auto;
  width: fit-content;
  transition: 0.3s all ease;
}
@media only screen and (max-width: 1650px) {
  .tf-setting-dashboard .tf-setting-performace-section .tf-workspace-box .tf-workspace-boxs .tf-single-workspace a {
    padding: 12px 15px;
  }
}
@media only screen and (max-width: 1320px) {
  .tf-setting-dashboard .tf-setting-performace-section .tf-workspace-box .tf-workspace-boxs .tf-single-workspace a {
    padding: 12px 20px;
  }
}
@media only screen and (max-width: 991.98px) {
  .tf-setting-dashboard .tf-setting-performace-section .tf-workspace-box .tf-workspace-boxs .tf-single-workspace a {
    padding: 12px 20px;
  }
}
.tf-setting-dashboard .tf-setting-performace-section .tf-workspace-box .tf-workspace-boxs .tf-single-workspace a svg path {
  transition: 0.3s all ease;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-workspace-box .tf-workspace-boxs .tf-single-workspace a:hover {
  background: linear-gradient(180deg, #0352A0 0%, #0464C8 100%);
  color: #fff;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-workspace-box .tf-workspace-boxs .tf-single-workspace a:hover svg path {
  stroke: #fff;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-sidebar-content .tf-premium-box {
  border-radius: 8px;
  border: 0.5px solid #238DFB;
  background: #FFF;
  box-shadow: 0 32px 56px 0 rgba(125, 168, 212, 0.08), 0 16px 40px 0 rgba(125, 168, 212, 0.04), 0 32px 32px 0 rgba(125, 168, 212, 0.02);
  padding: 0 24px 24px 24px;
  margin-bottom: 32px;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-sidebar-content .tf-premium-box .premium-box-header .premium-logo {
  text-align: center;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-sidebar-content .tf-premium-box .premium-box-header .premium-logo img {
  margin-top: -32px;
  margin-bottom: 14px;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-sidebar-content .tf-premium-box .premium-box-header h3 {
  color: #0464C8;
  font-size: 19px;
  font-weight: 600;
  line-height: 150%;
  margin: 0 0 8px 0;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-sidebar-content .tf-premium-box .premium-box-header h4 {
  color: #27333F;
  font-size: 15px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.25px;
  margin: 0 0 8px 0;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-sidebar-content .tf-premium-box .premium-box-header p {
  color: #414D59;
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
  margin: 0 0 16px 0;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-sidebar-content .tf-premium-box .premium-box-features ul {
  display: flex;
  flex-direction: column;
  margin: 0;
  gap: 8px;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-sidebar-content .tf-premium-box .premium-box-features ul li {
  display: flex;
  gap: 8px;
  margin: 0;
  color: #27333F;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  align-items: center;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-sidebar-content .tf-premium-box .premium-box-button {
  padding: 16px 0;
  border-bottom: 1px solid #F2F5F7;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-sidebar-content .tf-premium-box .premium-box-button a {
  padding: 12px 32px;
  border-radius: 8px;
  background: linear-gradient(180deg, #0352A0 0%, #0464C8 100%);
  color: #FFF;
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: navajowhite;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  transition: 0.3s all ease;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-sidebar-content .tf-premium-box .premium-box-button a:hover {
  box-shadow: 0 16px 8px 0 rgba(8, 20, 33, 0.04), 0 8px 16px 0 rgba(8, 20, 33, 0.08), 0 24px 20px 0 rgba(8, 20, 33, 0.08);
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-sidebar-content .tf-premium-box .premium-box-button a:focus {
  outline: none;
  box-shadow: none;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-sidebar-content .tf-premium-box .premium-box-button p {
  color: #27333F;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-sidebar-content .tf-premium-box .premium-moneyback-notice {
  padding-top: 8px;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-sidebar-content .tf-premium-box .premium-moneyback-notice h2 {
  color: #27333F;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  line-height: 24px;
  margin: 0;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-sidebar-content .tf-plugin-lists h3 {
  color: #27333F;
  font-size: 17px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.25px;
  margin: 0 0 8px 0;
  padding-left: 16px;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-sidebar-content .tf-plugin-lists .tf-others-plugin {
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0 32px 56px 0 rgba(125, 168, 212, 0.08), 0 16px 40px 0 rgba(125, 168, 212, 0.04), 0 32px 32px 0 rgba(125, 168, 212, 0.02);
  padding: 16px;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-sidebar-content .tf-plugin-lists .tf-others-plugin ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin: 0;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-plugin-item {
  border-radius: 6px;
  background: #FFF;
  padding: 8px 12px;
  transition: all ease-in-out 0.3s;
  margin-bottom: 0;
  position: relative;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-plugin-item.featured {
  border-radius: 6px;
  box-sizing: border-box;
  background: #FFFCF5;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-plugin-info-wrapper .tf-plugin-content {
  display: flex;
  gap: 12px;
  justify-content: space-between;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-plugin-info-wrapper .tf-plugin-content .tf-plugin-image img {
  margin-top: 5px;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-plugin-info-wrapper .tf-plugin-content .tf-plugin-title {
  width: calc(100% - 56px);
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-plugin-info-wrapper .tf-plugin-content .tf-plugin-title h4 {
  color: #27333F;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 160% */
  margin: 0 0 2px 0;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-plugin-info-wrapper .tf-plugin-content .tf-plugin-title h4 .badge.free {
  border-radius: 3px;
  background: #E6FAEE;
  font-size: 12px;
  padding: 2px 8px;
  color: #17723F;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px; /* 145.455% */
  text-transform: uppercase;
  margin-left: 6px;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-plugin-info-wrapper .tf-plugin-content .tf-plugin-title p {
  color: #414D59;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-plugin-info-wrapper .tf-plugin-content .tf-plugin-title .tf-plugin-btn {
  font-weight: 600;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-plugin-info-wrapper .tf-plugin-content .tf-plugin-title .tf-plugin-btn .tf-plugin-button {
  padding: 0px;
  color: #0464C8;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 160% */
  text-decoration: none;
  position: relative;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-plugin-info-wrapper .tf-plugin-content .tf-plugin-title .tf-plugin-btn .tf-plugin-button.install {
  color: #0464C8;
  cursor: pointer;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-plugin-info-wrapper .tf-plugin-content .tf-plugin-title .tf-plugin-btn .tf-plugin-button.install svg path {
  stroke: #0464C8;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-plugin-info-wrapper .tf-plugin-content .tf-plugin-title .tf-plugin-btn .tf-plugin-button.activate {
  color: #0464C8;
  cursor: pointer;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-plugin-info-wrapper .tf-plugin-content .tf-plugin-title .tf-plugin-btn .tf-plugin-button.pro, .tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-plugin-info-wrapper .tf-plugin-content .tf-plugin-title .tf-plugin-btn .tf-plugin-button.activate-pro {
  color: #ff9800;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-plugin-info-wrapper .tf-plugin-content .tf-plugin-title .tf-plugin-btn .tf-plugin-button.activate-pro {
  color: #ff5722;
  cursor: pointer;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-plugin-info-wrapper .tf-plugin-content .tf-plugin-title .tf-plugin-btn .tf-plugin-status.active {
  color: #0464C8;
  opacity: 0.8;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-plugin-info-wrapper .tf-plugin-content .tf-plugin-title .tf-plugin-btn .tf-plugin-status.active-pro {
  color: #ff5722;
  opacity: 0.8;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar {
  /* Loader */
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-plugin-button:not(.active):not(.active-pro) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
  position: relative;
  background-color: transparent;
  gap: 3px;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-plugin-button.loading {
  background: #ccc;
  cursor: not-allowed;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .loader {
  display: none;
  width: 12px;
  height: 12px;
  border: 2px solid #b3b3b3;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 8px;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-plugin-button.loading .loader {
  display: inline-block;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar {
  /* Customization */
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-customization-quote {
  background: #fff;
  padding: 16px;
  border-radius: 6px;
  margin: 32px 0 32px 0;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-customization-quote .tf-quote-content h3 {
  margin: 0 0 4px 0;
  color: #27333f;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-customization-quote .tf-quote-content p {
  color: #414d59;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  margin: 0 0 16px 0;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-customization-quote .tf-quote-content a {
  color: #FFF;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 160% */
  text-decoration: none;
  border-radius: 8px;
  background: linear-gradient(180deg, #0352A0 0%, #0464C8 100%);
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-quick-access h3 {
  color: #27333F;
  font-size: 17px;
  font-weight: 600;
  line-height: 150%; /* 25.5px */
  margin-bottom: 8px;
  margin-top: 0px;
  padding-left: 16px;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-quick-access .tf-quick-access-wrapper {
  padding: 16px;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0 32px 56px 0 rgba(125, 168, 212, 0.08), 0 16px 40px 0 rgba(125, 168, 212, 0.04), 0 32px 32px 0 rgba(125, 168, 212, 0.02);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-quick-access .tf-quick-access-wrapper .tf-access-item {
  transition: all ease-in-out 0.3s;
  width: 100%;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-quick-access .tf-quick-access-wrapper .tf-access-item a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #2C273F;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 160% */
  gap: 12px;
  border-bottom: 0.5px solid #D9E0E8;
  background: #FFF;
  padding: 16px;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-quick-access .tf-quick-access-wrapper .tf-access-item a:focus {
  outline: none;
  box-shadow: none;
}
.tf-setting-dashboard .tf-setting-performace-section .tf-settings-sidebar .tf-quick-access .tf-quick-access-wrapper .tf-access-item:last-child a {
  border-bottom: 0px solid;
}

.tf-settings-help-center .tf-support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 24px 24px 32px 0;
}
@media only screen and (max-width: 1199.98px) {
  .tf-settings-help-center .tf-support-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .tf-settings-help-center .tf-support-cards {
    grid-template-columns: 1fr;
  }
}
.tf-settings-help-center .tf-support-cards .tf-single-support-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 32px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  gap: 24px;
}
.tf-settings-help-center .tf-support-cards .tf-single-support-card h3 {
  font-size: 1.5rem;
  line-height: 32px;
  color: #27333F;
  margin: 0 0 -8px 0;
}
.tf-settings-help-center .tf-support-cards .tf-single-support-card p {
  font-size: 0.938rem;
  color: #566676;
  margin: 0;
}
.tf-settings-help-center .tf-support-cards .tf-single-support-card a.tf-link-skip-btn {
  min-width: inherit;
}
.tf-settings-help-center .tf-support-cards.tf-support-cards-4 {
  padding: 24px;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 16px;
  background: #F6FAFE;
}
@media only screen and (max-width: 1199.98px) {
  .tf-settings-help-center .tf-support-cards.tf-support-cards-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .tf-settings-help-center .tf-support-cards.tf-support-cards-4 {
    grid-template-columns: 1fr;
  }
}
.tf-settings-help-center .tf-support-cards.tf-support-cards-4 .tf-single-support-card h3 {
  margin: 0 0 -16px 0;
}
.tf-settings-help-center .tf-settings-faq {
  margin: 32px 20px 0 0;
}
.tf-settings-help-center .tf-settings-faq h2 {
  margin: 0 0 16px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 32px;
  color: #27333F;
}
.tf-settings-help-center .tf-settings-faq .tf-accordion-wrapper {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 24px;
  grid-template-columns: repeat(2, 1fr);
  display: grid;
  gap: 24px;
}
@media only screen and (max-width: 768px) {
  .tf-settings-help-center .tf-settings-faq .tf-accordion-wrapper {
    display: block;
  }
}
.tf-settings-help-center .tf-settings-faq .tf-accordion-wrapper .tf-single-faq {
  border-radius: 4px;
  border: 1px solid #EEF2F6;
  background: #F8FAFC;
}
@media only screen and (max-width: 768px) {
  .tf-settings-help-center .tf-settings-faq .tf-accordion-wrapper .tf-single-faq {
    margin-bottom: 16px;
  }
}
.tf-settings-help-center .tf-settings-faq .tf-accordion-wrapper .tf-single-faq .tf-faq-title {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  padding: 8px;
  cursor: pointer;
}
.tf-settings-help-center .tf-settings-faq .tf-accordion-wrapper .tf-single-faq .tf-faq-title i {
  font-size: 0.938rem;
  color: #566676;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.tf-settings-help-center .tf-settings-faq .tf-accordion-wrapper .tf-single-faq .tf-faq-title h4 {
  margin: 0;
  font-size: 0.938rem;
  font-weight: 500;
  color: #566676;
  line-height: 24px;
}
@media only screen and (max-width: 480px) {
  .tf-settings-help-center .tf-settings-faq .tf-accordion-wrapper .tf-single-faq .tf-faq-title h4 {
    font-size: 1.063rem;
  }
}
.tf-settings-help-center .tf-settings-faq .tf-accordion-wrapper .tf-single-faq .tf-faq-title.active i {
  transform: rotate(180deg);
}
.tf-settings-help-center .tf-settings-faq .tf-accordion-wrapper .tf-single-faq .tf-faq-desc {
  display: none;
  padding: 16px;
  border-top: 1px solid #EEF2F6;
}
.tf-settings-help-center .tf-settings-faq .tf-accordion-wrapper .tf-single-faq .tf-faq-desc p {
  font-size: 0.938rem;
  color: #566676;
  margin: 0;
}

.tf-setting-license {
  margin: 40px 40px 40px 20px;
}
.tf-setting-license .tf-setting-license-tabs ul {
  margin: 0;
  margin-left: 40px;
}
.tf-setting-license .tf-setting-license-tabs ul li.active {
  display: inline-block;
  border: none;
  margin: 0;
  line-height: 18px;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  background-color: #ffffff;
  border-radius: 5px 5px 0px 0px;
}
.tf-setting-license .tf-setting-license-tabs ul li.active:before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background-color: #ffffff;
  bottom: -8px;
  left: -5px;
  transform: rotate(45deg);
}
.tf-setting-license .tf-setting-license-tabs ul li.active:after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background-color: #ffffff;
  bottom: -8px;
  right: -5px;
  transform: rotate(45deg);
}
.tf-setting-license .tf-setting-license-tabs ul li.active span {
  display: inline-block;
  padding: 14px 22px;
  color: #000;
  font-size: 1.125rem;
  text-decoration: none;
}
.tf-setting-license .tf-setting-license-tabs ul li.active span i {
  margin-right: 5px;
}
.tf-setting-license .tf-setting-license-field {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 0px 20px;
}

.tf-swal-settings-reset-alert #swal2-title {
  line-height: 1.2;
}

.tf-setting-wrapper {
  max-width: 100%;
  margin: 30px 20px 30px 0px;
  background-color: #ffffff;
  border-radius: 10px;
  scroll-margin-top: 100px;
}
.tf-setting-wrapper .tourfic-settings-header {
  padding: 20px 20px 20px 20px;
  border-bottom: 1px solid #003c79;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  border-radius: 10px 10px 0px 0px;
  position: sticky;
  top: 32px;
  z-index: 999;
}
.tf-setting-wrapper .tourfic-settings-header .settings-header-left {
  min-width: 40%;
  display: flex;
  align-items: center;
  gap: 16px;
}
.tf-setting-wrapper .tourfic-settings-header .settings-header-left .tf-setting-title {
  font-size: 1.125rem;
  margin: 0;
}
.tf-setting-wrapper .tourfic-settings-header .settings-header-left .tf-setting-search {
  min-width: 55%;
  display: flex;
  align-items: center;
  padding-left: 12px;
  border: 1px solid #c4cbd4;
  background-color: #f5f8ff;
  gap: 8px;
  border-radius: 4px;
  color: #363e4a;
}
.tf-setting-wrapper .tourfic-settings-header .settings-header-left .tf-setting-search i {
  font-size: 16px;
}
.tf-setting-wrapper .tourfic-settings-header .settings-header-left .tf-setting-search .search-input {
  min-width: 100%;
}
.tf-setting-wrapper .tourfic-settings-header .settings-header-left .tf-setting-search input {
  min-width: calc(100% - 22px);
  padding: 8px 12px 8px 0px;
  border: none;
  position: relative;
  background-color: transparent;
  height: 42px;
  font-size: 1rem;
  z-index: 999;
}
.tf-setting-wrapper .tourfic-settings-header .settings-header-left .tf-setting-search input:focus {
  outline: none;
  box-shadow: none;
}
.tf-setting-wrapper .tourfic-settings-header .settings-header-left .tf-setting-search .tf-search-results {
  position: absolute;
  top: 75%;
  left: 164px;
  right: 0;
  width: 379px;
  background-color: #ffffff;
  box-sizing: border-box;
  border-radius: 4px;
  min-height: 60px;
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  border: 1px solid #ddd;
  transition: all 0.5s ease;
}
.tf-setting-wrapper .tourfic-settings-header .settings-header-left .tf-setting-search .tf-search-results .tf-search-not-found {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
}
.tf-setting-wrapper .tourfic-settings-header .settings-header-left .tf-setting-search .tf-search-results ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tf-setting-wrapper .tourfic-settings-header .settings-header-left .tf-setting-search .tf-search-results ul a {
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  padding: 5px 10px 5px 10px;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  border-radius: 4px;
  margin: 0;
  text-decoration: none;
  color: #000;
}
.tf-setting-wrapper .tourfic-settings-header .settings-header-left .tf-setting-search .tf-search-results ul a:focus {
  box-shadow: none;
}
.tf-setting-wrapper .tourfic-settings-header .settings-header-left .tf-setting-search .tf-search-results ul a .tf-search-result-title {
  line-height: 1.4;
}
.tf-setting-wrapper .tourfic-settings-header .settings-header-left .tf-setting-search .tf-search-results ul a i {
  font-size: 20px !important;
  color: #8997a9;
}
.tf-setting-wrapper .tourfic-settings-header .settings-header-left .tf-setting-search .tf-search-results ul a p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
}
.tf-setting-wrapper .tourfic-settings-header .settings-header-left .tf-setting-search .tf-search-results ul a span {
  font-size: 0.75rem;
  color: #777;
}
.tf-setting-wrapper .tourfic-settings-header .settings-header-left .tf-setting-search .tf-search-results ul a:hover {
  background-color: #f0f2f4;
}
.tf-setting-wrapper .tourfic-settings-header .settings-header-left .tf-setting-search .tf-search-results ul a:active {
  background-color: #f0f2f4;
}
.tf-setting-wrapper .tourfic-settings-header .tf-setting-save-btn {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tf-setting-wrapper .tourfic-settings-header .tf-setting-save-btn .tf-reset-btn {
  background-color: #dc3545;
  border-color: #dc3545;
}
.tf-setting-wrapper .tourfic-settings-header .tf-setting-save-btn .tf-reset-btn:hover {
  background-color: #bc362d;
  border-color: #bc362d;
}
.tf-setting-wrapper .tf-option-form {
  padding: 30px 30px 30px 0px;
}
.tf-setting-wrapper .tf-option-form .tf-option {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  z-index: 10;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .tf-setting-wrapper .tf-option-form .tf-option {
    position: relative;
    min-height: 500px;
  }
}
.tf-setting-wrapper .tf-option-form .tf-option.tf-taxonomy-metabox {
  display: block;
  margin: 0;
  max-width: 95%;
}
.tf-setting-wrapper .tf-option-form .tf-option .tf-admin-tab.active {
  display: block;
  position: absolute;
  z-index: 99999;
  top: 0;
  bottom: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tf-setting-wrapper .tf-option-form .tf-option .tf-admin-tab {
  min-width: 280px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1024px) {
  .tf-setting-wrapper .tf-option-form .tf-option .tf-admin-tab {
    display: none;
  }
}
.tf-setting-wrapper .tf-option-form .tf-option .tf-admin-tab a.tf-tablinks {
  font-style: normal;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  color: #000;
  padding: 18px 30px;
  font-size: 1rem;
  text-align: left;
  line-height: 24px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tf-setting-wrapper .tf-option-form .tf-option .tf-admin-tab a.tf-tablinks .tf-sec-icon {
  margin-right: 10px;
  color: #8997a9;
  min-width: 25px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tf-setting-wrapper .tf-option-form .tf-option .tf-admin-tab a.tf-tablinks:hover {
  background-color: #ffffff;
  outline: none;
}
.tf-setting-wrapper .tf-option-form .tf-option .tf-admin-tab a.tf-tablinks:focus {
  box-shadow: none;
  outline: none;
}
.tf-setting-wrapper .tf-option-form .tf-option .tf-admin-tab a.tf-tablinks.active {
  background-color: rgba(0, 60, 121, 0.1098039216);
  color: #003c79;
  position: relative;
  overflow: hidden;
  border-radius: 0px 5px 0px 0px;
}
@media only screen and (max-width: 1024px) {
  .tf-setting-wrapper .tf-option-form .tf-option .tf-admin-tab a.tf-tablinks.active {
    position: static;
  }
}
.tf-setting-wrapper .tf-option-form .tf-option .tf-admin-tab a.tf-tablinks.active .tf-sec-icon {
  color: #003c79;
}
.tf-setting-wrapper .tf-option-form .tf-option .tf-admin-tab a.tf-tablinks.active::before {
  position: absolute;
  content: "\f105";
  font-size: 0.875rem;
  color: #003c79;
  font-family: "FontAwesome" !important;
  right: 10px;
}
.tf-setting-wrapper .tf-option-form .tf-option .tf-admin-tab a.tf-tablinks.active::after {
  position: absolute;
  content: "";
  width: 8px;
  border: none;
  left: -4px;
  bottom: 0;
  top: 0;
  background: #003c79;
  height: 28px;
  margin: auto;
  border-radius: 25px;
}
@media only screen and (max-width: 1024px) {
  .tf-setting-wrapper .tf-option-form .tf-option .tf-admin-tab a.tf-tablinks.active::after {
    position: static;
    display: none;
  }
}
.tf-setting-wrapper .tf-option-form .tf-option .tf-admin-tab ul.tf-submenu {
  margin: 0;
  display: none;
}
.tf-setting-wrapper .tf-option-form .tf-option .tf-admin-tab ul.tf-submenu li {
  margin-bottom: 0;
}
.tf-setting-wrapper .tf-option-form .tf-option .tf-admin-tab ul.tf-submenu li a.tf-tablinks {
  padding: 0;
}
.tf-setting-wrapper .tf-option-form .tf-option .tf-admin-tab ul.tf-submenu li a.tf-tablinks span.tf-tablinks-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 18px 30px;
  margin-left: 24px;
}
.tf-setting-wrapper .tf-option-form .tf-option .tf-admin-tab ul.tf-submenu li:last-child a.tf-tablinks span.tf-tablinks-inner {
  border-left: none;
}
.tf-setting-wrapper .tf-option-form .tf-option .tf-admin-tab ul.tf-submenu li:last-child a.tf-tablinks span.tf-tablinks-inner::after {
  left: 0;
}
.tf-setting-wrapper .tf-option-form .tf-option .tf-tab-wrapper {
  -webkit-flex: 0 0 calc(100% - 280px);
  -ms-flex: 0 0 calc(100% - 280px);
  flex: 0 0 calc(100% - 280px);
  padding-top: 0px;
}
@media only screen and (max-width: 1024px) {
  .tf-setting-wrapper .tf-option-form .tf-option .tf-tab-wrapper {
    flex: 0 0 calc(100% - 0px);
  }
}
.tf-setting-wrapper .tf-option-form .tf-option .tf-tab-wrapper .tf-mobile-setting {
  text-align: right;
  padding-bottom: 15px;
  display: none;
}
@media only screen and (max-width: 1024px) {
  .tf-setting-wrapper .tf-option-form .tf-option .tf-tab-wrapper .tf-mobile-setting {
    display: block;
  }
}
.tf-setting-wrapper .tf-option-form .tf-option .tf-tab-wrapper .tf-mobile-setting a i {
  color: #000;
  font-size: 22px;
}
.tf-setting-wrapper .tf-option-form .tf-option .tf-tab-wrapper .tf-tab-content {
  display: none;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 20px 20px;
  background: #ededf8;
  margin: 0px 0px 0px 20px;
  border-radius: 5px;
}
.tf-setting-wrapper .tf-option-form .tf-option .tf-tab-wrapper .tf-tab-content.active {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.tf-setting-wrapper .tf-option-form .tf-option .tf-tab-wrapper .tf-tab-content > .tf-field {
  background-color: #ffffff;
  margin: 5px 0px;
  border-radius: 8px;
  padding: 20px 30px;
}
.tf-setting-wrapper .tf-option-form .tf-option .tf-tab-wrapper .tf-tab-content > .tf-field p.description {
  font-size: 0.875rem;
  margin-top: 10px;
}
.tf-setting-wrapper .tf-option-form .tf-option .tf-tab-wrapper .tf-tab-content > .tf-field.tf-field-heading {
  border-radius: 0px;
}
.tf-setting-wrapper .tf-option-form .tf-option .tf-tab-wrapper .tf-tab-content > .tf-field.tf-field-color {
  background-color: transparent;
  padding: 0px;
}

.tf-shortcode-generator-section {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  margin-right: 20px;
}
.tf-shortcode-generator-section .tf-shortcode-generators {
  background: #ededf8;
  border-radius: 8px;
  padding: 20px;
}
.tf-shortcode-generator-section .tf-shortcode-generators .tf-shortcode-generator-single:not(:last-child) {
  margin-bottom: 20px;
}
.tf-shortcode-generator-section .tf-shortcode-generators .tf-shortcode-generator-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  flex-wrap: wrap;
  flex-direction: row;
  background-color: #ffffff;
  padding: 20px 30px;
  align-items: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}
@media only screen and (max-width: 640px) {
  .tf-shortcode-generator-section .tf-shortcode-generators .tf-shortcode-generator-label {
    display: flow-root !important;
  }
}
.tf-shortcode-generator-section .tf-shortcode-generators .tf-shortcode-generator-label .tf-labels label {
  font-size: 0.875rem;
  line-height: 22px;
  font-weight: 600;
  color: #0d165e;
  display: inline-block;
  margin-bottom: 3px;
}
.tf-shortcode-generator-section .tf-shortcode-generators .tf-shortcode-generator-label .tf-labels p {
  margin: 0;
  font-size: 13px;
  line-height: 18px;
  color: #838790;
  font-weight: 400;
}
.tf-shortcode-generator-section .tf-shortcode-generators .shortcode-section-heading {
  padding: 5px 30px;
  border-bottom: 3px solid #003c79;
}
.tf-shortcode-generator-section .tf-shortcode-generators .tf-shortcode-btn button {
  font-size: 1rem;
  line-height: 20px;
  text-decoration: none;
  font-weight: 500;
  padding: 0 20px;
  margin-left: 15px;
  height: 45px;
  background-color: #003c79;
  color: #ffffff;
  border: none;
  box-shadow: none !important;
  outline: none;
  cursor: pointer;
  border-radius: 5px;
}
@media only screen and (max-width: 640px) {
  .tf-shortcode-generator-section .tf-shortcode-generators .tf-shortcode-btn button {
    margin-left: 0px !important;
    margin-top: 10px !important;
  }
}
.tf-shortcode-generator-section .tf-shortcode-generators .tf-shortcode-btn button:hover {
  background-color: #002f5e;
}
.tf-shortcode-generator-section .tf-shortcode-generators .tf-sg-form-wrapper {
  display: none;
  overflow-x: auto;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.tf-shortcode-generator-section .tf-shortcode-generators .tf-sg-form-wrapper .tf-shortcode-generator-form {
  transform: translateY(10%);
  width: 600px;
  margin: 30px auto;
  padding: 30px;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  border-radius: 10px;
}
@media only screen and (max-width: 640px) {
  .tf-shortcode-generator-section .tf-shortcode-generators .tf-sg-form-wrapper .tf-shortcode-generator-form {
    width: 320px;
  }
}
.tf-shortcode-generator-section .tf-shortcode-generators .tf-sg-form-wrapper .tf-shortcode-generator-form .tf-sg-row {
  display: flex;
  margin-right: 15px;
  margin-left: -15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 640px) {
  .tf-shortcode-generator-section .tf-shortcode-generators .tf-sg-form-wrapper .tf-shortcode-generator-form .tf-sg-row {
    display: flow-root;
    margin-left: 0;
    margin-right: 0;
  }
}
.tf-shortcode-generator-section .tf-shortcode-generators .tf-sg-form-wrapper .tf-shortcode-generator-form .tf-col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
}
@media only screen and (max-width: 640px) {
  .tf-shortcode-generator-section .tf-shortcode-generators .tf-sg-form-wrapper .tf-shortcode-generator-form .tf-col-lg-6 {
    max-width: 100%;
  }
}
.tf-shortcode-generator-section .tf-shortcode-generators .tf-sg-form-wrapper .tf-shortcode-generator-form .tf-col-lg-4 {
  flex: 0 0 33%;
  max-width: 50%;
  position: relative;
  width: 100%;
  padding-right: 4px;
  padding-left: 4px;
  box-sizing: border-box;
}
@media only screen and (max-width: 640px) {
  .tf-shortcode-generator-section .tf-shortcode-generators .tf-sg-form-wrapper .tf-shortcode-generator-form .tf-col-lg-4 {
    max-width: 100%;
  }
}
.tf-shortcode-generator-section .tf-shortcode-generators .tf-sg-form-wrapper .tf-shortcode-generator-form .tf-col-lg-4:first-child {
  padding-left: 15px;
}
.tf-shortcode-generator-section .tf-shortcode-generators .tf-sg-form-wrapper .tf-shortcode-generator-form .tf-col-lg-4:last-child {
  padding-right: 15px;
}
.tf-shortcode-generator-section .tf-shortcode-generators .tf-sg-form-wrapper .tf-shortcode-generator-form select.tf-select-field[multiple] {
  height: auto;
}
.tf-shortcode-generator-section .tf-shortcode-generators .tf-sg-form-wrapper .tf-shortcode-generator-form span.select2-container {
  width: 100% !important;
}
.tf-shortcode-generator-section .tf-shortcode-generators .tf-sg-form-wrapper .tf-shortcode-generator-form span.select2-container span.select2-selection {
  min-height: 40px;
}
.tf-shortcode-generator-section .tf-shortcode-generators .tf-sg-form-wrapper .tf-shortcode-generator-form .select2-search__field {
  margin: 10px;
  font-size: 0.875rem;
}
.tf-shortcode-generator-section .tf-shortcode-generators .tf-sg-form-wrapper .tf-shortcode-generator-form .tf-setting-field {
  width: 100%;
  box-shadow: none;
  height: 44px;
  padding: 10px 25px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 0.875rem;
  line-height: 16px;
  appearance: none;
}
.tf-shortcode-generator-section .tf-shortcode-generators .tf-sg-form-wrapper .tf-shortcode-generator-form .tf-setting-field:active {
  border-color: #8c8f94;
  box-shadow: none;
}
.tf-shortcode-generator-section .tf-shortcode-generators .tf-sg-form-wrapper .tf-shortcode-generator-form .tf-sg-close {
  position: absolute;
  right: -7px;
  top: -5px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  background: red;
  color: #ffffff;
  text-align: center;
  font-size: 1.25rem;
  border-radius: 50%;
  cursor: pointer;
}
.tf-shortcode-generator-section .tf-shortcode-generators .tf-sg-form-wrapper .tf-shortcode-generator-form .tf-copy-item {
  display: none;
}
.tf-shortcode-generator-section .tf-shortcode-generators .tf-sg-form-wrapper .tf-shortcode-generator-form .tf-shortcode-field.copy-shortcode {
  align-self: start;
  float: none;
  display: flex;
}
.tf-shortcode-generator-section .tf-shortcode-generators .tf-sg-form-wrapper .tf-shortcode-generator-form input.tf-shortcode-value {
  width: 100%;
  height: 45px;
  background: #ffffff;
  padding: 10px 15px;
  border: 1px solid #ccc;
}
.tf-shortcode-generator-section .tf-shortcode-generators .tf-sg-form-wrapper .tf-shortcode-generator-form .tf-copy-btn {
  margin-left: 10px;
  line-height: 22px;
  vertical-align: middle;
}

.tf-copy-item span.tf-copied-msg {
  display: flex;
  justify-content: end;
  margin-bottom: 9px;
  padding-right: 10px;
}

#tfhotel_docs,
#tftour_docs,
#tfapartment_docs {
  border: 0px solid;
  box-shadow: none;
  background-color: transparent;
}
#tfhotel_docs .postbox-header,
#tftour_docs .postbox-header,
#tfapartment_docs .postbox-header {
  display: none;
}
#tfhotel_docs .inside,
#tftour_docs .inside,
#tfapartment_docs .inside {
  margin: 0px;
  padding: 0px;
}
#tfhotel_docs .inside .tf_docs_preview a,
#tftour_docs .inside .tf_docs_preview a,
#tfapartment_docs .inside .tf_docs_preview a {
  text-decoration: none;
}
#tfhotel_docs .inside .tf_docs_preview a img,
#tftour_docs .inside .tf_docs_preview a img,
#tfapartment_docs .inside .tf_docs_preview a img {
  width: 100%;
}
#tfhotel_docs .inside .tf_docs_preview a:focus,
#tftour_docs .inside .tf_docs_preview a:focus,
#tfapartment_docs .inside .tf_docs_preview a:focus {
  outline: none;
  box-shadow: none;
}

.tf-copy-item span.tf-copied-msg {
  display: flex;
  justify-content: end;
  margin-bottom: 9px;
  padding-right: 10px;
}

.tf-exp-imp-field {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
}

.tf-field {
  padding: 12px 0;
}
@media only screen and (max-width: 1024px) {
  .tf-field {
    width: 100% !important;
  }
}
.tf-field .tf-field-label {
  display: block;
  font-style: normal;
  margin-bottom: 3px;
  font-weight: 600;
  font-size: 15px;
  color: #27333F;
  display: flex !important;
  align-items: center;
  line-height: 25.5px;
  letter-spacing: -0.25px;
  margin-bottom: 4px;
}
.tf-field .tf-field-label .tf-desc-tooltip {
  margin-left: 4px;
  position: relative;
  display: flex;
}
.tf-field .tf-field-label .tf-desc-tooltip .tf-desc-tooltip-content {
  position: absolute;
  width: 124px;
  border-radius: 8px;
  background: #27333F;
  padding: 8px 12px;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
  z-index: 9;
  left: 50%;
  margin-left: -74px;
  bottom: 25px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.tf-field .tf-field-label .tf-desc-tooltip .tf-desc-tooltip-content::before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  border-radius: 3px;
  background: #27333F;
  left: 50%;
  margin-left: -8px;
  bottom: -4px;
  transform: rotate(45deg);
  z-index: -1;
}
.tf-field .tf-field-label .tf-desc-tooltip:hover .tf-desc-tooltip-content {
  opacity: 1;
  visibility: visible;
}
.tf-field .tf-field-label .tf-desc-tooltip svg {
  cursor: pointer;
}
.tf-field .tf-field-label .tf-csf-badge {
  margin-left: 13px;
}
.tf-field .tf-field-label .tf-csf-badge .tf-pro {
  background-color: #F44336 !important;
  margin: 0;
}
.tf-field .tf-field-label .tf-csf-badge .tf-upcoming {
  background-color: #006600 !important;
  margin: 0;
}
.tf-field .tf-label-field .tf-fieldset .tf-inline li {
  background: #ededf8 !important;
  padding: 20px 30px 13px 30px;
  margin: 10px 0px;
  border-radius: 8px;
}
.tf-field .tf-fieldset {
  font-style: normal;
  font-size: 0.875rem;
}
.tf-field .tf-fieldset a {
  font-style: normal;
  font-weight: 600;
}
.tf-field .tf-field-sub-title {
  color: #566676;
  font-size: 13px;
  margin-bottom: 0px;
  margin-top: 4px;
  display: block;
}

.tf-field.tf-field-heading .tf-fieldset {
  margin-top: 0px;
}

.tf-taxonomy-metabox .tf-field {
  padding: 12px 0;
}

.tf-inline-list {
  display: inline-block;
}

.tf-field-ical input,
.tf-field-ical_export input,
.tf-field-text input, .tf-field-password input {
  width: 100%;
  padding: 12px 8px 12px 12px;
  height: 40px;
  color: #27333F;
  font-size: 15px;
  padding: 8px 8px 8px 12px;
  border: 1px solid #D9E0E8;
  background: #F5F9FF;
  border-radius: 4px;
}
.tf-field-ical input:focus,
.tf-field-ical_export input:focus,
.tf-field-text input:focus, .tf-field-password input:focus {
  background: transparent;
  box-shadow: none;
  border-radius: 4px;
  border: 1px solid #D9E0E8;
}
.tf-field-ical input::-webkit-input-placeholder,
.tf-field-ical_export input::-webkit-input-placeholder,
.tf-field-text input::-webkit-input-placeholder, .tf-field-password input::-webkit-input-placeholder {
  color: #95A3B2;
}
.tf-field-ical input::-ms-input-placeholder,
.tf-field-ical_export input::-ms-input-placeholder,
.tf-field-text input::-ms-input-placeholder, .tf-field-password input::-ms-input-placeholder {
  color: #95A3B2;
}
.tf-field-ical input input:-ms-input-placeholder,
.tf-field-ical_export input input:-ms-input-placeholder,
.tf-field-text input input:-ms-input-placeholder, .tf-field-password input input:-ms-input-placeholder {
  color: #95A3B2;
}
.tf-field-ical input::-moz-placeholder,
.tf-field-ical_export input::-moz-placeholder,
.tf-field-text input::-moz-placeholder, .tf-field-password input::-moz-placeholder {
  opacity: 1;
  color: #95A3B2;
}
.tf-field-ical input:-moz-placeholder,
.tf-field-ical_export input:-moz-placeholder,
.tf-field-text input:-moz-placeholder, .tf-field-password input:-moz-placeholder {
  opacity: 1;
  color: #95A3B2;
}
.tf-field-ical input::placeholder,
.tf-field-ical_export input::placeholder,
.tf-field-text input::placeholder, .tf-field-password input::placeholder {
  color: #95A3B2;
}
.tf-field-ical input:read-only,
.tf-field-ical_export input:read-only,
.tf-field-text input:read-only, .tf-field-password input:read-only {
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
  background-color: #ebf2ff;
}
.tf-field-ical input:read-only:focus,
.tf-field-ical_export input:read-only:focus,
.tf-field-text input:read-only:focus, .tf-field-password input:read-only:focus {
  box-shadow: none;
  border: 1px solid #c4cbd4;
}
.tf-field-ical .tf-field-text-group,
.tf-field-ical_export .tf-field-text-group,
.tf-field-text .tf-field-text-group, .tf-field-password .tf-field-text-group {
  border-radius: 4px;
  border: 1px solid #D9E0E8;
  background: #FFFFFF;
  height: 40px;
  padding: 8px 8px 8px 12px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.tf-field-ical .tf-field-text-group i,
.tf-field-ical_export .tf-field-text-group i,
.tf-field-text .tf-field-text-group i, .tf-field-password .tf-field-text-group i {
  color: #95A3B2;
}
.tf-field-ical .tf-field-text-group input,
.tf-field-ical_export .tf-field-text-group input,
.tf-field-text .tf-field-text-group input, .tf-field-password .tf-field-text-group input {
  height: 24px;
  border: 0px solid;
  background: transparent;
  box-shadow: none;
}
.tf-field-ical .tf-field-text-group input:focus,
.tf-field-ical_export .tf-field-text-group input:focus,
.tf-field-text .tf-field-text-group input:focus, .tf-field-password .tf-field-text-group input:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

.tf-field-textarea textarea {
  width: 100% !important;
  height: 120px;
  padding: 8px 8px 8px 12px;
  color: #566676;
  font-size: 15px;
  width: 100%;
  border-radius: 4px;
  border: 1px solid #D9E0E8;
  background: #F5F9FF;
  line-height: 24px;
}
.tf-field-textarea textarea:focus {
  background: #ffffff;
  box-shadow: none;
}

.tf-field-select select.tf-select {
  width: 100%;
  max-width: 100%;
  padding: 8px 8px 8px 12px;
  border: 1px solid #D9E0E8;
  background-color: #FFFFFF;
  border-radius: 4px;
  height: 40px;
  color: #27333F;
  font-size: 15px;
  line-height: 24px;
}
.tf-field-select select.tf-select:focus {
  outline: none;
  border-color: #D9E0E8;
  box-shadow: none;
}

.tf-field-select2 .select2-container {
  width: 100% !important;
  display: block !important;
}
.tf-field-select2 .select2-container .select2-selection {
  width: 100%;
  padding: 4px 8px 0 12px;
  border: 1px solid #D9E0E8;
  background: #F5F9FF;
  border-radius: 4px;
  min-height: 40px;
  color: #363e4a;
  font-size: 0.875rem;
}
.tf-field-select2 .select2-container .select2-selection .select2-selection__choice {
  background-color: #e1e5ea;
  border: none;
  margin-left: 4px;
  margin-top: 0;
  padding: 4px 20px 4px 4px !important;
  color: #363e4a;
}
.tf-field-select2 .select2-container .select2-selection .select2-selection__choice:first-child {
  margin-left: 0;
}
.tf-field-select2 .select2-container .select2-selection .select2-selection__choice__remove {
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  color: #363e4a;
  font-size: 1rem;
  padding: 0;
  position: absolute;
  left: auto;
  top: 2px;
  right: 4px;
}
.tf-field-select2 .select2-container .select2-selection .select2-selection__clear {
  margin-top: 0;
}
.tf-field-select2 .select2-container .select2-search--inline .select2-search__field {
  margin-top: 0;
  margin-left: 5px;
  padding: 4px 0 0 0;
  max-width: 100%;
  resize: none;
  height: 30px;
  vertical-align: middle;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}
.tf-field-select2 .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 40px;
}
.tf-field-select2 .tf-select-box-option .tf-add-category {
  margin-top: 16px;
}
.tf-field-select2 .tf-select-box-option .tf-add-category > i {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 11px;
  cursor: pointer;
}
.tf-field-select2 .tf-popup-box {
  position: fixed;
  z-index: 900000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.tf-field-select2 .tf-popup-box::before {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
}
.tf-field-select2 .tf-popup-box .tf-add-category-box {
  display: inline-block;
  z-index: 1;
  min-width: 400px;
  min-height: 160px;
  border-color: #aaaaaa;
  box-shadow: 0 5px 30px -5px rgba(0, 0, 0, 0.25);
  text-align: left;
  background: #ffffff;
  position: relative;
}
.tf-field-select2 .tf-popup-box .tf-add-category-box .tf-add-category-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ccd0d4;
  margin: 0;
  padding: 15px;
}
.tf-field-select2 .tf-popup-box .tf-add-category-box .tf-add-category-box-header h3 {
  font-size: 0.875rem;
  line-height: 1em;
  margin: 0;
  padding: 0;
}
.tf-field-select2 .tf-popup-box .tf-add-category-box .tf-add-category-box-header .tf-add-category-box-close {
  background: #b4b9be;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.tf-field-select2 .tf-popup-box .tf-add-category-box .tf-add-category-box-header .tf-add-category-box-close i {
  color: #ffffff;
}
.tf-field-select2 .tf-popup-box .tf-add-category-box .tf-add-category-box-content {
  padding: 15px;
}
.tf-field-select2 .tf-popup-box .tf-add-category-box .tf-add-category-box-content .tf-single-category-box {
  margin-bottom: 15px;
}
.tf-field-select2 .tf-popup-box .tf-add-category-box .tf-add-category-box-content .tf-single-category-box label {
  display: block;
  margin-bottom: 10px;
}
.tf-field-select2 .tf-popup-box .tf-add-category-box .tf-add-category-box-content .tf-single-category-box input {
  width: 100%;
  height: 35px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.tf-field-select2 .tf-popup-box .tf-add-category-box .tf-add-category-box-content .tf-single-category-box select {
  width: 100%;
  height: 35px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.tf-field-select2 .tf-popup-box .tf-add-category-box .tf-admin-btn.tf-btn-secondary {
  padding: 7px 25px;
  font-size: 14px !important;
  font-weight: 500 !important;
}

.tf-field.tf-field-select2 .tf-fieldset span.select2:nth-child(3) {
  display: none;
}

.tf-field-radio .tf-fieldset ul li {
  margin-bottom: 10px;
}
.tf-field-radio .tf-fieldset ul.tf-inline li {
  display: inline-block;
  margin-right: 20px;
}
.tf-field-radio .tf-fieldset input[type=radio] {
  display: none;
}
.tf-field-radio .tf-fieldset input[type=radio] + label {
  color: #607085;
  font-size: 1rem;
  position: relative;
  padding-left: 30px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tf-field-radio .tf-fieldset input[type=radio] + label:hover {
  color: #4b5768;
}
.tf-field-radio .tf-fieldset input[type=radio] + label:hover::before {
  border-color: #76a9ff;
}
.tf-field-radio .tf-fieldset input[type=radio] + label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #8997a9;
  border-radius: 100%;
  position: absolute;
  top: 1px;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tf-field-radio .tf-fieldset input[type=radio] + label::after {
  content: "";
  height: 14px;
  width: 14px;
  background-color: #2979ff;
  border-radius: 100%;
  position: absolute;
  top: 4px;
  left: 3px;
  opacity: 0;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tf-field-radio .tf-fieldset input[type=radio]:checked + label::after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.tf-field-radio .tf-fieldset input[type=radio]:checked + label:before {
  border-color: #2979ff;
}

.tf-field-checkbox .tf-fieldset ul li {
  margin-bottom: 10px;
}
.tf-field-checkbox .tf-fieldset ul.tf-inline li {
  display: inline-block;
  margin-right: 20px;
}
.tf-field-checkbox .tf-fieldset input[type=checkbox] {
  display: none;
}
.tf-field-checkbox .tf-fieldset input[type=checkbox] + label {
  color: #607085;
  font-size: 1rem;
  position: relative;
  padding-left: 30px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tf-field-checkbox .tf-fieldset input[type=checkbox] + label:hover {
  color: #4b5768;
}
.tf-field-checkbox .tf-fieldset input[type=checkbox] + label:hover::before {
  border-color: #76a9ff;
}
.tf-field-checkbox .tf-fieldset input[type=checkbox] + label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #8997a9;
  border-radius: 2px;
  position: absolute;
  top: 1px;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tf-field-checkbox .tf-fieldset input[type=checkbox] + label::after {
  content: "";
  background-image: url(../images/icons/check.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px;
  height: 18px;
  width: 18px;
  position: absolute;
  top: 2px;
  left: 1px;
  opacity: 0;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tf-field-checkbox .tf-fieldset input[type=checkbox]:checked + label::after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.tf-field-checkbox .tf-fieldset input[type=checkbox]:checked + label:before {
  background-color: #003c79;
  border-color: #003c79;
}

.tf-field-image .tf-fieldset .tf-fieldset-media-preview:not(:empty) {
  height: 100px;
  width: 100px;
  border: 1px solid #ddd;
  padding: 5px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
}
.tf-field-image .tf-fieldset .tf-fieldset-media-preview:not(:empty) .tf-image-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ffffff;
  padding: 2px;
  cursor: pointer;
  border-radius: 50%;
  border: 1px solid #ddd;
  width: 15px;
  height: 15px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.tf-field-image .tf-fieldset .tf-fieldset-media-preview:not(:empty) .tf-image-close img {
  background: #ffffff;
  width: 11px !important;
}
.tf-field-image .tf-fieldset .tf-fieldset-media-preview:not(:empty) img {
  width: 100%;
  object-fit: contain;
}
.tf-field-image .tf-fieldset .tf-fieldset-media {
  display: flex;
}
.tf-field-image .tf-fieldset .tf-fieldset-media input {
  width: 90%;
  padding: 12px 8px 12px 12px;
  background-color: #f5f8ff;
  border: 1px solid #c4cbd4;
  border-radius: 4px;
  height: 48px;
  color: #363e4a;
  font-size: 0.875rem;
  white-space: nowrap;
  overflow: hidden;
}
.tf-field-image .tf-fieldset .tf-fieldset-media a.tf-media-upload {
  height: 48px;
  width: 100px !important;
  line-height: 48px;
  text-align: center;
  text-transform: capitalize;
  background-color: #003c79;
  border-color: #003c79;
}

.tf-taxonomy-metabox {
  display: flow-root;
}
.tf-taxonomy-metabox .tf-field-image .tf-fieldset .tf-fieldset-media {
  display: flex;
}
.tf-taxonomy-metabox .tf-field-image .tf-fieldset .tf-fieldset-media input {
  width: 85%;
  padding: 12px 8px 12px 12px;
  border: none;
  border-radius: 4px;
  height: 48px;
  color: #363e4a;
  font-size: 0.875rem;
  background: #ffffff;
  border: 1px solid #c4cbd4;
  white-space: nowrap;
  overflow: hidden;
}
.tf-taxonomy-metabox .tf-field-image .tf-fieldset .tf-fieldset-media a.tf-media-upload {
  height: 48px;
  width: 14%;
  line-height: 48px;
  text-align: center;
  text-transform: capitalize;
}

.taxonomy-hotel_location #edittag,
.taxonomy-tour_destination #edittag,
.taxonomy-hotel_feature #edittag {
  display: flex;
  flex-direction: column;
}
.taxonomy-hotel_location #edittag .tf-admin-meta-box.tf-taxonomy-metabox,
.taxonomy-tour_destination #edittag .tf-admin-meta-box.tf-taxonomy-metabox,
.taxonomy-hotel_feature #edittag .tf-admin-meta-box.tf-taxonomy-metabox {
  order: 2;
}
.taxonomy-hotel_location #edittag table,
.taxonomy-tour_destination #edittag table,
.taxonomy-hotel_feature #edittag table {
  order: 1;
}
.taxonomy-hotel_location #edittag .edit-tag-actions,
.taxonomy-tour_destination #edittag .edit-tag-actions,
.taxonomy-hotel_feature #edittag .edit-tag-actions {
  order: 3;
}

.tf-field-gallery .tf-fieldset .tf-fieldset-gallery-preview img {
  height: 60px;
  width: 60px;
  border: 1px solid #ddd;
  padding: 5px;
  margin-right: 10px;
}
.tf-field-gallery .tf-fieldset .tf-fieldset-gallery a.button-primary {
  background-color: #003c79;
  border-color: #003c79;
}
.tf-field-gallery .tf-fieldset .tf-fieldset-gallery a.tf-gallery-edit {
  margin-left: 5px;
}
.tf-field-gallery .tf-fieldset .tf-fieldset-gallery a.button-warning {
  border-color: #F44336;
  background: #F44336;
  margin-left: 5px;
  color: #ffffff;
  display: none;
}

.tf-field-heading {
  padding: 24px;
  margin: 0 -24px;
  background-color: #EBF5FF;
}
.tf-field-heading .tf-field-heading-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 32px;
  align-items: end;
}
.tf-field-heading .tf-field-heading-inner .tf-field-heading-icon {
  margin-right: 10px;
  width: 28px;
  height: 28px;
  font-size: 1rem;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: #EBF5FF;
  color: #ffffff;
  border-radius: 4px;
  flex-wrap: nowrap;
}
.tf-field-heading .tf-field-heading-inner .tf-field-heading-content {
  color: #000;
  font-size: 0.875rem;
  font-weight: 600;
  width: 100%;
}
.tf-field-heading .tf-field-heading-inner .tf-field-heading-content h3 {
  margin: 0;
  color: #27333F;
  font-size: 19px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.75px;
}
.tf-field-heading .tf-field-heading-inner .tf-field-heading-content p {
  color: #566676;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px; /* 153.846% */
  margin: 0;
}
.tf-field-heading .tf-field-heading-inner .tf-field-heading-content.has-content h3 {
  margin-bottom: 4px;
}
.tf-field-heading .tf-field-heading-inner .tf-heading-docs a {
  display: flex;
  text-decoration: none;
  color: #003C79;
  font-size: 13px;
  font-weight: 600;
  line-height: 20px; /* 153.846% */
  gap: 8px;
}
.tf-field-heading .tf-field-heading-inner .tf-heading-docs a:focus {
  outline: none;
  box-shadow: none;
}

.tf-field-notice-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 24px;
  border: 1px solid #d1ebec;
  border-radius: 8px;
  background-color: #f0fafa;
}
.tf-field-notice-inner .tf-field-notice-icon {
  margin-right: 10px;
  font-size: 1.25rem;
  color: #069697;
}
.tf-field-notice-inner .tf-field-notice-content {
  color: #8997a9;
  align-self: center;
}
.tf-field-notice-inner .tf-field-notice-content h6 {
  margin: 0;
  font-weight: 500;
  color: #363e4a;
  font-size: 1rem;
}
.tf-field-notice-inner .tf-field-notice-content.has-content h6 {
  margin-bottom: 5px;
}
.tf-field-notice-inner.tf-notice-success {
  border-color: #dceddd;
  background-color: #f5faf5;
}
.tf-field-notice-inner.tf-notice-success .tf-field-notice-icon {
  color: #198754;
}
.tf-field-notice-inner.tf-notice-warning {
  border-color: #ffecb3;
  background-color: #fffdf6;
}
.tf-field-notice-inner.tf-notice-warning .tf-field-notice-icon {
  color: #ffbf00;
}
.tf-field-notice-inner.tf-notice-danger {
  border-color: #fddcda;
  background-color: #fef2f1;
}
.tf-field-notice-inner.tf-notice-danger .tf-field-notice-icon {
  color: #dc3545;
}

.tour-option-itinerary-notice .tf-field-notice-content {
  font-size: 1rem;
  line-height: 1.5;
}

.tour-option-itinerary-notice .tf-field-notice-content {
  font-size: 1rem;
  line-height: 1.5;
}

.tf-pro-notice .tf-field-notice-inner {
  background-color: #EBEFFF;
  border: 1.5px solid #295BFF;
}
.tf-pro-notice .tf-field-notice-inner .tf-field-notice-icon {
  font-size: 1.5rem;
  color: #295BFF;
  margin-right: 8px;
}
.tf-pro-notice .tf-field-notice-inner .tf-field-notice-content {
  color: #000;
  font-size: 0.875rem;
  line-height: 1.6;
  align-self: center;
  font-weight: 400;
}
.tf-pro-notice .tf-field-notice-inner .tf-field-notice-content b {
  font-weight: 600;
}
.tf-pro-notice .tf-field-notice-inner .tf-field-notice-content a {
  color: #295BFF;
}

.tf-field-switch .tf-inline-switch {
  display: flex;
  gap: 8px;
  align-items: center;
}
.tf-field-switch .tf-inline-switch .tf-field-label {
  margin-bottom: 0px;
}
.tf-field-switch .tf-switch-label {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 20px;
  border-radius: 32px;
}
.tf-field-switch .tf-switch-label input {
  display: none;
}
.tf-field-switch .tf-switch-label .tf-switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #95A3B2;
  border-radius: 50px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.tf-field-switch .tf-switch-label .tf-switch-slider::before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  border-radius: 50px;
  top: 3px;
  left: 4px;
  background-color: #FFFFFF;
  filter: drop-shadow(0px 2px 4px rgba(12, 31, 49, 0.12));
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.tf-field-switch .tf-switch-label .tf-switch-slider .tf-switch-on, .tf-field-switch .tf-switch-label .tf-switch-slider .tf-switch-off {
  color: #ffffff;
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  left: 12px;
  font-size: 0.75rem;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.tf-field-switch .tf-switch-label .tf-switch-slider .tf-switch-off {
  color: #8999A9;
  left: auto;
  right: 12px;
  opacity: 1;
}
.tf-field-switch .tf-switch-label input:checked + .tf-switch-slider {
  background-color: #003C79;
}
.tf-field-switch .tf-switch-label input:checked + .tf-switch-slider:before {
  left: 100%;
  margin-left: -18px;
  background-color: #ffffff;
  filter: drop-shadow(0px 2px 4px rgba(12, 31, 49, 0.12));
}
.tf-field-switch .tf-switch-label input:checked + .tf-switch-slider .tf-switch-on {
  opacity: 1;
}
.tf-field-switch .tf-switch-label input:checked + .tf-switch-slider .tf-switch-off {
  opacity: 0;
}

.tf-field-date .tf-fieldset {
  position: relative;
}
.tf-field-date .tf-fieldset .tf-date-range {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 30px;
}
.tf-field-date .tf-fieldset .tf-date-range .tf-date-from, .tf-field-date .tf-fieldset .tf-date-range .tf-date-to {
  width: 100%;
}
.tf-field-date input {
  width: 100%;
  padding: 12px 8px 12px 12px;
  border: none;
  background-color: #f5f8ff;
  border-radius: 4px;
  height: 48px;
  color: #363e4a;
  font-size: 0.875rem;
  border: 1px solid #c4cbd4;
}
.tf-field-date input:focus {
  background: #ffffff;
  box-shadow: 0 0 0 2px #2979ff;
  border-radius: 4px;
}
.tf-field-date input::-webkit-input-placeholder {
  color: #a6b1bf;
}
.tf-field-date input::-ms-input-placeholder {
  color: #a6b1bf;
}
.tf-field-date input input:-ms-input-placeholder {
  color: #a6b1bf;
}
.tf-field-date input::-moz-placeholder {
  opacity: 1;
  color: #a6b1bf;
}
.tf-field-date input:-moz-placeholder {
  opacity: 1;
  color: #a6b1bf;
}
.tf-field-date input::placeholder {
  color: #a6b1bf;
}
.tf-field-date i {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  color: #a6b1bf;
  font-size: 1rem;
}

.tf-field-time .tf-fieldset {
  position: relative;
}
.tf-field-time input {
  width: 100%;
  padding: 12px 8px 12px 12px;
  border: none;
  border: 1px solid #D9E0E8;
  background: #F5F9FF;
  border-radius: 4px;
  height: 40px;
  color: #27333F;
  font-size: 15px;
  border: 1px solid #c4cbd4;
}
.tf-field-time input:focus {
  background: #ffffff;
  box-shadow: 0 0 0 2px #2979ff;
  border-radius: 4px;
}
.tf-field-time input::-webkit-input-placeholder {
  color: #27333F;
}
.tf-field-time input::-ms-input-placeholder {
  color: #27333F;
}
.tf-field-time input input:-ms-input-placeholder {
  color: #27333F;
}
.tf-field-time input::-moz-placeholder {
  opacity: 1;
  color: #27333F;
}
.tf-field-time input:-moz-placeholder {
  opacity: 1;
  color: #27333F;
}
.tf-field-time input::placeholder {
  color: #27333F;
}
.tf-field-time i {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  color: #27333F;
  font-size: 1rem;
}

.tf-field-repeater {
  margin: 12px 0px;
}
.tf-field-repeater > .tf-fieldset {
  border-radius: 8px;
  border: 1px solid #F2F5F7;
  background: #FFFFFF;
  padding: 16px 16px 16px 0px;
}
.tf-field-repeater .tf-field-repeater-desc {
  margin-bottom: 16px;
}
.tf-field-repeater .tf-repeater .tf-single-repeater-clone {
  display: none;
}
.tf-field-repeater .tf-repeater .tf-repeater-header {
  display: flex;
  width: 100%;
  position: relative;
  align-items: center;
}
.tf-field-repeater .tf-repeater .tf-repeater-header:hover .tf-repeater-icon-move {
  opacity: 1;
}
.tf-field-repeater .tf-repeater .tf-repeater-header.active-repeater .tf-repeater-header-info {
  border-radius: 4px 4px 0 0;
  background: #DBEAFE;
}
.tf-field-repeater .tf-repeater .tf-repeater-header.active-repeater .tf-repeater-header-info .tf-repeater-title {
  font-weight: 600;
}
.tf-field-repeater .tf-repeater .tf-repeater-header .tf-repeater-header-info {
  border-radius: 4px;
  background: #F5F9FF;
  border: 1px solid #F2F5F7;
  width: 100%;
  padding: 8px 12px;
  display: flex;
  align-items: center;
}
.tf-field-repeater .tf-repeater .tf-repeater-header .tf-repeater-icon {
  padding: 4px;
  cursor: pointer;
  text-align: center;
  display: inline-flex;
  font-size: 1rem;
  line-height: 24px;
  height: 24px;
  width: 24px;
  border-radius: 6px;
  border: 1px solid #D9E0E8;
  background: #FFFFFF;
  box-sizing: border-box;
}
.tf-field-repeater .tf-repeater .tf-repeater-header .tf-repeater-icon-move {
  cursor: pointer;
  opacity: 0;
  transition: 0.3s all ease;
}
.tf-field-repeater .tf-repeater .tf-repeater-header .tf-repeater-title {
  display: inline-block;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  cursor: pointer;
  color: #27333F;
  width: calc(100% - 108px);
}
.tf-field-repeater .tf-repeater .tf-repeater-header .tf-repeater-icon-absulate {
  position: absolute;
  right: 8px;
  top: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.tf-field-repeater .tf-repeater .tf-repeater-header .tf-repeater-icon-absulate .tf-field-switch {
  width: auto !important;
  padding: 0;
  display: inline-flex;
  align-items: center;
}
.tf-field-repeater .tf-repeater .tf-repeater-header .tf-repeater-icon-absulate .tf-field-switch .tf-field-label {
  display: none !important;
}
.tf-field-repeater .tf-repeater .tf-repeater-header .tf-repeater-icon-absulate .package-action-hide {
  display: none;
}
.tf-field-repeater .tf-repeater .tf-repeater-header .tf-repeater-icon-absulate .package-action-hide.show {
  display: flex;
}
.tf-field-repeater .tf-repeater .tf-repeater-content-wrap {
  background-color: #ffffff;
  padding: 8px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  border-left: 1px solid #F2F5F7;
  border-right: 1px solid #F2F5F7;
  border-bottom: 1px solid #F2F5F7;
  margin-left: 15px;
  border-radius: 0 0 4px 4px;
}
.tf-field-repeater .tf-repeater .tf-repeater-content-wrap .tf-field:nth-child(1) {
  padding-top: 0px;
}
.tf-field-repeater .tf-repeater .tf-repeater-content-wrap .tf-action-button-group {
  display: flex;
  gap: 24px;
  margin-top: 12px;
}
.tf-field-repeater .tf-repeater .tf-repeater-content-wrap .tf-action-button-group .button-primary,
.tf-field-repeater .tf-repeater .tf-repeater-content-wrap .tf-action-button-group .button-secondary {
  border-radius: 8px;
  background: #EBF5FF;
  color: #003C79;
  border-radius: 8px;
  padding: 12px 32px !important;
  font-size: 15px;
  font-weight: 600;
  line-height: 24px !important;
  border: 0px solid;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tf-field-repeater .tf-repeater .tf-repeater-content-wrap .tf-action-button-group .button-primary {
  background: linear-gradient(180deg, #0051A3 0%, #003C79 100%);
  color: #FFFFFF;
}
.tf-field-repeater .tf-repeater .tf-repeater-header.active-repeater + .tf-repeater-content-wrap {
  background-color: #FBFCFE;
}
.tf-field-repeater .tf-repeater .tf-repeater-add {
  margin-left: 16px;
}
.tf-field-repeater .tf-repeater .tf-repeater-add .tf-repeater-icon {
  color: #003C79;
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.tf-field-repeater .tf-repeater .tf-single-repeater {
  margin-bottom: 16px;
  border-radius: 5px;
}
.tf-field-repeater .tf-repeater .tf-single-repeater.tf-single-repeater-group_discount_package .tf-repeater-header .tf-repeater-header-info .tf-repeater-title {
  width: calc(100% - 104px);
  margin-right: 0px;
}
.tf-field-repeater .tf-repeater .tf-single-repeater.tf-single-repeater-group_discount_package .tf-repeater-content-wrap .tf-field:nth-child(1) {
  padding-top: 12px;
}
.tf-field-repeater .tf-repeater .tf-field-notice-inner {
  margin-bottom: 24px;
}

.tf-field-disable .tf-repeater {
  pointer-events: none;
}

.car_time_slots .tf-repeater-icon-absulate,
.car_time_slots .tf-repeater-add-car_time_slots,
.car_time_slots .tf-field.tf-field-hidden {
  display: none;
}
.car_time_slots .tf-single-repeater {
  margin-bottom: 12px;
}
.car_time_slots .tf-single-repeater:last-child {
  margin-bottom: 0;
}
.car_time_slots .tf-single-repeater .tf-repeater-header {
  width: auto;
  padding: 12px 16px;
}
.car_time_slots .tf-single-repeater .tf-repeater-header .tf-repeater-icon {
  position: absolute;
  right: 5px;
}

.tf-tablist ul.tf-nav-tabs {
  list-style: none;
  margin-bottom: 0;
}
.tf-tablist ul.tf-nav-tabs li.tf-tab-item {
  display: inline-block;
  padding: 8px 24px;
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  line-height: 24px;
  color: #607085;
  cursor: pointer;
  transition: 0.4s;
  border-radius: 8px 8px 0px 0px;
  border-bottom: 4px solid transparent;
  margin-bottom: 0 !important;
}
.tf-tablist ul.tf-nav-tabs li.show {
  background-color: #f0f2f4;
  border-bottom: 4px solid #607085;
  color: #404040;
}
.tf-tablist ul.tf-nav-tabs li.tf-tab-item:hover {
  background-color: #f8f9fb;
  border-bottom: 4px solid #f8f9fb;
}
.tf-tablist ul.tf-nav-tabs li.show:hover {
  background-color: #f0f2f4;
  border-bottom: 4px solid #607085;
  color: #404040;
}
.tf-tablist .tf-tab-field-content .tf-tab-item-content {
  border: 1px solid #f0f2f4;
  display: none;
  visibility: hidden;
  padding: 10px 24px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.tf-tablist .tf-tab-field-content .show {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  visibility: visible;
}

.tf-field-map .tf--map-search {
  width: 100%;
}
.tf-field-map .tf--map-search input {
  width: 100%;
  padding: 12px 8px 12px 12px;
  border: 1px solid #c4cbd4;
  background-color: #f5f8ff;
  border-radius: 4px;
  height: 48px;
  color: #363e4a;
  font-size: 0.875rem;
}
.tf-field-map .tf--map-osm-wrap {
  border: 1px solid #ddd;
  padding: 5px;
  margin-top: 10px;
}
.tf-field-map .tf--map-osm-wrap .tf--map-osm {
  height: 250px !important;
}
.tf-field-map .tf--map-inputs {
  display: flex;
  justify-content: space-between;
}
.tf-field-map .tf--map-inputs .tf--map-input {
  width: 48%;
}
.tf-field-map .tf--map-inputs .tf--map-input label {
  width: 100%;
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 0.875rem;
  color: #607085;
  margin-top: 15px;
}
.tf-field-map .tf--map-inputs .tf--map-input input {
  width: 100%;
  padding: 12px 8px 12px 12px;
  border: 1px solid #c4cbd4;
  background-color: #f5f8ff;
  border-radius: 4px;
  height: 48px;
  color: #363e4a;
  font-size: 0.875rem;
}

.tf-field-color > label {
  margin-top: 15px;
}
.tf-field-color > span.tf-field-sub-title {
  margin-bottom: 30px;
}
.tf-field-color .tf-fieldset ul.tf-inline li {
  display: flex;
  justify-content: space-between;
  background-color: #ffffff;
  margin: 10px 0px;
  border-radius: 8px;
  padding: 20px 30px 13px 30px;
}
@media only screen and (max-width: 768px) {
  .tf-field-color .tf-fieldset ul.tf-inline li {
    display: flow-root;
  }
}
.tf-field-color .tf-fieldset ul.tf-inline li > label {
  font-weight: 600;
  font-size: 1rem;
  color: #000;
  width: 45%;
  margin-top: 5px;
}
@media only screen and (max-width: 768px) {
  .tf-field-color .tf-fieldset ul.tf-inline li > label {
    margin-top: 0px;
    margin-bottom: 10px;
    display: block;
  }
}
.tf-field-color .tf-fieldset ul.tf-inline li .wp-picker-container {
  display: block;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .tf-field-color .tf-fieldset ul.tf-inline li .wp-picker-container {
    text-align: left;
    display: block;
  }
}
.tf-field-color .tf-fieldset ul.tf-inline li:last-child {
  margin-bottom: 0px;
}

.tf-field-icon .tf-icon-preview {
  width: 120px;
  height: 120px;
  background: #f0f2f4;
  border-radius: 8px;
  text-align: center;
  line-height: 125px;
  position: relative;
  cursor: pointer;
  margin-bottom: 15px;
}
.tf-field-icon .tf-icon-preview .tf-icon-preview-wrap {
  width: 100%;
  height: 100%;
  display: inline-block;
}
.tf-field-icon .tf-icon-preview .tf-icon-preview-wrap i {
  font-size: 40px;
  color: #607085;
}
.tf-field-icon .tf-icon-preview .remove-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background: #ffffff;
  box-shadow: 0px 8px 16px rgba(90, 91, 106, 0.08);
  border-radius: 8px;
  color: #dc3545;
  font-size: 0.875rem;
  text-align: center;
  line-height: 20px;
  cursor: pointer;
}
.tf-field-icon .tf-icon-preview.tf-hide {
  display: none;
}

#tf-icon-modal .tf-modal-content .tf-modal-header {
  margin-bottom: 20px;
}
#tf-icon-modal .tf-modal-content .tf-icon-search {
  text-align: center;
}
#tf-icon-modal .tf-modal-content .tf-icon-search input.tf-icon-search-input {
  width: 100%;
  max-width: 720px;
  padding: 12px 8px 12px 12px;
  border: none;
  background: #ffffff;
  border-radius: 4px;
  height: 48px;
  color: #363e4a;
  font-size: 0.875rem;
}
#tf-icon-modal .tf-modal-content .tf-icon-search input.tf-icon-search-input:focus {
  background: #ffffff;
  box-shadow: 0 0 0 2px #2979ff;
  border-radius: 4px;
}
#tf-icon-modal .tf-modal-content .tf-icon-search input.tf-icon-search-input::-webkit-input-placeholder {
  color: #a6b1bf;
}
#tf-icon-modal .tf-modal-content .tf-icon-search input.tf-icon-search-input::-ms-input-placeholder {
  color: #a6b1bf;
}
#tf-icon-modal .tf-modal-content .tf-icon-search input.tf-icon-search-input input:-ms-input-placeholder {
  color: #a6b1bf;
}
#tf-icon-modal .tf-modal-content .tf-icon-search input.tf-icon-search-input::-moz-placeholder {
  opacity: 1;
  color: #a6b1bf;
}
#tf-icon-modal .tf-modal-content .tf-icon-search input.tf-icon-search-input:-moz-placeholder {
  opacity: 1;
  color: #a6b1bf;
}
#tf-icon-modal .tf-modal-content .tf-icon-search input.tf-icon-search-input::placeholder {
  color: #a6b1bf;
}
#tf-icon-modal .tf-modal-content .tf-icon-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin: 0 -30px;
}
#tf-icon-modal .tf-modal-content .tf-icon-wrapper ul.tf-icon-tab-list {
  -webkit-flex: 0 0 200px;
  -ms-flex: 0 0 200px;
  flex: 0 0 200px;
  margin: 0;
  border-right: 1px solid #e1e5ea;
}
#tf-icon-modal .tf-modal-content .tf-icon-wrapper ul.tf-icon-tab-list li {
  margin-bottom: 8px;
  cursor: pointer;
  font-size: 0.875rem;
  color: #363e4a;
  font-weight: 500;
  text-transform: capitalize;
  padding: 12px 24px;
  transition: all 0.3s ease;
}
#tf-icon-modal .tf-modal-content .tf-icon-wrapper ul.tf-icon-tab-list li i {
  margin-right: 8px;
}
#tf-icon-modal .tf-modal-content .tf-icon-wrapper ul.tf-icon-tab-list li.active {
  background: #2979ff;
  color: #ffffff;
}
#tf-icon-modal .tf-modal-content .tf-icon-wrapper .tf-icon-tab-content {
  flex-grow: 1;
  padding: 0 24px 24px;
}
#tf-icon-modal .tf-modal-content .tf-icon-wrapper .tf-icon-tab-content .tf-icon-tab-pane {
  display: none;
}
#tf-icon-modal .tf-modal-content .tf-icon-wrapper .tf-icon-tab-content .tf-icon-tab-pane.active {
  display: block;
}
#tf-icon-modal .tf-modal-content .tf-icon-wrapper .tf-icon-tab-content .tf-icon-tab-pane ul.tf-icon-list {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-gap: 12px;
  max-height: calc(100vh - 300px);
  overflow-y: auto;
}
#tf-icon-modal .tf-modal-content .tf-icon-wrapper .tf-icon-tab-content .tf-icon-tab-pane ul.tf-icon-list li {
  background: #ffffff;
  font-size: 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  padding-bottom: 100%;
  margin-bottom: 0;
  color: #607085;
}
#tf-icon-modal .tf-modal-content .tf-icon-wrapper .tf-icon-tab-content .tf-icon-tab-pane ul.tf-icon-list li .tf-icon-inner {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
#tf-icon-modal .tf-modal-content .tf-icon-wrapper .tf-icon-tab-content .tf-icon-tab-pane ul.tf-icon-list li .tf-icon-inner span.check-icon {
  position: absolute;
  top: 4px;
  right: 4px;
  height: 16px;
  width: 16px;
  line-height: 16px;
  font-size: 0.75rem;
  text-align: center;
  border: 1px solid #8997a9;
  border-radius: 100%;
  opacity: 0;
  transition: all 0.3s ease;
}
#tf-icon-modal .tf-modal-content .tf-icon-wrapper .tf-icon-tab-content .tf-icon-tab-pane ul.tf-icon-list li .tf-icon-inner span.check-icon i {
  color: #ffffff;
  opacity: 0;
  transition: all 0.3s ease;
}
#tf-icon-modal .tf-modal-content .tf-icon-wrapper .tf-icon-tab-content .tf-icon-tab-pane ul.tf-icon-list li:hover {
  box-shadow: -2px 2px 24px rgba(107, 125, 148, 0.2);
}
#tf-icon-modal .tf-modal-content .tf-icon-wrapper .tf-icon-tab-content .tf-icon-tab-pane ul.tf-icon-list li:hover .tf-icon-inner span.check-icon {
  opacity: 1;
}
#tf-icon-modal .tf-modal-content .tf-icon-wrapper .tf-icon-tab-content .tf-icon-tab-pane ul.tf-icon-list li.active {
  box-shadow: -2px 2px 24px rgba(107, 125, 148, 0.2);
}
#tf-icon-modal .tf-modal-content .tf-icon-wrapper .tf-icon-tab-content .tf-icon-tab-pane ul.tf-icon-list li.active .tf-icon-inner span.check-icon {
  border-color: #2979ff;
  background-color: #2979ff;
  opacity: 1;
}
#tf-icon-modal .tf-modal-content .tf-icon-wrapper .tf-icon-tab-content .tf-icon-tab-pane ul.tf-icon-list li.active .tf-icon-inner span.check-icon i {
  opacity: 1;
}
#tf-icon-modal .tf-modal-content .tf-icon-wrapper .tf-icon-tab-content .tf-icon-tab-pane ul.tf-icon-list::-webkit-scrollbar {
  width: 10px;
}
#tf-icon-modal .tf-modal-content .tf-icon-wrapper .tf-icon-tab-content .tf-icon-tab-pane ul.tf-icon-list::-webkit-scrollbar-track {
  background: #e1e5ea;
  border-radius: 10px;
}
#tf-icon-modal .tf-modal-content .tf-icon-wrapper .tf-icon-tab-content .tf-icon-tab-pane ul.tf-icon-list::-webkit-scrollbar-thumb {
  background: #76a9ff;
  border-radius: 10px;
}
#tf-icon-modal .tf-modal-content .tf-icon-wrapper .tf-icon-tab-content .tf-icon-tab-pane ul.tf-icon-list::-webkit-scrollbar-thumb:hover {
  background: #2979ff;
}
#tf-icon-modal .tf-modal-content .tf-modal-footer {
  padding: 24px;
  margin: 0 -30px -30px;
  background: #ffffff;
  border-top: 1px solid #e1e5ea;
  box-shadow: 0px -4px 16px rgba(137, 151, 169, 0.2);
  text-align: right;
}
#tf-icon-modal .tf-modal-content .tf-modal-footer .tf-admin-btn {
  padding: 10px 24px;
}

.tf-field-number input {
  width: 100%;
  border-radius: 4px;
  height: 40px;
  color: #27333F;
  font-size: 15px;
  padding: 8px 8px 8px 12px;
  border: 1px solid #D9E0E8;
  background: #F5F9FF;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
}
.tf-field-number input:focus {
  background: transparent;
  box-shadow: none;
  border-radius: 4px;
  border: 1px solid #D9E0E8;
}
.tf-field-number input::-webkit-input-placeholder {
  color: #95A3B2;
}
.tf-field-number input::-ms-input-placeholder {
  color: #95A3B2;
}
.tf-field-number input input:-ms-input-placeholder {
  color: #95A3B2;
}
.tf-field-number input::-moz-placeholder {
  opacity: 1;
  color: #95A3B2;
}
.tf-field-number input:-moz-placeholder {
  opacity: 1;
  color: #95A3B2;
}
.tf-field-number input::placeholder {
  color: #95A3B2;
}
.tf-field-number input::-webkit-outer-spin-button, .tf-field-number input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.tf-field-number .tf-unit-price-box {
  border-radius: 4px;
  border: 1px solid #D9E0E8;
  background: #FFFFFF;
  display: flex;
  width: 100%;
}
.tf-field-number .tf-unit-price-box input,
.tf-field-number .tf-unit-price-box select {
  width: 50%;
}
.tf-field-number .tf-unit-price-box input {
  border: 0px solid;
  color: #27333F;
  text-align: center;
  font-size: 15px;
  background-color: transparent;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
}
.tf-field-number .tf-unit-price-box input:focus {
  outline: none;
  box-shadow: none;
  border: none;
}
.tf-field-number .tf-unit-price-box input::-webkit-outer-spin-button, .tf-field-number .tf-unit-price-box input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.tf-field-number .tf-unit-price-box select {
  background-color: #F5F9FF;
  border-radius: 0px;
  border: 0px solid;
  color: #566676;
  text-align: center;
}
.tf-field-number .tf-unit-price-box select:focus {
  outline: none;
  box-shadow: none;
  border: none;
}
.tf-field-number .tf-number-range {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.tf-field-number .tf-number-range .tf-number-field-box {
  border-radius: 4px;
  border: 1px solid #D9E0E8;
  background: #FFFFFF;
  height: 40px;
  padding: 8px 8px 8px 12px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: calc(50% - 12px);
}
.tf-field-number .tf-number-range .tf-number-field-box input {
  height: 24px;
  border: 0px solid;
  background: transparent;
}

textarea.tf-exp-imp-field {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
}

a.tf-import-btn, a.tf-export-btn {
  margin: 14px 0px !important;
}

.tf-image-radio-group {
  display: flex;
  align-items: initial;
  flex-wrap: wrap;
}
.tf-image-radio-group li {
  display: inline-block;
  margin-right: 20px;
  border-radius: 5px;
}
.tf-image-radio-group li .tf-image-checkbox {
  display: inline-block;
  position: relative;
}
.tf-image-radio-group li .tf-image-checkbox .tf-circle-check {
  position: absolute;
  font-family: "remixicon";
  height: 24px;
  width: 24px;
  right: -10px;
  top: -10px;
  border-radius: 50%;
  background-color: #21A159;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
}
.tf-image-radio-group li .tf-image-checkbox .tf-circle-check::before {
  content: "\eb7b";
  color: #fff;
  font-size: 18px;
  line-height: 1;
}
.tf-image-radio-group li .tf-image-checkbox img {
  width: 170px;
  object-fit: cover;
  object-position: top;
  height: 190px;
  transition: object-position 2s ease-in-out, border-color 0.3s ease-in-out;
}
.tf-image-radio-group li .tf-image-checkbox img:hover {
  object-position: bottom;
}
.tf-image-radio-group li .tf-image-checkbox > input {
  display: none;
}
.tf-image-radio-group li .tf-image-checkbox > img {
  cursor: pointer;
  border: 1px solid #EDF0F2;
  border-radius: 5px;
}
.tf-image-radio-group li .tf-image-checkbox > input:checked + img {
  box-shadow: 0 0 0 2px #21A159;
}
.tf-image-radio-group li .tf-image-checkbox > input:checked + img + .tf-circle-check {
  opacity: 1;
  visibility: visible;
}
.tf-image-radio-group li span.tf-template-title {
  display: block;
  text-align: center;
  font-weight: 500;
}
.tf-image-radio-group li .tf-image-checkbox-footer {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 8px;
  gap: 8px;
  color: #404040;
  text-decoration: none;
  outline: none;
}
.tf-image-radio-group li .tf-image-checkbox-footer:focus {
  box-shadow: none;
}
.tf-image-radio-group li a.tf-image-checkbox-footer:hover {
  text-decoration: underline;
  color: #2979ff;
}
.tf-image-radio-group li.tf-pro-item {
  position: relative;
}
.tf-image-radio-group li.tf-pro-item .tf-image-checkbox-pro-badge {
  position: absolute;
  top: -1px;
  right: -2px;
  background-color: #295BFF;
  padding: 3px 10px;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 13px;
  border-radius: 3px;
  z-index: 9;
}
.tf-image-radio-group li.tf-pro-item img {
  opacity: 0.5;
  cursor: not-allowed;
}

.tf-apt-cal-wrap .fc-view-harness,
.tf-room-cal-wrap .fc-view-harness,
.tf-tour-cal-wrap .fc-view-harness {
  height: 395px !important;
}
.tf-apt-cal-wrap .fc-direction-ltr .fc-daygrid-event.fc-event-end,
.tf-apt-cal-wrap .fc-direction-rtl .fc-daygrid-event.fc-event-start,
.tf-room-cal-wrap .fc-direction-ltr .fc-daygrid-event.fc-event-end,
.tf-room-cal-wrap .fc-direction-rtl .fc-daygrid-event.fc-event-start,
.tf-tour-cal-wrap .fc-direction-ltr .fc-daygrid-event.fc-event-end,
.tf-tour-cal-wrap .fc-direction-rtl .fc-daygrid-event.fc-event-start {
  font-size: 0.625rem;
}
.tf-apt-cal-wrap .fc .fc-bg-event .fc-event-title,
.tf-room-cal-wrap .fc .fc-bg-event .fc-event-title,
.tf-tour-cal-wrap .fc .fc-bg-event .fc-event-title {
  font-size: 0.625rem;
}
.tf-apt-cal-wrap .fc .fc-daygrid-event,
.tf-room-cal-wrap .fc .fc-daygrid-event,
.tf-tour-cal-wrap .fc .fc-daygrid-event {
  cursor: pointer;
}
.tf-apt-cal-wrap .fc .fc-daygrid-event.tf_tour_disable_date,
.tf-room-cal-wrap .fc .fc-daygrid-event.tf_tour_disable_date,
.tf-tour-cal-wrap .fc .fc-daygrid-event.tf_tour_disable_date {
  background-color: #e33529 !important;
  border-color: #e33529 !important;
}
.tf-apt-cal-wrap .fc .fc-daygrid-event.tf_tour_disable_date .fc-event-main,
.tf-room-cal-wrap .fc .fc-daygrid-event.tf_tour_disable_date .fc-event-main,
.tf-tour-cal-wrap .fc .fc-daygrid-event.tf_tour_disable_date .fc-event-main {
  opacity: 0;
}
.tf-apt-cal-wrap table,
.tf-room-cal-wrap table,
.tf-tour-cal-wrap table {
  margin-bottom: 0 !important;
}
.tf-apt-cal-wrap .bulk-popup-content,
.tf-room-cal-wrap .bulk-popup-content,
.tf-tour-cal-wrap .bulk-popup-content {
  margin-top: 15px;
}
.tf-apt-cal-wrap .bulk-popup-content .bulk-popup-content-box,
.tf-room-cal-wrap .bulk-popup-content .bulk-popup-content-box,
.tf-tour-cal-wrap .bulk-popup-content .bulk-popup-content-box {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tf-apt-cal-wrap .bulk-popup-content .tf-bulk-edit-header,
.tf-room-cal-wrap .bulk-popup-content .tf-bulk-edit-header,
.tf-tour-cal-wrap .bulk-popup-content .tf-bulk-edit-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 14px;
  position: sticky;
  top: 0;
  z-index: 99;
  left: 0;
  width: 100%;
  background: #fff;
}
.tf-apt-cal-wrap .bulk-popup-content .tf-bulk-edit-header h3,
.tf-room-cal-wrap .bulk-popup-content .tf-bulk-edit-header h3,
.tf-tour-cal-wrap .bulk-popup-content .tf-bulk-edit-header h3 {
  margin: 0;
  font-size: 24px;
  color: #27333F;
  color: #27333F;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.75px;
}
.tf-apt-cal-wrap .bulk-popup-content .tf-bulk-edit-header .tf_tour_bulk_close,
.tf-room-cal-wrap .bulk-popup-content .tf-bulk-edit-header .tf_tour_bulk_close,
.tf-tour-cal-wrap .bulk-popup-content .tf-bulk-edit-header .tf_tour_bulk_close {
  cursor: pointer;
}
.tf-apt-cal-wrap .bulk-popup-content .tf-bulk-repeater-section,
.tf-room-cal-wrap .bulk-popup-content .tf-bulk-repeater-section,
.tf-tour-cal-wrap .bulk-popup-content .tf-bulk-repeater-section {
  display: none;
  border-radius: 8px;
  border: 1px solid #F2F5F7;
  background: #FFFFFF;
  padding: 24px;
}
.tf-apt-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-field-checkbox,
.tf-room-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-field-checkbox,
.tf-tour-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-field-checkbox {
  margin-bottom: 16px;
}
.tf-apt-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-field-checkbox > label,
.tf-room-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-field-checkbox > label,
.tf-tour-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-field-checkbox > label {
  margin-bottom: 8px;
}
.tf-apt-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-checkbox-group,
.tf-room-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-checkbox-group,
.tf-tour-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-checkbox-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0;
}
.tf-apt-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-checkbox-group li,
.tf-room-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-checkbox-group li,
.tf-tour-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-checkbox-group li {
  margin: 0;
}
.tf-apt-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-checkbox-group li label,
.tf-room-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-checkbox-group li label,
.tf-tour-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-checkbox-group li label {
  color: #27333F;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  padding-left: 26px;
}
.tf-apt-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-checkbox-group li label::before,
.tf-room-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-checkbox-group li label::before,
.tf-tour-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-checkbox-group li label::before {
  top: -2px;
  height: 16px;
  width: 16px;
  border: 2px solid #D9E0E8;
  border-radius: 4px;
}
.tf-apt-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-checkbox-group li label::after,
.tf-room-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-checkbox-group li label::after,
.tf-tour-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-checkbox-group li label::after {
  top: -1px;
}
.tf-apt-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-weeks-checkbox ul li,
.tf-room-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-weeks-checkbox ul li,
.tf-tour-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-weeks-checkbox ul li {
  width: calc(25% - 16px);
}
.tf-apt-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-days-checkbox ul li,
.tf-room-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-days-checkbox ul li,
.tf-tour-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-days-checkbox ul li {
  width: calc(9.0909090909% - 16px);
}
.tf-apt-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-months-checkbox ul li,
.tf-apt-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-years-checkbox ul li,
.tf-room-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-months-checkbox ul li,
.tf-room-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-years-checkbox ul li,
.tf-tour-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-months-checkbox ul li,
.tf-tour-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-years-checkbox ul li {
  width: calc(16.6666666667% - 16px);
}
.tf-apt-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-years-checkbox,
.tf-room-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-years-checkbox,
.tf-tour-cal-wrap .bulk-popup-content .tf-bulk-repeater-section .tf-years-checkbox {
  margin-bottom: 0px;
}
.tf-apt-cal-wrap .bulk-popup-content .tf-field.tf-field-repeater,
.tf-room-cal-wrap .bulk-popup-content .tf-field.tf-field-repeater,
.tf-tour-cal-wrap .bulk-popup-content .tf-field.tf-field-repeater {
  padding-bottom: 0px;
}

.tf-room-cal-field a.button-primary {
  background-color: #003c79;
  border-color: #003c79;
}

.tf-field-ical a.button-primary,
.tf-field-ical_export a.button-primary {
  background-color: #003c79;
  border-color: #003c79;
}

.tf-single-options {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tf-bulk-popup,
.tf-reset-confirmation-box {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}
.tf-bulk-popup .bulk-popup-content,
.tf-reset-confirmation-box .bulk-popup-content {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0px 4px 140px 0px rgba(0, 0, 0, 0.25);
  padding: 24px;
  width: 736px;
}
.tf-bulk-popup .bulk-popup-content .bulk-popup-content-box,
.tf-reset-confirmation-box .bulk-popup-content .bulk-popup-content-box {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-height: 500px;
  overflow-y: auto;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 768px) {
  .tf-bulk-popup .bulk-popup-content .bulk-popup-content-box,
  .tf-reset-confirmation-box .bulk-popup-content .bulk-popup-content-box {
    max-height: 360px;
  }
}
.tf-bulk-popup .bulk-popup-content .bulk-popup-content-box::-webkit-scrollbar,
.tf-reset-confirmation-box .bulk-popup-content .bulk-popup-content-box::-webkit-scrollbar {
  width: 6px;
}
.tf-bulk-popup .bulk-popup-content .bulk-popup-content-box::-webkit-scrollbar-track,
.tf-reset-confirmation-box .bulk-popup-content .bulk-popup-content-box::-webkit-scrollbar-track {
  background: transparent;
  margin-top: 20px;
  margin-bottom: 20px;
}
.tf-bulk-popup .bulk-popup-content .bulk-popup-content-box::-webkit-scrollbar-thumb,
.tf-reset-confirmation-box .bulk-popup-content .bulk-popup-content-box::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}
.tf-bulk-popup .bulk-popup-content .bulk-popup-content-box,
.tf-reset-confirmation-box .bulk-popup-content .bulk-popup-content-box {
  scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
  scrollbar-width: thin;
}
.tf-bulk-popup .bulk-popup-content .bulk-popup-content-box .tf-date-time-selection,
.tf-reset-confirmation-box .bulk-popup-content .bulk-popup-content-box .tf-date-time-selection {
  border: 0px solid;
  padding: 0px;
}
.tf-bulk-popup .bulk-popup-content .bulk-popup-content-box .tf-date-time-selection .tf-field-select,
.tf-reset-confirmation-box .bulk-popup-content .bulk-popup-content-box .tf-date-time-selection .tf-field-select {
  width: calc(100% - 2px) !important;
}
.tf-bulk-popup .bulk-popup-content .tf-repeater .tf-repeater-add .tf-repeater-icon,
.tf-reset-confirmation-box .bulk-popup-content .tf-repeater .tf-repeater-add .tf-repeater-icon {
  font-size: 12px;
}
.tf-bulk-popup .bulk-popup-content .tf-mb-5,
.tf-reset-confirmation-box .bulk-popup-content .tf-mb-5 {
  margin-bottom: 10px;
}

.tf-single-package .tf-field-switch {
  width: 160px;
}
.tf-single-package .tf-form-fields {
  width: calc(100% - 160px);
  display: flex;
  gap: 12px;
}
.tf-single-package .tf-form-fields .tf_option_pricing_type_person {
  width: 33%;
}

.tf-tour-limitation-group {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
}

.tf-single-option {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
  width: 100%;
}

.tf-content-loading {
  position: relative;
}
.tf-content-loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid #000;
  border-left-color: transparent;
  border-radius: 50%;
  vertical-align: middle;
  visibility: visible;
  opacity: 1;
  z-index: 9;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  -webkit-animation: tf-rotate 450ms infinite linear;
  animation: tf-rotate 450ms infinite linear;
}

.tf-reset-confirmation-box {
  display: none;
}
.tf-reset-confirmation-box .tf-confirmation-content {
  width: 320px;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 10px;
  position: relative;
}
.tf-reset-confirmation-box .tf-confirmation-content .tf-confirmation-header {
  display: flex;
  gap: 8px;
}
.tf-reset-confirmation-box .tf-confirmation-content .tf-confirmation-header h3 {
  margin: 0 0 35px 0;
}
.tf-reset-confirmation-box .tf-confirmation-content .tf-confirmation-header .tf_reset_confirmation_close {
  position: absolute;
  right: 12px;
  top: 12px;
}
.tf-reset-confirmation-box .tf-confirmation-content .tf-confirmation-header .tf_reset_confirmation_close svg {
  cursor: pointer;
}
.tf-reset-confirmation-box .tf-confirmation-content .tf-confirmation-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.tf-reset-confirmation-box .tf-confirmation-content .tf-confirmation-actions button {
  border-radius: 8px;
  background: #EBF5FF;
  color: #003C79;
  border-radius: 8px;
  padding: 12px 32px !important;
  font-size: 15px;
  font-weight: 600;
  line-height: 24px !important;
  border: 0px solid;
  cursor: pointer;
}
.tf-reset-confirmation-box .tf-confirmation-content .tf-confirmation-actions button.tf-confirmed-btn {
  background: linear-gradient(180deg, #0051A3 0%, #003C79 100%);
  color: #FFFFFF;
}

.tf-tour-cal-wrap,
.tf-apt-cal-wrap,
.tf-room-cal-wrap {
  position: relative;
}
.tf-tour-cal-wrap .tf-tour-reset-refresh,
.tf-apt-cal-wrap .tf-tour-reset-refresh,
.tf-room-cal-wrap .tf-tour-reset-refresh {
  position: absolute;
  right: 110px;
  top: 25px;
}
.tf-tour-cal-wrap .tf-tour-reset-refresh span,
.tf-apt-cal-wrap .tf-tour-reset-refresh span,
.tf-room-cal-wrap .tf-tour-reset-refresh span {
  height: 32px;
  font-size: 12px;
  padding: 0 12px !important;
}
.tf-tour-cal-wrap .tf-tour-reset-refresh span svg,
.tf-apt-cal-wrap .tf-tour-reset-refresh span svg,
.tf-room-cal-wrap .tf-tour-reset-refresh span svg {
  height: 18px;
}
.tf-tour-cal-wrap .tf-tour-cal,
.tf-tour-cal-wrap .tf-apt-cal,
.tf-tour-cal-wrap .tf-room-cal,
.tf-apt-cal-wrap .tf-tour-cal,
.tf-apt-cal-wrap .tf-apt-cal,
.tf-apt-cal-wrap .tf-room-cal,
.tf-room-cal-wrap .tf-tour-cal,
.tf-room-cal-wrap .tf-apt-cal,
.tf-room-cal-wrap .tf-room-cal {
  border-radius: 8px;
  border: 1px solid #F2F5F7;
  background: #FFFFFF;
  padding: 24px;
}
.tf-tour-cal-wrap .tf-tour-cal .fc-header-toolbar,
.tf-tour-cal-wrap .tf-apt-cal .fc-header-toolbar,
.tf-tour-cal-wrap .tf-room-cal .fc-header-toolbar,
.tf-apt-cal-wrap .tf-tour-cal .fc-header-toolbar,
.tf-apt-cal-wrap .tf-apt-cal .fc-header-toolbar,
.tf-apt-cal-wrap .tf-room-cal .fc-header-toolbar,
.tf-room-cal-wrap .tf-tour-cal .fc-header-toolbar,
.tf-room-cal-wrap .tf-apt-cal .fc-header-toolbar,
.tf-room-cal-wrap .tf-room-cal .fc-header-toolbar {
  margin-bottom: 16px;
}
.tf-tour-cal-wrap .tf-tour-cal .fc-header-toolbar .fc-toolbar-title,
.tf-tour-cal-wrap .tf-apt-cal .fc-header-toolbar .fc-toolbar-title,
.tf-tour-cal-wrap .tf-room-cal .fc-header-toolbar .fc-toolbar-title,
.tf-apt-cal-wrap .tf-tour-cal .fc-header-toolbar .fc-toolbar-title,
.tf-apt-cal-wrap .tf-apt-cal .fc-header-toolbar .fc-toolbar-title,
.tf-apt-cal-wrap .tf-room-cal .fc-header-toolbar .fc-toolbar-title,
.tf-room-cal-wrap .tf-tour-cal .fc-header-toolbar .fc-toolbar-title,
.tf-room-cal-wrap .tf-apt-cal .fc-header-toolbar .fc-toolbar-title,
.tf-room-cal-wrap .tf-room-cal .fc-header-toolbar .fc-toolbar-title {
  padding: 0 !important;
  color: #27333F;
  font-size: 15px !important;
  font-weight: 600;
  line-height: 24px;
}
.tf-tour-cal-wrap .tf-tour-cal .fc-header-toolbar .fc-button-group,
.tf-tour-cal-wrap .tf-apt-cal .fc-header-toolbar .fc-button-group,
.tf-tour-cal-wrap .tf-room-cal .fc-header-toolbar .fc-button-group,
.tf-apt-cal-wrap .tf-tour-cal .fc-header-toolbar .fc-button-group,
.tf-apt-cal-wrap .tf-apt-cal .fc-header-toolbar .fc-button-group,
.tf-apt-cal-wrap .tf-room-cal .fc-header-toolbar .fc-button-group,
.tf-room-cal-wrap .tf-tour-cal .fc-header-toolbar .fc-button-group,
.tf-room-cal-wrap .tf-apt-cal .fc-header-toolbar .fc-button-group,
.tf-room-cal-wrap .tf-room-cal .fc-header-toolbar .fc-button-group {
  border-radius: 8px;
  border: 0.5px solid #F2F5F7;
  background: #FFFFFF;
  padding: 6px 8px;
  gap: 20px;
  height: 32px;
  align-items: center;
}
.tf-tour-cal-wrap .tf-tour-cal .fc-header-toolbar .fc-button-group .fc-button,
.tf-tour-cal-wrap .tf-apt-cal .fc-header-toolbar .fc-button-group .fc-button,
.tf-tour-cal-wrap .tf-room-cal .fc-header-toolbar .fc-button-group .fc-button,
.tf-apt-cal-wrap .tf-tour-cal .fc-header-toolbar .fc-button-group .fc-button,
.tf-apt-cal-wrap .tf-apt-cal .fc-header-toolbar .fc-button-group .fc-button,
.tf-apt-cal-wrap .tf-room-cal .fc-header-toolbar .fc-button-group .fc-button,
.tf-room-cal-wrap .tf-tour-cal .fc-header-toolbar .fc-button-group .fc-button,
.tf-room-cal-wrap .tf-apt-cal .fc-header-toolbar .fc-button-group .fc-button,
.tf-room-cal-wrap .tf-room-cal .fc-header-toolbar .fc-button-group .fc-button {
  background-color: transparent;
  border: 0px;
  padding: 0;
  position: relative;
  top: -1px;
}
.tf-tour-cal-wrap .tf-tour-cal .fc-header-toolbar .fc-button-group .fc-button .fc-icon-chevron-left::before,
.tf-tour-cal-wrap .tf-tour-cal .fc-header-toolbar .fc-button-group .fc-button .fc-icon-chevron-right::before,
.tf-tour-cal-wrap .tf-apt-cal .fc-header-toolbar .fc-button-group .fc-button .fc-icon-chevron-left::before,
.tf-tour-cal-wrap .tf-apt-cal .fc-header-toolbar .fc-button-group .fc-button .fc-icon-chevron-right::before,
.tf-tour-cal-wrap .tf-room-cal .fc-header-toolbar .fc-button-group .fc-button .fc-icon-chevron-left::before,
.tf-tour-cal-wrap .tf-room-cal .fc-header-toolbar .fc-button-group .fc-button .fc-icon-chevron-right::before,
.tf-apt-cal-wrap .tf-tour-cal .fc-header-toolbar .fc-button-group .fc-button .fc-icon-chevron-left::before,
.tf-apt-cal-wrap .tf-tour-cal .fc-header-toolbar .fc-button-group .fc-button .fc-icon-chevron-right::before,
.tf-apt-cal-wrap .tf-apt-cal .fc-header-toolbar .fc-button-group .fc-button .fc-icon-chevron-left::before,
.tf-apt-cal-wrap .tf-apt-cal .fc-header-toolbar .fc-button-group .fc-button .fc-icon-chevron-right::before,
.tf-apt-cal-wrap .tf-room-cal .fc-header-toolbar .fc-button-group .fc-button .fc-icon-chevron-left::before,
.tf-apt-cal-wrap .tf-room-cal .fc-header-toolbar .fc-button-group .fc-button .fc-icon-chevron-right::before,
.tf-room-cal-wrap .tf-tour-cal .fc-header-toolbar .fc-button-group .fc-button .fc-icon-chevron-left::before,
.tf-room-cal-wrap .tf-tour-cal .fc-header-toolbar .fc-button-group .fc-button .fc-icon-chevron-right::before,
.tf-room-cal-wrap .tf-apt-cal .fc-header-toolbar .fc-button-group .fc-button .fc-icon-chevron-left::before,
.tf-room-cal-wrap .tf-apt-cal .fc-header-toolbar .fc-button-group .fc-button .fc-icon-chevron-right::before,
.tf-room-cal-wrap .tf-room-cal .fc-header-toolbar .fc-button-group .fc-button .fc-icon-chevron-left::before,
.tf-room-cal-wrap .tf-room-cal .fc-header-toolbar .fc-button-group .fc-button .fc-icon-chevron-right::before {
  color: #566676;
}
.tf-tour-cal-wrap .tf-tour-cal .fc-header-toolbar .fc-button-group .fc-button:focus,
.tf-tour-cal-wrap .tf-apt-cal .fc-header-toolbar .fc-button-group .fc-button:focus,
.tf-tour-cal-wrap .tf-room-cal .fc-header-toolbar .fc-button-group .fc-button:focus,
.tf-apt-cal-wrap .tf-tour-cal .fc-header-toolbar .fc-button-group .fc-button:focus,
.tf-apt-cal-wrap .tf-apt-cal .fc-header-toolbar .fc-button-group .fc-button:focus,
.tf-apt-cal-wrap .tf-room-cal .fc-header-toolbar .fc-button-group .fc-button:focus,
.tf-room-cal-wrap .tf-tour-cal .fc-header-toolbar .fc-button-group .fc-button:focus,
.tf-room-cal-wrap .tf-apt-cal .fc-header-toolbar .fc-button-group .fc-button:focus,
.tf-room-cal-wrap .tf-room-cal .fc-header-toolbar .fc-button-group .fc-button:focus {
  outline: none;
  box-shadow: none;
}
.tf-tour-cal-wrap .tf-tour-cal .fc-header-toolbar .fc-button-group .fc-button.fc-next-button,
.tf-tour-cal-wrap .tf-apt-cal .fc-header-toolbar .fc-button-group .fc-button.fc-next-button,
.tf-tour-cal-wrap .tf-room-cal .fc-header-toolbar .fc-button-group .fc-button.fc-next-button,
.tf-apt-cal-wrap .tf-tour-cal .fc-header-toolbar .fc-button-group .fc-button.fc-next-button,
.tf-apt-cal-wrap .tf-apt-cal .fc-header-toolbar .fc-button-group .fc-button.fc-next-button,
.tf-apt-cal-wrap .tf-room-cal .fc-header-toolbar .fc-button-group .fc-button.fc-next-button,
.tf-room-cal-wrap .tf-tour-cal .fc-header-toolbar .fc-button-group .fc-button.fc-next-button,
.tf-room-cal-wrap .tf-apt-cal .fc-header-toolbar .fc-button-group .fc-button.fc-next-button,
.tf-room-cal-wrap .tf-room-cal .fc-header-toolbar .fc-button-group .fc-button.fc-next-button {
  position: relative;
}
.tf-tour-cal-wrap .tf-tour-cal .fc-header-toolbar .fc-button-group .fc-button.fc-next-button::after,
.tf-tour-cal-wrap .tf-apt-cal .fc-header-toolbar .fc-button-group .fc-button.fc-next-button::after,
.tf-tour-cal-wrap .tf-room-cal .fc-header-toolbar .fc-button-group .fc-button.fc-next-button::after,
.tf-apt-cal-wrap .tf-tour-cal .fc-header-toolbar .fc-button-group .fc-button.fc-next-button::after,
.tf-apt-cal-wrap .tf-apt-cal .fc-header-toolbar .fc-button-group .fc-button.fc-next-button::after,
.tf-apt-cal-wrap .tf-room-cal .fc-header-toolbar .fc-button-group .fc-button.fc-next-button::after,
.tf-room-cal-wrap .tf-tour-cal .fc-header-toolbar .fc-button-group .fc-button.fc-next-button::after,
.tf-room-cal-wrap .tf-apt-cal .fc-header-toolbar .fc-button-group .fc-button.fc-next-button::after,
.tf-room-cal-wrap .tf-room-cal .fc-header-toolbar .fc-button-group .fc-button.fc-next-button::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #566676;
  border-radius: 50%;
  left: -14px;
  top: 8.5px;
}
.tf-tour-cal-wrap .tf-tour-cal .fc-view-harness table,
.tf-tour-cal-wrap .tf-apt-cal .fc-view-harness table,
.tf-tour-cal-wrap .tf-room-cal .fc-view-harness table,
.tf-apt-cal-wrap .tf-tour-cal .fc-view-harness table,
.tf-apt-cal-wrap .tf-apt-cal .fc-view-harness table,
.tf-apt-cal-wrap .tf-room-cal .fc-view-harness table,
.tf-room-cal-wrap .tf-tour-cal .fc-view-harness table,
.tf-room-cal-wrap .tf-apt-cal .fc-view-harness table,
.tf-room-cal-wrap .tf-room-cal .fc-view-harness table {
  border: 0px;
}
.tf-tour-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-header th,
.tf-tour-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-header th,
.tf-tour-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-header th,
.tf-apt-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-header th,
.tf-apt-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-header th,
.tf-apt-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-header th,
.tf-room-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-header th,
.tf-room-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-header th,
.tf-room-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-header th {
  border: 0px;
}
.tf-tour-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller,
.tf-tour-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller,
.tf-tour-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller,
.tf-apt-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller,
.tf-apt-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller,
.tf-apt-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller,
.tf-room-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller,
.tf-room-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller,
.tf-room-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller {
  scroll-behavior: smooth;
}
.tf-tour-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller::-webkit-scrollbar,
.tf-tour-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller::-webkit-scrollbar,
.tf-tour-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller::-webkit-scrollbar,
.tf-apt-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller::-webkit-scrollbar,
.tf-apt-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller::-webkit-scrollbar,
.tf-apt-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller::-webkit-scrollbar,
.tf-room-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller::-webkit-scrollbar,
.tf-room-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller::-webkit-scrollbar,
.tf-room-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller::-webkit-scrollbar {
  width: 6px;
}
.tf-tour-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller::-webkit-scrollbar-track,
.tf-tour-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller::-webkit-scrollbar-track,
.tf-tour-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller::-webkit-scrollbar-track,
.tf-apt-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller::-webkit-scrollbar-track,
.tf-apt-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller::-webkit-scrollbar-track,
.tf-apt-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller::-webkit-scrollbar-track,
.tf-room-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller::-webkit-scrollbar-track,
.tf-room-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller::-webkit-scrollbar-track,
.tf-room-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller::-webkit-scrollbar-track {
  background: transparent;
  margin-top: 20px;
  margin-bottom: 20px;
}
.tf-tour-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller::-webkit-scrollbar-thumb,
.tf-tour-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller::-webkit-scrollbar-thumb,
.tf-tour-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller::-webkit-scrollbar-thumb,
.tf-apt-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller::-webkit-scrollbar-thumb,
.tf-apt-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller::-webkit-scrollbar-thumb,
.tf-apt-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller::-webkit-scrollbar-thumb,
.tf-room-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller::-webkit-scrollbar-thumb,
.tf-room-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller::-webkit-scrollbar-thumb,
.tf-room-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}
.tf-tour-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller,
.tf-tour-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller,
.tf-tour-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller,
.tf-apt-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller,
.tf-apt-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller,
.tf-apt-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller,
.tf-room-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller,
.tf-room-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller,
.tf-room-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-scroller {
  scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
  scrollbar-width: thin;
}
.tf-tour-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-col-header,
.tf-tour-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-col-header,
.tf-tour-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-col-header,
.tf-apt-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-col-header,
.tf-apt-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-col-header,
.tf-apt-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-col-header,
.tf-room-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-col-header,
.tf-room-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-col-header,
.tf-room-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-col-header {
  border-top: 0.5px solid #F2F5F7;
  margin-bottom: 16px !important;
}
.tf-tour-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-col-header tr th,
.tf-tour-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-col-header tr th,
.tf-tour-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-col-header tr th,
.tf-apt-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-col-header tr th,
.tf-apt-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-col-header tr th,
.tf-apt-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-col-header tr th,
.tf-room-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-col-header tr th,
.tf-room-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-col-header tr th,
.tf-room-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-col-header tr th {
  border: 0px;
  padding-top: 12px;
}
.tf-tour-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-col-header tr th a,
.tf-tour-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-col-header tr th a,
.tf-tour-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-col-header tr th a,
.tf-apt-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-col-header tr th a,
.tf-apt-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-col-header tr th a,
.tf-apt-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-col-header tr th a,
.tf-room-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-col-header tr th a,
.tf-room-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-col-header tr th a,
.tf-room-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-header .fc-col-header tr th a {
  color: #27333F;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  padding: 0;
}
.tf-tour-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-body > td,
.tf-tour-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-body > td,
.tf-tour-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-body > td,
.tf-apt-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-body > td,
.tf-apt-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-body > td,
.tf-apt-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-body > td,
.tf-room-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-body > td,
.tf-room-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-body > td,
.tf-room-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-body > td {
  border: 0px solid;
}
.tf-tour-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr,
.tf-tour-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr,
.tf-tour-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr,
.tf-apt-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr,
.tf-apt-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr,
.tf-apt-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr,
.tf-room-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr,
.tf-room-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr,
.tf-room-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.tf-tour-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr:last-child,
.tf-tour-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr:last-child,
.tf-tour-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr:last-child,
.tf-apt-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr:last-child,
.tf-apt-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr:last-child,
.tf-apt-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr:last-child,
.tf-room-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr:last-child,
.tf-room-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr:last-child,
.tf-room-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr:last-child {
  margin-bottom: 0px;
}
.tf-tour-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td,
.tf-tour-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td,
.tf-tour-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td,
.tf-apt-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td,
.tf-apt-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td,
.tf-apt-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td,
.tf-room-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td,
.tf-room-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td,
.tf-room-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td {
  width: calc((100% - 48px) / 7);
  border-radius: 8px;
  border: 0.5px solid #F2F5F7;
  background: #FFFFFF;
}
.tf-tour-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td.fc-day-today,
.tf-tour-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td.fc-day-today,
.tf-tour-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td.fc-day-today,
.tf-apt-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td.fc-day-today,
.tf-apt-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td.fc-day-today,
.tf-apt-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td.fc-day-today,
.tf-room-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td.fc-day-today,
.tf-room-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td.fc-day-today,
.tf-room-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td.fc-day-today {
  background-color: rgba(255, 220, 40, 0.15);
}
.tf-tour-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-daygrid-day-top,
.tf-tour-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-daygrid-day-top,
.tf-tour-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-daygrid-day-top,
.tf-apt-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-daygrid-day-top,
.tf-apt-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-daygrid-day-top,
.tf-apt-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-daygrid-day-top,
.tf-room-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-daygrid-day-top,
.tf-room-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-daygrid-day-top,
.tf-room-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-daygrid-day-top {
  flex-direction: row;
}
.tf-tour-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-daygrid-day-top a,
.tf-tour-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-daygrid-day-top a,
.tf-tour-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-daygrid-day-top a,
.tf-apt-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-daygrid-day-top a,
.tf-apt-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-daygrid-day-top a,
.tf-apt-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-daygrid-day-top a,
.tf-room-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-daygrid-day-top a,
.tf-room-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-daygrid-day-top a,
.tf-room-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-daygrid-day-top a {
  padding: 8px;
  color: #27333F;
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
}
.tf-tour-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-h-event,
.tf-tour-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-h-event,
.tf-tour-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-h-event,
.tf-apt-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-h-event,
.tf-apt-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-h-event,
.tf-apt-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-h-event,
.tf-room-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-h-event,
.tf-room-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-h-event,
.tf-room-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-h-event {
  border-radius: 4px;
  border: 0px;
  border-left: 1px solid #002AB3;
  background: #EBEFFF;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 8px;
}
.tf-tour-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-h-event .fc-event-title,
.tf-tour-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-h-event .fc-event-title,
.tf-tour-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-h-event .fc-event-title,
.tf-apt-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-h-event .fc-event-title,
.tf-apt-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-h-event .fc-event-title,
.tf-apt-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-h-event .fc-event-title,
.tf-room-cal-wrap .tf-tour-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-h-event .fc-event-title,
.tf-room-cal-wrap .tf-apt-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-h-event .fc-event-title,
.tf-room-cal-wrap .tf-room-cal .fc-view-harness table .fc-scrollgrid-section-body .fc-daygrid-body .fc-scrollgrid-sync-table tbody tr td .fc-h-event .fc-event-title {
  color: #002AB3;
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
}
.tf-tour-cal-wrap .tf-apt-cal-field,
.tf-tour-cal-wrap .tf-room-cal-field,
.tf-apt-cal-wrap .tf-apt-cal-field,
.tf-apt-cal-wrap .tf-room-cal-field,
.tf-room-cal-wrap .tf-apt-cal-field,
.tf-room-cal-wrap .tf-room-cal-field {
  border-radius: 8px;
  border: 1px solid #F2F5F7;
  background: #FFFFFF;
  padding: 24px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  box-sizing: border-box;
  justify-content: space-between;
}
.tf-tour-cal-wrap .tf-date-time-selection,
.tf-apt-cal-wrap .tf-date-time-selection,
.tf-room-cal-wrap .tf-date-time-selection {
  border-radius: 8px;
  border: 1px solid #F2F5F7;
  background: #FFFFFF;
  padding: 24px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.tf-tour-cal-wrap .tf-date-time-selection .tf-field-repeater,
.tf-apt-cal-wrap .tf-date-time-selection .tf-field-repeater,
.tf-room-cal-wrap .tf-date-time-selection .tf-field-repeater {
  border: 0;
  padding: 0;
  margin: 0;
}
.tf-tour-cal-wrap .tf-date-time-selection .tf-field-repeater .tf-repeater-content-wrap,
.tf-apt-cal-wrap .tf-date-time-selection .tf-field-repeater .tf-repeater-content-wrap,
.tf-room-cal-wrap .tf-date-time-selection .tf-field-repeater .tf-repeater-content-wrap {
  margin: 0;
  border: 0px solid;
}
.tf-tour-cal-wrap .tf-date-time-selection .tf-field-repeater .tf-fieldset,
.tf-apt-cal-wrap .tf-date-time-selection .tf-field-repeater .tf-fieldset,
.tf-room-cal-wrap .tf-date-time-selection .tf-field-repeater .tf-fieldset {
  border: 0px solid #f2f5f7;
  background: #fff;
  padding: 0px;
}
.tf-tour-cal-wrap .tf-date-time-selection .tf-field-repeater .tf-fieldset .tf-repeater-add,
.tf-apt-cal-wrap .tf-date-time-selection .tf-field-repeater .tf-fieldset .tf-repeater-add,
.tf-room-cal-wrap .tf-date-time-selection .tf-field-repeater .tf-fieldset .tf-repeater-add {
  margin-left: 0px;
}
.tf-tour-cal-wrap .tf-date-time-selection .tf-field-repeater .tf-repeater-content-wrap,
.tf-apt-cal-wrap .tf-date-time-selection .tf-field-repeater .tf-repeater-content-wrap,
.tf-room-cal-wrap .tf-date-time-selection .tf-field-repeater .tf-repeater-content-wrap {
  padding: 0 1px 0 0;
  flex-wrap: nowrap;
  align-items: center;
  gap: 16px;
}
.tf-tour-cal-wrap .tf-date-time-selection .tf-field-repeater .tf-repeater-content-wrap .tf-field,
.tf-apt-cal-wrap .tf-date-time-selection .tf-field-repeater .tf-repeater-content-wrap .tf-field,
.tf-room-cal-wrap .tf-date-time-selection .tf-field-repeater .tf-repeater-content-wrap .tf-field {
  padding: 0;
}
.tf-tour-cal-wrap .tf-date-time-selection .tf-field-repeater .tf-repeater-content-wrap .tf-repeater-icon-delete,
.tf-apt-cal-wrap .tf-date-time-selection .tf-field-repeater .tf-repeater-content-wrap .tf-repeater-icon-delete,
.tf-room-cal-wrap .tf-date-time-selection .tf-field-repeater .tf-repeater-content-wrap .tf-repeater-icon-delete {
  cursor: pointer;
}
.tf-tour-cal-wrap .tf-field-group-box,
.tf-apt-cal-wrap .tf-field-group-box,
.tf-room-cal-wrap .tf-field-group-box {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #F2F5F7;
  background: #FFFFFF;
}
.tf-tour-cal-wrap .tf-field-group-box .tf-fieldset,
.tf-apt-cal-wrap .tf-field-group-box .tf-fieldset,
.tf-room-cal-wrap .tf-field-group-box .tf-fieldset {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.tf-tour-cal-wrap .tf-field-group-box .tf-fieldset .tf-field,
.tf-apt-cal-wrap .tf-field-group-box .tf-fieldset .tf-field,
.tf-room-cal-wrap .tf-field-group-box .tf-fieldset .tf-field {
  padding: 0;
}
.tf-tour-cal-wrap .tf-package-field-repeater,
.tf-apt-cal-wrap .tf-package-field-repeater,
.tf-room-cal-wrap .tf-package-field-repeater {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #F2F5F7;
  background: #FFFFFF;
}
.tf-tour-cal-wrap .tf-package-field-repeater .tf-repeater-wrap .tf-single-repeater:last-child,
.tf-apt-cal-wrap .tf-package-field-repeater .tf-repeater-wrap .tf-single-repeater:last-child,
.tf-room-cal-wrap .tf-package-field-repeater .tf-repeater-wrap .tf-single-repeater:last-child {
  margin-bottom: 0px;
}
.tf-tour-cal-wrap .tf-package-field-repeater .tf-repeater-wrap .tf-single-repeater .tf-repeater-header .tf-repeater-title,
.tf-apt-cal-wrap .tf-package-field-repeater .tf-repeater-wrap .tf-single-repeater .tf-repeater-header .tf-repeater-title,
.tf-room-cal-wrap .tf-package-field-repeater .tf-repeater-wrap .tf-single-repeater .tf-repeater-header .tf-repeater-title {
  width: calc(100% - 30px) !important;
}
.tf-tour-cal-wrap .tf-package-field-repeater .tf-repeater-wrap .tf-single-repeater .tf-repeater-content-wrap,
.tf-apt-cal-wrap .tf-package-field-repeater .tf-repeater-wrap .tf-single-repeater .tf-repeater-content-wrap,
.tf-room-cal-wrap .tf-package-field-repeater .tf-repeater-wrap .tf-single-repeater .tf-repeater-content-wrap {
  padding: 8px;
  margin: 0;
}
.tf-tour-cal-wrap .tf-package-field-repeater .tf-repeater-wrap .tf-single-repeater .tf-repeater-content-wrap .tf-tab-switch-box .tf-tab-field-content .tf-field:first-child,
.tf-apt-cal-wrap .tf-package-field-repeater .tf-repeater-wrap .tf-single-repeater .tf-repeater-content-wrap .tf-tab-switch-box .tf-tab-field-content .tf-field:first-child,
.tf-room-cal-wrap .tf-package-field-repeater .tf-repeater-wrap .tf-single-repeater .tf-repeater-content-wrap .tf-tab-switch-box .tf-tab-field-content .tf-field:first-child {
  padding-bottom: 0px;
}
.tf-tour-cal-wrap .tf-package-field-repeater .tf-repeater-wrap .tf-single-repeater .tf-repeater-content-wrap #group_tabs .tf-tab-field-content .tf-field:first-child,
.tf-apt-cal-wrap .tf-package-field-repeater .tf-repeater-wrap .tf-single-repeater .tf-repeater-content-wrap #group_tabs .tf-tab-field-content .tf-field:first-child,
.tf-room-cal-wrap .tf-package-field-repeater .tf-repeater-wrap .tf-single-repeater .tf-repeater-content-wrap #group_tabs .tf-tab-field-content .tf-field:first-child {
  padding: 12px 0;
}
.tf-tour-cal-wrap .tf-package-field-repeater .tf-repeater-wrap .tf-single-repeater .tf-repeater-content-wrap #group_tabs .tf-tab-field-content .tf-field .tf-repeater-content-wrap,
.tf-apt-cal-wrap .tf-package-field-repeater .tf-repeater-wrap .tf-single-repeater .tf-repeater-content-wrap #group_tabs .tf-tab-field-content .tf-field .tf-repeater-content-wrap,
.tf-room-cal-wrap .tf-package-field-repeater .tf-repeater-wrap .tf-single-repeater .tf-repeater-content-wrap #group_tabs .tf-tab-field-content .tf-field .tf-repeater-content-wrap {
  border: 0px solid;
}
.tf-tour-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset,
.tf-apt-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset,
.tf-room-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.tf-tour-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset .tf-package-time-fields,
.tf-apt-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset .tf-package-time-fields,
.tf-room-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset .tf-package-time-fields {
  margin: 0;
  padding: 0;
}
.tf-tour-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset .tf-package-time-fields .tf-fieldset,
.tf-apt-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset .tf-package-time-fields .tf-fieldset,
.tf-room-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset .tf-package-time-fields .tf-fieldset {
  padding: 0;
  border: 0px solid;
}
.tf-tour-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset .tf-package-time-fields .tf-fieldset .tf_tour_allowed_times .tf-single-repeater,
.tf-apt-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset .tf-package-time-fields .tf-fieldset .tf_tour_allowed_times .tf-single-repeater,
.tf-room-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset .tf-package-time-fields .tf-fieldset .tf_tour_allowed_times .tf-single-repeater {
  margin-bottom: 16px;
}
.tf-tour-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset .tf-package-time-fields .tf-fieldset .tf_tour_allowed_times .tf-single-repeater .tf-repeater-content-wrap,
.tf-apt-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset .tf-package-time-fields .tf-fieldset .tf_tour_allowed_times .tf-single-repeater .tf-repeater-content-wrap,
.tf-room-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset .tf-package-time-fields .tf-fieldset .tf_tour_allowed_times .tf-single-repeater .tf-repeater-content-wrap {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 16px;
  padding: 0;
}
.tf-tour-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset .tf-package-time-fields .tf-fieldset .tf_tour_allowed_times .tf-single-repeater .tf-repeater-content-wrap .tf-field,
.tf-apt-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset .tf-package-time-fields .tf-fieldset .tf_tour_allowed_times .tf-single-repeater .tf-repeater-content-wrap .tf-field,
.tf-room-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset .tf-package-time-fields .tf-fieldset .tf_tour_allowed_times .tf-single-repeater .tf-repeater-content-wrap .tf-field {
  padding: 0;
}
.tf-tour-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset .tf-package-time-fields .tf-fieldset .tf_tour_allowed_times .tf-single-repeater .tf-repeater-content-wrap .tf-repeater-icon-delete svg,
.tf-apt-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset .tf-package-time-fields .tf-fieldset .tf_tour_allowed_times .tf-single-repeater .tf-repeater-content-wrap .tf-repeater-icon-delete svg,
.tf-room-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset .tf-package-time-fields .tf-fieldset .tf_tour_allowed_times .tf-single-repeater .tf-repeater-content-wrap .tf-repeater-icon-delete svg {
  cursor: pointer;
}
.tf-tour-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset .tf-package-time-fields .tf-fieldset .tf-repeater-add,
.tf-apt-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset .tf-package-time-fields .tf-fieldset .tf-repeater-add,
.tf-room-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset .tf-package-time-fields .tf-fieldset .tf-repeater-add {
  margin: 0;
}
.tf-tour-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset #group_tabs .tf-field-repeater,
.tf-apt-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset #group_tabs .tf-field-repeater,
.tf-room-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset #group_tabs .tf-field-repeater {
  padding-bottom: 16px;
  margin: 0;
  padding: 0;
}
.tf-tour-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset #group_tabs .tf-field-repeater .tf-fieldset,
.tf-apt-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset #group_tabs .tf-field-repeater .tf-fieldset,
.tf-room-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset #group_tabs .tf-field-repeater .tf-fieldset {
  padding: 0;
  border: 0px solid;
  background: transparent;
}
.tf-tour-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset #group_tabs .tf-field-repeater .tf-fieldset .group_discount_package .tf-single-repeater,
.tf-apt-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset #group_tabs .tf-field-repeater .tf-fieldset .group_discount_package .tf-single-repeater,
.tf-room-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset #group_tabs .tf-field-repeater .tf-fieldset .group_discount_package .tf-single-repeater {
  margin-bottom: 16px;
}
.tf-tour-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset #group_tabs .tf-field-repeater .tf-fieldset .group_discount_package .tf-single-repeater .tf-repeater-content-wrap,
.tf-apt-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset #group_tabs .tf-field-repeater .tf-fieldset .group_discount_package .tf-single-repeater .tf-repeater-content-wrap,
.tf-room-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset #group_tabs .tf-field-repeater .tf-fieldset .group_discount_package .tf-single-repeater .tf-repeater-content-wrap {
  padding: 0;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
  background-color: transparent;
}
.tf-tour-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset #group_tabs .tf-field-repeater .tf-fieldset .group_discount_package .tf-single-repeater .tf-repeater-content-wrap .tf-field,
.tf-apt-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset #group_tabs .tf-field-repeater .tf-fieldset .group_discount_package .tf-single-repeater .tf-repeater-content-wrap .tf-field,
.tf-room-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset #group_tabs .tf-field-repeater .tf-fieldset .group_discount_package .tf-single-repeater .tf-repeater-content-wrap .tf-field {
  padding: 0;
}
.tf-tour-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset #group_tabs .tf-field-repeater .tf-fieldset .tf-repeater-add,
.tf-apt-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset #group_tabs .tf-field-repeater .tf-fieldset .tf-repeater-add,
.tf-room-cal-wrap .tf-package-field-repeater .tf-field-accordion .tf-fieldset #group_tabs .tf-field-repeater .tf-fieldset .tf-repeater-add {
  margin: 0;
}
.tf-tour-cal-wrap .tf-save-calendar,
.tf-apt-cal-wrap .tf-save-calendar,
.tf-room-cal-wrap .tf-save-calendar {
  display: flex;
  gap: 16px;
}
.tf-tour-cal-wrap .button-primary,
.tf-tour-cal-wrap .button-secondary,
.tf-apt-cal-wrap .button-primary,
.tf-apt-cal-wrap .button-secondary,
.tf-room-cal-wrap .button-primary,
.tf-room-cal-wrap .button-secondary {
  border-radius: 8px;
  background: #EBF5FF;
  color: #003C79;
  border-radius: 8px;
  padding: 12px 32px !important;
  font-size: 15px;
  font-weight: 600;
  line-height: 24px !important;
  border: 0px solid;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tf-tour-cal-wrap .button-primary,
.tf-apt-cal-wrap .button-primary,
.tf-room-cal-wrap .button-primary {
  background: linear-gradient(180deg, #0051A3 0%, #003C79 100%);
  color: #FFFFFF;
}
.tf-tour-cal-wrap .tf-single-options .tf-single-repeater:last-child,
.tf-apt-cal-wrap .tf-single-options .tf-single-repeater:last-child,
.tf-room-cal-wrap .tf-single-options .tf-single-repeater:last-child {
  margin-bottom: 0px;
}
.tf-tour-cal-wrap .tf-single-options .tf-single-repeater .tf-field-accordion .tf-fieldset,
.tf-apt-cal-wrap .tf-single-options .tf-single-repeater .tf-field-accordion .tf-fieldset,
.tf-room-cal-wrap .tf-single-options .tf-single-repeater .tf-field-accordion .tf-fieldset {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tf-tour-cal-wrap .tf-single-options .tf-single-repeater .tf-field-accordion .tf-fieldset .tf-field-repeater,
.tf-apt-cal-wrap .tf-single-options .tf-single-repeater .tf-field-accordion .tf-fieldset .tf-field-repeater,
.tf-room-cal-wrap .tf-single-options .tf-single-repeater .tf-field-accordion .tf-fieldset .tf-field-repeater {
  padding: 16px;
}
.tf-tour-cal-wrap .tf-single-options .tf-single-repeater .tf-field-accordion .tf-fieldset .tf-field-repeater .tf-single-repeater:last-child,
.tf-apt-cal-wrap .tf-single-options .tf-single-repeater .tf-field-accordion .tf-fieldset .tf-field-repeater .tf-single-repeater:last-child,
.tf-room-cal-wrap .tf-single-options .tf-single-repeater .tf-field-accordion .tf-fieldset .tf-field-repeater .tf-single-repeater:last-child {
  margin-bottom: 16px;
}
.tf-tour-cal-wrap .tf-single-options .tf-single-repeater .tf-field-accordion .tf-fieldset .tf-field-repeater .tf-single-repeater .tf-repeater-content-wrap,
.tf-apt-cal-wrap .tf-single-options .tf-single-repeater .tf-field-accordion .tf-fieldset .tf-field-repeater .tf-single-repeater .tf-repeater-content-wrap,
.tf-room-cal-wrap .tf-single-options .tf-single-repeater .tf-field-accordion .tf-fieldset .tf-field-repeater .tf-single-repeater .tf-repeater-content-wrap {
  padding: 0;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}
.tf-tour-cal-wrap .tf-single-options .tf-single-repeater .tf-field-accordion .tf-fieldset .tf-field-repeater .tf-single-repeater .tf-repeater-content-wrap .tf-field,
.tf-apt-cal-wrap .tf-single-options .tf-single-repeater .tf-field-accordion .tf-fieldset .tf-field-repeater .tf-single-repeater .tf-repeater-content-wrap .tf-field,
.tf-room-cal-wrap .tf-single-options .tf-single-repeater .tf-field-accordion .tf-fieldset .tf-field-repeater .tf-single-repeater .tf-repeater-content-wrap .tf-field {
  padding: 0;
}
.tf-tour-cal-wrap .tf-single-options .tf-single-repeater .tf-field-accordion .tf-fieldset .tf-field-repeater .tf-single-repeater .tf-repeater-content-wrap .tf-repeater-icon-delete,
.tf-apt-cal-wrap .tf-single-options .tf-single-repeater .tf-field-accordion .tf-fieldset .tf-field-repeater .tf-single-repeater .tf-repeater-content-wrap .tf-repeater-icon-delete,
.tf-room-cal-wrap .tf-single-options .tf-single-repeater .tf-field-accordion .tf-fieldset .tf-field-repeater .tf-single-repeater .tf-repeater-content-wrap .tf-repeater-icon-delete {
  cursor: pointer;
}

.tf-apt-cal-wrap,
.tf-room-cal-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
}
.tf-apt-cal-wrap .tf-apt-cal,
.tf-apt-cal-wrap .tf-room-cal,
.tf-room-cal-wrap .tf-apt-cal,
.tf-room-cal-wrap .tf-room-cal {
  width: 100%;
}

@-webkit-keyframes tf-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes tf-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.tf-hotel-room .tf-single-room {
  display: flex;
  padding: 12px 24px;
  background: #D8E6FF;
  position: relative;
  border-radius: 5px;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  margin-bottom: 16px;
}
.tf-hotel-room .tf-single-room .tf-room-title {
  font-weight: 600;
  font-size: 1rem;
  line-height: 24px;
}

.tf-colors-radio-group {
  display: flex;
  align-items: initial;
  flex-wrap: wrap;
  gap: 16px;
}
.tf-colors-radio-group li {
  display: inline-block;
  border-radius: 5px;
  width: calc(20% - 13px);
}
@media only screen and (max-width: 1366px) {
  .tf-colors-radio-group li {
    width: calc(33.33% - 12px);
  }
}
@media only screen and (max-width: 1024px) {
  .tf-colors-radio-group li {
    width: calc(25% - 12px);
  }
}
@media only screen and (max-width: 768px) {
  .tf-colors-radio-group li {
    width: calc(33.33% - 11px);
  }
}
@media only screen and (max-width: 575.98px) {
  .tf-colors-radio-group li {
    width: calc(50% - 8px);
  }
}
@media only screen and (max-width: 320px) {
  .tf-colors-radio-group li {
    width: 100%;
  }
}
.tf-colors-radio-group li .tf-colors-checkbox {
  border-radius: 6px;
  border: 1px solid #ddd;
  display: block;
  cursor: pointer;
}
.tf-colors-radio-group li .tf-colors-checkbox .tf-colors-box {
  height: 35px;
  display: flex;
}
.tf-colors-radio-group li .tf-colors-checkbox .tf-colors-box span {
  min-width: 25%;
}
.tf-colors-radio-group li .tf-colors-checkbox .tf-colors-box span:first-child {
  border-radius: 6px 0 0 0;
}
.tf-colors-radio-group li .tf-colors-checkbox .tf-colors-box span:last-child {
  border-radius: 0 6px 0 0;
}
.tf-colors-radio-group li .tf-colors-checkbox .tf-color-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 10px;
}
.tf-colors-radio-group li .tf-colors-checkbox .tf-color-footer span.tf-template-title {
  text-align: center;
  font-weight: 500;
  cursor: pointer;
}
.tf-colors-radio-group li .tf-colors-checkbox .tf-color-footer input {
  display: none;
}
.tf-colors-radio-group li .tf-colors-checkbox .tf-color-footer .tf-color-checkmark {
  border-radius: 4px;
  border: 1px solid #ddd;
  background: #fff;
  height: 16px;
  width: 16px;
  position: relative;
  z-index: 0;
}
.tf-colors-radio-group li .tf-colors-checkbox .tf-color-footer .tf-color-checkmark::after {
  position: absolute;
  content: "";
  top: 0;
  left: 4px;
  border: solid #fff;
  border-color: #fff;
  border-width: 0 3px 3px 0;
  width: 6px;
  height: 9px;
  z-index: 99;
  transform: rotate(45deg);
}
.tf-colors-radio-group li .tf-colors-checkbox input:checked ~ .tf-color-checkmark {
  background-color: #3E64DE;
  border-color: #3E64DE;
}
.tf-colors-radio-group li .tf-colors-checkbox input:checked ~ .tf-color-checkmark::after {
  display: block;
}

.tf-field-switch_group .tf-switch-group-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.tf-field-switch_group .tf-switch-group-wrap.tf-switch-column-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media only screen and (max-width: 1366px) {
  .tf-field-switch_group .tf-switch-group-wrap.tf-switch-column-4 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (max-width: 1024px) {
  .tf-field-switch_group .tf-switch-group-wrap.tf-switch-column-4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 768px) {
  .tf-field-switch_group .tf-switch-group-wrap.tf-switch-column-4 {
    grid-template-columns: 1fr;
  }
}
.tf-field-switch_group .tf-switch-group-wrap.tf-switch-column-2 {
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 768px) {
  .tf-field-switch_group .tf-switch-group-wrap.tf-switch-column-2 {
    grid-template-columns: 1fr;
  }
}
.tf-field-switch_group .tf-switch-group-wrap.tf-switch-column-1 {
  grid-template-columns: 1fr;
}
@media only screen and (max-width: 1024px) {
  .tf-field-switch_group .tf-switch-group-wrap {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 768px) {
  .tf-field-switch_group .tf-switch-group-wrap {
    grid-template-columns: 1fr;
  }
}
.tf-field-switch_group .tf-switch-group-wrap .tf-switch-column {
  padding: 8px 16px;
  border: 1px solid #c4cbd4;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  border-radius: 4px;
  background-color: #fff;
  cursor: move;
}
.tf-field-switch_group .tf-switch-group-wrap .tf-switch-column .tf-switch-group-label {
  margin-right: 4px;
  cursor: pointer;
}
.tf-field-switch_group .tf-switch-group-wrap .tf-switch-drag-highlight {
  background-color: #e1e5ea;
}
.tf-field-switch_group .tf-switch-label {
  position: relative;
  display: inline-block;
  width: 62px;
  height: 28px;
  border-radius: 32px;
}
.tf-field-switch_group .tf-switch-label input {
  display: none;
}
.tf-field-switch_group .tf-switch-label .tf-switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #DEE6EE;
  border-radius: 20px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.tf-field-switch_group .tf-switch-label .tf-switch-slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  border-radius: 50px;
  top: 4px;
  left: 4px;
  background-color: #ECF2F8;
  filter: drop-shadow(0px 2px 4px rgba(12, 31, 49, 0.12));
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.tf-field-switch_group .tf-switch-label .tf-switch-slider .tf-switch-on, .tf-field-switch_group .tf-switch-label .tf-switch-slider .tf-switch-off {
  color: #ffffff;
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  left: 12px;
  font-size: 12px;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.tf-field-switch_group .tf-switch-label .tf-switch-slider .tf-switch-off {
  color: #8999A9;
  left: auto;
  right: 12px;
  opacity: 1;
}
.tf-field-switch_group .tf-switch-label input:checked + .tf-switch-slider {
  background-color: #21A159;
}
.tf-field-switch_group .tf-switch-label input:checked + .tf-switch-slider:before {
  left: 100%;
  margin-left: -24px;
  background-color: #ffffff;
  filter: drop-shadow(0px 2px 4px rgba(12, 31, 49, 0.12));
}
.tf-field-switch_group .tf-switch-label input:checked + .tf-switch-slider .tf-switch-on {
  opacity: 1;
}
.tf-field-switch_group .tf-switch-label input:checked + .tf-switch-slider .tf-switch-off {
  opacity: 0;
}

.tf-field-accordion .tf-tab-switch-box.active-repeater .tf-tab-field-header {
  border-radius: 4px 4px 0 0;
  border-top: 1px solid #D9E0E8;
  border-bottom: 1px solid transparent;
  border-left: 1px solid #D9E0E8;
  border-right: 1px solid #D9E0E8;
}
.tf-field-accordion .tf-tab-switch-box.active-repeater .tf-tab-field-content {
  border-bottom: 1px solid #D9E0E8;
  border-top: 0px solid;
  border-left: 1px solid #D9E0E8;
  border-right: 1px solid #D9E0E8;
}
.tf-field-accordion .tf-tab-switch-box .tf-tab-field-header {
  border-radius: 4px;
  border-bottom: 1px solid #D9E0E8;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-top: 1px solid transparent;
  background: #F5F9FF;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}
.tf-field-accordion .tf-tab-switch-box .tf-tab-field-header .tf-field-collapas {
  display: flex;
  width: 100%;
  justify-content: space-between;
  cursor: pointer;
}
.tf-field-accordion .tf-tab-switch-box .tf-tab-field-header .tf-field-collapas.rotated i {
  transform: rotate(180deg);
}
.tf-field-accordion .tf-tab-switch-box .tf-tab-field-header .tf-field-collapas .field-label {
  color: #27333F;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}
.tf-field-accordion .tf-tab-switch-box .tf-tab-field-header .tf-field-collapas i {
  display: flex;
  width: 24px;
  height: 24px;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid #D9E0E8;
  background: #FFFFFF;
  line-height: 26px;
}
.tf-field-accordion .tf-tab-switch-box .tf-tab-field-header .tf-field.tf-field-switch {
  padding: 0;
  width: 32px !important;
}
.tf-field-accordion .tf-tab-switch-box .tf-tab-field-header .tf-field.tf-field-switch .tf-inline-switch {
  justify-content: end;
  width: 32px;
}
.tf-field-accordion .tf-tab-switch-box .tf-tab-field-header .tf-field.tf-field-switch .tf-inline-switch .tf-field-label {
  display: none !important;
}
.tf-field-accordion .tf-tab-switch-box .tf-tab-field-content {
  border-radius: 0px 0px 4px 4px;
  border: 1px solid #F2F5F7;
  background: #FFFCF5;
  padding: 4px 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 15px;
}

.tf-backend-tour-booking h1,
.tf-backend-hotel-booking h1 {
  font-size: 1.5rem;
  line-height: 28px;
  margin: 0 0 20px 0;
  padding: 0;
}

.tf-backend-booking-card-wrap {
  background: #ffffff;
  margin-right: 20px;
  border-radius: 6px;
  margin-bottom: 30px;
}
.tf-backend-booking-card-wrap h3.tf-backend-booking-card-title {
  margin: 0;
  padding: 15px 24px;
  background-color: #003c7a;
  color: #ffffff;
  border-radius: 6px 6px 0 0;
}

.tf-booking-fields-wrapper {
  padding: 10px 24px 20px;
}
.tf-booking-fields-wrapper .tf-booking-fields {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.tf-booking-fields-wrapper .tf-booking-fields .tf-fieldset .error-input {
  border-color: #b30000;
}
.tf-booking-fields-wrapper .tf-booking-fields .tf-fieldset .text-danger {
  color: #b30000;
}

.tf-backend-booking-footer {
  margin-right: 20px;
  text-align: right;
}

.tf_booking_details_wrap .tf_booking_wrap_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .tf_booking_details_wrap .tf_booking_wrap_header {
    display: flow-root;
  }
}
.tf_booking_details_wrap .tf_booking_wrap_header h1 {
  color: #1D2327;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 0;
}
.tf_booking_details_wrap .tf_booking_wrap_header .tf_header_wrap_button {
  display: flex;
  gap: 16px;
}
.tf_booking_details_wrap .tf_booking_wrap_header .tf_header_wrap_button .tf_booking_views_button {
  border-radius: 8px;
  border: 1px solid #EEF6F0;
  background: #ffffff;
  padding: 4px 8px;
  float: left;
  height: 46px;
  box-sizing: border-box;
}
.tf_booking_details_wrap .tf_booking_wrap_header .tf_header_wrap_button .tf_booking_views_button ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
}
.tf_booking_details_wrap .tf_booking_wrap_header .tf_header_wrap_button .tf_booking_views_button ul li {
  height: 36px;
  width: 36px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.tf_booking_details_wrap .tf_booking_wrap_header .tf_header_wrap_button .tf_booking_views_button ul li i {
  font-size: 0.938rem;
}
.tf_booking_details_wrap .tf_booking_wrap_header .tf_header_wrap_button .tf_booking_views_button ul li.active {
  color: #f0f0f1;
  background-color: #004e9d;
  border-radius: 4px;
}
.tf_booking_details_wrap .tf_booking_wrap_header .tf_header_wrap_button a.tf-booking-export-btn {
  padding: 10px 32px;
  border-radius: 8px;
  border: 1px solid #003C79;
  background: #ffffff;
  margin: 0 !important;
  color: #003C79;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  transition: 0.3s all ease;
}
.tf_booking_details_wrap .tf_booking_wrap_header .tf_header_wrap_button a.tf-booking-export-btn:hover {
  color: #f0f0f1;
  background-color: #003C79;
}
.tf_booking_details_wrap .tf_booking_wrap_header .tf_header_wrap_button a.tf-booking-btn,
.tf_booking_details_wrap .tf_booking_wrap_header .tf_header_wrap_button .tf-google-sync-button button {
  padding: 10px 32px;
  border-radius: 8px;
  border: 1px solid #003C79;
  background: #003C79;
  margin: 0;
  box-shadow: 0px 8px 20px 0px rgba(29, 35, 39, 0.06);
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  color: #F0F0F1;
  transition: 0.3s all ease;
  cursor: pointer;
}
.tf_booking_details_wrap .tf_booking_wrap_header .tf_header_wrap_button a.tf-booking-btn:hover,
.tf_booking_details_wrap .tf_booking_wrap_header .tf_header_wrap_button .tf-google-sync-button button:hover {
  color: #f0f0f1;
  background-color: #004E9D;
}
.tf_booking_details_wrap .tf-booking-calendar-popup-box {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.tf_booking_details_wrap .tf-booking-calendar-popup-box .tf-calendar-popup-box {
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0px 8px 30px 0px rgba(16, 40, 20, 0.1);
  padding: 16px 24px;
  width: 750px;
}
.tf_booking_details_wrap .tf-booking-calendar-popup-box .tf-calendar-popup-box .tf-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.tf_booking_details_wrap .tf-booking-calendar-popup-box .tf-calendar-popup-box .tf-popup-header h3 {
  color: #151615;
  font-size: 1.063rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 25.5px */
  margin: 0;
}
.tf_booking_details_wrap .tf-booking-calendar-popup-box .tf-calendar-popup-box .tf-popup-header h3 a i {
  color: #151615;
}
.tf_booking_details_wrap .tf-booking-calendar-popup-box .tf-calendar-popup-box .tf-popup-header .tf-close {
  cursor: pointer;
}
.tf_booking_details_wrap .tf-booking-calendar-popup-box .tf-calendar-popup-box .tf-popup-content {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.tf_booking_details_wrap .tf-booking-calendar-popup-box .tf-calendar-popup-box .tf-popup-content .tf-content-single-box {
  border-radius: 8px;
  background: #F3F6F4;
  padding: 16px 24px 24px 24px;
}
.tf_booking_details_wrap .tf-booking-calendar-popup-box .tf-calendar-popup-box .tf-popup-content .tf-content-single-box h4 {
  color: #141915;
  font-size: 0.938rem;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 160% */
  margin: 0 0 8px 0;
}
.tf_booking_details_wrap .tf-booking-calendar-popup-box .tf-calendar-popup-box .tf-popup-content .tf-content-single-box .tf-content-box {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tf_booking_details_wrap .tf-booking-calendar-popup-box .tf-calendar-popup-box .tf-popup-content .tf-content-single-box .tf-content-box .tf-single-content {
  width: calc(33% - 3px);
}
.tf_booking_details_wrap .tf-booking-calendar-popup-box .tf-calendar-popup-box .tf-popup-content .tf-content-single-box .tf-content-box .tf-single-content h5 {
  margin: 0 0 5px 0;
  font-size: 0.875rem;
  text-transform: capitalize;
}
.tf_booking_details_wrap .tf-booking-calendar-popup-box .tf-calendar-popup-box .tf-popup-content .tf-content-single-box .tf-content-box .tf-single-content p {
  margin: 0;
}
.tf_booking_details_wrap #tf-booking-calendar {
  border-radius: 16px;
  background: #ffffff;
  padding: 24px;
  padding-top: 30px;
  position: relative;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-header-toolbar .fc-toolbar-chunk:nth-child(1) > div {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: center;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-header-toolbar .fc-toolbar-chunk:nth-child(1) > div button {
  height: 40px;
  width: 40px;
  border-radius: 8px;
  border: 0.2px solid rgba(0, 60, 121, 0.1607843137);
  background: #ffffff;
  padding: 0;
  transition: 0.3s all ease;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-header-toolbar .fc-toolbar-chunk:nth-child(1) > div button:focus {
  box-shadow: none;
  outline: none;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-header-toolbar .fc-toolbar-chunk:nth-child(1) > div button:hover {
  background-color: #003c79;
  border-color: #003c79;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-header-toolbar .fc-toolbar-chunk:nth-child(1) > div button:hover span::before {
  color: #ffffff;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-header-toolbar .fc-toolbar-chunk:nth-child(1) > div button span {
  margin: 0px !important;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-header-toolbar .fc-toolbar-chunk:nth-child(1) > div button span::before {
  color: #003c79;
  border-color: #003c79;
  border-radius: 8px;
  font-size: 1.25rem;
  transition: 0.3s all ease;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-header-toolbar .fc-toolbar-chunk:nth-child(2) {
  text-align: center;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-header-toolbar .fc-toolbar-chunk:nth-child(2) > div {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: center;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-header-toolbar .fc-toolbar-chunk:nth-child(2) > div h2 {
  color: #1d2327 !important;
  font-size: 22px;
  font-style: normal;
  font-weight: 400 !important;
  line-height: 112%;
  margin: 0 !important;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-header-toolbar .fc-toolbar-chunk:nth-child(3) .fc-button-group {
  border-radius: 24px;
  border: 1px solid rgba(0, 60, 121, 0.1607843137);
  background: #ffffff;
  padding: 4px;
  display: flex;
  gap: 8px;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-header-toolbar .fc-toolbar-chunk:nth-child(3) .fc-button-group button {
  background: #ffffff;
  color: #131c25;
  font-size: 0.938rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 160% */
  border: 0px solid;
  padding: 8px 12px;
  border-radius: 24px;
  text-transform: capitalize;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-header-toolbar .fc-toolbar-chunk:nth-child(3) .fc-button-group button:focus {
  box-shadow: none;
  outline: none;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-header-toolbar .fc-toolbar-chunk:nth-child(3) .fc-button-group button.fc-button-active {
  background: rgba(0, 60, 121, 0.1607843137);
  color: #003c79;
  position: relative;
  padding-left: 27px;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-header-toolbar .fc-toolbar-chunk:nth-child(3) .fc-button-group button.fc-button-active::before {
  position: absolute;
  content: "";
  left: 12px;
  height: 7px;
  width: 7px;
  background: #003c79;
  border-radius: 50%;
  top: 50%;
  margin-top: -3.5px;
}
.tf_booking_details_wrap #tf-booking-calendar table {
  border: 0px solid;
}
.tf_booking_details_wrap #tf-booking-calendar table .fc-scrollgrid-section-header .fc-scroller-harness .fc-scroller {
  overflow: hidden !important;
}
.tf_booking_details_wrap #tf-booking-calendar table .fc-scrollgrid-section-header th {
  border: 0px solid;
}
.tf_booking_details_wrap #tf-booking-calendar table .fc-scrollgrid-section-header th .fc-col-header tr th {
  border: 0px solid;
}
.tf_booking_details_wrap #tf-booking-calendar table .fc-scrollgrid-section-header th .fc-col-header tr th a {
  color: #131c25;
  font-size: 0.938rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 160% */
  padding: 8px;
}
.tf_booking_details_wrap #tf-booking-calendar table .fc-scrollgrid-section-body > td {
  border: 0px solid;
}
.tf_booking_details_wrap #tf-booking-calendar table .fc-scrollgrid-section-body table tr td {
  border: 1px solid rgba(0, 60, 121, 0.1607843137);
  padding: 8px;
  background-color: transparent;
}
.tf_booking_details_wrap #tf-booking-calendar table .fc-scrollgrid-section-body table tr td .fc-daygrid-day-top a {
  color: #211319;
  font-size: 0.938rem;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 160% */
}
.tf_booking_details_wrap #tf-booking-calendar table .fc-scrollgrid-section-body table tr td .fc-daygrid-day-events .fc-daygrid-event-harness {
  margin-bottom: 8px;
}
.tf_booking_details_wrap #tf-booking-calendar table .fc-scrollgrid-section-body table tr td .fc-daygrid-day-events .fc-daygrid-event-harness:last-child {
  margin-bottom: 0px;
}
.tf_booking_details_wrap #tf-booking-calendar table .fc-scrollgrid-section-body table tr td .fc-daygrid-day-events .fc-daygrid-event-harness a {
  border: 0px solid;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 153.846% */
  color: #002AB3;
  width: 100%;
  display: block;
  line-height: 15px;
  background: transparent;
  cursor: pointer;
}
.tf_booking_details_wrap #tf-booking-calendar table .fc-scrollgrid-section-body table tr td .fc-daygrid-day-events .fc-daygrid-event-harness a .tf-booking-single-popup {
  padding: 6px 8px;
  border-radius: 8px;
}
.tf_booking_details_wrap #tf-booking-calendar table .fc-scrollgrid-section-body table tr td .fc-daygrid-day-events .fc-daygrid-event-harness .tf-order-completed {
  background: #c8d7e1 !important;
  border-color: #c8d7e1 !important;
}
.tf_booking_details_wrap #tf-booking-calendar table .fc-scrollgrid-section-body table tr td .fc-daygrid-day-events .fc-daygrid-event-harness .tf-order-completed .fc-event-main {
  color: #003d66 !important;
}
.tf_booking_details_wrap #tf-booking-calendar table .fc-scrollgrid-section-body table tr td .fc-daygrid-day-events .fc-daygrid-event-harness .tf-order-on-hold {
  background: #f8dda7 !important;
  border-color: #f8dda7 !important;
}
.tf_booking_details_wrap #tf-booking-calendar table .fc-scrollgrid-section-body table tr td .fc-daygrid-day-events .fc-daygrid-event-harness .tf-order-on-hold .fc-event-main {
  color: #573b00 !important;
}
.tf_booking_details_wrap #tf-booking-calendar table .fc-scrollgrid-section-body table tr td .fc-daygrid-day-events .fc-daygrid-event-harness .tf-order-cancelled {
  background: #e5e5e5 !important;
  border-color: #e5e5e5 !important;
}
.tf_booking_details_wrap #tf-booking-calendar table .fc-scrollgrid-section-body table tr td .fc-daygrid-day-events .fc-daygrid-event-harness .tf-order-cancelled .fc-event-main {
  color: #454545 !important;
}
.tf_booking_details_wrap #tf-booking-calendar table .fc-scrollgrid-section-body table tr td .fc-daygrid-day-events .fc-daygrid-event-harness .tf-order-failed {
  background: #eba3a3 !important;
  border-color: #eba3a3 !important;
}
.tf_booking_details_wrap #tf-booking-calendar table .fc-scrollgrid-section-body table tr td .fc-daygrid-day-events .fc-daygrid-event-harness .tf-order-failed .fc-event-main {
  color: #570000 !important;
}
.tf_booking_details_wrap #tf-booking-calendar table .fc-scrollgrid-section-body table tr td .fc-daygrid-day-events .fc-daygrid-event-harness .tf-order-processing {
  background: #c6e1c6 !important;
  border-color: #c6e1c6 !important;
}
.tf_booking_details_wrap #tf-booking-calendar table .fc-scrollgrid-section-body table tr td .fc-daygrid-day-events .fc-daygrid-event-harness .tf-order-processing .fc-event-main {
  color: #2c4700 !important;
}
.tf_booking_details_wrap #tf-booking-calendar table .fc-scrollgrid-section-body table tr td .fc-daygrid-day-events .fc-daygrid-event-harness .tf-order-trash {
  background: #eba3a3 !important;
  border-color: #eba3a3 !important;
}
.tf_booking_details_wrap #tf-booking-calendar table .fc-scrollgrid-section-body table tr td .fc-daygrid-day-events .fc-daygrid-event-harness .tf-order-trash .fc-event-main {
  color: #550202 !important;
}
.tf_booking_details_wrap #tf-booking-calendar table .fc-scrollgrid-section-body table tr td .fc-daygrid-day-bottom a.fc-more-link {
  border-radius: 16px;
  border: 1px solid #004e9d;
  background: rgba(0, 60, 121, 0.1019607843);
  overflow: hidden;
  color: #004e9d;
  text-overflow: ellipsis;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 153.846% */
  padding: 6px 8px;
}
.tf_booking_details_wrap #tf-booking-calendar table .fc-scrollgrid-section-body table tr td.fc-day-other .fc-daygrid-day-top {
  opacity: 1;
}
.tf_booking_details_wrap #tf-booking-calendar table .fc-scrollgrid-section-body table tr td.fc-day-other .fc-daygrid-day-top a {
  color: rgba(19, 28, 37, 0.3490196078);
}
.tf_booking_details_wrap #tf-booking-calendar table .fc-scrollgrid-section-body .fc-timegrid-body .fc-timegrid-cols table tbody tr td .fc-timegrid-col-events .fc-timegrid-event-harness {
  width: 100% !important;
}
.tf_booking_details_wrap #tf-booking-calendar table .fc-scrollgrid-section-body .fc-timegrid-body .fc-timegrid-cols table tbody tr td .fc-timegrid-col-events .fc-timegrid-event-harness:last-child {
  margin-bottom: 0px;
}
.tf_booking_details_wrap #tf-booking-calendar table .fc-scrollgrid-section-body .fc-timegrid-body .fc-timegrid-cols table tbody tr td .fc-timegrid-col-events .fc-timegrid-event-harness a {
  border: 0px solid;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 153.846% */
  padding: 0;
  background: transparent;
}
.tf_booking_details_wrap #tf-booking-calendar table .fc-scrollgrid-section-body .fc-timegrid-body .fc-timegrid-cols table tbody tr td .fc-timegrid-col-events .fc-timegrid-event-harness a b {
  padding: 6px 8px;
  color: #002AB3;
  width: 100%;
  border-left: 1px solid #002AB3;
  background: #EBEFFF;
  border-radius: 8px;
  display: block;
  line-height: 15px;
  cursor: pointer;
}
.tf_booking_details_wrap #tf-booking-calendar table .fc-scrollgrid-section-body .fc-timegrid-body .fc-timegrid-cols table tbody tr td .fc-timegrid-col-events .fc-timegrid-event-harness a b.confirmed {
  color: #17723F;
  border-left: 1px solid #17723F;
  background: #E6FAEE;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-theme-standard .fc-popover .fc-popover-body .fc-daygrid-event-harness {
  margin-bottom: 8px;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-theme-standard .fc-popover .fc-popover-body .fc-daygrid-event-harness:last-child {
  margin-bottom: 0px;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-theme-standard .fc-popover .fc-popover-body .fc-daygrid-event-harness a {
  border: 0px solid;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 153.846% */
  padding: 0;
  background: transparent;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-theme-standard .fc-popover .fc-popover-body .fc-daygrid-event-harness a b {
  padding: 6px 8px;
  color: #002AB3;
  width: 100%;
  border-left: 1px solid #002AB3;
  background: #EBEFFF;
  border-radius: 8px;
  display: block;
  line-height: 15px;
  cursor: pointer;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-theme-standard .fc-popover .fc-popover-body .fc-daygrid-event-harness a b.confirmed {
  color: #17723F;
  border-left: 1px solid #17723F;
  background: #E6FAEE;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-theme-standard .fc-popover .fc-popover-body .fc-daygrid-event-harness a.tf-order-completed {
  background: #c8d7e1 !important;
  border-color: #c8d7e1 !important;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-theme-standard .fc-popover .fc-popover-body .fc-daygrid-event-harness a.tf-order-completed .fc-event-main {
  color: #003d66 !important;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-theme-standard .fc-popover .fc-popover-body .fc-daygrid-event-harness a.tf-order-on-hold {
  background: #f8dda7 !important;
  border-color: #f8dda7 !important;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-theme-standard .fc-popover .fc-popover-body .fc-daygrid-event-harness a.tf-order-on-hold .fc-event-main {
  color: #573b00 !important;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-theme-standard .fc-popover .fc-popover-body .fc-daygrid-event-harness a.tf-order-cancelled {
  background: #e5e5e5 !important;
  border-color: #e5e5e5 !important;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-theme-standard .fc-popover .fc-popover-body .fc-daygrid-event-harness a.tf-order-cancelled .fc-event-main {
  color: #454545 !important;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-theme-standard .fc-popover .fc-popover-body .fc-daygrid-event-harness a.tf-order-failed {
  background: #eba3a3 !important;
  border-color: #eba3a3 !important;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-theme-standard .fc-popover .fc-popover-body .fc-daygrid-event-harness a.tf-order-failed .fc-event-main {
  color: #570000 !important;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-theme-standard .fc-popover .fc-popover-body .fc-daygrid-event-harness a.tf-order-processing {
  background: #c6e1c6 !important;
  border-color: #c6e1c6 !important;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-theme-standard .fc-popover .fc-popover-body .fc-daygrid-event-harness a.tf-order-processing .fc-event-main {
  color: #2c4700 !important;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-theme-standard .fc-popover .fc-popover-body .fc-daygrid-event-harness a.tf-order-trash {
  background: #eba3a3 !important;
  border-color: #eba3a3 !important;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-theme-standard .fc-popover .fc-popover-body .fc-daygrid-event-harness a.tf-order-trash .fc-event-main {
  color: #550202 !important;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-dayGridMonth-view .fc-scrollgrid-section-body table tr td {
  height: 150px;
}
.tf_booking_details_wrap #tf-booking-calendar .fc-dayGridMonth-view .fc-scrollgrid-section-body table tr td .fc-daygrid-day-events {
  left: 8px;
  right: 8px;
}
.tf_booking_details_wrap .tf-booking-header-filter,
.tf_booking_details_wrap .tf-calendar-booking-header-filter {
  display: none;
  justify-content: space-between;
  margin: 32px 0px;
}
@media only screen and (max-width: 1199.98px) {
  .tf_booking_details_wrap .tf-booking-header-filter,
  .tf_booking_details_wrap .tf-calendar-booking-header-filter {
    display: flow-root;
  }
}
.tf_booking_details_wrap .tf-booking-header-filter .tf-bulk-action-form,
.tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-bulk-action-form {
  display: inline-flex;
}
@media only screen and (max-width: 1024px) {
  .tf_booking_details_wrap .tf-booking-header-filter .tf-bulk-action-form,
  .tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-bulk-action-form {
    display: flex;
  }
}
@media only screen and (max-width: 1024px) {
  .tf_booking_details_wrap .tf-booking-header-filter .tf-bulk-action-form .tf-filter-options,
  .tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-bulk-action-form .tf-filter-options {
    margin-top: 0px !important;
  }
}
.tf_booking_details_wrap .tf-booking-header-filter .tf-left-search-filter,
.tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-left-search-filter {
  display: flex;
}
@media only screen and (max-width: 1024px) {
  .tf_booking_details_wrap .tf-booking-header-filter .tf-left-search-filter,
  .tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-left-search-filter {
    display: flow-root;
  }
}
.tf_booking_details_wrap .tf-booking-header-filter .tf-left-search-filter .tf-filter-options,
.tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-left-search-filter .tf-filter-options {
  margin-right: 16px;
}
@media only screen and (max-width: 1024px) {
  .tf_booking_details_wrap .tf-booking-header-filter .tf-left-search-filter .tf-filter-options,
  .tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-left-search-filter .tf-filter-options {
    margin: 15px 0 0 0;
    width: 100% !important;
  }
}
.tf_booking_details_wrap .tf-booking-header-filter .tf-left-search-filter .tf-filter-options span.select2,
.tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-left-search-filter .tf-filter-options span.select2 {
  height: 48px;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0px 8px 20px 0px rgba(29, 35, 39, 0.06);
  min-width: 160px !important;
}
@media only screen and (max-width: 1024px) {
  .tf_booking_details_wrap .tf-booking-header-filter .tf-left-search-filter .tf-filter-options span.select2,
  .tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-left-search-filter .tf-filter-options span.select2 {
    min-width: auto !important;
    width: 100% !important;
  }
}
.tf_booking_details_wrap .tf-booking-header-filter .tf-left-search-filter .tf-filter-options span.selection button.select2-selection__clear,
.tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-left-search-filter .tf-filter-options span.selection button.select2-selection__clear {
  margin-right: 0px;
  padding-top: 0px;
}
.tf_booking_details_wrap .tf-booking-header-filter .tf-left-search-filter .tf-filter-options span.selection span.select2-selection__placeholder,
.tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-left-search-filter .tf-filter-options span.selection span.select2-selection__placeholder {
  color: #1d2327;
}
.tf_booking_details_wrap .tf-booking-header-filter .tf-left-search-filter .tf-filter-options span.selection span.select2-selection,
.tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-left-search-filter .tf-filter-options span.selection span.select2-selection {
  height: 48px;
  border: 0px solid;
  background: transparent;
  color: #1d2327;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  padding-left: 8px;
  display: flex;
  align-items: center;
}
.tf_booking_details_wrap .tf-booking-header-filter .tf-left-search-filter .tf-filter-options span.selection span.select2-selection span.select2-selection__arrow,
.tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-left-search-filter .tf-filter-options span.selection span.select2-selection span.select2-selection__arrow {
  height: 48px;
  padding-right: 16px;
}
.tf_booking_details_wrap .tf-booking-header-filter .tf-left-search-filter .tf-order-status-filter-btn,
.tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-left-search-filter .tf-order-status-filter-btn {
  padding: 10px 32px;
  border-radius: 8px;
  border: 1px solid #003C79;
  background: #ffffff;
  box-shadow: 0px 8px 20px 0px rgba(29, 35, 39, 0.06);
  color: #003C79;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  cursor: pointer;
  margin-right: 16px;
  height: 48px;
  transition: 0.3s all ease;
}
@media only screen and (max-width: 1024px) {
  .tf_booking_details_wrap .tf-booking-header-filter .tf-left-search-filter .tf-order-status-filter-btn,
  .tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-left-search-filter .tf-order-status-filter-btn {
    margin: 0px;
  }
}
.tf_booking_details_wrap .tf-booking-header-filter .tf-left-search-filter .tf-order-status-filter-btn:hover,
.tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-left-search-filter .tf-order-status-filter-btn:hover {
  color: #f0f0f1;
  background-color: #003C79;
}
.tf_booking_details_wrap .tf-booking-header-filter .tf-left-search-filter .tf-order-filter-reset a,
.tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-left-search-filter .tf-order-filter-reset a {
  text-decoration: none;
  color: #1D2327;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  display: flex;
  padding: 10px 20px;
}
.tf_booking_details_wrap .tf-booking-header-filter .tf-left-search-filter .tf-order-status-filter-reset-btn-wrapper,
.tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-left-search-filter .tf-order-status-filter-reset-btn-wrapper {
  margin-right: 16px;
}
.tf_booking_details_wrap .tf-booking-header-filter .tf-left-search-filter .tf-order-status-filter-reset-btn-wrapper .tf-order-status-filter-reset-btn,
.tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-left-search-filter .tf-order-status-filter-reset-btn-wrapper .tf-order-status-filter-reset-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}
.tf_booking_details_wrap .tf-booking-header-filter .tf-left-search-filter .tf-enquiry-reset-button-text,
.tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-left-search-filter .tf-enquiry-reset-button-text {
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25;
  font-family: inherit;
  text-decoration: none;
}
.tf_booking_details_wrap .tf-booking-header-filter .tf-right-search-filter, .tf_booking_details_wrap .tf-booking-header-filter .tf-enquiry-right-search-filter,
.tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-right-search-filter,
.tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-enquiry-right-search-filter {
  border-radius: 8px;
  border: 1px solid #87888B;
  background: #ffffff;
  box-shadow: 0px 8px 20px 0px rgba(29, 35, 39, 0.06);
  padding: 8px 16px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1199.98px) {
  .tf_booking_details_wrap .tf-booking-header-filter .tf-right-search-filter, .tf_booking_details_wrap .tf-booking-header-filter .tf-enquiry-right-search-filter,
  .tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-right-search-filter,
  .tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-enquiry-right-search-filter {
    display: inline-flex;
    margin-top: 16px;
  }
}
@media only screen and (max-width: 1024px) {
  .tf_booking_details_wrap .tf-booking-header-filter .tf-right-search-filter, .tf_booking_details_wrap .tf-booking-header-filter .tf-enquiry-right-search-filter,
  .tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-right-search-filter,
  .tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-enquiry-right-search-filter {
    display: flex;
  }
}
.tf_booking_details_wrap .tf-booking-header-filter .tf-right-search-filter input, .tf_booking_details_wrap .tf-booking-header-filter .tf-enquiry-right-search-filter input,
.tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-right-search-filter input,
.tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-enquiry-right-search-filter input {
  width: 100%;
  border: 0px solid;
  color: #87888B;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  background: transparent;
  -moz-appearance: textfield;
}
.tf_booking_details_wrap .tf-booking-header-filter .tf-right-search-filter input:focus, .tf_booking_details_wrap .tf-booking-header-filter .tf-enquiry-right-search-filter input:focus,
.tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-right-search-filter input:focus,
.tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-enquiry-right-search-filter input:focus {
  outline: none;
  box-shadow: none;
}
.tf_booking_details_wrap .tf-booking-header-filter .tf-right-search-filter input::-webkit-outer-spin-button, .tf_booking_details_wrap .tf-booking-header-filter .tf-right-search-filter input::-webkit-inner-spin-button, .tf_booking_details_wrap .tf-booking-header-filter .tf-enquiry-right-search-filter input::-webkit-outer-spin-button, .tf_booking_details_wrap .tf-booking-header-filter .tf-enquiry-right-search-filter input::-webkit-inner-spin-button,
.tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-right-search-filter input::-webkit-outer-spin-button,
.tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-right-search-filter input::-webkit-inner-spin-button,
.tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-enquiry-right-search-filter input::-webkit-outer-spin-button,
.tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-enquiry-right-search-filter input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.tf_booking_details_wrap .tf-booking-header-filter .tf-right-search-filter button, .tf_booking_details_wrap .tf-booking-header-filter .tf-enquiry-right-search-filter button,
.tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-right-search-filter button,
.tf_booking_details_wrap .tf-calendar-booking-header-filter .tf-enquiry-right-search-filter button {
  cursor: pointer;
  background-color: transparent;
  border: 0px solid;
}
.tf_booking_details_wrap .tf-calendar-booking-header-filter {
  display: flex;
}
.tf_booking_details_wrap .tf-order-table-responsive {
  width: 100%;
  overflow: auto;
  display: none;
}
.tf_booking_details_wrap .tf-order-table-responsive .wp-list-table {
  border-radius: 12px;
  background: #EDEDF8;
  border: 0px solid;
  width: 100%;
}
.tf_booking_details_wrap .tf-order-table-responsive .wp-list-table thead tr #order_id,
.tf_booking_details_wrap .tf-order-table-responsive .wp-list-table thead tr #action {
  width: 70px;
}
.tf_booking_details_wrap .tf-order-table-responsive .wp-list-table thead tr #check_status {
  width: 128px;
}
.tf_booking_details_wrap .tf-order-table-responsive .wp-list-table thead tr th, .tf_booking_details_wrap .tf-order-table-responsive .wp-list-table thead tr td {
  color: #87888B;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  padding: 13px 24px;
  border-bottom: 0px solid;
  text-align: left;
}
.tf_booking_details_wrap .tf-order-table-responsive .wp-list-table thead tr th .tf-checkbox-listing, .tf_booking_details_wrap .tf-order-table-responsive .wp-list-table thead tr td .tf-checkbox-listing {
  height: 28px;
  width: 28px;
  background-color: #EDEDF8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all ease;
}
.tf_booking_details_wrap .tf-order-table-responsive .wp-list-table thead tr th .tf-checkbox-listing:hover, .tf_booking_details_wrap .tf-order-table-responsive .wp-list-table thead tr td .tf-checkbox-listing:hover {
  background-color: #F0F2F4;
}
.tf_booking_details_wrap .tf-order-table-responsive .wp-list-table thead tr th .tf-checkbox-listing:hover input, .tf_booking_details_wrap .tf-order-table-responsive .wp-list-table thead tr td .tf-checkbox-listing:hover input {
  background-color: #ffffff;
}
.tf_booking_details_wrap .tf-order-table-responsive .wp-list-table thead tr th .tf-checkbox-listing input, .tf_booking_details_wrap .tf-order-table-responsive .wp-list-table thead tr td .tf-checkbox-listing input {
  border-radius: 4px;
  border: 1px solid #1d2327;
  background: #f0f0f1;
  width: 18px;
  height: 18px;
  margin: 0px;
}
.tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tbody tr .ostatus {
  text-transform: capitalize;
}
.tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tbody tr th, .tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tbody tr td {
  padding: 16px 24px;
  color: #1D2327;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  background-color: #ffffff;
  border-bottom: 1px solid #F0F0F1;
  text-align: left;
}
.tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tbody tr th a, .tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tbody tr td a {
  text-decoration: none;
  color: #1D2327;
}
.tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tbody tr th span, .tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tbody tr td span {
  color: #87888B;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 112.5% */
}
.tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tbody tr th .tf-checkbox-listing, .tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tbody tr td .tf-checkbox-listing {
  height: 28px;
  width: 28px;
  background-color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all ease;
}
.tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tbody tr th .tf-checkbox-listing:hover, .tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tbody tr td .tf-checkbox-listing:hover {
  background-color: #F0F2F4;
}
.tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tbody tr th .tf-checkbox-listing:hover input, .tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tbody tr td .tf-checkbox-listing:hover input {
  background-color: #ffffff;
  box-shadow: none;
}
.tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tbody tr th .tf-checkbox-listing input, .tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tbody tr td .tf-checkbox-listing input {
  border-radius: 4px;
  border: 1px solid #1d2327;
  background: #f0f0f1;
  width: 18px;
  height: 18px;
  margin: 0px;
}
.tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tbody tr th .checkinout, .tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tbody tr td .checkinout {
  padding: 3px 8px;
  border-radius: 16px;
  background: #ECFDF3;
  color: #027A48;
  text-align: center;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
}
.tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tbody tr th .checkinout.checkout, .tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tbody tr td .checkinout.checkout {
  background: #ffffff;
  color: #B54708;
}
.tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tbody tr th a.tf_booking_details_view, .tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tbody tr td a.tf_booking_details_view {
  border-radius: 8px;
  background-color: #ffffff;
  display: inline-flex;
  padding: 10px;
  transition: 0.3s all ease;
}
.tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tbody tr th a.tf_booking_details_view:hover, .tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tbody tr td a.tf_booking_details_view:hover {
  background: #F0F2F4;
}
.tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tbody tr .check-column:hover input {
  box-shadow: none;
}
.tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tfoot tr th {
  text-align: right;
  padding: 12px 24px 16px 24px;
}
.tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tfoot tr th .tf-booking-details-pagination {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: right;
}
.tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tfoot tr th .tf-booking-details-pagination li a {
  display: flex;
  padding: 10px;
  color: #1D2327;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  min-width: 20px;
  text-align: center;
  justify-content: center;
}
.tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tfoot tr th .tf-booking-details-pagination li {
  border-right: 1px solid #F0F0F1;
  background: #ffffff;
}
.tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tfoot tr th .tf-booking-details-pagination li:last-child {
  border-right: 0px solid;
  border-radius: 0px 8px 8px 0px;
}
.tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tfoot tr th .tf-booking-details-pagination li:last-child svg {
  margin-left: 8px;
}
.tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tfoot tr th .tf-booking-details-pagination li:first-child {
  border-radius: 8px 0px 0px 8px;
}
.tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tfoot tr th .tf-booking-details-pagination li:first-child svg {
  margin-right: 8px;
}
.tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tfoot tr th .tf-booking-details-pagination li.active {
  background-color: #003C79;
}
.tf_booking_details_wrap .tf-order-table-responsive .wp-list-table tfoot tr th .tf-booking-details-pagination li.active a {
  color: #ffffff;
}

.select2-dropdown.tf-booking-filter-modal,
.select2-dropdown.tf-booking-checkinout-filter-modal {
  border: 0px solid;
  border-radius: 8px;
  background: #f0f2f4;
  box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.1);
}
.select2-dropdown.tf-booking-filter-modal .select2-results ul,
.select2-dropdown.tf-booking-checkinout-filter-modal .select2-results ul {
  padding-left: 4px;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: #aaa #eee;
  max-height: 218px;
}
.select2-dropdown.tf-booking-filter-modal .select2-results ul scrollbar,
.select2-dropdown.tf-booking-checkinout-filter-modal .select2-results ul scrollbar {
  width: 5px;
  border-radius: 10px !important;
}
.select2-dropdown.tf-booking-filter-modal .select2-results ul scrollbar-thumb,
.select2-dropdown.tf-booking-checkinout-filter-modal .select2-results ul scrollbar-thumb {
  background-color: #aaa;
  border-radius: 10px !important;
}
.select2-dropdown.tf-booking-filter-modal .select2-results ul li,
.select2-dropdown.tf-booking-checkinout-filter-modal .select2-results ul li {
  display: block;
  color: #1D2327;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 4px;
  padding: 8px 16px;
  background-color: #ffffff;
  background: #ffffff;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s all ease;
}
.select2-dropdown.tf-booking-filter-modal .select2-results ul li:last-child,
.select2-dropdown.tf-booking-checkinout-filter-modal .select2-results ul li:last-child {
  margin-bottom: 0px;
}
.select2-dropdown.tf-booking-filter-modal .select2-results ul li:hover,
.select2-dropdown.tf-booking-checkinout-filter-modal .select2-results ul li:hover {
  background-color: #F9FAFB !important;
}

.select2-dropdown.tf-booking-checkinout-filter-modal .select2-results ul li:first-child {
  background: #ECFDF3;
  color: #027A48;
}
.select2-dropdown.tf-booking-checkinout-filter-modal .select2-results ul li:last-child {
  background: #ffffff;
  color: #B54708;
}

.tf-booking-details-preview {
  margin-top: 10px;
  margin-right: 20px;
}
.tf-booking-details-preview .tf-details-preview-header .tf-back a {
  color: #003C79;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.tf-booking-details-preview .tf-details-preview-header .tf-back a svg {
  margin-right: 8px;
}
.tf-booking-details-preview .tf-details-preview-header .tf-back a:focus {
  box-shadow: none;
  outline: none;
}
.tf-booking-details-preview .tf-details-preview-header .tf-title h2 {
  color: #1D2327;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0px 0px 16px 0px;
}
.tf-booking-details-preview .tf-details-preview-header .tf-booking-id-author ul {
  margin: 0px;
}
.tf-booking-details-preview .tf-details-preview-header .tf-booking-id-author ul li {
  display: inline-block;
  color: #1D2327;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  padding: 0px 12px;
}
.tf-booking-details-preview .tf-details-preview-header .tf-booking-id-author ul li:first-child {
  padding-left: 0px;
}
@media only screen and (max-width: 768px) {
  .tf-booking-details-preview .tf-details-preview-header .tf-booking-id-author ul li {
    padding: 0px 5px;
  }
}
@media only screen and (max-width: 640px) {
  .tf-booking-details-preview .tf-details-preview-header .tf-booking-id-author ul li {
    padding: 5px 0;
    display: block;
  }
}
@media only screen and (max-width: 640px) {
  .tf-booking-details-preview .tf-details-preview-header .tf-booking-id-author ul li:nth-child(2), .tf-booking-details-preview .tf-details-preview-header .tf-booking-id-author ul li:nth-child(4) {
    display: none;
  }
}
.tf-booking-details-preview .tf-booking-details-preview-box {
  display: flex;
  align-items: flex-start;
  align-self: stretch;
  gap: 24px;
}
@media only screen and (max-width: 768px) {
  .tf-booking-details-preview .tf-booking-details-preview-box {
    display: flow-root;
  }
}
@media only screen and (max-width: 768px) {
  .tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-details {
    width: auto;
  }
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-details {
  width: calc(100% - 260px);
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-details .details-box {
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0px 8px 20px 0px rgba(29, 35, 39, 0.1);
  padding: 24px;
  margin-top: 24px;
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-details .details-box h4 {
  color: #003C79;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  margin: 0px 0px 16px 0px;
  display: flex;
  justify-content: space-between;
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-details .details-box h4 .others-button span {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-details .details-box h4 .others-button span svg {
  margin-right: 8px;
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-details .details-box .tf-grid-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media only screen and (max-width: 1200px) {
  .tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-details .details-box .tf-grid-box {
    grid-template-columns: 1fr;
  }
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-details .details-box .tf-grid-box h3 {
  color: #87888B;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  margin: 0px 0px 8px 0px;
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-details .details-box .tf-grid-box .tf-single-box {
  border-radius: 8px;
  border: 1px solid #F0F0F1;
  background: #EDEDF8;
  padding: 8px 16px;
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-details .details-box .tf-grid-box .tf-single-box table {
  border: 0px solid;
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-details .details-box .tf-grid-box .tf-single-box table tr td {
  padding: 8px;
  color: #1D2327;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 128.571% */
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-details .details-box .tf-grid-box .tf-single-box table tr th {
  padding: 8px 8px 8px 0px;
  color: #1D2327;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 18px; /* 128.571% */
  text-align: left;
  text-transform: capitalize;
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-details .details-box .tf-grid-box .tf-checkin-by {
  min-height: 220px;
}
@media only screen and (max-width: 1200px) {
  .tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-details .details-box .tf-grid-box .tf-checkin-by {
    min-height: auto;
  }
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-details .details-box .tf-grid-box .tf-voucher-preview {
  background-color: transparent;
  position: relative;
  max-height: 220px;
  overflow: hidden;
  object-position: top;
  transition: object-position 2s ease-in-out, border-color 0.3s ease-in-out;
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-details .details-box .tf-grid-box .tf-voucher-preview:hover {
  object-position: bottom;
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-details .details-box .tf-grid-box .tf-voucher-preview .tf-preview-btn {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 8px;
  background: rgba(55, 55, 62, 0.5);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-details .details-box .tf-grid-box .tf-voucher-preview .tf-preview-btn a {
  border-radius: 8px;
  border: #F0F0F1;
  background: rgba(240, 240, 241, 0.05);
  border: 1px solid #F0F0F1;
  color: #F0F0F1;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  padding: 12px 20px;
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-details .details-box .tf-visitor-grid-box {
  grid-template-columns: 1fr 1fr 1fr;
}
@media only screen and (max-width: 1200px) {
  .tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-details .details-box .tf-visitor-grid-box {
    grid-template-columns: 1fr;
  }
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-details .details-box .tf-pricing-grid-box {
  grid-template-columns: 1fr;
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-details .details-box .tf-customer-details-boxs .tf-single-box {
  min-height: 415px;
}
@media only screen and (max-width: 1200px) {
  .tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-details .details-box .tf-customer-details-boxs .tf-single-box {
    min-height: auto;
  }
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-details .details-box .tf-customer-pricing-box .tf-grid-single .tf-single-box {
  min-height: 128px;
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-actions {
  width: 268px;
  padding: 24px;
  border-radius: 8px;
  background: #ffffff;
  margin-top: 24px;
}
@media only screen and (max-width: 768px) {
  .tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-actions {
    width: auto;
  }
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-actions .tf-filter-selection {
  margin-top: 45px;
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-actions .tf-filter-selection h3 {
  color: #1D2327;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  margin: 0px 0px 16px 0px;
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-actions .tf-filter-selection .tf-order-status-filter {
  position: relative;
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-actions .tf-filter-selection .tf-order-status-filter label {
  background: #003C79;
  color: #F0F0F1;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  border-radius: 6px;
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-actions .tf-filter-selection .tf-order-status-filter ul {
  position: absolute;
  border-radius: 8px;
  background: #F0F2F4;
  box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.1);
  padding: 0;
  margin: 0;
  left: 0;
  z-index: 99;
  top: 100%;
  display: none;
  width: 100%;
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-actions .tf-filter-selection .tf-order-status-filter ul li {
  display: block;
  color: #1D2327;
  margin: 0px 8px 4px 8px;
  padding: 8px 16px;
  background-color: #ffffff;
  background: #ffffff;
  cursor: pointer;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  border-radius: 6px;
  transition: 0.3s all ease;
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-actions .tf-filter-selection .tf-order-status-filter ul li:hover {
  background-color: #EDEDF8;
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-actions .tf-filter-selection .tf-order-status-filter ul li:first-child {
  margin-top: 8px;
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-actions .tf-filter-selection .tf-order-status-filter ul li.checkin {
  background: #ECFDF3;
  color: #027A48;
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-actions .tf-filter-selection .tf-order-status-filter ul li.checkout {
  background: #ffffff;
  color: #B54708;
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-actions .tf-filter-selection:first-child {
  margin-top: 0px;
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-actions .tf-filter-selection .tf-refund-btn a {
  border-radius: 8px;
  border: 1px solid #003C79;
  background: #ffffff;
  box-shadow: 0px 8px 20px 0px rgba(29, 35, 39, 0.06);
  text-decoration: none;
  color: #003C79;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  display: block;
  padding: 16px 32px;
  text-align: center;
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-actions .tf-filter-selection.active label svg {
  transform: rotate(180deg);
}
.tf-booking-details-preview .tf-booking-details-preview-box .tf-booking-actions .tf-filter-selection.active ul {
  display: block;
}

.visitor-details-edit-form {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  display: none;
}
.visitor-details-edit-form .visitor-details-edit-popup {
  border-radius: 24px;
  border: 1px solid #f0f0f1;
  background: #ffffff;
  position: fixed;
  left: 50%;
  top: 25%;
  z-index: 999;
  max-width: 700px;
  margin-left: -350px;
}
.visitor-details-edit-form .visitor-details-edit-popup .tf-visitor-details-edit-header {
  padding: 16px;
  border-bottom: 0.3px solid #CCCED1;
  display: flex;
  justify-content: space-between;
}
.visitor-details-edit-form .visitor-details-edit-popup .tf-visitor-details-edit-header h2 {
  color: #003C79;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin: 0px;
}
.visitor-details-edit-form .visitor-details-edit-popup .tf-visitor-details-edit-header .tf-booking-times span {
  height: 24px;
  width: 24px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 0.3px solid #CCCED1;
  border-radius: 5px;
}
.visitor-details-edit-form .visitor-details-edit-popup .visitor-details-popup {
  max-height: 400px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #aaa #eee;
  padding: 16px;
}
.visitor-details-edit-form .visitor-details-edit-popup .visitor-details-popup scrollbar {
  width: 5px;
}
.visitor-details-edit-form .visitor-details-edit-popup .visitor-details-popup scrollbar-thumb {
  background-color: #aaa;
  border-radius: 4px;
}
.visitor-details-edit-form .visitor-details-edit-popup .visitor-details-popup .tf-single-tour-traveller {
  padding-bottom: 16px;
}
.visitor-details-edit-form .visitor-details-edit-popup .visitor-details-popup .tf-single-tour-traveller h4 {
  color: #1D2327;
  font-family: inherit;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: 20px !important;
  margin: 0px;
  margin-bottom: 5px;
}
.visitor-details-edit-form .visitor-details-edit-popup .visitor-details-popup .tf-single-tour-traveller .traveller-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 575.98px) {
  .visitor-details-edit-form .visitor-details-edit-popup .visitor-details-popup .tf-single-tour-traveller .traveller-info {
    grid-template-columns: repeat(1, 1fr);
  }
}
.visitor-details-edit-form .visitor-details-edit-popup .visitor-details-popup .tf-single-tour-traveller .traveller-info {
  gap: 10px;
}
.visitor-details-edit-form .visitor-details-edit-popup .visitor-details-popup .tf-single-tour-traveller .traveller-info .traveller-single-info {
  width: 100%;
}
.visitor-details-edit-form .visitor-details-edit-popup .visitor-details-popup .tf-single-tour-traveller .traveller-info .traveller-single-info label {
  color: #A4A4A4;
  font-family: inherit;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}
.visitor-details-edit-form .visitor-details-edit-popup .visitor-details-popup .tf-single-tour-traveller .traveller-info .traveller-single-info input[type=text],
.visitor-details-edit-form .visitor-details-edit-popup .visitor-details-popup .tf-single-tour-traveller .traveller-info .traveller-single-info input[type=email],
.visitor-details-edit-form .visitor-details-edit-popup .visitor-details-popup .tf-single-tour-traveller .traveller-info .traveller-single-info input[type=date],
.visitor-details-edit-form .visitor-details-edit-popup .visitor-details-popup .tf-single-tour-traveller .traveller-info .traveller-single-info select {
  border-radius: 4px;
  border: 0.5px solid #666D74;
  background: transparent;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  height: 32px;
  width: 100%;
  padding: 0px 5px;
}
.visitor-details-edit-form .visitor-details-edit-popup .visitor-details-popup .tf-single-tour-traveller .traveller-info .traveller-single-info input[type=date] {
  text-transform: uppercase;
  font-size: 13px;
}
.visitor-details-edit-form .visitor-details-edit-popup .visitor-details-popup .tf-single-tour-traveller .traveller-info .traveller-single-info input[type=checkbox],
.visitor-details-edit-form .visitor-details-edit-popup .visitor-details-popup .tf-single-tour-traveller .traveller-info .traveller-single-info input[type=radio] {
  margin: 0;
}
.visitor-details-edit-form .details-update-btn {
  padding: 16px;
}
.visitor-details-edit-form .details-update-btn button {
  border-radius: 4px;
  background: #003C7A;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  padding: 10px 0px;
  color: #FCFDFF;
  font-family: inherit;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  width: 100%;
  text-align: center;
  border: 0px solid;
  cursor: pointer;
}

.tf-voucher-quick-view-box {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.tf-voucher-quick-view-box .voucher-quick-view {
  border-radius: 24px;
  border: 1px solid #f0f0f1;
  background: #ffffff;
  z-index: 999;
  max-width: 700px;
}
.tf-voucher-quick-view-box .voucher-quick-view .tf-voucher-details-preview-header {
  padding: 16px;
  border-bottom: 0.3px solid #CCCED1;
  display: flex;
  justify-content: space-between;
}
.tf-voucher-quick-view-box .voucher-quick-view .tf-voucher-details-preview-header h2 {
  color: #003C79;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin: 0px;
}
.tf-voucher-quick-view-box .voucher-quick-view .tf-voucher-details-preview-header .tf-quick-view-times span {
  height: 24px;
  width: 24px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 0.3px solid #CCCED1;
  border-radius: 5px;
}

.tf-visitor-vouchers {
  padding: 30px;
  border: 1px dashed #002043;
  background-repeat: repeat;
  background-size: cover;
  background-position: center;
  margin: 16px;
}
.tf-visitor-vouchers .tf-voucher-header {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.tf-visitor-vouchers .tf-voucher-header img {
  margin-right: 25px;
}
.tf-visitor-vouchers .tf-voucher-header .title h1 {
  color: #002043;
  font-size: 1.5rem;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  line-height: 32px;
  font-weight: 700;
  margin: 0;
}
.tf-visitor-vouchers .tf-voucher-header .title span {
  color: #828C99;
  font-size: 1.25rem;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  line-height: 32px;
  font-weight: 700;
  margin: 0;
}
.tf-visitor-vouchers .tf-voucher-qr-code {
  display: flex;
  justify-content: space-between;
}
.tf-visitor-vouchers .tf-voucher-qr-code .time-info {
  background: #F2F2F2;
  padding: 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tf-visitor-vouchers .tf-voucher-qr-code .time-info h5 {
  margin: 0;
  color: #828C99;
  font-size: 1rem;
  line-height: 28px;
  font-weight: 400;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
}
.tf-visitor-vouchers .tf-voucher-qr-code .time-info h5 b {
  color: #002043;
}
.tf-visitor-vouchers .tf-voucher-qr-code img {
  margin-left: 30px;
  object-fit: contain;
}
.tf-visitor-vouchers .tf-voucher-billing-info {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.tf-visitor-vouchers .tf-voucher-billing-info .tf-billing-details h5 {
  color: #828C99;
  font-size: 1rem;
  line-height: 28px;
  font-weight: 400;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  margin: 0;
}
.tf-visitor-vouchers .tf-voucher-billing-info .tf-cta-info h4 {
  color: #828C99;
  font-size: 1rem;
  line-height: 28px;
  font-weight: 700;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  margin: 0;
}
.tf-visitor-vouchers .tf-voucher-billing-info .tf-cta-info h5 {
  color: #828C99;
  font-size: 0.875rem;
  line-height: 28px;
  font-weight: 400;
  margin: 0;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
}
.tf-visitor-vouchers .tf-voucher-footer-qoute p {
  color: #828C99;
  font-size: 11px;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  line-height: 20px;
}

.tf-preloader-box {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  display: none;
  z-index: 99999999;
}
.tf-preloader-box .tf-loader-preview {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tf-preloader-box .tf-loader-preview img {
  display: inline-block;
  border: none;
  margin: 0;
  padding: 0;
  vertical-align: middle;
  max-width: 100%;
}

.tf_enquiry_details_wrap_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .tf_enquiry_details_wrap_header {
    display: flow-root;
  }
}
.tf_enquiry_details_wrap_header h1 {
  color: #1D2327;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 0;
}
.tf_enquiry_details_wrap_header .tf_header_wrap_button {
  display: flex;
  gap: 16px;
}
.tf_enquiry_details_wrap_header .tf_header_wrap_button .tf_booking_views_button {
  border-radius: 8px;
  border: 1px solid #EEF6F0;
  background: #ffffff;
  padding: 4px 8px;
  float: left;
  height: 46px;
  box-sizing: border-box;
}
.tf_enquiry_details_wrap_header .tf_header_wrap_button .tf_booking_views_button ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
}
.tf_enquiry_details_wrap_header .tf_header_wrap_button .tf_booking_views_button ul li {
  height: 36px;
  width: 36px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.tf_enquiry_details_wrap_header .tf_header_wrap_button .tf_booking_views_button ul li i {
  font-size: 0.938rem;
}
.tf_enquiry_details_wrap_header .tf_header_wrap_button .tf_booking_views_button ul li.active {
  color: #f0f0f1;
  background-color: #004e9d;
  border-radius: 4px;
}
.tf_enquiry_details_wrap_header .tf_header_wrap_button a.tf-enquiry-export-btn {
  padding: 10px 32px;
  border-radius: 8px;
  border: 1px solid #003C79;
  background: #ffffff;
  margin: 0 !important;
  color: #003C79;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  transition: 0.3s all ease;
}
.tf_enquiry_details_wrap_header .tf_header_wrap_button a.tf-enquiry-export-btn:hover {
  color: #f0f0f1;
  background-color: #003C79;
}
.tf_enquiry_details_wrap_header .tf_header_wrap_button a.tf-booking-btn,
.tf_enquiry_details_wrap_header .tf_header_wrap_button .tf-google-sync-button button {
  padding: 10px 32px;
  border-radius: 8px;
  border: 1px solid #003C79;
  background: #003C79;
  margin: 0;
  box-shadow: 0px 8px 20px 0px rgba(29, 35, 39, 0.06);
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  color: #F0F0F1;
  transition: 0.3s all ease;
  cursor: pointer;
}
.tf_enquiry_details_wrap_header .tf_header_wrap_button a.tf-booking-btn:hover,
.tf_enquiry_details_wrap_header .tf_header_wrap_button .tf-google-sync-button button:hover {
  color: #f0f0f1;
  background-color: #004E9D;
}

.tf-enquiry-table {
  display: block !important;
}
.tf-enquiry-table .tf-enquiry-unread th, .tf-enquiry-table .tf-enquiry-unread td {
  background-color: #EDF2F7 !important;
  border-bottom: 1px solid #F0F2F4 !important;
  color: #1D2327 !important;
  font-family: inherit !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 700 !important;
}
.tf-enquiry-table .tf-enquiry-unread th .tf-checkbox-listing, .tf-enquiry-table .tf-enquiry-unread td .tf-checkbox-listing {
  background-color: #EDF2F7 !important;
}
.tf-enquiry-table .tf-enquiry-responded th, .tf-enquiry-table .tf-enquiry-responded td {
  color: #1D2327 !important;
  font-family: inherit !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 700 !important;
}
.tf-enquiry-table #cb {
  width: 15%;
  padding: 12px 24px;
}
.tf-enquiry-table #uemail {
  width: 20%;
  padding: 12px 24px;
}
.tf-enquiry-table #post_name {
  width: 20%;
  padding: 12px 24px;
}
.tf-enquiry-table #description {
  width: 30%;
  padding: 12px 24px;
}
.tf-enquiry-table #massage-date-time {
  width: 15%;
  padding: 12px 24px;
}
.tf-enquiry-table thead tr .tf-checkbox-listing {
  gap: 12px;
  margin: 12px 24px;
}
.tf-enquiry-table tbody .tf-enquiry-single-row {
  cursor: pointer;
}
.tf-enquiry-table tbody .tf-enquiry-single-row .check-column .table-name-column {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.tf-enquiry-table tbody .tf-enquiry-single-row .check-column .table-name-column .tf-checkbox-listing {
  width: 18px !important;
  justify-content: unset !important;
  justify-self: flex-start !important;
}
.tf-enquiry-table tbody .tf-enquiry-single-row .time-n-date .email-time-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
}
.tf-enquiry-table tbody .tf-enquiry-single-row .time-n-date .email-time-date .email-date {
  color: #1D2327;
  font-family: inherit;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.12;
}
.tf-enquiry-table tbody .tf-enquiry-single-row .time-n-date .email-time-date .email-time {
  color: #666D74;
  font-family: inherit;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.12;
}
.tf-enquiry-table .pro-notice-row {
  border-top: none;
}
.tf-enquiry-table .pro-notice-row .tf-pro-notice {
  padding: 0px 0px;
}
.tf-enquiry-table .pro-notice-row .tf-pro-notice .tf-fieldset {
  margin-top: 0px;
}
.tf-enquiry-table .pro-notice-row .tf-pro-notice .tf-field-notice-inner {
  justify-content: center;
}
.tf-enquiry-table .pro-notice-row .tf-pro-notice .tf-field-notice-inner a {
  text-decoration: underline;
  color: #295BFF;
}

.tf-enquiry-details-header-filter {
  display: flex !important;
}

.tf-enquiry-single-header-details {
  padding: 16px 24px;
  background-color: #ffffff;
  width: 100%;
  display: flex;
  gap: 16px;
  margin: -10px -20px 24px -20px;
}
.tf-enquiry-single-header-details img {
  height: 100%;
  width: 32px;
  object-fit: contain;
  padding: 3.2px;
}
.tf-enquiry-single-header-details h1 {
  font-family: inherit;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.33;
}

hr.enqury-single-title-line {
  border-color: #F0EEF6;
  margin: 0px;
  border-width: 0.5px;
}

.tf-single-enquiry-header-buttons {
  margin-bottom: 24px;
  display: flex;
  gap: 12px;
}
.tf-single-enquiry-header-buttons .tf-enquiry-single-back-button {
  padding: 8px 20px 8px 16px;
  background-color: #ffffff;
  max-width: 60px;
  font-size: 0.938rem;
  color: #2C273F;
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  border-radius: 8px;
}
.tf-single-enquiry-header-buttons .tf-enquiry-single-back-button a {
  color: #2C273F;
  text-decoration: none;
}
.tf-single-enquiry-header-buttons .tf-enquiry-single-back-button a i {
  margin-right: 8px;
}
.tf-single-enquiry-header-buttons .tf-enquiry-single-back-button a:focus {
  outline: none;
  box-shadow: none;
}
.tf-single-enquiry-header-buttons .tf-enquiry-single-sync {
  max-width: 120px;
  cursor: pointer;
  background-color: #003c79;
  border-color: #003c79;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  user-select: none;
}
.tf-single-enquiry-header-buttons .tf-enquiry-single-sync:hover {
  background-color: #001f3e;
  border-color: #001f3e;
  color: #ffffff;
}

.tf-enquiry-single-details-wrapper {
  display: flex;
  gap: 24px;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 60%;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-enquiry-details {
  background-color: #ffffff;
  padding: 16px 0px 24px 0px;
  border-radius: 8px;
  min-height: 286px;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-enquiry-details h2 {
  font-family: inherit;
  font-size: 1.063rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin: 0px;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-enquiry-details .tf-enquiry-details-single-heading {
  padding-bottom: 16px;
  padding-left: 24px;
  padding-right: 24px;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-enquiry-details .tf-single-enquiry-details-content {
  display: flex;
  gap: 24px;
  padding-top: 24px;
  padding-left: 24px;
  padding-right: 24px;
  flex-direction: column;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-enquiry-details .tf-single-enquiry-details-content .tf-single-enquiry-details-name, .tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-enquiry-details .tf-single-enquiry-details-content .tf-single-enquiry-details-email, .tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-enquiry-details .tf-single-enquiry-details-content .tf-single-enquiry-details-message {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-enquiry-details .tf-single-enquiry-details-content .tf-single-enquiry-details-name .tf-single-enquiry-details-label, .tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-enquiry-details .tf-single-enquiry-details-content .tf-single-enquiry-details-email .tf-single-enquiry-details-label, .tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-enquiry-details .tf-single-enquiry-details-content .tf-single-enquiry-details-message .tf-single-enquiry-details-label {
  color: #5D5676;
  font-family: inherit;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-enquiry-details .tf-single-enquiry-details-content .tf-single-enquiry-details-name .tf-single-enquiry-details-value, .tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-enquiry-details .tf-single-enquiry-details-content .tf-single-enquiry-details-email .tf-single-enquiry-details-value, .tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-enquiry-details .tf-single-enquiry-details-content .tf-single-enquiry-details-message .tf-single-enquiry-details-value {
  font-family: inherit;
  font-size: 0.938rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-enquiry-details .tf-single-enquiry-details-content .tf-single-enquiry-details-name .tf-single-enquiry-details-value i, .tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-enquiry-details .tf-single-enquiry-details-content .tf-single-enquiry-details-email .tf-single-enquiry-details-value i, .tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-enquiry-details .tf-single-enquiry-details-content .tf-single-enquiry-details-message .tf-single-enquiry-details-value i {
  margin-left: 16px;
  cursor: pointer;
  font-size: 1rem;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-enquiry-details .tf-single-enquiry-details-content .tf-single-enquiry-reply-another-mail-button {
  padding: 8px 20px;
  background-color: #003c79;
  border-color: #003c79;
  border-radius: 8px;
  align-self: self-end;
  color: #ffffff;
  font-size: 0.938rem;
  cursor: pointer;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-enquiry-details .tf-single-enquiry-details-content .tf-single-enquiry-reply-another-mail-button:hover {
  background-color: #001f3e;
  border-color: #001f3e;
  color: #ffffff;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-enquiry-details .tf-single-enquiry-details-content .tf-single-enquiry-reply-another-mail-button span {
  font-family: inherit;
  font-style: normal;
  font-weight: 600;
  line-height: 1.6;
  margin-right: 8px;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-enquiry-details .tf-single-enquiry-details-content .tf-single-enquiry-reply-another-mail-button i {
  font-size: 1rem;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-single-enquiry-reply-mail-button {
  padding: 8px 20px;
  background-color: #003c79;
  border-color: #003c79;
  border-radius: 8px;
  align-self: self-end;
  color: #ffffff;
  font-size: 0.938rem;
  cursor: pointer;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-single-enquiry-reply-mail-button:hover {
  background-color: #001f3e;
  border-color: #001f3e;
  color: #ffffff;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-single-enquiry-reply-mail-button span {
  font-family: inherit;
  font-style: normal;
  font-weight: 600;
  line-height: 1.6;
  margin-right: 8px;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-single-enquiry-reply-mail-button i {
  font-size: 1rem;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-single-enquiry-reply-wrapper .tf-enquiry-details-single-heading .tf-single-enquiry-reply-mail {
  color: #2C273F;
  font-family: inherit;
  font-size: 1.063rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-single-enquiry-reply-wrapper .tf-single-enquiry-accordion {
  margin-top: 24px;
  padding-left: 24px;
  padding-right: 24px;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-single-enquiry-reply-wrapper .tf-single-enquiry-accordion .tf-single-enquiry-accordion-item .tf-single-enquiry-accordion-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-single-enquiry-reply-wrapper .tf-single-enquiry-accordion .tf-single-enquiry-accordion-item .tf-single-enquiry-accordion-head .tf-single-enquiry-accordion-head-left {
  font-family: inherit;
  font-size: 0.938rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.6;
  color: #2C273F;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-single-enquiry-reply-wrapper .tf-single-enquiry-accordion .tf-single-enquiry-accordion-item .tf-single-enquiry-accordion-head .tf-single-enquiry-accordion-head-left i {
  margin-right: 8px;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-single-enquiry-reply-wrapper .tf-single-enquiry-accordion .tf-single-enquiry-accordion-item .tf-single-enquiry-accordion-head .tf-single-enquiry-accordion-head-left .tf-enquiry-response-user {
  display: inline-block;
  transform: scale(-1, -1);
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-single-enquiry-reply-wrapper .tf-single-enquiry-accordion .tf-single-enquiry-accordion-item .tf-single-enquiry-accordion-head .tf-single-enquiry-accordion-head-left .tf-single-accordion-dash {
  margin-left: 16px;
  margin-right: 16px;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-single-enquiry-reply-wrapper .tf-single-enquiry-accordion .tf-single-enquiry-accordion-item .tf-single-enquiry-accordion-head .tf-single-enquiry-accordion-head-left .tf-single-accordion-subject {
  color: #5D5676;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-single-enquiry-reply-wrapper .tf-single-enquiry-accordion .tf-single-enquiry-accordion-item .tf-single-enquiry-accordion-head .tf-single-enquiry-accordion-head-right {
  color: #9089A9;
  font-family: inherit;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-single-enquiry-reply-wrapper .tf-single-enquiry-accordion .tf-single-enquiry-accordion-item .tf-single-accordion-body {
  margin-top: 16px;
  color: #5D5676;
  font-family: inherit;
  font-size: 0.938rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  display: none;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-left .tf-single-enquiry-reply-wrapper .tf-single-enquiry-accordion hr {
  margin-top: 24px;
  margin-bottom: 24px;
  border-color: #F0EEF6;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-left #tf-single-enquiry-reply-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-left #tf-single-enquiry-reply-form textarea {
  height: 100px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #E2DFED;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-left #tf-single-enquiry-reply-form textarea::placeholder {
  color: #77708F;
  font-family: inherit;
  font-size: 0.938rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-left #tf-single-enquiry-reply-form .tf-enquiry-reply-button {
  align-self: flex-end;
  padding: 8px 20px;
  background-color: #003c79;
  border-color: #003c79;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.938rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-color: transparent;
  border-radius: 8px;
  cursor: pointer;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-left #tf-single-enquiry-reply-form .tf-enquiry-reply-button:hover {
  background-color: #001f3e;
  border-color: #001f3e;
  color: #ffffff;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-right {
  width: 40%;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-right .tf-enquiry-single-log-details {
  background-color: #ffffff;
  padding: 16px 0px 24px 0px;
  border-radius: 8px;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-right .tf-enquiry-single-log-details .tf-singe-enquiry-log-details-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  padding-right: 24px;
  padding-left: 24px;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-right .tf-enquiry-single-log-details .tf-singe-enquiry-log-details-heading h2 {
  font-family: inherit;
  font-size: 1.063rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin: 0px;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-right .tf-enquiry-single-log-details .tf-singe-enquiry-log-details-heading .enquiry-details-status {
  padding: 4px 12px;
  background-color: #D0F5E1;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #21A159;
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  line-height: 1.45;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-right .tf-enquiry-single-log-details .tf-single-enquiry-log-details-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 24px;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-right .tf-enquiry-single-log-details .tf-single-enquiry-log-details-content .tf-single-enquiry-log-details-single {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--UI-800, #2C273F);
  font-family: inherit;
  font-size: 0.938rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}
.tf-enquiry-single-details-wrapper .tf-single-enquiry-right .tf-enquiry-single-log-details .tf-single-enquiry-log-details-content .tf-single-enquiry-log-details-single i {
  margin-left: 8px;
  cursor: pointer;
  font-size: 1rem;
}

.tf-enquiry-details-wrap .tf-booking-header-filter .tf-right-search-filter, .tf-enquiry-details-wrap .tf-booking-header-filter .tf-enquiry-right-search-filter {
  width: 24%;
  flex-direction: row-reverse;
}

.tf-enquiry-details-wrap .tf-booking-header-filter .tf-right-search-filter button, .tf-enquiry-details-wrap .tf-booking-header-filter .tf-enquiry-right-search-filter button {
  padding: 0px;
}

.tf-enquiry-details-wrap p:first-child {
  margin-top: 0px;
}

.tf-enquiry-details-wrap .tf-single-accordion-body p:last-child {
  margin-bottom: 0px;
}

#tf-enquiry-reply-editor_ifr, #tf-enquiry-reply-editor {
  height: 200px !important;
}

@media only screen and (max-width: 1024px) {
  .tf-enquiry-details-wrap .tf-booking-header-filter .tf-bulk-action-form {
    width: 100%;
    gap: 12px;
  }
  .tf-enquiry-details-wrap .tf-booking-header-filter .tf-right-search-filter {
    width: 200px;
  }
}

/*# sourceMappingURL=tourfic-admin.css.map*/