@font-face {
    font-family: 'Konnect Regular';
    font-style: normal;
    font-weight: 400;
    src: local(''),
    url('../../../fonts/Konnect/Konnect-Regular-official/font.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../../../fonts/Konnect/Konnect-Regular-official/font.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

@font-face {
    font-family: 'Konnect Medium';
    font-style: normal;
    font-weight: 600;
    src: local(''),
    url('../../../fonts/Konnect/Konnect-Medium-official/font.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

@font-face {
    font-family: 'Konnect SemiBold';
    font-style: normal;
    font-weight: 700;
    src: local(''),
    url('../../../fonts/Konnect/Konnect-SemiBold-official/font.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../../../fonts/Konnect/Konnect-SemiBold-official/font.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

@font-face {
    font-family: 'Konnect Bold';
    font-style: normal;
    font-weight: 700;
    src: local(''),
    url('../../../fonts/Konnect/Konnect-Bold-official/font.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../../../fonts/Konnect/Konnect-Bold-official/font.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

:root {
    --blue: #007bff;
    --sky-blue: #2ABBDC;
    --blue-light: rgba(42, 187, 220, 0.06);
    --indigo: #6610f2;
    --purple: #4e59a4;
    --pink: #001747;
    --pink-alt: #f57fb5;
    --pink-light: rgba(192, 10, 124, 0.06);
    --red: #eb0000;
    --orange: #FF7522;
    --orange-alt: #FFC6A4;
    --orange-light: #fef2ea;
    --yellow: #ffbe00;
    --green: #108757;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --gray-alt: rgb(235, 240, 247);
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #333333;
    --black: #1a1a1a;
    --steel: #EDEDED;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --konnect-light: "Konnect Light";
    --konnect-regular: "Konnect Regular";
    --konnect-bold: "Konnect Bold";
    --konnect-semibold: "Konnect SemiBold";
    --konnect-medium: "Konnect Medium";
    --color-blue : #185186;
    --color-orange : #DC9122;
    --color-green-forest : #0e6258;
    --color-yellow : #ffbe00;
    --color-red : #eb0000;
    --color-dark-blue : #00314c;
    --color-soft-blue : #084e9b;
    --color-light-green : #009d7f;
    --black-color-alt: #313131;
    --color-success: #11845a;
}

body{
    font-family: montserrat;
}

.container.container-large {
    max-width: 1496px;
}

@media (min-width: 1200px){
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1184px;
    }
}

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

.bg-gradient{
    background: linear-gradient(90deg, var(--pink), #247c7f);
}

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

.border-radius-0{
    border-radius: 0 !important;
}

.table-responsive {
    overflow-x: initial;
}

div.dt-button-collection {
    position: absolute;
    z-index: 2001;
    left: -90px !important;
}

.shop-btn{
    padding: 0.25rem 1.25rem;
    border-radius: 1.5rem;
}

.mw50{
    max-width: 50%;
}

/*** Buttons ****/

.btn.rounded{
    border-radius: 25px !important;
    padding: 0.375rem 1.25rem;
}

.btn-white {
    background-color: var(--white);
    border-color: var(--white);
    box-shadow: none;
    color: var(--dark);
}

.btn-dark {
    background-color: var(--dark);
    border-color: var(--dark);
    box-shadow: none;
    color: var(--white);
}

.btn-pink {
    background-color: var(--pink);
    border-color: var(--pink);
    box-shadow: none;
    color: #fff;
}

.btn-pink.outline {
    background-color: transparent !important;
    border-color: var(--pink);
    box-shadow: none;
    color: var(--pink) !important;
}

.btn-skyblue {
    background-color: var(--sky-blue);
    border-color: var(--sky-blue);
    box-shadow: none;
    color: #fff;
}

.btn-orange {
    background-color: var(--orange);
    border-color: var(--orange);
    box-shadow: none;
    color: #fff;
}

.btn-pink:hover, .btn-orange:hover, .btn-skyblue:hover {
    color: #fff;
}

.btn-hover-outline-pink:hover{
    background-color: #ffffff;
    border: 1px solid var(--pink);
    color : var(--pink) !important;
}

.btn-hover-outline-skyblue:hover{
    background-color: #ffffff;
    border: 1px solid var(--sky-blue);
    color : var(--sky-blue) !important;
}

.btn-hover-outline-orange:hover{
    background-color: #ffffff;
    border: 1px solid var(--orange);
    color : var(--orange) !important;
}

.btn-icon-only{
    border-radius: 50%;
}



/*** End Buttons ****/

/*** Text Colors ****/

.text-pink, .text-hover-pink:hover, a.text-hover-pink:hover {
    color: var(--pink) !important;
}

.text-pink-alt, .text-hover-pink-alt:hover, a.text-hover-pink-alt:hover {
    color: var(--pink-alt) !important;
}

.text-skyblue, .text-hover-skyblue:hover, a.text-hover-skyblue:hover {
    color: var(--sky-blue) !important;
}

.text-orange, .text-hover-orange:hover, a.text-hover-orange:hover {
    color: var(--orange) !important;
}

.text-blue, .text-hover-blue:hover, a.text-hover-blue:hover {
    color: var(--blue) !important;
}

.text-purple, .text-hover-purple:hover, a.text-hover-purple:hover {
    color: var(--purple) !important;
}

.text-green, .text-hover-green:hover, a.text-hover-green:hover {
    color: var(--green) !important;
}

.text-yellow, .text-hover-yellow:hover, a.text-hover-yellow:hover {
    color: var(--yellow) !important;
}

.text-black, .text-hover-black:hover, a.text-hover-black:hover {
    color: var(--black) !important;
}

/*** End Text Colors ****/

/*** Background Colors ****/

.bg-pink {
    background-color: var(--pink) !important;
}

.bg-pink-alt {
    background-color: var(--pink-alt) !important;
}

.bg-skyblue {
    background-color: var(--sky-blue) !important;
}

.bg-orange {
    background-color: var(--orange) !important;
}

.bg-purple {
    background-color: var(--purple) !important;
}

.bg-green {
    background-color: var(--green) !important;
}

.bg-yellow {
    background-color: var(--yellow) !important;
}

.bg-pink-light {
    background-color: var(--pink-light) !important;
}

.bg-orange-light {
    background-color: var(--orange-light) !important;
}

.bg-blue-light {
    background-color: var(--blue-light) !important;
}

.bg-steel {
    background-color: var(--steel) !important;
}

.bg-gray-alt {
    background-color: var(--gray-alt) !important;
}

/*** End Background Colors ****/


/*** Lists ****/

.dots-pink, .dots-skyblue, .dots-orange {
    list-style: none;
}

.dots-pink li::before, .dots-skyblue li::before, .dots-orange li::before {
    content: "\2022";
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.dots-pink li::before {
    color: var(--pink) !important;
}

.dots-skyblue li::before {
    color: var(--sky-blue) !important;
}

.dots-orange li::before {
    color: var(--orange) !important;
}

/*** End Lists ****/

/*** Inputs ****/

.radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin: 0;
}

.radio > input {
    position: absolute;
    opacity: 0;
    left: 23px;
    top: 0px;
}

.radio > label {
   margin-left: 14px;
}

.radio > span {
    height: 18px;
    width: 18px;
    background-color: #ffffff;
    border: 2px solid #D1D3E0;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.radio > span:after {
    content:'';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: none;
}

.radio > input:checked ~ span {
    border-color: var(--pink);
}

.radio > input:checked ~ span:after {
    display: block;
    background-color: var(--pink);
}

/*** End Inputs ****/

/*** Font sizes ****/

sub, sup {
    font-size: 60%;
}

.font-s-2r{
    font-size: 2rem !important;
}

.font-s-60{
    font-size: 60px;
}

.font-s-55{
    font-size: 55px;
}

.font-s-50{
    font-size: 50px;
}

.font-s-40{
    font-size: 40px;
}

.font-s-32{
    font-size: 32px;
}

.font-s-30{
    font-size: 30px;
}

.font-s-26{
    font-size: 26px;
}

.font-s-24{
    font-size: 24px;
}

.font-s-22{
    font-size: 22px;
}

.font-s-21{
    font-size: 21px;
}

.font-s-20{
    font-size: 20px;
}

.font-s-19{
    font-size: 19px;
}

.font-s-18{
    font-size: 18px;
}

.font-s-17{
    font-size: 17px;
}

.font-s-16{
    font-size: 16px;
}

.font-s-15{
    font-size: 15px;
}

.font-s-14{
    font-size: 14px;
}

.font-s-13{
    font-size: 13px;
}

.font-s-12{
    font-size: 12px;
}

.font-s-11{
    font-size: 11px;
}

.font-s-10{
    font-size: 10px;
}


/*** End Font sizes ****/

.v-middle{
    vertical-align: middle !important;
}

.rotate {

    transform: rotate(-90deg);
    /* Safari */
    -webkit-transform: rotate(-90deg);
    /* Firefox */
    -moz-transform: rotate(-90deg);
    /* IE */
    -ms-transform: rotate(-90deg);
    /* Opera */
    -o-transform: rotate(-90deg);
    /* Internet Explorer */
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

.img-side-text {

    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    white-space: nowrap;
    width: 20px;
    font-size: 10px;
    align-self: end;
}

.rotate-90 {

    transform: rotate(90deg);
    /* Safari */
    -webkit-transform: rotate(90deg);
    /* Firefox */
    -moz-transform: rotate(90deg);
    /* IE */
    -ms-transform: rotate(90deg);
    /* Opera */
    -o-transform: rotate(90deg);
    /* Internet Explorer */
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

.small{
    font-size: smaller;
}

.none, .d-flex-column.none, .d-flex.none{
    display: none !important;
}

#csearch-form{
    width: inherit;
}

#search-form .input-group, #csearch-form .select2-container--default .select2-selection--single {
    border: 1px solid var(--pink) !important;
    border-radius: 5px;
}

#search-form .input-group{
    max-width: 740px;
}

#search-form .input-group .form-control{
    border: none;
    font-size: small;
}

.border-pink{
    border-color: var(--pink);
}

#main-nav .navbar-nav .nav-link {
    font-weight: bold;
    text-transform: uppercase;
    padding-left: 15px;
    padding-right: 15px;
}

#main-nav .navbar-nav .nav-link, .dropdown-item {
    text-transform: uppercase;
}

.nav-login{
    color: #fff;
    text-transform: uppercase;
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: 3px solid var(--warning);
}

.nav-login:hover{
    color: var(--warning);
}



.dropdown-item {
    font-size: 14px;
}

.dropdown-item:hover {
   color: #fff;
   background-color: var(--pink);
}


#main-nav .nav-item .dropdown-toggle:after {
    display: none;
}


#main-nav .nav-item .dropdown-toggle:before {
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    border-right: 0.3em solid transparent;
    border-top: 0.3em solid;
    content: "";
    display: inline-block;
    margin-right: 10px;
    vertical-align: 0.255em;
}

#main-nav .dropdown-item.dropdown-toggle:after {
    border-right: 0;
    border-top: 0.3em solid transparent;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
    content: "";
    display: inline-block;
    margin-left: 10px;
    vertical-align: initial;
    float: right;
    margin-top: 6px;
}

#main-nav .dropdown-item.dropdown-toggle:before {
    display: none;
}

