/* local bootstrap */
.btn {
    position: relative;
    display: inline-block;
    white-space: nowrap;
    border: 1px solid var(--grey);
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: .2em;
    padding: .4em 1em .32em 1.2em;
    background: #FFF;
    transition: var(--qtrans);
    cursor: pointer; cursor: hand;
}
.btn:hover {
    color: #FFF;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    bottom: 0;
    background: var(--grey);
    transition: var(--qtrans);
    z-index: -1;
}
.btn:hover::before {
    width: 100%;
}
.btn-sm {
    font-size: 12px;
}
.btn-xs {
    font-size: 10px;
}
.btn-lg {
    font-weight: 300;
    font-size: 19px;
    letter-spacing: 3px;
}
.btn-default {
    background: transparent;
}
.btn-default::before {
    background: var(--grey);
}
.btn-primary {
    color: var(--blue);
    border-color: var(--blue);
}
.btn-primary:hover {
    background: var(--blue);
}
.btn.btn-primary::before {
    background: var(--blue);
}
.btn-white {
    color: #FFF;
    border: 1px solid #FFF;
    background: transparent;
}
.btn-white:hover {
    color: var(--green);
}
.btn-white::before {
    background: #FFF;
}
.btn-danger {
    color: var(--red);
    border-color: var(--red);
}
.btn.btn-danger::before {
    background: var(--red);
}
.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
}
.btn:disabled {
    cursor: not-allowed !important;
    color: var(--lgrey) !important;
    border-color: var(--lgrey) !important;
    background: #FFF !important;
}
.table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 var(--gap) 0;
}
.table tr {}
.table td {
    padding: 8px 20px;
}
.table.table-bordered td {
    border: 1px solid var(--lgrey);
}
.table.table-striped tr:nth-child(odd) {
    background: var(--lgrey);
}
.table.table-hover tr:hover, .table tr.active {
    background: var(--yellow) !important;
}
.table.table-more-compact td {
    padding: 4px 10px;
}
.table.table-more-compact tr td:first-child {
    font-size: 12px;
}
.alert {
    padding: 15px 20px 15px 17px;
    margin: 0 0 var(--gap) 0;
    box-shadow: var(--localshadow);
    border-left: 3px solid var(--grey);
    border-radius: 10px;
}
.alert-primary {
    border-color: var(--blue);
}
.alert-success {}
.alert-info {
    border-color: var(--yellow);
}
.alert-danger {
    border-color: var(--red);
}
.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid var(--grey);
    border-radius: .25rem;
}
.plus38 {
    position: absolute;
    top: 0;
    left: 0;
}
.btn.disasble_submit {
    pointer-events: none;
    opacity: .65;
}
/* local bootstrap */

