@font-face {
  font-family: Ermilov;
  src: url(../font/Ermilov.otf);
}
.top-menu-container {
  font-family: Ermilov;
  color: #252525;
  width: 422px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  position: absolute;
}
@media screen and (max-height: 380px) {
  .top-menu-container {
    transform-origin: 0 0;
    transform: scale(0.8);
  }
}

.top-menu-switch-container {
  display: grid;
  grid-template-columns: 90px auto;
  align-items: center;
  margin: 15px 0;
  /* Rounded sliders */
}
.top-menu-switch-container .top-menu-switch {
  position: relative;
  display: inline-block;
  width: 64px;
  height: 26px;
  margin-left: 8px;
}
.top-menu-switch-container .top-menu-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.top-menu-switch-container .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}
.top-menu-switch-container .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  background-color: #5f5f5f;
  transition: 0.4s;
}
.top-menu-switch-container input:checked + .slider:before {
  transform: translateX(38px);
  background-color: #24c570;
}
.top-menu-switch-container .slider.round {
  border-radius: 34px;
  outline: 3px solid #ccc;
  outline-offset: 4px;
}
.top-menu-switch-container .slider.round:before {
  border-radius: 50%;
}

.top-menu-header {
  transition: 0.5s;
}

.tm-header-inactive {
  color: #ccc;
}

.config-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -17px;
  gap: 8px;
}

.config-menu-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  box-sizing: border-box;
  border-radius: 100px;
  background: white;
  justify-content: center;
  align-items: center;
  padding: 5px;
  padding-bottom: 7px;
  box-shadow: inset 0 0 0 0px #24c570;
  border: 2px solid #cfcfcf;
  fill: #7c7c7c;
  transition: 0.2s;
}
.config-menu-icon:hover {
  transform: scale(1.1);
}
.config-menu-icon:active {
  transform: scale(0.9);
}

.return-btn-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-self: center;
}

.tworow-container {
  width: 190px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 26px 20px;
}

.top-menu-bigbtn {
  background-color: #24c570;
  color: white;
  border-radius: 36px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.bigbtn-subtext {
  font-size: 7pt;
  text-align: center;
  margin: 4px 0;
}

.house-switch-container {
  display: flex;
  width: 422px;
  height: 180px;
  border-radius: 20px;
  background: white;
  align-items: center;
  justify-content: space-evenly;
}
.house-switch-container h4 {
  margin: 8px 0;
  font-size: 12px;
}

.house-switch-icon {
  width: 114px;
  height: 114px;
  border: 0px solid #24c570;
  box-sizing: border-box;
}/*# sourceMappingURL=module_topmenu.css.map */