/*======================
   01. Google fonts
========================*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@600&display=swap");

@font-face {
    font-family: "DIN Pro";
    src: url("../webfonts/DINPro.eot");
    src: local("DIN Pro"), local("DINPro"),
        url("../webfonts/DINPro.eot?#iefix") format("embedded-opentype"),
        url("../webfonts/DINPro.woff2") format("woff2"),
        url("../webfonts/DINPro.woff") format("woff"),
        url("../webfonts/DINPro.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "DIN Pro";
    src: url("../webfonts/DINPro-Medium.eot");
    src: local("DIN Pro Medium"), local("DINPro-Medium"),
        url("../webfonts/DINPro-Medium.eot?#iefix") format("embedded-opentype"),
        url("../webfonts/DINPro-Medium.woff2") format("woff2"),
        url("../webfonts/DINPro-Medium.woff") format("woff"),
        url("../webfonts/DINPro-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "DIN Pro";
    src: url("../webfonts/DINPro-Bold.eot");
    src: local("DIN Pro Bold"), local("DINPro-Bold"),
        url("../webfonts/DINPro-Bold.eot?#iefix") format("embedded-opentype"),
        url("../webfonts/DINPro-Bold.woff2") format("woff2"),
        url("../webfonts/DINPro-Bold.woff") format("woff"),
        url("../webfonts/DINPro-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "DIN Pro";
    src: url("../webfonts/DINPro-Black.eot");
    src: local("DIN Pro Black"), local("DINPro-Black"),
        url("../webfonts/DINPro-Black.eot?#iefix") format("embedded-opentype"),
        url("../webfonts/DINPro-Black.woff2") format("woff2"),
        url("../webfonts/DINPro-Black.woff") format("woff"),
        url("../webfonts/DINPro-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

/*======================
   02. Basic css
========================*/
:root {
    --theme_color: #22397c;
    --orange: #fd3b0b;
    --cyan: #53bbd1;
    --gray: #f8f8f8;
}
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
    margin: 0;
    padding: 0;
}

body {
    line-height: 1.6;
    font-family: "DIN Pro";
    background-color: #fff;
    color: rgba(0, 0, 0, 0.75);
    font-size: 16px;
}

ol,
ul {
    list-style: none;
}

a,
button {
    transition: 0.3s;
}

a:hover {
    text-decoration: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--theme_color);
}
.text-orange {
    color: var(--orange) !important;
}

/* page loader  */
#preloader {
    position: fixed;
    background: #fff;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader3 {
    width: 50px;
    height: 50px;
    display: inline-block;
    padding: 0px;
    text-align: left;
}

