/* language */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

.language {
    position: fixed;
    right: 0px;
    top: 0px;
    display: flex;
    z-index:99999999;
    background-color: #86c46e;
    padding: 5px 20px;
    border-radius: 10px;
}

.ru-language, .en-language, .divider-language{
    font-family: "Nunito", sans-serif;
    color: white;
    font-weight: bold;
}

.divider-language{
    margin-left: 5px;
    margin-right: 5px;
}

.ru-language, .en-language{
    cursor: pointer;
}

.ru-language:hover, .en-language:hover{
    transform: scale(1.05);
}

/* Эта часть отвечает за то чтобы кнопки находились фиксировано на странице*/

.page_fix {
    top: 0 !important;
    position: static !important;
}

/* Эта часть отвечает за то чтобы не было видно надписи – Переводчик Google */

.skiptranslate {
    display: none !important;
}