

/* Start:/local/templates/maintheme/components/bitrix/menu/general_menu/style.css?17398952992771*/
.nav {
	display: flex;
	justify-content: start;
}


@media (max-width: 768px){/* md*/
	.nav {
		justify-content: center;
	}

}

.nav__items {
  display: flex;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-right: auto;
  position: relative;
  border-radius: 5px;
  z-index: 1;
  white-space: nowrap;
  text-align: left;
  overflow: auto;
}

.nav__item {
  display: inline-block;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.nav__item_active {
  font-weight: 700;
  color: #000;
  border-bottom: 3px solid #0c74d5;
}

.nav__link {
  color: #0b1f35;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica,
    Ubuntu, Cantarell, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji,
    Segoe UI Symbol;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  padding-right: 0;
  padding-left: 0;
}

.nav__logo {
	z-index: 1;
	padding-top: 5px;
	padding-right: 5px;
}

.nav__logo-img {
  width: 57px;
}


.nav__logo-img:hover {
  animation: logorotate 1300ms cubic-bezier(.85,-0.03,.41,.92);
}


@keyframes logorotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(60deg);
  }
  100% {
    transform: rotate(360deg);
  }
}






#mainnav .snowflakes {
  position: absolute;
  background-image: url(/local/templates/maintheme/components/bitrix/menu/general_menu/flakes.png);
  background-size: contain;
  right: 0;
  top: 8px;
  width: 188px;
  height: 140px;
  opacity: 0.3;
  animation: fadeinsnowflakes 2s;
}
@keyframes fadeinsnowflakes {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.3;
  }
}
#mainnav .snownote {
  position: absolute;
  bottom: 3%;
  right: 3%;
  font-size: 0.8em;
  letter-spacing: -0.4px;
  font-weight: 200;
  z-index: 1;
  animation: fadein 1.5s;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#mainnav .snownote::selection {
  color: inherit;
  background: transparent;
}

// Линия подчеркивания каталога
.nav__item_highlight .nav__link {
  font-weight: bold;
  color: blue; /* Голубой */
  text-transform: uppercase;
}

/* Эффект свечения */
.nav__item_highlight .nav__link {
  //text-shadow: 0px 0px 10px rgba(0, 170, 255, 0.9);
}

/* Анимация "пульсации" */
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

.nav__item_highlight {
  animation: pulse 3s infinite ease-in-out;
}



/* Подчеркивающая линия */
.nav__item_highlight .nav__link::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: blue;
  transform: scaleX(0);
  transition: transform 0.5s ease-in-out;
}

.nav__item_highlight:hover .nav__link::after {
  transform: scaleX(1);
}


/* End */


/* Start:/local/templates/maintheme/template_styles.css?175251440514017*/
* {
    box-sizing: border-box;
    -webkit-font-smoothing: subpixel-antialiased;
}

html {
    min-width: 720px;
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Ubuntu,Cantarell,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;
	font-size: 16px;
    font-weight: 400;
    min-width: 420px;
}

body{
    color: #0B1F35;
    background-color: #fcfcfc;
    background-attachment: fixed;
}

.container-fluid {
    max-width: 1206px;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 20px;
    margin-bottom: -20px;/*hack, no more*/
}



.container-fluid .site-body .information{
    padding: 15px;
    background-color: #fffcdb;
    box-shadow: 1px 1px 5px #919191;
}
.container-fluid .site-body .information hr{
    border-top: 1px solid rgba(141, 142, 147, 0.81);
}


h1, h2, h3{
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Ubuntu,Cantarell,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;
    font-weight: 700;
    color: #000;
	line-height: 1.5em;
}

h1{
    font-size: 35px;
}

h2{
    font-size: 30px;
}

h3{
    font-size: 20px;
}


@media (max-width: 768px){/* md*/
h1{
    font-size: 32px;
}

h2{
    font-size: 27px;
}

h3{
    font-size: 18px;
}

/* Убираем паддинги контейнера на мобильных для корзины */
body .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Специально для страницы корзины */
.basket-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
}

