/* Переменные */

:root{
    /*Карточка товара*/
    /*В наличии*/
    --quantity-many:#89E769;

    /*flags*/
    --flag-prod-of-day:#F46158;
    --flag-new:#8DD85F;
    --flag-hit:#7F77EF;

    /*активная кнопка +*/
    --active-edit-quantity:#D0D0D0;

    /*tabs*/
    --hover-tab:#DDDFE1;
    --active-tab:#455360;

	/* Главный цвет ховер*/
	--main_color_hover: #EAA217;
	/* var(--main_color_hover) */

	/* Главный цвет активный класс и фокус*/
	--main_color_active: #DD9711;
	/* var(--main_color_active) */

	/* Цвет заголовков*/
	--main_font_color: #FEBD17;
	/* var(--main_font_color) */

	--main_link_color: #272727;
	/* var(--main_link_color) */

	/* Фокус input */
	--focus_input_color: #808080;
	/* var(--focus_input_color) */

	/* Дополнительный цвет на сайте */
	--add_color: #FCAF23;
	/* var(--focus_input_color) */

    /* Ховер select */
    --sel_hover: #F5F5F5;
    /* var(--focus_input_color) */

    --def-action-color:#147FFC
}

/* Конец переменные */
.static_page h1{
    font-weight: 600;
    font-size: 32px;
    line-height: 120%;
    margin: 10px 0 40px 0;
}
.static_page h2{
    font-weight: 600;
    font-size: 22px;
    line-height: 120%;
    margin: 10px 0 20px 0;
}
.static_page h3{
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    margin: 10px 0 16px 0;
}
.static_page h4{
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    margin: 10px 0 12px 0;
}
.static_page h5{
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    margin: 10px 0 12px 0;
}
.static_page h6{
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    margin: 10px 0 12px 0;
}
.static_page a{
    color: var(--blue-link);
    text-transform: none;
}
.static_page a:hover{
    color: var(--blue-link-hover);
    text-transform: none;
}

