/* @font-face {
    font-family: 'typicons';
    src: url("path/to/typicons.eot");
    src: url("path/to/typicons.eot?#iefix") format('embedded-opentype'), url("path/to/typicons.woff") format('woff'), url("path/to/typicons.ttf") format('truetype'), url("path/to/typicons.svg#typicons") format('svg');
    font-weight: normal;
    font-style: normal;

} */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Homemade+Apple&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap");


@import "partials/_classes.css";
/* @import "partials/components/_footer.css"; */
@import "process.css";

/* --------------------------------------
    Variables
----------------------------------------- */
:root {
    --blue: #000;
    --rouge: var(--main-color);
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --fontPrimary: "-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji" !important;
    --fontSecondary: "Homemade Apple", cursive !important;
}

::placeholder {
    color: var(--blue) !important;
}
/* --------------------------------------
    Body Background
----------------------------------------- */
.body-Anti-Flash-bg {
    background-color: #f0f2f3!important;
}

/* --------------------------------------
    Font size
----------------------------------------- */
.fs-9 {
    font-size: 9px !important;
}
.fs-10 {
    font-size: 10px !important;
}
.fs-11 {
    font-size: 11px !important;
}
.fs-12 {
    font-size: 12px !important;
}
.fs-14 {
    font-size: 14px !important;
}
.fs-16 {
    font-size: 16px !important;
}

/* --------------------------------------
    Weight
----------------------------------------- */
.bold {
    font-weight: bold;
}
.fw-normal{
    font-weight: normal;
}
.fw-500 {
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
}

/* --------------------------------------
    IMG
----------------------------------------- */
img {
    max-width: 100% !important;
}

/* --------------------------------------
    preloader
----------------------------------------- */
.preloader {
    border: 6px  solid #f3f3f3;
    border-radius: 50%;
    border-top: 6px  solid var(--main-color);
    width: 45px;
    height: 45px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 1s linear infinite;
    margin: 11px auto;
    text-align:center;
}
.button__loader .spinner__inner {
    border: 3px  solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px  solid var(--main-color);
    width: 18px;
    height: 18px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    margin: 0px auto;
    text-align:center;
}
/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: var(--main-color);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* --------------------------------------
    Loging wrapper
----------------------------------------- */
#loading-wrapper {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: #fff;
}
#loading-text {
    position: absolute;
    text-align: center;
}
#loading-text img {
    max-width: 100%;
}

/* --------------------------------------
    Buttons
----------------------------------------- */
.btn-booking, input[type="submit"].btn-booking {
    background-color: var(--second-color);
    color: #fff !important;
    border: 2px solid var(--second-color);
    border-radius: 10px !important;
    cursor: pointer;
    min-width: 90px;
}


.btn-booking a, input[type="submit"].btn-booking {
    color: #fff !important;
}
.btn-booking a:hover {
    color: var(--second-color) !important;
}
.btn-booking:hover, input[type="submit"].btn-booking:hover {
    background-color: #fff;
    color: var(--second-color) !important;
    border: 2px solid var(--second-color);
}
.btn-booking:hover a{
    color: #fff !important;
}
.btn-booking.spinner::before {
    content: "";
    display: none;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
    margin-right: 12px;
}
.btn-booking.spinner.displaySpinner::before {
    display: inline-block !important;
}
.link-model__1 {
    background-color: var(--second-color);
    color: #fff !important;
    border: 2px solid var(--second-color);
    border-radius: 10px !important;
    cursor: pointer;
}
.link-outline-model__1 {
    color: var(--second-color);
    border: 2px solid var(--second-color);
    border-radius: 10px !important;
    cursor: pointer;
}
.link-model__danger {
    background-color: #dc3545;
    color: #fff !important;
    border: 2px solid #dc3545;
    border-radius: 10px !important;
    cursor: pointer;
}


/* --------------------------------------
    Border Radius
----------------------------------------- */
.rounded-10px{
    border-radius: 10px;
}

/* --------------------------------------
    Colors
----------------------------------------- */
.main-color {
    color: var(--main-color) !important;
}
.second-color {
    color: var(--second-color) !important;
}
.text-black {
    color: #000;
}
.text-red {
    color: var(--main-color);
}
.text-gray {
    color: #878787;
}
.text-white{
    color: white;
}
.text-grey {
    color: #ddd;
}
.text-blue {
    color: var(--blue);
}

/* --------------------------------------
    Background
----------------------------------------- */
.bg-white, .bg-w {
    background-color: white;
}
.bg-black {
    background-color: #000;
}
.bg-main-color {
    background-color: var(--main-color);
}
.bg-second-color {
    background-color: var(--second-color);
}
.bg-blue {
    background-color: var(--blue);
}
.bg-orange {
    background-color: var(--rouge) !important;
}
.bg_body_grey {
    background-color: #f0f2f3!important;
}
/* --------------------------------------
    Padding
----------------------------------------- */
.pt-110{
    padding-top: 110px;
}
.pt-100{
    padding-top: 100px;
}
.mb-50{
    margin-bottom: 50px !important;
}

/* --------------------------------------
    TEXT TRANSFORM
----------------------------------------- */
.text-uppercase {
    text-transform: uppercase !important;
}

/* --------------------------------------
    TEXT ALIGN
----------------------------------------- */
.text-justify {
    text-align: justify !important;
}
.text-center {
    /* text-align: center !important; */
}
.text-left {
    text-align: left !important;
}
.text-right {
    text-align: right !important;
}


.hidden {
    display: none !important;
}
.s-hidden {
    visibility:hidden;
    padding-right:10px;
}
.select {
    cursor:pointer;
    /* display:inline-block; */
    position:relative;
    /* font:normal 11px/22px Arial, Sans-Serif; */
    color: #535d89;
    /* border:1px solid #ccc; */
    border: 1px solid #535d89;
    font-weight: 400;
    border-radius: 30px !important;
    background-color: #fff;
}
.styledSelect {
    position:absolute;
    top:0;
    right:0;
    /* bottom:0; */
    left:0;
    /* background-color:white; */
    padding:0.375rem 0.75rem;
    /* font-weight:bold; */
    font-size: 12px;
    top: 50%;
    transform: translateY(-50%);
}
.styledSelect:after {
    content:"";
    width:0;
    height:0;
    border:4px solid transparent;
    border-color: #6b7399 transparent transparent transparent;
    position:absolute;
    top:13px;
    right:17px;
}
.styledSelect:active, .styledSelect.active {
    /* background-color:#eee; */
}
.options {
    display:none;
    position:absolute;
    top:100%;
    right:0;
    left:0;
    z-index:999;
    margin:0 0;
    padding:0 0;
    list-style:none;
    border:1px solid #ccc;
    background-color:white;
    -webkit-box-shadow:0 1px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow:0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow:0 1px 2px rgba(0, 0, 0, 0.2);
}
.options li {
    padding:0 6px;
    margin:0 0;
    padding:10px 10px;
}
.options li.selected {
    background-color: var(--main-color);
    color:white;
}
.options li:hover {
    background-color: var(--main-color);
    color:white;
}

/* --------------------------------------
    Msg error
----------------------------------------- */
.msg-error {
    color: red;
    font-size: 11px;
    padding-left: 11px;
    margin-top: 5px;
    margin-bottom: 0;
}
select option{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 5px;
}

/* --------------------------------------
    Badge
----------------------------------------- */
.badge {
    padding: 0.5em 0.9em;
}

/* ----------------------------------------------------------------------------------------
    faq-accordion
------------------------------------------------------------------------------------------- */
.faq-accordion .card {
    margin-bottom: 15px;
}
.faq-accordion>.card .card-header .btn {
    color: #000;
    font-weight: 700;
    font-size: 16px;
    padding: 0;
}
.faq-accordion>.card .card-header {
    padding: 0.3rem 1.25rem;
}
.faq-accordion>.card .card-body {
    padding: 0.4rem 1.25rem !important;
}

/* Style info et faq */
#info .title-detail {
    font-size: 20px !important;
}
.card {
    margin-bottom: 10px;
    box-shadow: none;
}
.card-header h3 {
    margin-bottom: 0;
    font-size: 1rem;
}
.card-header {
    background-color: #dff0fa;
    padding: .6rem 1rem;
    border-bottom: none;
}
.card-header a {
    width: 100%;
    float: left;
    color: #000;
}
.card-header a[aria-expanded="false"] .fa-angle-right {
    display: block;
}
.card-header a[aria-expanded="false"] .fa-angle-down {
    display: none;
}
.card-header a[aria-expanded="true"] .fa-angle-right {
    display: none;
}
.card-header a[aria-expanded="true"] .fa-angle-down {
    display: block;
}
.card-header i {
    float: right;
    font-size: 22px;
    width: 1%;
    margin-top: 0px;
    margin-right: 10px;
}
/* End Style info et faq*/
/* --------------------------------------
    Header
----------------------------------------- */
.devises{
    color: var(--header-text-color);
}

/* Header 2 */
.top-bar {
    background-color: var(--topbar-header-bg-color);
    color: var(--topbar-header-text-color);
}
.top-bar a {
    color: inherit !important;
}
#header_model__2 .menu ul li:last-child a{
    margin-right: 0 !important;
}

/* ----------------------------------------------------------------------------------------
    Config
------------------------------------------------------------------------------------------- */
.cursor-pointer {
    cursor: pointer;
}

/* ----------------------------------------------------------------------------------------
    Footer
------------------------------------------------------------------------------------------- */
 footer {
    background-color: var(--footer-bg-color);
    color: var(--footer-text-color) !important;
    font-size: 14px;
    padding-top: 40px;
    margin: 0 auto;
}
.footer__social {
    background: #fff;
    width: 100%;
    padding: 100px;
    margin: auto;
    display: grid !important;
    justify-content: center !important;
    align-content: center !important;
}
footer .social__list {
    padding: 0 !important;
}
@media screen and (max-width: 411px) {
    footer .footer__social {
        padding: 48px;
    }
}
footer li {
    list-style: none;
}
footer .pages a,
footer .contacts li {
    margin-left: -40px !important;
}
footer a {
    color: var(--footer-text-color);
    transition: 0.3s;
}
footer a:hover{
    color: #cfcfcf;
    transition: 0.3s;
}
footer .divider{
    border-top: 2px solid #6aa9e8;
    display: flex;
    margin: 0;
    direction: ltr;
}
footer .footer__address {
    margin: 0 auto;
    width: 100%;
}
footer .list-title {
    margin-top: 10px;
    padding-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 20px;
}
footer .list-title li{
    font-weight: 300;
    line-height: 24px;
}
.footer__payment {
    text-align: center;
    margin: 0 !important;
    padding: 0 !important;
}
.footer__payment i {
    font-size: 45px;
}

.footer__payment .cmi {
    font-size: 20px;
    font-weight: bold;
    color: var(--footer-bg-color);
    width: 50.63px;
    height: 45px;
    background-color: var(--footer-text-color);
    border-radius: 4px;
    padding: 8px;
    position: relative;
    top: -10px;
}

