@import url('https://fonts.googleapis.com/css2?family=Poiret+One&display=swap');

.base-text-style {
    color: #000;

    /*text-align: right;*/
    font-family: Poiret One;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.base-lesson-style {
    border-radius: 15px;

    width: max-content;

    border: 1px solid rgba(0, 0, 0, 0.80);

    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    transition: scale 0.01s ease-in-out 100ms;
    margin-bottom: 50px;
}

.base-lesson-style:hover {
    @media (min-width: 1360px){
        scale: 1.01;
    }
}

.transparent {
    background-color: transparent;
}

.none {
    display: none;
}

.dimness {
    height: 100%;
    opacity: 0.5;
    -webkit-filter: brightness(70%);
    pointer-events: none;
}

.rotated {
    transform: rotate(180deg);
    transition: transform 0.2s linear;
}

.scaled {
    scale: 1.1;
}

.prevent-default {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.save-settings-button {
    border-radius: 30px;
    background: #E4A80E;
    border: 0;
    text-align: center;
    padding: 5px 10px;
    font-size: 18px;
    color: white;
    cursor: pointer;
    margin-left: 50px;
}

.back-from-my-profile-button {
    border-radius: 30px;
    background: #E4A80E;
    border: 0;
    text-align: center;
    padding: 5px 10px;
    font-size: 18px;
    color: white;
    cursor: pointer;
    width: 180px;
    height: 40px;
    margin-top: 30px;
    display: none;
}

/*
.back-from-my-profile-button:hover {
    color: #E4A80E;
    background-color: white;
}

.save-settings-button:hover{
    color: #E4A80E;
    background-color: #E5E5E5;
}
*/

@media (hover: hover) {
    @media (min-width: 1360px){
        .base-lesson-style:hover {
            scale: 1.01;
        }
    }

    .back-from-my-profile-button:hover {
        color: #E4A80E;
        background-color: white;
    }

    .save-settings-button:hover{
        color: #E4A80E;
        background-color: #E5E5E5;
    }

}

@media (hover: none) {
    @media (min-width: 1360px){
        .base-lesson-style:active {
            scale: 1.01;
        }
    }

    .back-from-my-profile-button:active {
        color: #E4A80E;
        background-color: white;
    }

    .save-settings-button:active {
        color: #E4A80E;
        background-color: #E5E5E5;
    }
}

.display-none {
    display: none!important;
}

.flex-column{
    flex-direction: column!important;
}