@charset "UTF-8";
body {
  background: #101318;
  max-width: 900px;
  margin: 0 auto;
  -webkit-text-size-adjust: none;
  /* Запрещает автоматическое изменение размера текста */
}

.wraper {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
  margin-top: 20px;
  margin-right: 20px;
}

.wraper-input {
  position: relative;
  display: flex;
  align-items: center;
}
.wraper-input .icon {
  position: absolute;
  left: 10px;
  display: flex;
}
.wraper-input .icon svg {
  width: 16px;
  fill: #fff;
  opacity: 0.7;
}

.search-filter {
  font-family: Manrope;
  width: 100%;
  height: 40px;
  border-radius: 7px;
  border: none;
  font-size: 13px;
  background: #282D39;
  color: #fff;
  padding-left: 10px;
  outline: none;
}
@supports (-moz-appearance: none) {
  .search-filter:-moz-placeholder-shown {
    padding-left: 40px;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .search-filter:placeholder-shown {
    padding-left: 40px;
    transition: 0.3s ease-in-out;
  }
  .search-filter:focus:-moz-placeholder-shown {
    padding-left: 10px;
  }
  .search-filter:focus:placeholder-shown {
    padding-left: 10px;
  }
}
.search-filter::-moz-placeholder {
  padding-left: 30px;
  color: #fff;
  opacity: 0.7;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.search-filter::placeholder {
  padding-left: 30px;
  color: #fff;
  opacity: 0.7;
  transition: 0.3s ease-in-out;
}
.search-filter:focus::-moz-placeholder {
  padding-left: 0px;
}
.search-filter:focus::placeholder {
  padding-left: 0px;
}
.search-filter:not(:-moz-placeholder-shown) ~ .icon {
  opacity: 0;
}
.search-filter:not(:placeholder-shown) ~ .icon {
  opacity: 0;
}
.search-filter:focus ~ .icon {
  opacity: 0;
}

header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: fixed;
  z-index: 10;
  background: #111318;
  left: 0;
  right: 0;
  top: 0;
  padding: 20px;
}

main {
  margin-top: 111px;
}

.profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.profile .profile-info {
  display: flex;
  gap: 10px;
  align-items: center;
}
.profile .profile-info img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}
.profile .profile-info .profile-content {
  display: flex;
  flex-direction: column;
  color: #fff;
  font-family: "Manrope";
  font-size: 14px;
}
.profile .profile-info .profile-content .profile-name {
  font-size: 16px;
  font-weight: bold;
  opacity: 1;
}
.profile .profile-info .profile-content span {
  opacity: 0.5;
}
.profile .profile-icon {
  margin-right: 20px;
}

.parameters-title {
  font-family: "Manrope";
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  margin-left: 10px;
  margin-top: 20px;
  overflow: hidden;
}

.border-all {
  border-radius: 5px;
}

.border-bottom {
  border-radius: 0px 0px 5px 5px;
}

.border-top {
  border-radius: 5px 5px 0px 0px;
}

.parameters-container {
  margin-top: 10px;
  font-family: "Manrope";
  color: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 0px solid #008afb;
}
.parameters-container label {
  background: #282D39;
  padding: 8px 10px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.parameters-container label .checkbox {
  display: flex;
}
.parameters-container label .checkbox input {
  display: none;
}
.parameters-container label .checkbox .switch-slider {
  position: relative;
  width: 48px;
  min-height: 24px;
  padding: 3px;
  border-radius: 22px;
  background: #F6F6F6;
  transition: 0.3s ease-in-out;
}
.parameters-container label .checkbox .switch-slider::after {
  content: "";
  position: absolute;
  transition: 0.3s ease-in-out;
  width: 24px;
  height: 24px;
  background: #FFFFFF;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.75);
  border-radius: 50%;
  left: 3px;
}
.parameters-container label .checkbox .switch-check {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}
.parameters-container label .checkbox .switch-check svg {
  display: none;
}
.parameters-container label .checkbox input:checked + .switch-check svg {
  display: block;
}
.parameters-container label .checkbox input:checked + .switch-slider {
  background: #008AFB;
}
.parameters-container label .checkbox input:checked + .switch-slider::after {
  left: 27px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0);
}
.parameters-container label.disable {
  opacity: 0.4;
}
.parameters-container label.founded {
  border: 1px solid #008afb;
}
.parameters-container span.tips {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  margin-left: 10px;
  margin-right: 10px;
  line-height: 16px;
  margin-top: 10px;
}

