@charset "UTF-8";
@import url("http://185.217.198.82/files/shop25/reset.css");
@font-face {
  font-family: "Montserrat";
  src: url("http://185.217.198.82/files/shop25/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
}
body {
  font-family: "Montserrat";
  background: #FCFCFC;
  display: flex;
  flex-direction: column;
  margin: 0;
}

header {
  width: calc(100% - 20px);
  background: linear-gradient(90deg, #5e6aff 0%, #616be9 52%, #4b53b5 100%);
  margin: 10px;
  padding: 20px 0;
  border-radius: 25px;
}
header .header-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 30px;
  max-width: 80%;
  margin: 0 auto;
}
header .logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
header .logo img {
  max-width: 100%;
  height: auto;
}
header .header-list ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 700;
  color: #fff;
}
header .header-list ul li {
  position: relative;
  cursor: pointer;
  padding: 5px 0;
}
header .header-list ul li::after {
  content: "";
  height: 2px;
  width: 0;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width 0.5s;
}
header .header-list ul li:hover::after {
  width: 100%;
}
header .header-icons {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}
header .header-icons img {
  height: 30px;
  cursor: pointer;
}
header .burger-menu {
  display: none;
}
header .mobile-menu {
  display: none;
}
@media (max-width: 768px) {
  header .header-container {
    grid-template-columns: 1fr 1fr;
  }
  header .header-list {
    display: none;
  }
  header .header-icons {
    display: none;
  }
  header .burger-menu {
    display: flex;
    justify-content: flex-end;
    height: 40px;
  }
  header .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: #fff;
    z-index: 9999;
    padding: 20px;
    text-align: center;
  }
  header .mobile-menu .close-btn {
    text-align: end;
  }
  header .mobile-menu a {
    background: linear-gradient(90deg, #5e6aff 0%, #616be9 52%, #4b53b5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  header .mobile-menu .mobile-list {
    display: grid;
    justify-content: center;
    gap: 3rem;
    font-weight: 700;
    margin-top: 5rem;
    font-size: 1.5rem;
  }
  header .mobile-menu .lang-switch {
    width: 80vw;
    font-size: 1rem;
  }
}

main .wrap {
  width: 80%;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
main .good-container {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 3rem;
  box-shadow: 0 0 89px -39px rgba(0, 0, 0, 0.25);
  background: #fff;
  border-radius: 25px;
  padding: 20px;
  transition: 0.6s;
}
main .good-container:hover {
  transform: scale(1.01);
}
main .img-wrap img {
  background: linear-gradient(135deg, #5e6aff 0%, #616be9 51%, #4b53b5 100%);
  padding: 50px;
  border-radius: 20px;
  height: 300px;
  width: 300px;
}
main .switch {
  position: relative;
  width: 200px;
  height: 40px;
  border-radius: 25px;
}
main .switch input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 220px;
  height: 40px;
  border-radius: 25px;
  background: linear-gradient(90deg, #5e6aff 0%, #616be9 52%, #4b53b5 100%);
  outline: none;
}
main .switch input::before, main .switch input::after {
  z-index: 2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
}
main .switch input::before {
  content: "1 Ð¼ÐµÑÑÑ†";
  left: 20px;
}
main .switch input::after {
  content: "ÐÐ°Ð²ÑÐµÐ³Ð´Ð°";
  right: -5px;
}
main .switch input:checked {
  background: linear-gradient(90deg, #5e6aff 0%, #616be9 52%, #4b53b5 100%);
}
main .switch label {
  z-index: 1;
  position: absolute;
  top: 5px;
  bottom: 5px;
  border-radius: 20px;
}
main .switch input {
  transition: 0.25s;
}
main .switch input:checked::before {
  color: #fff;
  transition: color 0.25s;
}
main .switch input:not(:checked)::before {
  color: #616be9;
  transition: color 1s;
}
main .switch input:checked::after {
  color: #616be9;
  transition: color 1s;
}
main .switch input:checked + label {
  left: 110px;
  right: -15px;
  background: #fff;
  transition: left 0.4s 0.2s, right 0.5s, background 0.35s;
}
main .switch input:not(:checked) {
  background: linear-gradient(90deg, #5e6aff 0%, #616be9 52%, #4b53b5 100%);
  transition: background 0.4s;
}
main .switch input:not(:checked) + label {
  left: 5px;
  right: 100px;
  background: #fff;
  transition: left 0.5s, right 0.4s 0.2s;
}
main .text-wrap {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  justify-content: space-around;
}
main .text-wrap h1 {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #5e6aff 0%, #616be9 52%, #4b53b5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
main .text-wrap p {
  color: #282828;
}
main .text-wrap .good-sec-text {
  color: #f3f3f3;
}
main .text-wrap .none {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: transparent;
}
main .text-wrap .grey {
  color: #B5B5B5;
}
main .text-wrap .radio {
  display: flex;
  align-items: center;
}
main .text-wrap .radio label {
  margin-right: 20px;
  font-size: 1.2rem;
  cursor: default;
}
main .text-wrap .black {
  color: #000;
}
main .text-wrap b {
  margin-right: 30px;
}
main .text-wrap input[type=radio] {
  height: 1.5rem;
  width: 1.5rem;
  margin-right: 5px;
  cursor: pointer;
}
main .underline {
  text-decoration: underline;
}
main .shop-wrap {
  position: relative;
}
main .shop-wrap .shop-elems {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 2rem;
  background: linear-gradient(90deg, #5e6aff 0%, #616be9 52%, #4b53b5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
main .shop-wrap .shop-elems button {
  background: linear-gradient(90deg, #5e6aff 0%, #616be9 52%, #4b53b5 100%);
  border-radius: 10px;
  min-width: 40px;
}
main .shop-wrap .shop-elems button img {
  height: 40px;
  padding: 5px;
}
main .end-wrap {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
main .end {
  display: flex;
}
main .offer {
  color: #fff;
  font-weight: 700;
  background: linear-gradient(90deg, #5e6aff 0%, #616be9 52%, #4b53b5 100%);
  padding: 0.5rem 1rem;
  border-radius: 8px;
}
@media (max-width: 768px) {
  main .good-container {
    display: block;
  }
  main .end-wrap {
    display: block;
    text-align: center;
  }
  main .text-wrap {
    gap: 1rem;
  }
  main .shop-wrap {
    margin-top: 3rem;
  }
  main .offer {
    margin-top: 1rem;
  }
  main .radio label {
    margin-right: 0 !important;
    font-size: 0.8rem !important;
    display: flex;
    justify-content: space-between;
  }
  main .radio input[type=radio] {
    height: 1rem;
    width: 1rem;
  }
  main .wrap {
    width: 90%;
  }
  main .img-wrap img {
    width: 100%;
  }
}

footer {
  background: linear-gradient(90deg, #5e6aff 0%, #616be9 52%, #4b53b5 100%);
}
footer .footer-wrap {
  width: 80%;
  margin: 0 auto;
  line-height: 5rem;
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
}
footer .tg-footer {
  display: flex;
  align-items: center;
}
footer .tg-footer img {
  display: flex;
  align-items: center;
}/*# sourceMappingURL=shop.css.map */