.loader3 span {
    position: absolute;
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: var(--theme_color);
    -webkit-animation: loader3 1.5s linear infinite;
    animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
    animation-delay: -0.9s;
    -webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
    0% {
        transform: scale(0, 0);
        opacity: 0.8;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@-webkit-keyframes loader3 {
    0% {
        -webkit-transform: scale(0, 0);
        opacity: 0.8;
    }
    100% {
        -webkit-transform: scale(1, 1);
        opacity: 0;
    }
}
/*Hamburger-menu START CSS*/
.hamburger-menu {
    cursor: pointer;
    display: none;
    margin-left: 15px;
}
.hamburger-menu span {
    background: var(--theme_color);
    width: 30px;
    height: 3px;
    display: block;
    margin: 5px 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.hamburger-menu .line-top.current {
    -webkit-transform: translateY(200%) rotate(135deg);
    -ms-transform: translateY(200%) rotate(135deg);
    transform: translateY(200%) rotate(135deg);
}
.hamburger-menu .line-center.current {
    opacity: 0;
}
.hamburger-menu .line-bottom.current {
    -webkit-transform: translateY(-325%) rotate(-135deg);
    -ms-transform: translateY(-325%) rotate(-135deg);
    transform: translateY(-325%) rotate(-135deg);
}
/*ofcanvas-menu*/
.ofcavas-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    top: 0;
    display: none;
    left: -100%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    text-align: center;
}
.ofcavas-menu.current {
    left: 0;
}
.ofcavas-menu ul {
    margin-top: 105px;
}
/*sticky START CSS*/
header.sticky {
    -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
}

.menu {
    text-align: center;
    background-color: var(--gray);
}
.menu li {
    display: inline-block;
    padding: 0 12px;
}
.menu li a {
    color: rgba(0, 0, 0, 0.9);
    padding: 10px 8px 14px;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    line-height: 1;
}
.menu > li > a.active {
    color: var(--theme_color);
    border-color: var(--theme_color);
}
.menu > li > a.active svg path {
    fill: var(--theme_color);
}
.menu > li > a:hover {
    color: var(--orange);
}
.alert {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    padding: 7px 45px;
    border-radius: 0;
    margin: 0;
    z-index: 1021;
    position: relative;
}
.alert p {
    font-size: 14px;
    line-height: 1.1;
    font-weight: 500;
    color: var(--cyan);
}
.alert .close {
    opacity: 1;
    color: var(--theme_color);
    padding: 0;
    width: 45px;
    font-weight: 500;
}
.header_top {
    padding: 15px 0;
    background-color: #fff;
}
.button {
    display: inline-block;
    border-radius: 2px;
    padding: 11px 21px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    border: none;
    transition: 0.3s;
}
.button.blue {
    background-color: var(--theme_color);
    line-height: 1.27;
}
.button:hover {
    background-color: var(--orange);
    color: #ffffff;
}
.button.orange {
    background-color: var(--orange);
    line-height: 1.27;
}
.button.orange:hover {
    background-color: var(--theme_color);
    color: #ffffff;
}

a.user {
    color: #000000;
}
.hero_area .item {
    padding: 75px 0 100px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.5;
    z-index: 1;
    overflow: hidden;
}
.hero_area .item h1 {
    font-size: 32px;
    line-height: 1.03;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}
.hero_area .item p {
    max-width: 430px;
}
.shape {
    position: absolute;
    left: 0;
    top: 0;
    height: 101%;
    background-color: var(--theme_color);
    width: 57%;
    clip-path: polygon(0 0, 100% 0%, 65% 100%, 0% 100%);
    z-index: -1;
}
.home_bg {
    position: absolute;
    top: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 100%;
    width: 63%;
    z-index: -2;
}
.social_wrap a {
    color: #fff;
    display: inline-block;
    margin-left: 16px;
    font-size: 16px;
}
.social_wrap a:hover {
    color: var(--orange);
}
.owl-dots {
    position: absolute;
    z-index: 5;
    bottom: 50px;
    right: 30%;
}
.owl-dot {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background-color: #fff;
    padding: 1px;
    margin: 0 4px;
}
.owl-dot.active {
    background-color: var(--theme_color);
}
.search_area {
    background-color: var(--gray);
    box-shadow: 5px 3px 11px rgba(201, 201, 201, 0.47);
    padding: 2px 0 28px;
    max-width: 1150px;
    margin-top: -30px;
    position: relative;
    z-index: 2;
}
label {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    color: var(--theme_color);
    display: block;
    margin-bottom: 5px;
    text-align: left;
}
.input_box {
    float: none;
    width: 100%;
    padding: 0 15px;
    border: 1px solid #f0f0f0 !important;
    border-radius: 2px;
    font-weight: 700;
    color: var(--theme_color);
    font-size: 15px;
    height: 46px;
    line-height: 44px;
    background-color: #fff;
    text-align: left;
}
.title {
    font-size: 28px;
    line-height: 1.18;
}
.sub_title {
    font-weight: 500;
    color: var(--cyan);
    line-height: 1.1;
}
.title_box .media-body {
    padding-left: 25px;
    margin-left: 25px;
    border-left: 3px solid var(--theme_color);
}
.gray_bg {
    background-color: var(--gray);
}
.location_box .img_wrap {
    overflow: hidden;
    display: flex;
    height: 250px;
}
.location_box .img_wrap img {
    transition: 0.3s;
}
.location_box:hover .img_wrap img {
    transform: scale(1.2);
}
.title_md {
    font-size: 21px;
    line-height: 1.15;
    font-weight: 700;
}
.location_box .title_md {
    font-weight: 900;
    letter-spacing: 0.8px;
}
.location_box em {
    color: var(--cyan);
}
.location_box small {
    font-size: 14px;
    line-height: 1;
    color: var(--theme_color);
    display: inline-block;
}
.location_box p {
    font-size: 19px;
    color: var(--theme_color);
    line-height: 1;
}
.location_slider .owl-stage-outer {
    overflow: visible;
}
.slider_inner {
    position: relative;
}
.slider_inner::before {
    position: absolute;
    content: "";
    top: 0;
    width: 2000px;
    right: calc(100% - 1px);
    height: 100%;
    background-color: var(--gray);
    z-index: 2;
}
.slider_inner::after {
    position: absolute;
    content: "";
    top: 0;
    width: 2000px;
    left: calc(100% - 1px);
    height: 100%;
    background-color: var(--gray);
    z-index: 2;
    opacity: 0.5;
}
.sec_pad {
    padding: 65px 0;
}
.slider_inner .nav_btn,
.owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: calc(100vw - 50px);
    z-index: 3;
}
.owl-nav {
    width: 100%;
}
.slider_inner .nav_btn button,
.owl-nav button {
    background-color: var(--theme_color);
    width: 44px;
    height: 44px;
    border-radius: 2px;
    color: #ffffff;
    font-size: 22px;
    border: none;
    padding: 0;
}
.owl-nav button.disabled {
    opacity: 0.4;
    cursor: default !important;
}
.hover_wrap {
    margin-left: -1.5px;
    margin-right: -1.5px;
}
.hover_wrap .hover_box {
    height: 445px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-left: 1.5px;
    margin-right: 1.5px;
    position: relative;
    z-index: 1;
    transition: 0.4s;
    max-width: 20%;
    flex-basis: 20%;
}
.hover_wrap .hover_box::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #23397c;
    opacity: 0.25;
    z-index: -1;
}
.hover_wrap .hover_box:hover {
    max-width: 30%;
    flex: 0 0 30%;
}
.hover_wrap .hover_box h2 {
    font-size: 23px;
    line-height: 1;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
    position: absolute;
    left: 20px;
    bottom: 0px;
    transform: rotate(-90deg);
    transform-origin: 0 0;
    text-align: left;
    width: 400px;
}
.hover_wrap .hover_box img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 40px;
    visibility: hidden;
    transition: 0.3s;
}
.hover_wrap .hover_box:hover img {
    visibility: visible;
}
.content_box {
    position: absolute;
    color: #ffffff;
    bottom: 20px;
    left: 65px;
    padding-right: 20px;
    visibility: hidden;
    transition: 0.3s;
}
.hover_wrap .hover_box:hover .content_box {
    visibility: visible;
}
.content_box p {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.15;
}
.content_box a {
    color: #ffff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.1;
    text-decoration: underline;
    display: inline-block;
    margin-top: 10px;
}
.content_box a i {
    margin-left: 5px;
}
/*promos area*/
.promos_area {
    padding: 2px 0 32px;
    background-color: var(--theme_color);
}
.promos_area h4 {
    font-size: 15px;
    line-height: 1;
}
.promos_area p {
    font-size: 12px;
    line-height: 1.15;
    margin-top: 3px;
}
.testimonial {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.testi_box {
    background-color: #fff;
    border-radius: 3px;
    max-width: 360px;
    margin: 0 auto;
    box-shadow: 4px 6px 14px rgba(7, 19, 56, 0.2);
    padding: 35px 30px;
}
.title_sm {
    font-size: 18px;
    line-height: 1.2;
}
.testi_box p {
    font-weight: 500;
}
.testi_box p.client_name {
    color: var(--theme_color);
}
.testi_box .owl-dots {
    position: relative;
    right: auto;
    text-align: center;
    margin-top: 20px;
    bottom: 0;
}
.testi_box .owl-dots button {
    background-color: #edeff5;
}
.testi_box .owl-dots button.active {
    background-color: var(--theme_color);
}
.medium {
    font-weight: 500;
}
.link {
    font-weight: 700;
    color: var(--cyan);
    display: inline-block;
    font-size: 16px;
}
.link:hover {
    color: var(--theme_color);
}
/*return-to-top START CSS*/
.back-to-top {
    font-size: 24px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    display: none;
    position: fixed;
    bottom: 30px;
    right: 20px;
    border-radius: 50%;
    background: var(--theme_color);
    z-index: 1000;
}

.back-to-top i {
    color: #fff;
}
.nice-select::after {
    height: 10px;
    margin-top: -4px;
    right: 15px;
    width: 10px;
    background-image: url(../img/angle_down.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    border: none;
    transform: rotate(0deg) !important;
}
.nice-select .list,
.dropdown-menu {
    border-radius: 0;
    box-shadow: 0 3px 11px rgba(0, 0, 0, 0.13);
    margin-top: 10px;
    min-width: 100%;
    border: 1px solid #f0f0f0;
}
.dropdown-toggle::after {
    margin-left: 0;
    vertical-align: middle;
    border: none;
    background-image: url(../img/angle_down.svg);
    width: 10px;
    height: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.dropdown-menu {
    width: 245px;
    padding: 5px 20px 20px;
}
.dropdown-menu p {
    font-weight: 700;
    line-height: 1.1;
    color: var(--theme_color);
}
.dropdown-menu span {
    font-size: 14px;
    line-height: 1;
    color: var(--theme_color);
    display: inline-block;
}
.nice-number button {
    width: 27px;
    height: 26px;
    border-radius: 2px;
    background-color: var(--theme_color);
    border: none;
    padding: 0;
    line-height: 0.5;
}
.nice-number input {
    min-width: 26px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 0;
    color: rgba(155, 155, 155, 0.75);
    border: none;
}
.minus {
    transform: rotate(-90deg);
}
.drop_icon {
    width: 10px;
    right: 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}
/*.contenu page*/
.shape2 {
    background: linear-gradient(
        90deg,
        var(--theme_color) 58%,
        rgba(35, 57, 124, 0.5) 100%
    );
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.social_icons {
    position: absolute;
    right: 35px;
    top: 7px;
    z-index: 3;
}
.social_icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.11);
    height: 33px;
    width: 33px;
    border-radius: 50%;
    color: #617295;
    font-size: 19px;
    margin-top: 13px;
}
.social_icons a:hover {
    background-color: #d3d3d3;
}
.hero_area .item.v2 {
    padding: 80px 15px 88px;
}

.title_msm {
    font-size: 19px;
    line-height: 1;
}
.counter_area {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left center;
}
.counter_text {
    font-size: 15px;
    color: var(--theme_color);
    line-height: 1.1;
}
.counter h2 {
    font-size: 51px;
    line-height: 1;
    font-weight: 900;
    color: var(--orange);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.border_right {
    display: inline-block;
}
.border_right::before {
    position: absolute;
    content: "";
    left: 94%;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    width: 245px;
    background-color: var(--theme_color);
}
.logo_box {
    margin-bottom: -30px;
}
.logo_box a img {
    max-width: 140px;
}
.premium_area {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 95px 0;
    position: relative;
    z-index: 1;
}
.premium_area::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
}
.premium_box {
    background-color: #ffffff;
    box-shadow: 5px 8px 12px #b4b4b4;
}
.premium_box .img_bg {
    width: 260px;
    flex-shrink: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.premium_content {
    padding: 20px 22px;
    font-size: 14px;
    line-height: 1.4;
}
.premium_content ul li {
    position: relative;
    padding-left: 10px;
}
.premium_content ul li::before {
    position: absolute;
    content: "";
    left: 0;
    top: 7px;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.75);
}
.premium_slider .owl-stage-outer {
    padding: 20px 0;
}
/*produit page*/
.hero_area .user_content {
    background: linear-gradient(90deg, #53bbd1 0%, #23397c 100%);
    padding: 17px 32px;
    max-width: 310px;
    margin-top: 55px;
}
.user_content small {
    font-size: 14px;
    line-height: 1;
}
.user_content p {
    font-size: 19px;
    line-height: 1;
    margin-top: -3px;
}
.location {
    font-size: 12px;
}
.hero_area p a {
    color: #ffffff !important;
    display: inline-block;
    text-decoration: underline;
    margin-left: 10px;
    font-size: 14px;
}
.favourite {
    position: absolute;
    right: 20px;
    top: 20px;
}
.tab_area .nav-pills li {
    padding: 0 30px;
}
.tab_area .nav-pills li a {
    padding: 0 0 5px;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    color: var(--cyan);
    font-size: 25px;
    line-height: 1;
    font-weight: 500;
}
.tab_area .nav-pills li a:hover,
.tab_area .nav-pills li a.active {
    background-color: transparent;
    color: var(--theme_color);
    border-color: var(--theme_color);
}
.product_slider .owl-nav {
    padding: 0 20px;
}
.thumbnails {
    position: absolute;
    z-index: 2;
    right: 20px;
    bottom: 20px;
    width: 256px;
}
.side_box {
    background-color: var(--theme_color);
    padding: 30px;
    color: #ffffff;
}
.side_box h4 {
    font-size: 23px;
    line-height: 1.1;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 30px;
}
.side_box .input_box {
    box-shadow: 3px 5px 15px rgba(7, 19, 56, 0.13);
}
.side_box .button {
    position: relative;
    box-shadow: 0 3px 6px rgba(7, 19, 56, 0.35);
}
.side_box .button img {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.secure {
    border-top: 1px solid #ffffff;
    margin-top: 35px;
    padding-top: 15px;
}
.secure .media img {
    width: 25px;
}
.secure .media .media-body {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.1px;
}
.secure .media .media-body strong {
    font-weight: 900;
}
.tab_area .promos_area {
    background-color: var(--gray);
}
.tab_area .promos_area p {
    color: var(--theme_color);
}
.tab_area table {
    width: 100%;
    font-weight: 500;
}
.tab_area table tr {
    height: 44px;
}
.tab_area table tr:nth-child(odd) {
    background-color: #d6dcea;
}
.tab_area table tr:nth-child(even) {
    background-color: #edeff5;
}
.tab_area table tr td {
    padding: 0 27px;
}
.tab_area table tr td span {
    font-size: 15px;
}
.tab_area table tr td:first-child {
    font-size: 12px;
    color: var(--theme_color);
    text-transform: uppercase;
    width: 59%;
}
.title_esm {
    font-size: 14px;
    line-height: 1.1;
}
.cart_box {
    background-color: var(--gray);
}
.cart_img {
    width: 233px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    flex-shrink: 0;
}
.cart_content {
    padding: 20px 23px;
    position: relative;
}
.cart_content p {
    font-size: 14px;
}
.user_price p {
    font-size: 12px;
    letter-spacing: 1.1px;
    line-height: 1.1;
    color: var(--theme_color);
}
.user_price .title_msm {
    position: relative;
    padding-left: 32px;
    margin-left: 20px;
}
.user_price .title_msm span {
    font-weight: 400;
}
.user_price .title_msm::before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 1px;
    background-color: var(--theme_color);
}
.cart_content .button {
    width: 100%;
    max-width: 176px;
}
.cart_content .price {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 27px;
    line-height: 1;
    font-weight: 700;
    color: #fff;
    background-color: #53bbd1;
    padding: 7px 30px;
}
.button.disabled {
    background-color: #d1d1d1;
    color: #808080 !important;
    cursor: not-allowed;
}

.step_wrap {
    position: relative;
    z-index: 1;
    max-width: 276px;
}
.step_wrap::before,
.step_wrap::after {
    position: absolute;
    content: "";
    left: 4%;
    height: 1px;
    background-color: #d7d9df;
    top: 27px;
    z-index: -1;
}
.step_wrap::before {
    background-color: #d7d9df;
    width: 90%;
}
.step_wrap::after {
    background-color: var(--theme_color);
    width: 26%;
}
.step_wrap.complete::after {
    width: 90%;
}
.step_wrap.step2::after {
    width: 66%;
}
.step_number {
    display: inline-block;
    position: relative;
}
.step_number span {
    font-size: 23px;
    line-height: 1;
    font-weight: 900;
    color: rgba(113, 113, 113, 0.19);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.step_item {
    text-align: center;
}
.step_item p {
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    color: #d7d9df;
    letter-spacing: 1.1px;
    text-align: center;
    margin-top: 10px;
    text-transform: uppercase;
}
.step_item.active svg path {
    fill: var(--theme_color);
}
.step_item.active p {
    color: var(--theme_color);
}
.step_item.active .step_number span {
    color: #fff;
}
.payment_secure {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--theme_color);
    font-weight: 500;
    letter-spacing: 1.1px;
    display: inline-flex;
    align-items: center;
}
.payment_secure strong {
    font-weight: 900;
    color: #0a891d;
}
.header2 {
    background-color: #edeff5;
    padding: 20px 0;
}
.alert2 {
    background-color: var(--theme_color);
    box-shadow: none;
}
.alert2 p {
    color: #fff;
}
.alert2 .close {
    font-weight: 400;
    text-shadow: none;
    color: #fff;
}
.breadcrumb {
    padding: 0;
    border-radius: 0;
    background-color: transparent;
    margin-bottom: 0;
}
.breadcrumb li,
.breadcrumb li a {
    font-size: 14px;
    font-weight: 500;
    color: var(--theme_color);
}
.breadcrumb li.active {
    font-weight: 700;
    color: var(--theme_color);
}
.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: inherit;
}
.heading_box {
    background-color: var(--theme_color);
    padding: 20px 33px;
    text-transform: uppercase;
}
.form_box {
    background-color: #edeff5;
    padding: 30px 33px;
    margin-top: 5px;
}
.form_box .title_md {
    border-bottom: 1px solid var(--theme_color);
    padding-bottom: 25px;
    margin-bottom: 10px;
}
.form_box .title_md span {
    font-size: 17px;
    font-weight: 400;
}
.input_box2 {
    width: 100%;
    background-color: #ffffff;
    border: none;
    height: 46px;
    border-radius: 2px;
    box-shadow: 3px 5px 15px rgba(7, 19, 56, 0.13);
    font-weight: 500;
    color: var(--theme_color);
    padding: 0 15px;
}
.input_box2::placeholder {
    color: #9b9b9b;
    opacity: 0.75;
}
.date_wrapper input {
    text-align: center;
}
.date_wrapper input:nth-child(1),
.date_wrapper input:nth-child(2) {
    max-width: 28%;
}
.date_wrapper input:nth-child(3) {
    max-width: 36%;
}
.radio_input {
    display: inline-block;
}
.radio_input input {
    position: absolute;
    opacity: 0;
}
.radio_input label {
    text-transform: none;
    color: rgba(0, 0, 0, 0.75);
    font-size: 16px;
    font-weight: 500;
    padding-left: 30px;
    position: relative;
    line-height: 20px;
}
.radio_input label::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 20px;
    width: 20px;
    border-radius: 3px;
    background-color: #fff;
    border: 1px solid rgba(35, 57, 124, 0.22);
}
.radio_input input:checked ~ label::after {
    position: absolute;
    content: "";
    left: 4px;
    top: 4px;
    height: 12px;
    width: 12px;
    border-radius: 3px;
    background-color: var(--theme_color);
}
.side_title {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 400;
}
.side_box.v2 p {
    line-height: 1.1;
}
.devide {
    border-bottom: 1px solid #ffffff;
    width: 100%;
}
.side_box.v3 {
    background-color: #edeff5;
    font-weight: 500;
    color: var(--theme_color);
    line-height: 1.3;
}
.side_box.v3 h4 {
    color: var(--theme_color);
}
.side_box.v3 .devide {
    border-color: var(--theme_color);
}
.green_text {
    color: #317c23;
}
.side_box .input_wrap .input_box {
    background-color: #f8f8f8;
    border-radius: 2px 0px 0px 2px;
    border: 1px solid #ded9d9 !important;
    box-shadow: none;
}
.input_wrap .w-100 {
    margin-right: -3px;
}
.input_wrap .button {
    padding: 10px 10px;
    box-shadow: none !important;
    height: 46px;
}
.side_box.v4 .media-body {
    color: var(--theme_color);
}
.accordion_btn {
    background-color: #edeff5;
    padding: 35px 20px 35px 103px;
    font-size: 17px;
    color: var(--theme_color);
    text-transform: uppercase;
    line-height: 30px;
    letter-spacing: 0.3px;
    width: 100%;
    border: 2px solid transparent;
    position: relative;
}
.accordion_btn::before {
    position: absolute;
    content: "";
    left: 42px;
    top: 50%;
    transform: translateY(-50%);
    height: 26px;
    width: 26px;
    border-radius: 3px;
    background-color: #fff;
    border: 1px solid rgba(35, 57, 124, 0.22);
}
.accordion_btn[aria-expanded="true"] {
    border-color: var(--theme_color);
}
.accordion_btn[aria-expanded="true"]::after {
    position: absolute;
    content: "";
    left: 47px;
    top: 50%;
    transform: translateY(-50%);
    height: 16px;
    width: 16px;
    border-radius: 3px;
    background-color: var(--theme_color);
}
.accordion .form_box {
    padding: 35px 76px 10px;
}
.accordion .form_box h4 {
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 500;
}
.gray_secure {
    color: #afafaf;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}
.accordion .button.orange {
    font-weight: 700;
}
.orange_link {
    color: var(--orange);
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline !important;
    display: inline-block;
    text-transform: none;
    font-family: "Open Sans", sans-serif;
}
.radio_input.v2 {
    width: 100%;
}
.radio_input.v2 label {
    background-color: #ffffff;
    border-radius: 3px;
    padding: 10px 20px 15px 70px;
    text-transform: none;
    color: var(--theme_color);
    font-size: 14px;
    line-height: 1.1;
    letter-spacing: 0.3px;
    width: 100%;
    user-select: none;
    border: 1px solid transparent;
}
.label_title {
    font-size: 17px;
    margin-bottom: 5px;
    line-height: 1.1;
    display: inline-block;
}
.radio_input.v2 label::before {
    left: 20px;
    top: 50%;
    height: 26px;
    width: 26px;
    transform: translateY(-50%);
}
.radio_input.v2 input:checked ~ label::after {
    left: 25px;
    top: 50%;
    height: 16px;
    width: 16px;
    transform: translateY(-50%);
}
.radio_input.v2 input:checked ~ label {
    border-color: var(--theme_color);
}
.connexion_box {
    max-width: 445px;
}
.connexion_box p {
    color: rgba(7, 19, 56, 0.76);
    font-size: 15px;
    line-height: 1.3;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}
.connexion_box ul li {
    width: 50%;
}
.connexion_box ul li a.nav-link {
    font-size: 18px;
    display: block;
    text-align: center;
    font-weight: 500;
    border-radius: 0;
    border: 2px solid var(--theme_color);
    width: 100%;
    color: var(--theme_color);
    padding: 22px 10px;
    line-height: 1;
    background-color: #edeff5;
}
.connexion_box ul li a.nav-link.active {
    border-radius: 2px;
    background-color: var(--theme_color);
    color: #fff;
}
.connexion_box .tab-content {
    background-color: #edeff5;
    padding: 30px 35px;
}
.connexion_box .button {
    box-shadow: 0 3px 6px rgba(7, 19, 56, 0.36);
    padding: 11px 21px;
}
.for_pw {
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    display: inline-block;
    color: var(--theme_color);
    margin-bottom: 8px;
}
.connexion_area {
    z-index: 1;
}
.connexion_bg {
    position: absolute;
    top: 310px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    min-width: 100%;
}
.connexion_box .radio_input label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #414b67;
    letter-spacing: 0;
    margin-bottom: 0;
}
/*category area */
.category_hero_wrapper {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 139px 0 120px;
    position: relative;
    z-index: 1;
}
.category_hero_wrapper::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(
        90deg,
        rgba(34, 57, 124, 1) 40%,
        rgba(17, 29, 62, 0.3953781341638217) 100%
    );
    z-index: -1;
}
.cat_hero_top_content {
    font-size: 14px;
    line-height: 1.2;
    color: #ffffff;
    position: absolute;
    top: 20px;
}
.cat_hero_top_content span {
    font-weight: 700;
}
.category_hero_content {
    text-align: center;
}
.category_hero_content h2 {
    font-size: 32px;
    line-height: 1.1;
    font-weight: 400;
    color: #ffffff;
}
.category_hero_content h2 span {
    font-weight: 700;
}
.category_hero_content p {
    font-size: 15px;
    line-height: 1.3;
    color: #ffffff;
    padding-top: 30px;
}
.category_wrapper {
    padding-top: 25px;
}
.category_accordian_wrapper {
    background-color: var(--gray);
    padding: 30px 25px 30px 25px;
}
.accordian_heading {
    font-size: 23px;
    line-height: 1.2;
    color: var(--theme_color);
    font-weight: 500;
}
.category_accordian_wrapper button {
    background-color: transparent;
    border: none;
    font-size: 19px;
    line-height: 1;
    color: var(--theme_color);
    font-weight: 700;
    margin: 20px 0 5px 0;
    padding: 0;
    display: inline-block;
    position: relative;
    width: 100%;
    text-align: left;
}
.category_accordian_wrapper button::before {
    position: absolute;
    content: "\f105";
    font-family: "Font Awesome 5 pro";
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    color: var(--theme_color);
    font-weight: 400;
}
.category_accordian_wrapper button[aria-expanded="true"]::before {
    content: "\f107";
    font-family: "Font Awesome 5 pro";
    font-weight: 400;
}
.accordian_check_box {
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 15px;
}
.accordian_check_box:last-child {
    margin-bottom: 0;
}
.accordian_check_box input {
    display: none;
}
.accordian_check_box label {
    font-weight: 500;
    position: relative;
    padding-left: 30px;
    user-select: none;
}
.accordian_check_box label span {
    font-size: 14px;
    line-height: 1;
    color: var(--cyan);
}
.accordian_check_box label::before {
    position: absolute;
    content: "";
    left: 0;
    top: -2px;
    height: 20px;
    width: 20px;
    border: 1px solid rgba(35, 57, 124, 0.22);
    border-radius: 5px;
}
.accordian_check_box input:checked + label::after {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    border-radius: 2px;
    background-color: var(--theme_color);
    left: 4px;
    top: 2px;
}
.range_box {
    margin-bottom: 45px;
}
.irs--round .irs-bar {
    background-color: var(--theme_color);
    top: 20px;
}

