:root {
    --primary-color: #147DFE;
    --primary-color-rgb: 20, 125, 254;
    --black-color: #000000;
    --black-color-rgb: 0, 0, 0;
    /*--primary-font: 'Poppins', sans-serif;*/
  }

  .wpte-bf-outer *,
  .wpte-bf-outer *:before,
  .wpte-bf-outer *:after {
    box-sizing: border-box;
  }

  .wpte-bf-outer,
  .wpte-bf-outer input,
  .wpte-bf-outer textarea,
  .wpte-bf-outer select,
  .wpte-bf-outer button {
    /*font-family: var(--primary-font);*/
    font-weight: 400;
  }

  .wpte-bf-outer img {
    vertical-align: top;
    max-width: 100%;
  }

  .wpte-bf-outer input[type="text"],
  .wpte-bf-outer input[type="email"],
  .wpte-bf-outer input[type="url"],
  .wpte-bf-outer input[type="password"],
  .wpte-bf-outer input[type="search"],
  .wpte-bf-outer input[type="number"],
  .wpte-bf-outer input[type="tel"],
  .wpte-bf-outer input[type="range"],
  .wpte-bf-outer input[type="date"],
  .wpte-bf-outer input[type="month"],
  .wpte-bf-outer input[type="week"],
  .wpte-bf-outer input[type="time"],
  .wpte-bf-outer input[type="datetime"],
  .wpte-bf-outer input[type="datetime-local"],
  .wpte-bf-outer input[type="color"],
  .wpte-bf-outer select {
    width: 100%;
    border-radius: 4px;
    border: 1px solid rgba(var(--black-color-rgb), 0.1);
    background: rgba(var(--black-color-rgb), 0.01);
    padding: 10px 15px;
    font-size: 16px;
    text-shadow: none;
    box-shadow: none;
  }

  .wpte-bf-outer input[type="text"]:focus,
  .wpte-bf-outer input[type="email"]:focus,
  .wpte-bf-outer input[type="url"]:focus,
  .wpte-bf-outer input[type="password"]:focus,
  .wpte-bf-outer input[type="search"]:focus,
  .wpte-bf-outer input[type="number"]:focus,
  .wpte-bf-outer input[type="tel"]:focus,
  .wpte-bf-outer input[type="range"]:focus,
  .wpte-bf-outer input[type="date"]:focus,
  .wpte-bf-outer input[type="month"]:focus,
  .wpte-bf-outer input[type="week"]:focus,
  .wpte-bf-outer input[type="time"]:focus,
  .wpte-bf-outer input[type="datetime"]:focus,
  .wpte-bf-outer input[type="datetime-local"]:focus,
  .wpte-bf-outer input[type="color"]:focus,
  .wpte-bf-outer textarea:focus,
  .wpte-bf-outer select:focus {
      outline: none;
  }

  .wpte-bf-outer select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml; utf-8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="rgba(0,0,0,0.5)" d="M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z"></path></svg>');
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) 50%;
    background-size: 14px;
    padding-right: 40px;
  }

  .wpte-bf-outer input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
  }

  .wpte-bf-checkbox .wpte-bf-checkbox-wrap {
    font-size: 14px;
    color: rgba(var(--black-color-rgb), 0.6);
    position: relative;
  }

  .wpte-bf-checkbox .wpte-bf-checkbox-wrap a {
    color: var(--primary-color);
    text-decoration: underline;
  }

  .wpte-bf-checkbox .wpte-bf-checkbox-wrap a:hover {
    text-decoration: none;
  }

  .wpte-bf-checkbox .wpte-bf-checkbox-wrap input[type="checkbox"] {
    position: absolute;
    top: 5px;
    left: 0;
    margin: 0;
    opacity: 0;
  }

  .wpte-bf-checkbox .wpte-bf-checkbox-wrap label {
    display: inline-block;
    position: relative;
    padding-left: 30px;
  }

  .wpte-bf-checkbox .wpte-bf-checkbox-wrap label::before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 3px;
    border: 2px solid rgba(var(--black-color-rgb), 0.4);
    position: absolute;
    top: 1px;
    left: 0;
    background-color: #fff;
    background-image: url('data:image/svg+xml; utf-8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23fff" d="M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"></path></svg>');
    background-size: 0;
    background-repeat: no-repeat;
    background-position: center;
    transition: all ease 0.35s;
  }

  .wpte-bf-checkbox .wpte-bf-checkbox-wrap input[type="checkbox"]:checked + label::before {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    background-size: 13px;
  }

  .parsley-errors-list {
    margin: 0;
    list-style: none;
    padding: 0;
}