footer .nano {
    font-weight: bold;
    text-transform: uppercase;
}

/* Footer 2 */
#footer_model__2 .footer__payment {
    text-align: right;
}
#footer_model__2 .link-footer {
    /* color: #ffffff; */
    text-transform: capitalize;
}
#footer_model__2 .newsletter-sub {
    background-color: rgba(255, 255, 255, 0.25);
    height: 45px;
    padding: 0;
    border-radius: 22px;
    display: flex;
    flex-grow: 1;
}
#footer_model__2 .input-newsletter {
    border: 0 none;
    height: 45px;
    color: var(--footer-text-color);
    font-size: 14px;
    font-style: italic;
    width: 100%;
    padding: 0 20px;
    outline: 0;
    background: none;
}
#footer_model__2 .button-newsletter {
    width: 55px;
    height: 45px;
    align-items: center;
    border-radius: 500px;
    border: navajowhite;
    color: #192a4a;
    cursor: pointer;
    display: flex;
    background: var(--footer-text-color);
    justify-content: center;
    padding: 1px 0 0 3px;
}
#footer_model__2 .follow-us a {
    padding-right: 18px;
}
#footer_model__2 .follow-us .fab {
    font-size: 30px;
}

/* ----------------------------------------------------------------------------------------
    Strong points
------------------------------------------------------------------------------------------- */
.strong-points-item {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px 10px;
	background-color: white;
}
.strong-points-item p {
    margin-bottom: 0;
}
#strong-points h4 {
    font-weight: 600;
    font-size: 1rem;
}
#strong-points p {
    font-size: 11px;
}
.icon-item {
    background-color: rgb(232, 242, 255);
    color: var(--footer-bg-color);
    width: 48px;
    height: 48px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --------------------------------------
    Daterange Picker
----------------------------------------- */
/* .daterangepicker td.active, .daterangepicker td.active:hover {
    background-color: var(--main-color) !important;
} */

/* --------------------------------------
    General
----------------------------------------- */
.text-dark {
    /* color: #343a40!important;
    font-weight: 700;
    font-size: 16px; */
}
.content-card-item {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 10px;
}
.img-aller {
    width: 32px;
    height: 32px;
    margin-right: -1px;
    background-color: #f5f5f5;
    border-radius: 100%;
    padding: 3px;
}
.no-result {
    text-align: center;
}
.boxed-container {
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: white;
}
#results-header-messages h3 {
    font-weight: 700;
    margin-bottom: 25px;
}
.no-result {
    font-size: 25px;
    font-weight: 700;
}
/* --------------------------------------
    Deal card - Style 1
----------------------------------------- */




/* --------------------------------------
    Home page
----------------------------------------- */
/* Hotel Search engine */
.sw-passengers {
    width: 300px;
    top: 100%;
    z-index: 99999;
    box-shadow: 1px 1px 11px 2px #495057;
}
.number-input button:before {
    display: inline-block;
    position: absolute;
    content: '';
    width: 1rem;
    height: 2px;
    background-color: #212121;
    transform: translate(-50%, -50%);
}
.number-input button.subtraction:before {
    display: inline-block;
    position: absolute;
    content: "";
    width: 1rem;
    height: 2px;
    background-color: #212121;
    transform: translate(-50%, -50%);
}
.number-input button.plus:after {
    display: inline-block;
    position: absolute;
    content: "";
    width: 1rem;
    height: 2px;
    background-color: #212121;
    transform: translate(-50%, -50%);
}
.number-input button.plus:after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.sw-passengers-input {
    background: #fff;
    cursor: pointer;
}
.sw-passengers i {
    position: absolute;
    top: -25px;
    font-size: 2.5pc;
    z-index: 1;
}
span.hotelsearch_children_title {
    color: #000;
    font-size: 11px;
    line-height: 20px;
    display: block;
    font-weight: bold;
    margin-top: 15px;
}
#room-list select.childrenAge-select {
    width: 100%;
    height: auto !important;
    border: 1px solid #ddd;
    padding: 5px 5px;
    margin-bottom: 10px;
    margin-top: 10px;
}

/* --------------------------------------
    Package details page
----------------------------------------- */
.Tableau-Formule {
    background: #fff;
    margin-bottom: 10px;
    border: 1px solid #dee2e6 !important;
}
.formula-item {
    /* background-color: #f3f3f3; */
    margin-bottom: 10px;
}
.title-detail .nav-link{
    color: var(--main-color) !important;
    font-weight: bold;
    background-color: white;
    position: relative;
    display: inline-block;
    margin-top: 20px;
}
.title-detail .nav-link::after{
    content:'';
    display: block;
    width: 85%;
    height: 4px;
    background-color: var(--main-color);
    margin-top: 4px;
}
#gallerie .img-cover{
    height: 339px!important;
    width: 630px!important;
    padding: 5px;
}
#gallerie .imgs{
    height: 169px!important;
    /* width: 300px!important; */
    padding-right: 2px;
    padding: 5px;
    object-fit: cover;
}
#gallerie .img-thumb{
    height: 142px!important;
    padding: 5px;
    width: auto !important;
    width: 208px !important;
}
#gallerie .box-count{
    background-color: rgba(0, 11, 38, 0.56);
    color: #fff;
    border-radius: 8px;
    width: 100px;
    height:36px;
    font-size: 16px;
    line-height: 20px;
    padding: 8px 16px;
    position:absolute;
    bottom: 16px;
    right: 19px;
    cursor:pointer;
}

/* --------------------------------------------------
    Package dynamic details page
----------------------------------------------------- */
/******** General **********/
.flight-and-hotel {
    font-size: 12px;
    display: block;
}
/******* / General ********/

#package-dynamic-detail .img-search-item-card {
    border-bottom-left-radius: 0;
}
#package-dynamic-detail .searchresults_item__top_ceontent {
    border-bottom: 1px solid #ccc;
}
@media (min-width: 768px){
    .departure_flight {
        border-right: 1px solid #ccc;
    }
}
@media (max-width: 991px){
    .handbag {
        margin-top: 2.5rem!important;
    }
}

/** Dynamic package hotel detail **/
.package_dynamic__hotel__detail .package_dynamic__detail-hotel__rooms {
    background-color: white;
    color: var(--blue);
    padding-top: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
}
.package_dynamic__hotel__detail .package_dynamic__detail__flight {
    background-color: #fff;
    border-top: 1px solid #ccc;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

#gallerie-imgs {

}
#gallerie-imgs .box-count{
    background-color: rgba(0, 11, 38, 0.56);
    color: #fff;
    border-radius: 8px;
    width: 100px;
    height:36px;
    font-size: 16px;
    line-height: 20px;
    padding: 8px 16px;
    position:absolute;
    bottom: 16px;
    right: 19px;
    cursor:pointer;
}
#gallerie-imgs .img-cover {
    /* min-height: 339px !important; */
    min-height: 100% !important;
    max-height: 400px;
    object-fit: cover;
}
#gallerie-imgs .imgs {
    height: 100% !important;
    /* width: 300px!important; */
    object-fit: cover;
    max-height: 195px;
}
@media (min-width: 768px){
    .gallerie-grid {
        grid-template-rows: repeat(3, minmax(0, 1fr));
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-auto-flow: column;
        gap: 0.5rem;
        display: grid;
        position: relative;
    }
}
@media (max-width: 767px){
    #item-0 {
        border-radius: 10px !important;
    }
}
#item-0 {
    border-top-left-radius: 10px; 
    grid-row: span 2 / span 2;
    grid-column: span 3 / span 3;
}
#item-1 {
    border-bottom-left-radius: 10px;
 }

 #item-4 {
    border-top-right-radius: 10px;
 }
 #item-6 {
    border-bottom-right-radius: 10px;
 }
/* --------------------------------------
    All cities page
----------------------------------------- */
.box-all-cities .h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
    text-align: center;
}
.box-all-cities .subtitle {
    font-family: var(--fontSecondary);
    font-size: 20px;
    margin-bottom: 16px;
    text-align: center;
    color: var(--second-color);
    padding-top: 10px;
    padding-bottom: 20px;
}
.box-all-cities img:hover{
    filter: brightness(0.6);
    transition: 1s;
}

.box-all-cities img{
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
}

/* --------------------------------------
    Deals by city page
----------------------------------------- */
.box-city-deal {
    padding-top: 30px;
    padding-bottom: 30px;
}
.city-detail img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.city-detail .city-detail-right {
    padding-left: 15px;
}
.city-detail-right .h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0;
}
.city-detail-right .subtitle {
    font-family: var(--fontSecondary);
    font-size: 19px;
    margin-bottom: 10px;
    text-align: left;
    color: #145fa3;
    padding-top: 4px;
}
.city-detail-right .desc {
    text-align: justify;
}

/* --------------------------------------------------
    Search list Result
----------------------------------------------------- */

.header-inner-top {
    position: relative;
}
.searchresults_page .searchresults_list .searchresults_item {
    margin-bottom: 1.5rem!important;
}
.searchresults_page .searchresults_list .searchresults_item .price_list_item {
    color: var(--main-color);
    font-size: 1.4rem;
    font-weight: 700 !important;
}
.search-list-page h5.title {
    height: 50px;
    border-left: 6px solid var(--main-color);
    padding-left: 10px;
    padding-top: 8px;
    font-weight: 700;
}
.search-list-page .img-search-item-card {
    width: 338px;
    height: 258px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    min-width: 100%;
    object-fit: cover;
}
.search-list-page .item-search {
    border: 1px solid #ccc;
    border-radius: 10px;
}
.sarch-filter label {
    font-weight: normal;
}
.pub{
    display: none !important;
}

@media (max-width: 991px){
    .pub{
        display: flex !important;
        text-align: center;
    }
    .menu-web {
        display: none !important;
    }
    .menu-mobile {
        display: flex !important;
    }
    .nav-multiple-tabs .tab-title-home-web {
        display: none !important;
    }
    .nav-multiple-tabs .tab-title-home-mobile {
        display: block !important;
    }
    .search-list-page .img-search-item-card {
        width: 100%;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0;
    }
    .shortdesc {
        margin-bottom: 20px !important;
    }
}

/* --------------------------------------------------
    Result Search - hotels Page
----------------------------------------------------- */
.search-room-detail{
    padding: 15px 15px;
    border: 1px solid #ddd;
    margin: 15px 0;
    background-color: white;
}
.icons-hotel-options{
    width: 20px;
    height: 20px
}
#hotels-list-page .motor-search-web {
    /* position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
}
.img-card-deal {
    background: var(--second-color);
    color: #fff;
    position: absolute;
    padding: 5px 20px;
    border-radius: 30px;
    margin: 10px 5px;
    text-transform: capitalize;
}
@media (max-width: 767px){
    #hotels-list-page .motor-search-web{
        /* position: initial;
        transform: inherit; */
    }
}
.deal-card-border {
    border: 1px solid #ccc;
}