.irs--round .irs-handle {
    background-color: var(--theme_color);
    border-color: var(--theme_color);
}

.irs--round .irs-handle.state_hover,
.irs--round .irs-handle:hover {
    background-color: var(--theme_color);
}

.irs--round .irs-handle {
    width: 11px;
    height: 11px;
    top: 16.5px;
}

.irs--round .irs-from,
.irs--round .irs-to,
.irs--round .irs-single {
    background-color: transparent;
    color: #666666;
    display: none;
}

.irs--round .irs-from:before,
.irs--round .irs-to:before,
.irs--round .irs-single:before,
.irs--round .irs-min,
.irs--round .irs-max {
    display: none;
}
.irs--round .irs-line {
    top: 20px;
    height: 4px;
    background-color: #c1c1c1;
    border-radius: 4px;
}
.irs--round {
    height: 45px;
}
.cat_col {
    padding-left: 0;
}
.cat_selecet_box {
    display: flex;
    align-items: center;
    justify-content: end;
}
.carte {
    display: flex;
    align-items: center;
    padding-top: 9px;
    padding-bottom: 9px;
    border: 1px solid var(--theme_color);
    border-radius: 2px;
    transition: 0.4s;
    height: 46px;
}
.carte img {
    padding-left: 15px;
}
.carte span {
    font-weight: 500;
    color: var(--theme_color);
    padding-right: 55px;
    padding-left: 40px;
}
.carte:hover.carte span {
    color: var(--orange);
}
.cat_input_box {
    width: 224px;
    height: 46px;
    line-height: 46px;
    font-weight: 500;
    color: var(--theme_color);
    border-color: var(--theme_color);
    border-radius: 2px;
    margin-left: 20px;
    font-size: 16px;
}
.cat_input_box:hover {
    border-color: var(--theme_color);
}