/* header */
.top_alert {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 8px calc(var(--gap) + 24px) 8px var(--gap);
    color: #FFF;
    line-height: 24px;
    font-size: 17px;
    background: var(--grey);
    z-index: 1234567;
    transform: translateX(0) translateY(-100px);
    transition: var(--qtrans);
}
.top_alert.active {
    transform: translateX(0) translateY(0);
}
.top_search_form_input:focus {
    border-color: var(--blue);
}
.top_alert.top_alert_success {
    background: var(--green);
}
.top_alert .btn {
    font-size: 10px;
    padding: 0 8px 0 10px;
    margin: 0 0 0 12px;
}
.top_alert_close {
    position: absolute;
    top: 10px;
    right: var(--gap);
    width: 20px;
    height: 20px;
    cursor: pointer; cursor: hand;
    transition: var(--qtrans);
}
.top_alert_close:hover {
    transform: rotate(180deg);
}
.top_alert_close::before, .top_alert_close::after {
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    right: 0;
    height: 2px;
    background: #FFF;
    transform: rotate(45deg);
}
.top_alert_close::after {
    transform: rotate(-45deg);
}
.top_search_form_input:focus ~ .top_search_form_submit {
    opacity: 1;
}
.top_cart_fixed {
    position: absolute;
    top: calc(100% + 10px);
    width: 280px;
    right: 0;
    background: #FFF;
    box-shadow: var(--localshadow);
    padding: 10px 15px 15px 15px;
    z-index: 10001;
    border-radius: 10px;
    border-top: 3px solid var(--blue);
    transition: var(--qtrans);
}
.top_cart_fixed::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 10px 10px;
    border-color: transparent transparent var(--blue) transparent;
}
.cart_products {
    list-style: none;
    max-height: calc(100vh - 383px);
    overflow-y: auto;
}
.order_cart_inner .cart_products {
    max-height: fit-content;
}
.cart_products>li {
    display: grid;
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto;
    gap: 0 10px;
    grid-template-areas: "cart_prod_image cart_products_second";
    margin-bottom: 12px;
}
.cart_prod_image {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.cart_products_second {
    position: relative;
    overflow: hidden;
}
.cart_prod_del {
    content: '';
    position: absolute;
    top: 3px;
    right: 0;
    width: 11px;
    height: 11px;
    cursor: pointer; cursor: hand;
    transition: var(--qtrans);
}
.cart_prod_del:hover {
    transform: rotate(180deg);
}
.cart_prod_del::before, .cart_prod_del::after {
    content: '';
    position: absolute;
    width: 11px;
    height: 1px;
    top: 5px;
    left: 0;
    background: var(--red);
    transform: rotate(45deg);
}
.cart_prod_del::after {
    transform: rotate(-45deg);
}
.cart_prod_image img {
    object-fit: contain;
    height: 100%;
    width: 100%;
}
.cart_prod_link {
    display: block;
    font-size: 12px;
    line-height: 15px;
    margin: 0 15px 2px 0;
}
.cart_prod_option {
    font-size: 10px;
    line-height: 15px;
    color: var(--grey);
    margin: 0 0 3px 0;
}
.cart_prod_option_big {
    font-size: 13px;
    line-height: 20px;
    margin: 3px 0 5px 0;
}
.cart_two_columns {
	display: grid;
	grid-template-columns: 1fr 80px;
	grid-column-gap: 10px;
}
.cart_prod_plus_minus {
    display: inline-block;
    vertical-align: top;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border: 0 none;
    cursor: pointer; cursor: hand;
    background: #FFF;
}
.cart_prod_plus_minus:active {
    color: #FFF;
    background: var(--blue);
}
.cart_prod_price {
    white-space: nowrap;
}
.cart_prod_input {
    display: inline-block;
    vertical-align: top;
    width: 40px;
    height: 20px;
    line-height: 20px;
    background: var(--lgrey);
    border: 0 none;
    text-align: center;
    font-size: 12px;
}
.cart_prod_input.alerted {
    border: 1px solid var(--red);
}
.cart_alert_box .cart_prod_plus_minus, .cart_alert_box .cart_prod_input {
    display: block;
    width: 100%;
}
.itogo_cart {
    position: relative;
    text-align: center;
    font-size: 10px;
    line-height: 10px;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 10px 0;
    z-index: 10;
}
.itogo_price {
    text-align: center;
    padding: 0 0 10px 0;
}
.itogo_cart::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 5px;
    height: 1px;
    background: #CCC;
    z-index: -1;
}
.itogo_cart::after {
    content: '';
    position: absolute;
    width: 60px;
    left: calc(50% - 32px);
    height: 10px;
    top: 0;
    background: #FFF;
    z-index: -1;
}
/* header */

/* content */
.breadcrumbs li::after {
    content: '»';
    position: absolute;
    top: 0;
    right: -.25em;
}
.breadcrumbs li:last-child::after {
    display: none;
}
.grnwt::after {
	content: '';
    position: absolute;
    top: 0px;
    left: 19px;
    width: 1px;
    height: 19px;
    background: var(--blue);
    transform: rotate(45deg);
}
.statpage ul, .stat-page-content ul {
    list-style: none;
    margin: 0;
    padding: 0 0 .5em 0;
}
.statpage li, .stat-page-content li {
    position: relative;
    margin: 0;
    padding: 0 0 .5em 1.5em;
}
.statpage li, .stat-page-content li::after {
    content: "";
}

