@charset "UTF-8";
:root {
  --color-white: #fff;
  --color-black: #000;
  --color-dark: #111;
  --color-border: #cdd7e1;
  --color-gray: #6b6b6b;
  --color-purple: #7036a1;
  --color-blue: #6495ed;
  --transition: 0.3s all ease;
  --container-width: 90rem;
  --container-padding: 1.25rem;
  --gradient-low: linear-gradient(90deg, rgba(113, 51, 139, 0.1) 0%, rgba(14, 61, 130, 0.1) 100%);
  --gradient-full: linear-gradient(90deg, rgb(113, 51, 139) 0%, rgb(0, 153, 206) 100%);
}
@media (width <= 90.06125rem) {
  :root {
    --container-width: 80rem;
  }
}

html {
  font-size: 1rem;
}

body {
  font-family: "Nunito", sans-serif;
}

a {
  text-decoration: none;
}

h1.h1 {
  font-size: 2.25rem;
  color: var(--color-purple);
}

.title {
  margin: 1.25rem 0rem;
}
.title__h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  color: var(--color-purple);
}

/*utils*/
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-menu {
  padding: 15px 15px;
  min-width: 13.125rem;
  height: auto;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 22px rgba(0, 0, 0, 0.1490196078);
}
.dropdown__title {
  color: var(--color-dark);
  font-weight: 400;
  text-shadow: 0 0 0 var(--color-dark);
  cursor: pointer;
}
.dropdown__title:hover {
  text-shadow: none;
}
.dropdown__title:hover svg {
  stroke: #000;
}

@media (max-width: 1200px) {
  .container {
    max-width: calc(100% - 30px);
  }
}
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
  margin: 0px;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

.header {
  margin: 1.25rem 0rem;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
@media (width <= 90.06125rem) {
  .header__inner {
    flex-wrap: wrap;
    position: relative;
  }
}
.header__yandex {
  position: fixed;
  bottom: 0;
  right: 5px;
  z-index: 10;
}
.header__address {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}
.header__address:first-child {
  border-bottom: 1px solid var(--color-blue);
  padding-bottom: 5px;
  margin-bottom: 5px;
}
.header__address-number {
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-purple);
}
.header__address-telephone {
  color: var(--color-blue);
}
.header__telephone {
  color: var(--color-blue);
}
.header__telephone:hover {
  text-decoration: underline;
}
.header__profile {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
  background-color: #f2f5f8;
}
.header__profile svg {
  width: 1.5625rem;
  fill: var(--color-gray);
}
@media (width <= 63.99875rem) {
  .header__profile {
    margin-left: auto;
  }
}
.header__cart {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
  height: 3.125rem;
  background-color: var(--color-blue);
  box-shadow: 0 0.1875rem 1.25rem rgba(100, 149, 237, 0.4117647059);
  border-radius: 1.875rem;
  padding: 0.3125rem 0.9375rem;
  transition: 0.3s all ease;
}
@media (width <= 47.99875rem) {
  .header__cart {
    position: fixed;
    bottom: 0.9375rem;
    left: 50%;
    z-index: 10;
    transform: translateX(-50%);
  }
}
.header__cart:before {
  content: "";
  background-image: url(../image/svg/basket.svg);
  background-repeat: no-repeat;
  width: 1.875rem;
  height: 1.875rem;
}
.header__cart:hover {
  box-shadow: 0 3px 20px var(--color-blue);
  transition: 0.3s all ease;
}
.header__cart-quantity {
  color: #fff;
  font-size: 1rem;
}
.header__category-btn {
  color: var(--color-blue);
  text-shadow: 0 0 0 var(--color-blue);
}
.header__category-btn:hover {
  text-shadow: none;
}
.header__category-btn:before {
  content: "";
  display: inline-block;
  background-image: url(../image/svg/catalog.svg);
  background-repeat: no-repeat;
  width: 1.25rem;
  height: 1.25rem;
  vertical-align: sub;
  margin-right: 0.3125rem;
}
@media (width <= 74.9375rem) {
  .header__search {
    order: 10;
    width: 100%;
  }
}
.header__body {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9375rem;
  background-color: var(--color-white);
  padding: 0.625rem 0.625rem;
  border-radius: 0.625rem;
}
.header__menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-left: 0px;
}
.header__menu-link {
  font-size: 1rem;
  color: var(--color-dark);
  text-shadow: 0 0 0 var(--color-dark);
}
.header__menu-link:hover {
  text-shadow: none;
}

