@charset "UTF-8";
@import "vendor/normalize.css";

body {
  position: relative;
}

img{
	vertical-align:middle
}

dialog {
	  font-size: 12px;
	  background-color:#1FAEE9;
	  color:white;
	  border: none;
	  border-radius: 1rem;
	  position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);	}

dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  
}

dialog + .backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}

.header {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  justify-content: space-between;
  padding: 0 120px;
  position: fixed;
  z-index: 10;
  height: 83px;
  width: 100%;
  box-shadow: 1px 1px 1px #f4f4f8;
}
.header__logo-block {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__logo-block img{
	max-height:30pt;

}

.header__logo-block--header-logo {
  color: #007FD4;
  font-weight: 700;
  font-size: 22px;
}


.nav__link li{
  margin-right: 50px;
  font-weight: 500;
  font-size: 0.9em;
}

.nav__link-mini li{
  margin-right: 50px;
  background-color: red;
  color: #131313;
  font-weight: 300;
  font-size: 0.7em;
}


.header__navs-block--nav {
  margin-right: 50px;
  color: #131313;
  font-weight: 500;
  font-size: 14px;
}
@media screen and (max-width: 1080px) {
  .header__navs-block--nav {
    font-size: 12px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 860px) {
  .header__navs-block--nav {
    margin-right: 20px;
  }
}
.header__navs-block--nav:last-child {
  margin-right: 0;
}
.header__navs-block--nav img{
max-height:20px		 
}



.header__auth-block {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #131313;
  font-weight: 500;
  font-size: 17px;
}
.header__auth-block img{
max-height:20px		 
}


.header__auth-block--basket-area {
  position: relative;
}

.header__auth-block--basket-count {
  display: none;
  position: absolute;
  top: -12px;
  right: -8px;
  border-radius: 50%;
  background-color: #DA1C1C;
  color: white;
  width: 16px;
  height: 16px;
  align-items: center;
  justify-content: center;
  font-size: 9px;
}
@media screen and (max-width: 1080px) {
  .header__auth-block {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .header__auth-block {
    gap: 25px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    display: none;
  }
}
@media screen and (max-width: 1250px) {
  .header {
    padding: 0 70px;
  }
}
@media screen and (max-width: 1150px) {
  .header {
    padding: 0 50px;
  }
}
@media screen and (max-width: 1150px) and (max-width: 860px) {
  .header {
    padding: 0 20px;
  }
}

.burger-header {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  justify-content: space-between;
  padding: 10px 20px;
  position: fixed;
  z-index: 10;
  height: 83px;
  width: 100%;
  box-shadow: 1px 1px 1px #f4f4f8;
}
.burger-header__burger .active {
  display: none;
}
@media (min-width: 768px) {
  .burger-header {
    display: none;
  }
}
.burger-header__icon-area {
  display: flex;
  gap: 25px;
}



.login-link {
  margin-right: 50px;
  color: #131313;
  font-weight: 500;
  font-size: 17px;
  display: block;
}
@media screen and (max-width: 767px) {
  .login-link {
    margin-right: 0;
  }
}

.login-burger-link {
  margin-right: 50px;
  color: #131313;
  font-weight: 500;
  font-size: 17px;
  display: block;
}
@media screen and (max-width: 767px) {
  .login-burger-link {
    margin-right: 0;
  }
}

.person-burger-link {
  display: none;
}

.person-link {
  display: none;
}

.person-burger-link-account {
  display: none;
}

/*от 600px думаю уже будет бургер */
.burger-content {
  padding: 140px 0 0 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  transform: translateX(100%);
  transition: transform 0.5s;
  z-index: 11;

}
.burger-content__account-group-header {
  display: flex;
  padding-left: 40px;
  align-items: flex-start;
  gap: 20px;
  height: 50px;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.burger-content .nav__list {
  display: flex;
  flex-direction: column;
}

.burger-content .nav__list__item {
  margin-bottom: 32px;
  list-style-type: none;
}
.burger-content .nav__list__item a {
  font-weight: 500;
  color: #151515;
  font-size: 0.9em;
}

.burger-content .nav__list__item-mini {
  margin-bottom: 32px;
  list-style-type: none;
  font-size: 0.8em;
}
.burger-content .nav__list__item-mini a {
  font-weight: 400;
  color: #151515;
}


.burger-content--close-button {
  position: absolute;
  top: 25px;
  right: 25px;
  background-color: transparent;
  border: none;
  font-size: 30px;
}
.burger-content--image {
  position: absolute;
  z-index: -5;
  bottom: 0;
  width: 100%;
}
@media screen and (min-width: 540px) {
  .burger-content--image {
    bottom: -10%;
  }
}

.burger-content.active {
  transform: translateX(0);
}

.burger-content .nav__list_item {
  list-style-type: none;
}

.burger-content--version {
  color: #525061;
  font-size: 10px;
  line-height: 32px;
  padding-top: 40px;
  padding-left: 40px;
  
  
}



.products-section {
  position: relative;
  display: flex;
  justify-content: center;
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  //padding-top: 83px;
  overflow: hidden;
  flex-direction:column;
}

.products-tara {
  align-self: left;
  font-size: 12px;
  font-weight: 400;
  max-width: 80%;
}


.ps__pb {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding-top: 25px;
  margin-top: 0px;
}


.ps__pb--products-header {
  margin-top: 70px;
  color: #000000;
  font-size: 48px;
  font-weight: 600;
}
.ps__pb--all-products-title {
  position: absolute;
  top: 130px;
  color: #0C86CC;
  right: 30px;
  font-size: 16px;
  font-weight: 500;
}

.wave-section {
  position: relative;
  padding-top: 83px;
  margin: 10px;
  width: 100vw;
  max-width: 100vw;
  background: url("../assets/images/wave.svg") no-repeat bottom;
  bottom: 0;
  min-height: calc(100vh - 83px); /* Вычисляем высоту секции, вычитая 83 пикселя сверху */
  padding: 20px;
  font-family: 'Roboto', sans-serif;
  line-height: 1.2rem;
  font-size: 0.85rem;
  text-align: justify;
}

.section--title {
  font-size: 1.1em;
  font-weight: 500;
  color: #414141;
  text-align: center;
  margin-bottom: 10px;
  
}


.wave-section-image-container{
  display: flex;
  max-width: 90vw;
  min-width: 80vw;
  align-items: center;
  justify-content: center;
  padding-top: 5vh;
  padding-bottom: 5vh;
  
}
.wave-section-image {
  max-width: 85vw;
}

.wave-section table{
  font-family: 'Roboto', sans-serif;
  width: 100%;
  line-height: 1rem;
  font-size: 0.85rem;
  color:#525061;
  border-collapse: collapse;
}

.wave-section table thead {
	font-weight: bold;
	text-align: left;
}

.wave-section table td {
	padding: 0.1rem 0.3rem; 
	border-bottom: 1px solid #e8e9eb;
}

.datadok {
	background-color:#F0F9FD;
}

.dok {
	background-color:#1FAEE9;
	color: white;
}

.plus {
	text-align: center;
	background-color:#F0F9FD;
	color: #525061;
	
}
.minus {
	text-align: center;
	background-color:#1FAEE9;
	color: white;
}





.tr_nzak{
  font-family: 'Roboto', sans-serif;
  line-height: 1rem;
  font-size: 0.6rem;
  background-color: #E8E8E8;
  color:#525061;
}





@keyframes moveRight {
  from {
    left: 0;
  }
  to {
    left: calc(-100% - 30px);
  }
}
@keyframes moveLeft {
  from {
    left: -100%;
  }
  to {
    left: 0;
  }
}
.slider__button_disabled {
  opacity: 0.5;
}



.map-section {
  position: relative;
  margin-top: -85px;
  padding-top: 85px;
  display: flex;
  flex-direction: column;
  gap: 90px;
}
.map-section__map {
  width: 100%;
  height: 680px;
}
.map-section__map iframe {
  width: 100%;
  height: 680px;
}
.contacts-mobile {
  background-color: white;
  box-shadow: 0 5px 130px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  padding: 50px 40px 60px 40px;
  width: 400px;
  margin: 0 auto;
  border-radius: 12px;
}
@media screen and (max-width: 460px) {
  .contacts-mobile {
    padding: 40px 30px 40px 30px;
    width: 335px;
  }
}
@media screen and (max-width: 360px) {
  .contacts-mobile {
    padding: 35px 20px 35px 20px;
    width: 290px;
  }
}
@media screen and (min-width: 600px) {
  .contacts-mobile {
    display: none;
  }
}
.contacts {
  position: absolute;
  right: 90px;
  top: 22%;
  background-color: white;
  box-shadow: 0 5px 130px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  padding: 50px 40px 60px 40px;
}
@media screen and (max-width: 1320px) {
  .contacts {
    right: 80px;
    padding: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .contacts {
    padding: 40px 40px 50px 40px;
  }
}
@media screen and (max-width: 950px) {
  .contacts {
    padding: 30px;
  }
}
@media screen and (max-width: 810px) {
  .contacts {
    right: 45px;
  }
}
@media screen and (max-width: 600px) {
  .contacts {
    display: none;
  }
}
.contacts {
  font-size: 32px;
  font-weight: 500;
  color: #222222;
  margin-bottom: 30px;
}
@media screen and (max-width: 1320px) {
  .contacts {
    font-size: 25px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 950px) {
  .contacts {
    margin-bottom: 20px;
  }
}
.contacts--address-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contacts--adr-header {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #222222;
}
.contacts--adr-text {
  width: 340px;
  color: #868686;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 15px;
}
@media screen and (max-width: 1320px) {
  .contacts--adr-text {
    width: 270px;
  }
}
@media screen and (max-width: 360px) {
  .contacts--adr-text {
    width: 240px;
  }
}
.contacts--address-info--time {
  color: #868686;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 15px;
}
.contacts--button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background-color: #006FD9;
  border-radius: 10px;
  height: 62px;
  width: 350px;
  color: #ffffff;
}
@media screen and (max-width: 1200px) {
  .contacts--button {
    width: 250px;
  }
}
@media screen and (max-width: 950px) {
  .contacts--button {
    height: 52px;
  }
}

.cart {
  background-color: #F0F9FD;
  padding: 5px 0 5px 0;
  height: 100%;
  min-width: 98vw;
  min-height: 85vh;
  margin: 0 auto;
  box-sizing: border-box;
}

.cart__tabs {
  background-color: white;
  width: 100%;
  height: 100%;
  min-height: 80vh;
  margin: 0 auto;
}

.cart__tabs--links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  border-bottom: 1px solid #D9DADB;
}
@media screen and (max-width: 768px) {
  .cart__tabs--links {
    gap: 16px;
    justify-content: space-between;
    padding: 0 2.67vw;
  }
}
.cart__tabs--link {
  text-decoration: none;
  text-transform: uppercase;
  color: #939699;
  padding: 8px 0 3px 0;
}
.cart__tabs--link_active {
  color: #272727;
  border-top: 5px solid #4592FF;
}
@media screen and (max-width: 1410px) {
  .cart__tabs--link {
    font-size: 15px;
  }
}
@media screen and (max-width: 540px) {
  .cart__tabs--link {
    font-size: 2.67vw;
  }
}


.cart__tabs--content {
  display: none;
  width:100%;
}

.cart__tabs--content_show {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart__tabs--title {
  color: #000000;
  font-weight: 700;
  font-size: 16px;
}
.cart__tabs--wrapper {
  display: flex;
  gap: 100px;
}
@media screen and (max-width: 1000px) {
  .cart__tabs--wrapper {
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .confirmation .cart__tabs--wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}

.basket {
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 12px;
  padding-top: 24px;
}
.basket__table {
  width: 100%;
  min-height: 70vh;
  border-radius: 15px;
}
.basket__table--title {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
  gap: 20px;
  background-color: #006FD9;
  border-radius: 15px 15px 0px 0px;
  color: white;
  padding: 13px 30px;
}
@media screen and (max-width: 768px) {
  .basket__table--title {
    display: none;
  }
}



.basket__table--tara {
  width: 100%;
  padding: 5px;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  justify-content: left;
  border-bottom: 1px solid #E1E1E1;
  margin-bottom: 5px;
  
}



.buttons-area {
  width: 100%;
  padding: 5px;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-top: 1px solid #E1E1E1;
  
}

.gt_checkbox {
	display: none;
	margin-right: 5px;
}

.gt_checkbox + label {
    font-size: 14px;
    position: relative;
    padding-left: 20px;
    height: 0.9em;
    display: flex;
    align-items: center;
    color: #000;
    cursor: pointer;
    user-select: none;
}

.gt_checkbox + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0.9em;
    height: 0.9em;
    border: 1px solid #ccc;
}

.gt_checkbox:checked + label:before {
    border-color: #00b50e;
    background-image: url('../assets/images/gt_cb.svg');
    background-size: contain;
}


.basket__table__item {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1.5fr 1fr 1fr 1fr 0.5fr;
  gap: 20px;
  border-bottom: 1px solid #E1E1E1;
  border-left: 1px solid #E1E1E1;
  border-right: 1px solid #E1E1E1;
  color: white;
  padding: 14px 30px;
}
@media screen and (max-width: 768px) {
  .basket__table__item {
    border: none;
    grid-template-columns: 0.5fr 1.5fr;
    grid-template-rows: repeat(4, auto);
    gap: 10px;
  }
}
.basket__table__item:last-child {
  border-radius: 0px 0px 15px 15px;
}
@media screen and (max-width: 768px) {
  .basket__table__item:last-child {
    border-bottom: 1px solid #E1E1E1;
    border-radius: 0px;
  }
}
.basket__table__item--image {
  width: 114px;
  height: 114px;
  border: 1px solid #E1E1E1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .basket__table__item--image {
    justify-self: center;
    grid-row: 1/span 4;
    grid-column: 1;
  }
}
.basket__table__item--image img {
  max-width: 80%;
  display: block;
  max-height: 80%;
}
.basket__table__item--title {
  font-size: 14px;
  font-weight: 500;
  color: #414141;
}
@media screen and (max-width: 768px) {
  .basket__table__item--title {
    color: #151515;
    grid-row: 1;
    grid-column: 2/span 3;
  }
}
.basket__table__item--price {
  font-size: 16px;
  font-weight: 600;
  color: #4B5157;
}
@media screen and (max-width: 768px) {
  .basket__table__item--price {
    font-size: 13px;
    color: #006FD9;
    grid-row: 2;
    grid-column: 2;
  }
}
@media screen and (max-width: 768px) {
  .basket__table__item--single-item-price {
    display: none;
  }
}
.basket__table__item--change-quantity {
  width: 106px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  color: #4B5157;
  border: 1px solid #D9DADB;
  border-radius: 20px;
  padding: 4px 0;
}
@media screen and (max-width: 768px) {
  .basket__table__item--change-quantity {
    border: none;
    grid-row: 3;
    grid-column: 2;
  }
}
.basket__table__item--plus-button, .basket__table__item--minus-button {
  border: none;
  background-color: inherit;
  color: #BCBFC2;
  font-size: 25px;
  cursor: pointer;
}
.basket__table__item--remove-button {
  background-color: inherit;
  border: none;
  outline: none;
  color: #BCBFC2;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .basket__table__item--remove-button {
    grid-row: 3;
    grid-column: 3;
  }
}
.basket__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .basket__actions {
    align-items: flex-start;
  }
}
.basket__actions__next-block {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .basket__actions__next-block {
    flex-direction: column;
  }
}
.basket__actions__next-block--text {
  display: flex;
	justify-content: flex-end;
  
  align-items: center;
  gap: 12px;
}
.basket__actions__next-block--title {
  color: #939699;
  font-weight: 500;
  font-size: 14px;
}
.basket__actions__next-block--total {
  color: #4B5157;
  font-weight: 600;
  font-size: 18px;
}
.basket__actions--back-button {
  color: #939699;
  background-color: inherit;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .basket__actions--back-button {
    font-size: 14px;
  }
}
.basket__actions--forward-button {
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #006FD9;
  color: #ffffff;
  padding: 10px 26px;
  border-radius: 20px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .basket__actions--forward-button {
    font-size: 14px;
    padding: 10px 15px;
  }
}

.basket__actions--forward-button-inactive {
  display: none;
}

.vrem-data {
  width: 98vw;
  min-height: 70vh;
  padding: 26px 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 2vw;
}

.delivery {
  width: 95vw;
  min-height: 70vh;
  padding: 16px 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 1.5vh;
}

.lk_data {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 10px;
  padding: 5px;
  background-color: #E3F1FF;
  min-width:93vw;
}





.delivery__data {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: -10px;
}

.delivery__data__input-block {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width:30vw;
}

.delivery__data__input-block--title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #262D33;
  font-size: 14px;
  font-weight: 500;
}

.delivery__data__input-block--title img{
  max-height:12px;
  padding-right:12px;
}

.usldost {font-size: 0.7em; text-align: right;}

.delivery__data__input-block--input {
  border: 1px solid #D9DADB;
  border-radius: 5px;
  padding: 5px 10px;
  outline: none;
}
.delivery__data--address-block {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}


.delivery--spd {
  width: 100%;
  padding: 5px;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  justify-content: left;
}

.delivery__basket {
  width: 480px;
}
@media screen and (max-width: 768px) {
  .delivery__basket {
    display: none;
  }
  .confirmation .delivery__basket {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}
.delivery__basket--products {
  border-top: 1px solid #D9DADB;
  border-left: 1px solid #D9DADB;
  border-right: 1px solid #D9DADB;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid #E7E7E7;
}
.delivery__basket--product {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1.5fr 0.5fr;
  gap: 6px;
}
.delivery__basket--text-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.delivery__basket--quantity {
  color: #BCBFC2;
  font-size: 14px;
  font-weight: 600;
}
.delivery__basket--total {
  padding: 20px;
  height: 60px;
  border-bottom: 1px solid #D9DADB;
  border-left: 1px solid #D9DADB;
  border-right: 1px solid #D9DADB;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.payment {
  padding: 10px 0;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
@media screen and (max-width: 1410px) {
  .payment {
    width: 90%;
  }
}
.payment__data {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 1410px) {
  .payment__data {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .payment__data {
    width: 100%;
  }
}
.payment__data--ch {
  display: flex;
  flex-direction: column;
  font-size: 0.8em;
  gap: 10px;
}
.payment__data--ch-title {
  color: #000000;
  font-weight: 700;
}

.payment__data__card {
  background-color: #F0F9FD;
  border-radius: 10px;
  padding: 3vw;
  display: flex;
  flex-direction: column;
  gap: 1vw;
}
@media screen and (max-width: 1410px) {
  .payment__data__card {
    width: 100%;
  }
}
.payment__data__card--title {
  color: #262D33;
  font-size: 14px;
  font-weight: 700;
}
.payment__data__card--description {
  color: #4B5157;
  font-size: 14px;
  font-weight: 400;
}


.payment__data__bank-card {
  width: 480px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1410px) {
  .payment__data__bank-card {
    width: 100%;
  }
}
.payment__data__bank-card--block {
  padding: 20px;
  border: 1px solid #D9DADB;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.payment__data__bank-card--input-block {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.payment__data__bank-card--input-title {
  color: #262D33;
  font-weight: 700;
  font-size: 14px;
}
.payment__data__bank-card--input {
  border: 1px solid #D9DADB;
  border-radius: 5px;
  outline: none;
  padding: 10px 15px;
}
.payment__data__bank-card--data-block {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .payment__data__bank-card--data-block {
    gap: 15px;
  }
}
.payment__data__bank-card--data-block input {
  width: 90px;
}
@media screen and (max-width: 1410px) {
  .payment__data__bank-card--data-block input {
    width: 76px;
  }
}
@media screen and (max-width: 768px) {
  .payment__data__bank-card--data-block input {
    width: 64px;
  }
}

.confirmation {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 0;
}
@media screen and (max-width: 1410px) {
  .confirmation {
    width: 90%;
  }
}
@media screen and (max-width: 1000px) {
  .confirmation {
    position: relative;
    padding-bottom: 80px;
  }
}
.confirmation__data {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 1410px) {
  .confirmation__data {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .confirmation__data {
    width: 100%;
  }
}
.confirmation__data--card {
  width: 70%;
  background: #F0F9FD;
  border-radius: 10px;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 1410px) {
  .confirmation__data--card {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .confirmation__data--card {
    font-size: 13px;
    padding: 20px;
  }
}
.confirmation__data__row {
  display: grid;
  grid-template-columns: 0.7fr 1fr 2fr;
}
@media screen and (max-width: 768px) {
  .confirmation__data__row {
    grid-template-columns: 1fr 0.7fr 2fr;
  }
}
.confirmation__data__row--title {
  color: #838383;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .confirmation__data__row--title {
    font-size: 13px;
  }
}
.confirmation__data__row--value {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
}

.confirmation__data__row--value-accent {
  color: #131313;
  font-size: 16px;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .confirmation__data__row--value {
    font-size: 13px;
  }
}

.confirmation__data__row--value-mini {
  color: #000000;
  font-size: 9px;
  font-weight: 400;
}


.confirmation__data__row--divider {
  width: 80px;
  border-bottom: 1px dashed #D9DADB;
}
@media screen and (max-width: 768px) {
  .confirmation__data__row--divider {
    width: 40px;
  }
}
.confirmation__data__bank-card {
  padding: 16px 31px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #F0F9FD;
  border-radius: 15px;
}
.confirmation__data__bank-card--card-type {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
}
.confirmation__data__bank-card--card-number {
  color: #4B5157;
  font-size: 14px;
  font-weight: 400;
}

.order-modal {
  display: none;
  position: fixed;
  z-index: 1;
  border-radius: 12px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: auto;
  padding: 40px 0;
  width: 500px;
  background-color: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .order-modal {
    width: 300px;
  }
}
.order-modal--content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.order-modal--close {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 26px;
  color: #969696;
  border: none;
  background-color: inherit;
  cursor: pointer;
}
.order-modal--gratitude {
  color: #006FD9;
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .order-modal--gratitude {
    max-width: 80%;
    font-size: 18px;
    text-align: center;
  }
}
.order-modal--call-soon {
  color: #006CDA;
  font-weight: 400;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .order-modal--call-soon {
    max-width: 80%;
    font-size: 14px;
    text-align: center;
  }
}

.overflow, .overflow-change-password, .overflow-add-card {
  display: none;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(1.5px);
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  z-index: 8888;
  top: 0;
  left: 0;
}

.overflow-add-card--send-btn {
  background-color: #006FD9;
  border: none;
  height: 42px;
  color: #ffffff;
  width: 156px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
}
.overflow-add-card__check-group {
  display: flex;
  flex-direction: row-reverse;
  gap: 12px;
  font-size: 14px;
  justify-content: flex-end;
  margin-bottom: 30px;
}


.burger-account {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.weight {
  font-weight: 700;
}


/*кнопка установки PWA*/
.container buttonPWA {
  height: 50px;
  border: 0;
  padding: 1em 2em;
  border-radius: 1em;
  color: white;
  background: #1a1a1a;
  cursor: pointer;
}

.container buttonPWA:hover {
  background: #282828;
}

.container buttonPWA:active {
  background: #3e3e3e;
} 



.swiper-slide {
    transition: transform 0.3s ease;
}

.swiper-slide:active {
    transform: scale(1.05);
}




/*МОИ СТИЛИ*/

.flex-bottom-right {
  display: flex;
  justify-content: flex-end; /* Выравнивание по горизонтали вправо */
  align-items: flex-end;     /* Выравнивание по вертикали вниз */
}



.knopka {
  justify-content: center;
  align-items: bottom;
  display: inline-block;
  color: white;
  text-decoration: none;
  font-size: .8rem;
  padding: .3rem 1rem;
  outline: none;
  border-width: 2px 0;
  border-style: solid none;
  border-color: #006FD9 #000 #E3F1FF;
  border-radius: 6px;
  background: linear-gradient(#006FD9, #0A69B7) #E3F1FF;
  transition: 0.2s;
}

.knopka:hover {
  background: linear-gradient(#07ABFF, #089BD1) #07ABFF;
}

.knopka:active {
  background: linear-gradient(#089BD1, #07ABFF) #089BD1;
}

.knopka img{
max-height: 1em;
margin-right:0.5em;
}

.bel {
  border-color: #E3F1FF;
  color: 006FD9;
  background: white;
}


  .container {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-top: 83px;
  }
.container a {
   color: #0C86CC;
}

.container a:hover {
    color: #fbb72c;
}

.container a:visited {
  color: #423E75; /* для посещённых ссылок */
}

.container a:active {
  color: #0C86CC; /* ссылки при активном клике */
}

  
  
  .tab {
    display: flex;
    flex-direction: column;
  }

  .tab-content {
    display: none;
  }

  .tab-content:target {
    display: block;
  }

  .tab-nav {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    order: 1;
  }

  .tab-link {
    display: block;
    padding: 0.5rem 1rem;
    color: #0d6efd;
    text-decoration: none;
    background: 0 0;
    border: 0;
    border-radius: 0.375rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
  }

  #goods:target~.tab-nav>[href="#goods"],
  #mobile:target~.tab-nav>[href="#mobile"],
  #dopinf:target~.tab-nav>[href="#dopinf"],
  #usl:target~.tab-nav>[href="#usl"],
  #spd:target~.tab-nav>[href="#spd"],
  #cart:target~.tab-nav>[href="#cart"],
  #about:target~.tab-nav>[href="#about"] {
  background-color: #006FD9;
  color: #ffffff;
    cursor: default;
  }

.ps__pb {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: auto; /* Необходимо для прокрутки на айфонах */
  -webkit-overflow-scrolling: touch;
  padding-top: 8px;
  margin-left: 4px;
  margin-right: 12px;
  box-sizing: border-box; /* Чтобы внутренние отступы и границы учитывались в размерах элемента */
}

.product-card {
	position: relative;
    font-family: 'Roboto', sans-serif;
	max-width:500px;
    width: 98%;
    box-shadow: 0 3px 7px #095776;
    margin: 6px auto;
	display: flex;
	flex-direction: row;
    background: #fafafa;
	border-radius: 10px;

}

.badge {
    position: absolute;
    left: 0;
    top: 85%;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    background:   #FF0033;
    color: #fff;
    padding: 3px 10px;
}



.product-tumb {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 196px;
	min-width:40%;	
    padding: 10px;
    background: white;
}

.product-tumb img {
    max-width: 100%;
    max-height: 100%;
}

.product-details {
    padding: 30px;
}

.product-tara {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ccc;
}

.product-details h4 a {
    font-weight: 500;
    display: block;
    margin-bottom: 18px;
    text-transform: uppercase;
    color: #363636;
    text-decoration: none;
    transition: 0.3s;
}

.product-details h4 a:hover {
    color: #fbb72c;
}

.product-details p {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 10px;
    color: #999;
}

.product-bottom-details {
    overflow: hidden;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.product-bottom-details div {
    float: left;
    width: 50%;
}

.product-price {
    font-size: 20px;
    color: #1164B4;
    font-weight: 600;
}

.dopcena {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFA500;
}

.dopcenatara {
    margin-left: 20px;
    font-size: 11px;
    font-weight: 500;
    color: #868686;
}


.product-price small {
    font-size: 80%;
    font-weight: 400;
    text-decoration: line-through;
    display: inline-block;
    margin-right: 5px;
}

.product-links {
    text-align: right;
}

.product-links a {
    display: inline-block;
    margin-left: 5px;
    color: #e1e1e1;
    transition: 0.3s;
    font-size: 17px;
}

.product-links a:hover {
    color: #fbb72c;
}

.product-button1 {
    position: absolute;
    left: 70%;
    top: 85%;
         outline: 0;
         border: 0;
		 background: red;
         color: white;
         border: 1px solid #d9d9d9;
         padding: 8px 0px;
         margin-bottom: 30px;
         text-transform: uppercase;
         width: 25px;
         font-family: inherit;
         margin-right: 5px;
         transition: all 0.3s ease;
         font-weight: 500;
         
         &:hover {
           
           border: 1px solid #aedaa6;
           cursor: pointer;
         }

       }
	   

.button_plus {
    position: absolute;
    left: 86%;
    top: 80%;
  width: 35px;
  height: 35px;
  background: #fff;
  cursor: pointer;
  border: 2px solid #095776;
  border-radius: 6px;
}

.button_plus:after {
  content: '';
  transform: translate(-50%, -50%);
  height: 4px;
  width: 50%;
  background: #095776;
}

.button_plus:before {
  content: '';
  transform: translate(-50%, -50%);
  background: #095776;
  height: 50%;
  width: 4px;
}

.button_plus:hover:before,
.button_plus:hover:after {
  background: #fff;
  transition: 0.2s;
}

.button_plus:hover {
  background-color: #095776;
  transition: 0.2s;
}


.text-section {
  padding: 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.8rem;
  gap:10px;	
  margin: 10px;
  display: flex;
  flex-direction: column;
  font-family: sans-serif;
  text-align: justify;
}


.textinf {	font-size: 0.7em;  }



.designed-section {
  position: relative;
  padding-top: 83px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.8rem;
  margin: 10px;
  display: flex;
  flex-direction: column;
  justify-content: top;
  align-items: center;	
  
}

.designed-section--title
{
  color: #000000;
  font-weight: 600;
  font-size: 1.5em;
  order: 1;
  flex: 1;
  text-align: center;
}



.designed-section--top
{
  color: #000000;
  font-weight: 600;
  font-size: 1em;
  display: flex;
  flex-direction: row;
  padding: 10px;
  gap: 10px;
  order: 2;
  margin-top:10%;
  justify-content: center;
  align-items: center;	
}

.designed-section--right
{
  display: flex;
  flex-direction: column;
  padding: 10px;
  gap: 10px;
     flex-wrap: wrap;
}



.designed-section--image{
  background: linear-gradient(222.05deg, #00C6C0 19.5%, #006FD9 80.46%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  order: 3;
  max-width:80%;
  margin-left:10%;
}

.designed-section--image--img {
  max-width: 50%;
  height: auto; /* Высота автоматически подстраивается для сохранения пропорций */
}


.designed-section--text
{
  color: #000000;
  font-weight: 400;
  font-size: 0.8em;
}


.qr-container {
	background-color: white;
    padding: 1em;
    justify-content: center;
    align-items: center;	
    order: 1;
}
.qr-code {
	margin: 20px;
            width: 4em;
            height: 4em;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.pwa_btn {
  padding: 0 17px;
  border: none;
  background-color: #000000;
  border-radius: 5px;
  max-width: 50vw;
  height: 83px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pwa_btn--text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pwa_btn--text--mini-header {
  color: #ffffff;
  font-size: 0.5rem;
 text-align: justify;
}

.pwa_btn--text--max-header {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 600;
}

.pwa_btn--text:hover .pwa_btn--text--max-header {
  transition: 1s;
}

//количество в корзине

.quantity_inner * {
    box-sizing: border-box;    
}

.quantity_inner {
    position: absolute;
    left: 80%;
    top: 55%;
    display: inline-flex;
    border: 3px solid #BFE2FF;
    border-radius: 50% 0;
    height: 60px;
    width: 60px;
    margin-top: 15px;
}  

.quantity_inner .bt_minus,
.quantity_inner .bt_plus,
.quantity_inner .quantitytext {
    height: 20px;
    width: 20px;
    padding: 0;
    border: 0;
    margin: 0;
    background: transparent;
    cursor: pointer;
    outline: 0;
    position: absolute;    
}

.quantity_inner .bt_minus,
.quantity_inner .bt_plus {
    height: 20px;
    width: 20px;
    right: 3px;
    top: 0;    
}

.quantity_inner .bt_minus {
    top: 18px;
}

.quantity_inner .bt_buy {
    position: absolute;
    background: #337AB7; /*цвет фона тележки в карточке каталога*/    
    padding: 0;
    border: 3px solid #BFE2FF;    
    top: -15px;
    left: -10px;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    outline: 0;    
    transition: 0.5s;
}

.quantity_inner .bt_buy:hover {
    cursor: pointer;    
    border: 3px solid #337AB7;    
}

.quantity_inner .bt_buy:hover svg {
    stroke: #FFF;
}

.quantity_inner .quantitytext {
    width: 30px;
    bottom: 3px;
    left: 3px;
    text-align: center;
    font-size: 21px;
    font-weight: bold;
    color: #000;
    margin-right: 15px;
    font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
}

.quantity_inner .bt_minus svg,
.quantity_inner .bt_plus svg {
    stroke: #337AB7;
    stroke-width: 1;
    transition: 0.5s;
    fill: none;    
}

.quantity_inner .bt_buy svg {
    stroke: #BFE2FF;
    stroke-width: 1.5;
    transition: 0.5s;
    fill: none;    
    width: 13px;
    height: 13px;
}

.quantity_inner .bt_minus:hover svg,
.quantity_inner .bt_plus:hover svg {
    stroke: #000;
}


//Календарь


  .minicalendar {
	justify-content: center;
	align-items: center;
    margin: auto;
    font-family: Arial, sans-serif;
	width: 98vw;
}

.minicalendar-ramka {
	justify-content: center;
	align-items: center;
    margin: auto;
	max-width: 280px;
}

.minicalendar-header {
    display: flex;
    justify-content: space-between;
    align-items: right;
    padding: 3.3333%; /* 12px / 360px */
    background-color: #f9f9f9;
    border-bottom: 1px solid #ccc;
    max-width: 280px;
}

.minicalendar-month-year {
    font-size: 14px;
    font-weight: bold;
}

.minicalendar-prev, .minicalendar-next {
    cursor: pointer;
}

.minicalendar-days-of-week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    max-width: 280px;
    padding: 2.7778% 0; /* 10px / 360px */
    background-color: #eaeaea;
}

.minicalendar-day {
    display: inline-block;
    width: 30px; /* 30px / 360px */
    height:  30px; /* 30px / 360px */
    line-height:  30px; /* 30px / 360px */
    text-align: center;
    margin: 5px; /* 5px / 360px */
    cursor: pointer;
    border-radius: 50%;
}

.minicalendar-today {
    background-color: lightblue;
    /*color: white;*/
    border-radius: 0%;
	border: 1px solid #FFD200; /* Толщина рамки и её цвет */
}


.minicalendar-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.minicalendar-selected {
    background-color: green;
    color: white;
}

.minicalendar-days {
    min-height: 45%; /* 160px / 360px */
    max-width: 280px;
}


.radio {
  margin: 0.5rem;
}
.radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.radio input[type=radio] + .radio-label:before {
  content: "";
  background-color: white;
  border-radius: 100%;
  border: 1px solid #bfbfbf;
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  position: relative;
  top: -0.2em;
  margin-right: 1em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
.radio input[type=radio]:checked + .radio-label:before {
  background-color: #423b76;
  box-shadow: inset 0 0 0 4px white;
}
.radio input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: #423b76;
}
.radio input[type=radio]:disabled + .radio-label:before {
  box-shadow: inset 0 0 0 4px white;
  border-color: #bfbfbf;
  background-color: #bfbfbf;
}
.radio input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}

/*# sourceMappingURL=mainStyle.css.map */
