/* blocks */
.block{
    padding: 1px;
    margin: 10px;
}
.block-normal{
    border: 1px solid #c8c8c8;
}
.block-focused{
    border: 1px solid rgb(200, 200, 200);
    box-shadow: 0 0 6px 0 rgba(50, 50, 50, 0.2);
}
.block-disabled{
    border: 1px solid rgb(220, 220, 220);
}
.block-over{
    border: 1px solid rgb(220, 220, 220);
    background-color: #fff;
    box-shadow: 0 0 20px 0 rgba(50, 50, 50, 0.4);
}
.block-special{
    border: 1px solid rgb(255, 102, 0);
}
.block-delimiter{
    border: 1px solid rgb(200, 200, 200);
    background-color: rgb(240, 240, 240);
}


.block__description{
    border: 1px solid rgb(220, 220, 220);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    box-shadow: 0 2px 6px 0 rgba(50, 50, 50, 0.4);
    border-top: none;
}
.block__title{
    color: #606060;
    padding: 10px 0;
    text-transform: uppercase;
    font-size: 20px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-align: center;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border: 1px solid rgb(200, 200, 200);
    box-shadow: 0 2px 6px 0 rgba(50, 50, 50, 0.4);
    background-image: -moz-linear-gradient( 90deg, rgb(240,240,240) 0%, rgb(255,255,255) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(240,240,240) 0%, rgb(255,255,255) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(240,240,240) 0%, rgb(255,255,255) 100%);
}
.block__title a {
	color: #606060;
}
.block__title a:hover {
	text-decoration: none;
}
.block__link{
    text-align: right;
    padding-right: 10px;
    padding-bottom: 10px;
    text-decoration: none;

}
.block__link a{
    color: #606060;
    text-decoration: none;
}
.block__link:hover a{
    color: #f60 !important;
}
.block__title--special{
    color: #fff;
    border: 1px solid rgb(255, 51, 0);
    background-image: -moz-linear-gradient( 90deg, rgb(255,51,0) 0%, rgb(255,102,0) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(255,51,0) 0%, rgb(255,102,0) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(255,51,0) 0%, rgb(255,102,0) 100%);
}
.block__title--special a {
	color: #fff;
}

/* buttons */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

.count__block{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}
.count__button{
    border: 1px solid #dcdcdc;
    background: #fff;

}
.count__button:hover, .count__button:focus{
    background-image: -moz-linear-gradient( 90deg, rgb(240,240,240) 0%, rgb(255,255,255) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(240,240,240) 0%, rgb(255,255,255) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(240,240,240) 0%, rgb(255,255,255) 100%);
}

.count__block button {
    height: 30px;
    width: 30px;
    text-align: center;
    cursor: pointer;
}

.count__value{
    border: 1px solid #dcdcdc;
    text-align: center;
    width: 60px;
    height: 30px;
    border-left: none;
    border-right: none;
}

/* add to cart */
.add-to-cart{
    padding: 5px 30px;
    border: 1px solid rgb(168, 168, 168);
    border-radius: 4px;
    background-image: -moz-linear-gradient( 90deg, rgb(240,240,240) 0%, rgb(255,255,255) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(240,240,240) 0%, rgb(255,255,255) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(240,240,240) 0%, rgb(255,255,255) 100%);
    cursor: pointer;
}
.add-to-cart:hover{
    border: 1px solid #ff6600;
}