/*Модальное окно при добавление товара */
.modal-cart__wrap {
  position: fixed;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  width: 100%;
  bottom: 0px;
  left: 0px;
  z-index: 100;
  background-color: var(--color-white);
  border-radius: 0.625rem;
  padding: 1.25rem;
  -webkit-backdrop-filter: blur(0.5rem);
  backdrop-filter: blur(0.5rem);
  box-shadow: 0 3px 22px rgba(0, 0, 0, 0.1490196078);
}

.modal-cart__close {
  margin-left: auto;
  width: 50px;
  height: 50px;
  background-color: #6495ed;
  color: #fff;
  display: block;
  border-radius: 4px;
  font-size: 24px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo__img {
  width: 70px;
  margin-right: 10px;
}
.logo__name {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  background: linear-gradient(90deg, rgb(113, 51, 139) 0%, rgb(0, 153, 206) 100%);
  -webkit-background-clip: text;
  color: transparent;
  text-transform: uppercase;
}

@media (width <= 30.06125rem) {
  .slideshow {
    display: none;
  }
}

.featured {
  margin-bottom: 5rem;
  position: relative;
}
@media (width <= 47.99875rem) {
  .featured {
    margin-bottom: 2.5rem;
  }
}
.featured__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width <= 47.99875rem) {
  .featured__wrapper {
    flex-direction: column;
  }
}
.featured__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.featured__block {
  position: relative;
  min-height: 12.5rem;
  background-color: var(--color-white);
  border-radius: 0.625rem;
  padding: 0.9375rem;
  margin: 0.9375rem 0rem;
  box-shadow: 0 3px 22px rgba(0, 0, 0, 0.1490196078);
}
@media (width <= 47.99875rem) {
  .featured__block {
    width: 100%;
  }
}
.featured__block--open .featured__back {
  top: 0;
  opacity: 1;
  visibility: visible;
  /* transform: scale(1); */
  transform: perspective(37.5rem) rotateY(0deg);
}
.featured__cart {
  color: #111;
  font-weight: 400;
  padding: 0.625rem 1.25rem;
  border: 1px solid var(--color-purple);
  border-radius: 0.3125rem;
  transition: 0.2s ease all;
}
.featured__cart:hover {
  background: linear-gradient(90deg, rgba(113, 51, 139, 0.7) 0%, rgba(0, 153, 206, 0.7) 100%);
  color: var(--color-white);
  transition: 0.2s ease all;
}
.featured__front-header {
  display: flex;
  justify-content: space-between;
  min-height: 5.3125rem;
  gap: 0.9375rem;
}
.featured__front-name {
  font-size: 1rem;
  line-height: 1rem;
  color: var(--color-dark);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
}
.featured__front-more {
  min-width: 2.1875rem;
  min-height: 2.1875rem;
  background: var(--color-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  align-self: flex-start;
  justify-content: center;
  cursor: pointer;
}
.featured__front-more svg {
  width: 1.5625rem;
  height: 1.5625rem;
  fill: var(--color-white);
}
.featured__front-price {
  color: var(--color-black);
  font-size: 2.25rem;
}
.featured__front-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1.25rem 0rem;
}
.featured__front-cart {
  color: var(--color-dark);
  font-weight: 400;
  padding: 0.625rem 1.25rem;
  border: 1px solid var(--color-blue);
  border-radius: 0.3125rem;
  transition: 0.2s ease all;
}
.featured__front-cart:hover {
  background-color: var(--color-blue);
  color: var(--color-white);
  transition: 0.2s ease all;
}
.featured__front-code {
  font-size: 0.625rem;
  color: var(--color-purple);
  text-transform: uppercase;
}
.featured__back {
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0%;
  opacity: 0;
  left: 0;
  transition: all 0.2s linear;
  z-index: 1;
  visibility: hidden;
  background: var(--color-blue);
  padding: 1.25rem;
  border-radius: 0.625rem;
  transform: perspective(37.5rem) rotateY(-180deg);
  backface-visibility: hidden;
  box-shadow: 0px 0.75rem 0.6875rem var(--white);
}
.featured__back-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9375rem;
}
.featured__back-close {
  min-width: 2.1875rem;
  min-height: 2.1875rem;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  cursor: pointer;
}
.featured__back-close svg {
  width: 1.5625rem;
  height: 1.5625rem;
}
.featured__back-link {
  text-decoration: underline;
  color: var(--color-white);
  display: inline-block;
  margin-top: 1.25rem;
}
.featured__back-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1.25rem 0rem;
}
.featured__back-description {
  color: var(--color-white);
  font-size: 1rem;
}
.featured__back-price {
  color: var(--color-white);
  font-size: 2.25rem;
}
.featured__back-cart {
  color: var(--color-white);
  font-weight: 400;
  padding: 0.625rem 1.25rem;
  border: 1px solid var(--color-white);
  border-radius: 0.3125rem;
  transition: 0.2s ease all;
}
.featured__back-cart:hover {
  background-color: var(--color-purple);
  color: var(--color-white);
  transition: 0.2s ease all;
}
.featured__back-code {
  font-size: 0.625rem;
  color: var(--color-white);
  text-transform: uppercase;
}

