/*****************************************************  */
/* 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 {
    color: #003d77;
    font-weight: 300;
    font-size: 2.5em;
}

.pageCanva {
    min-height: calc(100vh - 70px);
    width: 100%;
    padding: 59px 3% 3% 3%;
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
    /*align-items: center;*/
}


.uppercase {
    text-transform: uppercase;
}

.blue {
    color: #003d77 !important;
}

.grey {
    color: gray !important;
}

.bgTransparent {
    background-color: transparent;
}

.bgWhite {
    background-color: white;
}

.bgGrey {
    background-color: #cccccc;
}

.bgLightGrey {
    background-color: #F2F2F2;
}

.bold {
    font-weight: bold;
}

.bolder {
    font-weight: bolder;
}

.italic {
    font-style: italic;
}

.underline {
    position: relative;
}

.underline::after {
    position: absolute;
    background-color: #1a1a1a;
    width: 100%;
    height: 1px;
    bottom: 2px;
    right: 0;
    content: "";
}

.relative {
    position: relative;
}

.underlineBlue::after {
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 2px;
    right: 0;
    content: "";
    background-color: #003d77;
}

.underlineGrey::after {
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 2px;
    right: 0;
    content: "";
    background-color: #9d9b9b;
}

.underlineWhite::after {
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 2px;
    right: 0;
    content: "";
    background-color: #ffffff;
}

.dark {
    font-weight: 600;
}

.capitalize {
    text-transform: capitalize;
}

.pageTitle {
    padding-top: 20px;
    margin-bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(1.9375rem, 1.825rem + 0.5625vw, 2.5rem);
    text-align: center;
}

.urTitle {
    font-size: 20px;
}

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

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

.d-block {
    display: block !important;
}

.visible {
    opacity: 1 !important;
}

.pagination {
    display: flex;
    /*margin-top: 20px;*/
    /*margin-bottom: 30px;*/
}

.pagination li {
    list-style: none;
    color: #3a3a3a;
    margin: 0 3px;
    padding: 5px;
    font-size: 18px;
}

.pagination li.disabled {
    color: #9a9a9a;
}

.pagination li.active {
    color: #003d77;
    font-weight: 500;
}

.pointer {
    cursor: pointer;
}

.primary {
    background-color: #003d77 !important;
    color: white;
}

.success {
    background-color: #38a449 !important;
    color: white;
}

.danger {
    background-color: #ce5b5b !important;
    color: white;
}

.attention {
    background-color: #e08a15 !important;
    color: white;
}

.accountColor {
    background-color: #58151c;
    color: #fff;
}

.btnNormal {
    font-size: 0.9rem !important;
    display: block;
    text-align: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
    border: none;
    width: max-content;
}

.btnSmall {
    font-size: 0.7rem !important;
    display: block;
    text-align: center;
    width: max-content !important;
    height: max-content !important;
    min-height: 28px;
}

