/*****************************************************  */
/* global */
/*****************************************************  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    width: 100vw;
    overflow-x: auto;
    overflow-y: scroll;
    background: #f5f5f9;
    max-width: 100%;
}
h1 {
    font-size: 2rem;
}
h2 {
    font-size: 1.5rem;
    /*background-color: #0e715e;*/
    color: #0e715e;
    font-weight: bold;
    text-decoration: underline;
    /*padding: 5px 10px;*/
    /*width: max-content;*/
}

a {
    text-decoration: none;
    color: inherit;
}


footer {
    background-color: #e2e2e2;
    color: #212121d4;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-size: 13px;
    width: 100%;
}

footer .left {
    max-width: 800px;
    min-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer .left .top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 14px;
    width: 100%;
}

footer .left .top .item {
    cursor: pointer;
    color: #1a1a1a;
}

footer .left .bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 9px;
    width: 100%;
}

footer .separation {
    padding-left: 5px;
    padding-right: 5px;
}

/*footer .left .bottom .item {*/
/*    padding-left: 5px;*/
/*}*/

footer .left .bottom .item a {
    color: inherit;
    text-decoration: none;
}

.logoGDS {
    max-height: 80px
}

.firstConnexion {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: #a02b84;
    padding: 20px;
    text-align: center;
    max-width: 255px;
    border-radius: 5px;
}

.fosterContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
}

.fosterContainer .separator {
    font-size: 18px;
    margin: 15px;
    width: 15px;
}

.fosterRegister {
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 255px;
    padding: 20px;
    border-radius: 5px;
    background-color: #0078bc;
    font-size: 15px;

}

.fosterRegister.light {
    color: #3a3a3a;
    background-color: transparent;
    max-width: none;
    font-size: 16px;
}

.fosterRegister.text {
    max-width: min(950px, 100%);
}

.fosterRegister.light a {
    color: #003d77;
    margin-top: 5px;
}

.fosterRegister .foster {
    max-width: min(100%, 500px);
}

.fosterRegister a {
    font-weight: 500;
    text-decoration: underline;
}

.instructions {
    font-size: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.instructions .text {
    text-align: center;
}

.instructions .list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 10px;
}

.instructions .list .item {
    font-size: 13px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.instructions .list .item.ok {
    color: #55B074;
}

.instructions .checkedBox svg path {
    stroke: #55B074 !important;
}

.instructions .list .item .checkedBox {
    margin-right: 7px;
    visibility: hidden;
    transition: 0.2s ease-in;
}

.instructions .list .item.ok .checkedBox {
    visibility: visible;
}

/*****************************************************  */
/* dropdown */
/*****************************************************  */

.dropdownParent {
    position: relative;
}

.dropdownStructure {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0px 5px 25px 0px rgba(45, 46, 92, 0.15);
    border-radius: 6px;
    padding: 10px;
    transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease, height 1s ease;
    transform: translateY(0);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    height: 0;
}

.dropdownStructure ul {
    padding: 0;
    margin: 0;
}

.dropdownStructure li {
    list-style: none;

    transition: all 0.1s ease;
}

.dropdownStructure li:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.dropdownStructure li a {
    padding: 4px 15px;
    cursor: pointer;
    display: block;
}

.dropdownParent.active .dropdownStructure {
    transform: translateY(calc(100% + 15px));
    opacity: 1;
    visibility: visible;
    height: auto;
    width: max-content;
}
.dropdownCall {
    cursor: pointer;
}

.cardAdhesion {
    cursor: pointer;
    border: 1px solid rgba(9, 45, 118, 0.5);
    border-radius: 5px;
}
.cardNom {
    padding: 10px;
    background-color: #092d76;
    opacity: 0.7;
    text-align: center;
    font-weight: bold;
    color: white;
}
.cardAdhesion .active {
    opacity: 1;
}
.cardNom:hover {
    opacity: 1;
}
.cardPrice {
    padding: 10px;
    background-color: white;
    text-align: center;
    font-weight: bold;
    border-radius: 5px;
}
.inputRuches {
    text-align: center;
    width: 100%;
}
.inputRuches::-webkit-input-placeholder {
    text-align: center;
}

.inputRuches:-moz-placeholder {
    text-align: center;
}

@media screen and (max-width: 991px) {
    footer .left {
        flex-direction: column;
    }
    footer .left .top, footer .left .bottom {
        flex-direction: column;
        align-items: center;
    }
    footer .separation {
        display: none;
    }
    .fosterContainer {
        flex-direction: column;
    }
    .logoGDS {
        max-height: 60px
    }
}
