button,
input,
textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
}

.header__select {
  margin: 0 0 -50px 10px;
  padding-bottom: 50px;
}

@media screen and (max-width: 991px) {
  .header__select {
    display: none;
  }
}

.header__select:hover .header__drop {
  display: block !important;
}

.header .switch {
  position: relative;
  width: 81px;
  height: 32px;
  cursor: pointer;
}

@media only screen and (max-width: 991px) {
  .header .switch {
    margin-bottom: 20px;
  }
}

.header .switch label {
  width: 81px;
  height: 32px;
  position: absolute;
  background-color: #9ca3af;
  top: 0;
  left: 0;
  cursor: pointer;
  border-radius: 50px;
}

.header .switch input[type="checkbox"] {
  visibility: hidden;
}

.header .switch label:after {
  content: "";
  width: 44px;
  height: 32px;
  background-color: var(--color-primary);
  border-radius: 35px;
  cursor: pointer;
  position: absolute;
  top: 0px;
  left: 0;
  transition: all 0.1s;
  background-image: url(../../images/white-2.svg);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: center center;
}

.header .switch input[type="checkbox"]:checked + label {
  background-color: #6e6280;
  border-radius: 35px;
  background-image: url(../../images/white.svg);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: 20% center;
}

.header .switch input[type="checkbox"] + label {
  background-image: url(../../images/black-2.svg);
  background-repeat: no-repeat;
  background-color: #f5f5f5;
  background-size: 15px;
  background-position: 80% center;
}

.header .switch input[type="checkbox"]:checked + label:after {
  left: 36px;
  background: var(--color-primary);
  background-image: url(../../images/black.svg);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: center center;
}

.wrapper.active .header .switch label:after {
  background-color: #6c8cd9;
}