.parameters-container label .select {
  height: 30px;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
}

.parameters-container label button {
  display: flex;
  flex: 1 1 0;
  height: 35px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  font-family: "Manrope";
  border-radius: 3px;
  background: #008afb;
  color: #FFFFFF;
  outline: none;
  border: none;
  cursor: pointer;
}

.parameters-container label .radio {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}
.parameters-container label .radio input {
  display: none;
}
.parameters-container label .radio svg {
  display: none;
}
.parameters-container label .radio input:checked + svg {
  display: block;
}

.notfounded {
  max-height: 0px;
  margin-top: 0px;
}

.btn-logout {
  background: linear-gradient(98.26deg, #51B2FF 0%, #2672DA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Manrope";
  font-size: 16px;
  cursor: pointer;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-bottom: calc(env(safe-area-inset-bottom) + 61px);
}

.margin-bottom {
  margin-bottom: 10px;
}

.select-wraper,
.select-checkbox-wraper {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0%;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: #101318;
  font-family: "Manrope";
  transition: 0.3s ease-in-out;
  color: #fff;
}
.select-wraper.hiden,
.select-checkbox-wraper.hiden {
  left: 100%;
}
.select-wraper .select-control,
.select-checkbox-wraper .select-control {
  position: relative;
  display: flex;
  font-size: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.select-wraper .select-control .btn-back,
.select-checkbox-wraper .select-control .btn-back {
  left: 20px;
  height: 20px;
  width: 20px;
  display: grid;
  place-items: center;
  position: absolute;
  cursor: pointer;
}

:root {
  --sab: env(safe-area-inset-bottom);
}

.popup {
  --z: 11;
  position: fixed;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: var(--z);
}
.popup .popup-content {
  background: #2393F1;
  color: #fff;
  font-family: Manrope;
  font-weight: bold;
  padding: 10px 30px;
  font-size: 11px;
  border-radius: 10px;
  max-width: 300px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.368627451);
  position: relative;
}
.popup .popup-content img {
  position: absolute;
  top: -23px;
  width: 30px;
  right: 20px;
}
.popup.popup-menu-none {
  bottom: -40px;
}
.popup.popup-menu-visible {
  bottom: calc(env(safe-area-inset-bottom) - 40px);
}

:root {
  --m-space: 71px;
}

.application-menu {
  position: fixed;
  bottom: 0;
  padding-bottom: env(safe-area-inset-bottom);
  left: 0;
  right: 0;
  background: #1E1F25;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px 7px 0px 0px;
  z-index: 80;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}
.application-menu .btn-menu {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.application-menu .btn-menu .selected {
  display: none;
  fill: linear-gradient(130.55deg, #51B1FE -0.49%, #2774DB 100.49%);
}
.application-menu .btn-menu svg {
  fill: #fff;
  height: 26px;
  color: #fff;
}
.application-menu .btn-menu:first-child {
  margin-left: 10px;
}
.application-menu .btn-menu:last-child {
  margin-right: 10px;
}
.application-menu .primary {
  background: linear-gradient(130.55deg, #51B1FE -0.49%, #2774DB 100.49%);
  border-radius: 4px;
}
.application-menu .selected {
  position: relative;
}
.application-menu .selected .main-icon {
  display: none;
}
.application-menu .selected .selected {
  display: block;
}

.mode-1 {
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding-bottom: 0;
  border: none;
  border-radius: 7px;
}

.mode-2 .selected::after {
  content: "";
  position: absolute;
  border-radius: 7px;
  left: calc(50% - 17px);
  top: -1px;
  width: 34px;
  height: 3px;
  background: #51B1FE;
}
.mode-2 .selected .main-icon {
  display: block;
}
.mode-2 .selected .selected {
  display: none;
}

.interactive-menu {
  background: rgba(255, 255, 255, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 75;
  opacity: 1;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.interactive-menu .close-interactive {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 76;
}
.interactive-menu .user-interactive {
  position: absolute;
  max-width: 350px;
  width: 100%;
  background: rgb(25, 28, 33);
  border-radius: 4px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 77;
  display: flex;
  flex-direction: column;
  bottom: calc(env(safe-area-inset-bottom) + 80px);
}
.interactive-menu .user-interactive .interact-content {
  overflow: hidden;
  position: relative;
  z-index: 2;
  border-radius: 4px;
}
.interactive-menu .user-interactive .btn-inter {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 20px;
  font-size: 15px;
  color: #fff;
  font-family: Manrope;
  cursor: pointer;
}
.interactive-menu .user-interactive .btn-inter svg {
  fill: #fff;
  -webkit-text-stroke-color: #fff;
  width: 16px;
}
.interactive-menu .user-interactive .line-inter {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.33);
  display: grid;
}
.interactive-menu .user-interactive .inter-param {
  position: relative;
}
.interactive-menu .user-interactive .inter-param .title {
  display: flex;
  gap: 20px;
  align-items: center;
}
.interactive-menu .user-interactive .inter-param .checkbox {
  position: absolute;
  right: 20px;
  overflow: hidden;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  background: #C0C0C0;
  border-radius: 3px;
}
.interactive-menu .user-interactive .inter-param .checkbox input {
  display: none;
}
.interactive-menu .user-interactive .inter-param .checkbox .switch-check {
  display: none;
  width: 100%;
  height: 100%;
  background: #3C92ED;
}
.interactive-menu .user-interactive .inter-param .checkbox input:checked + .switch-check {
  display: grid;
}
.interactive-menu .user-interactive .btn-inter.disable-true {
  background: rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.6);
}
.interactive-menu .user-interactive .btn-inter.disable-true svg {
  fill: rgba(255, 255, 255, 0.6);
}
.interactive-menu .user-interactive .inter-param.disable-true .checkbox {
  background: rgba(192, 192, 192, 0.6);
}
.interactive-menu .user-interactive .triangle {
  position: absolute;
  bottom: -15px;
  fill: #fff;
}

.interactive-menu.hide {
  opacity: 0;
}

body.menuver[data-orientation="90"], body.menuver[data-orientation="270"] {
  --m-space: 0px;
}
body.menuver[data-orientation="90"] .application-menu, body.menuver[data-orientation="270"] .application-menu {
  bottom: 0;
  top: 0;
  padding-bottom: 0;
  padding-top: 0;
  border-top: none;
  flex-direction: column;
  align-items: center;
}
body.menuver[data-orientation="90"] .application-menu .btn-menu:first-child, body.menuver[data-orientation="270"] .application-menu .btn-menu:first-child {
  margin: 0;
}
body.menuver[data-orientation="90"] .application-menu .btn-menu:last-child, body.menuver[data-orientation="270"] .application-menu .btn-menu:last-child {
  margin: 0;
}
body.menuver[data-orientation="90"] {
  margin-left: 75px;
}
body.menuver[data-orientation="90"] .application-menu {
  left: 0;
  right: auto;
  padding-left: 10px;
  border-radius: 0px 7px 7px 0px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
body.menuver[data-orientation="270"] {
  margin-right: 75px;
}
body.menuver[data-orientation="270"] .application-menu {
  left: auto;
  right: 0;
  padding-right: 10px;
  border-radius: 7px 0px 0px 7px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

body.menuver[data-orientation="270"] .interactive-menu .user-interactive {
  right: 90px;
}
body.menuver[data-orientation="270"] .interactive-menu .user-interactive .triangle {
  transform: rotate(-90deg);
  bottom: auto;
  right: -18px;
}
body.menuver[data-orientation="0"] .interactive-menu .user-interactive {
  bottom: calc(env(safe-area-inset-bottom) + 80px);
}
body.menuver[data-orientation="90"] .interactive-menu .user-interactive {
  left: 90px;
}
body.menuver[data-orientation="90"] .interactive-menu .user-interactive .triangle {
  transform: rotate(90deg);
  bottom: auto;
  left: -18px;
}

.windowed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  color: #FFF;
  font-family: "Manrope";
  display: block;
  transition: 0.3s ease-in-out;
}

.windowed-right {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-family: "Manrope";
  display: block;
  transition: 0.3s ease-in-out;
  z-index: 300;
  color: #FFF;
}

.windowed.hide,
.windowed-right.hide {
  display: none;
}
.windowed.hide .hide-window,
.windowed-right.hide .hide-window {
  opacity: 0;
}
.windowed .hide-window,
.windowed-right .hide-window {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  transition: 0.3s ease-in-out;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  cursor: pointer;
}

.windowed-right .window-content {
  background: #101318;
  border-radius: 0;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  flex-direction: column;
  overscroll-behavior: contain;
  overflow-y: auto;
  transition: 0.3s ease-in-out;
  transform: translateX(100%);
}
.windowed-right .window-content .content-wraper, .windowed-right .window-content .content-wrapper {
  padding-top: 20px;
  padding-left: calc(env(safe-area-inset-left) + 20px);
  padding-right: calc(env(safe-area-inset-right) + 20px);
  padding-bottom: max(20px, env(safe-area-inset-bottom));
  display: grid;
}
.windowed-right .window-content.hide {
  display: none;
}

.windowed .window-content {
  background: #101318;
  border-radius: 5px 5px 0px 0px;
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  right: 0;
  flex-direction: column;
  overflow-y: auto;
  transition: 0.3s ease-in-out;
  transform: translateY(100%);
}
.windowed .window-content .content-wraper, .windowed .window-content .content-wrapper {
  padding-left: calc(env(safe-area-inset-left) + 20px);
  padding-right: calc(env(safe-area-inset-right) + 20px);
  padding-top: 20px;
  padding-bottom: max(20px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.windowed .window-content.hide {
  display: none;
}
.windowed .window-content.border-hide {
  border-radius: 0px 0px 0px 0px;
}

@media screen and (min-width: 900px) {
  .windowed .window-content .content-wraper, .windowed .window-content .content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
  }
  .windowed-right .window-content {
    left: auto;
    max-width: 400px;
    width: 100%;
  }
}
.window-select .window-content, .window-select-mehr .window-content {
  max-height: calc(100dvh - env(safe-area-inset-top));
  overflow-y: hidden;
}
.window-select .window-content .content-wraper, .window-select-mehr .window-content .content-wraper {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto auto auto;
  overflow-y: hidden;
}
.window-select .window-content .content-wraper .window-bar, .window-select-mehr .window-content .content-wraper .window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.window-select .window-content .content-wraper .window-bar .window-title, .window-select-mehr .window-content .content-wraper .window-bar .window-title {
  font-size: 14px;
}
.window-select .window-content .content-wraper .window-bar .window-close, .window-select-mehr .window-content .content-wraper .window-bar .window-close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.window-select .window-content .content-wraper .window-bar .window-close svg, .window-select-mehr .window-content .content-wraper .window-bar .window-close svg {
  fill: #fff;
  width: 10px;
}
.window-select .window-content .content-wraper .content-selectes, .window-select .window-content .content-wraper .content-selectes-more, .window-select-mehr .window-content .content-wraper .content-selectes, .window-select-mehr .window-content .content-wraper .content-selectes-more {
  background: #203544;
  border-radius: 5px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.window-select .window-content .content-wraper .content-selectes .selectes, .window-select .window-content .content-wraper .content-selectes-more .selectes, .window-select-mehr .window-content .content-wraper .content-selectes .selectes, .window-select-mehr .window-content .content-wraper .content-selectes-more .selectes {
  color: #fff;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}
.window-select .window-content .content-wraper .content-selectes .selectes .variant, .window-select .window-content .content-wraper .content-selectes-more .selectes .variant, .window-select-mehr .window-content .content-wraper .content-selectes .selectes .variant, .window-select-mehr .window-content .content-wraper .content-selectes-more .selectes .variant {
  font-family: Manrope;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
  height: 45px;
  align-items: center;
  padding-left: 10px;
}
.window-select .window-content .content-wraper .content-selectes .selectes .variant .variant-key, .window-select .window-content .content-wraper .content-selectes-more .selectes .variant .variant-key, .window-select-mehr .window-content .content-wraper .content-selectes .selectes .variant .variant-key, .window-select-mehr .window-content .content-wraper .content-selectes-more .selectes .variant .variant-key {
  font-weight: 700;
}
.window-select .window-content .content-wraper .content-selectes .selectes .variant .variant-selected, .window-select .window-content .content-wraper .content-selectes-more .selectes .variant .variant-selected, .window-select-mehr .window-content .content-wraper .content-selectes .selectes .variant .variant-selected, .window-select-mehr .window-content .content-wraper .content-selectes-more .selectes .variant .variant-selected {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
}
.window-select .window-content .content-wraper .content-selectes .selectes .variant .variant-selected .circle, .window-select .window-content .content-wraper .content-selectes-more .selectes .variant .variant-selected .circle, .window-select-mehr .window-content .content-wraper .content-selectes .selectes .variant .variant-selected .circle, .window-select-mehr .window-content .content-wraper .content-selectes-more .selectes .variant .variant-selected .circle {
  display: grid;
  width: 14px;
  height: 14px;
  background: #3587E6;
  border-radius: 50%;
}
.window-select .window-content .content-wraper .content-selectes .selectes .voice-save, .window-select .window-content .content-wraper .content-selectes-more .selectes .voice-save, .window-select-mehr .window-content .content-wraper .content-selectes .selectes .voice-save, .window-select-mehr .window-content .content-wraper .content-selectes-more .selectes .voice-save {
  min-width: 45px;
  min-height: 45px;
  max-width: 45px;
  max-height: 45px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.window-select .window-content .content-wraper .content-selectes .selectes .voice-save svg, .window-select .window-content .content-wraper .content-selectes-more .selectes .voice-save svg, .window-select-mehr .window-content .content-wraper .content-selectes .selectes .voice-save svg, .window-select-mehr .window-content .content-wraper .content-selectes-more .selectes .voice-save svg {
  fill: #fff;
  width: 14px;
}
.window-select .window-content .content-wraper .content-selectes .selectes .voice-save .select, .window-select .window-content .content-wraper .content-selectes-more .selectes .voice-save .select, .window-select-mehr .window-content .content-wraper .content-selectes .selectes .voice-save .select, .window-select-mehr .window-content .content-wraper .content-selectes-more .selectes .voice-save .select {
  display: none;
}
.window-select .window-content .content-wraper .content-selectes .selectes .voice-save.select svg.select, .window-select .window-content .content-wraper .content-selectes-more .selectes .voice-save.select svg.select, .window-select-mehr .window-content .content-wraper .content-selectes .selectes .voice-save.select svg.select, .window-select-mehr .window-content .content-wraper .content-selectes-more .selectes .voice-save.select svg.select {
  display: block;
  fill: #3587E6;
}
.window-select .window-content .content-wraper .content-selectes .selectes .voice-save.select svg.unselect, .window-select .window-content .content-wraper .content-selectes-more .selectes .voice-save.select svg.unselect, .window-select-mehr .window-content .content-wraper .content-selectes .selectes .voice-save.select svg.unselect, .window-select-mehr .window-content .content-wraper .content-selectes-more .selectes .voice-save.select svg.unselect {
  display: none;
}
.window-select .window-content .content-wraper .content-selectes .selectes.empty, .window-select .window-content .content-wraper .content-selectes-more .selectes.empty, .window-select-mehr .window-content .content-wraper .content-selectes .selectes.empty, .window-select-mehr .window-content .content-wraper .content-selectes-more .selectes.empty {
  height: 45px;
  display: grid;
  place-items: center;
  font-family: Manrope;
  font-size: 15px;
  justify-content: center;
}
.window-select .window-content .content-wraper .content-selectes .selectes.select, .window-select .window-content .content-wraper .content-selectes-more .selectes.select, .window-select-mehr .window-content .content-wraper .content-selectes .selectes.select, .window-select-mehr .window-content .content-wraper .content-selectes-more .selectes.select {
  background: #3587E6;
}
.window-select .window-content .content-wraper .content-selectes .selectes.select .variant .variant-selected .circle, .window-select .window-content .content-wraper .content-selectes-more .selectes.select .variant .variant-selected .circle, .window-select-mehr .window-content .content-wraper .content-selectes .selectes.select .variant .variant-selected .circle, .window-select-mehr .window-content .content-wraper .content-selectes-more .selectes.select .variant .variant-selected .circle {
  background: #fff;
}
.window-select .window-content .content-wraper .window-footer, .window-select-mehr .window-content .content-wraper .window-footer {
  color: rgba(255, 255, 255, 0.6);
  display: grid;
  place-items: center;
  padding: 8px 10px;
  cursor: pointer;
}

.window-app-size .window-content {
  max-height: calc(100dvh - env(safe-area-inset-top));
  overflow-y: hidden;
}
.window-app-size .window-content .content-wraper {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto auto auto auto;
  overflow-y: hidden;
}
.window-app-size .window-content .content-wraper .window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.window-app-size .window-content .content-wraper .window-bar .window-title {
  font-size: 14px;
}
.window-app-size .window-content .content-wraper .window-bar .window-close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.window-app-size .window-content .content-wraper .window-bar .window-close svg {
  fill: #fff;
  width: 10px;
}
.window-app-size .window-content .content-wraper .block-title {
  font-size: 14px;
  background: #1f2329;
  display: flex;
  justify-content: space-between;
  min-height: 45px;
  align-items: center;
  padding: 0px 10px;
  font-weight: bold;
}
.window-app-size .window-content .content-wraper .block-title span {
  font-weight: normal;
}
.window-app-size .window-content .content-wraper .wrapper-storage {
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  border-radius: 5px;
}
.window-app-size .window-content .content-wraper .list-local-storage,
.window-app-size .window-content .content-wraper .list-session-storage,
.window-app-size .window-content .content-wraper .list-app-storage {
  background: #292d39;
}
.window-app-size .window-content .content-wraper .list-local-storage .storage-element,
.window-app-size .window-content .content-wraper .list-session-storage .storage-element,
.window-app-size .window-content .content-wraper .list-app-storage .storage-element {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 0px 10px;
  height: 40px;
  align-items: center;
}
.window-app-size .window-content .content-wraper .list-local-storage .storage-element div,
.window-app-size .window-content .content-wraper .list-session-storage .storage-element div,
.window-app-size .window-content .content-wraper .list-app-storage .storage-element div {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding-right: 20px;
}
.window-app-size .window-content .content-wraper .data-controls {
  display: flex;
  gap: 10px;
}
.window-app-size .window-content .content-wraper .data-controls .btn {
  padding: 10px 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #282D39;
  border-radius: 5px;
  width: 100%;
}
.window-app-size .window-content .content-wraper .data-controls .btn svg {
  height: 16px;
  fill: #fff;
}
.window-app-size .window-content .content-wraper .window-footer {
  color: rgba(255, 255, 255, 0.6);
  display: grid;
  place-items: center;
  padding: 8px 10px;
  cursor: pointer;
}

@media screen and (min-width: 900px) {
  .select-wraper .select-control,
  .select-checkbox-wraper .select-control {
    max-width: 900px;
    margin: 20px auto 0 auto;
  }
  .select-checkbox-wraper .wraper,
  .select-wraper .wraper {
    max-width: 900px;
    margin: 20px auto 0 auto;
  }
  header {
    max-width: 860px;
    left: auto;
    right: auto;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
body[data-orientation="90"].menuver header > .profile-link,
body[data-orientation="90"].menuver .wraper-input {
  margin-left: 75px;
}
body[data-orientation="90"].menuver .wraper-input .search-filter {
  margin-left: 10px;
}
body[data-orientation="90"].menuver .wraper-input .icon {
  left: 20px;
}
body[data-orientation="90"] main > div,
body[data-orientation="90"] .wraper-input {
  margin-right: max(10px, env(safe-area-inset-right));
  margin-left: 10px;
}
body[data-orientation="270"].menuver header > .profile-link,
body[data-orientation="270"].menuver .wraper-input {
  margin-right: 75px;
}
body[data-orientation="270"].menuver .search-filter {
  margin-right: 10px;
}
body[data-orientation="270"] main > div,
body[data-orientation="270"] .wraper-input {
  margin-left: max(20px, env(safe-area-inset-left));
  margin-right: 10px;
}