@import url("https://fonts.googleapis.com/css?family=Poppins:400,400i,500,500i,600,600i,700,700i&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
    
@font-face {
    font-family: "Champagne & Limousines", sans-serif;
    src: url("/webfonts/Champagne & Limousines.ttf") format("truetype"),
        url("/webfonts/Champagne & Limousines.ttf") format("truetype");
}
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-bottom: 0.5rem;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    line-height: 1.5;
}
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1280px;
    }
}
@media (min-width: 767px) {
    .hidden-md {
        display: none !important;
    }
    h1,
    .h1 {
        font-size: 36px;
    }

    h2,
    .h2 {
        font-size: 30px;
    }

    h3,
    .h3 {
        font-size: 22px;
    }

    h4,
    .h4 {
        font-size: 18px;
    }

    h5,
    .h5 {
        font-size: 16px;
    }

    h6,
    .h6 {
        font-size: 14px;
    }

    .font-12 {
        font-size: 12px;
    }
    .font-14 {
        font-size: 14px !important;
    }
    .font-16 {
        font-size: 16px;
    }
    .font-18 {
        font-size: 18px;
    }
    .font-20 {
        font-size: 20px;
    }
    .font-22 {
        font-size: 22px !important;
    }
    .font-24 {
        font-size: 24px;
    }
    .font-26 {
        font-size: 26px !important;
    }
}

@media (max-width: 767px) {
    .bg-top-header,
    .hidden-sm {
        display: none !important;
    }
    h1,
    .h1 {
        font-size: 32px;
    }

    h2,
    .h2 {
        font-size: 22px;
    }

    h3,
    .h3 {
        font-size: 18px;
    }

    h4,
    .h4 {
        font-size: 16px;
    }

    h5,
    .h5 {
        font-size: 14px;
    }

    h6,
    .h6 {
        font-size: 10px;
    }

    .font-12 {
        font-size: 10px;
    }
    .font-14 {
        font-size: 12px;
    }
    .font-16 {
        font-size: 14px;
    }
    .font-18 {
        font-size: 16px;
    }
    .font-20 {
        font-size: 18px;
    }
    .font-22 {
        font-size: 20px;
    }
    .font-24 {
        font-size: 21px;
    }
    .font-26 {
        font-size: 22px !important;
    }
    .font-sm-14 {
        font-size: 14px;
    }
    .font-sm-12 {
        font-size: 12px;
    }
}

@media only screen and (max-width: 320px) {
    h1,
    .h1 {
        font-size: 28px;
    }

    h2,
    .h2 {
        font-size: 22px;
    }

    h3,
    .h3 {
        font-size: 16px;
    }

    h4,
    .h4 {
        font-size: 14px;
    }

    h5,
    .h5 {
        font-size: 10px;
    }

    h6,
    .h6 {
        font-size: 9px;
    }

    .font-26 {
        font-size: 18px !important;
    }
}
.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 5px;
    /*   transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; */
    box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),
        0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
    transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: capitalize;
    border-radius: 0;
}

@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }
}

.btn:hover {
    color: #212529;
    text-decoration: none;
}

.btn:focus,
.btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(244, 98, 58, 0.25);
}

.btn.disabled,
.btn:disabled {
    opacity: 0.65;
}
.opacity-90 {
    opacity: 0.9;
}

a.btn.disabled,
fieldset:disabled a.btn {
    pointer-events: none;
}

.btn-primary {
    color: #fff;
    background-color: #ff8000;
    border-color: #ff8000;
}

.btn-primary:hover {
    color: #fff;
    background-color: #ff4e00;
    border-color: #ff4e00;
}

.btn-primary:focus,
.btn-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(57, 178, 240, 0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
    color: #fff;
    background-color: #ff8000;
    border-color: #ff8000;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #ff8000;
    border-color: #ff8000;
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(246, 122, 88, 0.5);
}

.btn-secondary {
    color: #fff;
    background-color: #b7cd3b;
    border-color: #b7cd3b;
}

.btn-secondary:hover {
    color: #fff;
    background-color: #477800;
    border-color: #477800;
}

.btn-secondary:focus,
.btn-secondary.focus {
    box-shadow: 0 0 0 0.2rem rgba(183, 205, 59, 0.5);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
    color: #333;
    background-color: #b7cd3b;
    border-color: #b7cd3b;
}

.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #b7cd3b;
    border-color: #b7cd3b;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

#mapid {
    height: 700px;
}

.btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34;
}

.btn-success:focus,
.btn-success.focus {
    box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

.btn-success.disabled,
.btn-success:disabled {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #1e7e34;
    border-color: #1c7430;
}

.btn-success:not(:disabled):not(.disabled):active:focus,
.btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

.btn-info {
    color: #fff;
    background-color: #00327b;
    border-color: #00327b;
}

.btn-info:hover {
    color: #fff;
    background-color: #033a89;
    border-color: #033a89;
}

.btn-info:focus,
.btn-info.focus {
    box-shadow: 0 0 0 0.2rem rgba(3, 158, 137, 0.5);
}

.btn-info.disabled,
.btn-info:disabled {
    color: #fff;
    background-color: #033a89;
    border-color: #033a89;
}

.btn-info:not(:disabled):not(.disabled):active,
.btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #033a89;
    border-color: #033a89;
}
.btn-check:focus + .btn-info,
.btn-info:focus {
    color: #fff;
}
.btn-info:not(:disabled):not(.disabled):active:focus,
.btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(3, 158, 137, 0.5);
}

.btn-warning {
    color: #212529;
    background-color: #ffb03c;
    border-color: #ffb03c;
}

.btn-warning:hover {
    color: #212529;
    background-color: #ffb03c;
    border-color: #ffb03c;
}

.btn-warning:focus,
.btn-warning.focus {
    box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

.btn-warning.disabled,
.btn-warning:disabled {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-warning:not(:disabled):not(.disabled):active,
.btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
    color: #212529;
    background-color: #d39e00;
    border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled):active:focus,
.btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

.btn-danger {
    color: #fff;
    background-color: #ef3b2a;
    border-color: #ef3b2a;
}

.btn-danger:hover {
    color: #fff;
    background-color: #d80400;
    border-color: #d80400;
}

.btn-danger:focus,
.btn-danger.focus {
    box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

.btn-danger.disabled,
.btn-danger:disabled {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #bd2130;
    border-color: #b21f2d;
}

.btn-danger:not(:disabled):not(.disabled):active:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

.btn-light {
    color: #212529;
    background-color: #e1e1e1;
    border-color: #e1e1e1;
}

.btn-light:hover {
    color: #212529;
    background-color: #e1e1e1;
    border-color: #e1e1e1;
}

.btn-light:focus,
.btn-light.focus {
    box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-light.disabled,
.btn-light:disabled {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
    color: #212529;
    background-color: #dae0e5;
    border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled):active:focus,
.btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-dark {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-dark:hover {
    color: #fff;
    background-color: #23272b;
    border-color: #1d2124;
}

.btn-dark:focus,
.btn-dark.focus {
    box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-dark.disabled,
.btn-dark:disabled {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
    color: #fff;
    background-color: #1d2124;
    border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-outline-primary {
    color: #da145e;
    border-color: #da145e;
}

.btn-outline-primary.active {
    color: #fff;
    border-color: #da145e;
    background: #da145e;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #da145e;
    border-color: #da145e;
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(244, 98, 58, 0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
    color: #f4623a;
    background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #da145e;
    border-color: #da145e;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(244, 98, 58, 0.5);
}

.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
    color: #6c757d;
    background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
    color: #28a745;
    border-color: #28a745;
}

.btn-outline-success:hover {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-outline-success:focus,
.btn-outline-success.focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
    color: #28a745;
    background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
    color: #00327b;
    border-color: #00327b;
}

.btn-outline-info:hover {
    color: #fff;
    background-color: #00327b;
    border-color: #00327b;
}

.btn-outline-info:focus,
.btn-outline-info.focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
    color: #00327b;
    background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
    color: #fff;
    background-color: #00327b;
    border-color: #00327b;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
    color: #ffc107;
    border-color: #ffc107;
}

.btn-outline-warning:hover {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-outline-warning:focus,
.btn-outline-warning.focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
    color: #ffc107;
    background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545;
}

.btn-outline-danger:hover {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-outline-danger:focus,
.btn-outline-danger.focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
    color: #dc3545;
    background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
    color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-outline-light:hover {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-outline-light:focus,
.btn-outline-light.focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
    color: #f8f9fa;
    background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active,
.btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
    color: #343a40;
    border-color: #343a40;
}

.btn-outline-dark:hover {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-outline-dark:focus,
.btn-outline-dark.focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
    color: #343a40;
    background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
    font-weight: 400;
    color: #f4623a;
    text-decoration: none;
}

.btn-link:hover {
    color: #d6370c;
    text-decoration: underline;
}

.btn-link:focus,
.btn-link.focus {
    text-decoration: underline;
    box-shadow: none;
}

.btn-link:disabled,
.btn-link.disabled {
    color: #6c757d;
    pointer-events: none;
}

.btn-lg,
.btn-group-lg > .btn {
    padding: 12px 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0rem;
}

.btn-sm,
.btn-group-sm > .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-block + .btn-block {
    margin-top: 0.5rem;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
    width: 100%;
}

.bg-opacity-primary {
    background-color: #f8f3e0 !important;
}
/*
badge */
.badge {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 75%;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .badge {
        transition: none;
    }
}

a.badge:hover,
a.badge:focus {
    text-decoration: none;
}

.badge:empty {
    display: none;
}

.btn .badge {
    position: relative;
    top: -1px;
}

.badge-pill {
    padding-right: 0.6em;
    padding-left: 0.6em;
    border-radius: 10rem;
}

.badge-primary {
    color: #fff;
    background-color: #0062cc;
}

a.badge-primary:hover,
a.badge-primary:focus {
    color: #fff;
    background-color: #ee3e0d;
}

a.badge-primary:focus,
a.badge-primary.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(244, 98, 58, 0.5);
}

.badge-secondary {
    color: #fff;
    background-color: #6c757d;
}

a.badge-secondary:hover,
a.badge-secondary:focus {
    color: #fff;
    background-color: #545b62;
}

a.badge-secondary:focus,
a.badge-secondary.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.badge-success {
    color: #fff;
    background-color: #28a745;
}

a.badge-success:hover,
a.badge-success:focus {
    color: #fff;
    background-color: #1e7e34;
}

a.badge-success:focus,
a.badge-success.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.badge-info {
    color: #fff;
    background-color: #70cbf4;
}

a.badge-info:hover,
a.badge-info:focus {
    color: #fff;
    background-color: #70cbf4;
}

a.badge-info:focus,
a.badge-info.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.badge-warning {
    color: #212529;
    background-color: #ffc107;
}

a.badge-warning:hover,
a.badge-warning:focus {
    color: #212529;
    background-color: #d39e00;
}

a.badge-warning:focus,
a.badge-warning.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.badge-danger {
    color: #fff;
    background-color: #dc3545;
}

a.badge-danger:hover,
a.badge-danger:focus {
    color: #fff;
    background-color: #bd2130;
}

a.badge-danger:focus,
a.badge-danger.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.badge-light {
    color: #212529;
    background-color: #f8f9fa;
}

a.badge-light:hover,
a.badge-light:focus {
    color: #212529;
    background-color: #dae0e5;
}

a.badge-light:focus,
a.badge-light.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.badge-dark {
    color: #fff;
    background-color: #343a40;
}

a.badge-dark:hover,
a.badge-dark:focus {
    color: #fff;
    background-color: #1d2124;
}

a.badge-dark:focus,
a.badge-dark.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

/* badge style */
.bg-primary {
    background-color: #0baaed !important;
}

.bg-default {
    background-color: #f4f5fa !important;
}

a.bg-primary:hover,
a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
    background-color: #002147 !important;
}

.bg-secondary {
    background-color: #38a8cd !important;
}

a.bg-secondary:hover,
a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
    background-color: #38a8cd !important;
}

.bg-success {
    background-color: #b7cd3b !important;
}

a.bg-success:hover,
a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
    background-color: #b7cd3b !important;
}

.bg-info {
    background-color: #70cbf4 !important;
}

a.bg-info:hover,
a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
    background-color: #70cbf4 !important;
}

.bg-warning {
    background-color: #ff8000 !important;
}

a.bg-warning:hover,
a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
    background-color: #ff8000 !important;
}

.bg-danger {
    background-color: #dc3545 !important;
}

a.bg-danger:hover,
a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
    background-color: #bd2130 !important;
}

.bg-light {
    background-color: #f9f9f9 !important;
}

a.bg-light:hover,
a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
    background-color: #f9f9f9 !important;
}

.bg-dark {
    background-color: #121921 !important;
}

a.bg-dark:hover,
a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
    background-color: #1d2124 !important;
}

.bg-white {
    background-color: #fff !important;
}

.bg-transparent {
    background-color: transparent !important;
}

.bg-gray {
    background-color: #f6f6f6 !important;
}

.text-primary {
    color: #ff8000 !important;
}

a.text-primary:hover,
a.text-primary:focus {
    color: #ff8000 !important;
}

.text-secondary {
    color: #00327b !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
    color: #00327b !important;
}

.text-success {
    color: #4f8800 !important;
}

a.text-success:hover,
a.text-success:focus {
    color: #4f8800 !important;
}

.text-info {
    color: #5792f9 !important;
}

a.text-info:hover,
a.text-info:focus {
    color: #5792f9 !important;
}

.text-warning {
    color: #ff9100 !important;
}

a.text-warning:hover,
a.text-warning:focus {
    color: #ff9100 !important;
}

.text-danger {
    color: #e31c18 !important;
}

a.text-danger:hover,
a.text-danger:focus {
    color: #e31c18 !important;
}

.text-light {
    color: #ccc !important;
}

a.text-light:hover,
a.text-light:focus {
    color: #ccc !important;
}

.text-dark {
    color: #000 !important;
}

a.text-dark:hover,
a.text-dark:focus {
    color: #000 !important;
}

.text-body {
    color: #212529 !important;
}

.text-muted {
    color: #777 !important;
}
.font-weight-light {
    font-weight: 300 !important;
}

.font-weight-lighter {
    font-weight: lighter !important;
}

.font-weight-normal {
    font-weight: 400 !important;
}

.font-weight-600 {
    font-weight: 600 !important;
}
.font-weight-500 {
    font-weight: 500 !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.font-weight-bolder {
    font-weight: bolder !important;
}
a {
    color: #00327b;
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    color: #00327b;
    text-decoration: underline;
}

a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
    outline: 0;
}