/* --------------------------------------
    Validation Form
----------------------------------------- */
.has-error input,
.has-error textarea,
.has-error select {
    border: 1px solid #a30000;
}
.has-error input:focus,
.has-error textarea:focus,
.has-error select:focus {
    box-shadow: none;
    border: 2px solid #a30000;
}
.error-help-block {
    color: #a30000;
    font-weight: bold;
    display: none !important;
}

/* --------------------------------------
    Hotel page detail
----------------------------------------- */
.selected-room {
    cursor: pointer;
    position: relative;
}
/* --------------------------------------------------
    Result Search - Multi flights Page
----------------------------------------------------- */
#multi-flights-list-page .motor-search-web {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.beSwapCity {
    position: relative;
}
@media (max-width: 767px){
    .beSwapCity {
        margin-top: 46px;
    }
}
.beSwapCity div {
    position: absolute;
    z-index: 1;
    right: -15px;
    top: 25%;
    width: 28px;
    text-align: center;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #dee2e6;
}
.fa-sync-alt:before {
    content: "\f2f1";
}
button.search-btn {
    background-color: var(--second-color);
    color: #fff;
    border: none;
    height: 100%;
    width: 100%;
    border-radius: 10px;
    min-height: 45px;
}


/* --------------------------------------------------
    Result Search - flights Page
----------------------------------------------------- */
#flights-list-page .motor-search-web {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media (max-width: 767px){
    #flights-list-page .motor-search-web,
    #multi-flights-list-page .motor-search-web{
        position: initial;
        transform: inherit;
    }
}

/* --------------------------------------------------
    Search Form engine
----------------------------------------------------- */
.booking-search{
    padding: 25px;
    position: relative;
    box-shadow: 0px 3px 30px 6px #0000001c;
    margin: 0;
    align-items: center;
    border-radius: 10px;
    background: #fff;
}

.simple_form__searchEngine .booking-search,
.multi_form__searchEngine .booking-search{
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}
.multi_vol__band{
    background: #41404094;
    border-radius: 0 0 10px 10px;
}
.row-destinations {
    /* border-bottom: 1px solid #dee2e6!important;
    border-right: 1px solid #dee2e6!important;
    border-left: 1px solid #dee2e6!important; */
}
@media (max-width: 767px){
    .row-destinations {
        /* border: 2px solid #beb9b9; */
        padding: 23px 0;
        /* border-radius: 19px; */
        /* margin-bottom: 19px; */
        border-top: 2px solid #ccc;
    }
}
#destinations-0.row-destinations {
    /* border-top: 1px solid #dee2e6!important;   */
}

/* --------------------------------------------------
    Book page
----------------------------------------------------- */
#book__total {
    font-weight: 600;
    font-size: 20px;
}

/* --------------------------------------------------
    Result Search - Packages Page
----------------------------------------------------- */
.package-item-search {
    border: 1px solid #ccc;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

/* --------------------------------------------------
    Result Search - Activities Page
----------------------------------------------------- */
#activities-list-page .motor-search-web {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 767px){
    #activities-list-page .motor-search-web{
        position: initial;
        transform: inherit;
    }
}

/* --------------------------------------------------
    Result Search activities - Show Page
----------------------------------------------------- */
.starIcon-activity {
    width: 70px;
    height: 70px;
    font-weight: 500;
    text-transform: none;
    font-size: 24px;
    line-height: 80px;
    position: absolute;
    color: #ff9933;
    border-radius: 50%;
    text-align: center;
    border: 2px solid #ccc;
    float: left;
    margin-left: 45px;
}
.bg-package {
    background: #ccc;
    padding: 20px;
    position: relative;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 10px;
}
.text-programme-line:after {
    right: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-right-color: #ccc;
    border-width: 10px;
    top: 15px;
}
button.owl-next, button.owl-prev {
    position: absolute;
    top: 44%;
    color: #fff !important;
    /* background: #0000005e !important; */
    height: 50px;
    width: 50px;
    border-radius: 50% !important;
    font-size: 30px !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.owl-carousel .owl-nav button.owl-next span,
.owl-carousel .owl-nav button.owl-prev span {
    display: none !important;
}
button.owl-next:after {
    background-image: url('../img/right-arrow.png');
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    height: 50px;
    width: 20px;
    filter: invert(89%) sepia(97%) saturate(0) hue-rotate(279deg) brightness(105%) contrast(105%);
    color: #fff;
    transform: rotate(180deg);
}
button.owl-prev:after {
    background-image: url('../img/right-arrow.png');
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    height: 50px;
    width: 20px;
    filter: invert(89%) sepia(97%) saturate(0) hue-rotate(279deg) brightness(105%) contrast(105%);
    color: #fff;
    transform: rotate(-0deg);
}
button.owl-prev {
    left: 10px;
    transform: rotate(180deg);
}
button.owl-next {
    right: 10px;
    transform: rotate(180deg);
}
.count {
    color: #000;
    display: inline-block;
    vertical-align: top;
    font-size: 25px;
    font-weight: 700;
    line-height: 20px;
    width: 65px;
    text-align: center;
}


/* --- detail hotel ---*/
.description-detail-hotel{
    background-color: white;
    margin-top: 70px;
    color: var(--blue);
}

.display-hotel-description{
    color: var(--rouge);
    font-size: 16px;
}

.display-hotel-description::after{
    content: "";
    height: 4px;
    width: 45%;
    display: block;
    background-color: var(--rouge);
}

/* --------------------------------------------------
    Booking page
----------------------------------------------------- */
.booking_page .title-card  {
    font-size: 20px;
    font-weight: bold;
    padding: 15px 0 0;
}
.paymentType-items .custom-control{
    padding-left: 0 !important;
}
.paymentType_desc {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 15px 24px;
    margin-bottom: 20px;
}
.paymentType_desc img {
    max-width: 100%;
}
/* --------------------------------------
    CHECKBOX
----------------------------------------- */
.custom-control-input:focus:not(:checked)~.custom-control-label::before {
    border-color: var(--rouge);
}
.custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(237, 153, 3, 0.42);
}
.custom-control-input:focus:not(:checked)~.custom-control-label::before {
    border-color: var(--rouge);
}
.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: var(--rouge);
    background-color: var(--rouge);
}
.a:hover {
    color: var(--rouge) !important;
    text-decoration: underline;
}
.link-flight-promo {
    color: #647582;
    font-size: 14px;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.irs-bar {
    height: 10px;
    top: 33px;
    border-top: 1px solid var(--main-color);
    border-bottom: 1px solid var(--main-color);
    background: var(--main-color);
    background: linear-gradient(to top, var(--main-color) 0%, var(--main-color) 100%);
}
.irs-from,
.irs-to,
.irs-single {
    background: var(--main-color);
}
.irs-slider {
    top: 27px;
    width: 22px;
    height: 22px;
}


/*CHECKBOX*/

body {
    font-family: 'Open Sans', sans-serif !important;
   background-color: white;
    font-size: 14px;
    color: #000 !important;
    padding-right: 0 !important;
    /* background-image: url(../img/lfen/bg-noel.jpg); */
}

.div-text-slider {
    position: absolute;
    top: 12%;
    z-index: 1;
    right: 0;
    left: 0;
}

.span-text-slider {
    font-size: 2rem;
    margin: -55px 0;
    padding: 5px 20px;
    display: inline-block;
    position: relative;
    color: #fff;
    text-align: center;
}

.span-text-slider-titre {
    padding: 0px;
    /* display: inline-block; */
    margin-bottom: 10px;
    font-size: 29px;
    font-weight: 500;
    color: #fff;
    /* position: relative; */
    color: #fff;
    text-shadow: 2px 2px #081619;
}

.span-text-slider-2 {
    font-weight: 500;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    margin-top: 0;
    font-size: 3rem;
    margin: 0px 0;
    padding: 5px 20px;
    position: relative;
    color: #fff;
    text-shadow: 2px 2px #081619;
}

.bg-my {
    background: var(--second-color);
    color: #fff;
    border-radius: 3px;
}

.btn.bg-my {
    border: 2px solid var(--second-color);
    border-radius: 10px !important;
    cursor: pointer;
}

.btn.bg-my:hover {
    background: #fff;
    color: var(--second-color) !important;
    border: 2px solid var(--second-color);
}

.bg-my-2 {
    background: #fff;
    color: var(--second-color);
    width: 150px;
    margin: auto;
}

.btn.bg-my-2 {
    border: 2px solid var(--second-color);
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.3);
    border-radius: 3px !important;
}

.btn.bg-my-2:hover {
    background: var(--second-color);
    color: #fff !important;
    border: 2px solid var(--second-color);
}

.bg-my3 {
    background: #145fa3;
    color: #fff;
    padding: 20px;
}

.btn.bg-my3 {
    border: 2px solid #145fa3;
}

.btn.bg-my3:hover {
    background: #fff;
    color: #145fa3 !important;
    border: 2px solid #145fa3;
}

.c-show {
    position: absolute;
    cursor: pointer;
    background-color: #fff;
    width: 76px;
    height: 50px;
    color: var(--rouge);
    font-weight: 800;
    font-size: 2.5rem;
    bottom: -12px;
    right: 0;
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
    text-align: center;
    line-height: 2rem;
    transition: opacity ease 0.3s;
}

.c-show-bleu {
    position: absolute;
    cursor: pointer;
    background-color: #fff;
    width: 76px;
    height: 50px;
    color: var(--rouge);
    font-weight: 800;
    font-size: 2.5rem;
    bottom: -12px;
    right: 0;
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
    text-align: center;
    line-height: 2rem;
    transition: opacity ease 0.3s;
}

.c-prix-card {
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--rouge);
    text-align: center;
    display: block;
    padding: 5px;
}


.pt-50{
    padding-top: 40px;
}


@media screen and (max-width: 1025px) {
    .block {
        display: block;
    }
}


.modal-content {
    border-radius: 0 !important;
}
#home-page .p-headerHomer{
    margin-top: -155px;
}
.line:before {
    content: " ";
    height: 1px;
    width: 100%;
    color: var(--blue);
    /*#ddd;*/
    background: var(--blue);
    /*#ddd;*/
    display: block;
}

.line-trajet {
    background-color:var(--blue); width: 100%; height: 1px; margin-top: 20px;
}
/*List vols*/

.line-h:before {
    content: " ";
    height: 69%;
    width: 1px;
    background: var(--blue);
    /*#ddd;*/
    position: absolute;
    color: var(--blue);
    /*#ddd;*/
    right: 0;
    margin: -8px 0;
}

.fa-line-h {
    position: absolute;
    right: -5px;
    top: 9px;
    color: #ddd;
    font-size: 11px;
}

.fa-line-b {
    position: absolute;
    right: -5px;
    bottom: 9px;
    color: var(--blue);
    /*#ddd;*/
    font-size: 11px;
}


/* .line-plane{
    width: 2px;
    height: 20px;
    background: var(--blue);
} */