.parsley-errors-list li {
    font-size: 14px;
    margin-top: 5px;
    color: #cc444d;
}

  .wpte-bf-outer .wpte-bf-field {
    margin-bottom: 30px;
  }

  .wpte-bf-outer .wpte-bf-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    color: rgba(var(--black-color-rgb), 0.6);
  }

  .required {
    color: #FF8B3D;
  }

  .wpte-bf-price-wrap {
    border: 1px solid rgba(var(--black-color-rgb), 0.06);
    background: rgba(var(--black-color-rgb), 0.01);
    padding: 8%;
  }

  .wpte-bf-price-wrap .wpte-bf-ptitle {
    font-size: 15px;
    line-height: 1.53;
    margin-bottom: 10px;
  }

  .wpte-bf-price-wrap .wpte-bf-price {
    border-bottom: 1px solid rgba(var(--black-color-rgb), 0.07);
    padding-bottom: 10px;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .wpte-bf-price-wrap .wpte-bf-price:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .wpte-bf-price-wrap .wpte-bf-price del {
    color: rgba(var(--black-color-rgb), 0.4);
    font-size: 17px;
    display: inline-block;
    padding-right: 10px;
  }

  .wpte-bf-price-wrap .wpte-bf-price ins {
      background: none;
    display: inline-block;
    font-size: 20px;
    text-decoration: none;
    letter-spacing: 0.5px;
    font-weight: 300;
  }

  .wpte-bf-price-wrap .wpte-bf-price ins b {
    font-weight: 600;
  }

  .wpte-bf-price-wrap .wpte-bf-price .wpte-bf-pqty {
    display: inline-block;
    padding-left: 10px;
    font-size: 15px;
  }

  .wpte-bf-toggle-wrap .wpte-bf-toggle-title {
    border-radius: 0;
    width: 100%;
    background: rgba(var(--primary-color-rgb), 0.15);
    border: none;
    min-height: 35px;
    padding: 5px 20px;
    cursor: pointer;
    text-shadow: none;
    color: var(--primary-color);
    font-size: 15px;
    letter-spacing: 0.5px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .wpte-bf-toggle-wrap .wpte-bf-toggle-title:hover {
    background: rgba(var(--primary-color-rgb), 0.2);
  }

  .wpte-bf-toggle-wrap .wpte-bf-toggle-title .fa-users {
      margin-right: 10px;
      width: 18px;
      height: 15px;
  }

  .wpte-bf-toggle-wrap .wpte-bf-toggle-title .fa-chevron-down {
    margin-left: 15px;
    width: 13px;
    height: 15px;
    transition: all ease 0.35s;
  }

  .wpte-bf-toggle-wrap.active .wpte-bf-toggle-title .fa-chevron-down {
    transform: rotate(180deg);
  }

  .wpte-bf-toggle-wrap .wpte-bf-toggle-content {
    display: none;
  }

  .wpte-bf-toggle-content table {
    width: 100%;
    margin: 10px 0 0 0;
    border-collapse: collapse;
  }

  .wpte-bf-toggle-content table thead tr {
    border-bottom: 1px solid rgba(var(--black-color-rgb), 0.35);
  }

  .wpte-bf-toggle-content table thead tr th {
      border: none;
    text-align: left;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
  }

  .wpte-bf-toggle-content table thead tr th:last-child {
    text-align: right;
  }

  .wpte-bf-toggle-content table tr td {
      border: none;
    padding: 12px 0;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-align: left;
    position: relative;
  }

  .wpte-bf-toggle-content table tr td:first-child {
    padding-right: 47px;
  }

  .wpte-bf-toggle-content table tr td:last-child {
    text-align: right;
    font-weight: 500;
    padding-left: 47px;
  }

  .wpte-bf-toggle-content table tr td:first-child::before {
    content: "";
    border-top: 1px dashed rgba(var(--black-color-rgb), 0.5);
    height: 1px;
    width: 94px;
    position: absolute;
    top: 0;
    left: calc(100% - 47px);
    bottom: 0;
    margin: auto;
    z-index: 9;
  }

  .wpte-bf-booking-steps {
    margin-top: 45px;
    box-shadow: 0 -1px 45px rgba(var(--black-color-rgb), 0.07);
  }

  .wpte-bf-booking-steps .wpte-bf-step-wrap {
    background: rgba(var(--black-color-rgb), 0.05);
    padding: 15px;
    font-size: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step {
    background: none;
    border: none;
    padding: 0;
    text-shadow: none;
    color: #333;
    font-size: 14px;
    vertical-align: middle;
    display: inline-block;
}

  .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step.active {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
  }

  .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step-arrow {
    padding: 0 5px;
    position: relative;
    top: 2px;
  }

  .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step-arrow:last-child {
    display: none;
  }

  .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step-arrow svg {
    width: 10px;
    height: 13px;
  }

  .wpte-bf-step-content:first-child {
        padding-bottom: 30px;
    }

  .wpte-bf-step-content:not(.active) {
    display: none;
  }

  .wpte-bf-datepicker {
    padding: 25px;
  }

  .wpte-bf-datepicker .ui-datepicker-inline {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.07);
    padding: 0;
    background: #fff;
    border-radius: 0;
  }

  .wpte-bf-datepicker .ui-widget {
    /*font-family: var(--primary-font);*/
    max-width: 100%;
  }

  .wpte-bf-datepicker .ui-datepicker-inline .ui-widget-header {
    background: none;
    border: none;
    border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.07);
    border-radius: 0;
    font-weight: 400;
    font-size: 17px;
    padding-top: 0;
    padding-bottom: 10px;
  }

  .wpte-bf-datepicker .ui-datepicker-inline .ui-datepicker-title {
    line-height: 1.18;
    font-size: 17px !important;
  }

  .wpte-bf-datepicker .ui-datepicker-inline .ui-widget-header a[class*="ui-datepicker-"] {
    top: auto;
    bottom: 5px;
    border: none;
    background-color: transparent;
    background-image: url('data:image/svg+xml; utf-8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M152.485 396.284l19.626-19.626c4.753-4.753 4.675-12.484-.173-17.14L91.22 282H436c6.627 0 12-5.373 12-12v-28c0-6.627-5.373-12-12-12H91.22l80.717-77.518c4.849-4.656 4.927-12.387.173-17.14l-19.626-19.626c-4.686-4.686-12.284-4.686-16.971 0L3.716 247.515c-4.686 4.686-4.686 12.284 0 16.971l131.799 131.799c4.686 4.685 12.284 4.685 16.97-.001z"></path></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    opacity: 0.3;
    filter: alpha(opacity=30);
    cursor: pointer;
    height: 1.8em !important;
  }

  .wpte-bf-datepicker .ui-datepicker-inline .ui-widget-header a.ui-datepicker-prev-hover,
  .wpte-bf-datepicker .ui-datepicker-inline .ui-widget-header a.ui-datepicker-next-hover {
    top: auto;
    bottom: 5px;
    opacity: 1;
    filter: alpha(opacity=100);
  }

  .wpte-bf-datepicker .ui-datepicker .ui-datepicker-prev-hover {
    left: 2px;
  }

  .wpte-bf-datepicker .ui-datepicker-inline .ui-widget-header a.ui-datepicker-next {
    background-image: url('data:image/svg+xml; utf-8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M295.515 115.716l-19.626 19.626c-4.753 4.753-4.675 12.484.173 17.14L356.78 230H12c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h344.78l-80.717 77.518c-4.849 4.656-4.927 12.387-.173 17.14l19.626 19.626c4.686 4.686 12.284 4.686 16.971 0l131.799-131.799c4.686-4.686 4.686-12.284 0-16.971L312.485 115.716c-4.686-4.686-12.284-4.686-16.97 0z"></path></svg>');
  }

  .wpte-bf-datepicker .ui-datepicker .ui-datepicker-next-hover {
    right: 2px;
  }

  .wpte-bf-datepicker .ui-datepicker-inline .ui-widget-header a[class*="ui-datepicker-"] span {
        display: none;
    }

    .wpte-bf-step-content .ui-datepicker table {
        font-size: 16px !important;
    }

  .wpte-bf-datepicker .ui-datepicker th {
    padding: 10px 0;
    border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.07);
    font-size: 15px;
    font-weight: 500;
    color: var(--black-color);
  }

  .wpte-bf-step-content .ui-datepicker td span,
  .wpte-bf-step-content .ui-datepicker td a {
    padding: 10px 0;
    text-align: center;
    border-radius: 4px;
}

  .wpte-bf-datepicker .ui-datepicker td a.ui-state-default {
    background: none;
    border: none;
    text-align: center;
    font-size: 15px;
    color: var(--black-color);
    font-weight: 400;
    padding: 7px 0;
  }

  .wpte-bf-datepicker .ui-datepicker td a.ui-state-default:hover {
      background: var(--black-color);
      color: #fff;

  }

  .wpte-bf-step-content .ui-state-default,
  .wpte-bf-step-content .ui-widget-content .ui-state-default,
  .wpte-bf-step-content .ui-widget-header .ui-state-default,
  .wpte-bf-step-content .ui-button,
  html .wpte-bf-step-content .ui-button.ui-state-disabled:hover,
  html .wpte-bf-step-content .ui-button.ui-state-disabled:active {
    border: none;
    text-align: center;
    background: none;
}

  .wpte-bf-step-content .wpte-bf-block-title {
    padding: 30px 25px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(var(--black-color-rgb), 0.8);
  }

  .wpte-bf-step-content .wpte-bf-traveler-member {
    padding: 0 25px;
  }

  .wpte-bf-step-content .wpte-bf-traveler-member .wpte-bf-traveler-block,
  .wpte-bf-step-content .wpte-bf-traveler-member .wpte-bf-es-block {
    border-bottom: 1px solid rgba(var(--black-color-rgb), 0.05);
    margin-bottom: 25px;
    padding-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .wpte-bf-step-content .wpte-bf-traveler-block .wpte-bf-traveler,
  .wpte-bf-step-content .wpte-bf-es-block .wpte-bf-traveler {
    display: flex;
    flex: initial;
    align-items: center;
    position: relative;
    padding-right: 20px;
  }

  .wpte-bf-step-content .wpte-bf-number-field {
    width: 82px;
    height: 35px;
    border-radius: 50px;
    border: 1px solid rgba(var(--black-color-rgb), 0.3);
    overflow: hidden;
    display: flex;
    flex: initial;
  }

  .wpte-bf-step-content .wpte-bf-number-field input[type="text"] {
    width: calc(100% - 54px);
    padding: 0;
    border: none;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
    text-align: center;
    font-weight: 500;
    color: var(--black-color);
    font-size: 18px;
    height: auto;
    border-radius: 0;
    background: #fff;
  }

  .wpte-bf-step-content .wpte-bf-number-field button {
    color: #333;
    width: 27px;
    height: 100%;
    background: rgba(var(--black-color-rgb), 0.1);
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .wpte-bf-step-content .wpte-bf-number-field button.wpte-bf-minus {
    order: -1;
  }

  .wpte-bf-step-content .wpte-bf-number-field button:hover {
    color: var(--primary-color);
  }

  .wpte-bf-step-content .wpte-bf-number-field button svg {
    width: 12px;
    height: 16px;
  }

  .wpte-bf-step-content .wpte-bf-number-field + span {
    display: inline-block;
    padding-left: 10px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    width: calc(100% - 82px);
  }

  .wpte-bf-step-content .wpte-bf-price {
    font-size: 18px;
    letter-spacing: 0.5px;
  }

  .wpte-bf-step-content .wpte-bf-traveler-block .wpte-bf-price,
  .wpte-bf-step-content .wpte-bf-es-block .wpte-bf-price {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: flex-end;
  }

  .wpte-bf-step-content .wpte-bf-price ins {
    background: none;
    text-decoration: none;
    font-weight: 300;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .wpte-bf-step-content .wpte-bf-price ins b {
    font-weight: 600;
    padding-left: 5px;
  }

  .wpte-bf-step-content .wpte-bf-price .wpte-bf-pqty {
    display: block;
    font-size: 13px;
    text-align: right;
    color: rgba(var(--black-color-rgb), 0.5);
    letter-spacing: 0;
  }

  .wpte-bf-step-content-wrap .wpte-bf-total-price {
    margin-bottom: 30px;
    text-align: center;
    font-size: 30px;
  }

  .wpte-bf-step-content-wrap .wpte-bf-total-price > span {
    display: inline-block;
    vertical-align: middle;
    letter-spacing: 0.5px;
  }

  .wpte-bf-step-content-wrap .wpte-bf-total-price .wpte-bf-total-txt {
    margin-right: 5px;
    font-weight: 200;
  }

  .wpte-bf-step-content-wrap .wpte-bf-total-price .wpte-bf-currency {
    font-weight: 300;
  }

  .wpte-bf-step-content-wrap .wpte-bf-total-price .wpte-bf-price-amt {
    font-weight: 600;
  }

  .wpte-bf-step-content-wrap .wpte-bf-toggle-wrap .wpte-bf-toggle-content {
    margin-top: 30px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .wpte-bf-step-content-wrap .wpte-bf-toggle-wrap .wpte-bf-toggle-content table {
    margin-top: 0;
  }

  .wpte-bf-step-content-wrap .wpte-bf-toggle-wrap .wpte-bf-toggle-content table + table {
    margin-top: 15px;
  }

  .wpte-bf-step-content-wrap .wpte-bf-toggle-wrap table caption {
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
  }

  .wpte-bf-step-content-wrap .wpte-bf-toggle-content table tr td {
    padding-right: 0;
    padding-left: 0;
  }

  .wpte-bf-step-content-wrap .wpte-bf-toggle-content table tr td:first-child::before {
    display: none;
  }

  .wpte-bf-step-content-wrap .wpte-bf-toggle-content table tr td .wpte-bf-info {
    font-size: 12px;
    color: rgba(var(--black-color-rgb), 0.6);
  }

  .wpte-bf-step-content-wrap .wpte-bf-toggle-content .wpte-bf-total {
    border-top: 1px solid rgba(var(--black-color-rgb), 0.1);
    font-weight: 400;
    text-align: right;
    padding-top: 10px;
  }

  .wpte-bf-step-content-wrap .wpte-bf-toggle-content .wpte-bf-total b {
    font-weight: 600;
    font-size: 16px;
    margin-left: 10px;
  }

  .wpte-bf-step-content-wrap .wpte-bf-btn-wrap {
    padding: 25px 25px 30px 25px;
  }

  .wpte-bf-step-content-wrap .wpte-bf-btn-wrap input.wpte-bf-btn,
  .wpte-bf-submit input[type="submit"] {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    width: 100%;
    border-radius: 3px;
    font-size: 18px;
    cursor: pointer;
  }

  .wpte-bf-submit input[type="submit"] {
    font-size: 20px;
  }

  .wpte-bf-step-content-wrap .wpte-bf-btn-wrap input.wpte-bf-btn:hover,
  .wpte-bf-submit input[type="submit"]:hover {
    background: none;
    color: var(--primary-color);
  }

  .wpte-bf-info-wrap {
    position: absolute;
    top: 0;
    padding-left: 8px;
    right: 5px;
  }

  .wpte-bf-info-wrap .wpte-bf-info-icon {
    color: var(--black-color);
    background: rgba(var(--black-color-rgb), 0.07);
    width: 18px;
    height: 18px;
    display: flex;
    border-radius: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: help;
  }

  .wpte-bf-info-wrap .wpte-bf-info-icon svg {
    width: 10px;
    height: 10px;
  }

  .wpte-bf-info-wrap .wpte-bf-info-txt {
    position: absolute;
    bottom: calc(100% + 15px);
    right: 0;
    background: var(--black-color);
    color: #fff;
    font-size: 12px;
    padding: 10px;
    line-height: 1.5;
    width: 180px;
    border-radius: 3px;
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.35s;
    transform: translateX(50%);
  }

  .wpte-bf-info-wrap .wpte-bf-info-icon:hover + .wpte-bf-info-txt {
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible;
  }

  .wpte-bf-info-wrap .wpte-bf-info-txt::after {
    content: "";
    border-top: 4px solid var(--black-color);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    width: 0;
    height: 0;
    margin: auto;
    transform: translateX(-100%);
  }

  .wpte-bf-help-block {
    background: rgba(var(--black-color-rgb), 0.05);
    padding: 7px 12px;
    font-size: 14px;
    text-align: center;
  }

  .wpte-bf-help-block a {
    color: var(--primary-color);
    text-decoration: underline;
  }

  .wpte-bf-help-block a:hover {
    text-decoration: none;
  }

  /*==========================
  CHECKOUT PAGE
  ==========================*/
  .wpte-bf-checkout .wpte-bf-title {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
  }

  .wpte-bf-checkout .wpte-bf-booking-steps {
    margin-top: 0;
    box-shadow: none;
  }

  .wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap {
    background: none;
    padding: 0;
    text-align: left;
    font-size: 17px;
    margin-bottom: 60px;
    counter-reset: wpte-bf-count;
  }

  .wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step {
    position: relative;
    counter-increment: wpte-bf-count;
    color: rgba(var(--black-color-rgb), 0.3);
    padding-left: 40px;
    min-height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: default;
    margin-left: 80px;
    padding-right: 20px;
  }

  .wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step:first-child {
    margin-left: 0;
  }

  .wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step:last-child {
    padding-right: 0;
  }

  .wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step.active {
    font-weight: 500;
    color: var(--black-color);
  }

  .wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step::before {
    content: counter(wpte-bf-count);
    background: none;
    border: 3px solid rgba(var(--primary-color-rgb), 0.1);
    width: 30px;
    height: 30px;
    line-height: 23px;
    color: var(--primary-color);
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    border-radius: 100%;
    font-weight: 400;
  }

  .wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step.completed::before {
    content: "";
    background-color: rgba(var(--primary-color-rgb), 0.1);
    background-image: url('data:image/svg+xml; utf-8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23147dfe" d="M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"></path></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 13px;
    border-color: transparent;
  }

  .wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step.active::before {
    background: var(--primary-color);
    color: #fff;
  }

  .wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step::after {
    content: "";
    background: rgba(var(--primary-color-rgb), 0.3);
    width: 60px;
    height: 3px;
    border-radius: 50px;
    position: absolute;
    top: 50%;
    right: calc(100% + 20px);
    transform: translateY(-50%);
  }

  .wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step:first-child::after {
    display: none;
  }

  .wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step.active::after {
    background: var(--primary-color);
  }

  .wpte-bf-checkout .wpte-bf-step-content-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .wpte-bf-checkout .wpte-bf-checkout-form {
    width: 65%;
    padding-right: 5%;
  }

  .wpte-bf-checkout .wpte-bf-field.wpte-bf-radio {
    border-top: 1px solid rgba(var(--black-color-rgb), 0.05);
    padding-top: 30px;
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .wpte-bf-checkout .wpte-bf-field.wpte-bf-radio .wpte-bf-label {
    color: rgba(var(--black-color-rgb), 0.8);
    font-size: 19px;
    width: 100%;
    margin-bottom: 25px;
  }

  .wpte-bf-checkout .wpte-bf-radio .wpte-bf-radio-wrap {
    display: inline-block;
    margin-right: 3%;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(var(--black-color-rgb), 0.75);
    position: relative;
  }

  .wpte-bf-checkout .wpte-bf-radio .wpte-bf-radio-wrap:last-child {
    margin-right: 0;
  }

  .wpte-bf-checkout .wpte-bf-radio .wpte-bf-radio-wrap input[type="radio"] {
    position: absolute;
    top: 5px;
    left: 0;
    margin: 0;
    opacity: 0;
  }

  .wpte-bf-checkout .wpte-bf-radio .wpte-bf-radio-wrap label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
  }

  .wpte-bf-checkout .wpte-bf-radio .wpte-bf-radio-wrap label::before {
    content: "";
    width: 22px;
    height: 22px;
    border: 2px solid rgba(var(--black-color-rgb), 0.4);
    position: absolute;
    top: 50%;
    left: 0;
    border-radius: 100%;
    box-shadow: 0 0 0 20px #fff inset;
    background: transparent;
    transform: translateY(-50%);
    transition: all ease 0.35s;
  }

  .wpte-bf-checkout .wpte-bf-radio .wpte-bf-radio-wrap input[type="radio"]:checked + label::before {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px #fff inset;
  }

  .wpte-bf-checkout .wpte-bf-card-number {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    border-radius: 4px;
    border: 1px solid rgba(var(--black-color-rgb), 0.1);
    background: rgba(var(--black-color-rgb), 0.01);
    padding: 10px 15px;
    font-size: 16px;
    text-shadow: none;
    box-shadow: none;
    height: auto;
    min-height: 60px;
  }

  .wpte-bf-checkout .wpte-bf-card-number input[type="number"] {
    border: none;
    background: none;
    padding: 0 15px 0 0;
    width: auto;
    max-width: calc(100% - 140px);
    display: flex;
    flex: 1;
    height: auto;
    flex-direction: column;
  }

  .wpte-bf-checkout .wpte-bf-card-number input[type="number"] + img {
    max-width: 140px;
  }

  .wpte-bf-checkout .wpte-bf-half {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1%;
    margin-right: -1%;
    overflow: hidden;
  }

  .wpte-bf-checkout .wpte-bf-half .wpte-bf-label {
    width: 100%;
    margin-bottom: 0;
    margin-left: 1%;
    margin-right: 1%;
  }

  .wpte-bf-checkout .wpte-bf-half select {
    margin-top: 10px;
    margin-right: 1%;
    margin-left: 1%;
    width: 48%;
  }

  .wpte-bf-checkout .wpte-bf-password {
    max-width: 49%;
  }

  .wpte-bf-checkout .wpte-bf-password-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    border-radius: 4px;
    border: 1px solid rgba(var(--black-color-rgb), 0.1);
    background: rgba(var(--black-color-rgb), 0.01);
    padding: 10px 15px;
    font-size: 16px;
    text-shadow: none;
    box-shadow: none;
    height: auto;
    min-height: 60px;
  }

  .wpte-bf-checkout .wpte-bf-password-wrap input[type="password"],
  .wpte-bf-checkout .wpte-bf-password-wrap input[type="text"] {
    border: none;
    background: none;
    padding: 0 15px 0 0;
    width: calc(100% - 25px);
    height: auto;
  }

  .wpte-bf-checkout .wpte-bf-password-wrap .wpte-bf-vp {
    padding: 0;
    background: none;
    border: none;
    width: 25px;
    height: 25px;
    overflow: hidden;
    line-height: 25px;
    color: rgba(var(--black-color-rgb), 0.35);
    cursor: pointer;
    position: relative;
  }

  .wpte-bf-checkout .wpte-bf-password-wrap .wpte-bf-vp svg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }

  .wpte-bf-checkout .wpte-bf-password-wrap .wpte-bf-vp svg:last-child {
    display: none;
  }

  .wpte-bf-checkout .wpte-bf-password-wrap.type-changed .wpte-bf-vp svg:first-child {
    display: none;
  }

  .wpte-bf-checkout .wpte-bf-password-wrap.type-changed .wpte-bf-vp svg:last-child {
    display: block;
    color: rgba(var(--black-color-rgb), 0.7);
  }

  .wpte-bf-checkout .wpte-bf-book-summary {
    width: 35%;
    position: sticky;
    top: 50px;
  }

  .wpte-bf-checkout .wpte-bf-summary-wrap {
    padding: 10% 10% 0 10%;
    background: rgba(var(--black-color-rgb), 0.01);
    border: 1px solid rgba(var(--black-color-rgb), 0.05);
  }

  .wpte-bf-checkout .wpte-bf-summary-wrap .wpte-bf-title {
    font-size: 28px;
    font-weight: 300;
    color: rgba(var(--black-color-rgb), 0.8);
    margin-bottom: 20px;
  }

  .wpte-bf-checkout .wpte-bf-summary-wrap .wpte-bf-trip-name-wrap {
    border-bottom: 1px solid rgba(var(--black-color-rgb), 0.05);
    margin-bottom: 30px;
    padding-bottom: 20px;
  }

  .wpte-bf-checkout .wpte-bf-summary-wrap .wpte-bf-trip-name {
    font-size: 22px;
    font-weight: 500;
    color: rgba(var(--black-color-rgb), 0.9);
    line-height: 1.3;
    margin-bottom: 0;
  }

  .wpte-bf-checkout .wpte-bf-summary-wrap .wpte-bf-trip-date {
    font-size: 16px;
    letter-spacing: 0.5px;
  }

  .wpte-bf-checkout .wpte-bf-summary-wrap table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
  }

  .wpte-bf-checkout .wpte-bf-summary-wrap table.wpte-bf-extra-info-table {
    margin-top: 20px;
  }

  .wpte-bf-checkout .wpte-bf-summary-wrap table tr td {
    font-size: 18px;
    padding: 10px 0;
  }

  .wpte-bf-checkout .wpte-bf-summary-wrap table tr td {
    border: none;
    font-size: 18px;
    padding: 10px 0;
  }

  .wpte-bf-checkout .wpte-bf-summary-wrap table tr td:last-child {
    text-align: right;
  }

  .wpte-bf-checkout .wpte-bf-summary-wrap table tr td b {
    font-weight: 500;
  }

  .wpte-bf-checkout .wpte-bf-summary-wrap table tbody tr:last-child td {
    padding-bottom: 20px;
  }

  .wpte-bf-checkout .wpte-bf-summary-wrap table tfoot {
    border-top: 1px solid rgba(var(--black-color-rgb), 0.05);
    text-align: right;
  }

  .wpte-bf-checkout .wpte-bf-summary-wrap table tfoot tr td {
    padding-top: 20px;
  }

  .wpte-bf-checkout .wpte-bf-summary-wrap table tfoot tr td .wpte-bf-total-txt {
    font-weight: 500;
    font-size: 17px;
    display: inline-block;
    padding-right: 10px;
  }

  .wpte-bf-checkout .wpte-bf-summary-wrap table tfoot tr td .wpte-bf-currency {
    display: inline-block;
    font-size: 23px;
    letter-spacing: 0.5px;
  }

  .wpte-bf-checkout .wpte-bf-summary-wrap table tfoot tr td .wpte-bf-price-amt {
    font-weight: 500;
    font-size: 23px;
    letter-spacing: 0.5px;
  }

  .wpte-bf-checkout .wpte-bf-summary-total {
    text-align: right;
    background: rgba(var(--black-color-rgb), 0.75);
    color: #fff;
    padding: 2% 10%;
  }

  .wpte-bf-checkout .wpte-bf-step-content-wrap .wpte-bf-total-price {
        margin-bottom: 0;
        line-height: 1.3;
    }

  .wpte-bf-checkout .wpte-bf-summary-total .wpte-bf-total-txt {
    display: inline-block;
    padding-right: 20px;
    font-size: 17px;
    vertical-align: middle;
  }

  .wpte-bf-checkout .wpte-bf-summary-total .wpte-bf-currency {
    font-weight: 300;
    letter-spacing: 0.5px;
    font-size: 26px;
    display: inline-block;
    vertical-align: middle;
  }

  .wpte-bf-checkout .wpte-bf-summary-total .wpte-bf-price-amt {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-block;
    vertical-align: middle;
  }
  .wpte-bf-checkout .wpte-bf-summary-total .wpte-bf-total-price{
    color: #232323;
  }

  .relation-options-title, .personal-options-title {
    width: 100%;
    display: table;
    clear: both;
}
.wp-travel-engine-personal-details:nth-child(2n),
.wp-travel-engine-relation-details:nth-child(2n) {
    clear: both;
}

.wp-travel-engine-relation-details select,
.wp-travel-engine-personal-details select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: url('data:image/svg+xml; utf-8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="rgba(0,0,0,0.5)" d="M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z"></path></svg>');
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) 50%;
    background-size: 12px;
    padding-right: 30px;
}

#wp-travel-engine-order-form input[type="submit"] {
    display: table;
    clear: both;
    margin-left: 15px;
}
.wpte-bf-animate-toggle{
    position: relative;
}
.wpte-bf-animate-toggle .wpte-bf-toggle-content{
    position: absolute;
    z-index: 2;
    top: 100%;
    left: 0;
    width: 100%;
    background: #FFF;
    padding-bottom: 10px;
    box-shadow: 0px 0px 32px rgba(0,0,0,0.08);
}
.wpte-bf-step-content-wrap .wpte-bf-toggle-wrap.wpte-bf-animate-toggle .wpte-bf-toggle-content{
  margin-top: 0;
}
.wte-bf-price-detail .wpte-bf-animate-toggle .wpte-bf-toggle-content{
  bottom: 100%;
  top: auto;
}
.wpte-bf-animate-toggle .wpte-bf-toggle-content .wpte-bf-travellers-price-table{
  margin-top: 15px !important;
}
.wtebf-toggle-title-active:after{
  display: inline-block;
  content: "";
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FFFFFF' viewBox='0 0 320 512'%3E%3Cpath d='M193.94 256L296.5 153.44l21.15-21.15c3.12-3.12 3.12-8.19 0-11.31l-22.63-22.63c-3.12-3.12-8.19-3.12-11.31 0L160 222.06 36.29 98.34c-3.12-3.12-8.19-3.12-11.31 0L2.34 120.97c-3.12 3.12-3.12 8.19 0 11.31L126.06 256 2.34 379.71c-3.12 3.12-3.12 8.19 0 11.31l22.63 22.63c3.12 3.12 8.19 3.12 11.31 0L160 289.94 262.56 392.5l21.15 21.15c3.12 3.12 8.19 3.12 11.31 0l22.63-22.63c3.12-3.12 3.12-8.19 0-11.31L193.94 256z'/%3E%3C/svg%3E") center center no-repeat;
  height: 18px;
  width: 18px;
  margin-left: 15px;
  vertical-align: middle;
  margin-top: -3px;
}
.wpte-bf-step-content-wrap .wpte-bf-toggle-wrap.wpte-bf-animate-toggle .wpte-bf-toggle-content .wpte-bf-toggle-close{
  font-size: 0;
  height: 18px;
  width: 18px;
  background: none;
  border: none;
  padding: 0;
  position: absolute;
  top: 15px;
  right: 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.wpte-bf-step-content-wrap .wpte-bf-toggle-wrap.wpte-bf-animate-toggle .wpte-bf-toggle-content .wpte-bf-toggle-close:hover{
  background: none;
}
.wpte-bf-step-content-wrap .wpte-bf-toggle-wrap.wpte-bf-animate-toggle .wpte-bf-toggle-content .wpte-bf-toggle-close:after{
  display: inline-block;
  content: "";
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333333' viewBox='0 0 320 512'%3E%3Cpath d='M193.94 256L296.5 153.44l21.15-21.15c3.12-3.12 3.12-8.19 0-11.31l-22.63-22.63c-3.12-3.12-8.19-3.12-11.31 0L160 222.06 36.29 98.34c-3.12-3.12-8.19-3.12-11.31 0L2.34 120.97c-3.12 3.12-3.12 8.19 0 11.31L126.06 256 2.34 379.71c-3.12 3.12-3.12 8.19 0 11.31l22.63 22.63c3.12 3.12 8.19 3.12 11.31 0L160 289.94 262.56 392.5l21.15 21.15c3.12 3.12 8.19 3.12 11.31 0l22.63-22.63c3.12-3.12 3.12-8.19 0-11.31L193.94 256z'/%3E%3C/svg%3E") center center no-repeat;
  height: 18px;
  width: 18px;
  margin-left: 0;
  vertical-align: middle;
  margin-top: -3px;
}
  /*============================
  RESPONSIVE STYLESHEET
  ============================*/
  @media screen and (min-width: 1025px) and (max-width: 1366px) {
    .wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step {
      margin-left: 60px;
    }

    .wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step::after {
      width: 40px;
    }

    .wpte-bf-checkout .wpte-bf-summary-wrap {
      padding: 40px 20px 0 20px;
    }

    .wpte-bf-checkout .wpte-bf-summary-total {
      padding-left: 20px;
      padding-right: 20px;
    }
  }

  @media screen and (max-width: 1024px) {
    .wpte-bf-checkout .wpte-bf-step-content-wrap {
      flex-direction: column-reverse;
    }

    .wpte-bf-checkout .wpte-bf-checkout-form {
      width: 100%;
      padding-right: 0;
    }

    .wpte-bf-checkout .wpte-bf-book-summary {
      position: static;
      width: 100%;
      margin-bottom: 60px;
    }

    .wpte-bf-checkout .wpte-bf-summary-wrap {
      padding: 50px 60px 0 60px;
    }

    .wpte-bf-checkout .wpte-bf-summary-total {
      padding-left: 60px;
      padding-right: 60px;
    }

    .wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step {
      font-size: 14px;
      padding-left: 0;
      padding-right: 5px;
      padding-top: 30px;
      margin-left: 30px;
      min-height: 25px;
    }

    .wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step::before {
      right: 0;
      margin: 0 auto;
    }

    .wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step::after {
      width: 20px;
      right: calc(100% + 7px);
      top: 15px;
      transform: none;
    }
  }

  @media screen and (max-width: 640px) {
    .wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap {
      margin-bottom: 40px;
      font-size: 14px;
      align-items: flex-start;
    }

    .wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step {
      font-size: 0;
      padding-left: 0;
      padding-right: 5px;
      padding-top: 35px;
      margin-left: 35px;
      min-height: 22px;
      width: 27px;
    }

    .wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step.active {
      font-size: 14px;
      font-weight: 400;
    }

    .wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step::before {
      right: auto;
      margin: 0;
      font-size: 14px;
      font-weight: 500;
    }

    .wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step .wpte-bf-step-inner {
      width: 150px;
      text-align: center;
      transform: translateX(-40%);
    }

    .wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step:first-child .wpte-bf-step-inner {
      text-align: left;
      transform: none;
    }

    .wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step:last-child .wpte-bf-step-inner {
      text-align: right;
      transform: translateX(calc((-100%) + 25px));
    }

    .wpte-bf-checkout .wpte-bf-password {
      max-width: 100%;
    }
  }

  @media screen and (max-width: 480px) {
    .wpte-bf-booking-steps .wpte-bf-step-wrap {
      padding-left: 10px;
      padding-right: 10px;
    }

    .wpte-bf-step-content .wpte-bf-traveler-member .wpte-bf-traveler-block,
    .wpte-bf-step-content .wpte-bf-traveler-member .wpte-bf-es-block {
      flex-direction: column;
    }

    .wpte-bf-step-content .wpte-bf-traveler-block .wpte-bf-traveler,
    .wpte-bf-step-content .wpte-bf-es-block .wpte-bf-traveler {
      margin-bottom: 20px;
    }

    .wpte-bf-step-content .wpte-bf-traveler-block .wpte-bf-price,
    .wpte-bf-step-content .wpte-bf-es-block .wpte-bf-price {
      align-items: center;
    }

    .wpte-bf-info-wrap .wpte-bf-info-txt {
      right: -10px;
      transform: none;
    }

    .wpte-bf-info-wrap .wpte-bf-info-txt::after {
      left: auto;
      right: 8px;
    }

    .wpte-bf-step-content .wpte-bf-price,
    .wpte-bf-step-content .wpte-bf-price .wpte-bf-pqty {
      text-align: center;
    }

    .wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step {
      padding-top: 30px;
      margin-left: 30px;
    }

    .wpte-bf-checkout .wpte-bf-booking-steps .wpte-bf-step-wrap .wpte-bf-step::before {
      width: 22px;
      height: 22px;
      border-width: 2px;
      font-size: 13px;
      font-weight: 600;
      line-height: 18px;
      top: 5px;
    }

    .wpte-bf-checkout .wpte-bf-radio .wpte-bf-radio-wrap {
      margin-right: 20px;
    }

    .wpte-bf-checkout .wpte-bf-card-number {
      flex-direction: column;
      align-items: flex-start;
    }

    .wpte-bf-checkout .wpte-bf-card-number input[type="number"] {
      display: block;
      width: 100%;
      max-width: 100%;
      flex: initial;
      padding-right: 0;
    }

    .wpte-bf-checkout .wpte-bf-card-number img {
      margin-top: 15px;
    }

    .wpte-bf-checkout .wpte-bf-card-number input[type="number"] + img {
      max-width: 100%;
    }

    .wpte-bf-checkout .wpte-bf-half {
      margin-left: 0;
      margin-right: 0;
      flex-direction: column;
    }

    .wpte-bf-checkout .wpte-bf-half .wpte-bf-label {
      margin-left: 0;
      margin-right: 0;
    }

    .wpte-bf-checkout .wpte-bf-half select {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
    }

    .wpte-bf-checkout .wpte-bf-summary-wrap {
      padding: 40px 20px 0 20px;
    }

    .wpte-bf-checkout .wpte-bf-summary-total {
      padding-left: 25px;
      padding-right: 25px;
    }
  }

/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.wpte-trip-feat-img-gallery{
	position: relative;
}

.wpte-trip-feat-img-gallery .owl-prev{
	position: absolute;
	top: 50%;
	left: 40px;
	width: 60px;
	height: 60px;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	transform: translateY(-50%);
	z-index: 1;
	font-size: 0;
}

.wpte-trip-feat-img-gallery .owl-prev:before{
	content: '';
	opacity: 1;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 15px;
	height: 20px;
	background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 192 512'%3E%3Cpath d='M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z'/%3E%3C/svg%3E") center center no-repeat;
}

.wpte-trip-feat-img-gallery .owl-next{
	position: absolute;
	top: 50%;
	right: 40px;
	width: 60px;
	height: 60px;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	transform: translateY(-50%);
	z-index: 1;
	font-size: 0;
}

.wpte-trip-feat-img-gallery .owl-next:after{
	content: '';
	opacity: 1;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 15px;
	height: 20px;
	background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 192 512'%3E%3Cpath d='M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z'/%3E%3C/svg%3E") center center no-repeat;
}

.wte-video-gallery-slider {
    margin-bottom: 1.5em;
}

.wte-video-gallery-slider .owl-item .owl-video-wrapper {
    height: 0;
    padding-top: 56.25%;
}

.wte-video-gallery-slider .owl-item .owl-video-tn, 
.wte-video-gallery-slider .owl-item iframe {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}

.wte-video-gallery-slider .owl-nav button[class*="owl-"] {
    position: absolute;
    top: 50%;
    left: 0;
    width: 45px;
    height: 45px;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0;
    transform: translateY(-50%);
}

.wte-video-gallery-slider .owl-nav button.owl-next {
    left: auto;
    right: 0;
}

.wte-video-gallery-slider .owl-nav button[class*="owl-"]:hover {
	background: rgba(0,0,0,0.75);
}

.wte-video-gallery-slider .owl-nav [class*="owl-"] svg {
    width: 20px;
    height: 20px;
    margin: auto;
    color: #fff;
    opacity: 0.7;
    filter: alpha( opacity=70 );
}

.wte-video-gallery-slider .owl-nav button.owl-prev svg {
    position: relative;
    left: -2px;
}

.wte-video-gallery-slider .owl-nav [class*="owl-"]:hover svg {
	opacity: 1;
	filter: alpha( opacity=100 );
}

.wp-travel-engine-vid-gal-popup {
    display: block;
    margin-bottom: 1.5em;
}

.wp-travel-engine-vid-gal-popup .wte-trip-vidgal-popup-trigger {
    display: inline-block;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    line-height: 1.3;
    padding: 10px 20px 10px 50px;
    border-radius: 3px;
    position: relative;
    text-decoration: none;
}

.wp-travel-engine-vid-gal-popup .wte-trip-vidgal-popup-trigger:hover {
	background: rgba(0, 0, 0, 0.5);
}

.wp-travel-engine-vid-gal-popup .wte-trip-vidgal-popup-trigger::before {
    content: "";
    background-color: #fff;
    -webkit-mask-image: url('data:image/svg+xml; utf-8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm115.7 272l-176 101c-15.8 8.8-35.7-2.5-35.7-21V152c0-18.4 19.8-29.8 35.7-21l176 107c16.4 9.2 16.4 32.9 0 42z"></path></svg>');
    mask-image: url('data:image/svg+xml; utf-8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm115.7 272l-176 101c-15.8 8.8-35.7-2.5-35.7-21V152c0-18.4 19.8-29.8 35.7-21l176 107c16.4 9.2 16.4 32.9 0 42z"></path></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: cover;
    mask-size: cover;
    position: absolute;
    top: 10px;
    left: 20px;
    width: 20px;
    height: 20px;
}

.wte-video-gallery-slider.owl-carousel .owl-video-play-icon {
    background-image: url('data:image/svg+xml; utf-8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23fff" d="M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6zM48 453.5v-395c0-4.6 5.1-7.5 9.1-5.2l334.2 197.5c3.9 2.3 3.9 8 0 10.3L57.1 458.7c-4 2.3-9.1-.6-9.1-5.2z"></path></svg>');
    background-color: rgba(0,0,0,0.5);
    background-repeat: no-repeat;
    background-size: 45%;
    background-position: center;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    top: 0;
    left: 0;
    margin: auto;
    right: 0;
    bottom: 0;
}

@media only screen and (max-width: 767px){
	.wpte-trip-feat-img-gallery .owl-prev{
		width: 40px;
		height: 40px;
		left: 10px;
	}

	.wpte-trip-feat-img-gallery .owl-next{
		width: 40px;
		height: 40px;
		right: 10px;
	}
}

/* @import url(https://fonts.googleapis.com/css?family=Lato:300,400,900);
@import url(https://i.icomoon.io/public/c88de6d4a5/CartIcons/style.css); */
.cf:before, .cf:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}

li {
  list-style: none;
}

.cf:after {
  clear: both;
}

.cf {
  zoom: 1;
}
.wrap {
  width: 85%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 100px 0;
}

.btn {
  display: inline-block;
  font-size: .9em;
  padding: 12px 30px;
  background: #ffc21d;
  color: #232323;
  font-weight: 900;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  opacity: 1;
  transition: opacity .3s;
}
.btn:hover {
  opacity: 0.8;
}

.blue-link {
  color: #659BAF;
  cursor: pointer;
}
.blue-link:hover {
  color: #223840;
}

.cart-header {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
  position: relative;
}
.cart-header strong {
  font-size: 1.8em;
  position: relative;
  font-weight: 400;
  line-height: 1;
}
.cart-header .btn {
  position: absolute;
  bottom: 10px;
  right: 0;
}

.bonus-products {
  border: 1px solid #ccc;
  border-top: none;
  padding: 18px;
  background: rgba(0, 0, 0, 0.05);
}
.bonus-products strong {
  font-weight: 400;
  color: #888;
  font-size: .8em;
}
.bonus-products strong .bp-toggle {
  font-size: .7em;
  cursor: default;
}

.cart-table {
  padding: 10px 0 0;
  border-bottom: 1px solid #ccc;
}

.item {
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}
.item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.item .item-block {
  float: left;
}
.item .item-block.ib-info {
  width: 60%;
}
.item .item-block.ib-info img.product-img {
  float: left;
  display: block;
  width: 100px;
  margin-right: 15px;
}
.item .item-block.ib-info .ib-info-meta {
  float: left;
}
.item .item-block.ib-info span {
  display: block;
  margin-bottom: 3px;
}
.item .item-block.ib-info span.title {
  font-size: 1em;
}
.item .item-block.ib-info span.itemno {
  color: #888;
  font-size: .8em;
}
.item .item-block.ib-info span.styles {
  border-left: 3px solid rgba(0, 0, 0, 0.1);
  padding-left: 5px;
  font-size: .8em;
}
.item .item-block.ib-info span.styles strong {
  display: inline-block;
  min-width: 70px;
}
.item .item-block.ib-info span.styles .blue-link {
  font-size: .8em;
}
.item .item-block.ib-qty {
  width: 20%;
  text-align: right;
}
.item .item-block.ib-qty input {
  text-align: center;
  font-size: 16px;
  border-radius: 0;
  outline: none;
  border: 1px solid #ccc;
  width: 50px;
  height: 40px;
  vertical-align: middle;
  color: #555;
}
.item .item-block.ib-qty input:focus {
  border-color: #7BCDE8;
}
.item .item-block.ib-qty span.price {
  display: inline-block;
  color: #777;
}
.item .item-block.ib-qty span.price > span {
  margin: 0 5px;
}
.item .item-block.ib-total-price {
  width: 20%;
  text-align: right;
  padding-top: 6px;
  position: relative;
}
.item .item-block.ib-total-price span {
  color: #555;
}
.item .item-block.ib-total-price span.tp-price {
  font-size: 1.4em;
  font-weight: 900;
}
.item .item-block.ib-total-price span.tp-remove {
  font-size: 14px;
  margin-left: 10px;
  position: relative;
  top: -2px;
  cursor: pointer;
}
.item .item-block.ib-total-price span.tp-remove:hover {
  color: red;
}
.item .item-foot {
  padding: 0 0 10px 0;
  margin-top: 10px;
  font-size: .7em;
}
.item .item-foot i {
  position: relative;
  font-size: 12px;
}
.item .item-foot .if-message {
  float: left;
  width: 100%;
  margin-bottom: 10px;
  color: #777;
}
.item .item-foot .if-left {
  float: left;
  color: #ccc;
  font-size: 115%;
  text-transform: uppercase;
}
.item .item-foot .if-right {
  float: right;
  color: #ccc;
  padding-top: 2px;
  text-transform: uppercase;
}
.item .item-foot .if-status {
  font-weight: 900;
  color: #333;
}

.item .bundle-block {
  padding: 0 0 10px  50px;
  position: relative;
}
.item .bundle-block ul li {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 10px;
  padding-top: 5px;
}
.item .bundle-block ul li i.i-down-right-arrow {
  display: block;
  position: absolute;
  left: -30px;
  font-size: 12px;
  top: 50%;
  margin-top: -6px;
  color: #999;
}
.item .bundle-block ul li img {
  width: 100%;
  max-width: 48px;
  display: block;
  float: left;
  margin-right: 15px;
}
.item .bundle-block ul li span {
  display: block;
}
.item .bundle-block ul li span.bundle-title {
  font-size: .85em;
}
.item .bundle-block ul li span.bundle-itemno {
  color: #888;
  font-size: .7em;
}

.sub-table {
  margin: 20px 0 20px;
  position: relative;
}
.sub-table .copy-block {
  float: left;
  margin-top: 60px;
}
.sub-table .copy-block p {
  font-size: .7em;
  color: #666;
  max-width: 320px;
  line-height: 1.55;
  display: block;
}
.sub-table .copy-block p a:link, .sub-table .copy-block p a:visited {
  color: #666;
}
.sub-table .copy-block p a:hover, .sub-table .copy-block p a:focus {
  color: #333;
}
.sub-table .copy-block p.customer-care {
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #ccc;
}
.sub-table .summary-block {
  float: right;
}
.sub-table .summary-block .sb-promo {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
}
.sub-table .summary-block .sb-promo input {
  font-size: 16px;
  width: 220px;
  padding: 7px;
  margin-right: 5px;
  vertical-align: top;
  color: #777;
}
.sub-table .summary-block .sb-promo .btn {
  padding: 10px 8px;
  font-size: .8em;
}
.sub-table .summary-block ul li {
  margin-bottom: 10px;
  font-size: .9em;
  text-align: right;
}
.sub-table .summary-block ul li span {
  display: inline-block;
}
.sub-table .summary-block ul li span.sb-label {
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sub-table .summary-block ul li span.sb-value {
  font-size: 1.1em;
  width: 120px;
}
.sub-table .summary-block ul li.tax .tax-edit {
  color: #223840;
  font-size: .8em;
  font-weight: 900;
  text-transform: capitalize;
  cursor: pointer;
}
.sub-table .summary-block ul li.tax .tax-edit i {
  position: relative;
  top: 1px;
  left: -3px;
}
.sub-table .summary-block ul li.tax .tax-edit.te-open i:before {
  content: "\edc7";
}
.sub-table .summary-block ul li.tax-calculate {
  padding: 10px;
  margin-top: 10px;
  background: rgba(0, 0, 0, 0.05);
  display: none;
}
.sub-table .summary-block ul li.tax-calculate input {
  font-size: 16px;
  width: 148px;
  padding: 7px;
  margin-right: 5px;
  vertical-align: top;
  color: #777;
}
.sub-table .summary-block ul li.tax-calculate .btn {
  padding: 10px 8px;
  font-size: .8em;
}
.sub-table .summary-block ul li.grand-total {
  border-top: 1px solid #ccc;
  padding-top: 10px;
  margin-top: 10px;
  font-size: 1.2em;
  font-weight: 900;
}

.cart-footer {
  border-top: 1px solid #ccc;
  margin-top: 15px;
  padding-top: 15px;
}
.cart-footer .cont-shopping {
  float: left;
  font-size: .8em;
  padding-top: 10px;
  cursor: pointer;
}
.cart-footer .cont-shopping i {
  position: relative;
  top: 0px;
  margin-right: 6px;
  font-size: 75%;
}
.cart-footer .btn {
  float: right;
  width: 200px;
  text-align: center;
}

@media only screen and (max-width: 860px) {
  .item-main {
    position: relative;
  }

  .item .item-block.ib-info {
    width: 70%;
  }

  .item .item-block.ib-qty {
    width: 30%;
    text-align: right;
  }

  .item .item-block.ib-total-price {
    width: auto;
    text-align: right;
    padding-top: 0;
    position: absolute;
    top: 50px;
    right: 0;
  }

  .sub-table .copy-block {
    float: right;
    margin-top: 0;
    text-align: right;
    padding: 12px;
    background: rgba(0, 0, 0, 0.035);
  }

  .sub-table .summary-block {
    float: none;
    width: 100%;
    margin-top: 55px;
  }
  .sub-table .summary-block .sb-promo {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    max-width: 300px;
    text-align: right;
    border-bottom: none;
  }
}
@media only screen and (max-width: 630px) {
  .item .item-block.ib-info {
    float: left;
    width: 100%;
  }

  .item .item-block.ib-qty {
    float: left;
    width: auto;
    margin-top: 10px;
  }

  .item .item-block.ib-total-price {
    float: left;
    width: auto;
    position: relative;
    top: 13px;
    right: 0;
    border-left: 1px solid #ccc;
    padding-left: 15px;
    margin-left: 15px;
  }

  .item .bundle-block {
    display: none;
  }

  .item .item-block.ib-info img.product-img {
    width: 70px;
  }
}

/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/*

/*-----------------------------
custom css
-----------------------------*/
* {
    box-sizing: border-box;
}

.place-order-form-primary-wrapper {
    margin-bottom: 15px;
}

p:empty {
    display: none;
}

/*============================
 trip detail tab style
 =============================*/

#tabs-container {
    margin-top: 30px;
}

#tabs-container .tab-inner-wrapper:after {
    content: "";
    display: block;
    clear: both;
}