.rounded-25 {
    border-radius: 25px;
}
/* Navtabs */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background-color: transparent;
    border-bottom: 3px solid #ff8000;
    color: #000;
    cursor: pointer;
}
.nav-pills .nav-link {
    border-radius: 0px !important;
    color: #000;
    position: relative;
    cursor: pointer;
    cursor: pointer;
}
.nav-pills .nav-link.active:before {
    position: absolute;
    content: "";
    -webkit-transform: rotate(180deg);
    top: 40px;
    right: 75%;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ff8000;
}
.tab-home .nav-tabs .nav-item.show .nav-link,
.tab-home .nav-tabs .nav-link.active {
    background-color: transparent;
    border: none;
    border-bottom: 3px solid #ff8000;
    color: #fff;
}
.tab-home .nav-tabs .nav-link {
    margin-bottom: -1px;
    border: 1px solid transparent;
    color: #fff;
    /* border-radius: 0px; */
    position: relative;
    font-size: 16px;
    cursor: pointer;
}
.tab-home .nav-tabs .nav-link.active:before {
    position: absolute;
    content: "";
    -webkit-transform: rotate(180deg);
    top: 40px;
    right: 75%;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ff8000;
}
/* Navtabs */
.principal-navbar .navbar-nav .nav-link {
    color: #00327b;
    font-weight: 700;
    font-size: 16px;
    font-family: "Roboto Condensed", sans-serif;
    padding-left: 0;
    padding-right: 0;
    margin-left: 15px;
    margin-right: 15px;
}
.rating {
    color: #ff9100;
    vertical-align: middle;
}

.principal-navbar .phone-number {
    font-size: 22px !important;
}
@media all and (min-width: 992px) {
    .navbar .megamenu {
        left: 0;
        right: 0;
        width: 100%;
        padding: 15px;
    }
    .mega-dropdown {
        position: static !important;
    }
    .container-fluid {
        padding-right: 4%;
        padding-left: 4%;
    }
}
.bg-top-header {
    background: url(../dist/img/bg-header.png);
}
.bg-top-header .nav-link,
.bg-top-header .nav-link:hover {
    color: #fff;
}
/* Navigation social media */
#st-2 {
    position: fixed;
    top: 35%;
    transform: translateY(-50%);
    right: 0;
    z-index: 555;
    text-align: center;
}
#st-2 .st-btn {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    cursor: pointer;
}

/* Navigation social media */
.border-top-primary {
    border-top: solid 1px #ff8000;
}
/* Footer */
.link-dark a {
    color: #000;
}
.br-right-green::after {
    content: "";
    position: absolute;
    width: 15%;
    z-index: 1;
    top: 12px;
    border-bottom: 4px solid #b7cd3b;
    margin-left: 10px;
}
.h-50 {
    height: 50px !important;
}
/* Footer */
.card-img-overlay {
    background-color: rgb(0 0 0 / 60%);
}
.card-img-overlay.map {
    background-color: rgb(0 0 0 / 15%);
}
/* .card-img-overlay::before {
  content: '';
  position: absolute;
  width: 90%;
  z-index: 1;
  top: 20px;
  border: 2px solid #fff;
  margin-left: auto;
  height: 90%;
  margin-right: auto;
} */
.card-img-overlay > div {
    border: 2px solid #ffffff;
}
.card-img-overlay.map > div {
    border: 0;
}

@media only screen and (min-width: 767px) {


    .bg-opacity-dark {
        background-color: rgb(0 0 0 / 60%);
    }
    .del-row {
        position: absolute;
        top: 25px;
        right: -45px;
        cursor: pointer;
        font-size: 18px;
    }
    .bg-white-md {
        background-color: #fff;
    }
    .z-moteur {
        top: 66%;
        position: absolute;
        z-index: 10;
    }

    .btn-more {
        color: #fff;
        background-color: #b7cd3b;
        border-color: #b7cd3b;
        display: inline-block;
        font-weight: 400;
        font-size: 12px;
        text-align: center;
        vertical-align: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        border: 1px solid transparent;
        padding: 5px 10px;
        /* font-size: 1rem; */
        line-height: 1.5;
        border-radius: 5px;
        box-shadow: 0px 3px 1px -2px rgb(0 0 0 / 20%),
            0px 2px 2px 0px rgb(0 0 0 / 14%), 0px 1px 5px 0px rgb(0 0 0 / 12%);
        transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
    }
    /*.btn-more:hover:after {
    background-color: #477800;
    border-top: 1px solid #477800;
    border-right: 1px solid #477800;
    }*/

    .btn-more:after {
        position: absolute;
        content: "";
        width: 16px;
        height: 16px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        background-color: #b7cd3b;
        /* top: 26px; */
        top: 22px;
        border-top: 1px solid #b7cd3b;
        border-right: 1px solid #b7cd3b;
        right: 50%;
    }
}
.w-15 {
    width: 12%;
}

@media only screen and (min-width: 767px) and (max-width: 1490px) {
    .z-moteur {
        top: 78%;
        position: absolute;
        z-index: 10;
    }
    .principal-navbar .navbar-nav .nav-link {
        margin-left: 10px;
        margin-right: 10px;
    }
}

/* moteur */
.form-control,
.form-select {
    font-size: 14px;
}
.except .label-pos {
    left: 14px;
}
.engine .except .form-control {
    padding: 36px 12px 16px 14px !important;
}
#bookingForm .dateOfBirth.form-control[readonly],
.engine .form-control[readonly] {
    background-color: #fff;
    opacity: 1;
}
.form-control:disabled[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}

.engine .form-control {
    padding: 16px 12px 16px 40px;
    border: 1px solid #ccc;
    border-radius: 0px;
    height: 55px;
    font-size: 14px;
}
.engine .form-guest {
    padding: 16px 14px 14px 14px;
    border: 1px solid #ccc;
    border-radius: 0px;
    height: 55px;
    font-size: 14px;
    width: 100%;
}
.engine-edit .form-control {
    padding: 10px 12px 12px 40px;
    border: 1px solid #ccc;
    border-radius: 0px;
    height: 50px;
    font-size: 14px;
    margin-bottom: 8px;
}
.engine .form-control.form-more {
    /*border: 0px solid #fff !important;
    border-radius: 0px !important;
    height: calc(1.5em + 0.75rem + 2px) !important;
    padding: 0rem 0.75rem !important;
    font-weight: 500; */

    border-right: 3px solid #ccc !important;
    border-radius: 0px !important;
    width: 101%;
}
.engine .form-control.form-more2 {
    border-right: 1px solid #ccc !important;
    border-radius: 0px !important;
    width: 101%;
}
.engine .twitter-typeahead .form-control {
    width: 100%;
}
.valRoomstshotel,
.txt-room,
.valAdultshotel,
.txt-adt,
.txt-enf,
.valInfantshotel,
.txt-beb {
    color: #565656 !important;
    font-style: normal;
}
.twitter-typeahead {
    width: 100%;
}

.label-pos {
    position: absolute;
    bottom: 38px;
    left: 51px;
    font-size: 14px !important;
    color: #000;
    z-index: 9;
    font-weight: 500;
}

.engine-edit .destination::before,
.engine-edit .users-p::before,
.engine-edit .date-input::before,
.engine-edit .stars::before,
.engine-edit .engine-available::before {
    top: 10px;
    transform: scale(0.8);
    left: 5px;
}
.engine-edit .label-pos {
    position: absolute;
    bottom: 22px;
    left: 42px;
}

.users-p::before {
    content: url(../img/search/bed.png);
    position: absolute;
    top: 25px;
    left: 8px;
    z-index: 1;
}
.clock::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f017";
    position: absolute;
    top: 25px;
    left: 8px;
    z-index: 1;
}

.select-nuit::before {
    content: url(../img/search/moon.png);
    position: absolute;
    top: 25px;
    left: 8px;
    z-index: 1;
}
.flag::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f024";
    position: absolute;
    top: 25px;
    left: 8px;
    color: #495057;
    z-index: 1;
}
.stars::before {
    content: url(../img/search/rating.png);
    position: absolute;
    top: 25px;
    left: 12px;
    color: #495057;
    z-index: 1;
}
.engine-available::before {
    content: url(../img/search/checkmark.png);
    position: absolute;
    top: 25px;
    left: 12px;
    color: #495057;
    z-index: 1;
}
.pension::before {
    content: url(../img/search/pension.png);
    position: absolute;
    top: 25px;
    left: 8px;
    color: #495057;
    z-index: 1;
}
.key::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f002";
    position: absolute;
    top: 25px;
    left: 8px;
    color: #495057;
    z-index: 1;
}
.card {
    border: #fff;
    border-radius: 0rem !important;
    transition: 0.5s ease;
}
.card-img-overlay {
    border-radius: 0px;
}
.card-img-overlay .btn {
    z-index: 999;
    position: relative;
}

/*------------------------------------------------------------------------*
 /Chambre et occupation version PC         --------------------------------------------
 ------------------------------------------------------------------------- */
@media (min-width: 768px) {
    .mt-100 {
        margin-top: 50px;
    }
    #collapseEdit .select-ico::after {
        position: absolute;
        top: 2px;
        right: 15px;
        z-index: 1;
        font-family: bootstrap-icons !important;
        content: "\F282";
        font-size: 14px;
    }
    .shadow-md {
        box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
    }
    .passengers {
        background: #fff;
        position: absolute;
        border: 1px solid #fff;
        box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
        top: 110%;
        z-index: 1001;
        border-radius: 0px;
        border-bottom: 2px solid #ff8000;
        padding: 12px;
    }

    .passagers select,
    .roomItem select {
        height: 40px !important;
        padding: 4px !important;
        border: #ccc 1px solid !important;
    }
}
.ico-close::before {
    content: "\f623";
    font-family: bootstrap-icons !important;
    font-size: 18px;
}
@media (max-width: 767px) {
    .bord-sm {
        border-bottom: 1px #fff solid;
        padding-top: 4px;
        margin-bottom: 8px;
    }
    .del-row span,
    .del-row i,
    .addrow a {
        color: #fff;
    }
    .del-row {
        padding-bottom: 4px;
        margin-bottom: 0px;
        text-align: center;
    }
    .addrow {
        border-bottom: 1px solid #fff;
        padding-bottom: 4px;
        margin-bottom: 6px;
        text-align: center;
    }
    .position-sm {
        bottom: 50px;
    }
    .ico-close::before {
        font-family: bootstrap-icons !important;
        padding-right: 4px;
        content: "\f623";
    }
    .ui-autocomplete {
        margin-top: 9px !important;
        background: #fff !important;
        width: 95% !important;
        z-index: 10;
    }
    /* Chambres et occupations */
    .passengers {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1040;
        width: 100vw;
        height: 100vh;
        background-color: rgb(0 0 0 / 70%);
    }
    .drawer-passengers {
        left: 0;
        width: 100%;
        height:40vh;
        position: fixed;
        bottom: 0;
        z-index: 1045;
        display: flex;
        flex-direction: column;
        max-width: 100%;
        background-color: #fff;
        transition: transform 0.3s ease-in-out;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        padding: 20px;
    }

    .engine .guests .form-control {
        padding: inherit;
        border: 1px solid #ccc;
        border-radius: 0px;
        height: 35px;
        font-size: 14px;
        margin-top: 10px;
    }
    /* Chambres et occupations */
    #collapseTopHotels,
    #collapseEngine {
        position: absolute;
        background: rgb(255, 255, 255);
        top: 90%;
        right: 0%;
        z-index: 20;
        width: 55%;
        color: #000;
        box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
        padding: 4px 8px;
    }
    #collapseTrip {
        position: absolute;
        background: rgb(255, 255, 255);
        top: 30px;
        left: 0%;
        z-index: 20;
        width: 55%;
        color: #000;
        box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
        padding: 4px 8px;
        border-radius: 5px;
    }
    .bd-highlight {
        color: #fff;
    }
    #collapseEngine .nav-link.text-white {
        color: #000 !important;
    }
    .nav-pills .nav-link {
        font-size: 13px;
        padding-left: 12px;
        padding-right: 12px;
    }
    .tab-home .nav-tabs .nav-link {
        font-size: 12px;
        padding: 4px 8px;
    }
    .tab-home .nav-tabs .nav-link.active:before {
        top: 29px;
        right: 46%;
    }
    .w-sm-100 {
        width: 100%;
    }
    /* .sticky-nav { padding-left: 15px; padding-right: 15px;} */
    .principal-navbar {
        position: relative;
        background: #b7cd3b;
        z-index: 10;
        width: 100%;
        right: 0px;
        overflow-x: auto;
        max-height: 100%;
        height: 100vh;
    }
    .principal-navbar::before {
        content: "";
        position: absolute;
        top: 0px;
        bottom: 0;
        left: 0;
        right: -15px;
        background: #ffffff;
        transform-origin: 0 0;
        transform: skew(-20deg) translateX(-120%);
        transition: all 0.275s 0.1s;
        transform: skew(-20deg) translateX(0);
    }
    .sticky-nav .container-fluid {
        padding-right: 0px;
        padding-left: 0px;
    }
    .principal-navbar .navbar-nav {
        align-items: start;
    }

    .navbar-toggler[aria-expanded="false"] .navbar-toggler-icon {
        background-image: url(../images/header/navbar-new.png);
        width: 32px;
        height: 32px;
        margin-top: 2px;
    }
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-image: url(../images/header/cancel.png);
        width: 32px;
        height: 32px;
        margin-top: 2px;
    }
    .principal-navbar .navbar-nav .nav-item {
        width: 100%;
        border-bottom: 1px solid #ccc;
    }
    .principal-navbar .navbar-nav .nav-link {
        font-weight: 500;
        padding-left:0px;
    }
    .principal-navbar .megamenu {
        padding: 15px;
    }
    .principal-navbar .megamenu a {
        font-size: 12px;
    }

    .sticky-top .navbar-brand img {
        width: 185px;
    }
    .style-mobile {
        display: block;
        background: transparent;
        border: none;
        padding: 0px !important;
    }
    .style-mobile li {
        border-bottom: 1px solid #ccc;
    }
    .style-mobile .dropdown-item {
        color: #00327b;
        font-weight: 500;
        font-size: 16px;
        font-family: "Roboto Condensed", sans-serif;
        padding-left: 14px;
        padding-right: 24px;
    }
    .ico-1::before {
        content: url(../images/header/ico-1.png);
        padding-right: 10px;
    }
    .ico-2::before {
        content: url(../images/header/ico-2.png);
        padding-right: 10px;
    }
    .ico-3::before {
        content: url(../images/header/ico-3.png);
        padding-right: 10px;
    }
    .ico-4::before {
        content: url(../images/header/ico-4.png);
        padding-right: 4px;
    }
    .ico-5::before {
        content: url(../images/header/ico-5.png);
        padding-right: 10px;
    }
    .ico-6::before {
        content: url(../images/header/ico-6.png);
        padding-right: 10px;
    }
    .ico-7::before {
        content: url(../images/header/ico-7.png);
        padding-right: 10px;
    }
    .ico-8::before {
        content: url(../images/header/ico-8.png);
        padding-right: 10px;
    }
    .ico-9::before {
        content: url(../images/header/ico-9.png);
        padding-right: 10px;
    }
    .ico-10::before {
        content: url(../images/header/ico-10.png);
        padding-right: 10px;
    }
    .ico-14::before {
        content: url(../images/header/ico-14.png);
        padding-right: 10px;
    }
    .ico-15::before {
        content: url(../images/header/ico-15.png);
        padding-right: 10px;
    }
}