.statpage li::before, .stat-page-content li:not(:first-child)::before {
    content: '';
    position: absolute;
    top: .65em;
    left: 0;
    width: 1em;
    height: 1px;
    background: var(--blue);
}
/* content */

/* rating */
.rate_form {
    padding: 10px 15px 10px 15px;
    margin: 0 0 var(--gap) 0;
    border: 5px solid var(--lblue);
}
.reply_form {
    padding: 15px 20px 1px 20px;
    background: var(--lgrey);
}
.reply_form_input_wrapper {
    position: relative;
    width: 75%;
    margin: 0 0 var(--gap) 0;
}
.reply_form_input.form-control, .reply_form_textarea.form-control {
    padding-top: 10px;
    padding-left: 16px;
}
.reply_form_label {
    position: absolute;
    top: 12px;
    left: 17px;
    font-size: 16px;
    line-height: 1em;
    pointer-events: none;
    transition: var(--qtrans);
}
.reply_form_input:focus ~ .reply_form_label,
.reply_form_input:valid ~ .reply_form_label,
.reply_form_textarea:focus ~ .reply_form_label,
.reply_form_textarea:valid ~ .reply_form_label
{
    color: var(--grey);
    top: 3px;
    font-size: 9px;
}
.stars_wrapper {
    position: relative;
    width: 150px;
    height: 30px;
    z-index: 10;
    margin: -7px 0 7px 0;
}
.stars_wrapper_smaller {
    width: 75px;
    height: 15px;
    margin: 7px auto;
}
.stars_svg {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 20;
    background-repeat: repeat;
    background-position: 0 0;
    background-size: auto 100%;
    background-image: url(/images/design/star.svg);
}
.stars_wrapper_smaller .stars_svg {
    background-image: url(/images/design/starwhite.svg);
}
.stars_value {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
    background: orange;
    z-index: 15;
}
.big_numbers {
    font-size: 25px;
    line-height: 1em;
    margin: 0 0 5px 0;
}
.rating_widget hr {
    margin: 12px 0 8px 0;
    padding: 0;
    height: 1px;
    background: var(--grey);
    opacity: 0.4;
}
.reply_form h3, .reply_form .like_h3 {
    padding-bottom: .75em;
}
#reply_form_captcha {
    width: 100px;
}
/* rating */

/* stars */
.rating_text {
    transition: var(--qtrans);
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
}
.rating_text.active {
}
.star-cb-group {
    font-size: 0;
    unicode-bidi: bidi-override;
    direction: rtl;
    margin: 0 auto;
}
.voted {
    pointer-events: none;
}
.star-cb-group * {
    font-size: 3rem;
    line-height: 1em;
}
.star-cb-group > input {
    display: none;
}
.star-cb-group > input + label {
    display: inline-block;
    overflow: hidden;
    text-indent: 9999px;
    width: 47px;
    white-space: nowrap;
    cursor: pointer;
}
.star-cb-group > input + label:before {
    display: inline-block;
    text-indent: -9999px;
    content: "☆";
    color: var(--yellow);
}
.star-cb-group > input:checked ~ label:before, .star-cb-group > input + label:hover ~ label:before, .star-cb-group > input + label:hover:before {
    content: "★";
    color: var(--yellow);
    /*text-shadow: 0 0 1px var(--red);*/
}
.star-cb-group > .star-cb-clear + label {
    text-indent: -9999px;
    width: .5em;
    margin-left: -.5em;
}
.star-cb-group > .star-cb-clear + label:before {
    width: .5em;
}
.star-cb-group:hover > input + label:before {
    content: "☆";
    content: "★";
    color: #888;
    color: var(--grey);
    text-shadow: none;
}
.star-cb-group:hover > input + label:hover ~ label:before, .star-cb-group:hover > input + label:hover:before {
    content: "★";
    color: var(--yellow);
    color: orange;
}
/* stars */

