:root{
    --blue: #1b3256;
    --light-blue: #dcecfa;
    --very-light-blue: #eef7ff;
    --contrast: #737373;
    --light-contrast: #afadad;
    --title-font:"Ubuntu", sans-serif;
    --subtitle-font:"Titillium Web", sans-serif;;
    --text-font:"Titillium Web", sans-serif;;
    --gray: #c0c0c0;
    --light-gray: #efefef;
}

/* GLOBAL */
body{
    font-family: var(--text-font);
    color: var(--contrast);
}
body a{
    color: var(--blue);
    text-decoration: none;
}

body a:hover{
    opacity: 0.95;
}
.relative{
    position: relative;
}

.absolute{
    position: absolute;
}

#main-container{
    flex-grow: 1;
    overflow: hidden;
}

.btn{
    border-radius: 2px;
    font-size: 1.2em;
}

.btn-blue, .btn-blue:hover, .btn-blue:active{
    background-color: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{
    color: #fff;
    background-color: var(--blue);
    border-color: var(--blue);
}

.btn-border-blue{
    border-color: var(--blue);
    color: #fff;
}

.btn.btn-xs{
    padding: .25rem .5rem;
    font-size: .75rem;
}

.h1, h1, .h1-home {
    color: var(--blue);
    font-family: var(--title-font);
    font-size: 2em;
    font-weight: normal;
}

.h2, h2{
    font-family: var(--subtitle-font);
    font-size: 2.2rem;
}

.text-blue{
    color: var(--blue);
}

.text-white{
    color: #fff;
}

.text-red{
    color: #a00;
}

.bg-light-blue{
    background-color: var(--light-blue);
}

.bg-very-light-blue {
    background-color: var(--very-light-blue);
}

.bg-blue, .bg-blue:hover{
    background-color: var(--blue);
}

.bg-black{
    background-color: #414a4c;
}

.bg-gray, .bg-gray:hover{
    background-color: var(--gray);
}

.bloc-full-width {
    width: 100%;
}

.triangle{
    position: relative;
    background: var(--blue);
}

.triangle::before{
    z-index: 1;
    content: '';
    position: absolute;
    top: -40px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 40px 40px 0 40px;
    border-color: #fff transparent transparent transparent;
    right: calc(50% - 80px);
    transform: translateX(-50%) translateY(100%);
}

.triangle-reverse{
    position: relative;
    background: var(--light-blue);
    padding-bottom: 60px;
}

.triangle-reverse::before{
    z-index: 1;
    content: '';
    position: absolute;
    bottom: -1px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 40px 50px 40px;
    border-color: transparent transparent #fff transparent;
    left: 50%;
    transform: translateX(-50%);
}
.services-bloc.triangle-reverse::before{
    left: calc(50% - 15px);
    border-color: transparent transparent #fff transparent;
}

.form-control:focus{
    border-color: transparent;
}

.hidden{
    display:none;
}
.uppercase{
    text-transform: uppercase;
}
b, strong{
    font-weight: 600;
}
/* END GLOBAL */

/* HEADER */


.main-header{
    background: var(--very-light-blue);
    min-height: 70px;
}
.main-header .navbar-brand{
    width: calc(100% - 116px);
}
header{
    background: linear-gradient(var(--blue), #ffffff);
    margin-bottom: 0;
}

header nav.navbar .nav-item a.nav-link{
    color: var(--blue);
    font-size: 1.1em;
    border-bottom: 2px solid transparent;
    transition: border-bottom-color 0.5s;
}
header nav.navbar .nav-item a.nav-link:hover{
    border-bottom-color: var(--blue);
}

header .navbar-toggler{
    right: 20px;
    position: absolute;
    top: 15px;
    border: none;
    font-size: 2em;
    color: var(--blue);
}

header .navbar-toggler:focus{
    outline: none;
}
header .header-cart{
    margin-right: 60px;
}
header .header-cart{
    position: relative;
    transition: transform 200ms;
}
header .header-cart .nb-cart-items{
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--blue);
    color: #fff;
    font-size: 10px;
    border-radius: 50%;
    right: 0;
    bottom: -5px;
    text-align: center;
    display: block;
    line-height: 20px;
}
header .header-cart:hover{
    transform: scale(1.2);
}
/* END HEADER */

/* HOME */
.services-bloc .card, .tarif-bloc .card{
    border: 0;
    border-radius: 0;
    margin: 20px;
    background: transparent;
}
.services-bloc .card-body{
    background: #fff;
    text-align: justify;
    margin-bottom: 10px;
}
.services-bloc .card-title, .ccm-bloc .card-title{
    font-size: 2em;
    line-height: 1em;
    color: var(--blue);
}
.services-bloc .card-text, .ccm-bloc .card-text{
    font-size: 1.3em;
    line-height: 1.3em;
    color: var(--blue);
}
.services-bloc svg path,
.services-bloc svg rect{
    stroke: var(--blue);
}

.ccm i{
    font-size:35px;
    border-radius: 50%;padding: 25px;
}
.home-description{
    font-size: 1.3em;
    font-weight: 300;
    color: var(--blue);
    line-height: 1.2em;
}
.btn-xxl{
    border-radius: 10px;
    font-size: 1.4em;
    transition: opacity 0.5s, transform 0.2s;
}

.btn-xxl:hover{
    opacity: 0.9;
    transform: scale(1.05);
}
.home-category img{
    width: 100%;
}
.home-category .home-category-title{
    font-size: 1.7em;
    font-weight: 300;
    color: var(--blue);
}
#how-it-works {
    padding-bottom: 160px !important;
    background: url('../images/home-arrow.svg') repeat-x center bottom ;
    background-size: auto;
    background-size: 80px auto;
    margin-bottom: 40px;
}