.search__wrapper {
  position: relative;
}
.search__input {
  width: 100%;
  height: 50px;
  font-size: 16px;
  line-height: 12px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  padding: 0 50px 0 24px;
}
.search__button {
  position: absolute;
  right: 8px;
  top: 5px;
  gap: 5px;
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 2px;
  font-size: 14px;
  color: var(--color-gray);
  border: none;
}
.search__button svg {
  width: 25px;
}
.search__btn {
  width: 100%;
  background-color: var(--color-blue);
  color: var(--color-white);
}
.search__result-label {
  margin-bottom: 20px;
}

.advantages__title {
  margin: 0rem 0rem 1.25rem 0rem;
}
.advantages__wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3.375rem;
}
@media (width <= 47.99875rem) {
  .advantages__wrapper {
    gap: 1.25rem;
  }
}
.advantages__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.advantages__right {
  height: 100%;
}
@media (width <= 47.99875rem) {
  .advantages__right {
    width: 100%;
  }
}
.advantages__question {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  text-align: center;
  gap: 1.5625rem;
  background-color: var(--color-blue);
  padding: 1.5625rem 0.9375rem;
  border-radius: 0.625rem;
}
@media (width <= 47.99875rem) {
  .advantages__question {
    width: 100%;
  }
}
.advantages__question-title {
  color: var(--color-white);
  font-size: 1.5rem;
}
.advantages__question-text {
  color: var(--color-white);
  font-size: 1rem;
  text-align: center;
}
.advantages__question-tel {
  color: var(--color-white);
  font-size: 1.5rem;
  margin-top: auto;
}
.advantages__about {
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
.advantages__block {
  min-height: 14.6875rem;
  height: 100%;
  background-color: var(--color-white);
  border-radius: 0.625rem;
  padding: 1.5625rem 0.625rem;
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
  box-shadow: 0 3px 22px rgba(0, 0, 0, 0.1490196078);
}
@media (width <= 47.99875rem) {
  .advantages__block {
    width: 100%;
    min-height: 12.5rem;
  }
}
.advantages__header {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}
.advantages__ico {
  background: linear-gradient(90deg, rgba(113, 51, 139, 0.1) 0%, rgba(14, 61, 130, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 3.75rem;
  min-height: 3.75rem;
}
.advantages__ico svg {
  width: 2.1875rem;
  height: 2.1875rem;
}
.advantages__name {
  color: var(--color-dark);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  min-height: 50px;
}
.advantages__body {
  font-size: 1rem;
  text-align: center;
}
.advantages__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.5rem;
}
@media (width <= 47.99875rem) {
  .advantages__inner {
    gap: 1.5625rem;
  }
}

body {
  overflow-x: hidden;
}

.info__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.5rem;
}
@media (width <= 47.99875rem) {
  .info__inner {
    gap: 0.9375rem;
  }
}
.info__block {
  background: var(--gradient-low);
  border-radius: 0.625rem;
  margin: 10px 0px;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 12.5rem;
  padding: 1.5625rem 0.9375rem;
  overflow: hidden;
}
@media (width <= 47.99875rem) {
  .info__block {
    align-items: flex-start;
  }
}
.info__block:hover img {
  transform: scale(1.2);
  transition: 0.3s all ease;
}
.info__block-text {
  z-index: 10;
  color: var(--color-dark);
  font-size: 1.5rem;
}
.info__block img {
  position: absolute;
  right: 0rem;
  bottom: 0rem;
  width: 12.5rem;
  transition: 0.3s all ease;
}

.banner {
  margin: 2.5rem 0rem;
}

.documents__block {
  min-height: 100px;
  display: flex;
  position: relative;
  padding: 15px;
  background: var(--gradient-low);
  border-radius: 0.625rem;
  margin: 10px 0px;
}
.documents__img {
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 60px;
  opacity: 0.1;
}
.documents__title {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-dark);
}
.documents__title:hover {
  color: var(--color-blue);
}

