:root{
    --zv-primary: rgb(51,108,122);
    --zv-primary-hover: #339EB1;
    --zv-secondary: #FF6700;
    --zv-secondary-hover: #FF832F;
    --zv-third: #339EB1;
    --zv-third-light: #34DCF2;
    --kt-secondary: #FF6700;
}

.text-primary {
    color: var(--zv-primary) !important;
}

.text-secondary {
    color: var(--zv-secondary) !important;
}

.text-third-light {
    color: var(--zv-third-light) !important;
}

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

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.align-justify {
    text-align: justify;
}

.py-30 {
    padding-top: 100px;
    padding-bottom: 100px;
}

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

.border-white {
    border: 1px solid white;
}

.border-primary {
    border: 1px solid var(--zv-primary);
    border-color: var(--zv-primary) !important;
}

.fs-44px {
    font-size: 44px;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    display: block !important;
    background-color: white;
}

a {
    color: var(--zv-primary);
}

p {
    font-size: 14px;
}

#zv-navbar {
    background-color: var(--zv-primary);
    border-bottom: 1px solid white;
    width: 100%;
    height: 60px;
}

#zv-navbar .container {
    height: 60px;
}

#zv-navbar img.logo {
    height: 38px;
}

#zv-navbar nav ul {
    list-style-type: none;
    margin: 0;
    padding-top: 5px;
}

#zv-navbar nav ul li {
    display: inline-block;
    margin-left: 40px;
    position: relative;
}

#zv-navbar nav ul li a {
    display: block;
    float: left;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding-top: 20px;
    padding-bottom: 20px;
}

#zv-navbar nav ul li a:hover {
    color: #59d9ef;
}

#zv-navbar nav ul li ul {
    display: none;
    position: absolute;
    top: 60px;
    left: -20px;
    background-color: var(--zv-primary);
    border: 1px solid white;
    border-top: 0;
    min-width: 160px;
    padding: 10px 20px;
    z-index: 1;
}

#zv-navbar nav ul li ul li {
    margin: 0;
    white-space: nowrap;
    padding-top: 2px;
    padding-bottom: 2px;
}

#zv-navbar nav ul li ul li a {
    font-size: 12px;
    padding: 0;
}

#zv-navbar nav ul li:hover ul {
    display: block;
}

#home-header {
    background-image: url("/assets/media/zv-home-bg.jpg");
    background-size: cover;
    height: calc(100vh - 60px);
}

#home-header h1 {
    font-size: 44px;
    font-weight: bold;
    max-width: 57%;
}

.blur-bg {
    background-color: rgba(255, 255, 255, .9);
    border-radius: 4px;
    padding: 15px;
    width: fit-content;
}

@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
    .blur-bg {
        background-color: rgba(255, 255, 255, .65);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
}

.input-white label {
    display: flex;
    background-color: white;
    padding: 15px 20px;
    border-radius: 4px;
    gap: 10px;
    border: 1px solid white;
}

.input-white label:hover {
    border: 1px solid var(--zv-primary);
}

.input-white input {
    background-color: white;
    border: none;
    appearance: none;
    outline: none;
    font-style: italic;
}

.input-white input::placeholder {
    color: black;
}

.input-primary label {
    display: flex;
    background-color: var(--zv-primary);
    color: white;
    padding: 15px 20px;
    border-radius: 4px;
    gap: 10px;
    border: 1px solid white;
}

.input-primary input {
    background-color: var(--zv-primary);
    color: white;
    border: none;
    appearance: none;
    outline: none;
    font-style: italic;
    flex-grow: 1;
    text-align: left;
}

.input-primary input::placeholder {
    color: white;
}

button {
    background-color: var(--zv-primary);
    color: white;
    padding: 15px 40px;
    border-radius: 4px;
    border: none;
    appearance: none;
    font-size: 14px;
    font-weight: 500;
}

button:hover {
    background-color: var(--zv-primary-hover);
}

button.btn-sm {
    padding: 8px 12px;
    font-size: 12px;
}

button.type-bordered {
    background-color: transparent;
    border: 1px solid white;
    border-radius: 4px;
}

button.type-bordered:hover {
    background-color: #FFFFFF33;
}

button.type-bordered-primary {
    background-color: transparent;
    border: 1px solid var(--zv-primary);
    color: var(--zv-primary);
    border-radius: 4px;
}

button.type-bordered-primary:hover {
    background-color: rgb(51 108 122 / 17%);
}