.tarif-bloc{
    background: var(--very-light-blue);
}
.tarif-bloc .card-header{
    background: var(--light-blue);
    border-bottom: none;
}
.tarif-bloc .card-header h3{
    font-size: 2em;
    line-height: 1em;
    color: var(--blue);
}
.tarif-bloc .card-body{
    background: #fff;
    font-size: 1.3em;
    line-height: 1.3em;
    color: var(--blue);
}
.tarif-bloc .card-body .price{
    font-size: 1.5em;
    line-height: 2em;
}
.tarif-bloc .card-body .list-group{
    margin: 0 10px;
}
.tarif-bloc .card-body .list-group .list-group-item{
    border-color: var(--blue);
    border-bottom-width: 2px;
}
.tarif-bloc .card-body .list-group .list-group-item:last-child{
    border-bottom-width: 0;
}
.home-special-content img{
    max-width: 100%;
}
/* END HOME */

/* FOOTER */

footer{
    background-color: #fff;
}

footer a{
    text-decoration: none;
    color: var(--blue);
    font-size: 1.3em;
}

footer ul li{
    list-style-type: none;
    position: relative;
}

footer .copyright{
    font-size: 14px;
    background: var(--blue);
    color: #fff;
}
footer .footer-title{
    color: var(--blue);
    font-size: 2em;
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 10px;
    position: relative;
}

footer .footer-title:after{
    content: "";
    display: block;
    position: absolute;
    width: 20%;
    left: 40%;
    height: 3px;
    background: var(--blue);
}
footer .footer-contact span{
    color: var(--blue);
    font-size: 1em;
    padding-left: 10px;
    line-height: 2em;
    display: inline-block;
}
footer .footer-contact .fa-solid{
    font-size: 1.5em;
    color: var(--blue);
    border: 1px solid var(--blue);
    border-radius: 50%;
    padding: 10px;
}
footer .footer-logo{
    width: auto;
    max-height: 200px;
    display: block;
    margin: auto;
}
/* END FOOTER */

/* PEDIGREE FORM */
.progress {
    box-sizing: border-box;
    border: none;
    height: 40px;
    background: #fff;
    width: 450px;
    max-width: 100%;
    position: relative;
}


.progress::before{
    font-size: 20px;
    padding: 8px 10px;
    display: block;
    height: 100%;
    background-color: var(--blue);
    color: #fff;
    float: left;
    z-index: 2;
    line-height: 22px;
}


.progressbar-value-1::before{
    content: "20%";
    width: 20%;
}

.progressbar-value-2::before{
    content: "40%";
    width: 40%;
}

.progressbar-value-3::before{
    content: "60%";
    width: 60%;
}

.progressbar-value-4::before{
    content: "80%";
    width: 80%;
}

.progressbar-value-5::before{
    content: "100%";
    width: 100%;
}

#step-1-form,
#step-2-form,
#step-3-form,
#step-4-form,
#step-5-form{
    padding: 30px;
}

#step-1-form .input-display,
#step-2-form .input-display,
#step-3-form .input-display,
#step-4-form .input-display,
#step-5-form .input-display{
    font-size: 18px;
    margin: 0 auto;
    padding: 8px;
    border: 1px solid var(--blue);
    border-radius: 5px;
    width: 100%;
    display: block;
    background-color: #fff;
}

#step-1-form .card,
#step-2-form .card,
#step-3-form .card,
#step-4-form .card,
#step-5-form .card{
    border: none;
    background: #fff;
    padding: 20px;
}

#step-1-form .card .c-header,
#step-2-form .card .c-header,
#step-3-form .card .c-header,
#step-4-form .card .c-header,
#step-5-form .card .c-header{
    font-size: 22px;
}
.c-header .form-label{
    font-weight: bold;
    color: var(--blue);
}

#step-1-form .error-message,
#step-2-form .error-message,
#step-3-form .error-message,
#step-4-form .error-message,
#step-5-form .error-message{
    font-size: 16px;
}

