body {
    width: 100%;
    font-family: "Lato", sans-serif;
}

.dropdown-menu {
    inset: unset !important;
}

.toolbar {
    width: 100%;
    height: 80px;
    background-color: #023047;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toolbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.back-btn {
    color: #ffffff;
    font-size: 15px;
    text-decoration: none;
    position: relative;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.back-btn img {
    width: 24px;
    height: 24px;
    transform: scaleX(-1);
}

.back-btn:hover,
.phone-number:hover {
    color: #fff !important;
}

.logo {
    height: 60px;
}

.logo-main {
    margin: auto;
    padding-right: 30px;
}

.phone-number {
    color: #ffffff;
    font-size: 15px;
    text-decoration: none;
    position: relative;
    padding: 10px;
}

.phone-number::after {
    width: 24px;
    height: 24px;
    content: "";
    position: absolute;
    background: url("../assets/images/phone.svg");
    background-size: cover;
    left: -23px;
}

.logo-mobile {
    height: 35px;
    display: none;
    margin-left: -45px;
}

.hero-area {
    width: 100%;
    height: 250px;
    background: url("../assets/images/choose-plan-bg.webp") no-repeat;
    background-size: cover;
}

.form-toolbar {
    width: 100%;
    height: 90px;
    -webkit-box-shadow: 0px 0px 20px -8px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 20px -8px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 20px -8px rgba(0, 0, 0, 0.25);
    background-color: #fff;
}

.form-toolbar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 16px;
}

.form-toolbar .container {
    display: flex;
    width: 80%;
}

.steps-progress {
    width: 100%;
    height: 2px;
    background-color: #e2e2e2;
    position: relative;
}

.steps-filled {
    width: 0%;
    height: 100%;
    background-color: #023047;
    transition-duration: 300ms;
}

.step-1::before {
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0px;
    top: -12px;
    background-image: url("../assets/images/tick.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #fff;
    border-radius: 50px;
}

.step-2::before {
    content: "";
    width: 28px;
    height: 28px;
    position: absolute;
    top: 0px;
    left: 0px;
    top: -12px;
    background: url("../assets/images/plane.png");
    background-size: 100%;
    border-radius: 50px;
    background-repeat: no-repeat;
    background-color: #fff;
}

.step-3::before {
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0px;
    left: 0px;
    top: -12px;
    background-color: #fff;
    border: 2px solid #e2e2e2;
    border-radius: 50px;
}

.step-4 {
    width: 30%;
}

.step-4::before {
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0px;
    left: 0px;
    top: -12px;
    background-color: #fff;
    border: 2px solid #e2e2e2;
    border-radius: 50px;
}

.progress-1 {
    width: 100%;
}

.step-1::after {
    content: "Get Quote";
    font-size: 14px;
    position: absolute;
    left: -20px;
    top: 16px;
}

.step-2::after {
    content: "Plan Option";
    font-size: 14px;
    position: absolute;
    left: -20px;
    top: 16px;
}

.step-3::after {
    content: "Travellers";
    font-size: 14px;
    position: absolute;
    left: -20px;
    top: 16px;
}

.step-4::after {
    content: "Payment";
    font-size: 14px;
    position: absolute;
    left: -20px;
    top: 16px;
}

.trip-detail-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e2e2e2;
}

.trip-details {
    width: 100%;
    margin: auto;
}

.detail-label {
    color: #546681;
    font-weight: 600;
    font-size: 15px;
}

.detail-item {
    font-size: 15px;
    color: #636363;
    margin-left: 4px;
}

.trip-details .container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin: auto;
}

.edit-data-btn {
    font-size: 14px;
    padding: 3px 10px;
    color: #0078d4;
    border: 1px solid #0078d4;
    border-radius: 3px;
    text-decoration: none;
    transition-duration: 300ms;
}

.edit-data-btn.only-desktop {
    margin: auto;
}

.edit-data-btn:hover {
    background-color: #0078d4;
    color: #ffffff;
}