/* buttons */
.button, .center-col .button{
    border: 1px solid #ff3908;
    border-radius: 3px;
    padding: 5px;
    color: #fff;
    cursor: pointer;
}
.button-normal{
    background-image: -moz-linear-gradient( 90deg, rgb(255,51,0) 0%, rgb(255,102,0) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(255,51,0) 0%, rgb(255,102,0) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(255,51,0) 0%, rgb(255,102,0) 100%);
}
.button-normal:hover{
    background-image: -moz-linear-gradient( 90deg, rgb(239,48,0) 11%, rgb(255,51,0) 29%, rgb(255,102,0) 67%, rgb(255,232,216) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(239,48,0) 11%, rgb(255,51,0) 29%, rgb(255,102,0) 67%, rgb(255,232,216) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(239,48,0) 11%, rgb(255,51,0) 29%, rgb(255,102,0) 67%, rgb(255,232,216) 100%);
}
.button-grey, .center-col .button-grey {
	color: #000000;
	border: 1px solid #a8a8a8;
    background-image: -moz-linear-gradient( 90deg, rgb(240,240,240) 0%, rgb(255,255,255) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(240,240,240) 0%, rgb(255,255,255) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(240,240,240) 0%, rgb(255,255,255) 100%);
}
.button-grey:hover{
    border: 1px solid #ff3908;
}
.button-disabled, .button-normal[disabled]{
    background-image: none;
    background-color: #c8c8c8;
    border: 1px solid #a8a8a8;
    cursor: default;
}
.button-hover{
    background-image: -moz-linear-gradient( 90deg, rgb(239,48,0) 11%, rgb(255,51,0) 29%, rgb(255,102,0) 67%, rgb(255,232,216) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(239,48,0) 11%, rgb(255,51,0) 29%, rgb(255,102,0) 67%, rgb(255,232,216) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(239,48,0) 11%, rgb(255,51,0) 29%, rgb(255,102,0) 67%, rgb(255,232,216) 100%);
}

.arrow-wrapper{
    position: relative;
    width: 150px;
    margin-top: 15px;
}

.back-to{
    position: relative;
    align-items: center;
    display: flex;
}
.back-to span{
    margin-top: 10px;
    display: block;
    margin-left: 35px;
    font-size: 13px;
}

.back-to__arrow__holder{
    width: 30px;
    height: 30px;
    border: 1px solid #c7c7c7;
    border-radius: 50px;
    position: absolute;
    z-index: 2;
    top: 50%;
    margin-top: -10px;
    cursor: pointer;
    background-color: #fff;
    background-image: -moz-linear-gradient(90deg, rgb(240, 240, 240) 0%, rgb(255, 255, 255) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(240, 240, 240) 0%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(240, 240, 240) 0%, rgb(255, 255, 255) 100%);
}
.prev-arrow__holder{
    left: -15px;
}
.back-to__prev-arrow{
    width: 10px;
    height: 10px;
    border-top: 3px solid #c8c8c8;
    border-left: 3px solid #c8c8c8;
    transform: rotate(-45deg);
    position: absolute;
    top: calc(50% - 5px);
    left: calc(50% - 3px);
}
.back-to__arrow__holder:hover{
    border: 1px solid #ff6a06;
}




.on-top{
    position: absolute;
    display: flex;
    margin-top: 15px;
    flex-direction: column;
}
.on-top span{
    margin-top: 60px;
    display: block;
    font-size: 13px;
}

.on-top__arrow__holder{
    width: 30px;
    height: 30px;
    border: 1px solid #c7c7c7;
    border-radius: 50px;
    position: absolute;
    z-index: 2;
    top: 50%;
    margin-top: -10px;
    cursor: pointer;
    background-color: #fff;
    background-image: -moz-linear-gradient(90deg, rgb(240, 240, 240) 0%, rgb(255, 255, 255) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(240, 240, 240) 0%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(240, 240, 240) 0%, rgb(255, 255, 255) 100%);
}
.on-top__prev-arrow__holder{
    left: 5px;
}
.on-top__prev-arrow{
    width: 10px;
    height: 10px;
    border-top: 3px solid #c8c8c8;
    border-left: 3px solid #c8c8c8;
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 3px);
    left: calc(50% - 4.5px);
}
.on-top__arrow__holder:hover{
    border: 1px solid #ff6a06;
}