.connexion_window_step,
.connexion_window {
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    display: none;
}

@media (max-width: 767px) {
    .z-moteur {
        background: #092a5e;
        padding-top: 12px;
        padding-bottom: 12px;
    }
    .z-moteur .card {
        background: transparent;
    }
    .ls-box {
        background: #fff;
        left: 0px;
        width: 100%;
        position: fixed;
        top: 0px;
        z-index: 8;
        margin: auto;
        overflow: hidden;
        height: 100%;
        overflow-x: auto;
    }
}
@media (min-width: 768px) {
    .ls-box {
        background: #fff;
        /* left: 18%; */
        width: 60%;
        position: relative;
        top: 25%;
        z-index: 8;
        margin: auto;
        overflow: hidden;
        height: 500px;
    }
}
.ls-custom-col-left {
    background-image: url(../images/bg-signin.jpg);
    padding: 20px;
}

.icon-checked::before {
    content: url(../img/checked.png);
    padding-right: 4px;
}

.accroche::before {
    content: url(../img/discount-green.png);
    padding-right: 4px;
    vertical-align: text-top;
}
.social-media-login a {
    width: 100%;
    float: left;
}
.social-media-login a span.fb {
    background: #607ecb;
}
.social-media-login a span {
    width: 100%;
    text-align: center;
    line-height: 38px;
    height: 40px;
    font-size: 12px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
#gSubscribe div.abcRioButton,
#gSignin div.abcRioButton {
    height: 40px !important;
    width: 100% !important;
}
.social-media-login a span {
    font-size: 16px;
    display: inline-block;
    line-height: 42px;
    color: #fff;
}
.social-media-login a span.fb:before {
    background: #5273c7;
}
.social-media-login a span.fb:before {
    background: #5273c7;
}
.social-media-login a span:before {
    position: absolute;
    left: 0;
    font-size: 14px;
    top: 0;
    padding: 0px 12px;
    height: 100%;
    width: 40px;
}
.icon-facebook:before {
    content: "\F344";
    font-family: bootstrap-icons !important;
}
.social-media-login a span.gp {
    background: #f4675f;
}
.social-media-login a span.gp:before {
    background: #e46b64;
}
.icon-google:before {
    font-family: "Font Awesome 5 Brands";
    content: "\f1a0";
}

.drop-nav {
    z-index: 1200;
}

.promo {
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    text-shadow: 1px 1px 5px rgb(0 0 0 / 15%);
    color: #fff;
    position: absolute;
    top: 38%;
    right: 10px;
    padding: 18px 4px;
    background: #f44336;
    border-radius: 50%;
    width: 60px;
    height: 60px;
}
@media (min-width: 768px) {
    /* [[ Calander styles starts here ]] */
    .pika-single.active {
        position: absolute;
        right: 170px;
        top: 460px;
        display: block;
    }
    .pika-single {
        z-index: 9999;
        position: relative;
        padding: 10px 8px 8px;
        border-radius: 2px;
        box-shadow: 0px 1px 1px 1px rgba(0, 0, 0, 0.5);
        color: #203152;
        background: #fff;
    }

    /* .pika-single:after { 	border-color: transparent transparent #FFF; 	border-style: solid; 	border-width: 12px; 	content: ""; 	height: 0; 	position: absolute; 	width: 0} */
    .pika-single.left:before {
        left: 48px;
        top: -25px;
    }
    .pika-single.left:after {
        left: 50px;
        top: -23px;
    }
    .pika-single.right:before {
        left: auto;
        right: 50px;
        top: -25px;
    }
    .pika-single.right:after {
        left: auto;
        right: 50px;
        top: -24px;
    }
    .pika-single.middle:before {
        left: 50%;
        top: -28px;
        margin-left: -15px;
    }
    .pika-single.middle:after {
        left: 50%;
        top: -24px;
        margin-left: -13px;
    }
    .pika-single.is-hidden {
        display: none;
    }
    .pika-single.is-bound {
        position: absolute;
    }
    .pika-single .bgClr {
        background: #eeeeee;
        display: block;
        height: 50px;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }
    .pika-lendar {
        float: left;
        position: relative;
        min-height: 220px;
    }
    .pika-lendar + .pika-lendar {
        margin-left: 25px;
    }
    .pika-lendar + .pika-lendar:before {
        background: #cad6e3;
        content: "";
        display: block;
        height: 266px;
        top: -10px;
        left: -14px;
        position: absolute;
        width: 1px;
    }
    .pika-title {
        position: relative;
        text-align: center;
        height: 48px;
    }
    .pika-label {
        display: inline-block;
        position: relative;
        z-index: 9999;
        overflow: hidden;
        margin: 0 0 0 10px;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700;
        min-width: 50px;
    }
    .pika-label:before {
        display: none;
        color: #4d6f93;
        position: absolute;
        right: 0;
        top: 5px;
        font-size: 7px;
    }
    .pika-label:first-child {
        margin: 0;
        min-width: 85px;
    }
    .pika-title select {
        cursor: pointer;
        padding: 0px 5px;
        margin: 0;
        border: 1px solid #cad6e3;
        font-weight: normal;
        color: #000;
        line-height: 30px;
        font-size: 14px;
        height: 30px;
    }
    .ie .pika-title select {
        padding-right: 0;
    }
    .pika-next,
    .pika-prev {
        color: #203152;
        cursor: pointer;
        display: block;
        font-size: 18px;
        height: 16px;
        position: absolute;
        top: 6px;
        width: 16px;
        font-weight: bold;
    }
    .travelDetailsPage .pika-next,
    .travelDetailsPage .pika-prev {
        display: none;
    }
    .pika-next:hover,
    .pika-prev:hover {
        opacity: 1;
        font-weight: bold;
        color: #000;
    }
    .pika-prev {
        left: 0px;
    }
    .pika-next {
        right: 0px;
    }
    .pika-next.is-disabled,
    .pika-prev.is-disabled {
        cursor: default;
        opacity: 0.2;
    }
    .pika-select {
        display: inline-block;
    }
    .pika-table {
        width: 100%;
        border-collapse: collapse;
        border-spacing: 0;
        border: 0;
    }
    .pika-table td,
    .pika-table th {
        width: 14.3%;
    }
    .pika-table th {
        color: #000;
        font-size: 12px;
        line-height: 24px;
        font-weight: normal;
        text-align: center;
        border-bottom: 1px solid #cad6e3;
    }
    .pika-table th abbr,
    .confirmationPage .detailsList .roomFclts li {
        border: none;
    }
    .pika-button {
        background: #fff;
        border: 0 none;
        color: #000;
        cursor: pointer;
        display: block;
        font-size: 14px;
        line-height: 15px;
        margin: 0;
        outline: 0 none;
        padding: 10px;
        text-align: center;
        width: 100%;
        position: relative;
    }
    .is-today .pika-button {
        color: #203152;
        font-weight: 700;
    }
    .is-today .pika-button:before {
        border-bottom: 0.5em solid #4092fb;
        border-left: 0.5em solid transparent;
        bottom: 2px;
        content: " ";
        height: 0;
        position: absolute;
        right: 2px;
        width: 0;
    }
    .is-today.is-selected {
        background: #203152;
        border-radius: 3px !important;
        -moz-border-radius: 3px !important;
        -webkit-border-radius: 3px !important;
    }
    .is-range.is-selected .pika-button,
    .is-selected .pika-button {
        color: #fff !important;
        font-weight: 700 !important;
        background: #ff8000 !important;
        border-radius: 3px !important;
        -moz-border-radius: 3px !important;
        -webkit-border-radius: 3px !important;
    }
    .is-disabled .pika-button {
        pointer-events: none;
        cursor: default;
        color: #444;
        opacity: 0.4;
    }
    .pika-button:hover {
        color: #fff !important;
        background: #203152 !important;
        box-shadow: none !important;
        border-radius: 3px !important;
        -moz-border-radius: 3px !important;
        -webkit-border-radius: 3px !important;
    }
    .is-range .pika-button {
        background: #d2e8ff;
    }
    .is-H .pika-button {
        background: #d2e8ff !important;
        color: #000 !important;
        border-radius: 0 !important;
        -moz-border-radius: 0 !important;
        -webkit-border-radius: 0 !important;
    }

    .pika-next,
    .is-rtl .pika-prev {
        float: right;
        background-image: url(/assets/img/next.png);
    }
    .pika-prev,
    .is-ltl .pika-next {
        float: left;
        background-image: url(/assets/img/prev.png);
    }
    /* [[ Calander styles ends here ]] */
}
@media (max-width: 767px) {
    .principal-navbar .navbar-nav .dropdown-menu {
        padding: 8px 32px;
        border-radius: 0px;
        background: transparent;
    }
    .pika-single {
        position: relative;
        background: #fff;
        top: 0px !important;
        height: 100%;
        left: 0px !important;
        padding: 15px;
        -webkit-animation-name: slideInDown;
        animation-name: slideInDown;
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-duration: var(--animate-duration);
        animation-duration: var(--animate-duration);
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
    }
    .mobiVer .pika-single {
        position: fixed !important;
        top: 0px !important;
    }
    .pika-lendar {
        width: 100%;
    }
    .pika-prev {
        left: 5px;
        text-indent: 9999px;
        overflow: auto;
    }
    .pika-next {
        right: 5px;
        text-indent: 9999px;
        overflow: auto;
    }

    .review-score-box {
        background: transparent;
        font-size: 70%;
        padding: 0 0px !important;
    }
    .review-score-box .score__badge {
        background: #00adff;
        color: #fff;
        font-size: 12px;
        border-radius: 6px;
    }
    .bui-review-score__content {
        padding-top: 8px;
    }
    .score__title,
    .score__text {
        display: inline;
    }
}
#hotels-best {
    margin-top: 15px;
}

.owl-theme .owl-dots,
.owl-theme .owl-nav {
    text-align: right;
}

.hero_in {
    background: url(../images/selections/bg-hotels-recommandes.jpg) center center
        no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: 100%;
    height: 270px;
    position: relative;
    justify-content: center;
    align-items: flex-end;
    display: flex;
}


.horizontal-line-5 {
    border-top: 3px solid #fc3;
    width: 5%;
    margin-bottom: 16px;
}
.horizontal-line-4 {
    border-top: 4px solid #fff;
    width: 15%;
    margin-bottom: 8px;
}
.horizontal-line-center {
    border-top: 3px solid #fc3;
    width: 10%;
    margin-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
}
.position-bread {
    position: absolute;
    top: 115px;
}
.pos-20 {
    top: -35px;
    left: 40%;
}
.btn-50 {
    border-radius: 100%;
    width: 60px;
    height: 60px;
    margin: auto;
    padding-top: 20px;
}

/* twitter-typeahead  */
.Typeahead-spinner {
    position: absolute;
    top: 30px;
    right: 8px;
    display: none;
    width: 22px;
    height: 22px;
}
.Typeahead-close {
    position: absolute;
    top: 34px;
    right: 15px;
    cursor: pointer;
    width: 12px;
    height: 12px;
    /*display: none;*/
}
.Typeahead-close2 {
    position: absolute;
    top: 20px;
    right: 15px;
    cursor: pointer;
    width: 10px;
    height: 10px;
    /*display: none;*/
}
.typeahead,
.tt-query,
.tt-hint {
    width: 100%;
}
.twitter-typeahead .tt-menu {
    position: absolute;
    left: 0;
    width: 500px;
    background: white;
    border-radius: 0px;
    box-shadow: 0px 1px 2px 1px rgb(0 0 0 / 20%);
    z-index: 1000 !important;
    margin-top: 15px;
}
.twitter-typeahead .tt-menu:before {
    border-color: transparent transparent #d1d1d1;
    border-style: solid;
    border-width: 14px;
    content: "";
    height: 0;
    position: absolute;
    width: 0;
    left: 48px;
    top: -28px;
}

.twitter-typeahead .tt-menu .tt-suggestion {
    padding: 0.25rem 0.75rem;
    cursor: pointer;
}

.bg-auto-subtitle {
    background: #f7f8fc;
    padding: 14px;
    color: #00327b;
    font-weight: 500;
    display: block;
    width: 100%;
    pointer-events: none;
}
.twitter-typeahead .tt-menu .tt-suggestion:hover i {
    color: #fff;
}
.twitter-typeahead .tt-menu .tt-suggestion:hover {
    background-color: #f7f8fc;
    color: #00327b;
}

.twitter-typeahead .empty-message {
    padding: 5px 10px;
    text-align: center;
}

.twitter-typeahead .rtl-typeahead .tt-menu {
    text-align: right;
}

.twitter-typeahead .league-name {
    margin: 0 10px 5px;
    padding: 7px 5px 10px;
    border-bottom: 1px solid #ced4da;
}

.scrollable-dropdown .twitter-typeahead .tt-menu {
    max-height: 80px;
    overflow-y: auto;
}

.bootstrap-maxlength {
    margin-top: 0.5rem;
}

/* twitter-typeahead */

/* Page liste hotels  */

.custom-control-label {
    margin-left: 6px;
}
.custom-checkbox span.custom-count {
    position: absolute;
    right: 5%;
    color: #999999;
}

/* #loading-result {
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);}

    .loading {
      background: #F8F3E0;
      width: 60%;
      position: relative;
      top: 220px;
      z-index: 8;
      margin: auto;
      overflow: hidden;
      padding: 20px;
  } */