.fa-plane-line {
    width: 2px;
    height: 73px;
    background: var(--blue);
    position: absolute;
    top: -1px;
    left: 18px;
}

.fa-plane-line-2 {
    width: 2px;
    height: 73px;
    background: var(--blue);
    position: absolute;
    top: -1px;
    left: 18px;
}

.payment .nav-link.active {
    background: var(--blue);
    /*f44336;*/
    border-radius: 0;
}
.payement .nav-link.active {
    background: var(--blue) !important;
    /*f44336;*/
    border-radius: 0 !important;
}


/* Menu Mobil */

.mobil .nav .delete .fas {
    font-size: 24px;
    color: #fff;
    position: relative;
    padding: 7px;
    left: 240px;
    cursor: pointer;
    display: inline-block;
}
.menu-mobile .contact {
    /* z-index: 99999; */
}
.mobil .fas {
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

.mobil .nav {
    width: 300px;
    height: 600px;
    display: inline-block;
    position: absolute;
    left: -1000px;
    z-index: 500;
    top: 44.9px;
    transition: all 1s ease 0s;
}

.mobil .nav .bar {
    background: var(--rouge);
    width: 270px;
    height: 100%;
}

.mobil .menu ul {
    list-style: none;
}

.mobil .menu li {
    display: grid;
}

.mobil .menu a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    padding: 10px 0 10px 50px;
}

.mobil .menu li.active {
    background: var(--blue); /*#32768b;*/
}


.mobil img.logo {
    height: 70px;
}

.mobil .contact i {
    font-size: 24px !important;
}

.mobil .contact a {
    padding: 0 10px;
    color: #fff;
    text-decoration: none;
}

.mobil .dropdown-menu {
    background: var(--rouge);
}

.mobil .dropdown-item:hover {
    background-color: #333;
}


/* end menu mobil */

.menu .dropdown-item:active {
    background-color: #b13c00;
}

.menu .dropdown-menu {
    padding: 0;
    border-radius: 0;
}

.menu a.dropdown-item {
    padding-left: 21px !important;
}


/* Menu web */

.web .dropdown-menu {
    background: white;
    width: 200px;
}
.web .dropdown-menu h4{
    font-size: 16px;
}
.web .dropdown-menu p{
    font-size: 10px;
}
.web .dropdown-menu li{
    font-size: 12px;
    font-weight: 500;
}
.web .dropdown-item:hover {
    background-color: var(--rouge);
}

.web .position-relative {
    z-index: 10;
}

.web .nav .delete .fas {
    font-size: 24px;
    color: #fff;
    /* position: relative; */
    padding: 7px;
    left: 240px;
    cursor: pointer;
    display: inline-block;
}

.web .fas {
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

.web .nav {
    width: 100%;
    display: inline-block;
    /* position: absolute; */
    z-index: 9;
    left: -2000px;
    top: 84px;
}

.web .nav .bar {
    /* background: #888; */
}

.web .menu ul {
    list-style: none;
    float: right !important;
    padding-left: 0;
}

.web .menu li {
    display: inherit;
    padding-left: 1px;
    padding-right: 1px;
    position: relative;
}

.web .menu li.active {
    /* border-bottom: solid 6px white;  */
    /* var(--blue); /* var(--rouge); e64e00;*/
}

.web .menu li .active {
    /* border-bottom: solid 6px white;  */
    display: block;
    background-color: white;
    height: 7px;
    width: 45%;
    position: absolute;
    top: 38px;
    left: 10px;
    text-align: center;
}

.web .menu a {
    color: var(--header-text-color);
    font-weight: 700;
    padding: 10px 8px;
    text-decoration: none;
    letter-spacing: 1px;
    margin-right: 12px;
}

.web .menu li:last-child a {
    margin-right: 0;
    padding-right: 0;
}

.web .menu .second-menu a  {
    font-weight: 500;
    font-size: 12px;
    margin-right: 0;
}
.web .menu .second-menu li:last-child a {
    margin-right: 0;
    padding-right: 0;
}

.web img.logo {
    width: 215px;
}

.web .contact i {
    font-size: 24px !important;
}

.web .contact a {
    padding: 0 10px;
    color: #fff;
    text-decoration: none;
}

.web .contact p:first-child {
    margin-bottom: 5.6px !important;
}

.web {
    background-color: var(--header-bg-color);
    font-weight: 900 !important;
    padding: 12px;
    padding-bottom: 12px;
}


/* .web .bg-header {
    background-color: var(--blue);
    height: 60px;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

} */


/* .bg-header {
    width: 100%;
    height: 60px;
    background-color: var(--blue);
} */

.c-txt-or {
    color: var(--rouge);
    font-size: 1rem;
    font-weight: bold;
}

.p-headerHome {
    padding-top: 305px;
}
@media screen and (max-width: 361px) {
    .p-headerHome {
        padding-top: 50px;
    }
    .p-headerHomer{
    margin-top: 0px !important;
}
.nav-tabs .nav-link {
    width: auto !important;

}
.nav-tabs .nav-link.active .txtspan {
    display: inline !important;
}
.header-moteur-de-recherche{
    /* background-color: #f44336;
    padding-bottom: 20px;
    padding-top: 20px; */
}
}
@media screen and (min-width: 360px) and (max-width: 1025px) {
    .c-txt-or {
        font-size: 15px;
    }
}
.nav-tabs .nav-link {
    width: auto !important;
}
.nav-tabs .nav-link.active .txtspan {
    display: inline !important;
}
/* end menu web */


/*Search web*/

.motor-search-web {
    position: absolute;
    bottom: 5%;
    z-index: 1;
    right: 0;
    left: 0;
}
@media (max-width: 767px){
    .motor-search-web{
        /* position: initial; */
        transform: inherit;
    }
    .owl-carousel-desktop .owl-item img {
        height: 570px !important;
    }
}
.motor-search-web .tab-pane {
    /* background: rgba(0, 0, 0, .6); */
    /* color: #000;
    padding: 10px 20px; */
    /* max-height: 250px; */
}

.motor-search-web .nav-tabs .nav-link {
    border-radius: 0;
    margin-right: 4px;
    color: white;
    width: auto !important;
    border-radius: 12px 12px 0px 0px;
    border: none;
}
@media (max-width: 500px) {
    #nav-activity-tab{
        display: none;
    }
}

.motor-search-web .nav-tabs .nav-link.active {
    background-color: rgb(0, 0, 0);
    color: #fff;
    width: auto !important;
}

.motor-search-web .nav-tabs {
    border: none;
    display: -webkit-box;
}

.motor-search-web nav {
    overflow: auto;
    overflow-y: hidden;
}

option {
    background-color: #fff;
    color: #000;
}




.owl-dots {
    position: absolute;
    bottom: 1px;
    left: 0;
    right: 0;
}


/*end Search web*/

/*list package*/

@media screen and (min-width: 361px) {
    .w-sm-45{
        width: 45%;
        margin: auto;
    }
}
.title-package {
    color: var(--blue);
    font-weight: bold;
    font-size: 16px;
}
.pack .card-body {
    /* display: none;
     position: absolute;*/
    width: 100%;
    background: #ffffffdb;
    color: #000;
    bottom: 0;
    height: 100px;
    border-top: 2px solid #f60;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.pack .card-bleu {
    background: #fff !important;
}

.pack:hover .card-body {
    display: block;
}

.pack .price-card strong {
    font-size: 17px;
}

.pack .price-card {
    text-decoration: none;
    cursor: pointer;
    font-size: 11px;
    color: var(--rouge);
}

.pack .price-card:hover {
    color: var(--rouge);
}

.pack .title-card {
    font-size: 13px;
    font-weight: 600;
    color: #f60;
    text-transform: uppercase;
}

.pack .card-text {
    font-size: 11px;
    color: #666;
    font-weight: 700;
}

.vol {
    border: none;
    border-radius: inherit;
    border-bottom: 2px solid #ddd;
}

.vol .card-text {
    margin: 0;
    font-size: 15px;
}

.vol .title-card {
    font-size: 18px;
    font-weight: 600;
}

.vol .price-card strong {
    font-size: 22px;
}

.vol .price-card {
    color: #fff;
}


/*end ListPackage*/

.owl-hotel .price-card {
    color: #fff;
    font-size: 15px;
    font-weight: 900;
}

.owl-hotel .icon {
    top: 35%;
    left: 22%;
    width: 150px;
    background: var(--rouge)bd;
    color: #fff;
    padding: 10px;
}

.icon strong {
    font-size: 30px;
    font-weight: 900;
    line-height: 0.7;
}

.icon span {
    font-size: 12px;
}

.bg-img {
    background: url(../img/div.png);
    height: 350px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
}

.bg-my2 p span {
    font-size: 31px;
    font-weight: 800;
}

.bg-my2 {
    background: #172b2c;
}

li.media-footer {
    background: #ddd;
    height: 47px;
    color: #fff;
    margin-left: 2px;
    border-radius: 50%;
    margin-right: 2px;
    width: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
}

a.footer-link {
    color: #fff !important;
    font-weight: 600;
    display: inline-block;
    padding: 0 10px;
    border-left: 1px solid #ccc;
    font-size: 12px;
}

a.footer-link:hover {
    color: orangered !important;
    cursor: pointer;
}

label {
    font-size: 14px;
}


/*Border style*/

.border-md-left-2 {
    border-right: 2px solid;
}

.border-dots {
    border-bottom-style: dotted !important;
}

.jecherche {
    color: #fff;
}
.motor-search-web .tab-content{
    /* margin-top: 224px; */
}
.motor-search-web .tab-content{
    /* margin-top: 224px; */
}
@media only screen and (max-width: 768px) {
    .motor-search-web .tab-content{
        /* margin-top: -200px; */
    }
    .p-headerHomer{
    margin-top: 0px !important;
}
}
/*Border Colors*/

@media only screen and (max-width: 768px) {
    .motor-search-web {
        /* position: relative; */
        /* padding: 0; */
        /* margin: 0 !important; */
        /* margin-top: -200px; */
        /* padding: 0 !important; */
    }
    /* .form-control-new{
        border-right: 3px solid var(--rouge) !important;
    } */
    .Tableau-Formule {
        display: none;
    }
    .form-control-typflight {
        display: block;
        width: 100%;
        height: calc(1.5em + 0.75rem + 2px);
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: #fff;
        /*495057;*/
        background-color: #fff;
        background-clip: padding-box;
        border: 1px solid #ced4da;
        border-radius: 0.25rem;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }
    .motor-search-web .nav-tabs .nav-link {
        margin-right: 4px;
        color: #fff;
        border: none;
    }
    .text-slider-right {
        display: none;
    }
    .volsejour {
        padding: 12px;
        font-size: 12px;
    }
    .motor-search-web .nav-tabs .nav-link.active {
        border-bottom: 5px solid #fff;
    }
    .nav-link {
        display: table-cell;
    }
    .motor-search-web .tab-pane {
        /* background: rgb(255 255 255); */
    }
    .jecherche {
        color: #666;
    }
    .flexslider {
        display: none;
    }
    .newNavSearch {
        /* background-color: rgba(0, 0, 0, 0.6) !important; */
        /* background-color: rgba(0, 0, 0, 0.1) !important;*/
        -webkit-box-pack: unset !important;
        width: 100%;
        position: relative;
    }
    h1 {
        font-size: 18px;
        font-weight: 600;
    }
    .bg-img {
        height: 110px;
    }
    .border-xs-0 {
        border: none;
    }
    /*payment methode*/
    .listPayment {
        width: 100%;
    }
    .listPayment .pay {
        width: 100%;
        display: block;
    }
}