button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.cursor-pointer label {
    cursor: pointer !important;
}

.header-button {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 15px 20px;
    border-radius: 4px;
    gap: 10px;
    cursor: pointer;
    border: 1px solid white;
}

.header-button:hover {
    border: 1px solid var(--zv-primary);
}

.header-button .right {
    display: flex;
    flex-direction: column;
}

.header-button .right .sous-title {
    color: var(--zv-primary);
    font-size: 12px;
    font-style: italic;
}

.header-button .right .titre {
    font-size: 14px;
    font-weight: 500;
}

#home-partners img {
    max-height: 150px;
    max-width: 250px;
}

#help-coach {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999;
}

#help-coach .step-0 {
    background-color: var(--zv-secondary);
    padding: 10px 15px;
    border-radius: 10px;
    color: white;
    font-size: 14px;
    line-height: 14px;
}

#help-coach .step-0:hover {
    background-color: var(--zv-secondary-hover);
}

#help-coach .step {
    position: relative;
    max-height: 0;
    max-width: 0;
    padding: 0;
    overflow: hidden;
    transition: max-height 1s cubic-bezier(0, 1, 0, 1);
}

#help-coach .close {
    background-color: var(--zv-primary);
    position: absolute;
    bottom: -15px;
    right: -15px;
    padding: 10px;
    border-radius: 300px;
    cursor: pointer;
}

#help-coach .expand {
    background-color: var(--zv-primary);
    position: absolute;
    bottom: 32px;
    right: -10px;
    padding: 5px 10px;
    border-radius: 300px;
    cursor: pointer;
    transform: rotateY(3.142rad);
}

#newsletter-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    position: fixed;
    right: -90px;
    top: 50%;
    background-color: var(--zv-primary);
    border: 1px solid var(--zv-third);
    padding: 12px 15px;
    border-radius: 10px 0 0 10px;
    transition: all 0.3s ease-in-out;
    z-index: 9999;
    color: white;
    font-weight: 600;
}

#newsletter-btn:hover {
    right: -1px;
}

#footer-nav {
    border-top: 1px solid white;
}

footer a {
    color: white !important;
}

.social-icon {
    background-color: white;
    border-radius: 30px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    fill: var(--zv-primary);
}

.footer-nav-item {
    padding-right: 40px;
    border-right: 1px solid white;
}

.footer-nav-item ul {
    list-style-type: none;
}

.footer-nav-item ul a {
    font-size: 13px;
    line-height: 30px;
}

.slide-home-container {
    width: 100%;
    overflow: hidden;
    height: 300px;
}

.slider-home-item-container {
    width: 300px;
    height: 300px;
    padding-left: 10px;
    padding-right: 10px;
}

.slider-home-item {
    background-color: white;
    border: 1px solid var(--zv-third-light);
    border-radius: 10px;
    overflow: hidden;
}

.slider-home-item-img {
    background-size: cover;
    width: 100%;
    height: 240px;
}

.slider-home-item-text {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
    color: black;
    max-width: 175px;
    margin: auto;
    text-align: center;
}

.page_header {
    background-image: url("/assets/media/zv-home-bg.jpg");
    background-size: cover;
    background-position: center center;
    height: 250px;
    width: 100%;
    position: relative;
}

.page_header-overlay {
    height: 250px;
    width: 100%;
    background-color: var(--zv-third-light);
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
}

.page_header-content {
    height: 250px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    color: white;
}

.page_header-content .breadcrumb {
    margin-top: 40px;
    font-size: 13px;
    font-weight: 500;
    color: white;
}

.page_header-content .title {
    margin-top: 30px;
    font-size: 44px;
    font-weight: 600;
}

.page_header_salamander, .page_header_salamander .container {
    min-height: 250px;
    position: relative;
}

.breadcrumb {
    margin-top: 40px;
    font-size: 13px;
    font-weight: 500;
    color: #7E7E7E;
}

.page_header_salamander .page_header_salamander_logo {
    background-image: url("/assets/media/salamender-header-logo.png");
    height: 393px;
    width: 473px;
    position: absolute;
    right: -65px;
    bottom: -110px;
}

.primary-card {
    background-color: var(--zv-primary);
    border-radius: 10px;
    padding: 25px;
    color: white;
}

.separator-third {
    height: 1px;
    width: 100%;
    background-color: var(--zv-third);
}

