body 
{
    overflow-x: hidden;
}

.img_logo 
{
    height: 15em;
    display: flex;
    align-items: center;
}

.email_label 
{
    font-size: 1.8rem;
    color: #737a78;
    font-weight: 700;
}

.logo-item 
{
    width: 100%;
}

.logo_europe_list 
{
    display: flex;
    justify-content: center;
    align-items: center;
}

a 
{
    text-align: center;
}

h5 
{
    text-align: center;
    font-size: 0.8rem;
    line-height: 110%;
    margin: 1em;
}


#Qr_Part
{
    
}

#qrtext 
{
    font-size: 3.5em;
    line-height: 100%;
    margin: 0.2em 0 0.2em 0;
    color: #595959;
    font-weight: 600;
}

#qrcode 
{
    display: flex;
    justify-content: center;
    margin-top: -4em;
    margin-bottom: -6em;
    transform: scale(0.6);
}

.row_ressources 
{
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    justify-content: flex-start;
    width: 100%;
    cursor: default;
}

.Lien_Ressource 
{
    transition: 0.15s;
    font-style: italic;
    color: #737a78;
    font-weight: 600;
}
.Lien_Ressource:hover 
{
    scale: 1.1;
    transition: 0.15s;
}

.btn-outline-danger 
{
    display: flex;
    align-items: center;
    gap: 1em;
    background-color: #35a87a;
    transform: scale(1.5);
    margin-top: 2em;
    transition: 0.5s;
    padding: 0.4em;
}

.btn-outline-danger:hover
{
    background-color: #51c597;
    transition: 0.5s;
}

.btn-outline-danger:focus
{
    background-color: #35a87a;
}

hr 
{
    border: 1px #35a77a !important;
    height: 0px !important;
    border-style: solid !important;
    width: 100%;
}

#email 
{
    text-align: center;
    background-color: white;
    margin-top: 1em;
    border-radius: 0.8em;
    border-bottom: none;
}

.Link_Part
{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #e6e8e8;
    padding: 1em 1em 2em 1em !important;
    box-shadow: 5px 5px 5px #dddddd;
    border-radius: 0.6em;
}

.dropdown-content li > a 
{
    display: flex;
    justify-content: flex-start;
    color: black;
    align-items: center;
    font-size: large;
}

.language_part 
{
    display: flex;
    justify-content: center;
    padding: 1em;
}

.dropdown-trigger.btn 
{
    background-color: #009426;
    margin: 1em;
    padding-left: 1em;
    padding-right: 1em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    height: auto;
    width: auto;
    font-size: 1.5em;
}

/*.logo_part 
{
    display: flex;
    justify-content: center;
    padding: 1em;
    background-color: #35a77a;
}*/
.carousel-item 
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel 
{
    pointer-events: none; /* Disable mouse interaction */
}

.btn_style2
{
    position: relative;
    display: inline-block;
    color: #adccff !important;
    font-weight: 700;
    border: solid 3px #68a4e2;
    background-color: #28292a;
    font-size: 1.5em;
    padding: 0.5em 0em;
    width: 100%;
    text-align: center;
    overflow: hidden;
    transition: 0.25s;
    cursor: pointer;
}

.btn_style2:hover 
{
    color: #ffffff !important;
    border: solid 3px #f7bc1b;
    background-color: #28292a;
    /*scale: 1.05;*/
}

.btn_style2::before 
{
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: all 0.4s;
    transform: skewX(-20deg);
}

.btn_style2:hover::before 
{
    left: 130%;
    transition: all 0.4s;
}

.iframe
{
    display: none;
}

.collapsible-header 
{
    align-items: center;
    font-size: 1.3em;
    gap: 0em;
    justify-content: flex-start;
    padding: 5px;
    flex-direction: column;
}

.row_pdf
{
    margin-bottom: 0px;
}

/*.page-footer
{
    padding-top: 0px;
    background-color: #ffffff;
}

.footer-copyright 
{
    display: flex;
    flex-direction: column;
    background-color: #fff !important;
    color: #575757 !important;
    font-style: italic;
}*/

