:root{
    --blue: #3400C8;
    --green: #0de3b0;
    --light-green: #d4faf1;
    --gray: #c0c0c0;
    --light-gray: #efefef;
}

/* GLOBAL */
.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-green, .btn-green:hover, .btn-green:active{
    background-color: var(--green);
    border-color: var(--green);
    color: #fff;
}
.btn.btn-xs{
    padding: .25rem .5rem;
    font-size: .75rem;
}

.h1, h1{
    font-size: 1.7rem;
}

.h2, h2{
    font-size: 2.2rem;
}

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

.text-green{
    color: var(--green);
}

.text-white{
    color: #fff;
}

.text-red{
    color: #a00;
}

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

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

.bg-green-special{
    background-image: radial-gradient(var(--green) 1px, transparent 1px), radial-gradient(var(--green) 1px, transparent 1px);
    background-size: 12px 12px;
    background-position: 0 0, 6px 6px;
    background-color: var(--light-green);
}

.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 {
    position: relative;
    width: 200%;
    left: -50%;
}

.triangle{
    position: relative;
    background: var(--blue);
}

.triangle::before{
    z-index: 1;
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 60px 60px 0 60px;
    border-color: var(--blue) transparent transparent transparent;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
}

.triangle-reverse{
    position: relative;
    background: var(--light-green);
}

.triangle-reverse::before{
    z-index: 1;
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 60px 60px 60px;
    border-color: transparent transparent var(--blue) transparent;
    left: 50%;
    transform: translateX(-50%);
}

.curved{
    position: relative;
    background: #fff;
    height: 100px;
    border-bottom-left-radius: 50% 50%;
    border-bottom-right-radius: 50% 50%;
    box-shadow: 0px -10px 10px #cccccc7d inset;
    margin-bottom: 16px;
}

.home .curved{
    background: #fff;
}

.curved-reverse{
    position: relative;
    background: linear-gradient(var(--green), #ffffff);
    height: 125px;
}

.curved-reverse::after{
    content: '';
    border-top-left-radius: 25% 100%;
    border-top-right-radius: 25% 100%;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #fff;
    height: 25%;
}

.form-control:focus{
    border-color: transparent;
}

.hidden{
    display:none;
}

/* END GLOBAL */

/* HEADER */
header{
    background: linear-gradient(var(--green), #ffffff);
    margin-bottom: 20px;
}

header nav.navbar .nav-item a.nav-link{
    color: var(--blue);
    font-weight: bold;
}

header .navbar-toggler{
    right: 0;
    position: absolute;
    top: 7px;
    border: none;
}

header .navbar-toggler:focus{
    outline: none;
}
/* END HEADER */

/* HOME */
.services-bloc .card, .tarif-bloc .card{
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: 12px 12px 8px -5px #00ce9daa;
    -moz-box-shadow: 12px 12px 8px -5px #00ce9daa;
    box-shadow: 12px 12px 8px -5px #00ce9daa;
    margin: 20px;
}

.ccm i{
    font-size:35px;
    border-radius: 50%;padding: 25px;
}
/* END HOME */

/* FOOTER */

footer{
    background-color: #fff;
}

footer a{
    text-decoration: none;
    color: #000;
    font-size: 16px;
}

footer ul li{
    list-style-type: none;
}

footer .copyright{
    font-size: 14px;
}
/* END FOOTER */

/* PEDIGREE FORM */
.progress {
    box-sizing: border-box;
    border: solid 1px var(--green);
    height: 40px;
    background: #fff;
    width: 400px;
    max-width: 100%;
    position: relative;
}


.progress::before{
    font-size: 20px;
    padding: 8px 5px;
    display: block;
    height: 100%;
    background-color: var(--green);
    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: 2px solid #000;
    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: 1px solid var(--green);
    background: linear-gradient(#fff, var(--light-green));
    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;
}

#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(--green);
    color: #fff;
}

.loading{
    position: relative;
}

.loading::after{
    content: "f110";
    position: absolute;
    left: 50%;
    font-size: 24px;
    color: #000;
}
.list-group-item-green{
    background-color: var(--green);
}
/*.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 */
#link-pedigree-consult:hover #consulter-en-ligne-img path,
#link-pedigree-genealogy:hover #arbre-genealogique-img path,
#link-pedigree-synthetic:hover #pedigree-synthetique-img path,
#link-pedigree-synthetic:hover #pedigree-synthetique-img #Rectangle-path rect,
#link-pedigree-synthetic:hover #pedigree-synthetique-img #Rectangle-path_1 rect,
#link-pedigree-synthetic:hover #pedigree-synthetique-img #Rectangle-path_2 rect,
#link-pedigree-full:hover #pedigree-complet-img path{
    stroke: var(--green);
}
/* END PEDIGREE PAGE TELECHARGEMENT */
.modal-content{
    border-color: var(--green);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}
.modal-header{
    background-color: var(--green);
    color: #000;
    font-weight: bold;
    padding: 10px 15px;
    border-bottom: 0;
}
.modal-footer{
    background-color: var(--light-green);
    padding: 10px 15px;
    border-top: 0;
}