#tabs-container .tab-inner-wrapper .tab-anchor-wrapper {
    float: left;
    border: 1px solid #ccc;
    background: #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    margin-right: 6px;
    margin-bottom: 6px;
}

#tabs-container .tab-inner-wrapper .tab-anchor-wrapper .wte-tab-title {
    font-size: 1em;
    font-weight: normal;
    margin: 0;
}

#tabs-container .tab-inner-wrapper .tab-anchor-wrapper .wte-tab-title:before,
#tabs-container .tab-inner-wrapper .tab-anchor-wrapper .wte-tab-title:after {
    display: none;
}

#tabs-container .tab-inner-wrapper .tab-anchor-wrapper a {
    display: block;
    padding: 5px 10px;
    color: #636363;
    text-decoration: none;
}

#tabs-container .tab-inner-wrapper .tab-anchor-wrapper a:focus,
#tabs-container .tab-inner-wrapper .tab-anchor-wrapper a:hover {
    outline: none;
    text-decoration: none;
}

#tabs-container .tab-inner-wrapper .nav-tab-active {
    background: #fff;
    border-bottom: 1px solid #fff;
    position: relative;
    z-index: 5;
}

#tabs-container .tab-content {
    background: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    margin-top: -7px;
    position: relative;
    z-index: 1;
}

/*=================================
 secondary style
 ================================*/

.trip-content-area .widget-area .secondary-trip-info {
    margin: 0 0 30px;
}

.trip-content-area .widget-area .trip-price .price-holder {
    padding: 0;
    /*text-align: center;*/
    /*background: #e5e5e5;*/
    position: relative;
    border: 1px solid #e1e2e3;
    border-radius: 5px;
}

.trip-content-area .widget-area .trip-price .price-holder .top-price-holder {
    /*margin: 0 0 20px;*/
    padding: 30px 20px 20px;
    border-bottom: 1px solid #e1e2e3;
}

.trip-content-area
    .widget-area
    .trip-price
    .price-holder
    .top-price-holder
    .group-discount-notice {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 70%;
    padding: 10px 10px 10px 45px;
    text-align: center;
    line-height: 1.25em;
    background: #000;
    color: #fff;
    box-shadow: 0 0px 15px rgba(0, 0, 0, 0.5);
    /*border-radius: 0 5px 0 0;*/
}

.trip-content-area
    .widget-area
    .trip-price
    .price-holder
    .top-price-holder
    .group-discount-notice:before {
    position: absolute;
    top: 7px;
    left: 12px;
    width: 25px;
    height: 25px;
    content: "";
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 640 512'%3E%3Cpath d='M544 224c44.2 0 80-35.8 80-80s-35.8-80-80-80-80 35.8-80 80 35.8 80 80 80zm0-128c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48zM320 256c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm0-192c44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80 35.9-80 80-80zm244 192h-40c-15.2 0-29.3 4.8-41.1 12.9 9.4 6.4 17.9 13.9 25.4 22.4 4.9-2.1 10.2-3.3 15.7-3.3h40c24.2 0 44 21.5 44 48 0 8.8 7.2 16 16 16s16-7.2 16-16c0-44.1-34.1-80-76-80zM96 224c44.2 0 80-35.8 80-80s-35.8-80-80-80-80 35.8-80 80 35.8 80 80 80zm0-128c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48zm304.1 180c-33.4 0-41.7 12-80.1 12-38.4 0-46.7-12-80.1-12-36.3 0-71.6 16.2-92.3 46.9-12.4 18.4-19.6 40.5-19.6 64.3V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-44.8c0-23.8-7.2-45.9-19.6-64.3-20.7-30.7-56-46.9-92.3-46.9zM480 432c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16v-44.8c0-16.6 4.9-32.7 14.1-46.4 13.8-20.5 38.4-32.8 65.7-32.8 27.4 0 37.2 12 80.2 12s52.8-12 80.1-12c27.3 0 51.9 12.3 65.7 32.8 9.2 13.7 14.1 29.8 14.1 46.4V432zM157.1 268.9c-11.9-8.1-26-12.9-41.1-12.9H76c-41.9 0-76 35.9-76 80 0 8.8 7.2 16 16 16s16-7.2 16-16c0-26.5 19.8-48 44-48h40c5.5 0 10.8 1.2 15.7 3.3 7.5-8.5 16.1-16 25.4-22.4z'/%3E%3C/svg%3E")
        center center no-repeat;
}

.trip-content-area
    .widget-area
    .trip-price
    .price-holder
    .top-price-holder
    .price-from {
    font-size: 16px;
}

.trip-content-area .widget-area .trip-price .price-holder .prev-price strike {
    font-size: 18px;
}

.trip-content-area .widget-area .trip-price .price-holder .prev-price,
.trip-content-area .widget-area .trip-price .price-holder .price {
    display: block;
    margin: 0 0 3px;
}

.trip-content-area
    .widget-area
    .trip-price
    .price-holder
    .group-discount-check {
    padding: 10px 20px;
    border-bottom: 1px solid #e1e2e3;
    font-size: 16px;
}

.trip-content-area
    .widget-area
    .trip-price
    .price-holder
    .group-discount-check
    svg {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

.trip-content-area
    .widget-area
    .trip-price
    .price-holder
    form
    input[type="number"],
.trip-content-area .widget-area .trip-price .price-holder form .total-amt {
    margin: 0 0 20px;
}

.trip-content-area
    .widget-area
    .trip-price
    .price-holder
    form
    input[type="number"] {
    width: 100%;
}

.trip-content-area
    .widget-area
    .trip-price
    .price-holder
    form
    .check-availability,
.trip-content-area .widget-area .trip-price .price-holder form .book-submit {
    margin: 0;
    padding: 10px;
    font-size: 16px;
    line-height: 20px;
    border: 1px solid #000;
    background: #000;
    color: #fff;
    border-radius: 0 0 5px 5px;
    width: 100%;
    transition: linear 0.2s;
}

.trip-content-area
    .widget-area
    .trip-price
    .price-holder
    form
    .check-availability:hover,
.trip-content-area
    .widget-area
    .trip-price
    .price-holder
    form
    .check-availability:focus,
.trip-content-area
    .widget-area
    .trip-price
    .price-holder
    form
    .book-submit:hover,
.trip-content-area
    .widget-area
    .trip-price
    .price-holder
    form
    .book-submit:focus {
    background: #3baf84;
    border-color: #3baf84;
}

.trip-content-area
    .widget-area
    .trip-price
    .price-holder
    form
    .date-time-wrapper {
    margin: 0;
    padding: 10px 20px;
    border-bottom: 1px solid #e1e2e3;
    border-radius: 0;
}

.trip-content-area
    .widget-area
    .trip-price
    .price-holder
    form
    .date-time-wrapper
    input[type="text"] {
    border: 0;
    padding: 5px 10px;
    width: 100%;
}

.trip-content-area
    .widget-area
    .trip-price
    .price-holder
    form
    .travelers-number-input {
    padding: 10px 20px;
    border-bottom: 1px solid #e1e2e3;
}

.trip-content-area
    .widget-area
    .trip-price
    .price-holder
    form
    .travelers-number-input
    label {
    font-size: 16px;
}

.wpte-expand-extra-service {
    padding: 10px 20px;
    border-bottom: 1px solid #e1e2e3;
}

.trip-content-area
    .widget-area
    .trip-price
    .price-holder
    .wpte-expand-extra-service:after {
    top: 12px;
    right: 20px;
}

.wpte-expand-extra-service .scroll-down h5 {
    margin: 0;
}

.wpte-expand-extra-service .extra-service-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0 0;
}

.wpte-expand-extra-service .extra-service-wrap .extra-service-info-holder {
    flex-basis: 0;
    flex-grow: 1;
    padding-right: 10px;
    font-size: 16px;
}

.wpte-expand-extra-service .extra-service-wrap .input-holder {
    width: 100px;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #e1e2e3;
}

.wpte-expand-extra-service .extra-service-wrap .input-holder .less-no,
.wpte-expand-extra-service .extra-service-wrap .input-holder .more-no {
    width: 30px;
    /*height: 30px;*/
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wpte-expand-extra-service
    .extra-service-wrap
    .input-holder
    input[type="text"] {
    width: 38px;
    border: 1px solid #e1e2e3;
    text-align: center;
    padding: 0;
}

.trip-content-area .widget-area .trip-price form .discount-price-per-traveler,
.trip-content-area
    .widget-area
    .trip-price
    form
    .discount-price-per-child-traveler {
    padding: 10px 20px;
    font-size: 16px;
    border-bottom: 1px solid #e1e2e3;
}

.trip-content-area .widget-area .trip-price .price-holder form .total-amt {
    text-align: center;
    margin: 0;
    padding: 10px 20px;
}

.wp-travel-engine-billing-details,
.wp-travel-engine-relation-details-wrapper {
    margin-bottom: 30px;
}

.wp-travel-engine-billing-details-wrapper,
.wp-travel-engine-personal-details-inner-wrapper,
.wp-travel-engine-relation-details-inner-wrapper {
    margin: 0 -10px;
    overflow: hidden;
}

.wp-travel-engine-billing-details-field-wrap,
.wp-travel-engine-personal-details,
.wp-travel-engine-relation-details {
    width: 50%;
    float: left;
    padding: 0 10px;
    margin-bottom: 18px;
    min-height: 74px;
}

.relation-options-title,
.personal-options-title,
.personal-options-title {
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 17px;
    background: #eeeeee;
    padding: 10px 14px;
    border-radius: 2px;
}

.place-order-form-primary-wrapper input,
.place-order-form-primary-wrapper select {
    width: 100%;
    min-height: 34px;
    padding: 4px 10px !important;
    border: 1px solid #ccc;
    border-radius: 2px;
}

/*===============================
 billing details css
 ==============================*/

.place-order-form-secondary-wrapper {
    margin-bottom: 30px;
}

.place-order-form-secondary-wrapper .wp-travel-engine-order-left-column {
    float: left;
    margin-right: 15px;
    width: 25%;
}

.place-order-form-secondary-wrapper .wp-travel-engine-order-right-column,
.wp-travel-engine-order-form-wrapper {
    overflow: hidden;
}

.place-order-form-secondary-wrapper .trip-title {
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 20px;
}

.place-order-form-secondary-wrapper .trip-property {
    margin: 0;
    padding: 0;
}

.place-order-form-secondary-wrapper .trip-property li {
    list-style: none;
    font-size: 14px;
    line-height: 22px;
}

.place-order-form-secondary-wrapper .trip-property li span {
    display: inline-block;
    width: 30%;
    margin-right: 5px;
}

.wp-travel-engine-order-form-wrapper {
    overflow: hidden;
    background: none;
    padding: 30px 30px 15px;
    border: 1px solid #ccc;
    border-radius: 5px 5px 0 0;
}

.wp-travel-engine-order-form-wrapper .trip-title {
    margin-bottom: 12px !important;
}

.secondary-inner-wrapper {
    overflow: hidden;
    margin-bottom: 30px;
    background: #ccc;
    padding: 10px 0;
}

#primary .page .entry-content .secondary-inner-wrapper table,
#primary .page .entry-content .secondary-inner-wrapper table td {
    border: 0;
}

#primary .page .entry-content .secondary-inner-wrapper table th {
    background: none;
}

.secondary-inner-wrapper table {
    margin-bottom: 0;
}

.secondary-inner-wrapper .person-price-table {
    text-align: center;
}

.hidden-price {
    display: none;
}

.date-time-wrapper {
    position: relative;
    background: #fff;
    display: none;
    border-radius: 5px;
    margin-top: 10px;
}

.date-time-wrapper:after {
    position: absolute;
    top: 30px;
    right: 17px;
    content: "";
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%238d8d8d' viewBox='0 0 448 512'%3E%3Cpath d='M400 64h-48V8c0-4.4-3.6-8-8-8h-16c-4.4 0-8 3.6-8 8v56H128V8c0-4.4-3.6-8-8-8h-16c-4.4 0-8 3.6-8 8v56H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM138.7 480H48c-8.8 0-16-7.2-16-16v-58.7h106.7V480zm0-106.7H32v-74.7h106.7v74.7zM32 266.7V192h106.7v74.7H32zM277.3 480H170.7v-74.7h106.7V480zm0-106.7H170.7v-74.7h106.7v74.7zM170.7 266.7V192h106.7v74.7H170.7zM416 464c0 8.8-7.2 16-16 16h-90.7v-74.7H416V464zm0-90.7H309.3v-74.7H416v74.7zm0-106.6H309.3V192H416v74.7zm0-106.7H32v-48c0-8.8 7.2-16 16-16h352c8.8 0 16 7.2 16 16v48z'/%3E%3C/svg%3E")
        center center no-repeat;
    width: 15px;
    height: 20px;
}

.price-fixed {
    top: 0;
    position: fixed;
    z-index: 50;
    display: block;
    width: 328px !important;
}

.open.side-btn,
.close.side-btn {
    position: fixed;
    top: 74%;
    display: block;
    background: red;
    left: 70%;
}

#open-example1,
#close-example1 {
    display: none;
}

.trip-content-area .secondary-trip-info.side-trip-price {
    margin-top: 0;
}

.disabled {
    cursor: not-allowed;
    pointer-events: none;
}

.disabled:hover {
    cursor: not-allowed;
}

/*==============================================
 Datepicker css
 ==============================================*/

.ui-datepicker {
    max-width: 244px;
}

.ui-datepicker table {
    font-size: 12px !important;
    line-height: 15px;
    text-align: center;
}

.ui-datepicker .ui-datepicker-title {
    font-size: 12px !important;
    line-height: 15px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    height: 24px !important;
}

.wp-travel-engine-archive-outer-wrap:after {
    display: block;
    content: "";
    clear: both;
}

.archive .wp-travel-engine-archive-wrap {
    margin-bottom: 40px;
}

.wp-travel-engine-archive-outer-wrap .child-title {
    font-weight: 400;
    font-size: 1em;
}

.wp-travel-engine-archive-outer-wrap .child-title a {
    color: #212121;
}

.wp-travel-engine-archive-outer-wrap .child-title a:hover {
    text-decoration: none;
}

.wp-travel-engine-archive-outer-wrap .wp-travel-engine-archive-wrap {
    width: 33.3333%;
    padding: 0 15px;
}

.wp-travel-engine-archive-outer-wrap
    .wp-travel-engine-archive-wrap
    .img-holder {
    margin: 0 0 20px;
    position: relative;
}

.wp-travel-engine-archive-outer-wrap
    .wp-travel-engine-archive-wrap
    .img-holder
    img {
    vertical-align: top;
}

.wp-travel-engine-archive-outer-wrap
    .wp-travel-engine-archive-wrap
    .trip-post-thumbnail {
    display: block;
}

.wp-travel-engine-archive-outer-wrap
    .wp-travel-engine-archive-wrap
    .img-holder
    .price-holder {
    position: absolute;
    left: 0;
    bottom: 20px;
    background: #fff;
    padding: 5px 10px;
}

.wp-travel-engine-archive-outer-wrap
    .wp-travel-engine-archive-wrap
    .img-holder
    .group-discount {
    position: absolute;
    right: 0;
    top: 20px;
    background: #fff;
    padding: 5px 10px 5px 30px;
    cursor: pointer;
}

.wp-travel-engine-archive-outer-wrap
    .wp-travel-engine-archive-wrap
    .img-holder
    .group-discount:before {
    position: absolute;
    width: 15px;
    height: 20px;
    content: "";
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 512 512'%3E%3Cpath d='M256 40c118.621 0 216 96.075 216 216 0 119.291-96.61 216-216 216-119.244 0-216-96.562-216-216 0-119.203 96.602-216 216-216m0-32C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm-36 344h12V232h-12c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h48c6.627 0 12 5.373 12 12v140h12c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12h-72c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12zm36-240c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z'/%3E%3C/svg%3E")
        center center no-repeat;
    top: 50%;
    left: 6px;
    transform: translateY(-50%);
}