.navbar-light .btn-navbar, .navbar-light .form-control-navbar {
    background-color: #ffffff;
    border-color: #ced4da;
    border-radius: 1.5rem;
}

.navbar-light .form-control-navbar+.input-group-append>.btn-navbar {
    border-radius: 0rem 1.5rem 1.5rem 0rem;
}

.navbar-nav .nav-link {
    color: #fff;
    font-size: 15px;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link:active {
    color: var(--warning);
}

.navbar-pink {
    background-color: var(--pink);
    color: #fff;
}

.navbar-pink .nav-link {
    color: var(--white);
    font-size: x-small;
}

.navbar-pink .nav-link:hover, .navbar-pink .nav-link:active {
    color: var(--white);
}

#defaultOnboarding{
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--orange-alt);
    width: 41px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: large;
    border-bottom-left-radius: 10px;
    box-shadow: 0px 0px 3px rgb(127 137 161 / 15%);
}

.custom-control-input-danger:checked~.custom-control-label:before {
    border-color: var(--pink);
    background-color: var(--pink);
}

.d-flex-column{
    display: flex !important;
    flex-direction: column !important;
}

section.content {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.session-title .title{
    font-size: 1.4rem;
    color: var(--pink);
    font-weight: bold;
    font-family: var(--konnect-bold);
}

.session-title .title::after{
    width: 60px;
    margin-top: 5px;
    content: "";
    border-bottom: solid var(--pink) 3px;
}

.title-divider::after{
    width: 60px;
    margin-top: 5px;
    content: "";
    border-bottom: solid var(--pink) 3px;
}

.title-divider.divider-center::after{
    align-self: center;
}

.title-divider.divider-orange::after{
    border-bottom: solid var(--orange) 3px;
}

.title-divider.divider-pink::after{
    border-bottom: solid var(--pink) 3px;
}

.session-title.divider-center .title::after{
    width: 75px;
    align-self: center;
}

.hr-divider{
    width: 60px;
    border-top: solid #fff 3px;
    margin-left: 0;
}

.mh-400{
    min-height: 400px;
}

.mh-300{
    min-height: 300px;
}

.mh-200{
    min-height: 200px;
}

.mh-100{
    min-height: 100px;
}

.mh-95{
    min-height: 95px;
}

.mh-90{
    min-height: 90px;
}

.divider-white::after{
    border-bottom: solid #ffffff 2px !important;
}

.block-title.divider-orange::after{
    border-bottom: solid var(--orange) 2px;
}

.divider-pink::after{
    border-bottom: solid var(--pink) 2px;
}

.session-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
}