.livewire-liste{
    overflow: auto;
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    list-style-type: none;
    max-height: 150px;
    padding: 0;
    z-index: 10;
    box-shadow: rgba(0, 0, 0, 0.075) 0px 2px 4px 0px;
}

.livewire-liste li{
    cursor: pointer;
    padding: 10px 10px;
    background: #fff;
}
.livewire-liste li:hover{
    background-color: var(--blue);
    color: #fff;
}

.loading{
    position: relative;
}

.loading::after{
    content: "f110";
    position: absolute;
    left: 50%;
    font-size: 24px;
    color: #000;
}
/*.steps-menu ul li{
    width: 40px;
    height: 40px;
}

.steps-menu ul li:not(:last-child):after{
}

a.steps-link{
    cursor: pointer;
    text-decoration: none;
}*/
/* END PEDIGREE FORM */

/* PEDIGREE PAGE TELECHARGEMENT */

.pedigree-details .card > a{
    background-color: #fff;
    transition: background-color 500ms;
}

.pedigree-details .card svg path,
.pedigree-details .card svg rect{
    stroke: var(--blue);
    fill: var(--blue);
    transition: stroke 500ms;
}
.pedigree-details .card:hover svg path,
.pedigree-details .card:hover svg rect{
    stroke: #fff;
    fill: #fff;
}
.pedigree-details .card:hover > a{
    background-color: var(--blue);
}
.pedigree-details .card{
    border: none;
    border-radius: 0;
}

.pedigree-details .card .card-header{
    background: var(--blue);
    color: #fff;
    border-radius: 0;
    border: none;
}
.pedigree-details .card .card-header h2{
    font-size: 1.5em;
    text-transform: uppercase;
    font-weight: bold;
    margin: 0;
}
/* END PEDIGREE PAGE TELECHARGEMENT */
.modal-content{
    border-color: var(--blue);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}
.modal-header{
    background-color: var(--blue);
    color: #fff;
    font-weight: bold;
    padding: 10px 15px;
    border-bottom: 0;
}
.modal-header .btn-close{
    filter: invert(1);
    opacity: 1;
}
.modal-footer{
    background-color: #fff;
    padding: 10px 15px;
    border-top: 0;
    justify-content: center;
}
.modal-content .form-label{
    color: var(--blue);
}

/* DEVENIR MEMBRE */
.devenir-membre{
    border: 1px solid var(--blue);
    padding: 0;
    margin: 0 10px;
    background: #fff;
}

.devenir-membre .devenir-membre-title{
    background: var(--blue);
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    font-size: 2em;
    padding: 10px 0;
}
.devenir-membre .devenir-membre-logo{
    text-align: center;
}
.devenir-membre .devenir-membre-logo img{
    max-width: 100%;
    height: 170px;
}
.devenir-membre .devenir-membre-text{
    text-align: justify;
    font-size: 1.5em;
    padding: 10px 20px;
}
/* PANIER */
.cart-details table {
    border-collapse: separate;
    border-spacing: 8px;
}
.cart-details table th {
    background: var(--gray);
    border-radius: 10px;
    color: #fff;
    font-weight: normal;
    font-size: 1.4em;
    line-height: 1.3em;
    padding: 5px 10px;
}
.cart-details table td {
    background-color: transparent;
    border-bottom: 0;
    font-size: 1.2em;
}
.cart-details table button {
    background-color: transparent;
    border: none;
    transition: transform 200ms, color 200ms;
}
.cart-details table button svg path{
    stroke: var(--blue);
}
.cart-details table button:hover{
    transform: scale(1.2);
}

.cart-details table button:hover svg path{
    stroke: #aa0000;
}
.cart-resume .cart-payment-link{
    display: flex;
    border: 1px solid var(--blue);
    background-color: var(--blue);
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-size: 1.5em;
    font-weight: 600;
    padding: 10px 20px;
    text-decoration: none;
    line-height: 50px;
    justify-content: space-between;
}
.cart-resume .cart-payment-link svg{
    position: relative;
    top: -3px;
    transition: transform 200ms;
}
.cart-resume .cart-payment-link:hover svg{
    transform: translateX(10px);
}
.cart-resume .cart-resume-content{
    border: 1px solid var(--blue);
    padding: 10px 20px;
}
.cart-resume .cart-resume-content .cart-cgu{
    font-size: 1.3em;
    color: var(--blue);
    text-align: center;
    line-height: 1.2em;
    margin-bottom: 15px;
}
.cart-resume .cart-resume-content .cart-cgu a{
    font-weight: bold;
    text-decoration: none;
}
.cart-resume .cart-resume-content .cart-resume-title{
    font-weight: bold;
    font-size: 2em;
    text-align: center;
    color: var(--blue);
    text-transform: uppercase;
}
.cart-resume .cart-resume-content .cart-resume-amounts{
    border: 1px solid var(--gray);
    border-radius: 10px;
    padding: 5px 10px;
    font-weight: bold;
    margin-bottom: 10px;
}
.cart-resume .cart-resume-content .cart-resume-amounts .cart-resume-row{
    display: flex;
    justify-content: space-between;
    font-size: 1.7em;
    border-bottom: 1px solid var(--gray);
}