.footer {
  background-color: var(--color-blue);
  margin-top: 2.5rem;
  padding: 1.25rem 0rem;
}
@media (width <= 47.99875rem) {
  .footer {
    margin-top: 1.5625rem;
  }
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.footer__block {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 0.625rem;
  order: 3;
}
@media (width <= 63.99875rem) {
  .footer__block {
    justify-content: flex-start;
  }
}
@media (width <= 63.99875rem) {
  .footer__block-logo {
    order: 1;
    width: 45%;
  }
}
@media (width <= 47.99875rem) {
  .footer__block-logo {
    width: 100%;
  }
}
@media (width <= 63.99875rem) {
  .footer__block-telephone {
    order: 2;
    width: 45%;
  }
}
@media (width <= 47.99875rem) {
  .footer__block-telephone {
    width: 100%;
  }
}
.footer__logo-name {
  background: none;
  color: #fff;
}
.footer__name {
  color: var(--color-white);
  font-weight: 400;
}
.footer__link {
  display: block;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 400;
}
.footer__telephone {
  color: var(--color-white);
  font-size: 1.5rem;
}

.mobile-burger {
  width: 2.1875rem;
  height: 2.1875rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s all ease;
}
.mobile-burger__line {
  display: inline-block;
  width: 100%;
  height: 0.125rem;
  background-color: var(--color-dark);
}
.mobile-burger__line:nth-child(1) {
  transition: 0.1s all ease;
}
.mobile-burger__line:nth-child(2) {
  transition: 0.1s all ease;
}
.mobile-burger__line:nth-child(3) {
  transition: 0.1s all ease;
}
.mobile-burger.active .mobile-burger__line:nth-child(1) {
  transform: rotate(45deg) translate(12px, 12px);
  transition: 0.1s all ease;
}
.mobile-burger.active .mobile-burger__line:nth-child(2) {
  transform: translateX(100px);
  transition: 0.1s all ease;
}
.mobile-burger.active .mobile-burger__line:nth-child(3) {
  transform: rotate(-45deg) translate(11px, -12px);
  transition: 0.1s all ease;
}

.mobile-menu {
  display: none;
  position: absolute;
  width: 100%;
  max-height: 90vh;
  padding: 1.5625rem 0rem;
  overflow-y: scroll;
  left: 0%;
  top: 100%;
  background-color: #fff;
  box-shadow: 0px 0.3125rem 0.3125rem 0rem rgba(100, 149, 237, 0.2509803922);
  z-index: 100;
}
.mobile-menu.active {
  display: block;
}
.mobile-menu__list {
  display: flex;
  flex-direction: column;
}
.mobile-menu__address {
  text-align: center;
  border-top: 0.0625rem solid #ebebeb;
  border-bottom: 0.0625rem solid #ebebeb;
  padding: 0.3125rem 0rem;
}
.mobile-menu__address:last-child {
  border-top: none;
  border-bottom: 0.0625rem solid #ebebeb;
}
.mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  padding: 0.625rem 0rem;
  font-size: 1rem;
  color: var(--color-dark);
  font-weight: 400;
  text-shadow: 0 0 0 var(--color-dark);
}
.mobile-menu__link:hover {
  text-shadow: none;
}
.mobile-menu__link svg {
  width: 1.25rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  background-color: var(--color-white);
  padding: 0.625rem;
  border-radius: 0.625rem;
}