.symbol {
    display: inline-block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    border-radius: 0.42rem;
}

.symbol > img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 0.42rem;
    width: 100%;
    max-width: 50px;
    height: 50px;
}

.symbol-md > img {
    max-width: 100px;
    height: 100px;
}

.symbol-sm > img {
    max-width: 70px;
    height: 70px;
}

.btn-hover-white:hover{
    color: white;
}

.h100{
    height: 100%;
}

.h-350{
    height: 350px;
}

.mw100{
    max-width: 100%;
}

.mw80{
    max-width: 80px;
}

.w100{
    width: 100%;
}

.mw360{
    max-width: 360px;
}

.min-w-300{
    min-width: 300px;
}

.min-w-250{
    min-width: 250px;
}

.min-w-200{
    min-width: 200px;
}

.w30{
    width: 30%;
}

.w40{
    width: 40%;
}

.w60{
    width: 60%;
}

.w65{
    width: 65%;
}

.w70{
    width: 70%;
}

.w80{
    width: 80%;
}

.w-52-px{
    width: 52px;
}

.btn {
    padding: 0.375rem 1.3rem;
}

.product-name h2{
    font-size: 33px;
    font-weight: bold;
    font-family: var(--konnect-bold);
}

.product-name h4{
    font-size: 20px;
    font-family: var(--konnect-medium);
}