a {
	display: contents;
}

p{
    text-align: justify;
    color: #0b1f35;

    text-indent: 1.25em;
    line-height: 1.5em;
}

.description{
 padding-left: 2%;
 padding-right: 2%;
}

.description p {
    text-indent: 0;
}

b{
    color: #000000;
}

hr{
    height: 0;
    border: 0;
    border-top: 1px solid #203457;
    margin: 5px 0;
}

a.key-link {
    color: #8684ff;
}

a.key-link:hover {
    color: #4d4aff;
}

footer {
    font-weight: 400;
    font-size: .98em;
    letter-spacing: .2px;

    max-height: 120px;
    margin-top: 50px;
    margin-bottom: 15px;
    border-top: 1px dashed rgba(171, 171, 171, 0.68);
}

footer .container-fluid .site-ground{
    padding-top: 10px;
    padding-left: 5%;
    padding-right: 5%;
}



.c-t {
    text-align: center;
}

.l-t {
    text-align: left;
}

.r-t {
    text-align: right;
}

.cardsLinks > a[href^="/cards"] {
	margin-left: 1em;
}
.cardsLinks > a[href^="/cards"] ~ a[second] {
	margin-left: 0em;
}

.cardsLinks > a[name] {
    text-align: left;
    font-size: 1.2em;
    line-height: .9em;
    letter-spacing: .2px;
    color: #373539;
	margin-bottom: 10px;
	display: block;
	pointer-events: none;
}
.cardsLinks > a[name]:before {
	content: "#";
	pointer-events: all;
}


body#ecwid_body .ec-size .ec-store .grid-product__title-inner{
    color: #595959;
}

body#ecwid_body .ecwid .ecwid-btn--primary {
    background: #ffea7f !important;
    box-shadow: 0 1px 2px 0 rgba(154, 154, 154, 0.82);
    color: #000;
}

body#ecwid_body .ecwid .ecwid-btn--primary:hover {
    background: #a0b7f1 !important;
    box-shadow: 0 1px 2px 0 rgba(154, 154, 154, 0.82);
    color: #000;
}

body#ecwid_body .ec-size .ec-store .footer a {
    color: #003a56;
}

body#ecwid_body .product-details-module__content .form-control__inline-label span.option-surcharge,
body#ecwid_body .product-details-module.product-details__product-share.details-product-share
{
    display: none;
}
body#ecwid_body div.grid__categories.grid__categories--advanced.grid__categories--small-items.grid__categories--aspect-ratio-075
{
    display: none;
}


.bx-core-adm-dialog .bx-core-adm-dialog-content {
  overflow: hidden !important;
}
.bx-core-adm-dialog .bx-core-adm-dialog-content-wrap-inner {
  padding: 0 !important;
}



/* asallweb styles 13.06.2024*/
.news-list {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin: 50px auto;
	width: 100%;
}
.news-list._grid-3col{
	flex-direction: row;
	flex-wrap: wrap;
}
.news-item {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 15px;
	background: #fff;
	box-shadow: 0px 5px 5px #ccc;
	transition: all 0.4s;
}
.news-item:hover{
	text-decoration: none;
	box-shadow: 0px 5px 5px #757575;
}
.news-item._vertical{
	flex-direction: column;
	justify-content: flex-start;
	width: calc(33% - 26px);
}
.news-item__content {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 10px;
	padding: 30px;
	flex: 1;
}
.news-item__date-time {
	color: grey;
	font-size: 14px;
}
.news-item__title{
	font-size: 22px;
	color: #0a415c;
}
.news-item__text{
	font-size: 16px;
	color: #1b1919;
}
.news-item__image {
	flex: 0 0 320px;
	overflow: hidden;
}
.news-item__image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 1.5s;
}
.news-item:hover .news-item__image img{
	transform: scale(1.1);
}
@media (max-width: 980px) {
	.news-item._vertical{
		width: calc(50% - 20px);
	}
}
@media (max-width: 768px) {
	.news-item {
		flex-direction: column;
		gap: 0;
	}
	.news-item._vertical{
		width: 100%;
	}
	.news-item__content {
		padding: 15px;
	}
	.news-item__date-time {
		font-size: 12px;
	}
	.news-item__title{
		font-size: 18px;
	}
	.news-item__text{
		font-size: 14px;
	}
	#prod_table .row .cell{
		font-size: 15px;
		padding: 10px;
	}
	.container-table100{
		padding: 15px;
	}
	.bx_sitemap{
		margin: 15px 0;
	}
	.bx_sitemap .bx_sitemap_li_title{
		font-size: 20px;
		margin-right: 5px;
	}
	.bx_sitemap .bx_sitemap_li_title a{
		display: flex;
		align-items: center;
		gap: 10px;
	}
}

