@charset "UTF-8";
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}
/* Обнуление */

.hidden {display:none !important;}
.red {background-color:red!important; color:white !important;}
.green {background-color:green!important; color: white !important;;}

.highlighted {
  opacity: 0.4 !important;
}

body:hover {
  cursor: default; 
}

/* frame */
.frame {
  z-index: 999;
  display: none;
  position: absolute;
  left: 50%;
  margin-left: -200px;

  flex-direction: column;
  justify-content: space-around;
  align-items: center;

  width: 400px;
  min-height: 100px;
  border: 2px solid #18b5a4;
  background-color: white;
  font-family: Arial, "sans-serif";
  font-size: 120%;
  font-weight: 600;
  border-radius: 10px;

  text-align: center;
  padding: 10px 5px;  
}

.frame__text {
  margin: 10px 5px;
}

.frame__close {
  transition: all ease-out .3s;
  width: 80%;
  background-color: #18b5a4;
  border: 2px solid #18b5a4;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
}

.frame__close:hover {
  color: #18b5a4;
  background-color: white;
}
/* _____ */

.info {
  min-width: 200px;
  max-width: 400px;
  min-height: 50px;

  position: absolute;

  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: justify;

  padding: 10px 15px;

  border: 2px solid #18b5a4;
  border-radius: 7px;
  background-color: #fff;

  font-family: Arial, sans-serif;
  color: black;

  z-index: 998;
  overflow: scroll;
}



.info__title {
  font-weight: 700;
  font-size: 120%;
  margin-bottom: 10px;
}

.info__text {
  line-height: 17px;
}


.container {
  display: flex;
  flex-direction: row;
}

.button {
  border: 2px solid white;
  border-radius: 5px;
  color: white;
  padding: 10px;
  transition: all ease .3s;
}

.button:hover {
  background-color: #fff;
  color: #18b5a4;
}

/*боковая панель*/
.sidebar {
  height: 100vh;
  border-right: 2px solid white;
  font-family: Arial, sans-serif;
  height: 100vh;
  min-width: 170px;
  width: 20%;
  font-weight: 600;
}

.sidebar h1 {
  font-size: 150%;
  text-align: center;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid white;
  width: 100%;
  min-height: 120px;
  height: 20%;

  overflow: hidden;

  padding: 5%;
  background-color: #18b5a4;
  color:white;
  font-weight: bold;

}

.logo span {
  font-size: 200%;
  letter-spacing: 4px;
  font-weight: bolder;
}

.quizz {
  width: 100%;
  min-height: 40px;
  height: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 10px;

  border-bottom: 2px solid white;
  transition: all ease .2s;

  background-color: #18b5a4;
  color: white;
}

.quizz__text {
  width: 100%;
  font-weight: 700;
}

.quizz__list {
  width: 100%;
  display: none;
  line-height: 20px;
  font-size: 110%;
  font-weight: 600;
}

.quizz:hover {
  height: 20%;
  min-height: 80px;
}

.quizz:hover > .quizz__list {
  display: block;
}

.list__element {
  margin-left: 0;
  transition: all ease .2s;
}

.list__element:hover{
  margin-left: 7px;
}

.scale__wrapper {
  width: 99%;
  border: 2px solid #18b5a4;
  border-radius: 5px;
  padding: 1px;
}

.scale {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  margin: 1px 0;
}

.scale__button {
  padding: 10px 20px;
  color: white;
  background-color: #18b5a4;
  border: 2px solid #18b5a4;
  width: 49%;
  text-align: center;
  transition: all ease-out .3s;
  font-family: Arial, sans-serif;
  font-size: 120%;
  font-weight: 600;
}

.scale__button:hover {
  color: #18b5a4;
  background-color: #fff;
  border-color: #18b5a4;
}

.scale__plus {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.scale__minus {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.scale_container {
  display: flex;
  justify-content: center;
  align-items: center;

  height: 7%;
  width: 100%;
  margin: 1px 0;
}

.scale_value {

  text-align: center;
  width: 98%;
  height: 100%;
  background-color: #18b5a4;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
}

.points {
  margin-top: 2px;
  background-color: #18b5a4;
  padding: 10px 5px;
  color: white;
  line-height: 20px;
  transition: all ease-out .3s;
}

.points__el {
  transition: all ease-out .1s;
  margin-bottom: 5px;
  font-size: 90%;
  font-weight: 500;
}

.points__el:hover {
  font-weight: 700;
}





/* основная часть страницы */



.main {
  width: 100%;
}

.head {
  display: none;
  text-align: center;
  height: 0;
  width: 100%;
  background-color: #18b5a4;
  border: 2px solid white;
  border-top: none;
  border-right: none;
  color: white;

  font-family: Arial, sans-serif;
  font-weight: 600;

  transition: all ease .5s;
}

.head__questions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80%;
}

.questions__question {
  margin-bottom: 10px;
}

.answers {
  margin-top: 10px;
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.answer {
  display: none;
  min-width: 15%;
  border: 2px solid white;
  padding: 3px;
  margin: 0 10px 0 10px;
  padding: 10px;
}

.head__finish {
  display: flex;
  align-items: center;
  width: 20%;
  min-width: 140px;
  height: 100%;
}

.head__finish p {
  width: 80%;
  font-size: 120%;
}

.map {
  height: 833px;
  width: 1118px;
  overflow: scroll;
  margin-left: 0;
  margin-right: 100px;
  position: relative;
}

.map img {
  min-width: 100%;
  min-height: 100%;
  float:left;
  object-fit: cover;
  z-index: 1;
}


.point {
  position: absolute;
  opacity: 0;
  z-index: 1;
  width: 100px;
  height: 100px;
  background-color: rgb(255, 0, 0);
  border-radius: 50%;
}

#point1 {
  left: 190px;
  top: 550px;
}

#point2 {
  left: 780px;
  top: 310px;
}

#point3 {
  left: 550px;
  top: 320px;
}
#point4 {
  width: 50px;
  height: 50px;
  left: 530px;
  top: 290px;
}
#point5 {
  width: 50px;
  height: 50px;
  left: 810px;
  top: 245px;
}
#point6 {
  width: 50px;
  height: 50px;
  left: 590px;
  top: 275px;
}
#point7 {
  width: 50px;
  height: 50px;
  left: 660px;
  top: 140px;
}

#point8 {
  left: 240px;
  top: 340px;
}

#point9 {
  width: 50px;
  height: 50px;
  left: 650px;
  top: 290px;
}

#point10 {
  width: 50px;
  height: 50px;
  left: 420px;
  top: 590px;
}

#point11 {
  width: 50px;
  height: 50px;
  left: 645px;
  top: 420px;
}

@media(max-width: 720px) {
  .head {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .head__questions {
    margin: 10px auto 0 auto;
    width: 100%;
  }

  .head__finish {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .finish__text {
    width: 90%;
  }
}