.variant-image img{
    height: 131px;
    width: 131px;
    background-color: #DBDBDB;
    border-radius: 6px;
    margin-right: 30px;
}

.radius-6
{
    border-radius: 6px;
}

.radius-10
{
    border-radius: 10px;
}

.radius-15
{
    border-radius: 15px;
}

.radius-20
{
    border-radius: 20px;
}

.radius-25
{
    border-radius: 25px;
}

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


.hoverflow {
    overflow: hidden
}

.relative {
    position: relative
}

.cover {
    object-fit: cover
}

img.cover {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: fill
}

.brand-image{
    max-width: 190px;
}
.navbar-brand{
    margin-right: 30px;
}

.product-header{
    width: 100%;
    height: 258px;
    background-image: linear-gradient(140deg, var(--pink), var(--orange));
}

.product-header h3{
   text-align: center;
    color: #ffffff;
    font-size: 50px;
    font-family: var(--konnect-bold);
}

.breadcrumb{
    margin-top: 30px;
    margin-bottom: 36px;
}

.breadcrumb-item+.breadcrumb-item:before {
    color: black !important;
    content: ">" !important;
    float: left;
    padding-right: 1rem;
    padding-left: 1rem;
}

.border-pink{
    border-color: var(--pink);
}

.uppercase{
    text-transform: uppercase;
}