/* comments */
.comments {
    list-style: none;
    margin: 0 0 var(--gap) 0;
}
.comments li {
    position: relative;
    padding: 5px 0 5px 62px;
}
.comments li::before {
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    width: 52px;
    height: 52px;
    background-color: var(--lgrey);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    background-image: url(/images/design/user.svg);
    border-radius: 50%;
    opacity: .5;
}
.comments li.comment_answer {
    margin-left: 62px;
}
.comments li.comment_answer::before {
    content: 'B';
    color: #FFF;
    background: var(--blue);
    opacity: 1;
    line-height: 52px;
    font-size: 30px;
    text-align: center;
    font-weight: 200;
}
.comments li.comment_answer::after {
    content: '↑';
    position: absolute;
    top: -2px;
    left: 23px;
    font-size: 14px;
    line-height: 1em;
    color: var(--blue);
}
.comments_uname {
    font-weight: bold;
}
.comments_udate {
    color: var(--grey);
}
.comments_stars {
    display: inline-block;
    width: 5em;
    height: 1em;
    background-color: orange;
    background-image: url(/images/design/starwhite.svg);
    background-repeat: repeat-x;
    background-position: 0 0;
    background-size: auto 100%;
}
/* comments */

/* other */
.i_am_viber {
    color: #8E24AA;
}
.i_am_telega {
    color: #039BE5;
}
.i_am_viber::before, .i_am_telega::before {
    content: '';
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 .3em 0 0;
    top: 0.2em;
}
.compare-table-wrapper {
    overflow-x: auto;
    margin: 0 0 var(--gap) 0;
}
.imgincompare {
    width: auto;
    height: 90px;
    display: block;
    margin: 0 auto 5px auto;
}
.table .product_icon {
    display: inline-block;
    vertical-align: top;
}

.badge_novinka {
    background-image: linear-gradient(180deg, #A6EC00 0%, #6DD400 100%);
}
.badge_hit_prodaj {
    background-image: linear-gradient(180deg, #DC43F2 0%, #B620E0 100%);
}
.badge_rasprodaja {
    background-image: linear-gradient(180deg, #FCDB00 0%, #F7B500 100%);
}
.badge_skidka {
    background-image: linear-gradient(180deg, #00C4FF 0%, #0091FF 100%);
}
.site_black_alert {
    position: fixed;
    min-height: 40px;
    padding: 10px 35px 10px 15px;
    left: var(--gap);
    right: calc(var(--gap) + 60px);
    bottom: var(--gap);
    color: #FFF;
    background: rgba(0,0,0,.92);
    transition: var(--qtrans);
    z-index: 999999998;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 0 15px rgba(255,255,255,.5);
    transform: translateX(0) translateY(100px);
}
.site_black_alert.active {
    visibility: visible;
    opacity: 1;
    transform: translateX(0) translateY(0);
}
.site_black_alert_close {
    position: absolute;
    top: 9px;
    right: 9px;
    width: 21px;
    height: 21px;
    cursor: pointer; cursor: hand;
    transition: var(--qtrans);
    transform: rotate(45deg);
}
.site_black_alert_close:hover {
    transform: rotate(225deg);
}
.site_black_alert_close::before, .site_black_alert_close::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10px;
    width: 1px;
    height: 21px;
    background: #FFF;
}
.site_black_alert_close::after {
    top: 10px;
    left: 0;
    width: 21px;
    height: 1px;
}

.product_icons.freeze .cart_alert_box {
    visibility: visible;
    opacity: 1;
    transform: translateX(0) translateY(0);
    pointer-events: all;
}
.cart_alert_box::after {
    content: '';
    position: absolute;
    top: -10px;
    right: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 10px 10px;
    border-color: transparent transparent #ffffff transparent;
}
.to_the_top_button {
    position: fixed;
    bottom: var(--gap);
    left: var(--gap);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0);
    border: 1px solid var(--blue);
    cursor: pointer; cursor: hand;
    transition: var(--qtrans);
    z-index: 12345;
    visibility: hidden;
    opacity: 0;
    transform: translateX(0) translateY(15px);
}
.to_the_top_button.active {
    visibility: visible;
    opacity: 1;
    transform: translateX(0) translateY(0);
}
.to_the_top_button:hover {
    background: var(--blue);
}
.to_the_top_button::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 13px;
    width: 11px;
    height: 11px;
    border-top: 1px solid var(--blue);
    border-right: 1px solid var(--blue);
    transform: rotate(-45deg);
    transition: var(--qtrans);
}
.to_the_top_button:hover::before {
    border-color: #FFF;
}
.fixed_prod_filter {
    transform: rotate(-90deg) translateX(0) translateY(0);
}

.global_overlay::before, .global_overlay::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 2px;
    width: 27px;
    height: 1px;
    background: #FFF;
    transform: rotate(45deg);
    pointer-events: none;
}
.global_overlay::after {
    transform: rotate(-45deg);
}