.wp-travel-engine-archive-outer-wrap
    .wp-travel-engine-archive-wrap
    .img-holder
    .group-discount
    .tooltip {
    position: absolute;
    top: 50%;
    left: -210px;
    width: 200px;
    background: #000;
    color: #fff;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 65%;
    opacity: 0;
    visibility: hidden;
    transform: translate(-10px, -50%);
    transition: ease 0.2s;
}

.wp-travel-engine-archive-outer-wrap
    .wp-travel-engine-archive-wrap
    .img-holder
    .group-discount:hover
    .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -50%);
}

.wp-travel-engine-archive-outer-wrap
    .wp-travel-engine-archive-wrap
    .img-holder
    .group-discount
    .tooltip:after {
    position: absolute;
    top: 50%;
    right: -5px;
    content: "";
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-left: 5px solid #000;
    border-bottom: 5px solid transparent;
    transform: translateY(-50%);
}

.wp-travel-engine-archive-wrap .title {
    font-size: 20px;
    line-height: 1.65em;
    font-weight: 700;
    margin: 0 0 1.65em;
}

.wp-travel-engine-archive-wrap .title a {
    color: #212121;
}

.wp-travel-engine-archive-wrap .title a:hover,
.wp-travel-engine-archive-wrap .title a:focus {
    text-decoration: underline;
}

.wp-travel-engine-archive-outer-wrap
    .wp-travel-engine-archive-wrap
    .text-holder
    .meta-info {
    margin: 0 0 10px;
}

.wp-travel-engine-archive-outer-wrap
    .wp-travel-engine-archive-wrap
    .text-holder
    .next-trip-info
    .fsd-title {
    margin: 0 0 10px;
}

.wp-travel-engine-archive-outer-wrap
    .wp-travel-engine-archive-wrap
    .text-holder
    .next-trip-info
    .next-departure-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.wp-travel-engine-archive-outer-wrap
    .wp-travel-engine-archive-wrap
    .text-holder
    .next-trip-info
    .next-departure-list
    li {
    margin: 0 0 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.wp-travel-engine-archive-outer-wrap
    .wp-travel-engine-archive-wrap
    .text-holder
    .next-trip-info
    .next-departure-list
    li
    svg {
    margin-right: 5px;
}

.wp-travel-engine-archive-wrap .trip_price,
.wp-travel-engine-archive-wrap .trip_duration {
    display: block;
    margin-bottom: 10px;
    color: #0d0d0d;
}

.wp-travel-engine-archive-wrap .trip_price strike span {
    color: #0d0d0d !important;
    font-size: 15px;
    line-height: 18px;
}

#wp-travel-engine-order-form input {
    padding: 12px 20px;
}

.place-order-form-primary-wrapper input,
.place-order-form-primary-wrapper select {
    padding: 12px 10px !important;
    border-radius: 3px;
    height: 50px;
}

.trip-content .related-posts {
    margin-top: 40px;
}

.trip-content .related-posts .post .entry-title {
    text-align: center;
    margin-top: -8px;
}

.trip-content .related-posts .post {
    margin-bottom: 30px;
}

.trip-content .related-posts .post .entry-meta {
    position: relative;
    top: -31px;
    color: #fff;
    display: inline-block;
    font-size: 15px;
    line-height: 18px;
}

.trip-content .related-posts .post .entry-meta span {
    background: #0c83b8;
    padding: 7px 14px;
}

.wp-travel-engine-relation-details input,
.wp-travel-engine-personal-details input {
    padding: 12px 10px;
    width: 100%;
    height: 53px;
}

.wp-travel-engine-relation-details select,
.wp-travel-engine-personal-details select {
    width: 100%;
    padding: 12px 10px;
}

.relation-options-title,
.personal-options-title,
.personal-options-title {
    padding: 20px 14px;
}

#wp-travel-engine-order-form input[type="submit"] {
    margin-top: 20px;
}

#wp-travel-engine-order-form label {
    display: inline-block;
    margin-bottom: 6px;
    margin-right: 5px;
}

#primary #wp-travel-engine-order-form {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 20px;
    width: 100%;
    height: auto;
    border: 0;
}

#primary #wp-travel-engine-order-form table tr {
    background: none;
}

/*====================================
 Booking details table
 ====================================*/

.entry-content .thank-you-container {
    margin-top: 30px;
}

#primary .entry-content .thank-you-container h3 {
    margin-bottom: 12px !important;
}

.entry-content .thank-you-container table tr:nth-child(2n + 1) {
    background: #f9f9f9;
}

.entry-content .thank-you-container table tr:first-child {
    border-bottom: 0;
}

.entry-content .thank-you-container table th {
    padding: 16px 30px;
    background: #f3f3f3;
    color: #212121;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
}

.entry-content .thank-you-container table td {
    padding: 16px 30px;
    text-align: center;
    font-size: 15px;
    line-height: 26px;
    color: #212121;
}

.trip-entry-content ul {
    margin: 0;
    padding: 0;
}

.trip-entry-content ul li {
    list-style: none;
}

#CDSWIDSSP {
    width: 100% !important;
}

.wp-travel-engine-archive-outer-wrap .child-title a:hover {
    color: #f7921f;
}

.payment-gateway-options {
    display: none;
}

.tab_container {
    display: none;
}

#price-loading {
    position: absolute;
    text-align: center;
    font-size: 50px;
    color: #000;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
}

#price-loading-outer {
    display: table-row;
}

#price-loading-inner {
    display: table-cell;
    vertical-align: middle;
}

#price-loading-wrap {
    display: table;
    width: 100%;
    height: 100%;
}

#price-loader {
    font-size: 100px;
    vertical-align: middle;
    text-align: center;
    position: absolute;
    top: 39%;
    background: #fff;
    opacity: 0.8;
    width: 100%;
    height: 100%;
}

.itinerary-row {
    list-style: none;
    border: 1px solid #ccc;
    background: #fff;
    margin: 5px;
    position: relative;
}

span.day-count {
    display: inline-block;
    position: absolute;
    left: 9%;
    top: 7px;
    color: #555;
}

.itinerary-content label {
    width: 115px;
    float: left;
    font-weight: 500;
    padding: 5px 0;
}

.faq-row {
    list-style: none;
    border: 1px solid #ccc;
    background: #fff;
    margin: 5px;
    position: relative;
}

span.faq-count {
    display: inline-block;
    position: absolute;
    left: 9%;
    top: 7px;
    color: #555;
}

.faq-content label {
    width: 115px;
    float: left;
    font-weight: 500;
    padding: 5px 0;
}

.faq-content {
    padding: 5px 5px 5px 15px;
}

.faq-title {
    width: 500px;
}

span.dashicons.custom-toggle-tabs.rotator {
    transform: rotateX(180deg);
}

/*==============================
 Trips fact style
 ===============================*/

.trip-facts-value {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.trip-facts-value li {
    display: flex;
    flex-direction: row;
    flex-basis: 0;
    flex-grow: 1;
    padding: 0 15px;
    margin: 0 0 20px;
    max-width: 100%;
    min-width: 230px;
}

.trip-facts-value li:after {
    content: "";
    display: block;
    clear: both;
}

.trip-facts-value li svg {
    align-items: flex-start;
    margin-right: 15px;
    font-size: 30px;
    max-width: 30px;
}

.trip-facts-value li .trip-facts-text {
    align-items: flex-start;
    flex: 1 0 0;
}

/*=======================================
 Itinerary style
 ========================================*/
.itinerary .title {
    float: left;
    margin-right: 15px;
}

.itinerary .itinerary-content {
    overflow: hidden;
}

.itinerary .itinerary-content .title {
    float: none;
    display: block;
    font-weight: 700;
    margin: 0 0 10px;
}

/*==================================
 Cost detail style
 ==================================*/
#include-result {
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

#include-result li {
    margin: 0 0 10px;
    padding-left: 20px;
    position: relative;
}

#include-result li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 15px;
    height: 20px;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2343a32d' viewBox='0 0 448 512'%3E%3Cpath d='M413.505 91.951L133.49 371.966l-98.995-98.995c-4.686-4.686-12.284-4.686-16.971 0L6.211 284.284c-4.686 4.686-4.686 12.284 0 16.971l118.794 118.794c4.686 4.686 12.284 4.686 16.971 0l299.813-299.813c4.686-4.686 4.686-12.284 0-16.971l-11.314-11.314c-4.686-4.686-12.284-4.686-16.97 0z'/%3E%3C/svg%3E")
        center center no-repeat;
}

#exclude-result {
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

#exclude-result li {
    margin: 0 0 10px;
    padding-left: 20px;
    position: relative;
}

#exclude-result li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 15px;
    height: 20px;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23d80808' viewBox='0 0 320 512'%3E%3Cpath d='M193.94 256L296.5 153.44l21.15-21.15c3.12-3.12 3.12-8.19 0-11.31l-22.63-22.63c-3.12-3.12-8.19-3.12-11.31 0L160 222.06 36.29 98.34c-3.12-3.12-8.19-3.12-11.31 0L2.34 120.97c-3.12 3.12-3.12 8.19 0 11.31L126.06 256 2.34 379.71c-3.12 3.12-3.12 8.19 0 11.31l22.63 22.63c3.12 3.12 8.19 3.12 11.31 0L160 289.94 262.56 392.5l21.15 21.15c3.12 3.12 8.19 3.12 11.31 0l22.63-22.63c3.12-3.12 3.12-8.19 0-11.31L193.94 256z'/%3E%3C/svg%3E")
        center center no-repeat;
}

/*==============================
 Faq style
 =============================*/
.faq .faq-row .accordion-tabs-toggle {
    display: block;
    border: 1px solid #ccc;
    position: relative;
    padding: 5px 30px;
    text-decoration: none;
}

.faq .faq-row .accordion-tabs-toggle .custom-toggle-tabs {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 20px;
    height: 20px;
    font-size: 0;
}

.faq .faq-row .accordion-tabs-toggle .custom-toggle-tabs:before {
    position: absolute;
    top: 3px;
    left: 11px;
    width: 2px;
    height: 12px;
    background: #000;
    content: "";
}

.faq .faq-row .accordion-tabs-toggle .custom-toggle-tabs.open:before {
    display: none;
}

.faq .faq-row .accordion-tabs-toggle .custom-toggle-tabs:after {
    position: absolute;
    top: 8px;
    left: 6px;
    height: 2px;
    width: 12px;
    background: #000;
    content: "";
}

.faq .faq-row .faq-content {
    padding: 5px 30px;
}

.faq .expand-all-faq {
    display: inline-block;
    margin: 0 0 15px;
    text-decoration: none;
}

.faq .expand-all-faq svg {
    font-size: 20px;
    margin-right: 10px;
}

/*================================
 Destination Page style
 ===============================*/
.page-template-template-destination .destination-holder {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-left: -15px;
    margin-right: -15px;
}

.page-template-template-destination .destination-holder .item {
    width: 25%;
    padding: 0 15px;
    margin: 0 0 30px;
}

.archive .trip-content-area .grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 50px;
}

.archive .trip-content-area .grid .col {
    width: 33.333%;
    padding: 0 15px;
    margin: 0 0 30px;
}

.archive .trip-content-area .grid .col .img-holder a {
    display: block;
}

.archive .trip-content-area .grid .col .group-discount {
    display: block;
}

.archive .trip-content-area .grid .col .review-wrap {
    background: none;
    padding: 0;
}

.archive .trip-content-area .grid .col .review-wrap .average-rating {
    border: 0;
}

.archive .trip-content-area .grid .col .next-trip-info .next-departure-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.review-wrap .average-rating .aggregate-rating .rating-star {
    display: none;
}

/*==================================================
 Activities and trip type page style
 ==================================================*/
.page-template-template-activities .activities-holder,
.page-template-template-trip_types .trip_types-holder {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.page-template-template-activities .activities-holder .item,
.page-template-template-trip_types .trip_types-holder .item {
    width: 25%;
    padding: 0 15px;
    margin: 0 0 30px;
}

.page-template-template-activities .activities-holder .item .img-holder,
.page-template-template-trip_types .trip_types-holder .item .img-holder {
    position: relative;
    overflow: hidden;
}

.page-template-template-activities .activities-holder .item .img-holder img,
.page-template-template-trip_types .trip_types-holder .item .img-holder img {
    vertical-align: top;
}

.page-template-template-activities
    .activities-holder
    .item
    .img-holder
    .title-holder,
.page-template-template-trip_types
    .trip_types-holder
    .item
    .img-holder
    .title-holder {
    font-size: 1.25em;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 50px 10px 10px 10px;
    margin: 0;
    color: #fff;
    transition: ease 0.2s;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+50,000000+100&0+0,0.1+50,0.4+100 */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.4) 100%
    ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#66000000',GradientType=0 ); /* IE6-9 */
}

.page-template-template-activities
    .activities-holder
    .item
    .img-holder:hover
    .title-holder,
.page-template-template-trip_types
    .trip_types-holder
    .item
    .img-holder:hover
    .title-holder,
.page-template-template-activities
    .activities-holder
    .item
    .img-holder:focus
    .title-holder,
.page-template-template-trip_types
    .trip_types-holder
    .item
    .img-holder:focus
    .title-holder,
.page-template-template-activities
    .activities-holder
    .item
    .img-holder:focus-within
    .title-holder,
.page-template-template-trip_types
    .trip_types-holder
    .item
    .img-holder:focus-within
    .title-holder {
    opacity: 0;
}

.page-template-template-activities
    .activities-holder
    .item
    .img-holder
    .text-holder,
.page-template-template-trip_types
    .trip_types-holder
    .item
    .img-holder
    .text-holder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px;
    opacity: 0;
    transition: ease 0.2s;
}

.page-template-template-activities
    .activities-holder
    .item
    .img-holder
    .text-holder
    .title,
.page-template-template-trip_types
    .trip_types-holder
    .item
    .img-holder
    .text-holder
    .title {
    font-size: 1.25em;
}

.page-template-template-activities
    .activities-holder
    .item
    .img-holder:hover
    .text-holder,
.page-template-template-trip_types
    .trip_types-holder
    .item
    .img-holder:hover
    .text-holder,
.page-template-template-activities
    .activities-holder
    .item
    .img-holder:focus
    .text-holder,
.page-template-template-trip_types
    .trip_types-holder
    .item
    .img-holder:focus
    .text-holder,
.page-template-template-activities
    .activities-holder
    .item
    .img-holder:focus-within
    .text-holder,
.page-template-template-trip_types
    .trip_types-holder
    .item
    .img-holder:focus-within
    .text-holder {
    opacity: 1;
}

.archive .trip-content-area .grid .btn-loadmore,
.archive .trip-content-area .grid .load-destination {
    text-align: center;
    width: 100%;
}

.archive .trip-content-area .grid .btn-loadmore span,
.archive .trip-content-area .grid .load-destination span {
    display: inline-block;
    font-size: 13px;
    line-height: 2em;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    background: #ffaf46;
    border: 2px solid #ffaf46;
    padding: 10px 40px;
    border-radius: 5px;
    cursor: pointer;
    transition: ease 0.2s;
}

.archive .trip-content-area .grid .btn-loadmore span:hover,
.archive .trip-content-area .grid .load-destination span:hover,
.archive .trip-content-area .grid .btn-loadmore span:focus,
.archive .trip-content-area .grid .load-destination span:focus {
    background: none;
    color: #ffaf46;
}

.payment-options-holder {
    margin-bottom: 20px;
}

select#wte_payment_options {
    margin-bottom: 30px;
}

#wp-travel-engine-order-form + .error {
    display: none;
    background-color: #f2dede;
    border: 1px solid #a94442;
    padding: 5px 10px;
    color: #a94442;
    border-radius: 5px;
}

.successful {
    display: none;
    color: #32b67a;
    background: #dcf5de;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #32b67a;
}

.place-order-form-primary-wrapper {
    position: relative;
}

#primary #wp-travel-engine-order-form {
    position: relative;
}
#price-loader {
    font-size: 100px;
    vertical-align: middle;
    text-align: center;
    position: absolute;
    top: 0;
    background: #fff;
    opacity: 0.8;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#price-loader table,
#price-loader table-row,
#price-loader table-cell {
    width: 100%;
    height: 100%;
    vertical-align: middle;
}

#price-loader .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*============================
 Single Trip
 ============================*/
.trip-content-area {
    max-width: 1320px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.row {
    margin: 0 -15px;
}

.row:after {
    display: block;
    clear: both;
    content: "";
}

.single-trip #primary {
    float: left;
    width: 72%;
    padding-left: 15px;
    padding-right: 65px;
    margin: 0;
}

.single-trip #secondary {
    float: left;
    width: 28%;
    padding: 0 15px;
}

/*==================================
 Single trip enquiry form
 ====================================*/
.single-trip #wte_enquiry_contact_form {
    background: #f6f6f6;
    border-radius: 5px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-left: -10px;
    margin-right: -10px;
}

.single-trip #wte_enquiry_contact_form .row-repeater {
    width: 50%;
    padding: 0 10px;
    margin: 0 0 20px;
}

.single-trip #wte_enquiry_contact_form h2,
.single-trip #wte_enquiry_contact_form .package-name-holder,
.single-trip #wte_enquiry_contact_form .msg-holder,
.single-trip #wte_enquiry_contact_form .confirm-holder,
.single-trip #wte_enquiry_contact_form .submit,
.single-trip #wte_enquiry_contact_form .confirm-msg {
    width: 100%;
    padding: 0 10px;
}

.single-trip #wte_enquiry_contact_form h2 {
    font-size: 22px;
    line-height: 1.272em;
    font-weight: 500;
    color: #111;
    margin: 0 0 0;
}

.single-trip #wte_enquiry_contact_form label {
    display: none;
}
.single-trip #wte_enquiry_contact_form .wpte-bf-radio-wrap:before,
.single-trip #wte_enquiry_contact_form .wpte-bf-radio-wrap:after {
    display: table;
    clear: both;
    content: "";
}
.single-trip #wte_enquiry_contact_form .wpte-bf-radio-wrap label {
    display: inline-block;
}
.single-trip #wte_enquiry_contact_form .wpte-bf-radio-wrap input[type="radio"] {
    float: left;
    margin-right: 10px;
}

.single-trip #wte_enquiry_contact_form input[type="text"],
.single-trip #wte_enquiry_contact_form input[type="email"],
.single-trip #wte_enquiry_contact_form input[type="url"],
.single-trip #wte_enquiry_contact_form input[type="password"],
.single-trip #wte_enquiry_contact_form input[type="search"],
.single-trip #wte_enquiry_contact_form input[type="number"],
.single-trip #wte_enquiry_contact_form input[type="tel"],
.single-trip #wte_enquiry_contact_form input[type="range"],
.single-trip #wte_enquiry_contact_form input[type="date"],
.single-trip #wte_enquiry_contact_form input[type="month"],
.single-trip #wte_enquiry_contact_form input[type="week"],
.single-trip #wte_enquiry_contact_form input[type="time"],
.single-trip #wte_enquiry_contact_form input[type="datetime"],
.single-trip #wte_enquiry_contact_form input[type="datetime-local"],
.single-trip #wte_enquiry_contact_form input[type="color"],
.single-trip #wte_enquiry_contact_form textarea,
.single-trip #wte_enquiry_contact_form select {
    width: 100%;
    border: 1px solid #eee;
}

.single-trip #wte_enquiry_contact_form select {
    height: 100%;
    padding: 0.7em;
}

.single-trip #wte_enquiry_contact_form .package-name-holder label,
.single-trip #wte_enquiry_contact_form .confirm-holder label {
    display: inline-block;
}

.single-trip #wte_enquiry_contact_form .confirm-holder label input {
    margin-right: 5px;
}

.single-trip #wte_enquiry_contact_form .package-name-holder .input {
    font-weight: 600;
    width: 70%;
    display: inline-block;
    vertical-align: middle;
    background: none;
    border: 0;
    pointer-events: none;
}

.single-trip #wte_enquiry_contact_form .success-msg {
    color: green;
}

.single-trip #wte_enquiry_contact_form .failed-msg {
    color: red;
}

/*===================================
 Checkout Page style
 ===================================*/
.place-order-form-secondary-wrapper {
    margin: 0 0 60px;
}

.place-order-form-secondary-wrapper .wp-travel-engine-order-form-wrapper {
    padding: 108px 40px 40px 40px;
    border: 1px solid #e5e5e5;
    position: relative;
    border-radius: 5px 5px 0 0;
}

.place-order-form-secondary-wrapper .wp-travel-engine-order-left-column {
    width: 350px;
    margin-right: 40px;
}

.place-order-form-secondary-wrapper .wp-travel-engine-order-left-column img {
    vertical-align: top;
}

.wp-travel-engine-order-form-wrapper .trip-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 20px !important;
    line-height: 1.3em !important;
    font-weight: 600;
    margin: 0;
    padding: 20px 40px;
}

.place-order-form-secondary-wrapper .trip-property li {
    font-size: 15px;
    margin: 0 0 15px;
}

.place-order-form-secondary-wrapper
    .trip-property
    .cart-trip-total-price
    .cart-trip-total-price-holder {
    width: auto;
    font-size: 22px;
    line-height: 1.181em;
    font-weight: 600;
    color: #111;
}

.place-order-form-secondary-wrapper .trip-property li span {
    width: 35%;
}

.place-order-form-secondary-wrapper .trip-property .cart-trip-total-price {
    border-top: 1px solid #e5e5e5;
    margin-top: 25px;
    padding-top: 20px;
    font-size: 22px;
    line-height: 1.181em;
    font-weight: 600;
    color: #111;
}

.place-order-form-secondary-wrapper .trip-property .cart-trip-total-price span {
    font-size: 18px;
    line-height: 1.444em;
    font-weight: 500;
    color: #666;
}

.relation-options-title,
.personal-options-title,
#primary .page .entry-content .payment-method h3 {
    font-size: 22px;
    line-height: 1.272em;
    font-weight: 500;
    color: #111;
    margin: 0 0 35px;
    background: #f6f6f6;
    border-radius: 5px;
    padding: 20px 14px;
}

.relation-options-title:after,
.personal-options-title:after {
    display: none;
}

.wp-travel-engine-billing-details-wrapper,
.wp-travel-engine-personal-details-inner-wrapper,
.wp-travel-engine-relation-details-inner-wrapper {
    margin: 0 -15px;
}

.wp-travel-engine-billing-details-field-wrap,
.wp-travel-engine-personal-details,
.wp-travel-engine-relation-details {
    padding: 0 15px;
    margin-bottom: 30px;
}

.wp-travel-engine-billing-details-field-wrap:last-child {
    margin-bottom: 0;
}

#wp-travel-engine-order-form label {
    font-size: 14px;
    line-height: 1.714em;
}

#wp-travel-engine-order-form input[type="submit"] {
    font-size: 13px;
    line-height: 15px;
}

.wp-travel-engine-relation-details select,
.wp-travel-engine-personal-details select {
    padding: 15px 10px;
}

.secondary-inner-wrapper {
    padding: 0;
    background: none;
    border: 1px solid #e5e5e5;
    border-radius: 0 0 5px 5px;
    margin-top: -1px;
}

.secondary-inner-wrapper table thead {
    background: none !important;
}