.select_text {
    background-color: var(--main_bg_gray);
    padding: 20px 20px 20px 25px;
    position: relative;
    margin: 15px 0 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
.select_text:before {
    content: " ";
    display: block;
    width: 4px;
    background-color: var(--main_color);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.select_text_green {
    background-color: var(--main_bg_gray);
    padding: 20px 20px 20px 25px;
    position: relative;
    margin: 15px 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
.select_text_green:before {
    content: " ";
    display: block;
    width: 4px;
    background-color: var(--main_color);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
ol.krayt_ol,
.static_page ol{
    counter-reset:myCounter;
    margin-left:0;
    padding-left:5px;
    color: rgb(100,100,100);
}

.static_page ul, ul.line {
    line-height: 2;
}

.static_page li, ul.line li {
    position: relative;
    padding-left: 25px;
    margin: 5px 0;
}
ol.krayt_ol li,
.static_page ol li{
    padding-left: 35px;
}
.static_page ul li:before,
ul.line li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    bottom: 0;
    right: 0;
    margin: auto 0;
    background-color: var(--main_color);
    border-radius: 50%;
}
ol.krayt_ol li:before,
.static_page ol li:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    font-size: 14px;
    line-height: 22px;
    color: var(--main_text_button);
    font-weight: 500;
    text-align: center;
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    bottom: 0;
    right: 0;
    margin: auto 0;
    background-color: var(--main_color);
    border-radius: 4px;
    counter-increment: myCounter;
    content: counter(myCounter);
}
.static_page img{
    margin: 10px;
}
.footer-item-copy {
    padding-top: 16px;
    padding-bottom: 18px;
    font-size: 12px;
    color: #86868F;
}
.footer-item-copy-item a,
.footer-item-copy-item span{
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    color: #000;
    -webkit-transition: color .2s ease-out;
    transition: color .2s ease-out;
}
.modal-form-bitrix24{
    display: none;
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    background-color:  rgba(0,0,0,0.4);
    height: 100%;
    z-index: 100000;
}
.modal-form-bitrix24.open{
    display: block;
}
.modal-form-bitrix24-content{
    width: 40%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 512px;
}
.modal-form-bitrix24-close{
    position: absolute;
    right: 10px;
    top: 10px;
    background-image: url(http://webkrayt.ru/close.svg);
    width: 20px;
    height: 20px;
    background-position: center;
    background-size: 20px;
}
.static_page{
    clear: both;
    margin-bottom: 60px;
}
.static_page p{
    /*margin: 10px 0;*/
}
.static_page a{
    display: inline-block;
    width: fit-content;
    font-weight: inherit;
    font-size: inherit;
    line-height: 120%;
    color: var(--blue-link);
    border-bottom: 1px solid transparent;
    cursor: pointer;
    transition: .2s linear;
}
.static_page a:hover{
    color: var(--blue-link);
    border-bottom: 1px solid var(--blue-link);
    transition: .2s linear;
}
.static_page blockquote{
    padding-left: 20px;
}
.static_page table td{
    padding: 10px;
    border: 1px solid var(--main-txt);
}
.body-kloader{
  overflow: hidden;
}
.bx-no-touch .body-kloader {
    padding-right: 8px;
}
.k_loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(37, 37, 37, .3);
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000000;
}
.static_page h2:after{
  content: none;
}
.static_page h2:before{
  content: none;
}

.td_center tr td{
  text-align: center;
}
.td_right tr td{
  text-align: right;
}
.td_left tr td{
  text-align: left;
}
.loader img {
    animation: rotateLoader linear 1s infinite;
}
.static_page hr{
    border-top: 1px solid #F0F0F0;
}
.static_page .table-wrp{
    overflow-y: auto;
    width: 100%;
}
.static_page .table-wrp::-webkit-scrollbar{
    display: none;
}
.static_page table{
    border-collapse: separate;
}
.static_page table[align="center"] {
    margin: 10px auto;
}
.static_page table:not([border]),
.static_page table:not([border]) td,
.static_page table:not([border]) th{
    border: none;
}
.static_page table[cellspacing="0"] {
    border-collapse: collapse;
}
.static_page caption {
    text-align: center;
    caption-side: top;
}
.static_page table th {
    font-weight: 700;
    text-align: center;
}
.static_page table td, .static_page table th {
    border: 1px solid var(--main-txt);
}
.static_page iframe{
    max-width: 100%;
}
/*system style menu component*/
.bx-core-popup-menu-item-text{
    color: #fff;
}
.bx-core-popup-menu-editor .bx-core-popup-menu-level0 .bx-core-popup-menu-item-text,
.bx-core-popup-menu-editor.bx-core-popup-menu-level0 .bx-core-popup-menu-item-text{
    color: #2a2a2a;
}

#bx-panel .bx-panel-button-icon.theme-icon {
    width: 40px !important;
    background: url("./images/theme-icon.png") no-repeat bottom !important;
    background-size: contain !important;
}
@media(max-width: 992px){
    .static_page{
        margin-bottom: 40px;
    }
    .static_page h1{
        font-size: 26px;
        margin-bottom: 24px;
    }
    .static_page h2{
        font-size: 20px;
        margin-bottom: 20px;
    }
}
@media (max-width: 768px) {
    .static_page table{
        width: 900px !important;
    }
}
@media(max-width: 576px){
    .static_page{
        margin-bottom: 25px;
        font-size: 14px;
    }
    .static_page iframe{
        height: auto;
        width: 100%;
        min-height: 250px;
    }
    .static_page h1{
        font-size: 20px;
    }
    .static_page h2{
        font-size: 18px;
    }
    .static_page h3{
        font-size: 17px;
    }
    .static_page h4{
        font-size: 15px;
    }
}
@media(max-width: 480px){
    .static_page iframe{
        min-height: 200px;
    }
}