.fixed_prod_filter {
    position: fixed;
    width: 200px;
    top: 240px;
    right: -85px;
    line-height: 28px;
    height: 30px;
    padding: 0 0 0 12px;
    text-align: left;
    background: #FFF;
    color: var(--blue);
    border: 1px solid var(--blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer; cursor: hand;
    z-index: 12344;
    transform: rotate(-90deg) translateX(0) translateY(30px);
    transition: var(--qtrans);
}
.fixed_prod_filter::after {
    content: '';
    position: absolute;
    top: 11px;
    right: 12px;
    width: 11px;
    height: 11px;
    border-bottom: 1px solid var(--blue);
    border-left: 1px solid var(--blue);
    transform: rotate(135deg);
}
.fixed_prod_filter:active {
    color: #FFF;
    background: var(--blue);
}
.fixed_prod_filter:active::after {
    border-color: #FFF;
}

.order_cart_inner {
    padding: 10px 15px;
    background: var(--lgrey);
    border-radius: 10px;
}
.order_cart_list {
    list-style: none;
}
.order_cart_list>li {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0 15px;
    background: #FFF;
    border-radius: 5px;
    margin: 0 0 15px 0;
    padding: 10px 15px;
}
.order_cart_list_image {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.order_cart_list_image img {
    object-fit: contain;
    height: 100%;
    width: 100%;
}
.cabineticons {
    list-style: none;
    display: flex;
    margin: 0 0 var(--gap) 0;
}
.cabineticons li {
    margin: 0 1em 0 0;
}

#tableoforder>tbody>tr>td {
    width: 50%;
}
/* other */

/* when header is fixed */
.header.fixedshow .top_catalog_button {
	display: block;
}
.header.fixedshow .top_catalog_wrapper.container {
	max-width: 280px;
	margin: 0;
	padding: 0;
}
.header.fixed .top_catalog {
    transition: none;
    top: 40px;
    left: 0;
    max-height: 100vh;
    width: 280px;
    overflow-y: auto;
    padding: 12px 20px;
    transform: translateX(-300px) translateY(0);
}
.header.fixedshow .top_catalog {
	position: fixed;
	transition: var(--qtrans);
}
.header.fixedshow .top_catalog.active {
	transform: translateX(0) translateY(0);
}
.header.fixedshow .top_catalog_ul {
	display: block;
	margin: 0;
}
.header.fixedshow .top_catalog_ul>li {
	font-size: 21px;
	line-height: 27px;
}
.header.fixedshow .top_catalog_ul>li>a,
.header.fixedshow .top_catalog_ul>li>a:hover,
.header.fixedshow .top_catalog_ul>li.active>a,
.header.fixedshow .top_catalog_ul>li.active>a:hover {
	position: relative;
	background: transparent;
	color: #000;
	padding: 0 0 7px 0;
}
.header.fixedshow .top_catalog_ul>li.active>a::first-letter {
	color: var(--blue);
}
.header.fixedshow .top_catalog_ul>li>a::before,
.header.fixedshow .top_catalog_ul>li>a::after {
	content: '';
	position: absolute;
	top: 14px;
	right: 0;
	width: 21px;
	height: 1px;
	background: #000;
	opacity: 21px;
	opacity: .21;
	transition: var(--qtrans);
}
.header.fixedshow .top_catalog_ul>li>a::after {
	right: 10px;
	top: 4px;
	width: 1px;
	height: 21px;
}
.header.fixedshow .top_catalog_ul>li.active>a::before,
.header.fixedshow .top_catalog_ul>li.active>a::after {
	transform: rotate(45deg);
}
.header.fixedshow .top_catalog_ul_ul {
	position: static;
	display: block;
	visibility: visible;
	opacity: 1;
	border: 0 none;
	padding: 0;
	top: auto;
	left: auto;
	right: auto;
	transform: translateX(0) translateY(0);
	display: none;
}
.header.fixedshow .top_catalog_ul>li.active .top_catalog_ul_ul {
	display: block;
}
.header.fixedshow .top_catalog_ul_ul>li>a {
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 2px;
}
/* when header is fixed */

/* loader */
.global_loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 123456;
    background: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    transition: var(--qtrans);
    visibility: hidden;
    opacity: 0;
}
body.loading .global_loader {
    visibility: visible;
    opacity: 1;
}
.sk-cube-grid {
    width: 40px;
    height: 40px;
    margin: auto auto;
  }
  .sk-cube-grid .sk-cube {
    width: 33%;
    height: 33%;
    background-color: var(--blue);
    float: left;
    -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
            animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
  }
  .sk-cube-grid .sk-cube1 {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s; }
  .sk-cube-grid .sk-cube2 {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s; }
  .sk-cube-grid .sk-cube3 {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s; }
  .sk-cube-grid .sk-cube4 {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s; }
  .sk-cube-grid .sk-cube5 {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s; }
  .sk-cube-grid .sk-cube6 {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s; }
  .sk-cube-grid .sk-cube7 {
    -webkit-animation-delay: 0s;
            animation-delay: 0s; }
  .sk-cube-grid .sk-cube8 {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s; }
  .sk-cube-grid .sk-cube9 {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s; }
  @-webkit-keyframes sk-cubeGridScaleDelay {
    0%, 70%, 100% {
      -webkit-transform: scale3D(1, 1, 1);
              transform: scale3D(1, 1, 1);
    } 35% {
      -webkit-transform: scale3D(0, 0, 1);
              transform: scale3D(0, 0, 1);
    }
  }
  @keyframes sk-cubeGridScaleDelay {
    0%, 70%, 100% {
      -webkit-transform: scale3D(1, 1, 1);
              transform: scale3D(1, 1, 1);
    } 35% {
      -webkit-transform: scale3D(0, 0, 1);
              transform: scale3D(0, 0, 1);
    }
  }
/* loader */

/* media queries */
@media screen and (max-width: 1024px) {
    .fixed_prod_filter {
        transform: rotate(-90deg) translateX(0) translateY(0);
    }
    .fixed_prod_filter.inleft {
        transform: rotate(-90deg) translateX(0) translateY(30px);
    }
    .fixed_prod_filter.inleft::after {
        transform: rotate(-45deg) translateX(4px) translateY(-4px);
    }
}
@media screen and (max-width: 720px) {
    .site_black_alert {
        left: 0;
        right: 40px;
        bottom: 0;
    }
}
@media screen and (max-width: 620px) {
    .table tr, .table td {
        /*display: block;*/
    }
    .reply_form_input_wrapper {
        width: 100%;
    }
}
/* media queries */