button.btnFill, .btnFill button,
a.btnFill, .btnFill a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  text-decoration: none;
  box-sizing: border-box;
  background-color: #2B6D44;
  color: white;
  border-radius: 20px;
  border: none;
  height: 40px;
  min-width: 90px;
  max-width: 130px;
  padding: 1px 10px 1px 10px;
}
button.btnFill:hover, .btnFill button:hover,
a.btnFill:hover, .btnFill a:hover {
  background-color: #248046;
}
button.btnFill:active, .btnFill button:active,
a.btnFill:active, .btnFill a:active {
  background-color: #153626;
}

button.btnNoFill, .btnNoFill button,
a.btnNoFill, .btnNoFill a, label.btnNoFill {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  text-decoration: none;
  box-sizing: border-box;
  background-color: #fff;
  border: 2px solid #2B6D44;
  border-radius: 20px;
  height: 40px;
  min-width: 90px;
  max-width: 130px;
  padding: 1px 10px 1px 10px;
  overflow: hidden;
}
button.btnNoFill:hover, .btnNoFill button:hover,
a.btnNoFill:hover, .btnNoFill a:hover, label.btnNoFill:hover {
  background-color: rgba(122, 130, 138, 0.15);
}
button.btnNoFill:active, .btnNoFill button:active,
a.btnNoFill:active, .btnNoFill a:active, label.btnNoFill:active {
  background-color: rgba(122, 130, 138, 0.3);
}

button.btnNoFill--allTest, .btnNoFill--allTest button {
  width: calc(50% - 20px);
  max-width: 50%;
  height: 60px;
  font-size: 22px;
  border-radius: 30px;
}
@media (max-width: 1000px) {
  button.btnNoFill--allTest, .btnNoFill--allTest button {
    height: 50px;
    font-size: 18px;
  }
}

button.btnNoFill--nextQuestion, a.btnNoFill--nextQuestion {
  width: 216px;
  max-width: 216px;
  height: 50px;
  border-radius: 44px;
  font-size: 20px;
}
@media (max-width: 550px) {
  button.btnNoFill--nextQuestion, a.btnNoFill--nextQuestion {
    width: 180px;
    height: 40px;
    font-size: 18px;
  }
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.carousel-nav-btn[style*="visibility: hidden"] {
  opacity: 0;
  pointer-events: none;
}
.carousel-nav-btn:hover {
  background-color: rgb(227, 226, 226);
}
.carousel-nav-btn:active {
  background-color: rgb(211, 211, 211);
}
.carousel-nav-btn img {
  width: 24px;
  height: 24px;
}
.carousel-nav-btn--prev {
  left: 10px;
}
.carousel-nav-btn--next {
  right: 10px;
}
@media (max-width: 850px) {
  .carousel-nav-btn .carousel-nav-btn {
    width: 40px;
    height: 40px;
  }
  .carousel-nav-btn .carousel-nav-btn img {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 550px) {
  .carousel-nav-btn .carousel-nav-btn {
    width: 36px;
    height: 36px;
  }
  .carousel-nav-btn .carousel-nav-btn img {
    width: 18px;
    height: 18px;
  }
  .carousel-nav-btn .carousel-nav-btn--prev {
    left: 10px;
  }
  .carousel-nav-btn .carousel-nav-btn--next {
    right: 10px;
  }
}

.home-button {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  box-shadow: 0 0 5px 2px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  will-change: transform;
  backface-visibility: hidden;
  border: none;
}
.home-button:hover {
  transform: scale(1.05);
  cursor: pointer;
}
.home-button.home-button--dark {
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
}
.home-button .home-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}
.home-button .home-icon.home-icon--dark {
  filter: invert(24%) sepia(15%) saturate(1531%) hue-rotate(106deg) brightness(93%) contrast(86%);
}
@media (max-width: 550px) {
  .home-button {
    top: 15px;
    left: 15px;
    width: 36px;
    height: 36px;
  }
  .home-button .home-icon {
    width: 20px;
    height: 20px;
  }
}
@media (hover: none) {
  .home-button:active {
    transform: scale(0.95);
  }
}

.title_input {
  width: 100%;
  font-size: 14px;
  color: #425466;
  padding-bottom: 0;
  margin-bottom: 8px;
  text-align: start;
}

.input_data_field {
  overflow-y: hidden;
  resize: none;
  height: 46px;
  padding: 10px;
  box-sizing: border-box;
  width: 100%;
  border-radius: 6px;
  border-width: 0;
  background: #edf2f7;
  font-size: 14px;
}
.input_data_field[type=password] {
  padding: 0 30px 0 12px;
}
.input_data_field:focus {
  outline: none;
}

.hint {
  color: #43474b;
  font-size: 14px;
  text-align: start;
  margin-top: 2px;
  /*margin-bottom: 2px;*/
}