/* menu */
html{
	min-width: 100%;
}
.nav__logo{
	z-index: 6;
}
.icon-menu {
	position: relative;
	width: 2.5rem;
	height: 1.125rem;
	z-index: 5;
	margin-left:20px;
	border: none;
	background: none;
}
.icon-menu span,
.icon-menu::after,
.icon-menu::before {
	content: "";
	transition: all .3s ease 0s;
	right: 0;
	position: absolute;
	width: 100%;
	height: .125rem;
	background-color: #000;
	border-radius: 1px
}
.menu-open .icon-menu span{
	background-color: #fff;
}
.menu-open .icon-menu::before{
	background-color: #fff;
}
.menu-open .icon-menu::after{
	background-color: #fff;
}
.icon-menu::before {
	top: 0
}
.icon-menu::after {
	bottom: 0
}
.icon-menu span {
	top: calc(50% - .0625rem)
}
.menu-open .icon-menu span {
	width: 0
}
.menu-open .icon-menu::before {
	top: calc(50% - .0625rem);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg)
}
.menu-open .icon-menu::after {
	bottom: calc(50% - .0625rem);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg)
}
.menu-wrapper{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}
.bx-basket-block{
	padding-bottom: 0;
}
@media (min-width: 768px) {
	.menu-burger{
		display: none;
	}
}
@media (max-width: 768px) {
	.menu-wrapper{
		display: none;
	}
	.menu-open{
		overflow: hidden;
	}
	.menu-open .menu-wrapper{
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background-color: #759cae;
		display: flex;
		flex-direction: column;
		grid-gap: 50px;
		padding: 120px 15px 60px;
		z-index: 5;
		justify-content: center;
    align-items: center;
	}
	.nav__items, .sm_basket, .bx-basket-block{
		display: flex;
		flex-direction: column;
		justify-content: center;
    align-items: center;
		margin: 0 auto;
		gap: 10px;
	}
}

/* asallweb styles 08/10/2024 */
.sm_basket{
	overflow: inherit;
}
.bx-basket-block{
	display: flex;
	align-items: center;
	gap: 15px;
}
.city-select {
  position: relative;
  font-family: Arial;
	width: 200px;
}
.city-select._mobile{
	display: none;
}
@media (max-width: 768px) {
	.city-select._mobile{
		display: block;
		margin-left: auto;
	}
	.city-select._desktop{
		display: none;
	}
	.nav{
		align-items: center;
	}
}

.city-select select {
  display: none; /*hide original SELECT element: */
}