.border-success {
    border-color: #b7cd3b !important;
}

.score__badge {
    background: #fff;
    color: #6bcbf7;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px 6px 6px 0;
    box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
    padding: 6px;
    align-items: center;
    align-self: center;
}

.h-hotel {
    height: 260px;
    object-fit: cover;
    width: 100%;
}

.span-pos-loc {
    left: 0px;
    top: 15px;
    position: absolute;
    max-width: 85%;
}

.span-note-fiche {
    right: 0px;
    top: 30px;
    position: absolute;
    background: #fffc;
    padding: 15px;
}
.span-accroche-fiche {
    left: -2px;
    top: 40px;
    position: absolute;
}
.span-score-fiche {
    right: 0px;
    top: 115px;
    position: absolute;
    color: #fff;
    width: 300px;
}
.span-score-fiche .progress {
    height: 0.5rem;
    background-color: #e9ecef5c;
}
.span-score-fiche .progress-bar {
    background-color: #fff;
}
.block_share {
    position: absolute;
    bottom: -10px;
    right: 10px;
}
@media (min-width: 768px) {
    .pt-28-md {
        padding-top: 15px;
    }
    .sortBox .sort-value,
    .sortBox .dropdown .dropdown-toggle {
        border: 1px solid #ccc;
        border-radius: 25px;
        color: #343a40;
        font-weight: 500;
        padding: 8px 20px;
        margin-right: 12px;
    }
    #sort-value-stops.active,
    #sort-value-duration.active,
    #sort-value-price.active,
    #sort-value-note.active,
    #sort-value-name.active,
    #sort-value-star.active {
        border: 1px solid #b7cd3b;
    }
    .pos-ab {
        position: relative;
        width: 226%;
        right: 140px;
    }
    .sup-1 {
        top: -1.5em;
    }
}
.persons .guests .roomItem .delete-room {
    position: absolute;
    right: 10px;
    text-align: right;
    top: 10px;
}
.persons .guests .roomItem {
    position: relative;
}
.item-room:nth-of-type(odd) {
    background-color: #f8f8f8;
}

/* .lstrooms div.item-room:nth-child(n+5) {
  display: none
} */

.item-card-htl:first-child {
    background-color: #f8f8f8;
}
.h-50 {
    height: 50px;
}
@media (max-width: 768px) {
    .account .fs-6 {
        font-size: 14px !important;
    }
    .h-hotel {
        height: 220px;
    }
    .mt-xss-4 {
        margin-top: 18px;
    }
    .sortBox a {
        line-height: 2.5;
        color: #000;
    }
    .sortBox a.active {
        color: #00327b;
    }
    #sort-value-stops.active,
    #sort-value-duration.active,
    #sort-value-price.active,
    #sort-value-note.active,
    #sort-value-name.active,
    #sort-value-star.active {
        color: #b7cd3b;
    }
    .bg-img-responsive {
        background: url(../img/bg-mobile-list.jpg) center center no-repeat !important;
        background-size: cover;
        padding-top: 6px;
        padding-bottom: 12px;
    }
    .editIcon:before {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f002";
        font-size: 22px;
    }
    .edit-icon:before {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f044";
        font-size: 22px;
    }
    .recap-icon:before {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f15c";
        font-size: 22px;
        display: block;
    }
    .pos-mobile-sticky {
        position: sticky;
        top: 0px;
        z-index: 1030;
        transition: transform 0.3s ease 0s;
        background: #fff;
    }

    .box-info-htl h2 {
        line-height: 1.2;
    }
    #flights .w-25 {
        width: 35% !important;
    }
    #flights .w-75 {
        width: 65% !important;
    }
    #coll-sort-mob {
        padding-left: 15px;
        padding-right: 15px;
    }
    .right-0 {
        right: 0px;
    }
    .pos-mobile-sticky h3 {
        font-size: 13px;
    }
    #collapseEditFiche {
        position: fixed;
        z-index: 1030;
        width: 100%;
        left: 0;
        top: 0;
        background: #fff !important;
        box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1) !important;
    }
    #collapseRecap,
    #collapseEdit,
    #coll-sort-mob,
    #coll-filter-mob {
        position: fixed;
        z-index: 1030;
        width: 100%;
        left: 0;
        top: 0;
        background: #fff !important;
        box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1) !important;
        overflow-x: auto;
        height: 100%;
    }
    #collapseEdit .bg-success {
        background-color: #fff !important;
    }

    .span-accroche-fiche {
        margin-top: 3rem;
    }
}

.agencies div.agency:nth-child(n + 4) {
    display: none;
}
.pos-fav {
    right: 10px;
    top: 12px;
    position: absolute;
    font-size: 18px;
}

.pictures,
.gallery {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pictures > li {
    border: 3px solid transparent;
    float: left;
    height: calc(100% / 3);
    margin: 0 -1px -1px 0;
    overflow: hidden;
    width: calc(100% / 3);
}

.gallery > li {
    border: 3px solid transparent;
    float: left;
    height: calc(100% / 3);
    margin: 0 -1px -1px 0;
    overflow: hidden;
    /* width: calc(75.3% / 3); */
    width: calc(50.3% / 3);
}

.gallery > li.firstImg {
    display: contents;
}

.txt-data::after {
    content: "Show More";
    font-weight: 600;
    position: absolute;
    top: 45%;
    right: 35%;
    color: #fff;
    font-size: 20px;
    cursor: zoom-in;
}

.txt-data img {
    position: relative;
    color: #fff;
    font-size: 16px;
}

.gallery > li > img,
.seeMorePhoto {
    /* cursor: zoom-in; */
    cursor: pointer;
    width: 100%;
    height: 90px;
    object-fit: cover;
}

.pictures > li > img {
    /* cursor: zoom-in; */
    cursor: pointer;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery > li.hide {
    display: none;
}

.firstImg img {
    height: 480px !important;
}

.seeMorePhoto {
    background-color: rgba(0, 0, 0, 0.58);
    position: absolute;
    right: 0;
}

.see::after {
    text-align: center;
    vertical-align: middle;
    line-height: 1.8;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    padding: 100px 75px;
    font-weight: 700;
    background-color: rgba(0, 0, 0, 0.58);
    position: absolute;
    width: 367px;
    height: 250px;
    color: #fff;
}

.details-icon::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f103";
    position: absolute;
    top: 0px;
    right: 18px;
    color: #495057;
    z-index: 1;
    font-size: 16px;
}

.details-icon.collapsed::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f101";
    position: absolute;
    top: 0px;
    right: 18px;
    color: #495057;
    z-index: 1;
    font-size: 16px;
}

.photo-text-more {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8;
}
.rest-txt {
    position: absolute;
    top: 61px;
    z-index: 10;
    right: 0px;
    color: #fff;
    background: #00000087;
    padding: 4px;
}
@media (max-width: 767px) {
    .txt-data::after {
        top: 40% !important;
        right: 11px !important;
        text-align: center;
        font-weight: 500 !important;
        font-size: 16px !important;
    }
    .gallery > li > img,
    .seeMorePhoto {
        width: 100% !important;
        height: 200px !important;
    }
    .gallery > li.firstImg {
        width: calc(200% / 3) !important;
    }
    .gallery > li {
        height: calc(100% / 3) !important;
        width: calc(100% / 3) !important;
    }
    .gallery > li > img,
    .seeMorePhoto {
        width: 100% !important;
        height: 200px !important;
    }
}

#reviews .progress {
    display: flex;
    height: 0.5rem;
}
#reviews blockquote {
    padding: 15px 20px;
    position: relative;
    background: #f9f9f9;
}
#reviews blockquote:before {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    color: #6bcbf7;
    position: absolute;
    font-size: 20px;
    font-weight: 900;
    left: 0;
    top: -5px;
}
#reviews blockquote:after {
    content: "\f10e";
    font-family: "Font Awesome 5 Free";
    color: #6bcbf7;
    position: absolute;
    font-size: 20px;
    font-weight: 900;
    right: 0;
    bottom: -5px;
}

/* Fiche css */
@media (max-width: 767px) {

    .ui-autocomplete {left: 10px !important; }
    .loading-img {
        width: 180px;
    }
    .fs-sm-12 {
        font-size: 12px;
    }
    .fix-recap .nav-pills .nav-link {
        font-size: 12px;
        padding-left: 8px;
        padding-right: 8px;
    }
    .fix-recap {
        position: fixed;
        top: 58px;
        width: 100%;
        z-index: 20;
        background: #fff !important;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
    }
    .span-note-fiche {
        padding: 6px !important;
    }

    .nav-pills .nav-link.active:before {
        border: none !important;
    }
}

.carousel-control-next,
.carousel-control-prev {
    /* background: 0 0;
  border: 0;
  opacity: .5;
  transition: opacity .15s ease; */
    background: #000;
    border: 0;
    opacity: 0.5;
    transition: opacity 0.15s ease;
    width: 65px;
    height: 65px;
    border-radius: 100%;
    top: 40%;
    margin: 18px;
}
.carousel-mobile-hotel .carousel-control-next-icon,
.carousel-mobile-hotel .carousel-control-prev-icon {
    background-color: black;
}

.owl-theme .owl-dots .owl-dot span {
    background: #70cbf494;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #70cbf4;
}

#mode_payement .nav-pills .nav-link.active,
#mode_payement .nav-pills .show > .nav-link {
    background-color: #70cbf4;
    border: 1px solid #70cbf4;
    color: #fff;
}

#mode_payement .nav-pills .nav-link {
    border-radius: 0px !important;
    color: #000;
    position: relative;
    background-color: #f1f1f1;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
}

#mode_payement .nav-pills .nav-link.active:before {
    border: 0px solid transparent;
}

.sk-circle {
    margin: 18px auto;
    width: 40px;
    height: 40px;
    position: relative;
}