.btnCard {
    font-size: 0.8rem !important;
    display: block;
    text-align: center;
    padding: 5px;
    background-color: #003d77;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

/* laravel > 5.1  */
.pagination nav {
    flex-direction: column;
    margin: auto;
}


.pagination nav div:nth-child(2) div:nth-child(1) {
    display: none;
}

.pagination nav div:nth-child(2) div:nth-child(2) span:nth-child(1) {
    display: flex;
}

.pagination nav div:nth-child(2) div:nth-child(2) span:nth-child(1) svg {
    height: 30px;
}

.pagination nav div:nth-child(2) div:nth-child(2) span:nth-child(1) > a, .pagination nav div:nth-child(2) div:nth-child(2) span:nth-child(1) > span {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 10px;
}

.infoSuccess {
    background-color: #a3cfbb;
    color: #0a3622;
    padding: 20px;
    width: max-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: fixed;
    display: none;
}

.previousPage {
    margin-left: 25px;
}

.rowForColumns {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

.column50 {
    width: 50%;
}

.small {
    font-size: 0.9rem;
}

.fs07rem {
    font-size: 0.7rem;
}

.fsLarge {
    font-size: large
}

.fs2rem {
    font-size: 2rem;
}

.fs1rem {
    font-size: 1rem;
}

.fs10px {
    font-size: 10px;
}

.fs12px {
    font-size: 12px;
}

.fs13px {
    font-size: 13px;
}

.fs14px {
    font-size: 14px;
}

.fs15px {
    font-size: 15px;
}

.fs18px {
    font-size: 18px;
}

.fs20px {
    font-size: 20px;
}

.btnRegister {
    font-size: 0.9rem;
    display: block;
    text-align: center;
    width: 300px;
    border-radius: 5px;
    padding: 20px 0;
    margin: 10px auto;
    cursor: pointer;
    border: none;
}

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

.flexWrap {
    flex-wrap: wrap;
}

.flex, .d-flex {
    display: flex;
}

.flex-1 {
    flex: 1;
}

.flex-2 {
    flex: 2;
}

.flex-3 {
    flex: 3;
}

.center {
    justify-content: center !important;
    align-items: center !important;
}

.items-center {
    justify-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.justify-around {
    justify-content: space-around;
}

.align-start {
    align-items: flex-start !important;
}

.align-center {
    align-items: center !important;
}

.justify-start {
    justify-content: flex-start !important;
}

.justify-end {
    justify-content: flex-end !important;
}

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

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

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

.statutClub.green {
    background-color: #99d59a !important;
}

.statutClub.orange {
    background-color: #e28a2d !important;
}

.statutClub.yellow {
    background-color: #f1e205 !important;
}

.statutClub {
    padding: 5px 10px;
    /*margin-bottom: 20px;*/
    background-color: #7c7b7b;
    display: flex;
    justify-content: center;
    margin-right: 10px;
    border-radius: 5px;
}

.m0 {
    margin: 0 !important;
}

.m10 {
    margin: 10px;
}

.ml0 {
    margin-left: 0 !important;
}

.ml5 {
    margin-left: 5px;
}

.ml40 {
    margin-left: 40px;
}

.ml50 {
    margin-left: 50px;
}

.ml10 {
    margin-left: 10px;
}

.ml15 {
    margin-left: 15px;
}

.ml60pc {
    margin-left: 60%;
}

.ml20 {
    margin-left: 20px;
}

.mx16 {
    margin-right: 16px !important;
    margin-left: 16px !important;
}

.mxauto {
    margin-right: auto !important;
    margin-left: auto !important;
}

.myauto {
    margin-top: auto;
    margin-bottom: auto;
}

.mt25 {
    margin-top: 25px !important;
}

.mr25 {
    margin-right: 25px !important;
}

.mr20 {
    margin-right: 20px !important;
}

.mr10 {
    margin-right: 10px !important;
}

.mr5 {
    margin-right: 5px !important;
}

.mb25 {
    margin-bottom: 25px !important;
}

.mb50 {
    margin-bottom: 25px !important;
}

.mb0 {
    margin-bottom: 0 !important;
}

.mb3 {
    margin-bottom: 3px !important;
}

.mb5 {
    margin-bottom: 5px !important;
}

.mb10 {
    margin-bottom: 10px !important;
}

.mt5 {
    margin-top: 5px !important;
}

.mt10 {
    margin-top: 10px !important;
}

.mt20 {
    margin-top: 20px !important;
}

.mt30 {
    margin-top: 30px !important;
}

.mt50 {
    margin-top: 50px !important;
}

.mt60 {
    margin-top: 60px !important;
}

.mt100 {
    margin-top: 100px !important;
}

.p0 {
    padding: 0 !important;
}

.pb5 {
    padding-bottom: 5px !important;
}

.p5 {
    padding: 5px !important;
}

.p10 {
    padding: 10px !important;
}

.pr20 {
    padding-right: 20px !important;
}

.pt10 {
    padding-top: 10px !important;
}

.pt60 {
    padding-top: 60px !important;
}

.pl5 {
    padding-left: 5px !important;
}

.h10 {
    height: 10px !important;
}

.h20 {
    height: 20px !important;
}

.h30 {
    height: 30px !important;
}

.w100 {
    width: 100% !important;
}

.w20 {
    width: 20% !important;
}

.w20px {
    width: 20px !important;
}

.w33 {
    width: 33% !important;
}

.w40 {
    width: 40% !important;
}

.w60 {
    width: 60% !important;
}

.w70 {
    width: 70% !important;
}

.w75 {
    width: 75% !important;
}

.w80 {
    width: 80% !important
}

.w120 {
    width: 120px !important;
}

.w250 {
    width: 250px !important;
}

.w300 {
    width: 300px !important;
}

.w220 {
    width: 220px !important;
}

.w540 {
    width: 540px !important;
    max-width: 100%;
}

.wMaxContent {
    width: max-content !important;
}
.hMaxContent {
    height: max-content !important;
}

.minH200px {
    min-height: 200px !important;
}

.minH100 {
    min-height: 100% !important;
}

.minW100 {
    min-width: 100% !important;
}

/*.minW400 {*/
/*    min-width: min(400px,100%) !important;*/
/*}*/

/*.minW750 {*/
/*    min-width: min(750px,100%) !important;*/
/*}*/

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

.maxW1400 {
    max-width: min(1400px, 100%) !important;
}

.borderTopBlue {
    border-top: 1px solid #003d77;
}

.border-spacing-0 {
    border-spacing: 0;
}

.borderDarkGrey {
    border: 1px solid #3a3a3a;
}

.borderBottomGrey {
    border-bottom: 1px solid #aaa !important;
}

.lineH30 {
    line-height: 30px !important;
}

.fixed {
    position: fixed !important;
}

.b40 {
    bottom: 40px !important;
}

.l0 {
    left: 0 !important;
}

.scrollx {
    overflow-x: scroll !important;
}

.noscrollx {
    overflow-x: hidden !important;
}

.overflowyAuto {
    overflow-y: auto;
}

.overflowyHidden {
    overflow-y: hidden;
}

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

.tabIndex {
    outline: none;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin: 10px;
    font-size: 1rem;
    cursor: pointer;
}

.tabIndex.active {
    background-color: #003d77;
    color: white;
}

.gap20 {
    gap: 20px;
}

/*****************************************************  */
/* alert */
/*****************************************************  */

.alertDanger {
    background-color: #f8d7da;
    color: #58151c;
    border-left: 5px solid #f1aeb5;
    padding: 20px;
    width: max-content;
    margin: 50px auto 0px;
    max-width: 100%;
}

.alertSuccess {
    background-color: #d1e7dd;
    color: #0a3622;
    border-left: 5px solid #a3cfbb;
    padding: 20px;
    width: max-content;
    margin: 50px auto 0;
    max-width: 100%;
}

.alertInfo {
    background-color: rgba(0, 61, 119, 0.2);
    color: #003d77;
    border-left: 5px solid rgba(0, 61, 119, 0.5);
    padding: 20px;
    width: max-content;
    margin: 0px auto 20px;
}

.alertList {
    border-bottom: 1px solid darkred;
}

/*****************************************************  */
/* support */
/*****************************************************  */


/*****************************************************  */
/* modal */
/*****************************************************  */
.modalBackground {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.59);
    cursor: pointer;
    z-index: 10000;
}

body.modalVisible {
    overflow: hidden;
}

body.modalVisible .modalBackground {
    display: flex;
}

.modalWrapper {
    background-color: white;
    padding: 20px;
    border-radius: 3px;
    position: relative;
    cursor: default;
    width: min(80%, 500px);
    height: 400px;
    max-height: min(80%, 400px);
    overflow-y: scroll;
}

.modalWrapper .close {
    cursor: pointer;
    background-color: #003d77;
    padding: 3px;
    position: absolute;
    right: 10px;
    top: 10px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    z-index: 9;
}

.modalWrapper .close .clickable {
    position: absolute;
    right: 0;
    top: 0;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    z-index: 10;
}

.modalWrapper .line {
    background-color: white;
    border-radius: 3px;
    height: 3px;
    width: 15px;
    transform-origin: center;
}

.modalWrapper .line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 4px);;
}

.modalWrapper .line:nth-child(2) {
    transform: rotate(-45deg) translate(-2px, 4px);
}

.modalContent {
    padding: 15px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    /*height: 100%;*/
    /*max-height: 100%;*/
    width: 100%;
}