.initial-detail {
    display: inline;
    justify-content: flex-start !important;
    margin-right: 10px;
}

.trip-detail-wrap:nth-of-type(4) {
    border: none;
}

.trip-detail-header-title {
    font-size: 20px;
    font-weight: 600;
    color: #0b2347;
}

.trip-detail-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    display: none;
}

.only-mobile {
    display: none;
}

.form-dropdown {
    width: 100%;
}

.form-dropdown .dropdown-toggle {
    width: 100%;
    height: 40px;
    text-align: start;
    border: 1px solid #e2e2e2;
    font-size: 14px;
    box-shadow: none !important;
    outline: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-dropdown .dropdown-toggle::after {
    display: none;
}

.dropdown-icon {
    margin-left: auto;
    font-size: 18px;
    transition-duration: 300ms;
    position: absolute;
    right: 10px;
}

.form-dropdown .dropdown-toggle.show .dropdown-icon {
    transform: rotate(180deg);
}

.form-control-wrap {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.form-label {
    font-size: 18px;
    font-weight: 500;
    color: #313144;
    font-family: "Saira", sans-serif;
}

.form-dropdown .dropdown-menu {
    width: 100%;
    position: absolute;
    top: 45px !important;
}

.form-dropdown .dropdown-menu li
{
    cursor: pointer;
}

.form-dropdown .dropdown-item {
    padding: 10px 25px;
    font-size: 14px;
    font-family: "Saira", sans-serif;
    text-align: center;
}

.no-center {
    text-align: start !important;
    justify-content: flex-start !important;
}

.plan-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.plc-header {
    height: 80px;
    background-color: transparent;
    padding: 20px;
    box-sizing: border-box;
    display: block;
}
.plc-header[aria-expanded="true"] {
    border-bottom: none;
}
.plc-header-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.plc-plan-title {
    font-size: 20px;
    font-weight: 600;
    color: #484b50;
    margin-top: auto;
    margin-bottom: auto;
}
.plan-price {
    color: #495e7d;
    font-size: 21px;
    font-weight: 600;
}
.plc-content-wrap {
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    border: 1px solid #dfdfdf;
    display: flex;
}
.plc-content-plan-name {
    font-size: 2rem;
    font-weight: 400;
    font-family: "Saira", sans-serif;
    margin: auto;
    text-align: center;
    margin-top: 15px;
}
.plc-price-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}
.plc-price-from {
    color: #909395;
    font-size: 1.6rem;
    text-align: center;
}
.plc-price-per-day {
    color: #909395;
    font-size: 1.2rem;
    text-align: center;
}
.plc-price-highlighted {
    font-size: 2.5rem;
    text-align: center;
    margin: 0px;
    color: #f88c17;
    font-weight: 600;
}

.premium-bg {
    background-color: #aa1b1e !important;
}

.plc-plan-features-table {
    width: 100%;
    margin-top: 30px;
}
.plc-table-row {
    display: flex;
    min-height: 60px;
    align-items: center;
    justify-content: center;
    border: 1px solid #dfdfdf;
    border-bottom: none;
}
.plc-table-row:last-child {
    border-bottom: 1px solid #dfdfdf;
}
.plc-table-col {
    width: 100%;
    padding: 15px;
    text-align: start;
}
.plc-table-col:nth-of-type(1) {
    border-right: 1px solid #dfdfdf;
}
.btn-choose-plan {
    padding: 15px 25px;
    color: #fff;
    background-color: #f88c17;
    font-weight: 600;
    text-decoration: none;
    border: none;
}
.btn-standard {
    background-color: #f88c17;
    color: #fff;
}
.btn-flexbox {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    flex-direction: column;
    gap: 20px;
    margin-right: auto;
}
.view-info-btn {
    font-size: 14px;
    color: #002b45;
}

.show-benefits-btn {
    font-size: 16px;
    font-weight: 500;
    color: #0774b3;
}

.premium-colored {
    color: #aa1b1e !important;
}

.premium-bg {
    background-color: #aa1b1e;
}

.plc-header:nth-of-type(2) {
    border-top: 0px;
}

.explorer-btn,
.comp-bt {
    background-color: #aa1b1e !important;
}

.plans-desktop-wrap {
    width: 100%;
    padding-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plans-desktop-container {
    width: 100%;
    margin: auto;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0px;
    gap: 0px;
    margin-top: 0px;
}

.plans-desktop-container .col {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding: 0px;
    padding-top: 18px;
    padding-bottom: 0px;
}


.plans-desktop-container > .col:not(.selected-plan-wrap) {
    border-top: 2px solid transparent;
}

.plans-desktop-container .col {
    flex:unset !important;
}

.col-mt-20 {
    margin-top: 18px;
}

.logo-icon-wrap {
    width: 80px;
    height: 80px;
    background-color: #f88c17;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    flex-shrink: 0;
}

.col-highlighted {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #eeeeee;
}

.row-bordered {
    width: 100%;
    height: 60px;
    border: 1px solid #dcdad7;
    border-left: none;
    border-right: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 30px;
    padding-right: 30px;
}

.row-no-top-border {
    border-top: none;
}

.row-bordered:last-child {
    border-bottom: none;
}

.row-caption {
    justify-content: start;
}

.col-centered .row-bordered {
    justify-content: center;
    text-align: center;
}

.plan-title-dp {
    font-weight: 400;
    font-size: 1.7rem;
    font-family: "Saira", sans-serif;
    margin-bottom: 10px;
    margin-top: 15px;
    text-align: center;
}

.price-wrap-flex-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.from-text {
    font-size: 22px;
    color: #909395;
}

.to-day {
    font-size: 15px;
    color: #909395;
}

.plans-col-header {
    min-height: 270px;
    max-height: 270px;
    margin-bottom: 30px;
}

.text-mini-info {
    font-size: 13px;
    color: #909395;
    text-align: center;
}

.mn-wrap {
    min-height: 100px;
}

.btn-choose-plan:hover {
    color: #fff !important;
}

.form-sub-control-wrap {
    width: 100%;
    min-height: 70px;
    display: flex;
    align-items: stretch;
}

.form-sub-control-wrap .form-label {
    margin-bottom: 0px;
    display: flex;
    align-items: center;
}

.plan-wrap {
    border: 1px solid #dadada;
    border-radius: 5px;
    overflow: hidden;
}

.bordered-wrap {
    border: 1px solid #dadada;
    border-left: none;
    border-right: none;
    border-bottom: none;
}

.sub-container-wrap {
    width: 100%;
    display: flex;
    gap: 20px;
    padding: 0px 30px;
    align-items: center;
}

.cover-wrap {
    padding: 0px 30px;
}

.sub-container-wrap div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.sub-container-wrap .btn-flexbox {
    gap: 15px;
    padding-top: 15px;
    padding-bottom: 20px;
}

.wrap-centered {
    justify-content: center;
}

.plans-mobile-wrap {
    width: 100%;
    display: none;
}

.plans-mobile-wrap .accordion {
    width: 100%;
}

.plans-mobile-wrap .accordion .accordion-button {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.plans-mobile-wrap .accordion .accordion-button::after {
    display: none;
}

.plan-name-mobile {
    font-size: 1.2rem;
    font-family: "Saira", sans-serif;
    color: #6a6d72;
    text-transform: uppercase;
    font-weight: 500;
}

.plan-price-mobile {
    font-size: 1.2rem;
    color: #f88c17;
    text-transform: uppercase;
    font-weight: 600;
}

.bottom-bordered {
    border-bottom: 1px solid #e2e2e2 !important;
}

.accordion-item {
    border: none !important;
    border-radius: 0px;
}

.accordion-button,
.accordion-body {
    border: 1px solid #dadada !important;
}

.accordion-body {
    margin-top: 15px;
    -webkit-box-shadow: 0px 0px 40px -22px rgba(0, 0, 0, 0.42);
    -moz-box-shadow: 0px 0px 40px -22px rgba(0, 0, 0, 0.42);
    box-shadow: 0px 0px 40px -22px rgba(0, 0, 0, 0.42);
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.accordion-button[aria-expanded="true"] {
    background-color: #f4f6f8;
}

.bb-none {
    border-bottom: none;
}

.plc-content-wrap {
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    border: 1px solid #dfdfdf;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: 50px;
}

.form-check-input {
    cursor: pointer;
}

.row-bordered .dropdown {
    max-width: 160px;
}

.row-bordered .dropdown .btn {
    max-height: 35px;
    margin: auto;
}

.row-bordered .dropdown .dropdown-menu {
    max-width: 120px;
    top: 37px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    transform: translateX(-50%);
    cursor: pointer;
}

footer {
    width: 100%;
    height: auto;
    background: #023047;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright-section {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #ffffff;
    padding-bottom: 30px;
    padding-top: 30px;
}

.copyright-links {
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding-bottom: 0px;
}

.copyright-links a {
    text-decoration: none;
    color: #ffffff;
}

.copyright-links a:hover {
    text-decoration: underline;
}

.copyright-text {
    text-align: center;
}

.optional-cover-mobile {
    border: none !important;
    padding: 0px;
}

.optional-cover-mobile .form-sub-control-wrap {
    padding: 0px;
}

.drop-shadow-top {
    background-color: #fff;
    box-shadow: 0px -10px 44px -28px rgba(0, 0, 0, 1);
    z-index: 999;
    position: relative;
}

.drop-shadow-bottom {
    background-color: #fff;
    box-shadow: 0px 15px 50px -28px rgba(0, 0, 0, 1);
}

.col-light-highlighted {
    background-color: #fbfbfb;
}

.pad-table-left {
    padding-left: 30px;
    padding-right: 10px;
}

.sub-container-wrap .dropdown {
    max-width: 165px;
}

.tooltip-btn {
    width: 16px !important;
    height: 16px !important;
    border: none;
    background-color: transparent;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiM4Nzg3ODciIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iZmVhdGhlciBmZWF0aGVyLWluZm8iPjxjaXJjbGUgY3g9IjEyIiBjeT0iMTIiIHI9IjEwIj48L2NpcmNsZT48bGluZSB4MT0iMTIiIHkxPSIxNiIgeDI9IjEyIiB5Mj0iMTIiPjwvbGluZT48bGluZSB4MT0iMTIiIHkxPSI4IiB4Mj0iMTIuMDEiIHkyPSI4Ij48L2xpbmU+PC9zdmc+");
    background-size: 16px !important;
    margin-top: 1px;
    background-repeat: no-repeat;
    padding: 0px !important;
    flex-shrink: 0;
}

.tooltip-arrow {
    display: none !important;
}

.tooltip-inner {
    background-color: rgba(0, 0, 0, 0.9) !important;
    font-size: 12px;
    text-align: start;
}

.tooltip-inner {
    max-width: 300px !important;
}

.form-label-small .tooltip-btn {
    position: relative;
    top: 3px;
    left: -3px;
}

.tooltip-mobile-main {
    position: relative;
    top: 2px;
    left: -3px;
}

.tooltip-optional-desktop {
    position: relative;
    top: 1px;
    left: -3px;
}

/* Preloader */
.preloader {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition-duration: 800ms;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.preloader-show {
    visibility: visible;
    opacity: 1;
}

.preloader-wrapper {
    width: 50%;
    height: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 15px;
    gap: 25px;
    text-align: center;
    -webkit-box-shadow: 0px 0px 37px -14px rgba(0, 0, 0, 0.53);
    -moz-box-shadow: 0px 0px 37px -14px rgba(0, 0, 0, 0.53);
    box-shadow: 0px 0px 37px -14px rgba(0, 0, 0, 0.53);
    max-width: 500px;
    max-height: 300px;
}

.loader-title {
    font-size: 22px;
    line-height: 1.4;
    margin-top: 10px;
}

.loader {
    position: relative;
    margin: 0 auto;
    width: 100px;
}

.loader:before {
    content: "";
    display: block;
    padding-top: 100%;
}

.circular {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    height: 80px;
    transform-origin: center center;
    width: 80px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    -webkit-animation:
        dash 1.5s ease-in-out infinite,
        color 6s ease-in-out infinite;
    animation:
        dash 1.5s ease-in-out infinite,
        color 6s ease-in-out infinite;
    stroke-linecap: round;
}

/* Dropdown Menu Patch*/
.dropdown-menu {
    inset: unset !important;
}

/* Promocode Notification */
.promocode-notification-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.promocode-notification {
    background-color: #fff6e4;
    padding: 5px;
    font-size: 14px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
    border-radius: 3px;
    padding-left: 10px;
    padding-right: 10px;
    display: none;
}

.promocode-notification-wrap > .form-label {
    margin-bottom: 0px;
}

/* Selected plan notification */
.selected-plan-notification {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 99;
    font-size: 12px;
    padding: 2px 5px;
    border-right: 2px solid rgb(152, 236, 116);
    border-bottom: 2px solid rgb(152, 236, 116);
    background: white;
    visibility: visible !important;
}

.rve-dropdown button
{
    max-height: 35px;
}


/* Alert Banner (Bali) */
.alert-banner
{
    width:100%;
    padding: 12px 0px;
    background-color: #ffeac4;
    position: relative;
    z-index: 999;
}

.alert-banner .container
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.alert-banner span,.alert-banner a
{
    color: #323232;
    font-size: 15px;
}

.alert-banner svg
{
    flex-shrink: 0;
}

/* Customize Decimal Price size */
.accordion-body .price-decimal {
    font-size: 0.6em;
}

/* Excess tooltip Implementation & tiny text update */
.form-label-wrap
{
    display:flex;
}

.form-label-wrap .tooltip-btn
{
    margin-top:6px !important;
    order:2;
}

.form-label-wrap .form-label
{
    margin-bottom:0px !important;
}

.text-mini-info
{
  max-width:300px;
}

.plans-col-header
{
  max-height:290px;
  min-height:290px;
}

@-webkit-keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}
@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}
@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@-webkit-keyframes color {
    100%,
    0% {
        stroke: #d62d20;
    }
    40% {
        stroke: #0057e7;
    }
    66% {
        stroke: #008744;
    }
    80%,
    90% {
        stroke: #ffa700;
    }
}

@keyframes color {
    100%,
    0% {
        stroke: #d62d20;
    }
    40% {
        stroke: #0057e7;
    }
    66% {
        stroke: #008744;
    }
    80%,
    90% {
        stroke: #ffa700;
    }
}

@media screen and (max-width: 1200px) {
    .trip-detail-wrap {
        width: auto;
        padding-right: 30px;
    }

    .trip-detail-wrap:not(.initial-detail) {
        flex-shrink: 0;
    }

    .age-details {
        display: inline;
        flex-shrink: unset !important;
        padding-right: 10px;
    }

    .trip-details .container {
        gap: 1rem;
    }
}

@media screen and (max-width: 992px) {
    .phone-number::after {
        display: none;
    }

    .logo-main {
        margin: auto;
        padding-right: 0px;
    }

    .logo {
        display: none;
    }

    .logo-mobile {
        display: flex;
    }

    .step-1::before,
    .step-2::before,
    .step-3::before,
    .step-4::before {
        width: 18px;
        height: 18px;
        top: -9px;
    }

    .trip-details .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .trip-detail-wrap {
        display: flex;
        border: none;
        flex-direction: column;
        align-items: start;
    }

    .only-mobile {
        display: flex;
    }

    .only-desktop {
        display: none;
    }

    .trip-detail-header {
        display: flex;
    }

    .plans-desktop-wrap {
        display: none;
    }

    .plans-mobile-wrap {
        display: flex;
    }

    .plan-wrap {
        border: none;
    }
    .optional-cover-wrap {
        border: 1px solid #dadada;
    }

    .copyright-section {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .copyright-links {
        border-bottom: 1px solid #263243;
        width: 100%;
        padding-bottom: 20px;
    }

    .wrap-centered {
        text-align: start;
        justify-content: flex-start;
        padding-left: 20px;
    }

    .sub-container-wrap {
        padding: 0px;
    }

    .pad-left {
        padding-left: 30px;
    }

    .detail-item {
        margin-left: 0px;
    }

    .rve-dropdown button
    {
        max-height: unset;
    }
}

@media screen and (max-width: 768px) {
    .phone-number {
        font-size: 13px;
    }

    .back-btn {
        font-size: 13px;
    }

    .preloader-wrapper {
        width: 90%;
    }

    .tooltip-inner {
        max-width: 200px !important;
    }

    .promocode-notification-wrap {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;
        gap: 12px;
    }

    .promocode-notification {
        width: 100%;
        padding: 12px;
        order: 1;
    }

    .promocode-notification-wrap .form-label {
        order: 2;
    }

    .promocode-notification-wrap .form-label-wrap {
        order: 2;
    }
}

@media screen and (max-width: 567px) {
    .step-1::after,
    .step-2::after,
    .step-3::after,
    .step-4::after {
        font-size: 10px;
        position: absolute;
        left: -14px;
        top: 16px;
    }

    .step-2::after {
        left: -18px;
    }

    .step-3::after {
        left: -12px;
    }

    .step-4::after {
        left: -10px;
    }

    .form-toolbar .container {
        width: 90%;
    }
    .form-sub-control-wrap {
        padding-left: 15px;
        padding-right: 15px;
    }

    .wrap-centered,
    .plc-table-row .plc-table-col:nth-of-type(2) {
        text-align: center;
        justify-content: center;
    }

    .loader-title {
        font-size: 18px;
    }

    .form-label {
        margin-top: 20px;
    }

    .promocode-notification-wrap .form-label {
        margin-top: 0px;
    }
}

@media screen and (max-width: 400px) {
    .trip-detail-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .plc-content-plan-name {
        font-size: 1.5rem;
    }

    .loader-title {
        font-size: 17px;
    }

    .plc-table-col {
        font-size: 15px;
    }

    .tooltip-btn {
        width: 15px !important;
        height: 15px !important;
        background-size: 15px !important;
        background-repeat: no-repeat;
    }
}

@media screen and (min-width:992px) {
    .price-decimal {
        font-size: 0.6em;
    }
}

/* Fixed Header Aligment issues */

.trip-detail-wrap {
    width: auto;
    display: inline;
    margin: auto;
    padding: 0px 20px;
}

.initial-detail {
    padding-left: 0px;
    margin-left: 0px !important;
}

.detail-item {
    margin-right: 4px;
}

.detail-item {
    display: inline-flex;
    flex-wrap: wrap;
    margin-left: 0px;
}

.trip-details .container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
}

.trip-detail-wrap {
    margin: auto;
}

.trip-detail-item-wrap {
    display: flex;
    border-right: 1px solid #e2e2e2;
}

.trip-detail-wrap {
    border: none;
}

.trip-detail-item-wrap:last-of-type {
    border: none;
}

@media screen and (max-width:1200px) {
    .trip-detail-wrap{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }
}

@media screen and (max-width:992px) {
    .trip-details .container {
        display: flex;
        flex-direction: column;
    }

    .trip-detail-wrap {
        padding-left: 0px;
    }

    .trip-detail-item-wrap {
        border: none;
    }
}

/* Hide re-captcha badge */
.grecaptcha-badge {
    visibility: hidden;
}