.pay {
    background: #ddd;
    color: #3b3b3b;
    border-radius: 0 !important;
    border: 1px solid #fff;
}


/*Input Number*/

a.btn.btn-fb {
    background: #4267b2;
    color: #fff;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.3);
    font-size: 20px;
    border-radius: 3px !important;
}

input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.number-input {
    border: 1px solid #ddd;
    display: inline-flex;
}

.number-input button {
    outline: none;
    -webkit-appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 20px 20px;
}

.number-input input[type="number"] {
    border: solid #ddd;
    border-width: 0 1px;
    text-align: center;
    width: 40px;
    padding-left: 0 !important;
}


/*End Input Number*/


/*checkBox*/

.checkbox>input[type="checkbox"] {
    visibility: hidden;
}

.checkbox {
    position: relative;
    display: block;
    border: 1px solid #ced4da;
    width: 213px;
    height: 35px;
    background: #fff;
    line-height: 35px;
    -moz-border-radius: 2px;
}

.checkbox:after {
    position: absolute;
    display: inline;
    right: 10px;
    content: "Aller simple";
    color: #495057;
    font-weight: bold;
    text-transform: capitalize;
    z-index: 0;
}

.checkbox:before {
    position: absolute;
    display: inline;
    left: 10px;
    content: "Aller-Retour";
    color: #495057;
    font-weight: bold;
    text-transform: capitalize;
    z-index: 0;
}

.checkbox label {
    position: absolute;
    display: block;
    top: 3px;
    left: 3px;
    width: 102px;
    height: 29px;
    background: var(--rouge);
    cursor: pointer;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    z-index: 1;
}

.checkbox input[type="checkbox"]:checked+label {
    left: 103px;
}


/*end checkBox*/





/*Select 2*/

.select2-container--default .select2-selection--single .select2-selection__arrow,
.select2-container--default .select2-selection--single {
    height: 68px;
    border-radius: 0;
    border: 1px solid #fff0 !important;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.3);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #495057;
    line-height: 35px;
    padding: 16px;
    font-size: 22px;
}

.select2-container {
    width: 100% !important;
}

.newsearch label {
    color: #fff !important;
}


/*Package page*/

.btn-dark{
    color: #fff;
    border-color: #0c0c0c;
    background: #0c0c0c;
    cursor: pointer;
    border-radius: 10px !important;
}
.btn-dark:hover {
    color: #000 !important;
    background-color: #fff;
    border-color: #0c0c0c;
}
.priceDepart{
    font-size: 18px;
}
@media only screen and (max-width: 375px) {
    .priceDepart{
        font-size: 16px; color: #009b20;
    }
}

.title-phone {
    position: absolute;
    bottom: 60px;
    background: rgba(0,0,0,.5);
    width: 100%;
    color: #fff;
}

.form-control-typFlight {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--rouge);
    font-weight: bold;
    background-color: #c8d9df00;
    background-clip: padding-box;
    border: 1px solid #c8d9df00;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}


/*search motor*/

li.city-item {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
    font-size: 12px;
    cursor: pointer;
}

ul.city-list {
    position: absolute;
    background: #fff;
    width: 100%;
    color: #777;
    z-index: 2;
    list-style: none;
    box-shadow: 1px 1px 5px -1px;
    padding: 0;
    margin-top: 1px;
}

li.city-item:hover {
    background: var(--rouge);
    color: #fff;
}

.owl-carousel {
    z-index: 0 !important;
}

.flightChange {
    left: auto;
    margin: -12px auto 0;
    top: 50%;
    position: absolute;
    height: 24px;
    width: 24px;
    top: 46%;
    right: 25px;
    margin: -12px auto 0;
    background: #fff;
    z-index: 1;
    color: #192024;
    cursor: pointer;
    padding: 4px;
}

a:hover {
    /* color: #0056b3; */
    text-decoration: none !important;
}

.card {
    flex-direction: column;
    min-width: 0;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    display: block;
    /* float: left; */
    vertical-align: top;
    position: relative;
    border-spacing: 0;
    border-radius: 4px;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
    /* overflow: hidden; */
    box-sizing: border-box;
    cursor: pointer;
}

.card-img-top {
    height: 150px;
}

.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 0.5rem !important;
}

ul {
    margin-top: 0;
    margin-bottom: 0 !important;
}

.espace-client {
    font-weight: 700;
    /* padding: 10px 8px; */
    text-decoration: none;
    background: none;
    /*    border: 2px solid #000;
    */
    border-radius: 4px;
    color: #000 !important;
}

.espace-client a {
    color: #fff !important;
}
.logo-flight{
    width: 38px;
    margin-left: -12px;
}
.baggage{
    padding-top: 65px;
}

@media screen and (max-width: 360px) {
    .baggage{
        padding-top: 0;
    }
    .logo-flight{
        width: 38px;
        margin-left: 0;
    }

    .pt-xs-0{
        padding-top: 0;
    }
    .pl-xs-32{
        padding-left: 32px;
    }
    .pl-xs-60{
        padding-left: 60px;
    }
    .box-continuer{
        padding: 13px;
        border: 1px solid #e4e3e3;
        margin-bottom: 30px;
    }
}



.bg-flight {
    color: var(--blue);
    background-color: white;
    padding: 15px;
    border-radius: 15px;
}
.raisons {
    color: white;
    background-color: var(--rouge);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: block;
    font-weight: bold;
    font-size: 23px;
    line-height: 46px;
}
#edit-search {
    border-color: #f8f9fa;
    border-radius: 3.2rem !important;
}

.Pourquoi1 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
}

.pourquoi-img-1 {
    background: url(../img/best-price.png) no-repeat center;
    height: 100px;
}

.pourquoi-img-3 {
    background: url(../img/best-agency.png) no-repeat center;
    height: 100px;
}

.pourquoi-img-2 {
    background: url(../img/multi-destination.png) no-repeat center;
    height: 100px;
}


.flights_banner {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    padding-top: 15px;
    display: inline-block;
}




/*Style lfen*/

.test{
    color: red;
    font-style: italic;
}

.choice-filter{
    color: var(--blue) !important;
    font-size: 12px !important;
    font-weight: normal !important;
    font-family: var(--fontPrimary);
    line-height: 24px !important;
}
#HvilleR ::placeholder{
    padding-left: 30px !important;
}



@media screen and (max-width: 361px) {
    .pt-xs-0{
        padding-top: 0;
    }
}


/* --- Book --- */
.title-hotel-book{
    color: var(--blue);
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
}

.infos-voyageur ::placeholder{
    font-size: 10px;
}

/* --- /Book --- */


.sous-page {
    margin-left: -25px !important;
}

::placeholder {
    color: rgb(40 53 108 / 80%) !important;
}

.jBlue {
    color: var(--blue);
}

.jDore {
    color: var(--rouge);
}

input {
    outline: none;
}

input::placeholder {
    color: #145fa3;
}

.newNavSearch a {
    color: #00000021;
    background-color: var(--main-color) !important;
    /* background-color: #00000021 !important; */
    margin: 2px !important;
}

a {
    color: #000000;
}


/* .nav-tabs .nav-item.show .nav-link {
        background-color: #00000021 !important;
        margin: 2px !important;
    } */

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background-color: #ffffff !important;
    border-color: #ffffff;
    color: #2065ab !important;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: 0px 18px;
    border-radius: 12px 12px 0px 0px;
    width: 185px;
    height: 50px;
    cursor: pointer;
    position: relative;
}

.nav-tabs .nav-link{
        border: none;
    transition: all 0.5s;
    color: #fff;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: 0px 18px;
    border-radius: 12px 12px 0px 0px;
    font-weight: bold;
    font-size: 13px;
    width: 185px;
    height: 50px;
    cursor: pointer;
    position: relative;
}

.nav-tabs {
    border-bottom: none;
}


/* --- JumboTours Text & Logo---*/
.color-grey {
    color: #8e8e8e;
}
.color-blue {
    color: var(--blue);
}

.color-dore {
    color: var(--rouge);
}

.lfen {
    color: var(--blue);
    font-weight: bold;
}

#logo-lfen {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.logo-jmb {
    width: 95px;
    height: 95px;
    background-color: var(--blue);
    border: 2px solid var(--rouge);
    padding: 10px;
    border-radius: 50%;
    z-index: 1;
}

.bg-booking-search2{
    background-color: var(--header-bg-color) !important;
    color: var(--header-text-color) !important;

}
.img-box-city2{
    width: 160px !important;
    height: 270px !important;
    border-radius: 0px !important;
}

/* --- /JumboTours Text & Logo ---*/

/* --- Contact-us ---*/

#contact-us {
    position: fixed;
    top: 300px;
    right: -185px;
    z-index: 40;
}

#contact-us a {
    padding-top: 1.8rem;
    padding-bottom: 1.9rem;
    transform-origin: top;
    transform: translateX(-50%) rotate(-90deg);
    white-space: nowrap;
    letter-spacing: 2px;
}

#contact-us .button {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    /* text-transform: uppercase; */
    padding: 1rem 3rem;
    background-color: var(--rouge);
    /*var(--blue);*/
    /* color: var(--blue); */
    transition: background-color 0.3s ease-out;
    color: #fff;
    font-weight: 600;
}


/* --- end contact-us ---*/


/* --- box-monde-service ---*/

.box-monde-service-item__content {
    border: 12px solid var(--rouge);
    height: 275px;
}

@media screen and (max-width: 420px) {
    .box-monde-service h2 {
        font-size: 20px;
        line-height: 38px;
    }
}


/* --- end box-monde-service ---*/
/* --- box-voyages ---*/
.box-voyages .h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
    text-align: center;
}

.box-voyages .subtitle {
    font-family: var(--fontSecondary);
    font-size: 20px;
    margin-bottom: 16px;
    text-align: center;
    color: #145fa3;
    padding-top: 10px;
    padding-bottom: 20px;
}

.box-voyages__box-opaque {
    position: absolute;
    width: 100%;
    z-index: 200;
    left: 411px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}
/* --- end voyages ---*/

/* --- box-thematic ---*/

.box-thematic {
    height: auto;
}

.box-thematic .h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
    text-align: center;
}

.box-thematic .subtitle {
    font-family: var(--fontSecondary);
    font-size: 20px;
    margin-bottom: 16px;
    text-align: center;
    color: #145fa3;
    padding-top: 10px;
    padding-bottom: 20px;
}

