.unselectable {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.modern_loading {
    color: transparent;
    width: fit-content;
    background: linear-gradient(270deg, #eeeeee, #ffffff);
    background-size: 400% 400%;

    -webkit-animation: AnimationName 2s ease infinite;
    -moz-animation: AnimationName 2s ease infinite;
    animation: AnimationName 2s ease infinite;
}

.modern_loading_img {
    color: transparent;
    border: none;
    border: 0;
    background: linear-gradient(270deg, #eeeeee, #ffffff);
    background-size: 400% 400%;

    -webkit-animation: AnimationName 2s ease infinite;
    -moz-animation: AnimationName 2s ease infinite;
    animation: AnimationName 2s ease infinite;
}

.inner_bloc {
    background-color: white;
    border-radius: 5px;
    border: 1px solid #A4A4A4;
    opacity: 0.6;
    color: #000000;
    font-family: GothamRoundedMedium_21022;
    font-size: 15px;
    text-align: left;
}

.loading_btn {
    height: 5rem;
    width: 10rem;
    border-radius: 30px;
}

.loading_title {
    font-family: GothamRoundedMedium_21022;
    font-size: 70px;
    margin-bottom: 1rem;
    width: 30%;
    height: 8rem;
}

.loading_text {
    height: 2rem;
    width: 10%;
}

.centerer_button {
    margin: 0 auto;
    display: block;
    text-align: center;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.bloc_shadowless {
    background-color: white;
    border-radius: 40px;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
}