* {
    padding: 0;
    margin: 0;
}

:root {
    /* --borderGreen: rgb(0, 129, 15); */
    /* --backGreen: #0082d6;
    --backGreenHover: #28a9ff; */

    --borderGreen: white;
    --middleBackBlue: #2eabff;
    --backBlue: #0082d6;

    --borderGreen: rgb(0, 129, 15);
    --backGreen: rgb(26, 104, 0);
    --backGreenHover: rgb(34, 137, 0)
}

body {
    font-size: 40px;
    color: white;
    /* width: 100vw !important; */
    height: 100vh !important;
    overflow: hidden;
    background-color: rgb(11, 10, 15);
    background-size: cover;
    /* font-family:Verdana, Geneva, Tahoma, sans-serif; */
}

/* убираем longtap для IOS */
body, *, span, div {
    -webkit-touch-callout: none; /* Отключение контекстного меню (iOS) */
    -webkit-user-select: none; /* Запрещение выделения текста (iOS) */
    -khtml-user-select: none; /* Запрещение выделения текста (Konqueror) */
    -moz-user-select: none; /* Запрещение выделения текста (Firefox) */
    -ms-user-select: none; /* Запрещение выделения текста (Internet Explorer/Edge) */
    user-select: none; /* Запрещение выделения текста (стандартный) */
}

/* flex */
.flex-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.flex-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.h1 {
    font-size: 8vh;
    font-weight: 600;
    color: rgb(0, 129, 15);
    border: 1vh solid var(--borderGreen);
    border-radius: 50vh;
    padding: 0 3vh 1vh;
    text-align: center;
}

.h2 {
    font-size: 4vh;
    /* font-weight: 600; */
    /* color: rgb(0, 154, 18);
    border: 1vh solid rgb(0, 154, 18); */
    background-color: var(--backGreen);
    color: white;
    border: 1vh solid var(--borderGreen);
    border-radius: 6vh;
    padding: 1vh 4vh;
    text-align: center;
}

/* КНОПКИ */

/* иконка видео */
.playVideoIconContainer {
    font-size: 3vh;
    background-color: rgb(24, 96, 0);
    padding: 2vh 4vh;
    cursor: pointer;
}
.playVideoIconContainerHover {
    border: 1vh solid var(--borderGreen);
    background-color: rgb(21, 84, 0);
}
.playVideoIcon {
    margin-bottom: 2vh;
    width: 15vh;
}

/* кнопка закрыть */
.closeIcon {
    position: absolute;
    top: 2vh;
    right: 2vh;
    width: 4vw;
    cursor: pointer;
    /* background-color: var(--backGreen); */
}
.closeIconHover {
    filter: contrast(130%);
}





/* окно загрузки */
/* окно загрузки */
.loadingWindow {
    z-index: 12;
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: rgb(11, 10, 15);
    color: white;
    font-size: 12vh;
    background-size: cover;

    /* этот чёткий, как Валюха */
    font-family: Verdana, Geneva, Tahoma, sans-serif;

    /* этот класс */
    /* font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */

    /* этот хороший, но фуееее */
    /* font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; */

    /* анимация */
    transition: all 0.3s ease; /* Добавляем вендорный префикс для Webkit браузеров (например, Safari) */
    -webkit-transition: all 0.3s ease;
    opacity: 1;
}
.secondLoadingWindow {
    z-index: 11 !important;
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: rgb(11, 10, 15);
    color: white;
    font-size: 12vh;
    background-size: cover;

    /* этот чёткий, как Валюха */
    font-family: Verdana, Geneva, Tahoma, sans-serif;

    /* этот класс */
    /* font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */

    /* этот хороший, но фуееее */
    /* font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; */

    /* анимация */
    transition: all 0.7s ease; /* Добавляем вендорный префикс для Webkit браузеров (например, Safari) */
    -webkit-transition: all 0.7s ease;
    opacity: 1;
}


/* меню */
.menu {
    width: 100vw;
    height: 100vh;
    justify-content: space-around;
    background-color: rgb(11, 10, 15);
    position: absolute;
    background-image: url("source/back.jpg");
    background-size: cover;
    background-position: bottom;
    z-index: 2;
    /* background-position: center; */
}

.menuTitleContainer {
    border: 1vh solid var(--borderGreen);
    border-radius: 50vh;
    padding: 2vh 4vh 1vh;
    background-color: var(--backGreen);
}

.menuTitle {
    width: 50vw;
}

/* наши игры */
.ourGames {
    width: calc(9.2vw + 9.2vh);
    height: calc(4vw + 4vh);
    position: absolute;
    top: 3vh;
    right: 3vh;
    cursor: pointer;
    background-color: rgb(11, 10, 15);
    border: calc(0.2vh + 0.2vw) solid var(--borderGreen);
    border-radius: calc(1.2vh + 1.2vw);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    overflow: hidden;
}
.ourGamesHover {
    border-color: #ff6633;
}
.ourGamesLogo {
    width: calc(9.2vw + 9.2vh);
    height: calc(4vw + 4vh);
    position: absolute;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    opacity: 1;
    z-index: 2;
    width: 100%;
}
.ourGamesLogoHover {
    opacity: 0; 
}
.ourGamesLogo2 {
    width: calc(9.2vw + 9.2vh);
    height: calc(4vw + 4vh);
    position: absolute;
    z-index: 1;
    width: 100%;
}




/* уровни */
.levelsContainer {
    width: 100%;
}
.levels {
    width: 100%;
    justify-content: space-around;
}