.box-thematic__box-opaque {
    position: absolute;
    width: 100%;
    z-index: 200;
    left: 411px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}


/* ------------------------- */


/* Button Styles */

.box-thematic .button {
    display: inline-flex;
    /* display: inline-block; */
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #000;
    margin: 20px;
    padding: 10px 20px;
    color: #000;
    /* text-transform: uppercase; */
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    /* --------------------------- */
}

.box-thematic .bounce-to-right {
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    transition-property: color, border-color;
    transition-duration: 0.5s;
}

.box-thematic .button a {
    color: #212529;
    text-decoration: none;
    letter-spacing: 1px;
}
.box-thematic .button:hover a {
    color: #fff!important;
}
@media screen and (max-width: 540px) {
    .slick-prev.pull-left.slick-arrow{
        left: 0 !important;
        z-index: 999999;
    }
    .slick-next.pull-right.slick-arrow{
        right: 0 !important;
        left: unset !important;
    }
}



/* Second Button */

.box-thematic #button-2 {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.box-thematic #button-2 a {
    position: relative;
    transition: all 0.35s ease-Out;
}

.box-thematic #slide {
    width: 100%;
    height: 100%;
    left: -224px;
    background: var(--rouge);
    position: absolute;
    transition: all 0.35s ease-Out;
    bottom: 0;
}

.box-thematic #button-2:hover #slide {
    left: 0;
}

.box-thematic #button-2:hover a {
    color: #2d3142;
}


/* ------------------------- */

.box-thematic .wrapper {
    width: 100%;
    padding-top: 20px;
    text-align: center;
}

.box-thematic img {
    width: 160px;
    height: 160px;
    transition: 1s;
    border-radius: 100%;
}
.box-thematic img:hover{
    filter: brightness(0.6);
    transition: 1s;
}

.box-thematic .box-thematic__text {
     font-size: 12px;
    /*font-weight: 400; */
    margin-top: 1rem;
    color: white;
    font-weight: bold;
    position: absolute;
    top: 50px;
    z-index: 100;
}
/* .thematic{
    position: relative;
    display: flex;
    justify-content: center;
    cursor: pointer;
    width: 280px;
    height: 280px;
}

.thematic img:hover{
    filter: brightness(0.6);
}
.thematic p{
    color: white;
    font-weight: bold;
    position: absolute;
    top: 110px;
    font-size: 16px;
    z-index: 100;
} */

.box-thematic .box-thematic__text:hover {
    /* text-decoration: underline;
    cursor: pointer; */
}


/* --- end box-thematic ---*/


/* --- card-package ---*/
.detail-package__price {
    font-size: 18px;
    height: 100px;
    background: var(--blue);
    color: white;
    padding-top: 20px;
}
.card-package {
    color: white !important;
    /* height: 292.5px !important; */
}

.card-package img {
    width: 100%;
}

.card-package img:hover {
    transition: transform 0.3s ease-out;
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
    transition-delay: 0s;
}

.card-package-content {
    padding-left: 1rem;
    padding-right: 1rem;
    position: absolute;
    width: 100%;
    z-index: 2;
    top: calc(50% - 2rem);
    color: white;
    /* text-shadow: 1px 2px 2px black; */
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    margin-top: 64px;
}

.card-package-bg {
    background-color: rgba(0, 0, 0, 0.095);
    z-index: 1;
    position: absolute;
    width: 275px;
    height: 275px;
    top: 3px;
}


/* .card-package-price span{
        font-size: 12px
    } */

.card-package-price {
    font-size: 18px;
    font-weight: bolder;
    /* background-color: #FFF; */
    font-family: "Montserrat", sans-serif;
    line-height: 22px;
    color: #fff;
    display: inline-block;
    padding: 5px;
    z-index: 3;
    text-transform: uppercase;
    position: absolute;
    top: 10px;
    left: 10px;
}


/* --- end card-package ---*/



.myInput{
    margin: 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    color: var(--blue);
    border: none;
    min-width: 18rem;
    height: 44px;
    text-align: left;
    box-shadow: none;
    transition: all 0.3s ease-out;
    font-size: 14px;
    border-radius: 3px;
    outline: none;
}








.border-4 {
    border: 4px solid #ffff;
}
.bg-red {
    background-color: var(--main-color) !important;
    -webkit-appearance: initial;
}




/* box-newsletter */
.box-newsletter {
    padding: 30px 30px 20px !important;
    margin: 20px auto !important;
    color: #212529;
    background-color: #e5e5e5;
    text-align: center;
    font-size: 2.7rem;
    height: 120px !important;
    width: 70%;
}
@media screen and (max-width: 1025px) {
    .box-newsletter {
        width: 95%;
    }
}

#formNewsletter {
    margin: auto;
}

.box-newsletter__label {
    cursor: pointer;
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    padding-bottom: 20px;
    font-weight: bold;
    font-size: 16px;
    color: #212529;
    padding-top: 10px;
}

@media screen and (max-width: 1024px) {
    .box-newsletter__label {
        padding-top: 0;
    }
}

label {
    cursor: pointer;
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: bold;
}

.box-newsletter .box-newsletter__input {
    margin: 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    color: #145fa3;
    /*var(--rouge);*/
    border: none;
    /* background-color: transparent; */
    min-width: 18rem;
    height: 44px;
    text-align: left;
    box-shadow: none;
    transition: all 0.3s ease-out;
    font-size: 14px;
    border-radius: 3px;
    outline: none;
}

@media screen and (max-width: 375px) {
    .box-newsletter .box-newsletter__input {
        margin-right: 0;
    }
}


/* .box-newsletter .box-newsletter__input:hover {
        background-color: rgba(254, 172, 148, 0.05);
    } */

.box-newsletter .box-newsletter__input::placeholder {
    color: var(--rouge);
    opacity: 1;
}

.box-newsletter__submit {
    /* text-decoration: underline; */
    margin: 0;
    color: white;
    background-color: var(--rouge) !important;
    outline: none !important;
    padding: 0 25px !important;
    border-radius: 3px !important;
    font-size: 16px !important;
    height: 46px;
    width: 160px;
    padding-right: ;
}

.box-newsletter__submit:hover {
    background: #fff !important;
    color: var(--rouge) !important;
    border: 2px solid var(--rouge) !important;
    width: 160px;
}

.box-newsletter button {
    border: none;
    background-color: transparent;
    padding: 0;
}


/* --- end box-newsletter ---*/



.lesclasses {
    color: white;
    background-color: #fff !important;
    font-weight: 500;
    border-radius: 10px;
}

.lesclasses option {
    color: var(--blue);
}

select {
    outline: none !important;
}

.col-md-3 {
    /* padding: 0; */
}


/* --- end footer ---*/


/* --- Contact Page---*/

.contactPage{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-top: 60px;
}

.contactPage .title{
    color: #000;
    font-size: 16px;
    margin-bottom: 10px;
}
.contactPage input, .contactPage select, .contactPage textarea {
    padding: 10px 20px 10px 20px;
    height: 57px;
    color: rgba(28, 28, 28, 0.6);
    border: 1px solid rgb(102, 102, 102);
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
}
.contactPage textarea {
    height: auto;
}
.form{
    margin-top: 50px;
    margin-bottom: 50px;
}
.form h3{
    font-size: 38px;
    font-weight: 400;
    padding-bottom: 20px;
}
@media(max-width: 420px) {
    .form h3{
        font-size:36px;
    }
}

.contactPage button {
    border: none;
    color: white;
    outline: none !important;
    padding: 0 25px !important;
    border-radius: 0px !important;
    font-size: 16px !important;
    height: 46px;
    width: 160px;
}

/* --- /Contact ---*/



/* --- /search engine*/


/* ---onglet hôtel --- */


/* .form-hotel-api {
    display: grid;
    grid-template-columns: 20% 25% 35% 20%;
    grid-template-rows: 50px;
    gap: 3px;
} */


/* .form-hotel-api-header {
    display: grid;
    grid-template-columns: 20% 25% 35% 20%;
    grid-template-rows: 50px;
    gap: 3px;
} */

#form-hotel input {
    margin-right: 2px !important;
    padding-left: 30px;
}

.title-search {
    color: var(--blue);
    font-weight: bold;
    font-size: 16px;
}

.title-hotel {
    font-weight: bold;
    font-size: 16px;
}

.btn-cet-hotel {
    border-radius: 3px;
    background-clip: padding-box;
    color: white;
    background: var(--rouge);
    border: 2px solid var(--rouge);
    font-size: 13px;
    margin-top: -5px;
    margin-left: 5px;
    position: relative;
    cursor: pointer;
    width: 120px;
    padding: 5px;
    text-align: center;
    transition: 0.4 ease;
}

.btn-cet-hotel:hover {
    /* color: var(--rouge) !important;
    background: white; */
    background: #b70a10;
    transition: 0.4 ease;

}

.detail-hotel__price {
    font-size: 18px;
    height: 100px;
    background: var(--blue);
    color: white;
    padding-top: 20px;
    padding-left: 40px;
}

.detail-hotel__price span {
    font-size: 12px;
}

.detail-hotel__adress {
    padding: 16px;
    background-color: white;
}

.detail-hotel__rooms {
    background-color: white;
    color: var(--blue);
    margin-top: 20px;
    padding-top: 20px;
}

.detail-hotel__rooms .cancel-conditions {
    color: rgb(190, 189, 189);
}


/* ---/onglet hôtel --- */

.fa-star {
    color: var(--rouge) !important;
}


/* --- user-login --- */

#user-login ::placeholder,
#user-new-compte ::placeholder {
    font-size: 12px;
}

#user-login,
#user-new-compte {
    /*margin-top: 40px;
    margin-bottom: 40px;*/
    color: var(--blue);
}

#user-login a,
#user-new-compte a {
    color: var(--blue);
}

#user-login strong,
#user-new-compte strong {
    color: var(--rouge) !important;
    margin-left: 10px;
}

#user-login .mon-compte,
#user-new-compte .new-compte {
    background-color: #E5E5E5;
    /*#ccc;*/
    padding: 20px;
    padding-bottom: 10px;
}

#user-login input {
    outline: none;
    height: 38px;
}

#user-login .btn-outline-warning,
#user-new-compte .btn-outline-warning {
    color: var(--blue) !important;
    border-color: var(--blue) !important;
    width: 320px;
    margin: 10px 0;
    max-width: 100%;
}

#user-login .btn-outline-warning:hover,
#user-new-compte .btn-outline-warning:hover {
    color: white !important;
    background-color: var(--rouge) !important;
}


.box-page {
    border: 12px solid var(--rouge);
    height: 275px;
}

.box-page h2 {
    font-size: 32px;
}

.citation {
    text-align: center;
    color: var(--rouge);
    font-family: var(--fontSecondary);
    margin-top: 75px;
}

.author {
    color: var(--blue);
    float: right;
    font-size: 14px;
    margin-right: 73px;
}

