
.info {
  background: linear-gradient(90deg, #2d6be4 0%, #1a3a9e 50%, #0a0a2e 100%);
  display: flex;
  flex-direction: column;
  padding: 10px;
  margin: 0 20px;
  gap: 8px;
  font-size: 13px;
  color: #fff;
}

.social {
  display: flex;
  gap: 5px;
  justify-content: center;
}

.social__link {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.contacts {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contacts__messengers {
  display: flex;
  gap: 4px;
  align-items: center;
}

.contacts__mail {
  color: #fff;
  text-decoration: none;
}

.product__buttons {
  margin-top: 5px;
  display: flex;
  justify-content: space-between;
}

.product__button {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 13px;
  border: none;
  cursor: pointer;
  height: 39px;
}

.product__button-buy, .product__button-query {
  background-color: transparent;
  color: #000;
  border: 1px solid #d0d3da;
}

.product__button-buy {
  width: 124px;
}

.product__button-basket {
  background: linear-gradient(90deg, #2d6be4 0%, #1a3a9e 50%, #0a0a2e 100%);
  width: 50px;
}

.product__button-query {
  width: 100%;
}



/*Cookies*/
.cookies {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  opacity: 0;
  animation: appearance 0.5s forwards 1s;
  pointer-events: none;
}

@keyframes appearance {
  to {
    opacity: 1;
  }
}

.cookie_accepted {
  display: none;
}

.cookies__container {
  max-width: 613px;
  box-sizing: border-box;
  border: 1px solid var(--e-global-color-d215163, #002c5c);
  background: var(--e-global-color-6970852, #fff);
  margin: 10px 20px;
  padding: 10px;
  font-size: 13px;
  font-family: 'Lato', sans-serif;
  display: flex;
  align-items: center;
  box-shadow: 0px 0px 6px 0px var(--e-global-color-d215163, #002c5c);
  pointer-events: auto;
}

.cookies__text {
  margin: 0;
}

.cookies__link {
  color: var(--e-global-color-d215163, #002c5c);
}

.cookies__button {
  width: 44px;
  height: 22px;
  padding: 0;
  margin: 0;
  background: var(--e-global-color-d215163, #002c5c);
  color: var(--e-global-color-6970852, #fff);
  line-height: 22px;
  border: none;
  margin-left: 5px;
  cursor: pointer;
}

.pc {
  height: 244px !important;
}