.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/ ";
}

.products__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
}
.products__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.products__block {
  width: 100%;
  background: var(--color-white);
  border-radius: 15px;
  backface-visibility: hidden;
  border: 1px solid transparent;
  padding: 1.25rem;
  box-shadow: 0 3px 22px rgba(0, 0, 0, 0.1490196078);
}
.products__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.products__body {
  margin-bottom: 1.25rem;
}
.products__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
}
.products__name {
  font-size: clamp(1rem, 10vw, 1.25rem);
  color: var(--color-blue);
}
.products__code {
  color: var(--color-purple);
}
.products__text {
  margin-bottom: 1.25rem;
}
.products__more {
  font-size: 0.75rem;
  color: var(--color-blue);
}
.products__price {
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--color-dark);
  position: relative;
}
.products__price-old {
  position: absolute;
  right: 0;
  top: -1.25rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgb(252, 92, 92);
  text-decoration: line-through;
}
.products__cart {
  color: var(--color-dark);
  font-weight: 400;
  padding: 0.625rem 1.25rem;
  border: 1px solid var(--color-blue);
  border-radius: 0.3125rem;
  transition: 0.2s ease all;
}
.products__cart:hover {
  background-color: var(--color-blue);
  color: var(--color-white);
}

.aside__left {
  flex-shrink: 0;
}
@media (width <= 47.99875rem) {
  .aside__left {
    display: none;
  }
}

.filter {
  background-color: var(--color-white);
  padding: 1.25rem;
  border-radius: 0.625rem;
  width: 21.875rem;
}
.filter__inner {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.filter__button {
  font-size: 1.5rem;
  color: var(--color-dark);
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
}
.filter__item .checkbox:not(:last-child) {
  margin-bottom: 1.25rem;
}
.filter__item:not(.active) {
  display: none;
}
.filter__footer {
  margin: 0.9375rem 0rem;
  text-align: center;
}
.filter__btn {
  color: var(--color-dark);
  font-weight: 400;
  padding: 0.9375rem 0.625rem;
  border: 1px solid var(--color-blue);
  border-radius: 0.3125rem;
  transition: 0.2s ease all;
}
.filter__btn:hover {
  background-color: var(--color-blue);
  color: var(--color-white);
}

.product__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5625rem;
}
@media (width <= 63.99875rem) {
  .product__inner {
    flex-direction: column;
  }
}
.product__description {
  background-color: var(--color-white);
  border-radius: 0.9375rem;
  padding: 0rem;
}
@media (width <= 63.99875rem) {
  .product__description {
    order: 2;
  }
}
.product__description p {
  line-height: 1.5;
}
.product__information {
  background-color: var(--color-white);
  border-radius: 0.9375rem;
  padding: 1.875rem;
  min-width: 18.75rem;
  -webkit-backdrop-filter: blur(0.5rem);
  backdrop-filter: blur(0.5rem);
  box-shadow: 0 3px 22px rgba(0, 0, 0, 0.1490196078);
}
@media (width <= 63.99875rem) {
  .product__information {
    min-width: auto;
    width: 100%;
    order: 1;
  }
}
.product__information-code {
  text-align: right;
  color: var(--color-purple);
}
.product__information-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1.5625rem 0rem;
  position: relative;
}
.product__information-price--new {
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--color-dark);
}
.product__information-price--old {
  position: absolute;
  right: 0;
  top: -1.25rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgb(252, 92, 92);
  text-decoration: line-through;
}
.product__cart {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 3.125rem;
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: 1rem;
  border-radius: 1.875rem;
  padding: 0.3125rem 0.9375rem;
  transition: 0.3s all ease;
}
.product__cart:hover {
  box-shadow: 0 3px 20px var(--color-blue);
  color: var(--color-white);
  transition: 0.3s all ease;
}
.product__time {
  margin-top: 1.5625rem;
  line-height: 1.5;
}