.description {
    color: var(--blue);
    line-height: 28px;
}

.concept {
    color: var(--rouge);
    font-weight: bold;
    margin-bottom: 10px;
}

.img-concept {
    width: 250px;
}


/* --- /user-login --- */

.edit-hotel {
    height: 37px;
}

.edit-hotel a {
    color: white;
}

.edit-hotel a:hover {
    color: var(--rouge);
}

#search input {
    /* padding-left: 25px; */
}

/* #search .wrapper {
    display: grid;
    grid-template-columns: 210px 230px 318px 122px;
    gap: 5px;
    justify-content: center;
} */


/* #search .city{
        width: 100px;
    }
    #search .calendar{
        width: 200px;
    }
    #search .voyageury{
        width: 300px;
    }
    #search .boutton{
        width: 300px;
    } */


/* ----------------------------------------------------- */
.img_slider {
    height: 382px;
    width: 535px;
}
#displayHotelApi, #displayHotel{
    padding-top: 110px;
}
#packageSlide{
    /*background: #f4f3ee;*/
    padding-bottom: 30px; margin-top:150px
}
@media(max-width: 420px) {
    #displayHotelApi, #displayHotel{
        padding-top: 0px;
    }
    #packageSlide{
        margin-top:20px
    }
    .showGallery{
        display: none!important;
    }
    .img_slider {
        height: 382px;
        width: 366px;
    }
    .carousel-control-next {
        right: 5px;
    }
    .footer__social{
        padding: 50px;
    }
    #packageSlide .carousel-control-next {
        right: 0px;
    }
}
@media(max-width: 375px) {
    .img_slider {
        height: 382px;
        width: 328px;
    }

}

.img-left {
    height: 130px;
    /* d-block w-100 pb-2; */
    display: block;
    width: 100%;
    padding-bottom: 7px;
    /* cursor: pointer; */
}

.count_photos {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: white;
}

.carousel-inner .carousel-item-right.active,
.carousel-inner .carousel-item-next {
    transform: translateX(25%);
}

.carousel-inner .carousel-item-left.active,
.carousel-inner .carousel-item-prev {
    transform: translateX(-25%);
}

.carousel-inner .carousel-item-right,
.carousel-inner .carousel-item-left {
    transform: translateX(0);
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
    display: flex;
}


/* .bg-control{
        width: 30px;
        height: 30px;
        background-color: white;
        border-radius: 50%;
        padding-top: 4px;
    }
    .carousel-control-prev-icon {
        color: transparent !important;
        background-color: transparent !important;
    } */


/* ----------------------------------------------------- */


/* --------------------------------- */


/* h3{
        display: inline-block;
    }
    h3::after {
        content: '';
        display: block;
        background-color: white;
        width: 100%;
        height: 2px;
    } */


/* --------------------------------- */

.bg-header-top {
    background-color: var(--header-bg-color);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px !important;
    transition: all 0.2s ease 0s !important;
}

.bg-header-scroll {
    background-color: var(--header-bg-color);
}

.bg-header-blue {
    background-color: var(--header-bg-color);
}

.list-hotels label {
    color: #212529;
    font-weight: normal;
}

#hotelNameInput {
    font-size: 12px;
    outline: none;
    height: 50px;
}


/* ---page professionel ---*/

#page-professionel {
    margin-top: 40px;
    margin-bottom: 40px;
}

#page-professionel h2 {
    color: var(--rouge);
    font-size: 26px;
    padding: 40px;
    text-align: center;
}

#page-professionel .description {
    color: var(--blue);
    font-weight: 500;
    line-height: 28px;
    padding: 20px;
    margin-top: 55px;
}

#page-professionel .box-professionel {
    border: 12px solid var(--rouge);
    height: 170px;
    margin: 50px;
}


/* ---/page professionel ---*/


/* ---page revendeurs ---*/

#page-revendeur {
    margin-top: 40px;
    width: 94%;
    margin: auto;
}

#page-revendeur .title-revendeur {
    text-align: center;
    color: var(--rouge);
    font-size: 26px;
    font-family: "Homemade Apple", cursive;
    margin-bottom: 40px;
    margin-top: 130px;
}

#page-revendeur .title-revendeur-un {
    margin-top: -23px;
}

#page-revendeur h2 {
    font-weight: bold;
    color: var(--blue);
    font-size: 20px;
    font-family: var(--fontPrimary);
    padding-top: 60px;
}

.box-revendeur h2 {
    padding-top: 20px !important;
}

#page-revendeur p {
    width: 450px;
}

#page-revendeur .num {
    font-weight: bold;
    color: var(--blue);
    font-size: 40px;
    margin-right: 10px;
}

#page-revendeur {
    color: var(--blue);
}

#page-revendeur img {
    width: 380px !important;
    height: 250px;
    padding-top: 20px;
    margin-left: 60px;
}

#page-revendeur .row {
    margin-top: 60px;
}

#page-revendeur .box-revendeur {
    border: 12px solid var(--rouge);
    margin-top: 90px;
    width: 100%;
    padding: 20px 35px;
    margin-bottom: 50px;
}

#page-revendeur .box-revendeur p {
    width: 100%;
    padding-left: 20px;
}

#page-revendeur .box-revendeur h2 {
    color: var(--rouge);
    font-size: 26px;
    font-family: var(--fontSecondary);
}

#page-revendeur .text-formulaire {
    margin-top: 100px;
    margin-bottom: 100px;
}

#page-revendeur .text-formulaire p {
    width: 100%;
    padding-top: 15px;
    font-size: 16px;
    margin-bottom: 50px;
}

#page-revendeur .text-formulaire a {
    color: var(--blue);
}

#page-revendeur .text-formulaire strong {
    display: inline-block;
}

#page-revendeur .text-formulaire strong::after {
    content: "";
    height: 2px;
    width: 100%;
    display: block;
    background-color: var(--blue);
}

#form-revendeur {
    margin: 0 auto;
}

#form-revendeur label {
    display: block;
    text-align: right;
    color: var(--blue);
    font-weight: 500;
}

#form-revendeur .form-input,
#form-revendeur textarea {
    width: 70%;
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: #1787f7;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 3px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}


/* .form-group {
    display: flex;
} */

.bg-control {
    background-color: white;
    line-height: 2px;
    padding: 5px;
    padding-left: 6px;
    border-radius: 50%;
    cursor: pointer;
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
}


/* ---/page revendeurs ---*/

.fs-10 {
    font-size: 10px;
}
.fs-12 {
    font-size: 12px;
}
.fs-13 {
    font-size: 13px;
}
.fs-14 {
    font-size: 14px;
}
.fs-15 {
    font-size: 15px;
}
.fs-16 {
    font-size: 16px;
}
.fs-17 {
    font-size: 17px;
}
.fs-18 {
    font-size: 18px;
}
.fs-19 {
    font-size: 19px;
}
.fs-20 {
    font-size: 20px;
}
.fs-22 {
    font-size: 22px;
}

hr.bordure {
    background-color: var(--blue);
    height: 1px;
    margin: 15px auto 25px 0px;
}

hr.bordure-center {
    background-color: var(--blue);
    height: 1px;
    width: 80%;
    margin: 15px auto;
    border-top: 0;
}
/* .bordure-hotel{
    height: 0.8px;
    width: 80%;
    margin: auto;
    padding-bottom: 20px
} */



.bs-calltoaction {
    position: relative;
    width: auto;
    padding: 15px 25px;
    /* border: 1px solid black; */
    /* border-radius: 5px; */
    margin-top: 10px;
    margin-bottom: 10px;
}

.bs-calltoaction>.row {
    display: table;
    width: calc(100% + 30px);
}

.bs-calltoaction>.row>[class^="col-"],
.bs-calltoaction>.row>[class*=" col-"] {
    float: none;
    display: table-cell;
    vertical-align: middle;
}

.cta-contents {
    padding-top: 10px;
    padding-bottom: 10px;
}

.cta-title {
    margin: 0 auto 15px;
    padding: 0;
}

.cta-desc {
    padding: 0;
}

.cta-desc p:last-child {
    margin-bottom: 0;
}

.cta-button {
    padding-top: 10px;
    padding-bottom: 10px;
}

@media (max-width: 991px) {
    .bs-calltoaction>.row {
        display: block;
        width: auto;
    }
    .bs-calltoaction>.row>[class^="col-"],
    .bs-calltoaction>.row>[class*=" col-"] {
        float: none;
        display: block;
        vertical-align: middle;
        position: relative;
    }
    .cta-contents {
        text-align: center;
    }
}

.bs-calltoaction.bs-calltoaction-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

.bs-calltoaction.bs-calltoaction-primary {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
}

.bs-calltoaction.bs-calltoaction-info {
    color: #fff;
    background-color: var(--rouge);
    border-color: #46b8da;
}

.bs-calltoaction.bs-calltoaction-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}

.bs-calltoaction.bs-calltoaction-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236;
}

.bs-calltoaction.bs-calltoaction-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a;
}

.bs-calltoaction.bs-calltoaction-primary .cta-button .btn,
.bs-calltoaction.bs-calltoaction-info .cta-button .btn,
.bs-calltoaction.bs-calltoaction-success .cta-button .btn,
.bs-calltoaction.bs-calltoaction-warning .cta-button .btn,
.bs-calltoaction.bs-calltoaction-danger .cta-button .btn {
    border-color: #fff;
}

blockquote {
    border-left: none
}

.quote-badge {
    background-color: rgba(0, 0, 0, 0.2);
}

.quote-box {
    overflow: hidden;
    margin-top: -50px;
    padding-top: -100px;
    border-radius: 17px;
    background-color: #4ADFCC;
    margin-top: 25px;
    color: white;
    width: 325px;
    box-shadow: 2px 2px 2px 2px #E0E0E0;
}

.quotation-mark {
    margin-top: -10px;
    font-weight: bold;
    font-size: 100px;
    color: white;
    font-family: "Times New Roman", Georgia, Serif;
}

.quote-text {
    font-size: 19px;
    margin-top: -65px;
}



/* ---Responsive ---*/

@media screen and (max-width: 375px) {
    .web {
        display: none;
    }
    #contact-us {
        display: none;
    }
    .card-package-bg {
        width: 100%;
    }
    .box-thematic {
        height: 570px;
    }
    .hotel3 {
        margin-bottom: 25px;
    }
    .hotel4 {
        width: 353px;
    }
    .box-newsletter {
        width: 100% !important;
        height: 280px !important;
    }
    .box-newsletter__submit {
        width: 287px;
    }
    footer .footer__address ul {
        margin-bottom: 1px !important;
    }
    .footer__payment {
        margin-bottom: 40px !important;
    }
    footer .br {
        display: block;
    }
}