@keyframes goodAnswerAnimation-glow 
{
  0% {
    left: -110%;
  }
  50% {
    left: 50%; /* Midway through */
  }
  100% {
    left: 110%; /* End */
  }
}

.animation_green 
{
    color: #ffffff !important; 
    background: linear-gradient(to bottom, #65d281, #00691b);
    font-size: 2em;
    font-weight: bold;
    overflow: hidden;
}

.animation_green::before {
  content: "";
  position: absolute;
  top: 0;
  left: -108%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6), /* white glow */
    transparent
  );
  transform: skewX(-20deg);
  animation: goodAnswerAnimation-glow 0.5s ease-in-out;
}

@keyframes badAnswerAnimation 
{
    0% 
    {
        background: linear-gradient(to bottom, #f66d6d, #8b0000);
        transform: translateX(0);
    }
    10% 
    {
        transform: translateX(-6px);
    }
    20% 
    {
        transform: translateX(6px);
    }
    30% 
    {
        transform: translateX(-6px);
    }
    40% 
    {
        transform: translateX(6px);
    }
    50% 
    {
        transform: translateX(-6px);
    }
    60% 
    {
        transform: translateX(6px);
    }
    70% 
    {
        transform: translateX(-6px);
    }
    80% 
    {
        transform: translateX(6px);
    }
    90% 
    {
        transform: translateX(-6px);
    }
    100%
    {
        background: linear-gradient(to bottom, #f66d6d, #8b0000);
        transform: translateX(0);
    }
}

.animation_red 
{
    background: linear-gradient(to bottom, #f66d6d, #8b0000);
    animation: badAnswerAnimation 0.5s ease-in-out;
    color: white;
    font-weight: bold;
    font-size: 2em;
}

.progress
{
    display: flex;
    flex-direction: row;
    gap: 1em;
    font-size: 2em;
    font-weight: bold;
    background: linear-gradient(to bottom, #4599ff, #003f8b);
}

.circle-clipper .circle 
{
    border-width: 6px;
}

.spinner-layer 
{
    border-color: white;
}

.preloader-wrapper
{
    width: 50px !important;
    height: 50px !important;
}

div#toast-container 
{
    position: fixed;
    display: flex;
    width: 100%;
    top: 10%;
    flex-direction: column;
    align-items: center;
}

.Liste_Microcredits_Lien
{
    font-size: 0.6em;
    display: block;
    background-color: #35a87a;
    color: white;
    cursor: default;
}

@media screen and (min-width : 100px) and (max-width : 600px) 
{
    div#toast-container 
    {
        position: fixed;
        display: flex;
        width: 100%;
        padding: 1em;
        top: 0%;
        flex-direction: column;
        align-items: center;
    }
    .row_ressources 
    {
        flex-direction: column;
    }
    .Liste_Microcredits_Lien
    {
        width: fit-content !important;
        margin-right: auto;
        margin-left: auto;
    }
    .img_logo 
    {
        height: 10em;
        display: flex;
        align-items: center;
    }
    .big_logo 
    {
        transform: scale(0.5);
    }
    .small_logo 
    {
        transform: scale(1.3);
        margin-left: -1.2em;
    }
}

@media screen and (min-width : 601px) and (max-width : 992px) 
{
    div#toast-container 
    {
        position: fixed;
        display: flex;
        width: 100%;
        top: 5%;
        flex-direction: column;
        align-items: center;
    }
    .row_ressources 
    {
        flex-direction: column;
    }
    .Liste_Microcredits_Lien
    {
        width: fit-content !important;
        margin-right: auto;
        margin-left: auto;
    }
    .img_logo
    {
        height: 13em;
        display: flex;
        align-items: center;
    }
    .big_logo 
    {
        transform: scale(0.6);
    }
    .small_logo 
    {
        transform: scale(1.3);
    }
}