.count-block{
    margin: 10px;
}
.count-block div{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px;
    border: 1px solid #dcdcdc;
}
.count-block div input{
    margin-left: 5px;
    border: none;
    width: 50px;
}
.fromBlock{
    margin-right: 5px;
}
.toBlock{
    margin-left: 5px;
}

.range{
    margin: 15px 14px;
    background: #c2c2c2;
    border-radius: 0;
}
.ui-slider-handle{
    border-radius: 50%;
    background-image: -moz-linear-gradient( 90deg, rgb(240,240,240) 0%, rgb(255,255,255) 100%) !important;
    background-image: -webkit-linear-gradient( 90deg, rgb(240,240,240) 0%, rgb(255,255,255) 100%) !important;
    background-image: -ms-linear-gradient( 90deg, rgb(240,240,240) 0%, rgb(255,255,255) 100%) !important;
    border: 1px solid rgb(168, 168, 168);
}

.ui-widget.ui-widget-content{
    border: none;
}
.ui-widget-header{
    background: #ff6600;
}
.ui-state-active{
    background-image: -moz-linear-gradient( 90deg, rgb(240,240,240) 0%, rgb(255,255,255) 100%) !important;
    background-image: -webkit-linear-gradient( 90deg, rgb(240,240,240) 0%, rgb(255,255,255) 100%) !important;
    background-image: -ms-linear-gradient( 90deg, rgb(240,240,240) 0%, rgb(255,255,255) 100%) !important;
    border: 1px solid rgb(168, 168, 168) !important;
    box-shadow: 0 0 6px 0 rgba(50, 50, 50, 0.2);
}
.ui-state-hover{
    background-image: -moz-linear-gradient( 90deg, rgb(240,240,240) 0%, rgb(255,255,255) 100%) !important;;
    background-image: -webkit-linear-gradient( 90deg, rgb(240,240,240) 0%, rgb(255,255,255) 100%) !important;
    background-image: -ms-linear-gradient( 90deg, rgb(240,240,240) 0%, rgb(255,255,255) 100%) !important;
    border: 1px solid rgb(168, 168, 168) !important;
    box-shadow: 0 0 6px 0 rgba(50, 50, 50, 0.2);
}
.ui-state-focus{
    background-image: -moz-linear-gradient( 90deg, rgb(240,240,240) 0%, rgb(255,255,255) 100%) !important;
    background-image: -webkit-linear-gradient( 90deg, rgb(240,240,240) 0%, rgb(255,255,255) 100%) !important;
    background-image: -ms-linear-gradient( 90deg, rgb(240,240,240) 0%, rgb(255,255,255) 100%) !important;
    border: 1px solid rgb(168, 168, 168) !important;
    box-shadow: 0 0 6px 0 rgba(50, 50, 50, 0.2);
}


/* forms */
.form-wrapper{
    border: 1px solid rgb(220, 220, 220);
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 0 20px 0 rgba(50, 50, 50, 0.4);
    height: 250px;
}
/* icons/inputs */