.select-selected {
  background-color: #023b57;
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: #023b57;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}


/* 10.10.2024 */
.bx-auth{
	margin: 40px auto 20px;
	padding: 20px;
	background-color: #f9f9f9;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
form {
    width: 100%;
}

table {
    width: 100%;
    border-collapse: collapse;
}

td {
    padding: 10px;
    vertical-align: middle;
}

thead td {
    font-size: 1.5rem;
    color: #333;
    text-align: center;
    padding-bottom: 20px;
}

tbody td:first-child {
    text-align: right;
    font-weight: bold;
    color: #555;
    padding-right: 20px;
}

.bx-auth-input, .fields {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s;
}

.bx-auth-input:focus, .fields:focus {
    border-color: #023b57;
    outline: none;
}

.starrequired {
    color: #FF0000;
}

input[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #023b57;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #023b57;
}

tfoot td {
    text-align: center;
    padding-top: 20px;
}

.captcha-img {
    margin-bottom: 10px;
}

.captcha-input {
    width: calc(100% - 20px);
    padding: 10px;
}

.field-wrap {
    display: flex;
    flex-direction: column;
}

.field-item {
    margin-bottom: 10px;
}

.wrap-table100{
	overflow: initial;
}
.table{
	position: relative;
	display: flex;
	gap: 5px;
	/* overflow: hidden; */
}
.table__wrapper{
	position: relative;
	display: flex;
	width: 100%;

}
.table__button-wrapper{
	flex: 1;
	width: 20px;
	position: relative;
}
.table__button-inner{
	width: 20px;
	height: 40px;
	transition: top 0.3s;
	position: sticky;
	top: 250px;
  margin-top: 250px;
}
.table .row.header .cell{
	background: #f2f2f2;
	font-size: 16px !important;
	white-space: nowrap;
}
.table .row{
	border-bottom: 1px solid #f2f2f2;
}

.table__sidebar{
	width: 380px;
	flex: 1 1 auto;
}
.table__sidebar .row{
	width: 100%;
}
.table__sidebar .row .cell img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: 170px;
	max-height: 170px;
}
.table__content{
	width: 745px;
	overflow-x: scroll;
	position: relative;
	right: 0;
	display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.table__content .row{
	display: flex !important;
}
.table__content .row:not(.header){
	height: 100%;
}
.table__content .row .cell{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	flex: 0 0 auto;
}

.table__scroll-button{
	background: url('https://zamorozka.pro/local/templates/maintheme/images/arrow-right.png') 0 0 no-repeat;
	height: 32px;
	width: 20px;
	border: 0;
}
.table__scroll-button:hover{
	color: green;
}
@media (max-width: 768px) {

	#prod_table .container-table100{
		padding: 0;
	}
	.table .row.header .cell{
		padding-top: 0;
		padding-bottom: 0;
		height: 70px
	}
	.table .table__sidebar .row.header .cell{
		white-space: nowrap;
	}
	.table__sidebar{
		width: 180px;
	}
	.table__sidebar .short_name{
		display: block;
	}
	.table__sidebar .full_name {
		display: none;
	}
	.table__sidebar .cell:nth-child(1){
		padding-left: 5px !important;
		padding-right: 0 !important;
	}
	.table__sidebar .cell:nth-child(2){
		padding: 5px !important;
		width: 50px;
		font-size: 14px !important;
	}
	.table__sidebar .cell:nth-child(3){
		padding: 5px !important;
		width: 30px;
	}
	.table__content{
		width: calc(100% - 202px);
	}
	.table__content .cell{
		font-size: 14px !important;
	}
	.table__button-inner{
		top: 100px;
		margin-top: 100px;
	}
	.table__sidebar .row .cell img{
		max-width: 70px;
		max-height: 70px;
	}
}

/* Стили для улучшенной галереи изображений */
.product-item-detail-slider-controls-image {
    width: 65px !important;
    height: 65px !important;
    margin-right: 8px !important;
    margin-bottom: 8px !important;
    border: 2px solid #e3e3e3 !important;
    border-radius: 4px !important;
    background-position: center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    cursor: pointer !important;
    overflow: hidden !important;
    transition: border-color 0.2s ease !important;
    position: relative !important;
}

.product-item-detail-slider-controls-image.active {
    border-color: #006cc0 !important;
    box-shadow: 0 0 5px rgba(0, 108, 192, 0.5) !important;
}

.product-item-detail-slider-controls-image img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.product-item-detail-slider-controls-block {
    padding: 10px 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
}


/* End */
/* /local/templates/maintheme/components/bitrix/menu/general_menu/style.css?17398952992771 */
/* /local/templates/maintheme/template_styles.css?175251440514017 */