.cat_box_wrapper {
    display: flex;
}
.cat_img {
    width: 260px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.cat_img.relative {
    position: relative;
}

.cat_content_box {
    padding: 20px 23px;
    background-color: var(--gray);
    width: 100%;
}
.cat_location {
    display: flex;
    align-items: center;
    padding-top: 10px;
}
.cat_location p {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    padding-left: 10px;
    color: var(--theme_color);
    letter-spacing: 1.1px;
}
.cat_content_box .p1 {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.75);
    line-height: 1.5;
    padding-top: 25px;
    font-weight: 500;
}
.date_price_box {
    display: flex;
    align-items: center;
    padding-top: 30px;
}
.price_box {
    margin-left: 20px;
}
.price_box p {
    font-size: 14px;
    line-height: 1.2;
    color: var(--theme_color);
}
.price_box span {
    font-weight: 400;
}
.date_box {
    display: flex;
    align-items: center;
    margin-left: 30px;
}
.date_box p {
    font-size: 14px;
    line-height: 1.2;
    color: var(--theme_color);
    padding-left: 10px;
}
.pagination_box {
    display: flex;
    align-items: center;
    padding: 35px 0;
    justify-content: center;
}
.pagination_box li {
    margin-right: 15px;
}
.pagination_box li a {
    font-size: 15px;
    line-height: 1;
    color: #a2bacb;
    display: inline-block;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.pagination_box li:first-child {
    padding-right: 0px;
}
.pagination_box li:last-child {
    padding-left: 0px;
    margin-right: 0;
}

.pagination_box li:not(:first-child) a,
.pagination_box li:not(:last-child) a {
    height: 25px;
    width: 25px;
    background-color: transparent;
    line-height: 22px;
    border-radius: 50px;
    text-align: center;
    transition: 0.4s;
    margin-top: 6px;
}
.pagination_box li:not(:first-child) a:hover,
.pagination_box li:not(:last-child) a:hover,
.pagination_box li:not(:first-child) a.active,
.pagination_box li:not(:last-child) a.active {
    color: #ffffff !important;
    background-color: var(--theme_color);
}

/* modal 1 area */
.modal_main_wrapper .modal-dialog {
    max-width: 589px;
}
.modal_main_wrapper .modal-body {
    padding: 0;
}
.modal1_wrapper {
    padding: 40px 35px;
    background-color: #edeff5;
    text-align: center;
}

.modal1_wrapper p {
    font-size: 14px;
    line-height: 1.3;
    color: rgba(0, 0, 0, 0.75);
    padding-top: 10px;
    font-weight: 500;
}
.modal_chekbox_wrapper {
    display: flex;
    padding-top: 20px;
    justify-content: space-between;
}
.modal_checkbox {
    padding-right: 30px;
}
.modal_checkbox:last-of-type {
    padding-right: 0px;
}
.modal_checkbox label {
    font-size: 16px;
    line-height: 1;
    color: rgba(0, 0, 0, 0.75);
    font-weight: 500;
    text-transform: none;
}
.modal_checkbox label::before {
    position: absolute;
    content: "";
    left: 0;
    top: -2px;
    height: 20px;
    width: 20px;
    border: 1px solid rgba(35, 57, 124, 0.22);
    border-radius: 2px;
    background-color: #ffffff;
}
.mad_check3 {
    margin-top: 0;
}
.modal_btn1 {
    margin-top: 5px;
    font-weight: 700;
}

/* modal 2 area */
.modal_main_wrapper2 .modal-dialog {
    width: 535px;
}
.modal_main_wrapper2 .modal-body {
    padding: 0;
}
.modal2_wrapper {
    padding: 35px 30px;
    background-color: #edeff5;
}
.modal2_wrapper .button {
    box-shadow: 0 3px 6px rgba(7, 19, 56, 0.36);
}
.modal2_wrapper p {
    font-size: 15px;
    line-height: 1.4;
    color: rgba(7, 19, 56, 0.76);
    padding-top: 10px;
}
.modal_form {
    padding-top: 30px;
}
.modal_form .modal_input_box {
    margin-bottom: 10px;
}
.modal_form .modal_input_box label {
    font-size: 14px;
    line-height: 1.2;
    color: var(--theme_color);
    font-weight: 500;
    text-transform: uppercase;
}
.modal_form .modal_input_box input {
    width: 100%;
    height: 45px;
    border: none;
    background-color: #ffffff;
    box-shadow: 3px 5px 15px rgba(7, 19, 56, 0.13);
    border-radius: 2px;
    padding: 0 15px;
}
.code_villa_box {
    display: flex;
}
.code_pistol {
    width: 40% !important;
}
.code_pistol input {
    width: 100%;
}
.villa {
    width: 60% !important;
    margin-left: 20px;
}
.villa input {
    width: 100% !important;
}
.modal_form_btn {
    width: 100%;
    margin-top: 20px;
}

/* map area */
.map_wrapper {
    padding: 45px 0;
}
.map_shape {
    width: 49%;
}
.map_bg {
    width: 69%;
}
/* #map{
	height: 612px;
} */

.cont-contact {
    max-width: 100%;
    background-color: #FFFFFF;
    position: relative;
}
.cont-contact img {
    width: 100%;
}
.cont-contact .form-contact{
    background-color: var(--gray);
    margin: 26px 75px 23px 75px;
}
.cont-contact .title-contact {
    margin: 26px 75px 23px 75px;
}
.cont-contact .title-contact .title-cnt-main {
    font-weight: bold;
    font-size: 28px;
    color: #22397C;
    margin-left: 19px;
}
.cont-contact .title-contact .cont-ligne{
    border-left: 4px solid #22397C;
    height: 57px;
    position: absolute;
}
.cont-contact .title-contact .title-cnt-under{
    color: #53BBD1;
    font-size: 16px;
    margin-left: 19px;
    margin-top: 13px;
}
.cont-contact .form-contact .map_check_civ {
    display: flex;
}

.map_form_wrapper {
    width: 100%;
    padding: 23px 23px 23px 23px;
}
.map_form_wrapper .map_input_box label {
    font-size: 21px;
    font-weight: bold;
    margin-top: 21px;
}
.map_form_wrapper .map_check_civ label {
    font-size: 20px;
    font-weight: bold;
    margin-right: 13px;
    margin-left: 13px;
}
.map_form_wrapper .map_form_btn .btn-cnt{
    background-color: #53BBD1;
}
.map_form_wrapper h2 {
    font-size: 32px;
    line-height: 1.2;
    color: var(--theme_color);
    font-weight: 400;
}
.map_form_wrapper h2 span {
    font-weight: 700;
}
.map_form {
    margin-top: 25px;
}
.map_form .map_input_box {
    margin-bottom: 10px;
}
.map_form .map_input_box label span {
    color: var(--orange);
}
.map_form .map_input_box input {
    width: 100%;
    height: 45px;
    /*background-color: var(--gray);*/
    /*border-radius: 5px;*/
    outline: none;
    padding: 0 15px;
    color: var(--theme_color);
    border-color:var(--theme_color);
}
.map_form .map_input_box  ::placeholder {
    color: var(--theme_color);
}
.email_tel_box {
    width: 100%;
}
.email_tel_box .email_box {
    width: 50%;
}
.email_tel_box .email_box input {
    width: 100%;
}
.email_tel_box .tel_box {
    width: 50%;
    margin-left: 25px;
}
.email_tel_box .tel_box input {
    width: 100%;
}
.map_input_box textarea {
    height: 110px;
    /*background-color: var(--gray);*/
    /*border-radius: 5px;
    border: none;*/
    outline: none;
    padding: 15px;
    width: 100%;
    resize: none;
    border-color: var(--theme_color);
}
.map_form_btn {
    text-align: center;
}
.map_form_btn button {
    box-shadow: 0 3px 6px rgba(7, 19, 56, 0.36);
    padding: 11px 21px;
    width: 100%;
    max-width: 290px;
}
.cont-contact .img-contact{
    background-image: url("../img/IMAGE_CONTACT_SEA.png");
    width: 1688px;
    height: 560px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
}
.map_address_col {
    margin-left: 55px;
}
.map_address_wrapper {
    padding: 50px 0 100px;
}
.map_address_list {
    padding-top: 15px;
}
.map_address_list li {
    font-weight: 500;
    color: rgba(0, 0, 0, 0.75);
    line-height: 1.4;
}
.map_social_content {
    padding-top: 15px;
}
.map_social_content li {
    font-weight: 700;
    color: rgba(0, 0, 0, 0.75);
}
.map_social_content li a {
    font-weight: 500;
    color: rgba(0, 0, 0, 0.75);
    transition: 0.4s;
}
.map_social_content li a:hover {
    color: var(--orange);
}
.map_social a:first-of-type {
    margin-left: 0;
}
.map_social a {
    color: rgba(0, 0, 0, 0.75);
    font-size: 19px;
    margin-left: 21px;
}
.map_button {
    background-color: #edb467 !important;
}
.radio_input label em {
    color: var(--cyan);
}
/*footer area*/
footer {
    background-color: var(--theme_color);
    padding: 10px 0 20px;
}
footer h4 {
    font-size: 19px;
    color: #ffffff;
    line-height: 1.1;
}
footer ul {
    margin-top: 10px;
}
footer ul li a {
    font-size: 15px;
    line-height: 1.1;
    color: #fff;
}
footer ul li a:hover {
    color: var(--cyan);
}
.subscribe_box {
    padding: 25px 40px;
}
.subscribe_box .button {
    font-weight: 700;
    width: 100%;
    max-width: 210px;
}
.subscribe_box p {
    font-size: 14px;
    line-height: 1.2;
    margin-top: 3px;
}
footer .social_wrap a {
    font-size: 24px;
}
.copyright p {
    font-size: 14px;
    line-height: 1.2;
    color: #fff;
}
.button.orange.cat_btn {
    width: 100%;
    max-width: 176px;
}
.category_accordian_wrapper .radio_input {
    display: block;
}
#map {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modal {
    background-color: rgba(34, 57, 124, 0.74);
}
.ajouter {
    width: 100%;
    max-width: 375px;
}
.location p {
    letter-spacing: 1.1px;
}
.category_wrapper .radio_input label {
    letter-spacing: 0;
}
.category_wrapper .radio_input label em {
    font-size: 14px;
}
.date_wrapper_cat {
    display: flex;
    align-items: center;
}
.range_value_box {
    background-color: #fff;
    border: 1px solid rgba(35, 57, 124, 0.22);
    border-radius: 3px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.75);
    padding: 1px 16px 1px 0px;
}
.range_value_box input {
    text-align: right;
    padding: 0;
    line-height: 1;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.75);
    width: 52px;
    border: none;
    -webkit-appreance: none;
}