.checkout__inner {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
}
@media (width <= 47.99875rem) {
  .checkout__inner {
    flex-direction: column;
  }
}
.checkout__left {
  width: 100%;
}
.checkout__left-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.checkout__analiz {
  width: 100%;
  display: flex;
  align-items: center;
  background: var(--color-white);
  border-radius: 15px;
  backface-visibility: hidden;
  border: 1px solid transparent;
  padding: 1.25rem;
  box-shadow: 0 3px 22px rgba(0, 0, 0, 0.1490196078);
}
.checkout__analiz-name {
  color: var(--color-blue);
  font-size: 1.125rem;
  width: 70%;
  margin-right: 20px;
}
.checkout__analiz-title {
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--color-dark);
}
.checkout__analiz-price {
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--color-dark);
  position: relative;
  margin-left: auto;
  margin-right: 1.25rem;
}
.checkout__analiz-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 6.25rem;
  height: 3.125rem;
  background-color: var(--color-purple);
  color: var(--color-white);
  font-size: 1rem;
  border-radius: 1.875rem;
  padding: 0.3125rem 0.9375rem;
  transition: 0.3s all ease;
}

.order {
  min-width: 21.875rem;
  min-height: 9.375rem;
  background: var(--color-white);
  backface-visibility: hidden;
  border: 1px solid transparent;
  border-radius: 15px;
  padding: 1.25rem;
  box-shadow: 0 3px 22px rgba(0, 0, 0, 0.1490196078);
  align-self: flex-start;
}
.order__title {
  font-size: 2.25rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.order__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0px;
  font-size: 1.125rem;
}
.order__total-dotted {
  flex: 1 0;
}
.order__total-dotted::before {
  content: "";
  width: calc(100% - 2px);
  height: 100%;
  border-bottom: 1px dotted var(--color-dark);
  display: inline-block;
}
.order__total-title {
  font-size: 1rem;
}
.order__btn-confirm {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 3.125rem;
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: 1rem;
  border-radius: 1.875rem;
  padding: 0.3125rem 0.9375rem;
  transition: 0.3s all ease;
}
.order__btn-confirm:hover {
  box-shadow: 0 3px 20px var(--color-blue);
  color: var(--color-white);
  transition: 0.3s all ease;
}
.order__btn-continue {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 1.25rem;
  height: 3.125rem;
  background-color: var(--color-purple);
  color: var(--color-white);
  font-size: 1rem;
  border-radius: 1.875rem;
  padding: 0.3125rem 0.9375rem;
  transition: 0.3s all ease;
}
.order__btn-continue:hover {
  box-shadow: 0 3px 20px var(--color-purple);
  color: var(--color-white);
  transition: 0.3s all ease;
}/*# sourceMappingURL=style.css.map */