/* подпись уровня */
.level {
    position: relative;
    width: 25vw;
    padding: 5vh 15vw;
    /* border: 1px solid rgb(59, 59, 59); */
    text-align: center;
    color: white;
    background-color: var(--backGreen);
    cursor: pointer;
    padding: 0 3vh 1.5vh;
    font-size: 1.5vw;

    /* border: 1vh solid rgb(23, 174, 0) !important; */
}
.levelHover {
    background-color: var(--backGreenHover);
}
/* недоступный уровень */
.lockedLevel {
    background-color: rgb(16, 65, 0);
    color: rgb(166, 166, 166);
}
.lockedLevelHover {
    background-color: rgb(16, 65, 0);
}

/* замочек */
.lockedLevelIcon {
    position: absolute;
    width: 3vw;
    right: 2vh;
    top: 1vh;
}

/* модальное окно для заблокированного уровня */
.modalBlockedLevelContainer {
    top: 0;
    right: 0;
    display: none;
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.443);
}
.modalBlockedLevel {
    background-color: var(--backGreen);
    border: 1vh solid var(--borderGreen);
    padding: 3vh 7vw;
    position: relative;
    justify-content: space-around;
    width: 40vw;
    /* height: 40vh; */
    z-index: 3;
}
.modalBlockedLevel .navToMenuContainer {
    position: unset;
}




/* поле игры */
.questionsContainer {
    display: none;
    justify-content: space-between;
    padding: 1vh 1vw;
    height: calc(100% - 2vh);
    /* box-sizing: border-box; */
    /* height: inherit; */
    /* max-height: 98vh !important; */
    /* min-height: 100vh !important; */
    background-image: url("source/two opacity.jpg");
    background-size: cover;
    background-position: bottom;
}

/* шапка */
.fieldHeader {
    width: 100%;
    justify-content: space-between;
    flex-shrink: 0;
    height: 10vh;
}

/* фото и вопрос */
.photoAndQuestion {
    height: 100%;
    flex-shrink: 10;
}
/* вопрос */
.question {
    font-size: 3.2vh;
}
/* фото вопроса */
.questionPhoto {
    height: 45vh;
    border: 5px solid rgb(255, 255, 255);
    border-radius: 20px;
}

/* варианты ответов */
.variants {
    flex-shrink: 0;
    width: 100vw;
    height: fit-content;
    max-height: 30vh;
    flex-wrap: wrap;
    flex-basis: 50%;
}
/* вариант ответа */
.variant {
    width: 40vw;
    /* min-width: 30vw; */
    max-height: 14vh;
    /* padding: 10px; */
    border: 1vh solid var(--borderGreen);
    /* box-shadow: 0 0 0 0.7vh var(--backBlue); */
    /* border-radius: 5px; */
    /* text-align: center; */
    /* flex-basis: 40%; */
    /* margin: 0 40vw; */
    background-color: var(--backGreen);
    font-size: 3.2vh;
    min-height: 8vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
}
.variantHover {
    background-color: rgb(34, 137, 0);
}




/* окно результатов уровня */
.levelResults {
    display: none;
    width: 100%;
    /* height: 100vh; */
    background-color: white;
    position: relative;
    background-image: url("source/three.jpg");
    background-size: cover;
    /* padding: 1vh 1vw; */
    height: 100%;
}

/* статус */
.status {
    flex-shrink: 10;
    /* height: 100%; */
}

/* фото статуса */
.statusPhoto {
    height: 40vh;
    border: 5px solid rgb(7, 43, 0);
    border-radius: 20px;
}

/* подвал счета */
.score-footer {
    width: 100%;
    justify-content: space-around;
    height: 100%;
    flex-shrink: 10;
    max-height: 27vh;
}

/* счет */
/* .score {
    gap: 10px;
} */

/* navToMenu */
.navToMenuContainer {
    position: absolute;
    cursor: pointer;
    top: 3vh;
    right: 3vh;
    background-color: var(--backGreen);
    border: 1vh solid var(--borderGreen);
    border-radius: 6vh;
    padding: 0.5vh 1vh 1vh;
    font-size: 6vh !important;
}
/* navToMenuLevel */
.navToMenuLevel {
    top: 13vh;
    left: 1vw;
    right: unset !important;
    bottom: unset !important;
    border-radius: 4vh;
    padding: 0.5vh 1.7vh 1vh !important;
}
.navToMenuLevel span {
    font-size: 2.5vh !important;
}
.navToMenu {
    /* position: absolute; */
    white-space: nowrap;
    border-radius: 5px;
    text-align: center;
    font-size: 2.5vh;
    font-weight: bold;
    color: rgb(255, 255, 255);
    align-items: center;
}
.navToMenuLevel .korovkaSprite {
    width: 8vh;
    height: 7vh;
    background-image: url("source/korovkaSprite.png");
    background-size: cover;
  }
  
  .navToMenuLevel .korovkaSpriteHover {
    background-position: 8vh 0;
  }

.korovkaSprite {
    width: 8vh;
    height: 7vh;
    background-image: url("source/korovkaSprite.png");
    background-size: cover;
  }
  
  .korovkaSpriteHover {
    background-position: 8vh 0px;
  }

  .smallKorovkaSprite {
    width: 6vh !important;
    height: 5.25vh !important;
  }
  .smallKorovkaSpriteHover {
    background-position: 6vh 0px !important;
  }
/* .navToMenu:hover {
    border: 1px solid rgb(0, 255, 8);
} */