.modalEdit {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: fixed;
    background-color: white;
    border: 1px solid #ccc;
    padding: 20px;
    min-width: 600px;
    max-width: 1000px;
    box-shadow: 5px 5px 3px grey;
    z-index: 1000;
}

.modalEditHeader {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modalEditTitle {
    font-weight: bold;
    font-size: 1.2rem;
}

.modalEditClose, .modalEditCloseReload {
    cursor: pointer;
}

.modalEditBody {
    overflow-y: auto;
    max-height: 50vh;
}

.modalEditFooter {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ccc;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/*****************************************************  */
/* hamburger */
/*****************************************************  */
.hamburger {
    position: fixed;
    width: 50px;
    height: 37px;
    left: 30px;
    top: 30px;
    z-index: 1020;
    cursor: pointer;
}

.hamburger .wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.hamburger .line {
    position: absolute;
    width: 100%;
    height: 5px;
    top: 0;
    background: #003d77;
    border-radius: 2px;

}

.hamburger .line:nth-child(2) {
    top: 16px;
}

.hamburger .line:nth-child(3) {
    top: 32px;
}

.hamburgerIcon {
    display: none;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: white;
    -webkit-box-shadow: 0px 5px 25px 0px rgba(45, 46, 92, 0.15);
    box-shadow: 0px 5px 25px 0px rgba(45, 46, 92, 0.15);
    z-index: 200;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-left: 250px;
    font-size: 14px;
}

.topbarLogin {
    width: 100%;
    height: 50px;
    background-color: white;
    -webkit-box-shadow: 0px 5px 25px 0px rgba(45, 46, 92, 0.15);
    box-shadow: 0px 5px 25px 0px rgba(45, 46, 92, 0.15);
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logoLogin {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 20px;
}

.logoLogin img {
    object-fit: contain;
    height: 40px;
    width: 40px;
    margin-right: 10px;
}

.userAccount {
    margin-right: 20px;
    display: flex;
    margin-left: 20px;
    font-weight: 500;
    color: #3c3c3c;
    cursor: pointer;
    text-transform: capitalize;
}

.userAccount .dropdown {
    font-size: 13px;
    width: 187px;
}

.useAccountIcon {
    margin-left: 10px;
}

.actionsTopbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-right: 20px;
}

.actionTopbar {
    margin-left: 20px;
    color: #003d77;
    cursor: pointer;
}

/*****************************************************  */
/* main background */
/*****************************************************  */
.mainContainer {
    /*background: linear-gradient(88.61deg, #FFFFFF -0.22%, #EFF4FD 17.71%, #DDE8FB 38.5%);*/
    /*background: #f5f5f9;*/
    min-height: calc(100vh - 70px);
    width: 100vw;
    padding-left: 250px;
    position: relative;
    max-width: 100%;
}

.mainContainer.fullWidth {
    padding: 0 13px 10px;

}

.mainContainer.fullHeight {
    /*height: calc(100vh - 120px);*/
    min-height: calc(100vh - 120px);
    height: auto;
    padding-bottom: 150px;
}

@keyframes animate {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-3000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}

/*****************************************************  */
/*welcome page*/
/*****************************************************  */
.welcomePage {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/*****************************************************  */
/* navbar */
/*****************************************************  */
.navbar {
    position: fixed;
    height: calc(100vh - 50px);
    top: 50px;
    width: 250px;
    max-width: 100%;
    width: min(250px, 100%);
    z-index: 900;
    transition: 1s ease-in-out;
    background-color: #003d77;
    box-shadow: 4px 0px 12px 0px rgba(45, 46, 92, 0.15);
}

.navbarWrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 30px;
}

.navbarWrapper .top {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    /*padding-right: 15px;*/
}

.navbarWrapper .top .logo {
    width: 100px;
    height: 100px;
}

.navbarWrapper .top .logo img {
    object-fit: contain;
    height: 100%;
    width: 100%;
}

.logoMobile {
    display: none;
}

.topbar .searchContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 35px;
}

.searchContainer .foster {
    font-size: 16px;
    color: #003d77;
    margin-right: 15px;
    transition: opacity 1s ease, transform 1s ease;
    overflow: hidden;
    transform: translateX(0);
    width: 110px;
    opacity: 1;
}

.searchContainer.searching .foster {
    width: 0;
    opacity: 0;
    transform: translateX(-100vw);
}

.searchBoxContainer .icon {
    text-align: center;
    font-size: 12px;
    color: #4E4E4E;
    margin: 0 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.searchBoxContainer .icon svg {
    height: 25px;
}

.searchBoxContainer .searchBtn svg {
    height: 25px;
    cursor: pointer;
}

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

.searchBoxContainer .searchItem {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 1s ease;
}

.searchBoxContainer .searchItem .searchBox {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    overflow: hidden;
    transition: width 0.7s ease;
}

.searchItem .label {
    min-width: 84px;
    overflow: hidden;
}

.searchBoxContainer .searchItem.active .searchBox {
    width: 220px;
}

.searchBox input {
    font-size: 12px;
    border: none;
    border-bottom: 1px solid #4E4E4E;
    outline: none;
    background-color: transparent;;
    margin-right: 7px;
    text-align: center;
}

.searchBox input.length2 {
    width: 30px;
}

.searchBox input.length4 {
    width: 62px;
}

.searchItem .searchBtn {
    width: 0;
    overflow: hidden;
    transition: width 0.7s 0.2s ease;
}

.searchItem.active .searchBtn {
    width: 43px;
}

.searchContainer.searching .searchItem {
    transform: translateY(-100px);
}

.searchContainer.searching .searchItem .icon {
    transition: all 1s ease;
    overflow: hidden;
    width: 0;
}

.searchContainer.searching .searchItem.active {
    transform: translateY(0);
}

.searchContainer.searching .searchItem.active .icon {
    width: 90px;
}

.topTitle {
    font-size: small;
    color: white;
    margin-left: 10px;
}

.coords {
    font-size: small;
    color: white;
}

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

.navbarWrapper .bottom {
    width: 100%;
    /*height: calc(100% - 57px);*/
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
}

.memberCard {
    background-color: #cacfd4;
    opacity: 1;
    padding: 10px;
    width: 100%;
    margin-bottom: 10px;
    font-size: 0.8rem;
    margin-top: 10px;
    color: #003d77;
    border-radius: 5px;
}

.memberCardTop {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.memberCardRight {
    text-align: right;
}

.memberCardRight :first-child {
    font-weight: 700;
}

.memberCardBottom {
    margin-top: 5px;
    font-weight: 500;
    color: black;
    font-size: 12px;
    text-align: right;
    position: relative;
}

.fosterChange {
    cursor: pointer;
}

.memberCardRight {
    padding-left: 10px;
    font-size: 0.8rem;
}

.navbar .featuresWrapper {
    height: calc(0.3 * (100% - 57px));
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    align-items: center;
}

.featuresWrapper .name .welcome {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #000000;
}

.featuresWrapper .name .welcome span {
    font-weight: 600;
    font-style: italic;
}


.navbar .menu {
    height: calc(0.7 * (100% - 57px));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.leftMenu {
    margin-top: 20px;
    list-style-type: none;
    color: white;
    text-transform: uppercase;
}

.leftMenuItem {
    margin-bottom: 10px;
    padding: 0;
    font-weight: 600;
    position: relative;
    transition: all 0.2s ease;
}

.leftMenuItem::before {
    height: 100%;
    width: 3px;
    position: absolute;
    top: 0;
    left: -4px;
    background-color: rgba(209, 209, 209, 0.7);
    content: "";
    border-radius: 2px 0 0 2px;
    transition: transform 0.2s ease, opacity 350ms linear;
    transform: translateX(-50px);
    opacity: 0;
}

.leftMenuItem:hover::before {
    transform: translateX(0);
    opacity: 1;
}

.leftMenuItem:hover {
    background-color: rgba(0, 0, 0, 0.27);
    transform: translateX(-4px);
}

.leftMenuItem a {
    text-decoration: none;
    color: inherit;
    padding: 10px 15px;
    display: block;
}


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

.dropdownParent {
    position: relative;
}

.dropdown {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 100%;
    background-color: #cacfd4;
    box-shadow: 0px 5px 25px 0px rgba(45, 46, 92, 0.15);
    border-radius: 6px;
    padding: 10px 0;
    color: #424242;
    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;
}

.dropdown li {
    list-style: none;

    transition: all 0.1s ease;
}

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

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

.dropdownParent.active .dropdown {
    transform: translateY(calc(100% + 15px));
    opacity: 1;
    visibility: visible;
    height: auto;
}

/*****************************************************  */
/* formation page */
/*****************************************************  */
.formationsPage .card .cardSubTitle {
    margin-top: 15px;
    color: rgb(27, 59, 120);
    background-color: white;
    padding: 15px 20px;
}

.card .type {
    font-weight: 300;
    margin-top: 10px;
    font-style: italic;
    color: #383838;
}

.card:hover .type {
    color: white;
}

.cardSubTitle .featureTitle {
    font-weight: 300;
    margin-right: 10px;
}

/*****************************************************  */
/* cards */
/*****************************************************  */
.cardContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    position: relative;
}

.cardContainer .card {
    min-height: 130px;
    width: 250px;
    margin: 20px;
    position: relative;
}

.cardContainer .card .wrapper {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: white;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(3px);
    cursor: pointer;
    /* Note: backdrop-filter has minimal browser support */
    border-radius: 5px;
    transition: background-color 0.2s ease-in-out;
    flex-direction: column;
    padding: 15px;
}

.cardContainer .card:hover .wrapper {
    /*border: 1px solid rgb(81, 81, 81);*/
    background: rgb(81, 81, 81);
}

.cardContainer .card:hover .wrapper .cardTitle {
    color: white;
}

.cardContainer .card:hover .wrapper svg path {
    fill: white;
}

/*.cardContainer .card:hover .cardTitle, .cardContainer .card:hover .cardSubTitle,.cardContainer .card:hover .type{*/
/*    color:#657eaa ;*/
/*}*/
.cardContainer .cardTitle {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.12em;
    color: #575757;
    margin-top: 10px;
}

.card.invisible, .card.invisible .wrapper {
    opacity: 0;
    box-shadow: none;
    cursor: auto !important;
    height: 0;
    min-height: 0;

}

.card.invisible {
    margin-top: 0;
    bottom: 0;
}

/*****************************************************  */
/* authentification */
/*****************************************************  */
.authWrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 120px);
    height: 100%;
    color: #1e1e1e;
    overflow-y: scroll;
}

.authWrapper::-webkit-scrollbar {
    display: none;
}

.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: #898989;
    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 {
    /*color: #003d77;*/
    font-weight: 500;
    text-decoration: underline;
}

.firstConnexion {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #161616;
    background-color: #8ACC8C;
    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;
}

.authLogo {
    height: 48px;
    margin: 20px 0;
}

.authTitle {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.authLogo img {
    object-fit: contain;
    height: 100%;
    width: 100%;
}

/*****************************************************  */
/* forms */
/*****************************************************  */
.authForm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    overflow-x: hidden;
}

.authForm .separator {
    height: 2px;
    width: min(250px, 25%);
    /*background-color: #707070;*/
    border-radius: 5px;
    margin: 5px auto;
}

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

.customField, .customField2 {
    display: flex;
    flex-direction: column;
    width: max-content;
    position: static;
    max-width: min(280px, 100%);
    /*width: 100%;*/
    width: 250px;
    margin: 0 10px;
}

.customField label, .groupCustom label {
    font-size: 0.8rem;
    color: #003d77;
    font-weight: 700;
    position: relative;
    top: 0.5rem;
    margin: 0 0 0 7px;
    padding: 0 3px;
    background: #f5f5f9;
    width: max-content;
    z-index: 10;
}

.groupCustom label {
    top: -1.3rem;
}

.customField input, .customField select, .customField textarea {
    padding: 11px 10px;
    font-size: 0.75rem;
    border: 2px #003d77 solid;
    border-radius: 5px;
    background: #f5f5f9;
    width: 100%;
    cursor: text;
}

.customField select {
    padding: 10px;
}

.customField2 .groupCustom {
    padding: 11px 10px;
    font-size: 0.75rem;
    border: 2px #003d77 solid;
    border-radius: 5px;
    background: #f5f5f9;
    width: 100%;
    cursor: text;
}

.customField2 .groupCustom input {
    padding: 10px;
    font-size: 0.75rem;
    border: 1px solid #cccccc;
    background: #f5f5f9;
    width: 100%;
    cursor: text;
}

.customField2 .groupCustom .indicatif {
    color: #003d77;
    background-color: #cce3f9;
    padding: 5px;
    border-radius: 5px 0 0 5px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    z-index: 10;
    right: -3px;
    position: relative;
    border: 1px solid #b3b3b3;
    border-right: none;
    padding-right: 8px;
}

.customField input:focus {
    outline: none;
}

.customField .group input {
    padding-right: 50px;
}

.customField .group {
    position: relative;
}

.customField .group .icons {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
}

.customField .group .icons.eye {
    cursor: pointer;
}

.customField .group .icon {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 5px 5px 0;
    border: 2px #003d77 solid;
}

.customField svg path {
    stroke: #003d77 !important;
}

.customField .dark svg path {
    stroke: #f5f5f9 !important;
}

.customField .dark {
    background-color: #003d77;
    color: white;
}

.customField .error, .customField2 .error {
    font-size: 13px;
    color: indianred;
    opacity: 0;
}

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

.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;
}