.zv-tab-item {
    border: 1px solid var(--zv-primary);
    color: var(--zv-primary);
    border-radius: 5px;
    padding: 15px 125px 15px 20px;
    position: relative;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 15px;
    min-height: 74px;
    display: flex;
    align-items: center;
}

.zv-tab-item:hover {
    color: var(--zv-primary);
}

.zv-tab-item-arrow {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.zv-tab-item.active {
    background-color: var(--zv-primary);
    color: white;
}

.zv-tab-item.active .zv-tab-item-arrow path {
    stroke: white;
}

.zv-button-list-item {
    border: 1px solid white;
    color: white;
    border-radius: 5px;
    padding: 15px 125px 15px 20px;
    position: relative;
    font-size: 14px;
    cursor: pointer;
    min-height: 74px;
    display: flex;
    align-items: center;
}

.zv-button-list-item-arrow {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.zv-button-list-item path {
    stroke: white;
}

.zv-button-list-item:hover {
    background-color: var(--zv-primary-hover);
}

.zv-tab-content-card {
    border: 1px solid var(--zv-primary);
    border-radius: 15px;
    width: 100%;
    padding: 25px 30px;
    margin-bottom: 15px;
}

.card-third {
    background-color: rgba(52,220,242,0.1);
    border-radius: 10px;
    padding: 30px 100px;
    width: 100%;
    text-align: center;
    font-size: 15px;
}

.zv-price-info {
    background-color: white;
    border: 1px solid var(--zv-primary);
    border-radius: 10px;
    padding: 25px;
    min-height: 300px;
    width: fit-content;
    min-width: 200px;
    position: relative;
}

.zv-price-info .price {
    text-align: center;
    color: var(--zv-third-light);
    font-weight: 600;
    font-size: 38px;
}

.zv-price-info .price-item {
    display: flex;
    gap: 10px;
    align-items: start;
    margin-bottom: 12px;
}

.zv-price-info .price-item .title {
    padding-top: 2px;
}

.zv-price-info .discount {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 67px;
    height: 67px;
    background-color: var(--zv-secondary);
    color: white;
    border-radius: 300px;
    padding: 20px 12px;
    font-size: 18px;
    font-weight: 600;
}

.speciality_top_letter {
    border-top: 2px solid var(--zv-third);
    margin-top: 40px;
    max-height: 45px;
}

.speciality_top_letter_text {
    background-color: var(--zv-primary);
    color: var(--zv-third);
    font-size: 38px;
    font-weight: 400;
    padding-right: 10px;
    transform: translateY(-50%);
    width: fit-content;
}

.partner-card {
    border: 1px solid var(--zv-primary);
    border-radius: 10px;
    padding: 15px 20px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.avatar img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 300px;
    background-color: white;
}

.avatar.large img {
    width: 85px;
    height: 85px;
}

.avatar.extralarge img {
    width: 100px;
    height: 100px;
}

.partner-fiche-card {
    border: 1px solid var(--zv-primary);
    border-radius: 15px;
    padding: 20px 25px;
    margin-bottom: 15px;
}

.partner-fiche-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    margin-bottom: 15px;
}

.partner-fiche-card p {
    font-size: 14px;
}

.partner-tag {
    background-color: #EAFCFE;
    border-radius: 5px;
    padding: 10px 15px;
}

.partner-fiche-mediatheque {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.partner-fiche-mediatheque a {
    width: 25%;
}

.partner-fiche-mediatheque img {
    width: 100%;
    height: 126px;
    border-radius: 10px;
    object-fit: cover;
}

.stepper {
    max-width: 850px;
    padding-bottom: 30px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stepper_item {
    position: relative;
}

.stepper_item_text {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    text-align: center;
    color: #C1C1C1;
    font-weight: 600;
}

.stepper_item.active .stepper_item_text {
    color: var(--zv-primary);
}

.stepper_item.active circle#Ellipse_22, .stepper_item.active path#Icon_material-account-circle {
    fill: var(--zv-primary);
}

.stepper_separator {
    background-color: #C1C1C1;
    height: 1px;
    flex: 1;
}

.stepper_separator.active {
    background-color: var(--zv-secondary);
}

.zv-form .form-group {
    margin-bottom: 20px;
}

.zv-form label {
    color: #7E7E7E;
    margin-bottom: 5px;
}

.zv-form input {
    border-color: var(--zv-primary);
    color: var(--zv-primary);
}

.zv-form input::placeholder {
    color: var(--zv-primary);
}

.zv_form_tab {
    display: flex;
    margin-bottom: 25px;
}

.zv_form_tab_item {
    flex: 1;
    color: #7E7E7E;
    border-bottom: 2px solid #C1C1C1;
    padding-bottom: 10px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
}

.zv_form_tab_item.active {
    color: var(--zv-primary);
    border-color: var(--zv-primary);
    font-weight: 600;
}

.zv_board_rdv {
    background-color: #f6f6f6;
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.zv_board_rdv.third {
    background-color: rgba(52,220,242,0.1);
}

.zv_board_rdv.danger {
    background-color: rgba(255,103,0,0.1);
}

.tablet-display-block {
    display: none;
}

.nav-display-block {
    display: none;
}

.pageContent p {
    word-break: break-word;
}

.icon-bg-secondary {
    background-color: var(--zv-secondary);
    width: 50px;
    height: 50px;
    border-radius: 100px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-bg-secondary svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.icon-bg-white {
    background-color: white;
    width: 45px;
    height: 45px;
    border-radius: 100px;
    color: var(--zv-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-bg-white svg {
    width: 25px;
    height: 25px;
    fill: var(--zv-secondary);
}


@media screen and (max-width: 1400px) {
    #zv-navbar .container {
        max-width: 100% !important;
        padding-left: 40px;
        padding-right: 40px;
    }
}

.nav-mobile-only {
    display: none !important;
}

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

    #zv-navbar nav {
        background-color: var(--zv-primary);
        position: absolute;
        left: 0;
        top: 60px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.8s ease-in-out;
        z-index: 9990;
    }

    #zv-navbar nav ul {
        padding: 40px;
    }

    #zv-navbar nav ul li {
        padding-top: 5px;
        padding-bottom: 5px;
        width: 100%;
    }

    #nav-mobile-toggle:hover nav {
        max-height: 100vh;
    }

    #zv-navbar nav ul li a {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .nav-mobile-only {
        display: inline-block !important;
    }

    .nav-desktop-only {
        display: none !important;
    }
}

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

    .tablet-display-none {
        display: none !important;
    }

    .tablet-display-block {
        display: block;
    }

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

    #home-header .container {
        padding-left: 0;
        padding-right: 0;
    }

    #home-header h1 {
        max-width: 100%;
    }

    #home-conseils {
        overflow-x: scroll;
        width: 100%;
        border-radius: 10px 0 0 10px;
    }

    #home-conseils .header-button {
        white-space: nowrap;
    }
}

