.footer-disclaimer {
    font-size: 14px;
    line-height: 1.3em;
    max-width: 1075px;
    margin: 0 auto;
    margin-bottom: 25px;
}

.js-cookie-consent {
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 70vw;
    margin: 0 auto;
    align-items: center;
    display: flex;
    flex-direction: column;
    z-index: 99999;
    border: 1px solid #D7E7F1;
    background-color: #FFF;
    left: 15vw;
    border-radius: 10px 10px 0 0;
}
.js-cookie-consent .cookie-consent__message {
    font-size: 14px;
    text-align: justify;
}
.js-cookie-consent a {
    cursor: pointer;
    color: #2C2F88;
    font-size: 15px;
    white-space: nowrap;
}

@media (max-width: 400px){
    .js-cookie-consent a {
        white-space: normal;
    }
}

.validated {
    border: 1px solid green;
}
.not-validated {
    border: 1px solid red;
}
@media (max-width: 640px) {
    .courses-list__item a:not(.btn) {
        min-width: 100%;
    }
}
@media (max-width: 1530px) {
    .courses-list__item-meta__icon {
        margin-right: 7px !important;
    }
    .courses-list__item-location {
        padding-right: 15px !important;
    }
    .courses-list__item-location .courses-list__item-meta__list-item {
        /*width: max-content;*/
        width: 100%;
    }
}

@-webkit-keyframes autofill {
    to {
        color: inherit;
        background: transparent;
    }
}

#form-login input:-webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}

.js-reg-form form .form-group input:not([type=submit]):not([type=checkbox]), .js-reg-form form .form-group select {
    padding: 24px 1.3em 0 1.3em !important;
    color:#444 !important;
    font-size: 18px;
}

/*****************************************cookie**************************************************/
#cookie_note{
    display: none;
    position: fixed;
    bottom: 15px;
    left: 50%;
    max-width: 90%;
    transform: translateX(-50%);
    padding: 20px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
    gap: 30px;
    justify-content: space-between;
    z-index:100;
    align-items: center;
}

#cookie_note.show{
    display: flex;
}

#cookie_note p {
    margin: 0;
    font-size: 0.9rem;
    text-align: left;
    color: black;
    width: 80%;
}

.cookie_accept {
    width: fit-content;
    background: #2C2F88;
    color: #fff;
    padding: 10px 15px;
    font-size: 1rem;
    line-height: 140%;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    border: none;
    outline: none;
    cursor: pointer;
}

.cookie_accept:hover{

}

@media (min-width: 576px){
    #cookie_note.show{
        display: flex;
    }
}

@media (max-width: 575px){
    #cookie_note.show{
        display: flex;
        text-align: left;
    }
}

@media (max-width: 1600px){
    #cookie_note{
        width: 70%;
    }
}

@media (max-width: 1024px){
    #cookie_note{
        width: 90%;
    }
}

@media (max-width: 820px){
    #cookie_note{
        flex-flow: column;
    }
    #cookie_note p {
        width: 100%;
    }
}

/*****************************************end cookie**************************************************/