.customField .error.visible {
    opacity: 1;
}

.customField .icon.hidden, .customField .icon.dark.hidden {
    display: none;
}

.autosuggestContainer {
    position: relative;
}

.autoSuggestWrapper {
    position: relative;
}

.autosuggestContainer .autosuggest {
    display: none;
    position: absolute;
    top: 44px;
    width: min(100%, 250px);
    height: 291px;
    overflow: scroll;
    padding: 10px;
    background: white;
}

.autoSuggestWrapper.active .autosuggest {
    display: block;
    z-index: 100;
}

.customField .autosuggest li {
    list-style: none;
    padding: 10px;
    cursor: pointer;
    transition: 0.2s ease;
}

.customField .autosuggest li:hover {
    list-style: none;
    padding: 10px;
    background-color: #c5c5c5;
}

.customBtn {
    border-radius: 5px;
    background-color: #003d77;
    color: #f5f5f9;
    width: min(280px, 100%);
    text-align: center;
    padding: 10px;
    font-size: 15px;
    margin: 1.75rem auto 1rem auto;
    cursor: pointer;
    border: none;
}

.customBtn[disabled], button[disabled] {
    cursor: not-allowed;
    background-color: #424242 !important;
}

.forgottenPswd {
    font-size: 14px;
    color: #353535;
    text-decoration: underline;
    margin-bottom: 1.5rem;
    text-align: center;
}