.mobile-display-block {
    display: none;
}

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

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .mobile-display-block {
        display: block;
    }

    .mobile-display-none {
        display: none !important;
    }

    .mobile-text-left {
        text-align: left !important;
    }

    .mobile-text-center {
        text-align: center !important;
    }

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

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

    .mobile-image-80 {
        max-width: 80%;
        margin: auto;
        display: block;
    }

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

    .mobile-flex-100 {
        flex: 0 0 100% !important;
    }

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

    .mobile-flex-column-reverse {
        flex-direction: column-reverse !important;
    }

    .mobile-remove-sticky {
        position: relative !important;
    }

    .mobile-gap-10 {
        gap: 10px !important;
    }

    #home-header {
        padding-left: 40px;
    }

    #home-header h1 {
        font-size: 30px;
        padding-right: 40px;
    }

    #home-partners {
        flex-wrap: wrap;
    }

    #home-partners img {
        max-height: 125px;
        max-width: 150px;
    }

    #footer-nav {
        overflow: hidden;
    }

    #help-coach {
        border-radius: 60px;
    }

    .fs-44px {
        font-size: 34px;
    }

    .footer-nav-item {
        border-right: 0;
        border-bottom: 1px solid white;
        margin-top: 10px;
        padding-bottom: 10px;
    }

    .footer-nav-item ul {
        padding: 0;
    }

    .partner-card {
        width: 100%;
        flex-direction: column;
    }

    .page_header .title {
        font-size: 34px;
    }

    #input-global-search {
        min-width: auto !important;
    }

    .partner-fiche-mediatheque a {
        width: 45%;
    }

}

ul.breadcrumb {
    list-style: none;
    font-size: 11px;
}

ul.breadcrumb li {
    display: inline;
}

ul.breadcrumb li+li:before {
    padding-left: 8px;
    padding-right: 5px;
    color: black;
    content: "/\00a0";
}