.list-group-item.active {
    background: #22397c;
    border-color: #22397c;
}

a {
    color: #22397c;
}

.reservation-status {
    font-size: 1.2rem !important;
}
.slider_area.sec_pad .owl-carousel .owl-stage {
    display: flex;
}
.slider_area.sec_pad .owl-carousel .item {
    display: flex;
    flex: 1 0 auto;
    height: 100%;
}
.slider_area.sec_pad .owl-carousel .location_box {
    position: relative;
    /* margin-bottom: 80px; */ /*This is optional*/
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.slider_area.sec_pad .owl-carousel .location_box .form-row {
    margin-top: auto;
}

/*
    CSS PAIEMENT
*/
.check-paiement .type-paiement{
    font-size: 16px;
    letter-spacing: unset;
    cursor: pointer;
}

.type-paiement .checkmark{
    position: absolute;
    top: 42px;
    left: 47px;
    height: 16px;
    width: 16px;
    background-color: var(--theme_color);
    border-radius: 3px;
}

.media-body .download {
    cursor: pointer;
}
.pb_60 .tab-pane .equiment-front {
    display: flex;
    flex-wrap: wrap;
}
.table-equipement {
    margin-right: 9px;
    margin-bottom: 12px;
}
.pb_60 .tab-pane .table-equipement td{
    width: 10% !important;
}

.pb_60 .tab-pane .table-equipement img {
    width: 2rem;
    border-radius: 9999px;
    height: 2rem;
}

.tab-pane .equiment-front {
    margin-top: 36px;
    margin-bottom: 36px;
}
.tab_area .table-equipement {
    width: 46% !important;
}

.search_area .type-product-rental {
    width: 96% !important;
    left: 213px;
    top: 72px;
    height: 123px;
    box-shadow: 0 3px 11px rgba(0, 0, 0, 0.13);
    border: 1px solid #f0f0f0;
    font-weight: 400;
    padding: 0;
}
.search_area .type-product-rental ul {
    opacity: 1;
    pointer-events: auto;
    border-radius: 0;
    margin-top: 10px;
    min-width: 100%;
}

.search_area .type-product-rental ul li {
    line-height: 30px;
    padding-left: 15px;
}

.search_area .type-product-rental ul li:hover{
    background-color: #f6f6f6;
    list-style: none;
    min-height: 31px;
    outline: none;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
/*.side_box .range-date{
    color: initial;
}
.range-date .daterangepicker {
    right: 117px !important;
    top: 129.8px !important;
    width: 989px !important;
}
.range-date .daterangepicker .drp-calendar.left{
    width: 486px !important;
}
.range-date .daterangepicker .drp-calendar {
    max-width: 506px;
}
.range-date .daterangepicker  table tr:nth-child(2n+1){
    background-color: initial !important;
}*/
.range-date .daterangepicker   table tr:nth-child(2n){
    background-color: initial !important;
}
.daterangepicker td.available:hover, .daterangepicker th .available:hover{
    background-color: #357ebd;
}
.daterangepicker td.in-range{
    background-color: #357ebd !important;
}

.content-logo .img-header-logo {
    background-image: url(../img/newlogo.svg);
    width: 202px;
    height: 52px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 202px;
}
.infor-extension .options-check {
    padding-left: 0;
    padding-right: 0 ;
}
.infor-extension .options-check .text-white{
    display: flex;
}
/*
 Options checking
*/
.infor-extension .options-check .list-options {
    width: 64%;
}

.infor-extension .col-qty_options {
    width: 38%;
}
.infor-extension .option-list {
    margin-right: 0;
    margin-left: 0;
}

/*
TOGGLE CSS
*/

.checkbox-price {
    width: 37%;
}

.checkbox-price .toggle {
    background-color: #FFFFFF;
    width: 50px;
    height: 25px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}
.checkbox-price .toggle-active {
    background-color:#FFFFFF;
    width: 50px;
    height: 25px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.checkbox-price input {
    display: none;
}
.checkbox-price .slider {
    height: 17px;
    width: 17px;
    background-color:#ccd1e2;
    border-radius: 12px;
    margin: 4px;
}
.checkbox-price .slider-active {
    height: 17px;
    width: 17px;
    background-color:#76d01c;
    border-radius: 12px;
    margin: 4px;
}
.checkbox-price input:checked + .toggle {
    background-color: #FFFFFF;
}
.checkbox-price input:checked + .toggle > .slider {
    align-self: flex-end;
}
/*
END TOGGLE CSS
*/
/*
 ROUNDED CHECKBOX DISPO
*/
.round-ck {
    position: relative;
}

.round-ck label {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    height: 28px;
    left: 0;
    position: absolute;
    top: 0;
    width: 28px;
}

.round-ck label:after {
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    content: "";
    height: 6px;
    left: 7px;
    opacity: 0;
    position: absolute;
    top: 8px;
    transform: rotate(-45deg);
    width: 12px;
}

.round-ck input[type="checkbox"] {
    visibility: hidden;
}

.round-ck input[type="checkbox"]:checked + label {
    background-color: #76d01c;
    border-color: #8e9bba;
}

.round-ck input[type="checkbox"]:checked + label:after {
    opacity: 1;
}
/*
 END
*/
.booking-profil .voucher-down {
    max-width: 100%;
    font-size: 15px;
    padding: 13px 21px;
}
.dispo-next {
    text-transform: uppercase;
}
.dispo-angle .fal {
    font-size: 25px;
    color: var(--theme_color);
    cursor: pointer;
}

.dispo-next .title-dispo {
    padding-left: 35px;
}
.dispo-next-content .dispo-next-list{
    padding: 39px 27px 39px 43px;
}

.dispo-next-list {
    width: 100%;
}
.dispo-next-list .dispo-booking {
    width: 32%;
}
.dispo-next-list .cost-booking {
    width: 10%;
}
.dispo-next-list .rounded-dispo {
    width: 9%;
}
.dispo-next-list .max-pers {
    width: 41%;
}
.dispo-next-content .dispo-next-date {
    padding: 27px 15px 27px 21px;
}

.dispo-color-content {
    background-color: #ecf0f1;
}
.dispo-next-list .indispo-color {
    color: var(--orange);
}



/*
 Menu deroulant location
*/
.menu-drop-rental{
    border: 1px solid #f0f0f0 !important;
    border-radius: 2px;
    font-weight: 700;
    color: var(--theme_color);
    font-size: 17px;
    line-height: 44px;
    background-color: #fff;
    position: absolute;
    width: 12%;
    left: 38%;
}
.menu-drop-rental ul {
    width: 100%;
}
.menu-drop-rental ul li:hover{
    background-color: #f6f6f6;
    list-style: none;
    min-height: 31px;
    outline: none;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    cursor: pointer;
}
.menu-drop-rental ul li span{
    margin-left: 21px;
}
.sticky-top .sub-menu-country {
    left: 48%;
}
.sticky-top .sub-menu-country ul li span {
    font-size: 17px;
    color: #7785ae;
}
.error_page{
    margin-top: 40px;
    height: 500px;
}

.nav-link.dispo {
    color: #FD3B0B !important;
}

.search_form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.search_form button {
    padding: 0;
    border: none;
    background: transparent;
    color: #FD3B0B;
    font-size: 16px;
}

.search_form input {
    width: 300px;
    height: 25px;
    border: 1px solid #707070;
    padding: 0 10px;
    font-family: 'DIN Pro';
    font-size: 14px;
    font-weight: 500;
}

.search_form input::-webkit-input-placeholder {
    font-size: 14px;
    font-weight: 500;
    font-family: 'DIN Pro';
}

.search_form input::-moz-placeholder {
    font-size: 14px;
    font-weight: 500;
    font-family: 'DIN Pro';
}

.search_form input:-ms-input-placeholder {
    font-size: 14px;
    font-weight: 500;
    font-family: 'DIN Pro';
}

.search_form input::-ms-input-placeholder {
    font-size: 14px;
    font-weight: 500;
    font-family: 'DIN Pro';
}

.search_form input::placeholder {
    font-size: 14px;
    font-weight: 500;
    font-family: 'DIN Pro';
}

.hero_area .user_content.new_price {
    margin-top: 5px;
    background: linear-gradient(90deg, #FD3B0B 0%, #FD3B0B 80%, #23397c 100%);
}

.hero_area .user_content.new_price strong, .hero_area .user_content.new_price p {
    font-weight: bold;
    font-size: 30px;
    text-align: left;
    color: #fff;
}

.strike {
    position: relative;
}

.strike:before {
    content: ' ';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(to bottom right, transparent calc(50% - 1px),  white calc(50% - 1px), white 50%, transparent 50%);
}

.strike-blue:before {
    background: linear-gradient(to bottom right, transparent calc(50% - 1px),  #23397c calc(50% - 1px), #23397c 50%, transparent 50%);
}

.cover-strike-percentage-container {
    position: absolute;
    top: 24px;
    right: 70px;
    background: #fd3b0b;
    padding: 30px 20px;
}

.cover-strike-percentage-text {
    font-weight: 300;
    font-size: 29px;
    line-height: 29px;
    text-align: left;
    color: #fff;
}

.cover-strike-percentage-discount {
    font-weight: bold;
    font-size: 43px;
    line-height: 43px;
    text-align: center;
    color: #fff;
}

.red-price {
    position: absolute;
    bottom: -40px;
    font-size: 16px;
    text-align: left;
    font-weight: bold;
    color: #fd3b0b;
}

.red-price strong {
    font-size: 25px;
}

.red-price.static {
    position: static;
}

@media (max-width: 991px) {
    .cover-strike-percentage-container {
        display: none;
    }
}

.product-strike-percentage-container {
    position: absolute;
    top: 0;
    right: 15px;
    background: #fd3b0b;
    padding: 15px 10px;
}

.product-strike-percentage-text {
    font-weight: 300;
    font-size: 14px;
    line-height: 14px;
    text-align: center;
    color: #fff;
}

.product-strike-percentage-discount {
    font-weight: bold;
    font-size: 21px;
    line-height: 21px;
    text-align: center;
    color: #fff;
}

.newsletter-agreement-sections {
    font-size: 0.75rem !important;
}

.newsletter-agreement a {
    color: #000;
    font-size: inherit;
}