.cart-resume .cart-resume-content .cart-resume-amounts .cart-resume-row.nb-items,
.cart-resume .cart-resume-content .cart-resume-amounts .cart-resume-row.total{
    font-size: 2em;
    color: var(--blue);
    text-transform: uppercase;
}

.cart-resume .cart-resume-content .cart-resume-amounts .cart-resume-row.total{
    padding-top: 10px;
    border-bottom: none;
}
.cart-resume-content .cart-discount-section .input-group input.form-control{
    outline: none;
    box-shadow: none;
    border: 1px solid #6c757d;
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: rgb(108, 117, 125);
    border-right: none !important;
    margin-right: 1px;
}
.cart-resume-content .cart-discount-section .input-group .btn-outline-secondary{
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
/*
Tres petites tailles
 */
@media (max-width: 575px) {
    header .navbar-brand img{
        max-width: 80%;
        height: auto;
    }
}
/*
Tailles SM et plus
 */
@media (min-width: 576px) {
    header .navbar-brand img{
        height: 60px;
    }
    .bloc-full-width {
        position: relative;
        width: 200%;
        left: -50%;
    }
    .services-bloc svg {
        width: 12.5% !important;
    }
}
/*
Tailles MD et plus
 */
@media (min-width: 768px) {

    .h1, h1, .h1-home{
        font-size: 2.5em;
    }
    .home-description {
        font-size: 1.5em;
    }
    .services-bloc .card-title, .ccm-bloc .card-title {
        font-size: 2.2em;
    }
    .services-bloc .card-text, .ccm-bloc .card-text {
        font-size: 1.5em;
    }
    .tarif-bloc .card-header h3{
        font-size: 2.2em;
    }
    footer .footer-contact .fa-solid{
        font-size: 1em;
    }
    footer a{
        font-size: 1em;
    }
}
/*
Tailles LG et plus
 */
@media (min-width: 992px) {
    .main-header .navbar-brand {
        width: auto;
    }
    header .header-cart {
        margin-right: 0;
    }
    .btn-xxl{
        font-size: 1.7em;
    }
    .services-bloc .card-body{
        min-height: 470px;
    }
    .services-bloc svg {
        width: 25% !important;
    }
    .triangle::before {
        top: -80px;
        border-width: 80px 60px 0 60px;
        right: 25%;
    }
    .triangle-reverse::before{
        border-width: 0 60px 80px 60px;
        left: 25% !important;
    }
    .triangle-reverse{
        padding-bottom: 0;
    }

    footer .footer-contact .fa-solid{
        font-size: 1.3em;
    }
    footer .footer-contact span {
        font-size: 1.15em;
    }
    footer a{
        font-size: 1.15em;
    }
}
/*
Tailles XL et plus
 */
@media (min-width: 1200px) {
    header .navbar-brand img{
        height: 80px;
    }
    header nav.navbar .nav-item a.nav-link{
        font-size: 1.3em;
    }
    .h1, h1, .h1-home{
        font-size: 3.5em;
    }
    .home-description {
        font-size: 1.7em;
    }
    .btn-xxl{
        font-size: 2em;
    }
    .services-bloc .card-title, .ccm-bloc .card-title {
        font-size: 2.8em;
    }
    .services-bloc .card-text, .ccm-bloc .card-text {
        font-size: 1.7em;
    }

    .tarif-bloc .card-header{
        min-height: 120px;
    }
    .tarif-bloc .card-header h3{
        font-size: 2.8em;
    }
    .tarif-bloc .card-body .price {
        font-size: 2em;
    }
    .tarif-bloc .card-body {
        font-size: 1.7em;
    }

    footer .footer-contact .fa-solid{
        font-size: 1.5em;
    }
    footer .footer-contact span {
        font-size: 1.3em;
    }
    footer a{
        font-size: 1.3em;
    }

    footer ul li:before{
        content: "";
        color: var(--blue);
        font-size: 1.3em;
        left: -5px;
        position: absolute;
        border-radius: 50%;
        width: 7px;
        height: 7px;
        background: var(--blue);
        top: calc(50% - 2px);
    }
}
/*
Tailles XXL et plus
 */
@media (min-width: 1400px) {
    .services-bloc .card-title, .ccm-bloc .card-title {
        font-size: 3em;
    }

    .tarif-bloc .card-header h3{
        font-size: 3em;
    }
}