.img-disabled{
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray; /* IE 6-9 */
}
.bread__dots-dot{
    border: 1px solid #ff6d0c;
    background-color: #fff;
    width: 10px;
    height: 10px;

    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.dot-active{
    background-color: #ff6d0c;
}
.low-vision_img{
    opacity: 0.6;
}

/* чекбоксы */
.checkbox_block label.checkbox {
    cursor: pointer;
    font-weight: normal;
    padding: 10px 0;
    vertical-align: middle;
    font-size:12px;
}
.checkbox_block label.checkbox:before {
    content: " ";
    display:inline-block;
    margin-right: 10px;
    position: relative;
    text-align: center;
    width: 16px;
    height: 16px;
    background: #FFF;
    border: 1px solid #dcdcdc;
    border-radius:3px;
    vertical-align: middle;
}
/* checked */
input:checked + .checkbox:before {
    content: url("../images/checked.png");
}
/* disabled */
input:disabled + .checkbox:before {
    background: #FFF;
    border: 1px solid #dcdcdc;
}
.checkbox_block input[type=checkbox] {
    display:none;
}

/* Customize the label (the container) */
.container-input {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.container-input input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 2px;
}


/* When the checkbox is checked, add a blue background */
.container-input input:checked ~ .checkmark {
    background-color: #fff;

}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container-input input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container-input .checkmark:after {
    left: 4px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #ff6905;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* disabled */
.container-input input[disabled] ~ span {
    opacity: 0.4;
}

/* radio */

/* Customize the label (the container) */
.container-radio {
    display: block;
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.container-radio input {
    position: absolute;
    opacity: 0;
}

/* Create a custom radio button */
.checkmark-radio {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 50%;
}


/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark-radio:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.container-radio input:checked ~ .checkmark-radio:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.container-radio .checkmark-radio:after {
    top: 4px;
    left: 4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff6905;
}
/* slick-slider */

.slick--wrapper{
    position: relative;
}
.slick-dots, .center-col .slick-dots{
    display: flex;
	list-style: none;
}
.main-slider__slide img{
    width: 100%;
    height: 100%;
}
ul.slick-dots .dot{
    width: 15px;
    height: 15px;
    margin: 3px 10px;
    border-radius: 15px;
    background: transparent;
    border: 1px solid #cbcbcb;
}
ul.slick-dots .slick-active .dot{
    background: #ff6600;
}
.slider-link{
    text-align: right;
    padding-top: 5px;
}
.slider-link a{
    color: #606060;
    text-decoration: none;
    font-weight: bold;
}
.slider-link a:hover{
    color: #ff6600;
}
.slider-link a:visited{
    text-decoration: none;
}

.slick-initialized .slick-slide{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.arrow__holder{
    width: 30px;
    height: 30px;
    border: 1px solid #c7c7c7;
    border-radius: 50px;
    position: absolute;
    z-index: 5;
    top: 50%;
    margin-top: -10px;
    cursor: pointer;
    background-color: #fff;
}
.prev-arrow__holder{
    left: -15px;
}
.next-arrow__holder{
    right: -15px;
}
.prev-arrow{
    width: 10px;
    height: 10px;
    border-top: 3px solid #c8c8c8;
    border-left: 3px solid #c8c8c8;
    transform: rotate(-45deg);
    position: absolute;
    top: calc(50% - 5px);
    left: calc(50% - 3px);
}
.next-arrow{
    width: 10px;
    height: 10px;
    border-bottom: 3px solid #c8c8c8;
    border-right: 3px solid #c8c8c8;
    transform: rotate(-45deg);
    position: absolute;
    top: calc(50% - 5px);
    left: calc(50% - 6px);
}
.prev-arrow:hover, .prev-arrow:focus{
    border-top: 3px solid #f05a23;
    border-left: 3px solid #f05a23;
}
.next-arrow:hover, .next-arrow:focus{
    border-bottom: 3px solid #f05a23;
    border-right: 3px solid #f05a23;
}
.slick-dots{
    justify-content: center;
}

/* table */

table thead tr td, table tbody tr th{
    padding: 10px 80px;
    background-color: rgb(240, 240, 240);
    font-size: 14px;
    font-weight: bold;
}
table tbody tr td{
    padding: 10px;
    font-size: 13px;
    font-weight: normal;
}
table td, table th{
    border: 1px solid #d1d1d1; /* Рамка вокруг таблицы */
    border-collapse: collapse; /* Отображать только одинарные линии */
}

/* tooltip */
.tooltip{
    border: 1px solid #dcdcdc;

    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.tooltip-message{
    font-size: 12px;

}
.tooltip-dialog{
    height: 200px;
    padding: 15px;
}
.tooltip-dialog:after{
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: #fff;
    position: absolute;
    border-bottom: 1px solid #dcdcdc;
    border-right: 1px solid #dcdcdc;
    left: calc(100% - 50px);
    transform: rotate(45deg);
    top: calc(100% - 9px);
}


.tooltip-small{
    margin-top: 10px;
    font-size: 11px;
    text-align: center;
    padding: 10px 5px;
    border-radius: 0;
}
.tooltip-small:after{
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: #fff;
    position: absolute;
    border-bottom: 1px solid #dcdcdc;
    border-right: 1px solid #dcdcdc;
    left: calc(50% - 10px);
    transform: rotate(45deg);
    top: calc(100% - 9px);
}
.count{
    margin-top: 5px;
    display: block;
}
.tooltip-area{
    padding: 15px;
}

/* tabs */

.tabs-list{
    background: none;
    border: none;
    display: flex;
}
.tabs-list li {
    flex-grow: 1;
    margin: 0 !important;
    border: 1px solid #a8a8a8 !important;
    border-bottom: 1px solid #ee7322 !important;
    border-radius: 0;
    text-align: center;
    padding: 10px !important;
}
.tabs-list li:first-child{
    border-top-left-radius: 5px;
}
.tabs-list li:last-child{
    border-top-right-radius: 5px;
}
.tabs-list li a{
    color: #606060;
    font-weight: bold;
    font-size: 19px;
}
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited{
    color: #606060;

}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor{
    float: none !important;
}
.ui-tabs .ui-tabs-panel{
    margin: 0 3px;
    border: 1px solid #f60;
}
.ui-tabs .ui-tabs-nav li.ui-state-hover {
	border: 1px solid #f60 !important;
	background-image: none !important;
	background-color: #f60;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active{
    border: 1px solid #f60 !important;
	background-image: none !important;
	background-color: #f60;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active a {
	color: #000000;
}

/* alt tabs */

.tabs__tab {
    font-size: 13px;
    line-height: 22px;
}
.tabs__tab__warning {
    font-size: 14px;
    font-weight: bold;
    color: #ff3300;
    padding-right: 5px;
}
.tabs__tab__title {
    font-size: 16px;
    margin: 25px 0 20px;
    font-weight: bold;
}
.tabs__tab__subtitle {
    font-weight: bold;
    padding-bottom: 15px;
}
#tabs__tab1 p:nth-child(4) {
    padding: 25px 0;
}
.tabs__tab {
    display: none;
}
#tabs__tab1 {
	display: block;
}
.tabs__menu__flex-container{
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    margin: 35px 0 25px;
}
.center-col .tabs__menu__item a {
    padding: 20px 15px;
    display: block;
    color: #606060;
    font-size: 16px;
    font-weight: bold;
    outline: 1px solid #a8a8a8;
    margin-right: 1px;
}
.center-col .tabs__menu__item a.tabs__active{
    color: #ff6600;
    outline-color: #ff6600;
    z-index: 0;
    position: relative;
}
.center-col .tabs__menu__item a:hover{
    text-decoration: none;
}
.tabs__menu__item {
    background-image: linear-gradient(to top, #f0f0f0, #fff);

}
#tabs__tab4 .tabs__tab__title {
    margin-bottom: 15px;
}
#tabs__tab4 p:nth-child(4), #tabs__tab4 p:nth-child(7){
    margin-bottom:15px;
}
@media (max-width: 991px){
    #tabs__tab2 table:last-child{margin-bottom:30px;}
}
@media (max-width: 767px){

}
@media (max-width: 590px){
    .tabs__menu__item a {
        padding: 15px 10px;
        font-size: 15px;
    }
}

@media (max-width: 523px){
    .tabs__menu__flex-container{
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .tabs__menu__item a {
        padding: 20px 15px;
        font-size: 16px;
    }
    .tabs__menu__item {
        /*width: 50%;*/
        margin-top: 1px;
    }
}

@media (max-width: 410px){
    .tabs__menu__item a {
        padding: 15px 10px;
        font-size: 15px;
    }
}
@media (max-width: 370px){
    .tabs__menu__item a {
        padding: 15px 5px;
        font-size: 13px;
    }
}