.findClub {
    text-transform: uppercase;
    color: #003d77;
    font-size: 18px;
    font-weight: 500;
    word-spacing: 2px;
    text-align: center;
    padding-bottom: 20px;
}

.findClub .accent {
    font-weight: 700;
}

/*****************************************************  */
/* footer */
/*****************************************************  */
footer {
    position: relative;
    z-index: 1000;
    background-color: #e2e2e2;
    color: #212121d4;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-size: 13px;
    width: 100%;
    right: 0;
    z-index: 0;
}

.mainContainer.fullHeight footer {
    position: absolute;
}

footer .left {
    /*flex: 2;*/
    max-width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

footer .left .top {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-size: 14px;
}

footer .left .top .item {
    margin-right: 15px;
    cursor: pointer;
    color: #1a1a1a;
}

footer .left .bottom {
    display: flex;
    justify-content: flex-start;
    margin-top: 9px;
}

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

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

}

footer .right {
    flex: 1;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer .logo {
    margin-bottom: 30px;
    height: 120px;
}

footer .logo img {
    object-fit: contain;
    height: 100%;
}

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

.socialsContainer .button {
    width: 50px;
    height: 50px;
    border: 2px solid #FFFFFFA8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: #FFFFFFA8;
    /* color: white; */
    position: relative;
    margin: 10px;
    overflow: hidden;
    text-decoration: none;
}

.socialsContainer .icon {
    z-index: 2;
}

.socialsContainer .fill {
    width: 120%;
    height: 120%;
    background-color: rgba(255, 255, 255, 0.87);
    border-radius: 50%;
    position: absolute;
    bottom: -50px;
    left: -50px;
    transition: all 0.5s ease;
}

.socialsContainer .button:hover .fill {
    transform: translate(45px, -45px);
}

.socialsContainer .button:hover .icon {
    color: #003D77;
}

/*****************************************************  */
/*account*/
/*****************************************************  */
.badgesWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
}

.badge {
    margin: 0 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.badge .img {
    height: 50px;
    width: 50px;
    padding: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.badge.grey .img {
    background-color: #D9D9D9;
}

.badge.grey svg {
    fill: #545454;
}

.badge.green .img {
    background-color: #8ACC8C;
}

.badge.green svg {
    fill: white;
}

.badge .label {
    font-size: 12px;
    font-weight: 300;
    text-align: center;
    max-width: 80px;
    margin-top: 7px;
}

.accountSubtitle {
    color: white;
    font-size: 17px;
    text-align: center;
    font-weight: 500;
    font-style: italic;
    margin: auto;
    width: max-content;
    background: #9a9a9a;
    /*border-radius: 5px;*/
    padding: 7px 19px;
}

.statusLabel {
    font-weight: 400;
    font-style: normal;
}

.accountPage .pageTitle {
    padding-top: 15px;
    margin-bottom: 16px;
    font-size: clamp(1.9375rem, 1.825rem + 0.5625vw, 1.5rem);
}

/* account menu*/
.accountMenu {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 0 10px 1px;
    border-bottom: 1px solid lightgrey;
    margin-top: 28px;
}

.accountMenuItem {
    color: #717171;
    padding: 10px;
    font-size: 15px;
    font-weight: 400;
    position: relative;
    transition: 0.5s ease;
    margin: 0 3px;
}

.accountMenuItem.active {
    color: #003d77;
}

.accountMenuItem::after {
    position: absolute;
    content: "";
    width: 98%;
    height: 2px;
    bottom: 0;
    right: 1px;
    background-color: #003d77;
}

.accountMenuItem::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    bottom: 0;
    right: 0;
    background-color: #f5f5f9;
    transition: 0.2s ease-in;
    transform: scaleX(1);
    transform-origin: right;
    z-index: 10;
}

.accountMenuItem:hover::before, .accountMenuItem.active::before {
    transform: scaleX(0);
}

/* end account menu*/
.accountContent {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #424242;
}

.accountContent .welcome {
    font-size: 19px;
    margin: 50px 0;
}

/*****************************************************  */
/* Formulaires */
/*****************************************************  */
.formBlock {
    position: relative;
    width: 100%;
    padding: 11px 10px;
    font-size: 0.75rem;
    border: 2px #003d77 solid;
    border-radius: 5px;
    background: #f5f5f9;
    margin: 20px auto;
    max-width: 1200px;

}

.formBlockTitle {
    font-size: 1rem;
    color: #003d77;
    font-weight: 700;
    position: absolute;
    top: -14px;
    left: 7px;
    margin: 0 0 0 7px;
    padding: 0 8px;
    background: #f5f5f9;
    /*width: max-content;*/
    z-index: 1;
    max-width: 100%;
}

.formBlockWrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    padding: 15px 0 3px;
    font-size: 14px;
    overflow: hidden;
}