.trip-content-area .wp-travel-engine-archive-repeater-wrap {
    margin: 0 -15px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.single-trip
    .trip-content-area
    .widget-area
    .trip-price
    .price-holder
    form
    .book-submit {
    display: none;
}

.trip-content-area .grid .col .img-holder {
    position: relative;
    margin: 0 0 20px;
}

.trip-content-area .grid .col .img-holder .price-holder {
    position: absolute;
    left: 0;
    bottom: 20px;
    background: #fff;
    padding: 5px 10px;
}

.trip-content-area .grid .col .img-holder .group-discount {
    position: absolute;
    right: 0;
    top: 20px;
    background: #fff;
    padding: 5px 10px 5px 30px;
    cursor: pointer;
}

.trip-content-area .grid .col .img-holder .group-discount:before {
    position: absolute;
    width: 15px;
    height: 20px;
    content: "";
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 512 512'%3E%3Cpath d='M256 40c118.621 0 216 96.075 216 216 0 119.291-96.61 216-216 216-119.244 0-216-96.562-216-216 0-119.203 96.602-216 216-216m0-32C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm-36 344h12V232h-12c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12h48c6.627 0 12 5.373 12 12v140h12c6.627 0 12 5.373 12 12v8c0 6.627-5.373 12-12 12h-72c-6.627 0-12-5.373-12-12v-8c0-6.627 5.373-12 12-12zm36-240c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32z'/%3E%3C/svg%3E")
        center center no-repeat;
    top: 50%;
    left: 6px;
    transform: translateY(-50%);
}

.trip-content-area .grid .col .img-holder .group-discount .tooltip {
    position: absolute;
    top: 50%;
    left: -210px;
    width: 200px;
    background: #000;
    color: #fff;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 65%;
    opacity: 0;
    visibility: hidden;
    transform: translate(-10px, -50%);
    transition: ease 0.2s;
}

.trip-content-area .grid .col .img-holder .group-discount:hover .tooltip,
.trip-content-area .grid .col .img-holder .group-discount:focus .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -50%);
}

.trip-content-area .grid .col .img-holder .group-discount .tooltip:after {
    position: absolute;
    top: 50%;
    right: -5px;
    content: "";
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-left: 5px solid #000;
    border-bottom: 5px solid transparent;
    transform: translateY(-50%);
}

.trip-content-area .grid .col .img-holder img {
    vertical-align: top;
}

.trip-content-area .grid .col .text-holder .title {
    font-size: 20px;
    line-height: 1.65em;
    font-weight: 700;
    margin: 0 0 1.65em;
}

.trip-content-area .grid .col .text-holder .title a {
    color: #121212;
}

.trip-content-area .grid .col .text-holder .title a:hover,
.trip-content-area .grid .col .text-holder .title a:focus {
    text-decoration: underline;
}

.trip-content-area .grid .col .text-holder .meta-info {
    margin: 0 0 10px;
}

.trip-content-area .grid .col .text-holder .next-trip-info .fsd-title {
    margin: 0 0 10px;
}

.trip-content-area
    .grid
    .col
    .text-holder
    .next-trip-info
    .next-departure-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.trip-content-area
    .grid
    .col
    .text-holder
    .next-trip-info
    .next-departure-list
    li {
    margin: 0 0 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.trip-content-area
    .grid
    .col
    .text-holder
    .next-trip-info
    .next-departure-list
    li
    svg {
    margin-right: 5px;
}

.detail-container {
    max-width: 550px;
    border-top: 1px solid #000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    padding: 20px 0;
}
.detail-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
}
.detail-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.detail-item .item-label {
    width: 50%;
}
.detail-item .value {
    width: 50%;
}
.detail-item .value strong,
.detail-item .value span {
    display: block;
    margin: 0 0 5px;
}

.rating-form .review-title-rating .comment-form-wte-trip-review-rating {
    margin-bottom: 20px;
}

.rating-form .wte-trip-review-rating {
    margin-bottom: 10px;
}

.rating-form .comment-rating-field-message.error {
    display: block;
    width: 100%;
    clear: both;
    color: #ec0e0e;
}

input[type="text"].error,
input[type="email"].error,
input[type="url"].error,
input[type="password"].error,
input[type="search"].error,
input[type="number"].error,
input[type="tel"].error,
input[type="range"].error,
input[type="date"].error,
input[type="month"].error,
input[type="week"].error,
input[type="time"].error,
input[type="datetime"].error,
input[type="datetime-local"].error,
input[type="color"].error,
textarea.error {
    border: 1px solid #e82a2a;
}

input.error + .error,
select.error + .error,
textarea.error + .error,
.single-trip .rating-form p label.error {
    color: #ec0e0e;
}

.trip-content-area
    .widget-area
    .trip-price
    .price-holder
    form
    .travelers-number-input {
    display: none;
}

/* Grid and list template. */
.category-main-wrap * {
    box-sizing: border-box;
}
.category-main-wrap {
    display: flex;
    flex-wrap: wrap;
}
.category-trips-single {
    width: 100%;
    padding: 5px 22.5px;
    margin-bottom: 40px;
    font-size: 18px;
}
.category-trips-single .category-trips-single-inner-wrap {
    position: relative;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}