.product-keywords
{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.product-keywords.top::before, .product-keywords.bottom::after, .b-bottom
{
    border-top: 2px var(--pink) solid;
    width: 34px;
    content: '';
}

.block-kit-title::after
{
    border-bottom: 2px var(--warning) solid;
    width: 34px;
    content: '';
}

.b-bottom{
    margin: 0;
}

.keyword span{
    font-size: 30px;
    font-weight: bold;
    font-family: var(--konnect-bold);
}

.h64{
    height: 64px;
}

.h48{
    height: 48px;
}

.product-btn-block{
    font-size: 20px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.d-center{
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-block{
    padding: 25px 36px;
    margin-bottom: 64px;
    border-radius: 6px;
}

.testimonial-card{
    max-width: 390px;
    border-radius: 6px;
    flex: 1;
    align-self: stretch;
}

.testimonial-img{
    width: 82px;
    height: 82px;
    border-radius: 41px;
}

.testimonial-content{
    text-align: center;
}

.h60{
    height: 60px !important;
}

.h150{
    height: 150px !important;
}

.h175{
    height: 175px !important;
}

.h200{
    height: 200px !important;
}

.h250{
    height: 250px !important;
}

.w250{
    width: 250px !important;
}

.cta-content .w-100
{
    width: 8vw !important;
}

.mw260{
    max-width: 260px !important;
}

.h300{
    height: 300px !important;
}

.h350{
    height: 350px !important;
}

.h400{
    height: 400px !important;
}

.h500{
    height: 500px !important;
}

.h600{
    height: 600px !important;
}

.gap-10{
    gap: 10px;
}

.gap-20{
    gap: 20px;
}

.gap-30{
    gap: 30px;
}

.gap-40{
    gap: 40px;
}

.gap-50{
    gap: 50px;
}

.flex-1{
    flex: 1;
}

.font-weight-bold{
    font-family: var(--konnect-bold);
}

.font-weight-semibold{
    font-family: var(--konnect-semibold);
}

.font-weight-medium{
    font-family: var(--konnect-medium);
}

.navbar-expand-md .navbar-nav .nav-link {
    max-width: 215px;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    white-space: normal;
}

.custom-nav-pills .nav-link{
    opacity: 0.4;
    background-color: #ffffff;
}

.custom-nav-pills .nav-link.active{
    opacity: 1;
    background-color: #f7f7f7 !important;
    box-shadow: 4px 0px 10px rgb(127 137 161 / 17%) !important;
}

.register-box {
    width: 800px;
}

.login-logo{
    background-color: rgba(0, 23, 71, 0.85);
    padding: 20px 0;
    margin-bottom: 0;
    margin-top: 70px;
}

.shop-logo{
    width: auto;
    height: 25px;
}



.carousel-indicators li {
    border-bottom: 0;
    border-top: 0;
    height: 12px;
    width: 12px;
    border-radius: 10px !important;
}

.carousel-indicators.indicator-pink li {
    background-color: var(--pink);
}

.carousel-indicators.indicator-orange li {
    background-color: var(--orange);
}

.document-card{
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cta-list{
    color: #fff;
    display: flex;
    list-style: none;
}

.cta-list li{
    padding-right: 5px;
    padding-left: 5px;
    display: flex;
    text-align: center;
}

.cta-list li:not(:last-child)::after{
    content: '';
    height: 100%;
    width: 5px;
    background-color: #ffffff;
    margin-left: 2px;
}

/* Image checkbox */

.image-checkbox {
    cursor: pointer;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    outline: 0;
}

.image-checkbox input[type="checkbox"] {
    display: none;
}

.image-checkbox .checked-overlay {
    background-color: rgb(48 48 48 / 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.image-checkbox .fa {
    color: var(--pink);
    font-size: 35px;
}

.image-checkbox-checked .checked-overlay {
    display: flex !important;
}

.custom-control-input {
    z-index: 20000;
}
/* End Image checkbox */
/* Image radio */

.image-checkbox {
    cursor: pointer;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    outline: 0;
}

.image-radio .overlay {
     background-color: rgb(48 48 48 / 70%);
     display: flex;
     align-items: center;
     justify-content: center;
     position: absolute;
     width: 100%;
     height: 100%;
     top: 0;
 }

.image-radio .visuel-vitro:hover .overlay {
    display: flex !important;
}

.image-radio .fa, .atm-image .fa {
    color: var(--white);
    background-color: var(--pink);
    padding: 10px;
    font-size: 30px;
    border-radius: 40px;
}


.atm-image .overlay {
    background-color: 'transparent';
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.atm-image:hover .overlay {
    background-color: rgb(48 48 48 / 70%);
}

.zoom-img-modal{
    z-index: 99999;
    cursor: pointer;
    display: none;
}

.zoom-img{
    cursor: auto;
    max-height: 100%;
    max-width: 100%;
    margin-bottom: 40px;
}

/* End Image radio */


.img-grid {
    cursor: pointer;
}

.img-grid .overlay {
    background-color: rgb(48 48 48 / 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.img-grid .fa {
    color: var(--white);
    background-color: var(--pink);
    padding: 10px;
    font-size: 30px;
    border-radius: 40px;
}

.img-grid:hover .overlay {
    display: flex !important;
}


select.time{
    height: 30px;
    width: 60px;
    font-size: 11px;
    vertical-align: middle;
}

.carte-recto .carte-info{
    position: absolute;
    top: 22%;
    left: 2.5vw;
}

.timeline-left{
    left: 5.5vw;
}

.timeline-right{
    left: 21vw;
}

.tl-item{
    margin-bottom: 2px;
}

.frontend-footer a, .frontend-footer a:hover, .frontend-footer a:active, .frontend-footer a:visited{
    color: #ffffff;
}

.frontend-footer .footer-title {
   text-transform: uppercase;
    margin-bottom: 1rem;
}

.frontend-footer .footer-title::after {
   content: '';
    border-bottom: 2px solid #fff;
    display: flex;
    max-width: 180px;
    margin-top: 10px;
}

.frontend-footer ul {
    list-style: none;
    padding-left: 0;
    display: contents;
}

.frontend-footer ul li{
    margin-bottom: 10px;
}

/**Mobile menu**/

.mobile-menu, .navbar-expand-md .navbar-collapse{
    display: none !important;
}

.hidden
{
    display: none;
}

#menuAccordion .dropdown-item{
    font-size: 12px;
    color: white;
}

.aside {
    width: 265px;
    background-color: #1e1e2d;
}

.ps {
    overflow: hidden !important;
    overflow-anchor: none;
    -ms-overflow-style: none;
    touch-action: auto;
    -ms-touch-action: auto;
}



.aside-menu .menu-nav {
    margin: 0;
    list-style: none;
    padding: 15px 0;
}

.aside-menu .menu-nav .menu-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    float: none;
    padding: 0;
    min-height: 25px;
}

.aside-menu .menu-nav > .menu-item {
    position: relative;
    margin: 0;
}

.aside-menu .menu-nav .menu-item > .menu-heading, .aside-menu .menu-nav .menu-item > .menu-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    margin: 0;
    padding: 0;
    text-decoration: none;
    position: relative;
    outline: none;
    align-items: center;
}

.aside-menu .menu-nav > .menu-item > .menu-heading, .aside-menu .menu-nav > .menu-item > .menu-link {
    cursor: pointer;
    min-height: 40px;
}

.aside-menu .menu-nav > .menu-item > .menu-link {
    padding: 9px 25px;
}

.aside-menu .menu-nav .menu-item > .menu-heading .menu-text, .aside-menu .menu-nav .menu-item > .menu-link .menu-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 0;
}

.aside-menu .menu-nav > .menu-item > .menu-heading .menu-text, .aside-menu .menu-nav > .menu-item > .menu-link .menu-text {
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    color: #ffffff;
}

.aside-menu .menu-nav .menu-inner, .aside-menu .menu-nav .menu-submenu {
    display: none;
    float: none;
    margin: 0;
    padding: 0;
}

.aside-menu .menu-nav > .menu-item.menu-item-open {
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.aside-menu .menu-nav .menu-item.menu-item-open > .menu-submenu, .aside-menu .menu-nav .menu-item.menu-item-open > .menu-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 40px;
    padding-right: 25px;
}

.aside-menu .menu-nav .menu-subnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 0;
    margin: 0;
    list-style: none !important;
}

.aside-menu{
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
}

.aside-menu i{
    color: #ffffff;
}

.aside-menu .menu-nav > .menu-item .menu-submenu .menu-subnav {
    margin: 0;
}

.aside-menu .menu-nav .menu-item .menu-submenu .menu-item-parent {
    display: none;
}

.aside-menu .menu-nav > .menu-item .menu-submenu .menu-item > .menu-heading .menu-text, .aside-menu .menu-nav > .menu-item .menu-submenu .menu-item > .menu-link .menu-text {
    color: #ffffff !important;
}

.aside-menu .menu-nav > .menu-item .menu-submenu .menu-item:not(.menu-item-parent):not(.menu-item-open):not(.menu-item-here):not(.menu-item-active):hover {
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.aside-menu .menu-nav > .menu-item .menu-submenu .menu-item:not(.menu-item-parent):not(.menu-item-open):not(.menu-item-here):not(.menu-item-active):hover > .menu-heading .menu-text, .aside-menu .menu-nav > .menu-item .menu-submenu .menu-item:not(.menu-item-parent):not(.menu-item-open):not(.menu-item-here):not(.menu-item-active):hover > .menu-link .menu-text {
    color: #ffffff;
}

#bottom-mobile-menu
{
    position: fixed;
    bottom: 120px;
}

@media (min-width: 992px){

    .aside, #toggleMobileMenu {
        display: none !important;
    }

    .product-name.mb-lg-4 {
        margin-bottom: 3rem !important;
    }

}

@media (max-width: 991.98px){

    .aside {
        z-index: 1050;
        position: fixed;
        top: 0;
        bottom: 0;
        -webkit-transition: left 0.3s ease, right 0.3s ease, bottom 0.3s ease, top 0.3s ease;
        transition: left 0.3s ease, right 0.3s ease, bottom 0.3s ease, top 0.3s ease;
        left: -500px;
        width: 50%;
    }

    .aside.aside-on {
        -webkit-transition: left 0.3s ease, right 0.3s ease, bottom 0.3s ease, top 0.3s ease;
        transition: left 0.3s ease, right 0.3s ease, bottom 0.3s ease, top 0.3s ease;
        left: 0;
    }

    #bottom-mobile-menu
    {
        width: 405px
    }
}

@media (max-width: 767.98px){
    .aside {
        z-index: 1050;
        position: fixed;
        width: 100%;
    }

    #bottom-mobile-menu
    {
        width: 100%
    }

    .navbar-nav {
        display: flex;
        flex-direction: row;
        list-style: none;
        margin-bottom: 0;
        padding-left: 0;
        justify-content: space-around;
    }

    .main-header .navbar-nav .nav-item {
        font-size: 10px !important;
        padding: 0 5px;
    }

    .navbar .container {
        flex-wrap: nowrap;
    }

    .nav-link.min-w-300 {
        min-width: 225px;
    }
}


/**** Responsive sm ****/
@media (max-width: 991.98px ){

    .mobile-menu{
        position: fixed;
        width: 50%;
        z-index: 10000;
        left: 0;
        top: 0;
        height: 100%;
        background-color: #333333F2;
        color: #ffffff;
        display: block;
    }

    .h-350 {
        height: 170px;
    }

    .font-s-md-14
    {
        font-size: 14px  !important;
    }

    .flex-md-column{
        flex-direction: column !important;
    }

    .new-product-sticker {
        width: 100px;
        left: -19px;
    }

    .product-name h2 {
        font-size: 28px;
    }

    .product-name h4 {
        font-size: 22px;
    }

    .keyword span {
        font-size: 22px;
    }

    .mh-400 {
        min-height: 350px;
    }

    .flex-ipad-column{
        flex-direction: column;
    }
}

@media (min-width: 768px) and (max-width: 991px ){

    .hidden-sm{
        display: none !important;
    }
}


/**** Responsive xs ****/
@media (max-width: 767.98px ){

    * {
        font-size: 12px;
    }

    .mobile-menu{
        width: 100%;
    }

    .hidden-xs{
        display: none !important;
    }

    .visible-xs{
        display: block !important;
    }

    .d-xs-center{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .w-xs-100{
        width: 100% !important;
    }

    .mw-xs-100{
        max-width: 100% !important;
    }

    .h250 {
        height: 170px !important;
    }

    .flex-xs-column{
        flex-direction: column !important;
    }

    .form-group .text-right
    {
        text-align: left !important;
    }

    .mb-5, .my-5 {
        margin-bottom: 1rem!important;
    }

    .my-xs-4 {
        margin-top : 1rem!important;
        margin-bottom : 1rem!important;
    }

    .product-name {
        margin-top: 2rem;
    }

    .product-name h2 {
        font-size: 24px;
    }

    .product-name h4 {
        font-size: 20px;
    }

    .keyword span {
        font-size: 18px;
    }

    .new-product-sticker {
        width: 90px;
        left: 9px;
        top: -20px;
    }

    .product-header h3 {
        font-size: 32px;
    }

    .product-header {
        height: 200px;
    }
}

#top-bar a.nav-link{
    font-family: var(--konnect-bold);
}
#top-bar .nav-link.pink{
    color: var(--pink);
}



@media (min-width: 767.98px) {
    .mock-up-geo img {
        margin-top: -115px;
    }
}

.btn-block.show-form {
    width: auto;
}

/* 
// Admin interface
*/

.img-example {
    max-width: max-content;
}

.example-frame {
    border: 1px solid transparent;
    background-color: var(--gray-alt);
    margin: 2px;
    padding: 5px;
}

.small-padding-left {
    padding-left: 5px;
}

.custom-file {
    width: auto;
}

.admin-infos {
    color: var(--gray);
}


.flag{
    height: 10px;
}

.main-footer.text-sm, .text-sm .main-footer {
    padding: 0;
}


footer .navbar-nav .nav-link {
    color: white;
    font-size: 13px;
}

footer .navbar-nav .nav-link:hover {
    color: var(--orange);
}

.icon-box{
    margin-bottom: 18px;
}

.icon-box .icon{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}

.icon-box a{
    color: #ffffff;
}

.icon-box a:hover{
    color: var(--warning);
}

.cta-widget{
    height: 200px;
}

.cta-widget .cta-content{
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    padding: 35px;
    color: #fff;
}


.cta-content.green{
    background-color: #108757d8;
}

.cta-content.yellow{
    background-color: #8e6a01c4;
}

.cta-content.red{
    background-color: #eb000099;
}

.cta-content.blue{
    background-color: rgba(0, 23, 71, .74);
}

.cta-widget .cta-title{
    font-size: 28px;
    font-family: var(--konnect-bold);
    margin-bottom: 10px;
    margin-top: 15px;
}


.cta-widget .cta-content .badge{
            position: absolute !important;
            top: 10px ;
            right: 10px;
            padding: 5px 10px;
            border-radius: 15px;
        }

        .cta-widget .cta-content .badge.badge-warning{
            background-color: var(--warning);
            color: #1a1a1a;
        }

.bb-3-warning {
    border: 1px dashed var(--warning);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom: 3px solid var(--warning);
}

.h-inherit {
    height: inherit;
}

#main-nav .navbar-nav .nav-link.active {
   color: var(--warning)
}


.ligne-carriere-list-item {
    display: flex;
    border-bottom: 5px solid var(--color-yellow);
    background-color: #ffffff;
    box-shadow: 3px 4px 11px 2px rgba(0, 0, 0, 0.134);
  } 
  
  .ligne-carriere-list-item .icon-box{
    max-width: 120px;
    margin-bottom: 0;
}

.ligne-carriere-list-item .btn-box{
    width: 250px;
}

.ligne-carriere-list-item .btn-box .btn{
    background-color: antiquewhite;
    text-align: center;
    height: 48px;
}

.ligne-carriere-list-item .btn-box .btn:hover{
    background: linear-gradient(45deg,  var(--color-orange), var(--color-yellow)) !important;
    color: #ffffff;
  }

.ligne-carriere-list-item .btn-box .btn:hover i{
    color: #ffffff;
  }


.custom-tag {
    padding: 5px 15px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
  }
  
  .custom-tag.success{
    background: linear-gradient(45deg,  #0d5c3f, var(--color-success));
    color: #ffffff;
  }
  
  .custom-tag.warning{
    background: linear-gradient(45deg,  var(--color-orange), var(--color-yellow));
    color: #1e1e1e;
  }
  
  .custom-tag.danger{
    background: linear-gradient(45deg, #ab0000, var(--color-red));
    color: #ffffff;
  }
  
  .custom-tag.blue, .custom-tag.primary{
    background: linear-gradient(45deg,  var(--color-dark-blue), var(--color-soft-blue));
    color: #ffffff;
  }
  

.page-header {
    height: 400px;
}

.page-header-alt {
    height: 250px;
    margin-bottom: 60px;
}
  
.page-header .page-title{
      opacity: 0.9;
      background: linear-gradient(90deg,#247c7f89, #00164706 );
     
      padding: 15% 20%;
      position: absolute;
      bottom: 0;
      height: 100%;
}

.login-layout .page-title{
    opacity: 0.9;
    background: linear-gradient(90deg, #001647df, #247c7fdd);
   
    padding: 5% 20%;
    position: absolute;
    bottom: 0;
    height: 100%;
}


.page-header-alt .page-title {
    opacity: 0.9;
    background: linear-gradient(90deg, #0a3256, #00164706);
    padding: 15% 20%;
    position: absolute;
    bottom: 0;
    height: 100%;
  }

.page-header .page-title h3, .page-header-alt .page-title h3, .login-layout .page-title h3{
      color: #fff;
      font-size: 54px;
      font-family: var(--konnect-bold);
}

.page-header.h300{
    height:  300px;
}

.page-header.h300 .page-title, .page-header-alt .page-title {
      padding: 5% 6%;
      color: #F1F1F1;
      font-size: 20px;
}

.page-header.h300 .page-title  h3, .page-header-alt .page-title  h3 {
      font-size: 46px;
}

.login-layout .page-title  h3{
    font-size: 30px;
}

img.cover {
    max-width: inherit;
}

.img-list-cover {
    object-fit: cover;
    width: 100%;
  }
  
  .bolder {
    font-weight: 800;
  }