.checkbox .formUnit {
    cursor: pointer;
}

.formBlockWrapper .formLine {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 10px;
    line-height: 27px;
}

.clubLogo {
    object-fit: contain;
    height: 150px;
    width: 150px;
}

.formBlockWrapper.inline, .formValueGroup.inline {
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: flex-start !important;
    /*flex-direction: column;*/
    /*flex-wrap: wrap;*/
    /*justify-content: flex-start !important;*/
    /*align-items: flex-start;*/
    /*width: 100%;*/
}

.formUnit {
    display: flex;
    margin: 0 16px 20px;
    flex-wrap: wrap;
    align-items: center;
    /*width: 100%;*/
    /* correction*/
    /*justify-content: center;*/
}

.formSubtitle {
    text-align: center;
    color: #043f7b;
    font-weight: 500;
    margin: 45px 0 15px;
    text-transform: uppercase;
}

.formBlockWrapper.inline .formUnit .formLabel {
    min-width: unset;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.formBlockWrapper .modifyVisible {
    display: none;
}

.input[disabled] .datetime-reset-button {
    display: none;
}

.formBlockWrapper .formLabel {
    min-width: 150px;
    font-weight: 700;
    margin-right: 10px;
}

.formBlockWrapper .formValueGroup {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: flex-start;
}

.formBlockWrapper .separator {
    height: 2px;
    width: min(332px, 100%);
    margin: 0 auto 20px;
    background-color: #acacac82;
}

.formValue {
    margin-right: 15px;
    outline: none;
    background-color: #e9e9e9;
    border: 1px solid #b3b3b3;
    color: #575757;
    margin-bottom: 3px;
    padding: 3px;
    height: 38px;
    border-radius: 5px;
}

.phoneInput {
    max-width: calc(256px - 35px);
}

select.formValue {
    max-width: 256px;
}

.formBlockWrapper .formValue.unchangeable {
    background-color: transparent;
}

.formBlockWrapper .hiddenFields {
    overflow: hidden;
    transition: 0.5s ease-in-out;
    width: 540px;
    max-width: 100%;
    height: unset;
    min-height: max-content;
}

#emailForm .formValue {
    border-radius: 5px;
    padding: 8px 10px;
    font-size: 13px;
    margin-right: 10px;
}

.currentValue {
    margin-right: 10px;
    padding: 8px 10px;
    font-size: 13px
}

.comment {
    font-size: 13px;
    max-width: min(330px, 100%);
    text-align: center;
    color: #929292;
}

.formBlockWrapper.password .hiddenFields {

    height: 305px;
}

.formBlockWrapper .hiddenFields .instructions .text {
    text-align: justify;
}

.formBlockWrapper .hiddenFields .instructions {
    margin: auto;
    max-width: 100%;
}

.formBlockWrapper .hiddenFields .fields {
    display: flex;
}

.formBtn.relative {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 0;
}

.formBlockWrapper .togglingFields {
    display: flex;
    flex-wrap: wrap;
}

.formBlockWrapper .hiddenFields.hidden {
    width: 0;
    height: 0;
}

.formBlockWrapper .formTitle {
    width: 100%;
    font-weight: 600;
    text-align: center;
    margin-bottom: 11px;
    color: #003d77;
}

.formBlockWrapper .customField input {
    border: none;
    background: #e9e9e9;
}

.formBlockWrapper .customField .group .icon {
    border: none;
    background-color: white;
}

.formBlockWrapper .customField .group .icon.closed.dark svg path {
    stroke: #003d77 !important;
}

.formValue.modifying {
    background-color: white;
    color: #424242;
}

/*.formBlockWrapper .formValue::placeholder{*/
/*    color:#424242;*/
/*}*/
.formBlockWrapper .formLineModify {
    color: #003d77;
    opacity: 0.7;
    text-decoration: underline;
    cursor: pointer;
}

.group > .indicator + .phoneInput {
    border-radius: 0 5px 5px 0 !important;
    padding-left: 5px;
}

.formValueGroup.hideForm {
    display: none;
}