.category-trips-single .category-trips-single-inner-wrap .category-trip-fig {
    display: block;
    position: relative;
    margin: 0;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-fig
    img {
    vertical-align: top;
    width: 100%;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-fig
    .pop-trip-grpavil-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    background: rgba(35, 35, 35, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.16);
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-fig
    .pop-trip-grpavil-icon:hover {
    cursor: pointer;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-fig
    .pop-trip-grpavil-icon:hover
    + .pop-trip-grpavil-txt {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-fig
    .pop-trip-grpavil-txt {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: -39px;
    display: inline-block;
    padding: 9px 15px;
    line-height: 1;
    font-size: 0.944em;
    border-radius: 5px;
    color: rgba(35, 35, 35, 0.4);
    background: #fff;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.13);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all ease 0.3s;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-fig
    .pop-trip-grpavil-txt:after {
    position: absolute;
    z-index: 1;
    content: "";
    top: 100%;
    left: 17px;
    margin-top: -1px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 9px 0 9px;
    border-color: #fff transparent transparent transparent;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-fig
    .pop-trip-grpavil-txt:before {
    position: absolute;
    z-index: 2;
    content: "";
    top: 100%;
    left: 17px;
    margin-top: -1px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 9px 0 9px;
    border-color: #fff transparent transparent transparent;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-fig
    .category-disc-feat-wrap {
    position: absolute;
    top: 10px;
    right: 0;
    margin-right: -6px;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-fig
    .category-trip-discount {
    display: block;
    line-height: 1;
    background: #fecd10;
    padding: 3px 10px 5px;
    border-radius: 4px;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-fig
    .category-trip-discount
    .discount-offer {
    font-size: 14px;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-fig
    .category-trip-discount
    .discount-offer
    span {
    font-size: 16px;
    font-weight: 500;
}
.category-trips-single .category-trips-single-inner-wrap .category-feat-ribbon {
    display: block;
    position: absolute;
    text-align: right;
    top: 37px;
    right: -6px;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-feat-ribbon:before,
.category-trips-single
    .category-trips-single-inner-wrap
    .category-feat-ribbon:after {
    display: table;
    clear: both;
    content: "";
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-feat-ribbon
    .category-feat-ribbon-txt {
    display: block;
    background: #f57f01;
    color: #fff;
    font-size: 0.778em;
    font-style: italic;
    font-weight: 500;
    padding: 0;
    margin: 0;
    height: 23px;
    line-height: 23px;
    width: 70px;
    text-align: center;
    position: relative;
    float: right;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-feat-ribbon
    .category-feat-ribbon-txt:before {
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7px 11px 0;
    border-color: transparent #f57f01 transparent transparent;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-feat-ribbon
    .category-feat-ribbon-txt:after {
    content: "";
    position: absolute;
    right: 100%;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 11px 7px;
    border-color: transparent transparent #f57f01 transparent;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-feat-ribbon
    .cat-feat-shadow {
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 6px 0 0;
    border-color: #9a1e12 transparent transparent transparent;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-detail-wrap {
    display: block;
    padding: 0px 35px 25px;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-detail-wrap
    .category-trip-desti {
    display: block;
    margin-top: 12px;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-detail-wrap
    .category-trip-desti
    .category-trip-loc {
    display: inline-block;
    margin-right: 20px;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-detail-wrap
    .category-trip-desti
    .category-trip-loc
    i {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
    margin-right: 3px;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-detail-wrap
    .category-trip-desti
    .category-trip-loc
    i
    svg {
    fill: rgba(0, 0, 0, 0.9);
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-detail-wrap
    .category-trip-desti
    .category-trip-loc
    span {
    font-size: 1em;
    font-weight: 600;
    color: rgba(35, 35, 35, 0.7);
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-detail-wrap
    .category-trip-desti
    .category-trip-loc
    span
    a {
    color: rgba(35, 35, 35, 0.7);
    text-decoration: none;
    transition: all ease 0.3s;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-detail-wrap
    .category-trip-desti
    .category-trip-loc
    span
    a:hover {
    text-decoration: none;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-detail-wrap
    .category-trip-desti
    .category-trip-dur {
    display: inline-block;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-detail-wrap
    .category-trip-desti
    .category-trip-dur
    i {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
    margin-right: 3px;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-detail-wrap
    .category-trip-desti
    .category-trip-dur
    i
    svg {
    fill: rgba(0, 0, 0, 0.9);
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-detail-wrap
    .category-trip-desti
    .category-trip-dur
    span {
    font-size: 1em;
    font-weight: 600;
    color: rgba(35, 35, 35, 0.7);
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-detail-wrap
    .category-trip-review {
    display: flex;
    align-items: center;
    margin-top: 22px;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-detail-wrap
    .category-trip-review
    .rating-rev {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-detail-wrap
    .category-trip-review
    .category-trip-reviewcount {
    font-size: 1em;
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
    margin-left: 10px;
    color: rgba(35, 35, 35, 0.5);
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-detail-wrap
    .category-trip-desc {
    display: block;
    margin-top: 1.15em;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-detail-wrap
    .category-trip-desc
    p {
    font-size: 1em;
    line-height: 1.889em;
    margin-bottom: 0;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-aval-time {
    display: block;
    padding: 0 35px 20px;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-aval-time
    .category-available-trip-text {
    display: block;
    font-size: 0.778em;
    font-weight: 500;
    font-style: italic;
    line-height: 1;
    margin-bottom: 10px;
    margin-top: 5px;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-aval-time
    .category-available-months {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-aval-time
    .category-available-months
    li {
    display: inline-block;
    font-size: 0.722em;
    margin: 0 3px;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-aval-time
    .category-available-months
    li:first-child {
    margin-left: 0;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-aval-time
    .category-available-months
    li:last-child {
    margin-right: 0;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-aval-time
    .category-available-months
    li
    a {
    color: #232323;
    text-decoration: none;
    transition: all ease 0.3s;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-aval-time
    .category-available-months
    li
    a:hover {
    text-decoration: none;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-aval-time
    .category-available-months
    li
    a.disabled {
    color: rgba(35, 35, 35, 0.3);
    text-decoration: line-through;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-aval-time
    .category-available-months
    li
    a.disabled:hover {
    cursor: not-allowed;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-aval-time
    .category-trip-viewmre-btn {
    display: inline-block;
    padding: 8px 16px 9px;
    letter-spacing: normal;
    text-transform: none;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 5px;
    box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.09);
    transition: all ease 0.3s;
}
.category-trips-single .category-trips-single-inner-wrap .next-trip-info {
    display: block;
    margin-top: 5px;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .next-trip-info
    .fsd-title {
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .next-trip-info
    .next-departure-list {
    margin: 0 !important;
    padding: 0;
    list-style: none;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .next-trip-info
    .next-departure-list
    li {
    font-size: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0 !important;
    margin-bottom: 10px;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .next-trip-info
    .next-departure-list
    li:after {
    display: none;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .next-trip-info
    .next-departure-list
    li
    .left {
    position: relative;
    z-index: 1;
    background: #fff;
    padding-right: 10px;
    padding-left: 1px;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .next-trip-info
    .next-departure-list
    li
    .left
    svg {
    height: 15px;
    width: 15px;
    margin-right: 5px;
    display: inline-block;
}
#primary
    .post
    .entry-content
    .category-trips-single
    .category-trips-single-inner-wrap
    .next-trip-info
    .next-departure-list
    li:before,
.category-trips-single
    .category-trips-single-inner-wrap
    .next-trip-info
    .next-departure-list
    li:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    background: none;
    transform: translateY(-50%);
    margin-top: -1px;
    margin-left: 10px;
    white-space: nowrap;
    width: 100%;
    height: 2px;
    border-bottom: 1px dotted #b6b6b6;
    z-index: 0;
}
.category-trips-single
    .category-trips-single-inner-wrap
    .next-trip-info
    .next-departure-list
    li
    .right {
    position: relative;
    background: #fff;
    z-index: 1;
    padding-left: 10px;
    padding-right: 1px;
}

.category-main-wrap.category-grid {
    margin: 0 -22.5px;
}
.category-main-wrap.category-grid.col-1 .category-trips-single {
    width: 100%;
}
.category-main-wrap.category-grid.col-2 .category-trips-single {
    width: 50%;
}
.category-main-wrap.category-grid.col-3 .category-trips-single {
    width: 33.33%;
}
.category-main-wrap.category-grid.col-4 .category-trips-single {
    width: 25%;
}
.category-main-wrap.category-grid .category-trip-viewmre-btn {
    margin-top: 1em;
    margin-bottom: 10px;
}
.category-main-wrap.category-grid .category-trip-viewmre-btn:hover {
    box-shadow: none !important;
}
.category-main-wrap.category-grid .category-trip-prc-title-wrap {
    display: block;
    padding: 0 35px;
    margin-top: -23px;
}
.category-main-wrap.category-grid
    .category-trip-prc-title-wrap
    .category-trip-budget {
    position: relative;
    display: inline-block;
    background: #fff;
    border-radius: 5px;
    padding: 8px 20px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.07);
}
.category-main-wrap.category-grid
    .category-trip-prc-title-wrap
    .category-trip-budget
    .price-holder {
    display: block;
    line-height: 1;
}
.category-main-wrap.category-grid
    .category-trip-prc-title-wrap
    .category-trip-budget
    .price-holder
    .striked-price {
    font-size: 18px;
    font-weight: 500;
    text-decoration: line-through;
    color: rgba(35, 35, 35, 0.4);
}
.category-main-wrap.category-grid
    .category-trip-prc-title-wrap
    .category-trip-budget
    .price-holder
    .actual-price {
    font-size: 23px;
    color: rgba(35, 35, 35, 0.75);
    font-weight: 700;
}
.category-main-wrap.category-grid
    .category-trip-prc-title-wrap
    .category-trip-title {
    display: block;
    font-size: 22px;
    line-height: 1.85;
    font-weight: 600;
    margin: 20px 0 0;
}
.category-main-wrap.category-grid
    .category-trip-prc-title-wrap
    .category-trip-title
    a {
    color: #232323;
    text-decoration: none;
    transition: all ease 0.3s;
}
.category-main-wrap.category-grid
    .category-trip-prc-title-wrap
    .category-trip-title
    a:hover {
    text-decoration: none;
}
.category-list .category-trips-single {
    padding: 0;
}
.category-list .category-trips-single:last-of-type {
    margin-bottom: 0;
}
.category-list .category-trips-single-inner-wrap {
    display: flex;
    flex-wrap: wrap;
    padding: 45px 40px 25px;
    position: relative;
    overflow: hidden;
}
.category-list .category-trips-single-inner-wrap .category-trip-prc-title-wrap {
    -ms-order: 1;
    order: 1;
    display: flex;
    flex-wrap: wrap;
    flex-flow: row;
    width: 100%;
    align-items: center;
    margin-bottom: 1.65em;
}
.category-list
    .category-trips-single-inner-wrap
    .category-trip-prc-title-wrap
    .category-trip-title {
    display: inline-block;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.85;
    font-weight: 600;
    margin: 0;
    -ms-order: 1;
    order: 1;
    flex: 2;
}
.category-list
    .category-trips-single-inner-wrap
    .category-trip-prc-title-wrap
    .category-trip-title
    a {
    color: #232323;
    text-decoration: none;
    transition: all ease 0.3s;
}
.category-list
    .category-trips-single-inner-wrap
    .category-trip-prc-title-wrap
    .category-trip-title
    a:hover {
    text-decoration: none;
}
.category-list
    .category-trips-single-inner-wrap
    .category-trip-prc-title-wrap
    .category-trip-budget {
    -ms-order: 2;
    order: 2;
    display: inline-block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding-left: 20px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.category-list
    .category-trips-single-inner-wrap
    .category-trip-prc-title-wrap
    .category-trip-budget
    .price-holder
    span {
    display: inline-block;
    text-align: right;
}
.category-list
    .category-trips-single-inner-wrap
    .category-trip-prc-title-wrap
    .category-trip-budget
    .price-holder
    span.striked-price {
    font-size: 20px;
    font-weight: 600;
    color: rgba(35, 35, 35, 0.4);
    display: block;
}
.category-list
    .category-trips-single-inner-wrap
    .category-trip-prc-title-wrap
    .category-trip-budget
    .price-holder
    span.striked-price
    span {
    text-decoration: line-through;
}
/*.category-list
    .category-trips-single-inner-wrap
    .category-trip-prc-title-wrap
    .category-trip-budget
    .price-holder
    span.striked-price
    span.wpte-currency-code {
    margin-right: -2px;
}
.category-trips-single-inner-wrap
    .category-trip-prc-title-wrap
    .category-trip-budget
    .price-holder
    span.striked-price
    span.wpte-currency-code {
    margin-right: -2px;
}
del span.wpte-currency-code {
    margin-right: -2px;
}*/
span.wpte-currency-code {
    margin-right: 2px;
}
.category-list
    .category-trips-single-inner-wrap
    .category-trip-prc-title-wrap
    .category-trip-budget
    .price-holder
    span.actual-price {
    font-size: 28px;
    font-weight: 700;
    color: #232323;
    display: block;
    text-align: right;
}
.category-list .category-trips-single-inner-wrap .category-trip-desc {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.category-list .category-trips-single-inner-wrap .category-trip-fig {
    -ms-order: 2;
    order: 2;
    display: inline-block;
    width: 41%;
}
.category-list .category-trips-single-inner-wrap .category-trip-detail-wrap {
    -ms-order: 3;
    order: 3;
    padding: 0 0 0 35px;
    display: inline-block;
    width: 59%;
}
.category-list .category-trips-single-inner-wrap .category-trip-aval-time {
    -ms-order: 4;
    order: 4;
    width: 100%;
    padding: 0;
    margin-top: 1em;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-top: none;
}
.category-list
    .category-trips-single-inner-wrap
    .category-trip-aval-time
    .category-available-trip-text {
    display: inline-block;
    margin: 0;
}
.category-list
    .category-trips-single-inner-wrap
    .category-trip-aval-time
    .category-available-months {
    display: inline-block;
    margin-left: 10px;
}
.category-list
    .category-trips-single-inner-wrap
    .category-trip-aval-time
    .category-available-months
    li {
    margin: 0 5px;
}
.category-list
    .category-trips-single-inner-wrap
    .category-trip-aval-time
    .category-trip-viewmre-btn {
    display: inline-block;
}
.category-list
    .category-trips-single-inner-wrap
    .category-trip-aval-time
    .category-trip-viewmre-btn:hover {
    box-shadow: none !important;
}
.category-list .category-trips-single-inner-wrap .category-feat-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    display: inline-block;
    transform: rotate(-45deg) translateZ(0);
    margin-left: -10px;
    margin-top: 58px;
    letter-spacing: 0.5px;
    text-align: center;
    transform-origin: left;
}
.category-list
    .category-trips-single-inner-wrap
    .category-feat-ribbon
    .category-feat-ribbon-txt {
    display: block;
    width: 110px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.12);
}
.category-list
    .category-trips-single-inner-wrap
    .category-feat-ribbon
    .category-feat-ribbon-txt:before,
.category-list
    .category-trips-single-inner-wrap
    .category-feat-ribbon
    .category-feat-ribbon-txt:after {
    display: none;
}
.category-list
    .category-trips-single-inner-wrap
    .category-feat-ribbon
    .cat-feat-shadow {
    display: none;
}
.category-list
    .category-trips-single
    .category-trips-single-inner-wrap
    .category-trip-detail-wrap
    .category-trip-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 2.0625;
}

/* New styles */

.wp-travel-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    border-bottom: solid 1px rgba(35, 35, 35, 0.1);
    padding: 35px 0;
    margin-bottom: 35px;
}
.wp-travel-toolbar .wte-view-modes {
    display: inline-block;
    padding-right: 20px;
    line-height: 1;
}
.wp-travel-toolbar .wte-view-modes span {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    font-weight: 400;
    color: rgba(35, 35, 35, 0.7);
    margin-right: 3px;
}
.wp-travel-toolbar .wte-view-modes ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
    vertical-align: middle;
}
.wp-travel-toolbar .wte-view-modes ul li {
    display: inline-block;
    margin: 0 5px;
}
.wp-travel-toolbar .wte-view-modes ul li a {
    color: rgba(35, 35, 35, 0.15);
}
.wp-travel-toolbar .wte-view-modes ul li.active a {
    color: rgba(35, 35, 35, 1);
}
.wp-travel-toolbar .wte-filterby-dropdown {
    padding-left: 20px;
    /*border-left: 1px solid rgba(112,112,112,0.2);*/
    display: inline-block;
    line-height: 1;
    position: relative;
}
.wp-travel-toolbar .wte-filterby-dropdown:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 26px;
    width: 1px;
    background: rgba(112, 112, 112, 0.2);
}
.wp-travel-toolbar .wte-filterby-dropdown .wte-ordering span {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    font-weight: 400;
    color: rgba(35, 35, 35, 0.7);
}
.wp-travel-toolbar .wte-filterby-dropdown .wte-ordering select {
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid rgba(35, 35, 35, 0.1);
    color: rgba(35, 35, 35, 0.7);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    padding: 13px 40px 13px 15px;
    line-height: 1;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23353535' viewBox='0 0 448 512'%3E%3Cpath d='M441.9 167.3l-19.8-19.8c-4.7-4.7-12.3-4.7-17 0L224 328.2 42.9 147.5c-4.7-4.7-12.3-4.7-17 0L6.1 167.3c-4.7 4.7-4.7 12.3 0 17l209.4 209.4c4.7 4.7 12.3 4.7 17 0l209.4-209.4c4.7-4.7 4.7-12.3 0-17z'/%3E%3C/svg%3E")
        center center no-repeat;
    background-color: #fff;
    background-size: 12px;
    background-position: center right 15px;
}
.wp-travel-toolbar .wte-filterby-dropdown .wte-ordering select:focus {
    box-shadow: none;
    outline: none;
}

/* featured trips widget */
.widget_wte_featured_trips_widget .category-trips-widget {
    display: block;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
/*.widget_wte_featured_trips_widget .category-trips-widget:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}*/
.widget_wte_featured_trips_widget .category-trips-widget-inner-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.widget_wte_featured_trips_widget .category-trip-fig {
    width: 42%;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.07);
    margin-bottom: 0;
    border-radius: 4px;
    position: relative;
}
.widget_wte_featured_trips_widget .category-trip-fig .pop-trip-grpavil-icon {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 21px;
    height: 21px;
    background: #999999;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.16);
}
.widget_wte_featured_trips_widget
    .category-trip-fig
    .pop-trip-grpavil-icon
    svg {
    height: 11px;
    width: 13px;
}
.widget_wte_featured_trips_widget .category-trip-fig .pop-trip-grpavil-txt {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: -31px;
    display: inline-block;
    padding: 6px 12px;
    line-height: 1;
    font-size: 14px;
    white-space: nowrap;
    border-radius: 5px;
    color: rgba(13, 13, 13, 1);
    background: #fff;
    /*background-color: rgba(0, 185, 139, 0.05);*/
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.13);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all ease 0.3s;
}
.widget_wte_featured_trips_widget
    .category-trip-fig
    .pop-trip-grpavil-txt:before {
    position: absolute;
    z-index: 2;
    content: "";
    top: 100%;
    left: 7px;
    margin-top: -1px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 9px 0 9px;
    border-color: rgba(0, 185, 139, 0.05) transparent transparent transparent;
}
.widget_wte_featured_trips_widget
    .category-trip-fig
    .pop-trip-grpavil-txt:after {
    position: absolute;
    z-index: 1;
    content: "";
    top: 100%;
    left: 7px;
    margin-top: -1px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 9px 0 9px;
    border-color: #fff transparent transparent transparent;
}
.widget_wte_featured_trips_widget
    .category-trip-fig
    .pop-trip-grpavil-icon:hover {
    cursor: pointer;
}
.widget_wte_featured_trips_widget
    .category-trip-fig
    .pop-trip-grpavil-icon:hover
    + .pop-trip-grpavil-txt {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
.widget_wte_featured_trips_widget .category-trip-fig img {
    vertical-align: top;
    border-radius: 4px 4px 0 0;
}
.widget_wte_featured_trips_widget .category-trip-detail-wrap {
    width: 58%;
    padding-left: 18px;
}
.widget_wte_featured_trips_widget .category-trip-budget {
    padding: 3px 10px;
}
.widget_wte_featured_trips_widget .category-trip-budget .striked-price {
    font-size: 15px;
    color: rgba(13, 13, 13, 0.7);
    text-decoration: line-through;
    font-weight: 600;
}
.widget_wte_featured_trips_widget .category-trip-budget .actual-price {
    font-size: 18px;
    color: rgba(13, 13, 13, 1);
    font-weight: 600;
}
.widget_wte_featured_trips_widget .category-disc-feat-wrap {
    display: block;
    margin-bottom: 5px;
}
.widget_wte_featured_trips_widget .category-disc-feat-wrap .discount-offer {
    display: inline-block;
    padding: 2px 7px;
    background: rgba(13, 13, 13, 0.1);
    color: rgba(13, 13, 13, 1);
    border-radius: 3px;
    font-size: 11px;
    line-height: 1;
}
.widget_wte_featured_trips_widget
    .category-disc-feat-wrap
    .discount-offer
    span {
    font-size: 15px;
    font-weight: 500;
}
.widget_wte_featured_trips_widget .category-trip-title {
    font-size: 18px;
    display: block;
    line-height: 1.667;
    font-weight: 600;
    margin-bottom: 5px;
}
.widget_wte_featured_trips_widget .category-trip-title a {
    color: rgba(13, 13, 13, 1);
    transition: all ease 0.3s;
}
.widget_wte_featured_trips_widget .category-trip-title a:hover,
.widget_wte_featured_trips_widget .category-trip-title a:focus {
    color: #000;
    text-decoration: none;
}
.widget_wte_featured_trips_widget .category-trip-desti {
    display: block;
    font-size: 16px;
}
.widget_wte_featured_trips_widget .category-trip-desti span i {
    color: rgba(13, 13, 13, 1);
}
.widget_wte_featured_trips_widget .category-trip-desti span svg {
    height: 13px;
}
.widget_wte_featured_trips_widget .category-trip-desti span a {
    color: rgba(13, 13, 13, 0.7);
    font-weight: 600;
    transition: all ease 0.3s;
}
.widget_wte_featured_trips_widget .category-trip-desti span a:hover {
    color: rgba(13, 13, 13, 1);
    text-decoration: none;
}
.widget_wte_featured_trips_widget .category-trip-desti .category-trip-loc {
    margin-right: 15px;
    display: inline-block;
}
.widget_wte_featured_trips_widget .category-trip-desti .category-trip-dur {
    display: inline-block;
}
.widget_wte_featured_trips_widget .category-trip-desti .category-trip-dur span {
    color: rgba(13, 13, 13, 0.7);
    font-weight: 600;
}
.widget_wte_featured_trips_widget .category-trip-review {
    display: block;
    margin-top: 5px;
}
.widget_wte_featured_trips_widget
    .category-trip-review
    .rating-rev
    .agg-rating.jq-ry-container {
    padding: 0;
}
.widget_wte_featured_trips_widget
    .category-trip-review
    .rating-rev
    .jq-ry-container
    > .jq-ry-group-wrapper
    > .jq-ry-group
    > svg {
    height: 14px;
    width: 14px;
}
.widget_wte_featured_trips_widget
    .category-trip-review
    .category-trip-reviewcount {
    display: none;
}
.agg-rating.jq-ry-container {
    width: auto !important;
}
/*.jq-ry-container>.jq-ry-group-wrapper>.jq-ry-group>svg{
    width: 15px;
}*/
.jq-ry-container
    > .jq-ry-group-wrapper
    > .jq-ry-group.jq-ry-normal-group
    > svg {
    fill: grey;
}
.jq-ry-container > .jq-ry-group-wrapper > .jq-ry-group.jq-ry-rated-group > svg {
    fill: rgb(243, 156, 18);
}
.category-main-wrap.category-grid
    .category-trips-single-inner-wrap
    .next-trip-info,
.category-list .category-trips-single-inner-wrap .next-trip-info {
    padding: 0;
    margin: 0;
    border: none;
}
.category-list .category-trips-single-inner-wrap .next-trip-info {
    padding-right: 50px;
    flex: 2;
}
.category-list .category-trips-single-inner-wrap .next-trip-info .fsd-title,
.category-main-wrap.category-grid
    .category-trips-single-inner-wrap
    .next-trip-info
    .fsd-title {
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    display: block;
    margin-bottom: 10px;
}

/*===========================
TOAST MESSAGE STYLE
===========================*/
#toast-container > div {
    text-align: center;
    box-shadow: none;
    border-radius: 0;
    margin: 0;
    background: #00ce66;
    padding: 10px;
    opacity: 1;
}

#toast-container.toast-bottom-full-width > div,
#toast-container.toast-top-full-width > div {
    width: 100%;
}

#toast-container > div.toast-success {
    background-image: none !important;
}

#toast-container > div div {
    display: table;
    margin: 0 auto;
}

#toast-container .toast-message {
    font-size: 18px;
    line-height: 1.5;
    position: relative;
    min-height: 45px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 55px;
    letter-spacing: 0.3px;
}

#toast-container .toast-message::before {
    content: "";
    width: 33px;
    height: 33px;
    background-color: #fff;
    background-image: url('data:image/svg+xml; utf-8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%2300CE66" d="M435.848 83.466L172.804 346.51l-96.652-96.652c-4.686-4.686-12.284-4.686-16.971 0l-28.284 28.284c-4.686 4.686-4.686 12.284 0 16.971l133.421 133.421c4.686 4.686 12.284 4.686 16.971 0l299.813-299.813c4.686-4.686 4.686-12.284 0-16.971l-28.284-28.284c-4.686-4.686-12.284-4.686-16.97 0z"></path></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
    position: absolute;
    top: 50%;
    left: 0;
    border-radius: 100%;
    box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.23);
    transform: translateY(-45%);
}

#toast-container > .toast-error {
    background-image: none !important;
    background-color: #fe623d;
}

#toast-container > .toast-error .toast-message::before {
    background-image: url('data:image/svg+xml; utf-8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="%23FE623D" d="M193.94 256L296.5 153.44l21.15-21.15c3.12-3.12 3.12-8.19 0-11.31l-22.63-22.63c-3.12-3.12-8.19-3.12-11.31 0L160 222.06 36.29 98.34c-3.12-3.12-8.19-3.12-11.31 0L2.34 120.97c-3.12 3.12-3.12 8.19 0 11.31L126.06 256 2.34 379.71c-3.12 3.12-3.12 8.19 0 11.31l22.63 22.63c3.12 3.12 8.19 3.12 11.31 0L160 289.94 262.56 392.5l21.15 21.15c3.12 3.12 8.19 3.12 11.31 0l22.63-22.63c3.12-3.12 3.12-8.19 0-11.31L193.94 256z"></path></svg>');
    background-size: 14px;
}

#toast-container > .toast-warning {
    background-image: none !important;
    background-color: #ffb702;
}

#toast-container > .toast-warning .toast-message::before {
    background-image: url('data:image/svg+xml; utf-8, <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 301.691 301.691" xml:space="preserve" fill="%23FFB702"><polygon points="119.151,0 129.6,218.406 172.06,218.406 182.54,0"></polygon><rect x="130.563" y="261.168" width="40.525" height="40.523"></rect></svg>');
}
.wpte-active-payment-method{
    display: block;
    width: 100%;
}
.wpte-checkout-payment-info{
    display: block;
    width: 100%;
    background: #fafafa;
    padding: 15px;
    margin-top: 15px;
}
/*================================
 responsive
 ===============================*/

@media only screen and (max-width: 1199px) {
    #tabs-container .tab-inner-wrapper .tab-anchor-wrapper a {
        font-size: 16px;
    }
}

@media only screen and (max-width: 1024px) {
    .trip-content-area {
        max-width: 720px;
    }

    .single-trip #primary {
        width: 100%;
        padding: 0 15px;
        margin: 0 0 60px;
        float: none;
    }

    .single-trip #secondary {
        width: 100%;
    }

    .page-template-template-destination .destination-holder .item {
        width: 33.3333%;
    }

    .archive .trip-content-area .grid .col {
        width: 50%;
    }

    .wp-travel-engine-archive-outer-wrap .wp-travel-engine-archive-wrap {
        width: 50%;
    }

    .page-template-template-activities .activities-holder .item,
    .page-template-template-trip_types .trip_types-holder .item {
        width: 50%;
    }

    .single-trip .widget-area .wte_enquiry_contact_form-wrap {
        margin-bottom: 60px;
    }
    .single-trip .widget-area #wte_enquiry_contact_form {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .wp-travel-engine-billing-details-field-wrap,
    .wp-travel-engine-personal-details,
    .wp-travel-engine-relation-details {
        width: 100%;
    }

    #tabs-container .tab-inner-wrapper .tab-anchor-wrapper {
        width: 100%;
        margin-right: 0;
    }

    #tabs-container .tab-inner-wrapper .tab-anchor-wrapper a {
        position: relative;
    }

    #tabs-container .tab-inner-wrapper .tab-anchor-wrapper a:after {
        position: absolute;
        top: 7px;
        right: 10px;
        content: "";
        background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%238d8d8d' viewBox='0 0 320 512'%3E%3Cpath d='M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'/%3E%3C/svg%3E")
            center center no-repeat;
        width: 15px;
        height: 20px;
        transition: linear 0.2s;
    }

    #tabs-container .tab-inner-wrapper .nav-tab-active a:after {
        transform: rotate(180deg);
    }

    .wp-travel-engine-archive-outer-wrap .wp-travel-engine-archive-wrap {
        width: 100%;
        margin: 0 0 50px;
    }

    .page-template-template-destination .destination-holder .item {
        width: 50%;
    }

    .archive .trip-content-area .grid .col {
        width: 100%;
    }

    .archive
        .trip-content-area
        .wp-travel-inner-wrapper
        .grid
        .col
        .img-holder
        img {
        width: 100%;
    }

    .page-template-template-activities .activities-holder .item,
    .page-template-template-trip_types .trip_types-holder .item {
        width: 100%;
    }

    .single-trip #wte_enquiry_contact_form .row-repeater {
        width: 100%;
    }

    .faq .faq-row .accordion-tabs-toggle {
        padding-right: 40px;
    }

    .faq-title {
        width: 100%;
    }
    .category-main-wrap.category-grid.col-3 .category-trips-single,
    .category-main-wrap.category-grid.col-4 .category-trips-single {
        width: 50%;
        padding: 5px 0;
    }
    .category-list .category-trips-single-inner-wrap .next-trip-info {
        width: 100%;
        display: block;
        padding: 0;
        flex: unset;
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 600px) {
    .page-template-template-destination .destination-holder .item {
        width: 100%;
    }

    .page-template-template-destination .destination-holder .item img {
        width: 100%;
    }

    .category-main-wrap.category-grid.col-2 .category-trips-single,
    .category-main-wrap.category-grid.col-3 .category-trips-single,
    .category-main-wrap.category-grid.col-4 .category-trips-single {
        width: 100%;
        padding: 5px 0;
    }
    .category-main-wrap.category-grid {
        margin: 0;
    }
}

/* Single Page - View cost Detail Section */
/*.wpte-bf-toggle-close {
    color: #721c24;
    background: #f8d7da;
    border-color: #f5c6cb;
    line-height: 1;
    border-radius: 2px;
    padding: 5px 10px;
    position: absolute;
    right: 0;
}
.wpte-bf-toggle-close:hover {
    color: #383d41;
    background: #e2e3e5;
    border-color: #d6d8db;
}
*/

:root .wpte-lrf-wrap {
    --black-color: #000000;
    --black-color-rgb: 0, 0, 0;
    --white-color: #ffffff;
    --white-color-rgb: 255, 255, 255;
}

.wpte-lrf-wrap:not(.wpte-dashboard) {
    max-width: 570px;
    margin: 60px auto;
}

.wpte-lrf-wrap *::before,
.wpte-lrf-wrap *::after,
.wpte-lrf-wrap * {
    box-sizing: border-box;
}

.wpte-lrf-wrap a {
    transition: all ease 0.35s;
}

.wpte-lrf-wrap img {
    max-width: 100%;
    vertical-align: top;
    width: auto;
    height: auto;
}

.wpte-lrf-top {
    border-radius: 5px;
    box-shadow: 0 2px 2px rgba(var(--black-color-rgb), 0.1);
    background: var(--white-color);
    padding: 60px 40px;
}

.wpte-lrf-head {
    margin-bottom: 40px;
    text-align: center;
}

.wpte-lrf-desc {
    font-size: 20px;
    line-height: 1.7;
    letter-spacing: 0.15px;
    margin-top: 30px;
}

.wpte-lrf-desc p {
    margin-top: 20px;
    margin-bottom: 0;
}

.wpte-lrf-additional-option {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -15px;
}

.wpte-lrf-additional-option > div {
    width: 50%;
    text-align: center;
    font-size: 17px;
    font-family: sans-serif;
    padding: 10px;
}

.wpte-lrf-additional-option a {
    background: #3B5998;
    color: var(--white-color);
    border: 1px solid #304A7E;
    border-radius: 5px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.wpte-lrf-additional-option .wpte-lrf-google a {
    background: #DD4B39;
    border-color: #B83E30;
}

.wpte-lrf-additional-option a:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.wpte-lrf-additional-option a:active {
    box-shadow: 0 0 5px 5px rgba(var(--black-color-rgb), 0.05) inset;
    opacity: 1;
    filter: alpha(opacity=100);
}

.wpte-lrf-additional-option a svg {
    font-size: 24px;
    min-width: 40px;
    height: 40px;
    border-right: 1px solid #304a7e;
    padding: 10px;
    vertical-align: middle;
}

.wpte-lrf-additional-option .wpte-lrf-google a svg {
    border-right-color: #B83E30;
}

.wpte-lrf-additional-option a span {
    display: inline-block;
    min-width: calc(100% - 45px);
    min-height: 40px;
    vertical-align: middle;
    line-height: 30px;
    padding: 5px 10px;
}

.wpte-lrf-additional-option > .wpte-lrf-seperator {
    width: 100%;
    color: rgba(var(--black-color-rgb), 0.4);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.1px;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.wpte-login .wpte-lrf-additional-option > .wpte-lrf-seperator {
    margin-bottom: 15px;
}

.wpte-lrf-additional-option > .wpte-lrf-seperator::before {
    content: "";
    background: rgba(var(--black-color-rgb), 0.1);
    height: 1px;
    position: absolute;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: 0 auto;
    z-index: -1;
}

.wpte-lrf-additional-option > .wpte-lrf-seperator span {
    background: var(--white-color);
    display: inline-block;
    padding: 0 15px;
}

.wpte-lrf {
    margin-top: 30px;
}

.wpte-lrf-field {
    margin-top: 10px;
}

.wpte-lrf-field input[type="text"],
.wpte-lrf-field input[type="number"],
.wpte-lrf-field input[type="tel"],
.wpte-lrf-field input[type="email"],
.wpte-lrf-field input[type="password"] {
    height: 50px;
    background: rgba(var(--black-color-rgb), 0.01);
    border: 1px solid rgba(var(--black-color-rgb), 0.08);
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 16px;
    letter-spacing: 0.1px;
    width: 100%;
}

.wpte-lrf-field input[type="text"]:focus,
.wpte-lrf-field input[type="email"]:focus,
.wpte-lrf-field input[type="password"]:focus {
    background: none;
}

.wpte-lrf-field.lrf-submit {
    margin-top: 20px;
}

.lrf-submit input[type="submit"] {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    border: none;
    font-size: 18px;
    letter-spacing: 0.1px;
    cursor: pointer;
    transition: all ease 0.35s;
}

.lrf-submit input[type="submit"]:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.lrf-submit input[type="submit"]:active {
    box-shadow: 0 0 5px 5px rgba(var(--black-color-rgb), 0.05) inset;
    opacity: 1;
    filter: alpha(opacity=100);
}

.wpte-lrf-footer {
    font-size: 16px;
    margin-top: 20px;
    text-align: center;
    padding-right: 30px;
    padding-left: 30px;
    line-height: 1.5;
}

.wpte-lrf-bottom {
    border-radius: 5px;
    box-shadow: 0 2px 2px rgba(var(--black-color-rgb), 0.1);
    background: var(--white-color);
    padding: 15px 40px;
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
    line-height: 1.7;
    letter-spacing: 0.2px;
}

.wpte-login .wpte-lrf-footer a {
    color: var(--black-color);
    letter-spacing: 0.1px;
}

.lrf-disabled {
    opacity: 0.4;
    filter: alpha(opacity=100);
    pointer-events: none;
}

/*=======================
DASHBOARD
=======================*/
.wpte-dashboard .wpte-lrf-head {
    margin-bottom: 0;
    background: var(--white-color);
    border-bottom: 1px solid rgba(var(--black-color-rgb), 0.05);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px 30px;
}

.wpte-dashboard .wpte-lrf-userprogile {
    display: flex;
    flex: initial;
    max-width: 250px;
    flex-direction: column;
    position: relative;
}

.wpte-dashboard .wpte-lrf-userprogile > a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-decoration: none;
}

.wpte-dashboard .wpte-lrf-userprogile img {
    width: 35px;
    height: 35px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 3px;
    margin-right: 10px;
}

.wpte-dashboard .wpte-lrf-userprogile b {
    font-weight: 500;
    letter-spacing: 0.1px;
    padding-right: 10px;
    color: initial;
}

.wpte-dashboard .wpte-lrf-userprogile > a > svg {
    width: 8px;
    height: 15px;
    transition: all ease 0.35s;
}

.wpte-dashboard .wpte-lrf-userprogile.active > a svg {
    transform: rotate(180deg);
}

.wpte-lrf-userprogile .lrf-userprofile-popup {
    display: none;
    position: absolute;
    z-index: 1;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: var(--white-color);
    box-shadow: 0 -3px 34px rgba(var(--black-color-rgb), 0.07);
    padding: 20px;
    font-size: 16px;
}

.wpte-lrf-userprogile .lrf-userprofile-popup::before {
    content: "";
    border-bottom: 8px solid var(--white-color);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    position: absolute;
    top: -8px;
    right: 20px;
}

.wpte-lrf-userprogile .lrf-userprofile-popup .lrf-userprofile-logout {
    background: rgba(var(--black-color-rgb), 0.05);
    display: inline-block;
    padding: 10px 20px;
    white-space: nowrap;
}

.wpte-lrf-userprogile .lrf-userprofile-popup .lrf-userprofile-logout {
    background: rgba(var(--black-color-rgb), 0.05);
    display: flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-decoration: none;
}

.wpte-lrf-userprogile .lrf-userprofile-popup svg {
    margin-right: 7px;
}

.wpte-dashboard .wpte-lrf-head .wpte-lrf-logo {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-left: 30px;
}

.wpte-dashboard .wpte-lrf-content-area {
    display: flex;
    flex-wrap: wrap;
    background: rgba(var(--black-color-rgb), 0.02);
}

.wpte-dashboard .wpte-lrf-content-area .wpte-lrf-sidebar {
    padding-top: 6%;
    width: 250px;
    background: var(--white-color);
    display: flex;
    flex-direction: column;
}

.wpte-dashboard .wpte-lrf-sidebar .wpte-lrf-tab {
    display: block;
    text-decoration: none !important;
    padding: 15px 30px 15px 60px;
    color: rgba(var(--black-color-rgb), 0.7);
    letter-spacing: 0.05px;
    font-size: 16px;
    position: relative;
    margin-bottom: 10px;
}

.wpte-dashboard .wpte-lrf-sidebar .wpte-lrf-tab:hover {
    font-weight: 600;
}

.wpte-dashboard .wpte-lrf-sidebar .wpte-lrf-tab.active {
    font-weight: 600;
    background: var(--black-color);
    color: var(--white-color);
}

.wpte-dashboard .wpte-lrf-sidebar .wpte-lrf-tab::before {
    content: "";
    width: 11px;
    height: 11px;
    background: rgba(var(--black-color-rgb), 0.35);
    position: relative;
    /*top: 19px;
    left: 30px;*/
    display: inline-block;
    margin-right: 15px;
    border-radius: 100%;
    box-shadow: 0 0 0 3px rgba(var(--black-color-rgb), 0.2);
}

.wpte-dashboard .wpte-lrf-sidebar .wpte-lrf-tab.active::before {
    background: var(--white-color);
    box-shadow: 0 0 0 3px rgba(var(--white-color-rgb), 0.2);
}

.wpte-dashboard .wpte-lrf-content-area .wpte-lrf-main {
    width: calc(100% - 250px);
    padding: 6% 4%;
}

.wpte-dashboard .wpte-lrf-main .wpte-lrf-tab-content:not(.active) {
    display: none;
}

.wpte-dashboard .wpte-lrf-header {
    max-width: 700px;
    margin-bottom: 40px;
}

.wpte-dashboard .wpte-lrf-title {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 0.05px;
    line-height: 1.5;
}

.wpte-dashboard .lrf-dashboard-content .wpte-lrf-title {
    font-style: italic;
}

.wpte-dashboard .wpte-lrf-description {
    font-size: 18px;
    line-height: 1.65;
    margin-top: 15px;
    letter-spacing: 0.15px;
    font-weight: normal;
}

.wpte-dashboard .wpte-lrf-description p {
    margin-top: 0;
    margin-bottom: 20px;
}

.wpte-dashboard .wpte-lrf-description p:last-child {
    margin-bottom: 0;
}

.lrf-dashboard-content .wpte-lrf-block-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-left: -2%;
    margin-right: -2%;
}

.wpte-lrf-block {
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 4px 34px rgba(var(--black-color-rgb), 0.02);
    padding: 4%;
}

.lrf-dashboard-content .wpte-lrf-block-wrap .wpte-lrf-block {
    width: 29.33%;
}

.wpte-lrf-block .wpte-lrf-block-title {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.05px;
}

.wpte-lrf-block .wpte-lrf-block-desc {
    font-size: 16px;
    letter-spacing: 0.15px;
    margin-top: 15px;
    -ms-word-break: break-all;
    word-break: break-all;
}

.wpte-lrf-block .wpte-lrf-btn-wrap {
    border-top: 1px solid rgba(var(--black-color-rgb), 0.1);
    margin-top: 20px;
    padding-top: 30px;
}

.wpte-lrf-btn-transparent {
    display: inline-block;
    text-decoration: none;
    border: 1px solid rgba(var(--black-color-rgb), 0.2);
    border-radius: 4px;
    color: var(--black-color);
    padding: 12px 15px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.wpte-lrf-btn-transparent:hover {
    background: var(--black-color);
    color: var(--white-color);
}

.wpte-dashboard .wpte-lrf-edit {
    display: inline-flex;
    text-decoration: none;
    color: initial;
    font-size: 14px;
    letter-spacing: 0.15px;
    flex-wrap: wrap;
    align-items: center;
}

.wpte-dashboard .wpte-lrf-edit:hover {
    color: var(--black-color);
}

.wpte-dashboard .wpte-lrf-edit svg {
    width: 25px;
    height: 25px;
    border: 1px solid rgba(var(--black-color-rgb), 0.1);
    border-radius: 100%;
    padding: 7px;
    color: var(--black-color);
    margin-left: 10px;
    transition: all ease 0.35s;
}

.wpte-dashboard .wpte-lrf-edit:hover svg {
    background: var(--black-color);
    color: var(--white-color);
}

.wpte-lrf-btn-link {
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.15px;
    color: var(--black-color);
}

.wpte-dashboard .wpte-lrf-edit + .wpte-lrf-btn-link {
    padding-left: 20px;
}

.wpte-lrf-btn-link:hover {
    text-decoration: underline;
}

.lrf-bookings-content .wpte-lrf-block {
    padding: 20px;
}
.lrf-bookings-content .wpte-lrf-block .wpte-lrf-btn{
    margin-left: 0;
    text-decoration: none !important;
}
.wpte-lrf-btn-transparent.wte-dbrd-tab{
    text-decoration: none !important;
}

.wpte-dashboard .wpte-lrf-table {
    width: 100%;
    border-collapse: collapse;
    counter-reset: th-count;
}

.wpte-dashboard .wpte-lrf-table tr {
    border-bottom: 1px solid rgba(var(--black-color-rgb), 0.05);
}

.wpte-dashboard .wpte-lrf-table th,
.wpte-dashboard .wpte-lrf-table td {
    text-align: left;
    padding: 45px 30px;
}

.wpte-dashboard .wpte-lrf-table th,
.wpte-dashboard .wpte-lrf-table td{
    padding: 30px 15px !important;
}

.wpte-dashboard .wpte-lrf-table th {
    padding-left: 45px;
    counter-increment: th-count;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.05px;
    position: relative;
    max-width: 250px;
}

.wpte-dashboard .wpte-lrf-table th::before {
    content: counter(th-count)". ";
}

.wpte-dashboard .wpte-lrf-table th::after {
    content: "";
    background: rgba(var(--black-color-rgb), 0.05);
    width: 1px;
    position: absolute;
    top: 45px;
    bottom: 45px;
    right: 0;
}

.wpte-dashboard .wpte-lrf-table td:last-child {
    padding-right: 45px;
    position: relative;
}

.wpte-dashboard .wpte-lrf-table td:last-child::before {
    content: "";
    background: rgba(var(--black-color-rgb), 0.05);
    width: 1px;
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 0;
}

.lrf-bookings-content .wpte-lrf-block .wpte-lrf-btn-wrap {
    border-top: 0;
    margin-top: 0;
}

.lrf-td-title {
    font-size: 14px;
    letter-spacing: 0.05px;
    color: rgba(var(--black-color-rgb), 0.6);
    display: block;
    margin-bottom: 10px;
}

.lrf-td-desc {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05px;
}

.wpte-dashboard .wpte-lrf-table td .wpte-lrf-btn-transparent {
    margin-top: 10px;
    margin-bottom: 10px;
    white-space: nowrap;
    text-decoration: none !important;
}

.lrf-pending {
    color: #518A35;
}

.lrf-cancelled {
    color: #DD3C3C;
}

.wpte-lrf-btn {
    margin-left: 45px;
    margin-bottom: 45px;
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0.4px;
    color: var(--white-color);
    background: var(--black-color);
    border: 1px solid var(--black-color);
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 4px;
    box-shadow: 0 4px 34px rgba(var(--black-color-rgb), 0.02);
}

.wpte-lrf-btn:hover {
    background: none;
    color: var(--black-color);
}

.lrf-address-content .wpte-lrf-block,
.lrf-account-content .wpte-lrf-block {
    background: none;
    padding: 0;
    box-shadow: none;
}

.wpte-dashboard .wpte-lrf-form {
    max-width: 625px;
}

.lrf-address-content .wpte-lrf-block .wpte-lrf-field,
.lrf-account-content .wpte-lrf-block .wpte-lrf-field {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-right: 25px;
}

.lrf-address-content .wpte-lrf-block .wpte-lrf-field .lrf-field-label,
.lrf-account-content .wpte-lrf-block .wpte-lrf-field .lrf-field-label {
    display: inline-block;
    width: 100px;
    font-size: 16px;
    letter-spacing: 0.15px;
    font-weight: 500;
}

.lrf-address-content .wpte-lrf-block .wpte-lrf-field input[type="text"],
.lrf-address-content .wpte-lrf-block .wpte-lrf-field input[type="number"],
.lrf-address-content .wpte-lrf-block .wpte-lrf-field input[type="tel"],
.lrf-address-content .wpte-lrf-block .wpte-lrf-field input[type="email"],
.lrf-account-content .wpte-lrf-block .wpte-lrf-field input[type="text"],
.lrf-account-content .wpte-lrf-block .wpte-lrf-field input[type="number"],
.lrf-account-content .wpte-lrf-block .wpte-lrf-field input[type="tel"],
.lrf-account-content .wpte-lrf-block .wpte-lrf-field input[type="email"],
.lrf-account-content .wpte-lrf-block .wpte-lrf-field input[type="password"],
.lrf-address-content .wpte-lrf-block .wpte-lrf-field select {
    background: var(--white-color);
    margin-left: 25px;
    width: calc(100% - 125px);
}

.lrf-address-content .wpte-lrf-block .wpte-lrf-field select{
    height: 50px;
    background: #FFF;
    border: 1px solid rgba(var(--black-color-rgb), 0.08);
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 16px;
    letter-spacing: 0.1px;
}

.lrf-address-content .wpte-lrf-block .wpte-lrf-field .lrf-tooltip,
.lrf-account-content .wpte-lrf-block .wpte-lrf-field .lrf-tooltip {
    width: calc(100% - 125px);
    margin-left: auto;
    margin-top: 10px;
    font-size: 13px;
    letter-spacing: 0.15px;
}

.lrf-address-content .wpte-lrf-block .wpte-lrf-field.lrf-submit,
.lrf-account-content .wpte-lrf-block .wpte-lrf-field.lrf-submit {
    padding-right: 0;
    border-top: 1px solid rgba(var(--black-color-rgb), 0.05);
    padding-top: 30px;
}

.lrf-address-content .wpte-lrf-block .wpte-lrf-field.lrf-submit .wpte-lrf-btn,
.lrf-account-content .wpte-lrf-block .wpte-lrf-field.lrf-submit .wpte-lrf-btn {
    width: auto;
    margin-left: 0;
    margin-bottom: 0;
    font-size: 16px;
    letter-spacing: 0.4px;
    opacity: 1;
    filter: alpha(opacity=100);
    border: 1px solid var(--black-color);
}
.wpte-lrf-field.lrf-rememberme label{
    position: relative;
    padding-left: 25px;
    font-size: 16px;
    color: rgba(35, 35, 35, 0.9);
    font-weight: 400;
}
.wpte-lrf-field.lrf-rememberme input[type=checkbox]{
    opacity: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.wpte-lrf-field.lrf-rememberme label:before{
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    height: 16px;
    width: 16px;
    border: 1px solid rgba(35, 35, 35, 0.9);
    border-radius: 2px;
}
.wpte-lrf-field.lrf-rememberme label:after{
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    height: 16px;
    width: 16px;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23232323' viewBox='0 0 512 512'%3E%3Cpath d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3E%3C/svg%3E") center center no-repeat;
    background-size: 12px;
    background-position: center;
    opacity: 0;
    transition: all ease 0.2s;
}
.wpte-lrf-field.lrf-rememberme input[type=checkbox]:checked ~ label:after{
    opacity: 1;
}
.wp-travel-engine-error-msg,
.wp-travel-engine-success-msg{
    font-size: 18px;
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    padding: 10px 15px;
    width: 100%;
    border-radius: 4px;
}
.wp-travel-engine-error-msg + .wp-travel-engine-error-msg{
    margin-top: 10px;
}
.wp-travel-engine-success-msg{
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.lrf-toggle .lrf-toggle-box {
    width: 60px;
    height: 30px;
    background: rgba(var(--black-color-rgb), 0.1);
    border-radius: 50px;
    margin-left: 25px;
    line-height: 30px;
    text-align: center;
    padding: 0 7px;
    position: relative;
    cursor: pointer;
    transition: all ease 0.35s;
}

.lrf-toggle .lrf-toggle-box::before {
    content: "";
    background: var(--white-color);
    width: 24px;
    height: 24px;
    position: absolute;
    top: 3px;
    left: 4px;
    border-radius: 100%;
    transition: all ease 0.35s;
}

.lrf-toggle .lrf-toggle-box .lrf-chkbx-txt {
    color: var(--white-color);
    text-transform: uppercase;
    letter-spacing: 0.15px;
    font-size: 12px;
    display: inline-block;
}

.lrf-toggle .lrf-toggle-box .lrf-chkbx-txt:first-child {
    display: none;
}

.lrf-toggle .lrf-toggle-box .lrf-chkbx-txt:last-child {
    float: right;
    color: var(--black-color);
}

.lrf-toggle .lrf-toggle-box.active {
    background: var(--black-color);
}

.lrf-toggle .lrf-toggle-box.active::before {
    left: 32px;
}

.lrf-toggle .lrf-toggle-box.active .lrf-chkbx-txt:first-child {
    display: block;
    float: left;
}

.lrf-toggle .lrf-toggle-box.active .lrf-chkbx-txt:last-child {
    display: none;
}

.wpte-lrf-field.lrf-toggle + .wpte-lrf-popup {
    border-top: 1px solid rgba(var(--black-color-rgb), 0.1);
    padding-top: 10px;
    margin-top: 40px;
    display: none;
}

.white-popup {
    position: relative;
    background: #FFF;
    padding: 20px;
    width: auto;
    max-width: 500px;
    margin: 20px auto;
}
.white-popup h5{
    font-size: 24px;
    font-weight: 600;
}
.white-popup h6{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 30px;
}
.wpte-lrf .wpte-lrf-field .parsley-required{
    list-style: none !important;
    padding: 0 !important;
}
.wpte-lrf .wpte-lrf-field .parsley-required:before{
    display: none !important;
}


.wpte-bf-checkout .wpte-bf-checkout-form .wte-default-payment-button-hidden  .wpte-bf-submit{
    display: none;
}
.wpte-bf-checkout #wte-PayPalExpress-button{
    margin-top: 40px;
}
#wp-travel-engine-new-checkout-form .wpte-bf-field.wpte-bf-submit{
    margin-top: 40px;
}
.thank-you-container-2{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 50px;
}
.thank-you-container-2 .wpte-lrf-btn-wrap{
    display: inline-block;
    margin-right: 20px;
}
.thank-you-container-2 .wpte-lrf-btn-wrap .wpte-lrf-btn{
    text-decoration: none !important;
    color: #FFF;
    margin: 0;
}
@media screen and (max-width: 1199px) {
    .lrf-bookings-content .wpte-lrf-block {
        overflow: auto;
    }

    .wpte-dashboard .wpte-lrf-table {
        width: 992px;
    }

    .wpte-lrf-block {
        padding: 40px 20px;
    }
}

@media screen and (max-width: 992px) {
    .wpte-dashboard .wpte-lrf-content-area {
        flex-direction: column;
    }

    .wpte-dashboard .wpte-lrf-content-area .wpte-lrf-sidebar {
        width: 100%;
        padding-top: 0;
        flex-flow: row wrap;
        justify-content: center;
    }

    .wpte-dashboard .wpte-lrf-content-area .wpte-lrf-main {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .wpte-lrf-top {
        padding: 40px 20px;
    }

    .wpte-lrf-additional-option {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
    }

    .wpte-lrf-additional-option > div {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .wpte-lrf-additional-option a {
        display: inline-block;
    }

    .wpte-lrf-bottom {
        padding-left: 20px;
        padding-right: 20px;
    }

    .wpte-lrf-footer {
        padding-left: 0;
        padding-right: 0;
    }

    .wpte-dashboard .wpte-lrf-sidebar .wpte-lrf-tab {
        margin-bottom: 0;
        padding-left: 20px;
        padding-right: 20px;
    }

    .wpte-dashboard .wpte-lrf-sidebar .wpte-lrf-tab::before {
        display: none;
    }

    .lrf-dashboard-content .wpte-lrf-block-wrap .wpte-lrf-block {
        width: 46%;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 600px) {
    .wpte-dashboard .wpte-lrf-head {
        padding: 15px;
        flex-direction: column-reverse;
    }

    .wpte-dashboard .wpte-lrf-userprogile {
        margin-top: 20px;
    }

    .wpte-dashboard .wpte-lrf-head .wpte-lrf-logo {
        padding-left: 0;
        flex: auto;
        max-width: 200px;
    }

    .lrf-dashboard-content .wpte-lrf-block-wrap {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
    }

    .lrf-dashboard-content .wpte-lrf-block-wrap .wpte-lrf-block {
        width: 100%;
        margin-bottom: 30px;
    }

    .lrf-address-content .wpte-lrf-block .wpte-lrf-field,
    .lrf-account-content .wpte-lrf-block .wpte-lrf-field {
        padding-right: 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .lrf-address-content .wpte-lrf-block .wpte-lrf-field,
    .lrf-account-content .wpte-lrf-block .wpte-lrf-field {
        padding-right: 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .lrf-address-content .wpte-lrf-block .wpte-lrf-field .lrf-field-label,
    .lrf-account-content .wpte-lrf-block .wpte-lrf-field .lrf-field-label {
        width: 100%;
        margin-bottom: 10px;
    }

    .lrf-address-content .wpte-lrf-block .wpte-lrf-field input[type="text"],
    .lrf-address-content .wpte-lrf-block .wpte-lrf-field input[type="number"],
    .lrf-address-content .wpte-lrf-block .wpte-lrf-field input[type="tel"],
    .lrf-address-content .wpte-lrf-block .wpte-lrf-field input[type="email"],
    .lrf-account-content .wpte-lrf-block .wpte-lrf-field input[type="text"],
    .lrf-account-content .wpte-lrf-block .wpte-lrf-field input[type="number"],
    .lrf-account-content .wpte-lrf-block .wpte-lrf-field input[type="tel"],
    .lrf-account-content .wpte-lrf-block .wpte-lrf-field input[type="email"] {
        width: 100%;
        margin-left: 0;
    }

    .lrf-address-content .wpte-lrf-block .wpte-lrf-field .lrf-tooltip,
    .lrf-account-content .wpte-lrf-block .wpte-lrf-field .lrf-tooltip {
        width: 100%;
    }

    .lrf-account-content .wpte-lrf-block .wpte-lrf-field.lrf-toggle {
        flex-direction: row;
        align-items: center;
    }

    .lrf-account-content .wpte-lrf-block .wpte-lrf-field.lrf-toggle .lrf-field-label {
        width: 130px;
        margin-bottom: 0;
    }
}

.mfp-hide{display:none}.wte-button-group{display:flex;flex-wrap:wrap;grid-gap:10px}.wte-meta-help{display:inline-flex;justify-content:center;align-items:center;width:16px;height:16px;border-radius:50%;background-color:rgba(23,13,68,.07);margin:0 5px;text-decoration:none;cursor:pointer;position:relative}.wte-meta-help svg{width:6px;height:auto}.wte-meta-help .wte-help-content{position:absolute;left:50%;top:100%;width:auto;border-radius:5px;background:rgba(0,0,0,.9);color:#fff;font-size:13px;line-height:1.5;font-weight:300;padding:10px;margin-top:6px;display:none;transform:translateX(-50%)}.wte-meta-help .wte-help-content::before{content:"";border-bottom:5px solid rgba(0,0,0,.9);border-left:5px solid transparent;border-right:5px solid transparent;position:absolute;bottom:100%;left:50%;margin-top:-1px;transform:translateX(-50%)}.wte-meta-help:hover .wte-help-content{display:block}.wte-check-button{background:none;border:1px solid rgba(var(--primary-color-rgb), 0.3);border-radius:3px;font-size:14px;line-height:1;font-weight:500;text-transform:capitalize;color:var(--primary-color);padding:14px 15px;margin:0;transition:all .2s linear}@media(max-width: 575px){.wte-check-button{width:100%}}.wte-check-button:hover{border-color:var(--primary-color);color:var(--primary-color)}.wte-check-button.checked{color:#fff;border-color:var(--primary-color);background:var(--primary-color)}.wte-trip-options .wte-trip-guest-wrapper{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;padding:18px 30px;box-shadow:0 2px 10px rgba(0,0,0,.03);margin-bottom:15px}@media(max-width: 767px){.wte-trip-options .wte-trip-guest-wrapper{flex-direction:column;align-items:flex-start}}.wte-trip-options .wte-trip-guest-wrapper.vertical{flex-direction:column;align-items:flex-start;grid-gap:10px;padding:15px;width:178px;align-items:center}.wte-trip-options .wte-trip-guest-wrapper.vertical .select-wrapper{flex-direction:column-reverse;align-items:center;grid-gap:10px}.wte-trip-options .wte-trip-guest-wrapper .check-in-wrapper{display:inline-flex;align-items:center}.wte-trip-options .wte-trip-guest-wrapper .check-in-wrapper label{margin:0;font-size:16px;font-weight:500;color:rgba(23,13,68,.8)}.wte-trip-options .wte-trip-guest-wrapper .check-in-wrapper .render{font-size:14px;color:rgba(23,13,68,.6)}.wte-trip-options .wte-trip-guest-wrapper .select-wrapper{display:inline-flex}@media(max-width: 767px){.wte-trip-options .wte-trip-guest-wrapper .select-wrapper{flex-direction:column;align-items:flex-start}}.wte-trip-options .wte-trip-guest-wrapper .select-wrapper .amount-per-person{display:inline-flex;flex-wrap:wrap;align-items:center;grid-gap:5px;margin-right:10px}.wte-trip-options .wte-trip-guest-wrapper .select-wrapper .amount-per-person .regular-price{font-size:14px;color:#170d44;opacity:.4}.wte-trip-options .wte-trip-guest-wrapper .select-wrapper .amount-per-person .offer-price{font-size:18px;color:rgba(23,13,68,.8)}.wte-trip-options .wte-trip-guest-wrapper .select-wrapper .amount-per-person .per-text{font-size:13px;color:#170d44;opacity:.5}.wte-trip-options .wte-trip-guest-wrapper .select-wrapper .wte-qty-number{display:inline-flex;align-items:center;border:1px solid rgba(23,13,68,.06);overflow:hidden;border-radius:5px}.wte-trip-options .wte-trip-guest-wrapper .select-wrapper .wte-qty-number button{line-height:0;background-color:rgba(23,13,68,.03);width:38px;height:38px;display:flex;justify-content:center;align-items:center;transition:all .3s linear;cursor:pointer;padding:0;border:none;border-radius:0}.wte-trip-options .wte-trip-guest-wrapper .select-wrapper .wte-qty-number button:hover{background-color:rgba(23,13,68,.1)}.wte-trip-options .wte-trip-guest-wrapper .select-wrapper .wte-qty-number input{width:38px;height:38px;font-size:16px;font-weight:500;color:rgba(23,13,68,.8);text-align:center;border:0;outline:none;padding:0}.wte-es-with-multiple-options{display:flex;grid-gap:15px;overflow-x:auto;padding:0 15px;margin:0 -15px}.wte-es-with-multiple-options::-webkit-scrollbar{width:5px;height:5px}.wte-es-with-multiple-options::-webkit-scrollbar-track{background-color:transparent}.wte-es-with-multiple-options::-webkit-scrollbar-thumb{background-color:#eee;border-radius:5px;visibility:hidden}.wte-es-with-multiple-options::-webkit-scrollbar-thumb:hover{background-color:#ccc}.wte-es-with-multiple-options:hover::-webkit-scrollbar-thumb{visibility:visible}.wte-es-with-multiple-options .item{border-bottom:none}.wte-process-layout{max-height:100vh;overflow-y:auto}@media(min-width: 768px){.wte-process-layout{max-height:80vh}}@media(min-width: 1200px){.wte-process-layout{display:grid;grid-template-areas:"steps sidebar" "tabs sidebar";grid-template-rows:75px 1fr;grid-template-columns:1fr 32.7%;overflow:hidden}}.wte-process-layout .wte-process-container{max-width:83.52%;margin:0 auto}.wte-process-layout .wte-process-nav{border-bottom:1px solid rgba(23,13,68,.05);grid-area:steps;position:sticky;top:0;background-color:#fff;z-index:11}.wte-process-layout .wte-process-nav .wte-process-nav-list{list-style:none;padding:0;margin:0;display:flex;position:relative;flex-wrap:wrap;--step-bar-width: 0}.wte-process-layout .wte-process-nav .wte-process-nav-list::before{content:"";width:var(--step-bar-width);height:2px;background-color:rgba(var(--primary-color-rgb), 0.5);position:absolute;left:0;bottom:0;transition:all .3s ease-in-out}.wte-process-layout .wte-process-nav .wte-process-nav-list .wte-process-nav-item{font-size:15px;line-height:1;font-weight:500;color:#170d44;text-align:center;padding:15px 30px;position:relative;opacity:.4;transition:all .3s linear;display:flex;align-items:center;justify-content:center;grid-gap:10px;width:33.153%}@media(min-width: 768px){.wte-process-layout .wte-process-nav .wte-process-nav-list .wte-process-nav-item{padding:30px}}.wte-process-layout .wte-process-nav .wte-process-nav-list .wte-process-nav-item a{text-decoration:none;display:flex;align-items:center;justify-content:center;grid-gap:10px;color:inherit}@media(max-width: 575px){.wte-process-layout .wte-process-nav .wte-process-nav-list .wte-process-nav-item a{font-size:0}}.wte-process-layout .wte-process-nav .wte-process-nav-list .wte-process-nav-item.active,.wte-process-layout .wte-process-nav .wte-process-nav-list .wte-process-nav-item.finish{opacity:1}.wte-process-layout .wte-process-nav .wte-process-nav-list .wte-process-nav-item.active::before,.wte-process-layout .wte-process-nav .wte-process-nav-list .wte-process-nav-item.finish::before{width:100%}.wte-process-layout .wte-process-nav .wte-process-nav-list .wte-process-nav-item .wte-icon{line-height:0}.wte-process-layout .wte-process-nav .wte-process-nav-list .wte-process-nav-item .wte-icon svg rect{stroke:#170d44}.wte-process-layout .wte-process-nav .wte-process-nav-list .wte-process-nav-item .wte-icon svg path,.wte-process-layout .wte-process-nav .wte-process-nav-list .wte-process-nav-item .wte-icon svg circle{fill:#170d44}.wte-process-layout .wte-process-nav .wte-process-nav-list .wte-process-nav-item .arrow{position:absolute;top:50%;right:0;transform:translateY(-50%)}.wte-process-layout .wte-process-nav .wte-process-nav-list .wte-process-nav-item .arrow svg path{stroke:#1e1e1e}.wte-process-layout .wte-process-nav .wte-process-nav-list .wte-process-nav-item:last-child .arrow{display:none}.wte-process-layout .wte-process-tabs{grid-area:tabs}.wte-process-layout .wte-process-tabs .wte-process-container{padding:2rem 0;position:relative;min-height:100%}@media(min-width: 768px){.wte-process-layout .wte-process-tabs .wte-process-container{height:calc(81.1vh - 75px);padding-bottom:124px}}.wte-process-layout .wte-process-tabs .wte-process-tab-item{display:none;margin:0 -15px;padding:0 15px 0}@media(min-width: 768px){.wte-process-layout .wte-process-tabs .wte-process-tab-item{height:100%;overflow-y:auto}}@media(min-width: 1200px){.wte-process-layout .wte-process-tabs .wte-process-tab-item{padding-right:10px;overflow:hidden;overflow-y:auto}.wte-process-layout .wte-process-tabs .wte-process-tab-item::-webkit-scrollbar{width:5px;height:5px}.wte-process-layout .wte-process-tabs .wte-process-tab-item::-webkit-scrollbar-track{background-color:transparent}.wte-process-layout .wte-process-tabs .wte-process-tab-item::-webkit-scrollbar-thumb{background-color:#eee;border-radius:5px;visibility:hidden}.wte-process-layout .wte-process-tabs .wte-process-tab-item::-webkit-scrollbar-thumb:hover{background-color:#ccc}.wte-process-layout .wte-process-tabs .wte-process-tab-item:hover::-webkit-scrollbar-thumb{visibility:visible}}.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .wte-process-tab-title{font-size:16px;line-height:1.45;font-weight:600;color:#170d44;opacity:.8;margin-bottom:20px;margin-top:0}.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .wte-package-type{margin-bottom:15px}.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper p{font-size:14px;line-height:25px;color:rgba(23,13,68,.7)}.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper hr{margin:20px 0;border-color:rgba(23,13,68,.03)}.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .wte-option-heading{display:flex;justify-content:space-between;align-items:center;margin-bottom:15px}.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .wte-option-heading span{font-size:12px;font-weight:500;text-transform:uppercase;color:#170d44;opacity:.3}.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .wte-option-heading span.text-left{padding-left:50px}.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .wte-option-heading span.text-right{padding-right:50px}.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .wte-booking-date-wrap{box-shadow:0 2px 3px rgba(0,0,0,.08);border-radius:5px}.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .wte-booking-date-wrap .wte-booking-times{padding:16px 30px}.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .flatpickr-calendar{width:100%;font-size:16px;box-shadow:none;margin:0 auto}.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-months{background-color:rgba(23,13,68,.02);height:52px;position:relative}.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-months .flatpickr-month{height:52px}.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-months .flatpickr-month .flatpickr-current-month{padding:0;height:auto;top:50%;left:50%;transform:translate(-50%, -50%);font-size:inherit;color:#170d44;display:flex;justify-content:center;padding:0 25px}.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-months .flatpickr-month .flatpickr-current-month select,.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-months .flatpickr-month .flatpickr-current-month input{font-weight:400;padding:5px;transition:all .2s ease;width:80px;padding-right:15px}.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-months .flatpickr-month .flatpickr-current-month .numInputWrapper{width:7ch}.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-months .flatpickr-month .flatpickr-current-month .numInputWrapper:hover{background:none}.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-months .flatpickr-prev-month,.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-months .flatpickr-next-month{width:40px;height:30px;border-radius:5px;box-shadow:0 2px 2px rgba(0,0,0,.1);background-color:#fff;padding:0;display:flex;justify-content:center;align-items:center;position:absolute;top:50%;right:11px;left:auto;transform:translateY(-50%)}.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-months .flatpickr-prev-month{left:11px;right:auto}@media(min-width: 768px){.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-months .flatpickr-prev-month{left:auto;right:56px}}.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer{width:100%}.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .flatpickr-days,.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .dayContainer{width:100%;max-width:100%}@media(max-width: 767px){.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .flatpickr-days,.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .dayContainer{min-width:unset}}.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .dayContainer{display:flex}.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .dayContainer .flatpickr-day{max-width:14.29%;flex:auto;height:42.2px;border-color:rgba(23,13,68,.03);border-radius:0;justify-content:inherit;color:rgba(23,13,68,.9);font-weight:500;line-height:1;display:inline-flex;align-items:center;border-left:0;border-top:0}.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .dayContainer .flatpickr-day:nth-of-type(7n){border-right:0}.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .dayContainer .flatpickr-day.flatpickr-disabled{color:rgba(var(--primary-color-rgb), 0.2)}.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .dayContainer .flatpickr-day.today{background-color:rgba(var(--primary-color-rgb), 0.05);color:var(--primary-color)}.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .dayContainer .flatpickr-day.selected{background-color:var(--primary-color);color:#fff}.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .dayContainer .flatpickr-day.prevMonthDay,.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .dayContainer .flatpickr-day.nextMonthDay{color:transparent;pointer-events:none;background:none}.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-weekdays{height:52px;border-bottom:1px solid rgba(23,13,68,.03)}.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-weekdays .flatpickr-weekday{font-size:12px;text-transform:uppercase;font-weight:600;color:rgba(23,13,68,.6)}@media(min-width: 576px){.wte-process-layout .wte-process-tabs .wte-process-tab-item .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-weekdays .flatpickr-weekday{font-size:15px}}.wte-process-layout .wte-popup-sidebar{grid-area:sidebar;border-top:1px solid rgba(23,13,68,.05);padding:30px 0}@media(min-width: 1200px){.wte-process-layout .wte-popup-sidebar{border-top:none;border-left:1px solid rgba(23,13,68,.05);padding:75px 40px;max-height:80vh}}.wte-process-layout .wte-popup-sidebar .wte-booking-summary{max-width:80%;margin:0 auto}@media(min-width: 1200px){.wte-process-layout .wte-popup-sidebar .wte-booking-summary{max-width:300px;padding-right:10px;margin-right:auto;margin-left:0;height:100%;overflow-y:auto}.wte-process-layout .wte-popup-sidebar .wte-booking-summary::-webkit-scrollbar{width:5px;height:5px}.wte-process-layout .wte-popup-sidebar .wte-booking-summary::-webkit-scrollbar-track{background-color:transparent}.wte-process-layout .wte-popup-sidebar .wte-booking-summary::-webkit-scrollbar-thumb{background-color:#eee;border-radius:5px}.wte-process-layout .wte-popup-sidebar .wte-booking-summary::-webkit-scrollbar-thumb:hover{background-color:#ccc}}.wte-process-layout .wte-popup-sidebar .wte-booking-summary .wte-booking-block-title{font-size:14px;line-height:21px;color:#170d44;opacity:.6;text-transform:uppercase;font-weight:500;margin-bottom:15px}.wte-process-layout .wte-popup-sidebar .wte-booking-summary .wte-booking-trip-title{font-size:20px;line-height:29px;color:#170d44;opacity:.8;font-weight:500;margin-bottom:15px}.wte-process-layout .wte-popup-sidebar .wte-booking-summary .wte-booking-dates{margin-bottom:30px}.wte-process-layout .wte-popup-sidebar .wte-booking-summary .wte-booking-dates p{margin:0;font-size:14px;line-height:21px;color:#170d44;opacity:.8}.wte-process-layout .wte-popup-sidebar .wte-booking-summary .wte-booking-dates p strong{font-size:13px;font-weight:500}.wte-process-layout .wte-popup-sidebar .wte-booking-summary .wte-booking-dates p.wte-booking-starting-date{margin-bottom:5px}.wte-process-layout .wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info{margin-top:20px;display:flex;flex-direction:column}.wte-process-layout .wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .wte-booking-summary-info-title{font-size:13px;font-weight:500;color:#fff;display:inline-block;background-color:rgba(23,13,68,.7);border-radius:3px 3px 0 0;padding:5px 10px;margin:0;align-self:start;position:sticky;top:0}.wte-process-layout .wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .wte-booking-trip-info{padding:15px 0 25px;border-top:1px solid rgba(23,13,68,.1)}.wte-process-layout .wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .wte-booking-trip-info .wte-booking-details:not(:last-child){margin-bottom:20px}.wte-process-layout .wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .wte-booking-trip-info .wte-booking-details .wte-booking-details-title{font-size:14px;font-weight:700;color:rgba(23,13,68,.8);font-style:italic;margin-bottom:10px}.wte-process-layout .wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .wte-booking-trip-info .wte-booking-details ul{list-style:none;padding:0;margin:0}.wte-process-layout .wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .wte-booking-trip-info .wte-booking-details ul li{display:flex;flex-wrap:wrap;justify-content:space-between;line-height:1;color:#170d44}.wte-process-layout .wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .wte-booking-trip-info .wte-booking-details ul li:not(:last-child){margin-bottom:15px}.wte-process-layout .wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .wte-booking-trip-info .wte-booking-details ul li strong{font-weight:600}.wte-process-layout .wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .wte-booking-trip-info .wte-booking-details ul li label{margin:0;font-size:13px}.wte-process-layout .wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .wte-booking-trip-info .wte-booking-details ul li label .qty{font-size:12px;font-weight:400}.wte-process-layout .wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .wte-booking-trip-info .wte-booking-details ul li .amount-figure{font-size:14px}.wte-process-layout .wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .total-amount{text-align:right;padding:10px 0;border-top:1px solid rgba(23,13,68,.1);background:#fff;position:sticky;bottom:0}.wte-process-layout .wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .total-amount .price{font-size:20px;color:rgba(23,13,68,.9);margin-bottom:0}.wte-process-layout .wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .total-amount .price .total-text{font-size:18px;font-weight:500}.wte-process-layout .wte-process-tab-controller{display:flex;flex-direction:column;text-align:center;padding:30px 0;background-color:#fff}@media(min-width: 768px){.wte-process-layout .wte-process-tab-controller{margin-left:-10px;width:calc(100% + 20px);display:block;padding:30px 55px;position:absolute;bottom:1px}}.wte-process-layout .wte-process-tab-controller .wte-process-btn{font-weight:500;transition:all .3s linear}.wte-process-layout .wte-process-tab-controller .wte-process-btn-prev{font-size:14px;color:var(--primary-color);border:none;background:none}@media(min-width: 768px){.wte-process-layout .wte-process-tab-controller .wte-process-btn-prev{position:absolute;left:0;top:50%;transform:translateY(-50%)}}.wte-process-layout .wte-process-tab-controller .wte-process-btn-prev svg path{stroke:var(--primary-color)}.wte-process-layout .wte-process-tab-controller .wte-process-btn-prev:hover{text-decoration:underline}.wte-process-layout .wte-process-tab-controller .wte-process-btn-next{padding:15.5px 60px;font-size:18px;background-color:var(--primary-color);color:#fff;border-radius:3px;border:none;box-shadow:0 7px 26px rgba(0,0,0,.16);text-transform:capitalize}.wte-process-layout .wte-process-tab-controller .wte-process-btn-next:hover{background-color:#170d44}.wpte-select-options{display:inline-block;position:relative;font-size:15px;margin:0 15px}.wpte-select-options .option-toggle{font-size:13px;font-weight:600;line-height:1.5;color:#170d44;padding:5px 10px;cursor:pointer;border-radius:5px;border:none;background-color:#fff;box-shadow:0 2px 2px rgba(0,0,0,.1);padding-right:32px;position:relative;text-transform:capitalize}.wpte-select-options .option-toggle::after{content:"";width:9px;height:7px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10.828' height='6.828' viewBox='0 0 10.828 6.828'%3E%3Cpath id='Path_23948' data-name='Path 23948' d='M3294.464,368.331l-4,4,4,4' transform='translate(-366.917 3295.878) rotate(-90)' fill='none' stroke='%23170d44' stroke-linecap='round' stroke-width='2' opacity='0.6'/%3E%3C/svg%3E%0A");background-size:100%;background-repeat:no-repeat;position:absolute;right:10px;top:50%;transform:translateY(-50%);transform-origin:center;transition:all .3s ease}.wpte-select-options .option-toggle:hover{background-color:rgba(23,23,23,.05)}.wpte-select-options .wpte-select-options-wrapper{position:absolute;border-radius:5px;box-shadow:0 2px 10px rgba(0,0,0,.15);background-color:#fff;padding:15px;min-width:100%;margin-top:10px;transform:translateY(15px);visibility:hidden;opacity:0;transition:all .3s ease;z-index:111}.wpte-select-options .wpte-select-options-wrapper::before,.wpte-select-options .wpte-select-options-wrapper::after{content:"";border-bottom:8px solid #fff;border-left:8px solid transparent;border-right:8px solid transparent;position:absolute;left:15px;bottom:100%}.wpte-select-options .wpte-select-options-wrapper::before{border-bottom-color:rgba(0,0,0,.1);margin-bottom:0px}.wpte-select-options.active .option-toggle::after{transform:translateY(-50%) rotate(180deg)}.wpte-select-options.active .wpte-select-options-wrapper{visibility:visible;opacity:1;transform:translateY(0)}.wpte-select-options ul{list-style:none;margin:0;padding:0}.wpte-select-options ul li{padding:10px 0}.wpte-group-discount-options .wpte-select-options-wrapper{width:300px}.wpte-group-discount-options .options-list{display:flex;flex-direction:column}.wpte-group-discount-options .options-list li{display:flex;justify-content:space-between}.wpte-group-discount-options .options-list li:not(:last-child){border-bottom:1px solid rgba(0,0,0,.1)}.wpte-group-discount-options .options-list li.list-heading{font-weight:600;border-bottom-width:2px}.wpte-group-discount-options .options-list li>span{flex:1}.wpte-group-discount-options .options-list li .price-per-person,.wpte-group-discount-options .options-list li .traveler-price{text-align:right}.wte-global-popup{max-width:100%;width:100vw;height:100vh;background-color:#fff;position:fixed;left:50%;top:50%;transform:translate(-50%, -50%);border-radius:3px;box-shadow:0 7px 26px rgba(0,0,0,.16)}@media(min-width: 768px){.wte-global-popup{width:90%;height:81.1%}}@media(min-width: 1200px){.wte-global-popup{max-width:1367px}}.wte-global-popup .mfp-close{position:absolute;top:12px;right:12px;padding:0;border:none;background:none;width:14px;height:14px;display:flex;align-items:center;justify-content:center;line-height:0;font-size:0px;transition:all .1s linear;opacity:.2;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.828' height='14.828' viewBox='0 0 14.828 14.828'%3E%3Cg id='Component_8_7' data-name='Component 8 – 7' transform='translate(1.414 1.414)'%3E%3Cg id='Group_2308' data-name='Group 2308' opacity='1'%3E%3Cg id='Group_2307' data-name='Group 2307'%3E%3Cpath id='Path_23938' data-name='Path 23938' d='M-3543.213-3525.86l12,12' transform='translate(3543.213 3525.86)' fill='none' stroke='%23170d44' stroke-linecap='round' stroke-width='2'/%3E%3Cpath id='Path_23939' data-name='Path 23939' d='M-3531.213-3525.86l-12,12' transform='translate(3543.213 3525.86)' fill='none' stroke='%23170d44' stroke-linecap='round' stroke-width='2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");background-size:100%;background-repeat:no-repeat}.wte-global-popup .mfp-close:hover{opacity:1}.wte-global-popup .mfp-close:active{top:12px}.wpte-booking-area{box-shadow:0 0 32px rgba(0,0,0,.08);border-radius:5px;font-family:var(--primary-font);font-size:14px;line-height:2;color:var(--font-color);background-color:#fff}.wpte-booking-area .wpte-custom-tooltip{width:12px;height:12px;border-radius:50%;display:inline-block;background-image:url("data:image/svg+xml,%3Csvg width='7' height='8' viewBox='0 0 7 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.86115 4.46133C4.60133 4.55361 4.3759 4.72306 4.21506 4.94699C4.05421 5.17092 3.96563 5.43865 3.96115 5.71432V6.02835H3.06815C3.04971 5.67567 3.08342 5.32219 3.16815 4.97934C3.35597 4.56734 3.67156 4.22683 4.06815 4.00833C4.85715 3.54633 5.22215 3.07035 5.16815 2.58035C5.09015 1.88035 4.63013 1.51234 3.79413 1.46634C3.36252 1.42667 2.9319 1.55188 2.58887 1.8168C2.24584 2.08173 2.01584 2.46673 1.94513 2.89435L0.994141 2.49435L1.15112 2.13434C1.40302 1.62754 1.8112 1.21513 2.31537 0.958007C2.81954 0.700881 3.393 0.612651 3.95114 0.706328C5.36714 0.775328 6.14014 1.38134 6.27014 2.51333C6.34881 3.23467 5.87679 3.88499 4.85413 4.46432L4.86115 4.46133ZM3.96814 7.79333H3.06815V6.90134H3.96814V7.79333Z' fill='white'/%3E%3C/svg%3E%0A");background-repeat:no-repeat;background-position:center;cursor:pointer;position:relative;background-color:var(--primary-color);margin-left:5px}.wpte-booking-area .wpte-custom-tooltip::before{content:attr(data-title);width:150px;background:rgba(0,0,0,.9);border-radius:5px;line-height:1.4;font-size:12px;padding:10px;color:#fff;position:absolute;margin-bottom:5px;bottom:100%;left:50%;transform:translateX(-50%);opacity:0;visibility:hidden;transition:all .3s ease}.wpte-booking-area .wpte-custom-tooltip::after{content:"";border-top:5px solid rgba(0,0,0,.9);border-left:5px solid transparent;border-right:5px solid transparent;position:absolute;bottom:100%;opacity:0;visibility:hidden;transition:all .3s ease}.wpte-booking-area .wpte-custom-tooltip:hover::before,.wpte-booking-area .wpte-custom-tooltip:hover::after{visibility:visible;opacity:1}.wpte-booking-area .wpte-booking-inner-wrapper{position:relative;padding-top:22px;padding-bottom:24px}.wpte-booking-area .wpte-bf-btn{padding:16px;background:#efefef;border:none;cursor:pointer;border-radius:3px}.wpte-booking-area .wpte-bf-btn.wte-book-now{font-size:18px;background:var(--primary-color);color:#fff}.wpte-booking-area .wpte-bf-btn:active{background:var(--font-color);color:#fff}.wpte-booking-area .wpte-bf-gd-text{display:inline-block;max-width:100%;font-size:13px;line-height:1.5;background:rgba(var(--primary-color-rgb), 0.1);padding:1px 10px;position:absolute;top:1px;right:1px}.wpte-booking-area .wpte-bf-discount-tag{display:inline-block;font-size:14px;line-height:1;font-weight:600;color:#fff;background:#ea7810;border-radius:14px;padding:5.5px 10px;margin:0 0 17px 25px}.wpte-booking-area .wpte-bf-price-wrap{display:flex;flex-wrap:wrap;padding:0;border:none;background:none}.wpte-booking-area .wpte-bf-price{display:flex;width:100%;flex-direction:column;flex:1 0 50%;padding:24px;padding-bottom:24px;align-items:unset;border-bottom:1px solid rgba(var(--primary-color-rgb), 0.1);margin-bottom:0}@media(min-width: 768px){.wpte-booking-area .wpte-bf-price{width:50%}}.wpte-booking-area .wpte-bf-price:last-child{border-bottom:1px solid rgba(var(--primary-color-rgb), 0.1)}.wpte-booking-area .wpte-bf-price .wpte-bf-price-from{font-size:13px;font-weight:500;margin-right:5px}.wpte-booking-area .wpte-bf-price del{font-size:14px;line-height:1}.wpte-booking-area .wpte-bf-price ins{font-weight:500}.wpte-booking-area .wpte-bf-price .wpte-bf-price-amount{font-size:22px;line-height:22px;font-weight:500;text-decoration:none}.wpte-booking-area .wpte-bf-price .wpte-bf-pqty{line-height:21px;color:#061626;font-size:14px}.wpte-booking-area .wpte-bf-price .wpte-bf-offer-price{display:flex;flex-wrap:wrap;align-items:center;grid-gap:5px}.wpte-booking-area .wpte-bf-content{margin-top:0;padding:24px 25px 15px}.wpte-booking-area .wpte-bf-content ul,.wpte-booking-area .wpte-bf-content ol{margin:0;padding:0;list-style:none}.wpte-booking-area .wpte-bf-content ul li,.wpte-booking-area .wpte-bf-content ol li{position:relative;padding-left:22px;margin-bottom:9px}.wpte-booking-area .wpte-bf-content ul li::before,.wpte-booking-area .wpte-bf-content ol li::before{content:"";position:absolute;left:0;color:var(--primary-color)}.wpte-booking-area .wpte-bf-content ul li::before{width:12px;height:6px;top:8px;border:1px solid transparent;border-left-color:var(--primary-color);border-bottom-color:var(--primary-color);transform:rotate(315deg)}.wpte-booking-area .wpte-bf-content ol{counter-reset:order-count}.wpte-booking-area .wpte-bf-content ol li{counter-increment:order-count}.wpte-booking-area .wpte-bf-content ol li::before{content:counter(order-count);font-style:italic}.wpte-booking-area .wpte-bf-btn-wrap{margin-top:9px;padding:0 25px}.wpte-booking-area .wpte-bf-btn-wrap .wpte-bf-btn{width:100%}.wpte-booking-area .wpte-booking-footer-text{line-height:1.4;text-align:center;padding:24px;border-top:1px solid rgba(var(--primary-color-rgb), 0.05)}.wpte-booking-area .wpte-booking-footer-text a,.wpte-booking-area .wpte-booking-footer-text a:link{color:var(--primary-color);text-decoration:none}.wpte-booking-area .wpte-booking-footer-text a:hover,.wpte-booking-area .wpte-booking-footer-text a:link:hover{text-decoration:underline}button:disabled{opacity:.5;cursor:not-allowed !important}@-webkit-keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}button:disabled.btn-loading{opacity:.9;display:inline-flex;align-items:center;justify-content:center}button:disabled.btn-loading::before{content:"";display:inline-block;width:18px;height:18px;margin-right:10px;-webkit-animation:spin 1s infinite linear;animation:spin 1s infinite linear;background-image:url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fad' data-icon='spinner-third' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='svg-inline--fa fa-spinner-third fa-w-16 fa-spin fa-lg'%3E%3Cg class='fa-group'%3E%3Cpath fill='%23cccccc36' d='M478.71 364.58zm-22 6.11l-27.83-15.9a15.92 15.92 0 0 1-6.94-19.2A184 184 0 1 1 256 72c5.89 0 11.71.29 17.46.83-.74-.07-1.48-.15-2.23-.21-8.49-.69-15.23-7.31-15.23-15.83v-32a16 16 0 0 1 15.34-16C266.24 8.46 261.18 8 256 8 119 8 8 119 8 256s111 248 248 248c98 0 182.42-56.95 222.71-139.42-4.13 7.86-14.23 10.55-22 6.11z' class='fa-secondary'%3E%3C/path%3E%3Cpath fill='%23ccc' d='M271.23 72.62c-8.49-.69-15.23-7.31-15.23-15.83V24.73c0-9.11 7.67-16.78 16.77-16.17C401.92 17.18 504 124.67 504 256a246 246 0 0 1-25 108.24c-4 8.17-14.37 11-22.26 6.45l-27.84-15.9c-7.41-4.23-9.83-13.35-6.2-21.07A182.53 182.53 0 0 0 440 256c0-96.49-74.27-175.63-168.77-183.38z' class='fa-primary'%3E%3C/path%3E%3C/g%3E%3C/svg%3E")}.single-trip .mfp-wrap{z-index:999999}.widget-area{display:block !important}

/*# sourceMappingURL=wte-public.css.map*/