@media screen and (max-width: 540px) {

    .p-headerHome {
        padding-top: 0px;
    }

    .web {
        display: none;
    }
    #contact-us {
        display: none;
    }
    .card-package-bg {
        width: 100%;
    }
    .box-thematic {
        height: 570px;
    }
    .hotel3 {
        margin-bottom: 25px;
    }
    .hotel4 {
        width: 353px;
    }
    .box-newsletter {
        width: 100% !important;
        height: 280px !important;
    }
    .box-newsletter__submit {
        width: 287px;
    }
    footer .footer__address ul {
        margin-bottom: 1px !important;
    }
    .footer__payment {
        margin-bottom: 40px !important;
    }
    footer .br {
        display: block;
    }
}



/* ---A la carte ---*/
.thematics .title{
    font-family: var(--fontPrimary);
    font-size: 20px;
    margin-bottom: 16px;
    text-align: center;
    color: var(--rouge)
}
.thematics .subtitle{
    font-family: var(--fontSecondary);
    font-size: 20px;
    margin-bottom: 16px;
    text-align: center;
    color: var(--blue)
}
.thematic{
    position: relative;
    display: flex;
    justify-content: center;
    cursor: pointer;
    width: 280px;
    height: 280px;
    transition: 1s;
}

.thematic img:hover{
    filter: brightness(0.6);
    transition: 1s;
}
.thematic p{
    color: white;
    font-weight: 800;
    position: absolute;
    top: 92px;
    font-size: 24px;
    max-width: 215px;
    text-align: center;
    z-index: 100;
}

.formThematic input, .formThematic textarea, , .formThematic select {
    color: rgba(28, 28, 28, 0.6);
    border: 1px solid rgb(102, 102, 102);
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
}
.formThematic input, .formThematic select {
    padding: 10px 20px 10px 20px;
    height: 57px;
}
.formThematic ::placeholder {
    color: rgb(102, 102, 102);
    font-size: 13px;
}
.title-form-thematic{
    color: #1C1C1C;
    font-weight:700;
    font-size:28px;
    line-height:39px
}
.title-form-thematic::after{
    content: '';
    display: block;
    background-color: var(--main-color);
    margin: auto;
    margin-top: 20px;
    width: 16%;
    height: 2px;
}
/* ---/A la carte ---*/


/* ---demandeDevis ---*/
.demandeDevis ::placeholder{
    color: #e5e5e5;
    font-size: 12px;
}
/* ---/demandeDevis ---*/

.holder ::placeholder{
    font-size: 14px !important;
}
.holder input[type=text], .holder input[type=date], .holder input[type=email] {
    height: 37px !important;
    font-size: 14px !important;
}

.data-city{
    z-index: 500;
}
button{
    outline: none !important;
}

.blog{
    width:268px;
}

.blog img{
    width:268px;
    height: 178px;
}

.blog img:hover{
    filter: brightness(0.6);
    transition: 0.5s;
}

.btn-decouvrir p{
    border-radius: 3px;
    font-size: 13px;
    cursor: pointer;
    padding: 5px 12px;
    text-align: center;
    color: white;
}
.btn-decouvrir p:hover a{
    color: var(--rouge)!important;
}


.bg-lightgrey {
    background: #fff;
}
.font-20{
    font-size: 20px;
}


/* ---design filtre---*/
.flt {
    margin-bottom: 20px;
}
.filter{
    letter-spacing: 1px;
    border: 1px solid var(--second-color);
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    width: 100%;
    padding: 10px 24px;
    color: rgb(255, 255, 255);
    background-color: var(--second-color);
    margin: auto;
    position: sticky!important;
    bottom: 5px!important;
}



@media only screen and (max-width: 768px) {


    .alignMobil{
        text-align: left;
        margin: auto 40px;
    }
    .flt.bg-white{
        background-color: none!important;
        border: none!important;
    }
    .flt .title{
        color: #fff;
        font-size: 16px !important;
        font-weight: 400;
    }
    .flt .content {
        /* text-align: center; */
        /* width: 100%;  */
        /* height: 8000px; */
        background: #f4f3ee;
        padding: 10px 10px;
        /* border: 1px solid rgb(40, 53, 108); */
        /* border-radius: 20px 0px 0 20px; */
    }
    .flt #wrap {
        display: none;
        /* position: absolute; */
        margin-top: 20px;
        right: 0px;
        top: 100px;
        z-index: 5000;
    }

}


@media only screen and (max-width: 414px) {
    .flt .content {
        /* width: 414px;  */
    }
}

@media only screen and (max-width: 375px) {
    .flt .content {
        /* width: 375px;  */
    }
}
/* ---/design filtre---*/
.header-moteur-de-recherche{
    padding-top: 0;
}
@media(max-width: 767px){
    .header-moteur-de-recherche{
        /* background-color: var(--main-color);
        padding-top: 40px; */
    }
}


@media (max-width: 767px){
    .header-moteur-de-recherche{
        /* background-color: var(--main-color);
        padding-top: 40px;
        padding-bottom: 30px; */
    }
}


#termsOfSales .modal-header{
    padding: 15px;
    background: var(--main-color);
    color: #fff;
    font-size: 24px;
}


/*
 * ----------------------------------------------------------------------------------------
 * Menu Mobil
 * ----------------------------------------------------------------------------------------
 */
 .mobil {
    background-color: var(--header-bg-color);
}
.mobil .line-container {
    margin: 25px;
    width: 30px;
    height: 24px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobil .line {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 10px;
    transition: transform 1s ease, opacity 0.5s ease;
    transform-origin: 0;
}

.mobil .line .line-2{
    width: 80% !important;
}
.menu-container{
    position: absolute;
}

.nav-container {
    width: 0;
    height: 100vh;
    padding: 20px;
    position: relative;
    left: -500px;
    z-index: 2000;
    transition: transform 1s ease, width 1s ease;
    background: var(--main-color);
}

.nav-container.active{
    width: 100vw;
    transform: translateX(500px);
}
.nav-container li {
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 40px;
    font-size: 20px;
}
.nav-container li a{
    color: white;
}
.nav-container li.active a{
    font-weight: bold;
    text-decoration: underline;
}

.line-container.active .line-1 {
    transform: rotate(45deg);
}
.line-container.active .line-2 {
    opacity: 0;
}
.line-container.active .line-3 {
    transform: rotate(-45deg);
}

.mobil .contact i {
    font-size: 24px !important
}

.mobil .contact a {
    padding: 0 10px;
    color: var(--header-text-color);
    text-decoration: none
}

/*
 * ----------------------------------------------------------------------------------------
 * End Menu Mobil
 * ----------------------------------------------------------------------------------------
 */


 /*
 * ----------------------------------------------------------------------------------------
 * Follow
 * ----------------------------------------------------------------------------------------
 */
.follow{
    color: #484f56;
    background-color: white;
    padding-bottom: 100px;
}
.follow p{
    font-size: 16px;
    line-height:16px;
}
.follow .divider{
    width: 38px!important;
}
.follow i{
    font-size: 28px;
    padding-top: 14px;
    transform: .3s;
}
.follow i:hover{
    color: #333;
    transform: .3s;
}


.box-shadow{
    border: 1px solid rgb(192, 202, 213);
    border-radius: 16px;
    box-shadow: 0 2px 4px 2px rgb(0 0 0 / 10%);
    background-color: #fff;
}

.fw-normal.mr-md-5.mr-0{
    min-width: 90px;
}

.see{
    border-radius: 3px;
    background-clip: padding-box;
    border: 1px solid #145fa3;
    font-size: 13px;
    font-weight: bold;
    position: relative;
    cursor: pointer;
    width: 100%;
    padding: 5px;
    text-align: center;
}
.see:hover{
    background-color: #145fa3;
    border: 1px solid #145fa3;
}
.see a{
    color: #145fa3;
}
.see:hover a{
    color: white!important;
}

.uppercase{
    text-align: justify;
}

.tagPromo{
    background: #51a109;
    color: #fff;
    position: absolute;
    padding: 5px 20px;
    border-radius: 30px;
    margin: 10px 5px;
}


/* page : qui somme-nous */
#apropos img{
    object-fit:cover;
    position: relative;
    filter: brightness(52%);
    -webkit-filter: brightness(52%);
    -moz-filter: brightness(52%);
}

#apropos .title-service {
    position: absolute;
    font-weight:bold;
    color:#fff;
    font-size:18px;
    display: inline-block;
    margin: 0;
    transition: 0.3s;
}

#apropos .service:hover .title-service{
    background-color: rgb(219 16 24 / 44%);
    width: 100%;
    height: 100%;
    padding-top: 130px;
    text-align: center;
    transition: 0.3s;
}
#apropos .service.col-6:hover .title-service{
    padding-top: 170px;
}
#apropos .title-service::after {
    content: '';
    display: block;
    background-color: white;
    margin: auto;
    margin-top: 20px;
    width: 30%;
    height: 6px;
}

/* page : conditions générales */
#conditions .intro{
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0px;
    color: #3a3a3a;
    line-height: 28px;
}
#conditions h3{
    margin-top: 40px;
    margin-bottom: 30px;
}
#conditions p{
    color: #555;
    line-height: 30px;
    font-size: 16px;
    text-align: justify;
    font-weight: 400;
}
#conditions p.article{
    font-weight: bold;
}

#PackageForm label{
    font-weight: normal;
}

.rounded-30{
    border-radius: 30px;
}


/*
 * ----------------------------------------------------------------------------------------
 * Footer Socials
 * ----------------------------------------------------------------------------------------
 */

.box-social{
    top: 0;
    bottom: 0;
    z-index: 9000;
}
.box-social.position-right{
    right: 0;
}
.box-social.position-left{
    left: 0;
}
.social-box{
    background-color: #ffff;
    max-width: 48px;
}
.position-right .social-box{
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.position-left .social-box{
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.social {
    text-align: center;
    margin-bottom: 4rem;
}
.social__title {
    font-size: 18px;
    margin-bottom: 3rem;
    font-weight: bold;
    text-align: center;
}
.social__item {
    display: inline;
}

.social__link {
    margin-left: 1rem;
    margin-right: 1rem;
    position: relative;
    display: inline-block;
    background-color: var(--rouge);
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 12px;
    margin-bottom: 0.5rem;
    transition: background-color 0.3s ease-out;
    text-align: center;
}

.social__link i {
    font-size: 22px !important;
    font-size: 28px;
    padding-top: 14px;
}




/* --------------------------------------------------
    Mobile
----------------------------------------------------- */

@media (max-width: 767px){
    .searchresults_page .searchresults_content {
        margin-top: 1.5rem !important;
    }
    .searchresults_page .searchresults_list .searchresults_item {
        margin-bottom: 2rem!important;
    }
    .block_top_searchForm{
        background-color: var(--main-color);
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }
}

div#lightboxed--bttn_close,
div#lightboxed--bttn_prev,
div#lightboxed--bttn_next,
div#lightboxed--container {
    z-index: 999999999999 !important;
}

/***************************************************************************
Page Builder
***************************************************************************/
.row-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
}
/* Image Plugin */
.image-plugin-wrapper {
    display: inline-block;
    max-width: 100%;
}
.image-plugin-wrapper img {
    max-width: 100%;
    height: auto;
}