.addAddress {
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.formLine .group, .formUnit .group {
    display: flex;
}

/*.formLine .group .formValue, .formUnit .group .formValue {*/
/*    max-width: calc(256px - 37px);*/
/*}*/

.indicator {
    color: #003d77;
    background-color: #cce3f9;
    padding: 05px;
    border-radius: 5px 0 0 5px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    z-index: 10;
    right: -3px;
    position: relative;
    border: 1px solid #b3b3b3;
    border-right: none;
    padding-right: 8px;
}

.formBtn {
    margin: 10px 0 0 auto;
    background-color: #003d77;
    color: white;
    padding: 10px 15px;
    cursor: pointer;
    width: 120px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    position: absolute;
    right: 30px;
    bottom: 11px;
    border: none;
}

.switch {
    font-size: 17px;
    position: relative;
    display: inline-block;
    width: 3.5em;
    height: 2em;
    margin-right: 15px;
}

.sticker {
    background-color: #7c7b7b;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    min-height: 20px;
    min-width: 20px;
    margin: 0 7px 0 25px;
    box-shadow: 2px 2px 2px #cbcbcb;
    border: 2px solid #fff;
}

.sticker.green, .statutClub.green {
    background-color: #99d59a !important;
}

.sticker.orange, .statutClub.orange {
    background-color: #e28a2d !important;
}

.sticker.yellow, .statutClub.yellow {
    background-color: #f1e205 !important;
}

.statutClub {
    padding: 5px 10px;
    /*margin-bottom: 20px;*/
    background-color: #7c7b7b;
    display: flex;
    justify-content: center;
    margin-right: 10px;
    border-radius: 5px;
}

.switch .message.success, .checkbox .message.success {
    color: #494949;
    background: white;
    border-left: 5px solid rgb(138, 204, 140);
    position: absolute;
    top: 0;
    left: -100vw;
    font-size: 13px;
    transition: ease-in-out 0.2s;
    opacity: 0;
    width: max-content;
    padding: 5px 5px 5px 10px;
}

.switch .message.success.show, .checkbox .message.success.show {
    opacity: 1;
    top: -35px;
}

.switch input {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
    cursor: pointer;
    border: transparent;
}

.suggestionWrapper {
    position: relative;
    /*max-width: min(100%, 256px);*/
    max-width: min(100%, 500px);
    /*width: 100%;*/
}

.suggestionWrapper .suggestion {
    position: absolute;
    top: 28px;
    left: 0;
    width: 100%;
    max-height: 150px;
    overflow-y: scroll;
    background-color: #e6e6e6;
    margin-right: 15px;

}

.suggestionWrapper .suggestion .item {
    background-color: white;
    margin-bottom: 1px;
    height: 30px;
    width: 100%;
    padding: 3px;
    cursor: pointer;
    z-index: 100;
    position: relative;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    border: 1px solid #adb5bd;
    transition: .4s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 1.4em;
    width: 1.4em;
    border-radius: 20px;
    left: 0.27em;
    bottom: 0.25em;
    background-color: #adb5bd;
    transition: .4s;
}

input:checked + .slider {
    background-color: #003d77;
    border: 1px solid #003d77;
}

input:focus + .slider {
    box-shadow: 0 0 1px #003d77;
}

input:checked + .slider:before {
    transform: translateX(1.4em);
    background-color: #fff;
}

.formLine.newsletter {
    margin-top: 30px;
}

.formLine.newsletter label span {
    font-weight: 500;
    color: #003d77;
}

.accountListWrapper {
    background-color: white;
    width: 100%;

}

.formLine.newsletter .notSubscribing {
    position: relative;
    display: flex;
    justify-content: center;
    /*align-items: center;*/
    flex-direction: column;
    max-width: 400px
}

.formLine.newsletter .notSubscribing .blacklist {
    margin-top: 15px;
    background-color: #003d77;
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 14px;
}

.listLine {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 15px 25px;
    border-bottom: 3px solid #F5F5F9;
    font-size: 14px;
}

.listLine.mailList {
    justify-content: space-between;
}

.listLine.actionList {
    justify-content: flex-start;
}

.listLineLeft, .listLineRight {
    display: flex;
}

.mailList .seeMore {
    margin-right: 35px;
    display: inline;
    width: 111px;
    height: max-content;
    cursor: pointer;
}

.mailList .date, .actionList .date {
    width: 100px;
    text-align: right;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-left: auto;
}

.listMailObject {
    max-width: 230px;
    overflow: hidden;
    margin-right: 20px;
    /*max-height: 21px;*/
}

.formValue.floating {
    position: absolute;
    top: 0;
    right: calc(50% - (256px / 2));
    transition: 1s ease-in-out;
}

select.floating.hidden {
    top: -100vh;
}

.line-bordereau {
    line-height: 1.8rem;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
    margin-bottom: 5px;
    padding-top: 5px;
    margin-top: 5px;
}

.selectPersonne {
    margin-bottom: 10px;
    text-decoration: underline;
    cursor: pointer;
    font-weight: bold;
}

/*****************************************************  */
/*tables*/
/*****************************************************  */

.styled-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.8em;
    font-family: sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.styled-table thead tr {
    background-color: #003d77;
    color: #ffffff;
    text-align: left;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px;
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: rgba(0, 61, 119, 0.2);
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #003d77;
}

.styled-table tbody tr.active-row {
    font-weight: bold;
    color: #003d77;
}

.filters {
    margin: 0 auto;
}

/*****************************************************  */
/*florilege */
/*****************************************************  */
.florilege {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    width: 100%;
}

/*****************************************************  */
/*search */
/*****************************************************  */
.searchedTerm .value {
    text-align: center;
    border-radius: 5px;
    background-color: #e0e0e0;
    color: #003d77;
    border: 2px solid #3d3d3d54;
    padding: 5px 10px;
    font-weight: 600;
    min-width: 74px;
}

.searchedTerm .close {
    margin: auto 0 auto 10px;
    height: 20px;
    width: 20px;
    font-size: 11px;
    font-weight: bold;
    background-color: #e0e0e0;
    color: #003d77;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #3d3d3d54;

}


/* tables */
table.tablesorter {
    background-color: #CDCDCD;
    margin:10px 0pt 15px;
    font-size: 10pt;
    width: 100%;
    text-align: left;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    border-collapse: collapse;
}
table.tablesorter thead tr th, table.tablesorter tfoot tr th {
    background-color: #003d77;
    color: white;
    /*border: 1px solid #FFF;*/
    font-size: 10pt;
    /*padding: 4px;*/
    padding: 12px 15px;
}
table.tablesorter thead tr .header {
    color: white;
    background-repeat: no-repeat;
    background-position: center right;
    cursor: pointer;
    text-align: center;
}
table.tablesorter tbody tr {
    border-bottom: 1px solid #dddddd;
}
table.tablesorter tbody td {
    color: #3D3D3D;
    padding: 8px 4px;
    background-color: #FFF;
    vertical-align: top;
}
table.tablesorter tbody tr.odd td {
    background-color:#F0F0F6;
}
.innerThead {
    display: flex;
    align-items: center;
    justify-content: center;
}
/*table.tablesorter thead tr .headerSortUp {*/
/*    background-image: url(asc.gif);*/
/*}*/
/*table.tablesorter thead tr .headerSortDown {*/
/*    background-image: url(desc.gif);*/
/*}*/
/*table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp {*/
/*    background-color: #8dbdd8;*/
/*}*/

/*****************************************************  */
/*media queries*/
/*****************************************************  */


@media screen and (max-width: 1199px) {
    .topbar .searchContainer {
        margin-right: 0;
    }

    .searchBoxContainer .icon {
        margin: 0;
        font-size: 11px;
    }

    .userAccount {
        margin: 0 10px 0 5px;

    }

    .actionTopbar {
        margin-left: 15px;
    }

    .actionsTopbar {
        margin-right: 10px;
    }

    .topbar, .searchContainer .foster {
        font-size: 14px;
    }

    .searchContainer .foster {
        width: 91px;
    }

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

@media screen and (max-width: 991px) {
    .mainContainer {
        padding-left: 0;
    }

    .florilege {
        flex-direction: column;
    }

    .topbar {
        padding-left: 0;
    }

    .actionsTopbar {
        display: none;
    }

    .logoMobile {
        display: flex;
        align-items: center;
        position: fixed;
        top: 5px;
        left: 10px;
        color: #3e3e3e;
    }

    .logoMobile img {
        object-fit: contain;
        height: 40px;
        width: 40px;
        margin-right: 10px;
    }

    .navbar .menuItem {
        background-color: #C0C2C7;
    }

    .navbar.hidden {
        transform: translateX(-100%);
    }

    .hamburger, .hamburger.close .line {
        transition: all 0.5s ease-in-out;
    }

    .hamburger.close .line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.close .line:nth-child(1) {
        transform: rotate(45deg);
        transform-origin: left;
    }

    .hamburger.close .line:nth-child(3) {
        transform: rotate(-45deg);
        transform-origin: left;
        top: 35px;
    }

    footer {
        flex-direction: column-reverse;
        width: 100%;
        /*padding-top: 50px;*/
        z-index: 0;
    }

    footer .left {
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 0;
    }

    .hamburgerIcon {
        display: block;
        position: absolute;
        right: -52px;
        height: 70px;
        width: 80px;
        top: calc(50vh - 20px);
        z-index: 3;
        color: black;
        cursor: pointer;
        background-color: #003d77;
        border-top-right-radius: 50%;
        border-bottom-right-radius: 50%;
        padding: 20px;
    }

    .accountSubtitle {
        background-color: #003d77;
    }

    .listLine {
        cursor: pointer;
        align-items: flex-start;
        padding: 15px;
    }

    .listLineLeft {
        flex-direction: column;
    }

    .mailList .seeMore {
        display: none;
    }

    .listMailObject {
        margin-bottom: 15px;
        max-width: unset;
        margin-right: 5px;
    }

}

@media screen and (max-width: 767px) {
    .md-my-15 {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .md-mt-15 {
        margin-top: 15px;
    }

    .md-my-20 {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .md-mx-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .md-ml-auto {
        margin-left: auto !important;
    }

    .md-w100 {
        width: 100%;
    }

}

@media screen and (max-width: 670px) {
    footer .top {
        display: none !important;
    }

    footer .bottom .item {
        margin-bottom: 15px;
    }

    footer .bottom {
        flex-direction: column;
    }

    footer .separation {
        display: none !important;
    }

    .fosterRegister {
        /*margin-bottom: 1rem;*/
    }

    .fosterContainer {
        flex-direction: column;
    }

    .authTitle {
        margin: 2rem 0 1.1rem;
        padding: 0 15px;
        font-size: 1.5rem;
    }

    .formBtn {
        position: relative;
        margin: auto;
        right: 0;
        top: 0;
    }
}

@media screen and (max-width: 575px) {
    .fosterRegister, .firstConnexion {
        font-size: 0.9rem;
    }

    .authLogo {
        display: none;
    }

    .pageTitle {
        font-size: 27px;
        /*padding-top: 105px;*/
        display: flex;
        flex-direction: column-reverse;
    }

    .accountPage .pageTitle {
        padding-top: 75px;
    }

    .welcomePage h1 {
        font-size: 27px;
        padding: 0 16px;
    }

    .navbar .menuItem {
        font-size: 15px;
    }

    .navbar .menuItem a {
        padding: 13px;
    }

    .hamburger {
        width: 41px;
        height: 35px;
    }

    .hamburger .line:nth-child(2) {
        top: 14px;
    }

    .hamburger .line:nth-child(3) {
        top: 28px;
    }

    .hamburger.close .line:nth-child(3) {
        top: 30px;
    }

    .logoMobileRight {
        display: none;
    }

    .cardContainer .card {
        margin: 35px 10px;
    }

    .accountMenuItem {
        font-size: 13px;
    }

    .accountSubtitle {
        font-size: 15px;
    }

    .pageCanva.accountPage {
        padding: 3%;
    }

    .accountMenu {
        padding: 0;
        justify-content: center;
    }

    .switch {
        width: 2.5em;
        height: 1.5em;

    }

    .slider::before {
        height: 21px;
        width: 21px;
        left: 2px;
        bottom: 2px;;
    }

    input:checked + .slider::before {
        transform: translateX(14px);
    }

    .formLine.newsletter {
        font-size: 15px;
        max-width: 90%;
        /*text-align: center;*/
    }

    .listLine.mr25 {
        margin-right: 0;
    }

    .listLine {
        flex-direction: column;
    }

    .actionList .date {
        margin-left: 0;
        width: auto;
        margin-top: 10px;
    }

    .mailList .date.dark {
        text-align: left;
        font-size: 14px;
        margin-top: 10px;
        width: auto;
    }

    .listMailObject {
        max-width: unset;
        margin-right: 0;
        max-height: unset;
    }

    .w70, .w75 {
        width: 100% !important;
    }

    .formUnit {
        margin: 0 0 20px;
    }
}

@media screen and (max-width: 375px) {
    .accountMenuItem {
        /*height: 58px;*/
        display: flex;
        align-items: center;
        padding: 5px;
    }
}