.sk-circle .sk-child {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.sk-circle .sk-child:before {
    content: "";
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    background-color: #ffc107;
    border-radius: 100%;
    -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
    animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}

.sk-circle .sk-circle2 {
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}

.sk-circle .sk-circle3 {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
}

.sk-circle .sk-circle4 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.sk-circle .sk-circle5 {
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
}

.sk-circle .sk-circle6 {
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
}

.sk-circle .sk-circle7 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.sk-circle .sk-circle8 {
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
}

.sk-circle .sk-circle9 {
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
}

.sk-circle .sk-circle10 {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.sk-circle .sk-circle11 {
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
}

.sk-circle .sk-circle12 {
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
}

.sk-circle .sk-circle2:before {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.sk-circle .sk-circle3:before {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.sk-circle .sk-circle4:before {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.sk-circle .sk-circle5:before {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.sk-circle .sk-circle6:before {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.sk-circle .sk-circle7:before {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

.sk-circle .sk-circle8:before {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.sk-circle .sk-circle9:before {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.sk-circle .sk-circle10:before {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}

.sk-circle .sk-circle11:before {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.sk-circle .sk-circle12:before {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleBounceDelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes sk-circleBounceDelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* Facilities */
.facilities_1:before {
    content: url(../img/facilities/1.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}
.facilities_2:before {
    content: url(../img/facilities/2.png);
    padding-right: 8px;
    position: relative;
    top: 8px;
}
.facilities_4:before {
    content: url(../img/facilities/4.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}
.facilities_5:before {
    content: url(../img/facilities/5.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}
.facilities_6:before {
    content: url(../img/facilities/6.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}
.facilities_7:before {
    content: url(../img/facilities/7.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}
.facilities_8:before {
    content: url(../img/facilities/8.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}
.facilities_9:before {
    content: url(../img/facilities/9.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}
.facilities_10:before {
    content: url(../img/facilities/10.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}
.facilities_11:before {
    content: url(../img/facilities/11.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}
.facilities_14:before {
    content: url(../img/facilities/14.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}
.facilities_16:before {
    content: url(../img/facilities/16.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}
.facilities_17:before {
    content: url(../img/facilities/17.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}
.facilities_19:before {
    content: url(../img/facilities/19.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}
.facilities_23:before {
    content: url(../img/facilities/23.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}
.facilities_24:before {
    content: url(../img/facilities/24.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}
.facilities_26:before {
    content: url(../img/facilities/26.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}
.facilities_28:before {
    content: url(../img/facilities/28.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}
.facilities_29:before {
    content: url(../img/facilities/29.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}
.facilities_30:before {
    content: url(../img/facilities/30.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}
.facilities_31:before {
    content: url(../img/facilities/31.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}
.facilities_31:before {
    content: url(../img/facilities/31.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}
.facilities_32:before {
    content: url(../img/facilities/32.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}
.facilities_33:before {
    content: url(../img/facilities/33.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}
.facilities_34:before {
    content: url(../img/facilities/34.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}
.facilities_35:before {
    content: url(../img/facilities/35.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}
.facilities_36:before {
    content: url(../img/facilities/36.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}
.facilities_37:before {
    content: url(../img/facilities/37.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}
.facilities_38:before {
    content: url(../img/facilities/38.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}
.facilities_39:before {
    content: url(../img/facilities/39.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}
.facilities_43:before {
    content: url(../img/facilities/43.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}
.facilities_44:before {
    content: url(../img/facilities/44.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}

.facilities_45:before {
    content: url(../img/facilities/45.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}

.facilities_47:before {
    content: url(../img/facilities/47.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}

.facilities_48:before {
    content: url(../img/facilities/48.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}

.facilities_49:before {
    content: url(../img/facilities/49.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}
.facilities_51:before {
    content: url(../img/facilities/51.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}
.facilities_53:before {
    content: url(../img/facilities/53.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}
.facilities_55:before {
    content: url(../img/facilities/55.png);
    padding-right: 8px;
    position: relative;
    top: 10px;
}

.card-item:hover {
    transform: scale(1.05);
    text-decoration: none;
}
.packages-last-item:hover,
.hotels-list-item:hover {
    box-shadow: 0 2px 8px rgb(0 0 0 / 40%);
}
.packages-last-item .img-carousel {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.hotels-list-item,
.hotel-item,
.packages-last-item {
    cursor: pointer;
}
.hotels-list-item figure {
    height: 215px;
    overflow: hidden;
    margin: 0;
}

#phone_agency::before {
    content: url(../img/agencies/phone.png);
    padding-right: 4px;
    vertical-align: middle;
}
#map_place::before {
    content: url(../img/agencies/map.png);
    padding-right: 4px;
    vertical-align: middle;
}
#email_agency::before {
    content: url(../img/agencies/letter.png);
    padding-right: 4px;
    vertical-align: middle;
}
#clock_agency::before {
    content: url(../img/agencies/clock.png);
    padding-right: 4px;
    vertical-align: middle;
}

#clock_agency a,
#phone_agency a,
#email_agency a,
#map_place {
    color: #000;
}
.span-pos-maps {
    right: 0px;
    bottom: 0px;
    position: absolute;
    background-image: url(../img/agencies/maps.jpg);
    padding: 24px;
    font-weight: 600;
    text-align: center;
}

.sortbycity.nav-tabs .nav-link.active {
    color: #333;
    border-bottom: #b7cd3b 2px solid;
}

.sortbycity.nav-tabs .nav-link {
    margin-bottom: -1px;
    border: 1px solid transparent;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    background-color: transparent;
    cursor: pointer;
}

.sortbycity {
    border: 2px #b7cd3b solid;
}
.span-pos-maps a {
    cursor: pointer;
}

.hr-dashed {
    border-top: 1px #ccc dashed;
    margin-top: 8px;
    margin-bottom: 8px;
}
.showDetails .nav-link.active {
    color: #000;
    border-bottom: 2px solid #ff8000;
}
.showDetails .nav-link {
    background: #f1f1f1;
    color: #000;
    border: none;
    border-radius: 0px;
}
@media (min-width: 768px) {
    .w-20 {
        width: 20.5% !important;
    }
    .w-80 {
        width: 80% !important;
    }
    .segment:before {
        display: block;
        content: "";
        position: absolute;
        top: 14px;
        left: -25px;
        bottom: 0px;
        background: var(--airport-color, #b7cd3b);
        width: 2px;
        height: 85%;
    }

    .stop-segment:before {
        display: block;
        content: "";
        position: absolute;
        top: -8px;
        left: -10px;
        bottom: 0px;
        background: var(--airport-color, #b7cd3b);
        width: 2px;
        height: 155px;
    }

    .stop-segment-item:before {
        display: block;
        position: absolute;
        content: "";
        border: 3px solid var(--airport-color, #b7cd3b);
        border-radius: 50%;
        width: 12px;
        height: 12px;
        left: -15px;
        top: 12px;
        background: #fff;
    }

    .depart-seg:before {
        display: block;
        height: 12px;
        position: absolute;
        content: "";
        border: var(--airport-color, #b7cd3b) 2px solid;
        border-radius: 50%;
        width: 12px;
        left: -30px;
        top: 2px;
    }

    .arrival-seg:before {
        display: block;
        height: 12px;
        position: absolute;
        content: "";
        background-color: var(--airport-color, #b7cd3b);
        border-radius: 50%;
        width: 12px;
        left: -30px;
        bottom: 0%;
    }
    .showDetails {
        border: 2px solid #f1f1f1;
        border-radius: 5px;
        right: 14%;
        top: -10px;
        width: 650px;
        z-index: 1000;
        cursor: default;
        background: #fff;
        padding: 15px;
        position: absolute;
        margin-bottom: 0;
    }
    .showDetails .top-arrow {
        height: 20px;
        left: inherit;
        position: absolute;
        right: -21px;
        top: 22px;
        transform: rotate(90deg);
        width: 20px;
        z-index: 10;
    }
    .showDetails .top-arrow:before {
        border-color: transparent transparent #f1f1f1;
        top: 0;
    }
    .showDetails .top-arrow:after {
        border-color: transparent transparent #fff;
        top: 4px;
    }
    .showDetails .top-arrow:after,
    .showDetails .top-arrow:before {
        border-style: solid;
        border-width: 10px;
        content: "";
        height: 0;
        position: absolute;
        width: 0;
        left: 0;
    }
    .ui-autocomplete {
        background: #fff !important;
        width: 25% !important;
        z-index: 1051;
        margin-top: 20px;
    }
    .drop-bloc {
        width: 230%;
        margin-top: 15px;
        padding: 15px;
    }
    .h-250 {
        height: 250px;
        object-fit: cover;
    }
    /* .mega-munu-1 { width: 130vh  !important;}
  .mega-munu-2 {  width: 90vh  !important;} */
    .principal-navbar .dropdown-menu ul li a {
        color: #757575;
        font-size: 0.875rem;
        font-weight: 300;
        line-height: 28px;
    }

    .fix-recap-pc.scrolled {
        position: fixed;
        top: 90px;
        width: 100%;
        z-index: 1030;
        background: #fff !important;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    }

    .box-favoris:before {
        position: absolute;
        content: "";
        width: 16px;
        height: 16px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        background-color: rgb(0 0 0 / 70%);
        top: -8px;
        border-top: 1px solid rgb(0 0 0 / 70%);
        border-right: 1px solid rgb(0 0 0 / 70%);
        right: 5%;
    }
    .box-favoris {
        display: none;
        padding: 15px;
        background-color: rgb(0 0 0 / 80%);
        margin-top: 0;
        -webkit-box-shadow: 0 0 5px 2px rgb(0 0 0 / 30%),
            0 0 0 1px rgb(0 0 0 / 10%);
        box-shadow: 0 0 5px 2px rgb(0 0 0 / 30%), 0 0 0 1px rgb(0 0 0 / 10%);
        -webkit-transition: opacity 0.2s, visibility 0.2s, margin-top 0.2s;
        transition: opacity 0.2s, visibility 0.2s, margin-top 0.2s;
        position: absolute;
        top: 56px;
        z-index: 40;
        width: 75%;
        left: 18%;
        color: #fff;
    }
}

.btn .text-active {
    display: none;
}

.btn.active .text-active {
    display: inline-block;
}

.btn.active .text-not {
    display: none;
}

.box-favoris a {
    color: #fff;
}

.usp-header__ranking {
    border-radius: 25px !important;
    padding: 12px;
    position: relative;
    background: #def3fc;
    color: #000;
    width: 95%;
    margin-left: 14px;
    padding-left: 42px;
}

.usp-header__score {
    border-radius: 50px !important;
    position: absolute;
    border: 2px solid;
    width: 50px;
    height: 50px;
    padding: 6px;
    background: #fff;
    border-color: #6bcbf7;
    z-index: 20;
    text-align: center;
    line-height: 2;
}

.small.help-block {
    color: red !important ;
    display: block;
}
.agencies.has-error small.help-block {
    border: 1px solid;
    border-color: #f4675f !important;
    color: #f4675f;
    background-color: #fee8e7 !important;
    padding: 10px;
    font-size: 14px;
}
.has-error .form-control::placeholder {
    color: #f4675f;
    opacity: 0.5;
}

.error {
    color: #f4675f;
    font-size: 12px;
    font-weight: 500;
}
.has-error .form-control {
    border-color: #f4675f !important;
    color: #f4675f;
    background-color: #fee8e7 !important;
}
.map-div {
    position: relative;
}
.map-div > img,
.carte {
    position: absolute;
}

.pagination-nav a {
    margin-left: 5px;
    margin-right: 5px;
    font-weight: bold;
}
section#hebergement .desc h2 {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin-top: 15px;
}
section#hebergement .desc h3 {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin-top: 15px;
}
section#reviews div.review:nth-child(n + 11) {
    display: none;
}
#mapModal .modal-body {
    padding: 0;
}
#mapModal .modal-header {
    padding: 0.6rem 0.6rem;
}

#ballsWaveG {
    position: relative;
    width: 125px;
    height: 29px;
    margin: auto;
}

.ballsWaveG {
    position: absolute;
    top: 0;
    background-color: rgb(255, 255, 255);
    width: 16px;
    height: 16px;
    animation-name: ballsWaveG;
    -o-animation-name: ballsWaveG;
    -ms-animation-name: ballsWaveG;
    -webkit-animation-name: ballsWaveG;
    -moz-animation-name: ballsWaveG;
    animation-duration: 1.5s;
    -o-animation-duration: 1.5s;
    -ms-animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-direction: normal;
    -o-animation-direction: normal;
    -ms-animation-direction: normal;
    -webkit-animation-direction: normal;
    -moz-animation-direction: normal;
    border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
}

#ballsWaveG_1 {
    left: 0;
    animation-delay: 0.6s;
    -o-animation-delay: 0.6s;
    -ms-animation-delay: 0.6s;
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
}

#ballsWaveG_2 {
    left: 16px;
    animation-delay: 0.75s;
    -o-animation-delay: 0.75s;
    -ms-animation-delay: 0.75s;
    -webkit-animation-delay: 0.75s;
    -moz-animation-delay: 0.75s;
}

#ballsWaveG_3 {
    left: 31px;
    animation-delay: 0.9s;
    -o-animation-delay: 0.9s;
    -ms-animation-delay: 0.9s;
    -webkit-animation-delay: 0.9s;
    -moz-animation-delay: 0.9s;
}

#ballsWaveG_4 {
    left: 47px;
    animation-delay: 1.05s;
    -o-animation-delay: 1.05s;
    -ms-animation-delay: 1.05s;
    -webkit-animation-delay: 1.05s;
    -moz-animation-delay: 1.05s;
}

#ballsWaveG_5 {
    left: 62px;
    animation-delay: 1.2s;
    -o-animation-delay: 1.2s;
    -ms-animation-delay: 1.2s;
    -webkit-animation-delay: 1.2s;
    -moz-animation-delay: 1.2s;
}

#ballsWaveG_6 {
    left: 78px;
    animation-delay: 1.35s;
    -o-animation-delay: 1.35s;
    -ms-animation-delay: 1.35s;
    -webkit-animation-delay: 1.35s;
    -moz-animation-delay: 1.35s;
}

#ballsWaveG_7 {
    left: 94px;
    animation-delay: 1.5s;
    -o-animation-delay: 1.5s;
    -ms-animation-delay: 1.5s;
    -webkit-animation-delay: 1.5s;
    -moz-animation-delay: 1.5s;
}

#ballsWaveG_8 {
    left: 109px;
    animation-delay: 1.64s;
    -o-animation-delay: 1.64s;
    -ms-animation-delay: 1.64s;
    -webkit-animation-delay: 1.64s;
    -moz-animation-delay: 1.64s;
}

@keyframes ballsWaveG {
    0% {
        background-color: rgb(204, 204, 204);
    }

    100% {
        background-color: rgb(255, 255, 255);
    }
}

@-o-keyframes ballsWaveG {
    0% {
        background-color: rgb(204, 204, 204);
    }

    100% {
        background-color: rgb(255, 255, 255);
    }
}

@-ms-keyframes ballsWaveG {
    0% {
        background-color: rgb(204, 204, 204);
    }

    100% {
        background-color: rgb(255, 255, 255);
    }
}

@-webkit-keyframes ballsWaveG {
    0% {
        background-color: rgb(204, 204, 204);
    }

    100% {
        background-color: rgb(255, 255, 255);
    }
}

@-moz-keyframes ballsWaveG {
    0% {
        background-color: rgb(204, 204, 204);
    }

    100% {
        background-color: rgb(255, 255, 255);
    }
}
#map2id {
    height: 284px;
    z-index: 10 !important;
}
.popup-content {
    background-image: url("/assets/img/Groupe-58.jpg");
    height: 500px;
}
/* .hiddenBox{
  display: none !important;
} */
.intl-tel-input {
    width: 100%;
}
.z-table th {
    font-weight: 600;
}

@media (max-width: 768px) {
    /* .w-20 {width: 30%!important;}
  .w-80 { width: 70% !important;} */
    .box-favoris:before {
        position: absolute;
        content: "";
        width: 16px;
        height: 16px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        background-color: rgb(0 0 0 / 70%);
        top: -8px;
        border-top: 1px solid rgb(0 0 0 / 70%);
        border-right: 1px solid rgb(0 0 0 / 70%);
        right: 54%;
    }
    .box-favoris {
        display: none;
        padding: 15px;
        background-color: rgb(0 0 0 / 80%);
        margin-top: 0;
        -webkit-box-shadow: 0 0 5px 2px rgb(0 0 0 / 30%),
            0 0 0 1px rgb(0 0 0 / 10%);
        box-shadow: 0 0 5px 2px rgb(0 0 0 / 30%), 0 0 0 1px rgb(0 0 0 / 10%);
        -webkit-transition: opacity 0.2s, visibility 0.2s, margin-top 0.2s;
        transition: opacity 0.2s, visibility 0.2s, margin-top 0.2s;
        position: absolute;
        top: 56px;
        z-index: 40;
        width: 185%;
        left: 5%;
        color: #fff;
    }
    .h-250 {
        height: 220px;
        object-fit: cover;
    }
}
/* carte premium */
.bg-img-header {
    width: 100%;
    height: 100vh;
    background: url(../img/premium/image-Header.jpg) top center no-repeat;
    background-size: cover;
    position: relative;
}
.bg-green-dark {
    background-color: #0d1d21;
}
.text-gold {
    color: #bc9e6c;
}
.card-premium {
    font-family: "Champagne & Limousines", sans-serif;
}
.card-premium h1,
.card-premium h2,
.card-premium h3,
.card-premium h4,
.card-premium h5,
.card-premium h6 {
    margin-bottom: 0.5rem;
    font-family: "Champagne & Limousines", sans-serif;
    font-weight: 300;
    line-height: 1.5;
}
.cta {
    background: url(../img/premium/image-filtre.jpg) fixed center center;
    background-size: cover;
}
.have-card {
    background: url(../img/premium/overlay-img.jpg) fixed center center;
    background-size: cover;
    height: 100vh;
    padding-top: auto;
    padding-bottom: auto;
}
.bg-img-gold {
    width: 100%;
    height: 500px;
    background: url(../img/premium/img-fiter-have-card.jpg) top center no-repeat;
    background-size: cover;
    position: relative;
}

/* Carousel card premium  */
.owl-partner.owl-carousel .owl-item img {
    display: block;
    width: auto;
}
.owl-partner .owl-nav button.owl-prev {
    left: 0;
}

.owl-partner .owl-nav button.owl-next {
    right: 0;
}

.owl-partner .owl-nav span {
    font-size: 75px;
    color: #bc9e6c;
}

.owl-partner .owl-nav button {
    position: absolute;
    top: 44%;
    transform: translateY(-50%);
    background: transparent !important;
    color: #fff;
    border-radius: 0% !important;
    transition: all ease-in-out 0.1s;
}
.owl-partner.owl-carousel .owl-item {
    height: 150px;
    display: flex;
    justify-content: center;
}
.owl-partner.owl-carousel .owl-item .item {
    align-self: center;
}
/* Carousel card premium  */
@media (max-width: 768px) {
    .w-15 {
        width: 50% !important;
    }
    .recap-search .fs-5 {
        font-size: 16px !important;
    }
    .recap-search .engine {
        padding: 14px;
    }
    .engine .form-guest {
        background-color: #fff;
    }
    .owl-partner .owl-nav {
        margin-top: 0px;
    }
    .list-social img {
        width: 60px;
    }
    .bg-img-header {
        height: 40vh;
    }

    .cta {
        background: #fff;
        height: inherit;
    }
}

.border-gold {
    border: 3px solid #bc9e6c;
}
.text-brown {
    color: #574831;
}

.btn-phone {
    border: 3px solid #bc9e6c;
    background-color: #0d1d21;
    color: #fff;
    font-family: "Playfair Display", serif;
    border-radius: 50px;
}
.btn-phone:hover {
    border: 3px solid #0d1d21;
    background-color: #bc9e6c;
    color: #0d1d21;
}
#gSubscribe .abcRioButton,
#gSignin .abcRioButton {
    border-radius: 4px;
}
#gSubscribe .abcRioButton span,
#gSignin .abcRioButton span {
    font-size: 16px !important;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 39px !important;
}

.br-0 {
    border-right: 0px;
}
.bl-0 {
    border-left: 0px;
}
.h-40 {
    height: 40px;
    line-height: 1.8;
}
.nav-link {
    display: block;
    padding: 0.5rem 0.5rem;
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    box-shadow: none;
    background-image: none;
    flex: 1;
    padding: 0.5em;
    cursor: pointer;
    font-size: 1em;
    font-family: "Poppins", sans-serif;
}
select::-ms-expand {
    display: none;
}
.select {
    position: relative;
    top: 1.01ch;
    display: flex;
    height: 3.2em;
    line-height: 3;
}
.btn-more {
    color: #fff;
    background-color: #b7cd3b;
    border-color: #b7cd3b;
    display: inline-block;
    font-weight: 400;
    font-size: 12px;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 5px 10px;
    line-height: 1.5;
    border-radius: 5px;
    box-shadow: 0 3px 1px -2px rgb(0 0 0 / 20%), 0 2px 2px 0 rgb(0 0 0 / 14%),
        0 1px 5px 0 rgb(0 0 0 / 12%);
    transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.h-55 {
    height: 55px;
}
.btn-more:after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background-color: #b7cd3b;
    top: 22px;
    border-top: 1px solid #b7cd3b;
    border-right: 1px solid #b7cd3b;
    right: 50%;
}

.departures::before {
    position: absolute;
    top: 13px;
    left: 8px;
    z-index: 1;
    /* font-family: bootstrap-icons !important; */
    content: "\f64c";
    font-size: 24px;
    content: url(../images/search/departures.png);
}
.arrival::before {
    position: absolute;
    top: 13px;
    left: 8px;
    z-index: 1;
    /* font-family: bootstrap-icons !important; */
    content: "\f64c";
    font-size: 24px;
    content: url(../images/search/arrival.png);
}
.destination::before {
    position: absolute;
    top: 9px;
    left: 13px;
    z-index: 1;
    /* font-family: bootstrap-icons !important; */
    content: "\f64c";
    font-size: 24px;
    content: url(../images/search/arrival.png);
}
.date-input::before {
    /* content: url(/images/search/calendar.png); */
    position: absolute;
    top: 9px;
    left: 10px;
    z-index: 1;
    font-family: bootstrap-icons !important;
    content: "\f209";
    font-size: 24px;
}

.passengers-select::before {
    /* content: url(/images/search/down-arrow.png); */
    position: absolute;
    top: 10px;
    right: 8px;
    z-index: 1;
    font-family: bootstrap-icons !important;
    content: "\f282";
    font-size: 24px;
}
.multiDestinat::before {
    /* content: url(/images/search/calendar.png); */
    position: absolute;
    top: 12px;
    left: 8px;
    z-index: 1;
    font-family: bootstrap-icons !important;
    content: "\f209";
    font-size: 24px;
}
.passagesInput {
    display: inline-block;
    font-size: 1.25rem;
    font-family: "NeutrifStudio", Arial, Helvetica, sans-serif;
}
input.passagesCount {
    height: 31px !important;
    width: 32px !important;
    text-align: center !important;
    font-size: 16px !important;
    border: 1px solid #6c757d !important;
    display: inline-block !important;
    vertical-align: middle !important;
    padding: 4px !important;
}
.ui-menu {
    width: 200px;
    margin-bottom: 2em;
}
.ui-menu {
    list-style: none;
    padding: 12px;
    margin: 0;
    display: block;
    outline: none;
    margin-top: 6px;
    height: 40%;
    overflow-x: auto;
}
.ui-autocomplete {
    position: absolute;
    top: 0;
    left: 0;
    cursor: default;
    z-index: 1040;
}

.ui-menu .ui-menu-item {
    padding: 6px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    -webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    -ms-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
    cursor: pointer;
    position: relative;
}

.ui-menu .ui-menu-item h2,
.ui-menu .ui-menu-item div.place {
    color: #6a6a6a;
}
.ui-menu .ui-menu-item:hover {
    background: #ff8000;
}
.ui-menu .ui-menu-item:hover h2 {
    color: #fff;
}
.ui-menu .ui-menu-item:hover div.place {
    color: #fff;
}
.ui-menu-item .iata {
    position: absolute;
    right: 10px;
    top: 10px;
    text-transform: uppercase;
    font-weight: 600;
    background: #f1f1f1;
    border-radius: 3px;
    padding: 5px;
    color: #000;
}
.ui-autocomplete .ui-menu-item {
    position: relative;
    background-color: #fff;
    padding: 15px 5px 15px 50px !important;
    background-image: none !important;
}

.ui-menu .ui-menu-item {
    padding: 6px 6px 6px 36px !important;
}
.ui-menu .ui-menu-item:hover::before {
    color: #fff;
}
.ui-menu .ui-menu-item::before {
    font-family: bootstrap-icons !important;
    content: "\f3ea";
    position: absolute;
    top: 8px;
    left: 5px;
    color: #6a6a6a;
    z-index: 1;
    font-size: 20px;
}
@media screen and (min-width: 576px) {
    .ui-autocomplete {
        -webkit-box-shadow: 0 0 10px rgb(0 0 0 / 20%);
        box-shadow: 0 0 10px rgb(0 0 0 / 20%);
        border-radius: 5px;
        background-color: #fff;
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

.bordDashed {
    border-bottom: dashed 1px #d9d8d8;
    margin-bottom: 8px;
    margin-top: 8px;
}

.detailsSegment {
    border: 2px solid #cad6e3;
    border-radius: 5px;
    display: none;
    right: 118px;
    top: -7px;
    width: 600px;
    z-index: 1000;
    cursor: default;
    position: absolute;
}

/* loading effect */
/* .loading {
  position: relative;
  background-color: #E2E2E2;
} */
.loading::after {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    transform: translateY(-20%);
    background: linear-gradient(
        180deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    -webkit-animation: loading 1.5s infinite;
    animation: loading 1.5s infinite;
}

@-webkit-keyframes loading {
    100% {
        transform: translateY(100%);
    }
}

@keyframes loading {
    100% {
        transform: translateY(100%);
    }
}

/*******************
Stylish tooltip
******************/
.mytooltip:hover .tooltip-content2,
.mytooltip:hover .tooltip-content2 i {
    opacity: 1;
    font-size: 18px;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}

.mytooltip:hover .tooltip-content4,
.mytooltip:hover .tooltip-text2 {
    pointer-events: auto;
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.mytooltip {
    display: inline;
    position: relative;
    z-index: 10;
}
.mytooltip:hover .tooltip-item::after {
    pointer-events: auto;
}
.mytooltip:hover .tooltip-content {
    pointer-events: auto;
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0);
}
.mytooltip:hover .tooltip-content3 {
    opacity: 1;
    pointer-events: auto;
    transform: scale3d(1, 1, 1);
}
.mytooltip:hover .tooltip-item2 {
    color: #fff;
    transform: translate3d(0, -0.5em, 0);
}
.mytooltip:hover .tooltip-content5 {
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0s;
}
.mytooltip:hover .tooltip-text3 {
    transition-delay: 0s;
    transform: scale3d(1, 1, 1);
}
.mytooltip:hover .tooltip-inner2 {
    transition-delay: 0.3s;
    transform: translate3d(0, 0, 0);
}

.tooltip-item {
    cursor: pointer;
    display: inline-block;
    font-weight: 500;
    padding: 0 10px;
}

.tooltip-item::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 20px;
    bottom: 100%;
    left: 50%;
    pointer-events: none;
    transform: translateX(-50%);
}

.tooltip-content {
    position: absolute;
    z-index: 9999;
    width: 360px;
    left: 50%;
    margin: 0 0 20px -180px;
    bottom: 100%;
    text-align: left;
    font-size: 14px;
    line-height: 30px;
    box-shadow: -5px -5px 15px rgba(48, 54, 61, 0.2);
    background: #2b2b2b !important;
    opacity: 0;
    cursor: default;
    pointer-events: none;
}
.tooltip-content img {
    position: relative;
    height: 140px;
    display: block;
    float: left;
    margin-right: 1em;
}

.tooltip-effect-5 .tooltip-content {
    width: 180px;
    margin-left: -90px;
    transform-origin: 50% calc(106%);
    transform: rotate3d(0, 0, 1, 15deg);
    transition: opacity 0.2s, transform 0.2s;
    transition-timing-function: ease, cubic-bezier(0.17, 0.67, 0.4, 1.39);
    border-radius: 5px;
}

.tooltip-effect-5 .tooltip-text {
    padding: 8px;
}

.tooltip-content::after {
    content: "";
    top: 100%;
    left: 50%;
    border: solid transparent;
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: transparent;
    border-top-color: #2a3035;
    border-width: 10px;
    margin-left: -10px;
}

.tooltip-text {
    font-size: 14px;
    line-height: 15px;
    display: block;
    padding: 1.31em 1.21em 1.21em 0;
    color: #fff;
}

.tooltip-content2 {
    position: absolute;
    z-index: 9999;
    width: 80px;
    height: 80px;
    padding-top: 25px;
    left: 50%;
    margin-left: -40px;
    bottom: 100%;
    border-radius: 50%;
    text-align: center;
    background: #fb9678;
    color: #fff;
    opacity: 0;
    margin-bottom: 20px;
    cursor: default;
    pointer-events: none;
}
.tooltip-content2 i {
    opacity: 0;
}

.tooltip-effect-6 .tooltip-content2 {
    transform: translate3d(0, 10px, 0) rotate3d(1, 1, 1, 45deg);
    transform-origin: 50% 100%;
    transition: opacity 0.3s, transform 0.3s;
}
.tooltip-effect-6 .tooltip-content2 i {
    transform: scale3d(0, 0, 1);
    transition: opacity 0.3s, transform 0.3s;
}

.tooltip-effect-6:hover .tooltip-content2 i {
    transform: rotate3d(1, 1, 1, 0);
}

.tooltip-content3::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    left: 50%;
    margin-left: -8px;
    top: 100%;
    background: #00aeef;
    transform: translate3d(0, -60%, 0) rotate3d(0, 0, 1, 45deg);
}

.tooltip-item2 {
    color: #fff;
    cursor: pointer;
    z-index: 100;
    position: relative;
    display: inline-block;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.tooltip-content4 {
    position: absolute;
    z-index: 103;
    width: 360px;
    left: -139px;
    margin-left: -180px;
    bottom: -180px;
    text-align: left;
    background: #00aeef;
    opacity: 0;
    font-size: 14px;
    line-height: 25px;
    padding: 15px;
    color: #fff;
    cursor: default;
    pointer-events: none;
    border-radius: 5px;
    transform: translate3d(0, -0.5em, 0);
    transition: opacity 0.3s, transform 0.3s;
    color: #212a30;
    background: #fff;
    border: 0;
    box-shadow: 0 2px 8px #a0afba;
    text-shadow: none;
}
.tooltip-content4 a {
    color: #2b2b2b;
}

.tooltip-text2 {
    opacity: 0;
    transform: translate3d(0, 1.5em, 0);
    transition: opacity 0.3s, transform 0.3s;
}

.tooltip-content5 {
    position: absolute;
    z-index: 9999;
    width: 300px;
    left: 50%;
    bottom: 100%;
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
    font-weight: 400;
    color: #fff;
    background: transparent;
    opacity: 0;
    margin: 0 0 20px -150px;
    cursor: default;
    pointer-events: none;
    transition: opacity 0.3s 0.3s;
}
.tooltip-content5 span {
    display: block;
}

.tooltip-text3 {
    border-bottom: 10px solid #fb9678;
    overflow: hidden;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s 0.3s;
}

.tooltip-inner2 {
    background: #2b2b2b;
    padding: 40px;
    transform: translate3d(0, 100%, 0);
    transition: transform 0.3s;
}

.tooltip-content5::after {
    content: "";
    bottom: -20px;
    left: 50%;
    border: solid transparent;
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: transparent;
    border-top-color: #fb9678;
    border-width: 10px;
    margin-left: -10px;
}

.tooltip-effect-1 .tooltip-content {
    transform: translate3d(0, -10px, 0);
    transition: opacity 0.3s, transform 0.3s;
    color: #fff;
}

.tooltip-effect-2 .tooltip-content {
    transform-origin: 50% calc(110%);
    transform: perspective(1000px) rotate3d(1, 0, 0, 45deg);
    transition: opacity 0.2s, transform 0.2s;
}

.tooltip-effect-3 .tooltip-content {
    transform: translate3d(0, 10px, 0) rotate3d(1, 1, 0, 25deg);
    transition: opacity 0.3s, transform 0.3s;
}

.tooltip-effect-4 .tooltip-content {
    transform-origin: 50% 100%;
    transform: scale3d(0.7, 0.3, 1);
    transition: opacity 0.2s, transform 0.2s;
}

.tooltip.tooltip-effect-2:hover .tooltip-content {
    transform: perspective(1000px) rotate3d(1, 0, 0, 0deg);
}

a.mytooltip {
    font-weight: 500;
    color: #fb9678;
}

.tooltip-effect-7 .tooltip-content2 {
    transform: translate3d(0, 10px, 0);
    transition: opacity 0.3s, transform 0.3s;
}
.tooltip-effect-7 .tooltip-content2 i {
    transform: translate3d(0, 15px, 0);
    transition: opacity 0.3s, transform 0.3s;
}

.tooltip-effect-8 .tooltip-content2 {
    transform: translate3d(0, 10px, 0) rotate3d(0, 1, 0, 90deg);
    transform-origin: 50% 100%;
    transition: opacity 0.3s, transform 0.3s;
}
.tooltip-effect-8 .tooltip-content2 i {
    transform: scale3d(0, 0, 1);
    transition: opacity 0.3s, transform 0.3s;
}

.tooltip-effect-9 .tooltip-content2 {
    transform: translate3d(0, -20px, 0);
    transition: opacity 0.3s, transform 0.3s;
}
.tooltip-effect-9 .tooltip-content2 i {
    transform: translate3d(0, 20px, 0);
    transition: opacity 0.3s, transform 0.3s;
}

/* Session expired */
.session-expired {
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.7);
}

.expired-bloc {
    position: relative;
    top: 220px;
    z-index: 8;
    margin: auto;
    overflow: hidden;
}
/* Session expired */

.item-card-htl:first-child {
    border: 2px solid #b7cd3b;
}

.fltPrceLoader {
    width: 100%;
    background-image: linear-gradient(
            100deg,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0.5) 50%,
            rgba(255, 255, 255, 0) 100%
        ),
        linear-gradient(RGBA(119, 153, 190, 0.2) 15px, transparent 0),
        linear-gradient(RGBA(119, 153, 190, 0.2) 15px, transparent 0),
        linear-gradient(RGBA(119, 153, 190, 0.2) 45px, transparent 0),
        linear-gradient(RGBA(119, 153, 190, 0.2) 15px, transparent 0);
    background-repeat: no-repeat;
    background-size: 90% 200px, 90% 30px, 60% 30px, 80% 50px, 90% 20px;
    background-position: 5% 0, 5% 0, 5% 25px, 5% 50px, 5% 105px;
    animation: fltPrceLoader 1s infinite;
}

.depArvLoader {
    background-image: linear-gradient(
            100deg,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0.5) 50%,
            rgba(255, 255, 255, 0) 100%
        ),
        linear-gradient(RGBA(119, 153, 190, 0.2) 15px, transparent 0),
        linear-gradient(RGBA(119, 153, 190, 0.2) 10px, transparent 0);
    background-size: 20px 70px, 60% 30px, 80% 30px;
    background-position: 0 10px, 0 10px, 0 35px;
    animation: depArvLoader 1s infinite;
    background-repeat: no-repeat;
}

.srpPaylaterDivs {
    border: 0 solid #dedde8;
    margin-top: 0;
    background: #fff;
}
.airlinesNmB {
    height: 10px;
    margin-bottom: 10px;
}
.placeholder {
    margin: 0 auto;
    width: 100%;
    min-height: 8px;
    background-color: #eee;
    border-radius: 10px;
}
/* Skelton Filter  */
.placeholderTitle {
    margin: 0;
    width: 60%;
    min-height: 8px;
    background-color: #eee;
    border-radius: 10px;
}
.airlinesRange {
    height: 5px;
    margin-bottom: 4px;
}
.placeholderRange {
    margin: 0 auto;
    width: 30px;
    min-height: 8px;
    background-color: #eee;
    border-radius: 0px;
}
.placeholderCheck {
    margin: 0 auto;
    width: 10px;
    height: 10px;
    min-height: 8px;
    background-color: #eee;
    border-radius: 0px;
}
.placeholderSort {
    margin: 0 auto;
    width: 60px;
    height: 20px;
    min-height: 8px;
    background-color: #eee;
    border-radius: 0px;
}

.placeholderSortItem {
    margin: 0 auto;
    width: 60px;
    height: 20px;
    background-color: #eee;
    border-radius: 5px;
}
.placeholderLabel {
    margin: 0 auto;
    width: 60px;
    min-height: 8px;
    background-color: #eee;
    border-radius: 0px;
}

.placeholderCount {
    margin: 0 auto;
    width: 15px;
    min-height: 8px;
    background-color: #eee;
    border-radius: 0px;
}
.placeholderBtn {
    margin: 0 auto;
    width: 100%;
    height: 20px;
    min-height: 8px;
    background-color: #eee;
    border-radius: 0px;
}
/* Skelton Filter  */
.animated-background {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-name: placeHolderShimmer;
    animation-name: placeHolderShimmer;
    background: #f6f7f8;
    background: linear-gradient(90deg, #eee 8%, #ddd 18%, #eee 33%);
    background-size: 800px 104px;
    height: 9px;
    position: relative;
}
/* End Skelton Load  */

/* Progress Bar*/
#myProgress {
    width: 100%;
    background-color: #7a7a7a;
}

#myBar {
    width: 1%;
    height: 25px;

    position: relative;
    animation: wait-bar 10s infinite;
}
#plane {
    height: 20px;
    display: block;
    position: relative;
}
.flight-txt_Lk {
    position: absolute;
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 12px;
}
#plane img {
    position: absolute;
    top: -2px;
    animation: wait-plane 10s infinite;
}

@keyframes wait-plane {
    0% {
        left: 20%;
    }
    100% {
        left: 100%;
    }
}

@keyframes wait-bar {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/* Ui style datepicker */
.ui-datepicker.ui-datepicker-multi {
    width: auto;
}
.ui-datepicker .ui-datepicker-header {
    padding: 0.2em 0;
    position: relative;
    margin: 10px 0;
}
.ui-datepicker .ui-datepicker-prev {
    background: url(../images/search/left-arrow.png) no-repeat center center;
    cursor: pointer;
}
.ui-datepicker .ui-datepicker-next {
    background: url(../images/search/right-arrow.png) no-repeat center center;
    cursor: pointer;
}
.ui-datepicker .ui-datepicker-prev {
    left: 2px;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    height: 1.8em;
    position: absolute;
    top: 4px;
    width: 1.8em;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
    display: block;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    visibility: hidden;
}

.ui-datepicker table {
    border-collapse: collapse;
    font-size: 0.9em;
    margin: 0 0 0.4em;
    width: 100%;
}
.ui-datepicker td {
    border: 0;
    padding: 2px !important;
    vertical-align: middle;
}
.ui-datepicker-calendar .ui-state-highlight {
    font-weight: 600;
    color: #000 !important;
}
.ui-datepicker td span,
.ui-datepicker td a {
    display: block;
    background-color: #fff;
    text-align: center !important;
    color: #212529 !important;
    font-size: 16px !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 0.3rem !important;
    padding: 0.65em !important;
}
.ui-datepicker .ui-datepicker-title {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}
.ui-datepicker .ui-datepicker-next {
    right: 2px;
}
.ui-datepicker-calendar .ui-state-disabled > span {
    background: #fff !important;
    color: #d0d0d0 !important;
}
.ui-datepicker-calendar .ui-datepicker-days-cell-over .ui-state-default {
    background: #b7cd3b !important;
    color: #fff !important;
}
.ui-datepicker-calendar .ui-datepicker-days-cell-over  .ui-state-active {
    background: transparent !important;
    color: #b7cd3b !important;
}
.abcRioButton {
    border-radius: 5px !important;}


@media (min-width: 768px) {
    .fb_iframe_widget span {
        width: 300px !important;
        height: 40px !important;}
    .ui-autocomplete-clear{
        display: inline-block;
        color: rgb(79, 136, 0);
        position: absolute;
        top: 12px !important;
        left: 94% !important;
        font-size: 25px;
        cursor: pointer;
    }
    /* Background on load  */
    .detailsTrans {
        background: rgba(0, 0, 0, 0.3);
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 500;
    }
    .bg-action {
        background-color: #ff8000;
        color: #fff;
    }
    .bg-action a {
        color: #fff;
    }
    .item-card-htl:first-child .bg-action {
        background-color: #b7cd3b;
        color: #fff;
    }
    .card-pc-style {
        border-color: #b7cd3b !important;
        border: #fff;
        border-radius: 0rem !important;
        transition: 0.5s ease;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
        border: 1px solid #dee2e6 !important;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    }
    .modal-height {
        height: 400px;
        overflow-x: auto;
    }
    .modal-height-600 {
        height: 550px;
        overflow-x: auto;
    }
    /* formvalidation for pc  */
    .has-error small.help-block {
        color: #fff !important;
        display: block;
        position: absolute;
        width: 100%;
        top: 55px !important;
        background-color: #e63a51;
        z-index: 10;
        padding: 0px 4px;
    }
    #fromLocationErrorMessage, #toLocationErrorMessage, #fromLocation1ErrorMessage, #fromLocation2ErrorMessage, #fromLocation3ErrorMessage,
    #toLocation1ErrorMessage, #toLocation3ErrorMessage, #toLocation2ErrorMessage {
         color: #fff!important;
        display: block;
        position: absolute;
        width: 100%;
        top: 55px!important;
        background-color: #e63a51;
        z-index: 10;
        padding: 0 4px;}
    /* formvalidation for pc  */
    .ui-datepicker-multi .ui-datepicker-group table {
        margin: 8px;
        width: 100%;
    }

    .ui-datepicker {
        display: none;
        padding: 15px !important;
        width: auto !important;
        min-width: 360px !important;
        font-size: 13px !important;
        background-color: #fff;
        z-index: 99999 !important;
        border-top: 1px solid #e6e6e6;
        border-bottom: 2px solid #b7cd3b;
        -webkit-box-shadow: 0 10px 25px -14px rgb(0 0 0 / 75%);
        -moz-box-shadow: 0 10px 25px -14px rgba(0, 0, 0, 0.75);
        box-shadow: 0 10px 25px -14px rgb(0 0 0 / 75%);
        margin-top: 8px;
    }
    .ui-datepicker-multi .ui-datepicker-group {
        float: left;
    }
    .ui-datepicker-multi-2 .ui-datepicker-group {
        width: 48% !important;
        margin: 4px 1% !important;
    }
}
@media (max-width: 767px) {
    .ui-autocomplete-clear {
        display: inline-block;
        color: rgb(79, 136, 0);
        position: absolute;
        top: 12px !important;
        left: 91% !important;
        font-size: 22px;
        cursor: pointer;
    }
    .showDetails {
        border-top: 1px dashed rgb(204, 204, 204);
        margin-top: 8px;
    }

    .stop_textinfo {
        margin-bottom: 8px;
    }
    .segment:before {
        display: block;
        content: "";
        position: absolute;
        top: 16px;
        left: -20px;
        bottom: 0px;
        background: var(--airport-color, #b7cd3b);
        width: 2px;
        height: 70%;
    }

    .stop-segment:before {
        display: block;
        content: "";
        position: absolute;
        top: -8px;
        left: -10px;
        bottom: 0px;
        background: var(--airport-color, #b7cd3b);
        width: 2px;
        height: 155px;
    }

    .stop-segment-item:before {
        display: block;
        position: absolute;
        content: "";
        border: 3px solid var(--airport-color, #b7cd3b);
        border-radius: 50%;
        width: 12px;
        height: 12px;
        left: -15px;
        top: 12px;
        background: #fff;
    }

    .depart-seg:before {
        display: block;
        height: 12px;
        position: absolute;
        content: "";
        border: var(--airport-color, #b7cd3b) 2px solid;
        border-radius: 50%;
        width: 12px;
        left: -25px;
        top: 5px;
    }

    .arrival-seg:before {
        display: block;
        height: 12px;
        position: absolute;
        content: "";
        background-color: var(--airport-color, #b7cd3b);
        border-radius: 50%;
        width: 12px;
        left: -24px;
        bottom: 14%;
    }
    .fs-5 {
        font-size: 18px !important;
    }
    .fs-6 {
        font-size: 16px !important;
    }
    .kWHvBL {
        width: 82% !important;
        margin: 18px 0px !important;
    }
    .dxOCGp {
        top: -5px !important;
    }
    .dxOCGpdots {
        top: -5.5px !important;
    }
    .btn-modal-close {
        right: 5px !important;
        top: 0px !important;
    }
    .bg-action {
        background-color: #fff;
        color: #000;
        border-top: 1px solid #ccc;
    }
    .bg-action .btn-action-form {
        color: #fff;
        background-color: #ff8000;
        border-color: #ff8000;
    }
    .box-apply {
        position: fixed;
        bottom: 0;
        left: 0;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        padding: 16px;
        background: #fff;
        z-index: 50;
    }
    #collapseSort,
    #collapseFilter {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1040;
        width: 100vw;
        height: 100vh;
        background-color: rgb(0 0 0 / 70%);
    }
    .card-sort-style {
        display: flex;
        flex-direction: column;
        max-width: 100%;
        background-color: #fff;
        transition: transform 0.3s ease-in-out;
        border-top-left-radius: 20px !important;
        border-top-right-radius: 20px !important;
        -webkit-animation-name: fadeInUp;
        animation-name: fadeInUp;
        webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-duration: var(--animate-duration);
        animation-duration: var(--animate-duration);
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        position: fixed;
        bottom: 0;
        left: 0;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        height: 50%;
        padding-bottom: 77px;
        overflow-y: scroll;
        overflow-x: auto;
        z-index: 50;
        padding: 15px;
    }
    .card-filter-style {
        display: flex;
        flex-direction: column;
        max-width: 100%;
        background-color: #fff;
        transition: transform 0.3s ease-in-out;
        border-top-left-radius: 20px !important;
        border-top-right-radius: 20px !important;
        -webkit-animation-name: fadeInUp;
        animation-name: fadeInUp;
        webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-duration: var(--animate-duration);
        animation-duration: var(--animate-duration);
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        position: fixed;
        bottom: 0;
        left: 0;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        height: 80%;
        padding-bottom: 77px;
        overflow-y: scroll;
        overflow-x: auto;
        z-index: 50;
    }

    .ui-datepicker {
        display: none;
        padding: 15px !important;
        width: auto !important;
        min-width: 100% !important;
        font-size: 13px !important;
        background-color: #fff;
        z-index: 99999 !important;
        border-top: 1px solid #e6e6e6;
        border-bottom: 2px solid #b7cd3b;
        -webkit-box-shadow: 0 10px 25px -14px rgb(0 0 0 / 75%);
        -moz-box-shadow: 0 10px 25px -14px rgba(0, 0, 0, 0.75);
        box-shadow: 0 10px 25px -14px rgb(0 0 0 / 75%);
        left: 0px !important;
        position: fixed !important;
        top: 0% !important;
        height: 100%;
        overflow: auto;
    }
    .ui-datepicker-current {
        color: #fff;
        background-color: #b7cd3b;
        border-color: #b7cd3b;
        display: inline-block;
        font-weight: 400;
        text-align: center;
        vertical-align: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        line-height: 1.5;
        border-radius: 5px;
        /* transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; */
        box-shadow: 0px 3px 1px -2px rgb(0 0 0 / 20%),
            0px 2px 2px 0px rgb(0 0 0 / 14%), 0px 1px 5px 0px rgb(0 0 0 / 12%);
        transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
        text-transform: capitalize;
        border-radius: 0;
    }

    .ui-datepicker-multi-2 .ui-datepicker-group {
        width: 100% !important;
    }
    .ui-datepicker-multi .ui-datepicker-group table {
        margin: 0px;
        width: 100%;
    }
}
.datepicker-title {
    font-size: 16px;
    text-align: center;
    color: #393e43;
    margin-bottom: 0px;
}
.ui-datepicker-close {
    color: #fff;
    background-color: #ff8000;
    border-color: #ff8000;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 4px 16px;
    font-size: 14px;
    line-height: 1.5;
      /* transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; */
      box-shadow: 0px 3px 1px -2px rgb(0 0 0 / 20%), 0px 2px 2px 0px rgb(0 0 0 / 14%), 0px 1px 5px 0px rgb(0 0 0 / 12%);
      transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: capitalize;
    border-radius: 5px;
    cursor: pointer;
    margin: 0;
    font-family: inherit;
}

@media (prefers-reduced-motion: reduce) {
    .ui-datepicker-close  {
        transition: none;
    }
}
.ui-datepicker .ui-datepicker-buttonpane {
    clear: both;
    float: right;
}

.kWHvBL {
    position: absolute;
    border-top: 1px solid #b8c5d8;
    top: 1px;
    bottom: 0px;
    width: 90%;
    height: 0px;
    margin: auto;
}
.dxOCGp {
    position: absolute;
    width: 16px;
    right: 0px;
    margin: auto;
    top: 0px;
    bottom: 0px;
    color: #b8c5d8;
    transform: scaleX(1);
}
.bfqhPl {
    user-select: none;
    pointer-events: none;
    flex: 0 0 auto;
    transform: scale(1, 1);
    width: 24px;
    height: 24px;
}

.dxOCGpdots {
    position: absolute;
    /* width: 16px; */
    left: 0px;
    margin: auto;
    top: 2px;
    bottom: 0px;
    color: #b8c5d8;
    transform: scaleX(1);
}
.airlineLogo {
    width: 30px;
    height: 100%;
}

.stop_textinfo {
    border: 1px solid #b8c5d8;
    background: #f8f8f8;
    padding: 6px 100px;
    font-size: 11px;
    color: #5c5c5c;
    margin-top: 10px;
    border-radius: 0;
    line-height: 18px;
    text-align: center;
    position: relative;
    z-index: 9;
    font-weight: 500;
}
.scrollspy-example {
    position: relative;
    height: 350px;
    margin-top: 0.5rem;
    overflow: auto;
}

.table-primary {
    color: #000;
    border-color: #f9f9f9;
    --bs-table-bg: #f9f9f9;
    --bs-table-striped-bg: #f9f9f9;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #f9f9f9;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #f9f9f9;
    --bs-table-hover-color: #000;
}
.table > :not(:first-child) {
    border-top: 1px solid currentColor;
}

.readmore {
    position: relative;
    max-height: 240px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: max-height 0.15s ease-out;
}

.readmore.expand {
    max-height: 5000px !important;
    transition: max-height 0.35s ease-in-out;
}

.readmore-link {
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    width: 100%;
    height: 100px;
    text-align: left;
    color: #0f5de4;
    font-weight: 400;
    font-size: 16px;
    padding-top: 75px;
    background-image: linear-gradient(to bottom, transparent, white);
    cursor: pointer;
    text-decoration: underline;
}

.readmore-link.expand {
    position: relative;
    background-image: none;
    padding-top: 0px;
    height: 30px;
}

.readmore-link:after {
    content: "Voir plus";
}
.readmore-link.expand:after {
    content: "Voir moins";
}

.item-flight:nth-child(2) {
    border-top: dashed 1px #d9d8d8;
    margin-top: 8px;
    padding-top: 8px;
}
.item-flight:nth-child(3) {
    border-top: dashed 1px #d9d8d8;
    margin-top: 8px;
    padding-top: 8px;
}
.btn-modal-close {
    position: absolute;
    right: -8px;
    top: -8px;
    z-index: 9;
    border: 2px solid;
    border-radius: 100%;
    background: #ffffff;
    color: #000;
    padding: 8px !important;
    opacity: 1;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    select,
    textarea,
    input {
        font-size: 16px;
    }
}
* {
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

/*** iPhone and iOS Form Input Zoom Fixes ***/
/* Fix Input Zoom on devices older than iPhone 5: */
@media screen and (device-aspect-ratio: 2/3) {
    select,
    textarea,
    input[type="text"],
    input[type="password"],
    input[type="datetime"],
    input[type="datetime-local"],
    input[type="date"],
    input[type="month"],
    input[type="time"],
    input[type="week"],
    input[type="number"],
    input[type="email"],
    input[type="url"] {
        font-size: 16px;
    }
}

/* Fix Input Zoom on iPhone 5, 5C, 5S, iPod Touch 5g */
@media screen and (device-aspect-ratio: 40/71) {
    select,
    textarea,
    input[type="text"],
    input[type="password"],
    input[type="datetime"],
    input[type="datetime-local"],
    input[type="date"],
    input[type="month"],
    input[type="time"],
    input[type="week"],
    input[type="number"],
    input[type="email"],
    input[type="url"] {
        font-size: 16px;
    }
}

/* Fix Input Zoom on iPhone 6, iPhone 6s, iPhone 7  */
@media screen and (device-aspect-ratio: 375/667) {
    select,
    textarea,
    input[type="text"],
    input[type="password"],
    input[type="datetime"],
    input[type="datetime-local"],
    input[type="date"],
    input[type="month"],
    input[type="time"],
    input[type="week"],
    input[type="number"],
    input[type="email"],
    input[type="tel"],
    input[type="url"] {
        font-size: 16px;
    }
}

/* Fix Input Zoom on iPhone 6 Plus, iPhone 6s Plus, iPhone 7 Plus, iPhone 8, iPhone X, XS, XS Max  */
@media screen and (device-aspect-ratio: 9/16) {
    select,
    textarea,
    input[type="text"],
    input[type="password"],
    input[type="datetime"],
    input[type="datetime-local"],
    input[type="date"],
    input[type="month"],
    input[type="time"],
    input[type="week"],
    input[type="number"],
    input[type="email"],
    input[type="tel"],
    input[type="url"] {
        font-size: 16px;
    }
}

.select-wrapper {
    position: relative;
    padding: 3px;
    width: 100%;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 0.375rem 0.75rem;
}
.select-wrapper .phoneprefix {
    height: 100%;
    width: 100%;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    position: absolute;
    -webkit-appearance: none;
    padding: 5px 20px;
    z-index: 10;
    padding: 0;
    margin: 0;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}
.select-wrapper .select-value .select-icon {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #888;
    right: 4px;
    top: 14px;
    position: absolute;
}

.indicators-wrapper ul li:not(:last-child) {
    margin-right: 10px;
}
.indicators-wrapper ul li {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.indicators-wrapper ul li:not(:first-child)::before {
    content: "";
    display: block;
    width: 20px;
    height: 1px;
    background-color: #9b9da0;
    margin-right: 10px;
}
.indicators-wrapper ul li .indicator-number {
    text-align: center;
}
.indicators-wrapper ul li.active-step .indicator-number .number {
    border-style: solid;
}
.indicators-wrapper ul li .indicator-number .number {
    width: 22px;
    height: 22px;
    border-width: 1px;
    border-color: #9b9da0;
    border-style: dashed;
    border-radius: 22px;
    margin: 0 auto;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}
.indicators-wrapper ul li:not(:first-child)::after {
    content: attr(data-content);
    position: relative;
    top: 0;
    font-size: 12px;
    margin-left: 5px;
}
.indicators-wrapper ul li:not(.completed-step):not(.active-step) {
    opacity: 0.7;
}
.indicators-wrapper ul li {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.indicators-wrapper ul li.completed-step .indicator-number .number:after {
    content: "\f26e";
    color: #fff;
    font-family: bootstrap-icons !important;
}
.indicators-wrapper ul li.completed-step .indicator-number .number {
    border: none;
    background-color: #006ee9;
}
.indicators-wrapper ul li .indicator-number .number {
    width: 22px;
    height: 22px;
    border-width: 1px;
    border-color: #9b9da0;
    border-style: dashed;
    border-radius: 22px;
    margin: 0 auto;
    font-size: 12px;
}
.indicators-wrapper ul li .indicator-number .number:before {
    line-height: 1;
    font-size: 11px;
    color: #9b9da0;
}
.indicators-wrapper ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.indicators-wrapper ul li .indicator-number .number,
.indicators-wrapper ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
    width: 35%;
}
.ui-datepicker .ui-datepicker-title select {
    font-size: 14px;
    margin: 1px 0;
}

.swal2-popup { background: transparent !important;}

@media (min-device-width: 1200px) and (max-device-width: 1600px){.principal-navbar .navbar-nav .nav-link {margin-left: 12px; margin-right: 12px;}}

.loadMore { text-transform: none; }

.c-last-search-items ul li {
    padding: 2px 0;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all ease .3s;
    width: auto;
    display: table;
}
.ui-slider {
    margin-top: 4px;
    height: 4px;
    position: relative;
    border: none;
    background: #00327b;
    width: 90%;
    margin-bottom: 10px;
}
.ui-slider-handle {
    background: #70CBF4;
    border-radius: 25px;
    outline: none;
    border: 2px solid #fff;
    position: absolute;
    top: -8px;
    z-index: 2;
    width: 1.5em;
    height: 1.5em;
    cursor: default;
}
.ui-slider-horizontal .ui-slider-range {
    background: #e9ecf1
}
#labelHolder {
    height: 7px;
    position: relative;
    border: none;
}
/* span {
  position: absolute;
  width: 1.2em;
  height: 1.2em;
  margin-left: -.6em;
  text-align: center;
} */



.swal2-popup {
    background: #fff !important;
}
#collapseEdit  .input-light {
    padding: 0rem 1.75rem !important;
    color: #333 !important;
    padding-left: 10px !important;
    background: #f9f9f9;
}
.input-light {
    border: none !important;
    border-radius: 0rem !important;
    padding: 0rem 1.75rem !important;
    color: #333 !important;
    padding-left: 10px !important; }

    @media (max-width: 767px) {
        .bord-sm {
            border-bottom: 1px #fff solid;
            padding-top: 4px;
            margin-bottom: 8px;
        }
        .input-light {
            padding: 0rem 1.75rem !important;
            color: #fff !important;
            padding-left: 10px !important;
            background: #092a5e;
        }
        #collapseEdit  .input-light {
            padding: 0rem 1.75rem !important;
            color: #333 !important;
            padding-left: 10px !important;
            background: #fff;
        }
        .select-ico::after {       position: absolute;
            top: 0px;
            right: 15px;
            z-index: 1;
            font-family: bootstrap-icons !important;
            content: "\F282";
            font-size: 14px; }
    }
    .bounce {
        outline: 0;
        border-color: red;
        animation-name: bounce;
        animation-duration: .5s;
        animation-delay: 0.25s;
      }
      /* This approximates the ease-in-out-bounce animation from easings.net, which would require a plug-in to use*/
      @keyframes bounce {
        0% {
          transform: translateX(0px);
          timing-function: ease-in;
        }
        37% {
          transform: translateX(5px);
          timing-function: ease-out;
        }
        55% {
          transform: translateX(-5px);
          timing-function: ease-in;
        }
        73% {
          transform: translateX(4px);
          timing-function: ease-out;
        }
        82% {
          transform: translateX(-4px);
          timing-function: ease-in;
        }
        91% {
          transform: translateX(2px);
          timing-function: ease-out;
        }
        96% {
          transform: translateX(-2px);
          timing-function: ease-in;
        }
        100% {
          transform: translateX(0px);
          timing-function: ease-in;
        }
      }
.mytooltip:hover .tooltip-content2, .mytooltip:hover .tooltip-content2 i {
    opacity: 1;
    font-size: 18px;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1); }
  .mytooltip:hover .tooltip-content4, .mytooltip:hover .tooltip-text2 {
    pointer-events: auto;
    opacity: 1;
    transform: translate3d(0, 0, 0); }
  .mytooltip {
    display: inline;
    position: relative;
    z-index: 10; }
  .mytooltip:hover .tooltip-item-header::after {
    pointer-events: auto; }
  .mytooltip:hover .tooltip-content-header {
    pointer-events: auto;
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0); }
  .mytooltip:hover .tooltip-content3 {
    opacity: 1;
    pointer-events: auto;
    transform: scale3d(1, 1, 1); }
  .mytooltip:hover .tooltip-item2 {
    color: #fff;
    transform: translate3d(0, -0.5em, 0); }
  .mytooltip:hover .tooltip-content5 {
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0s; }
  .mytooltip:hover .tooltip-text3 {
    transition-delay: 0s;
    transform: scale3d(1, 1, 1); }
  .mytooltip:hover .tooltip-inner2 {
    transition-delay: 0.3s;
    transform: translate3d(0, 0, 0); }

  .tooltip-effect-3 .tooltip-content-header {
      transform: translate3d(0, 10px, 0) rotate3d(1, 1, 0, 25deg);
      transition: opacity 0.3s, transform 0.3s;
  }
  .tooltip-content-header {
    position: absolute;
    z-index: 9999;
    width: 20rem;
    left: 50%;
    margin: 0 0 20px -180px;
    top: 2.3rem;
    text-align: left;
    font-size: 14px;
    line-height: 30px;
    box-shadow: -5px -5px 15px rgb(48 54 61 / 20%);
    background: #ffff;
    opacity: 0;
    cursor: default;
    pointer-events: none;
  }

  .tooltip-item {
    cursor: pointer;
    display: inline-block;
  }
  .tooltip-content-header  .tooltip-text {
    font-size: 14px;
    line-height: 24px;
    display: block;
    padding: 14px;
    color: #797f8e;
  }
  .tooltip-content-header::before {
    border-color: transparent transparent #d1d1d1;
    border-style: solid;
    border-width: 14px;
    content: "";
    height: 0;
    position: absolute;
    width: 0;
    left: 70%;
    top: -28px;
  }
  .tooltip-item.tooltip-head::after {
    content: none !important;
    position: absolute;
    width: 0px !important;
    height: 20px;
    bottom: 100%;
    left: 50%;
    pointer-events: none;
    transform: translateX(-50%);
}
