

/* Start:/local/templates/meb/components/bitrix/catalog/meb/bitrix/catalog.element/.default/style.css?16908203612647*/
/* Индикаторы карусели */
.carousel-indicators li {
    margin: 0px 3px !important;
}

.carousel-indicators {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

body .carousel-indicators li.active {
    opacity: 1;
}

body .carousel-indicators li {
    opacity: 0.5;
}

.style-text {
    clear: both;
    /* margin-top: 10px; */
    display: block;
    padding-top: 8px;
    margin-top: 10px;
    float: left;
    width: 100%;
    display: block;
    line-height: 20px;
    padding: 3px 15px 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #4CAF50;
    font-size: 16px;
    text-align: left;
    background-repeat: no-repeat;
    position: relative;
    background-position: left center;
    padding-left: 65px;
}

.style-text img {
    border-radius: 50%;
    display: inline-block;
    margin-right: 20px;
    top: 0;
    left: 0;
    position: absolute;
    max-width: 44px;
    float: left;
}

.product_props {
    margin-bottom: 25px;
}

.product-block {
    width: 100%;
    display: inline-block;
}

.pruduct-tabs,
.prop-key,
.prop-value {
    display: inline-block;
}

.product-tab {
    display: inline-block;
    width: 24%;
    text-align: center;
    background: #eee;
    padding: 10px 0;
    cursor: pointer;
}

.product-tab.active {
    color: #F2F2F2;
    background: #2b9acf;
}

.prop-row {
    padding: 5px 0;
}

.prop-key {
    font-weight: bold;
    width: 50%;
}

.choose-favorite-detail {
    display: inline-block;
    margin: 0 0 15px 0;
}

.product-block__right .fast-order__container {
    margin-bottom: 0;
}

.product-page__decription iframe {
    width: 100%;
    height: 490px;
}

@media (max-width: 1024px) {
    .product-page__decription iframe {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .product-tab {
        width: 100%;
    }

    .product-page__decription iframe {
        height: 415px;
    }
}

@media (max-width: 640px) {
    .product-page__decription iframe {
        height: 345px;
    }
}

@media (max-width: 480px) {
    .product-page__decription iframe {
        height: 225px;
    }
}

@media (min-width: 991px) {
    .product-block__right .cf .product-page__props,
    .product-block__right .cf .product-page__buy {
        display: inline-block;
        float: left;
    }

    .product-block__right .cf .product-page__props {
        width: 45%;
    }

    .product-block__right .cf .product-page__buy {
        width: 200px;
    }
}
/* End */


/* Start:/local/components/darneo/catalog.sku.vue/templates/.default/style.css?174118858016620*/
/* Product Layout */
.product-layout {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 30px;
    margin: 0 auto;
    width: 100%;
}

.product-layout__gallery {
    position: sticky;
    top: 20px;
    align-self: start;
    max-width: 600px;
}

.product-layout__info {
    min-width: 0;
    max-width: 700px;
    padding-right: 20px;
}

/* Responsive Layout */
@media (max-width: 1200px) {
    .product-layout {
        grid-template-columns: minmax(300px, 45%) 1fr;
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .product-layout {
        grid-template-columns: minmax(280px, 42%) 1fr;
        gap: 20px;
    }
    
    .product-layout__info {
        padding-right: 15px;
    }
}

@media (max-width: 768px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-layout__gallery {
        position: relative;
        top: 0;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .product-layout__info {
        max-width: 600px;
        margin: 0 auto;
        padding-right: 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .product-layout {
        gap: 20px;
    }
}

.sku-selector {
    margin: 20px 0;
}

.sku-group {
    margin-bottom: 15px;
}

.sku-group__title {
    font-size: 14px;
    color: #2b9acf;
    margin-bottom: 8px;
    font-weight: 500;
}

.sku-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sku-option {
    position: relative;
    cursor: pointer;
}

.sku-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.sku-option__text {
    display: inline-block;
    padding: 8px 16px;
    border: 2px solid #4facd7;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
    color: #2b9acf;
}

/* Available state */
.sku-option--available .sku-option__text:hover {
    background: #fce0b1;
    border-color: #ff8a00;
    color: #ff8a00;
}

/* Active state */
.sku-option--active .sku-option__text {
    background: #2b9acf;
    border-color: #2b9acf;
    color: #fff;
}

/* Disabled state */
.sku-option--disabled {
    opacity: 0.6;
}

.sku-option--disabled .sku-option__text {
    background: #f5f5f5;
    border-color: #ddd;
    color: #999;
}

.sku-option--disabled:not(.sku-option--active) .sku-option__text:hover {
    background: #f5f5f5;
    border-color: #ddd;
    color: #999;
}

/* Active state even when disabled */
.sku-option--active.sku-option--disabled {
    opacity: 1;
}

.sku-option--active.sku-option--disabled .sku-option__text {
    background: rgba(43, 154, 207, 0.7);
    border-color: rgba(43, 154, 207, 0.7);
    color: #fff;
}

/* Responsive styles */
@media (max-width: 768px) {
    .sku-options {
        gap: 8px;
    }

    .sku-option__text {
        padding: 6px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .sku-group__title {
        font-size: 13px;
    }

    .sku-option__text {
        padding: 5px 10px;
        font-size: 12px;
    }
}

/* Product Details */
.product-details {
    margin-bottom: 25px;
}

.product-details__main {
    display: grid;
    gap: 25px;
}

/* Price Styles */
.product-price {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(43, 154, 207, 0.05);
    border-radius: 8px;
    border-left: 4px solid #2b9acf;
    line-height: 40px;
}

.product-price__current {
    font-family: "intro_bold",sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #2b9acf;
    letter-spacing: -0.02em;
}

.product-price__old {
    font-family: "intro_bold",sans-serif;
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
    position: relative;
}

.product-price__old:after {
    content: attr(data-discount);
    position: absolute;
    top: -18px;
    right: -5px;
    background: #ff8a00;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

/* Product Info Styles */
.product-info {
    display: grid;
    gap: 12px;
}

.product-info__item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-info__label {
    color: #666;
    font-size: 14px;
    min-width: 140px;
}

.product-info__value {
    color: #333;
    font-size: 14px;
}

.product-info__value--link {
    color: #2b9acf;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-info__value--link:hover {
    color: #ff8a00;
}

.product-info__value--in-stock {
    color: #4CAF50;
    font-weight: 500;
}

.product-info__value--out-of-stock {
    color: #dc3545;
    font-weight: 500;
}

/* Cart Section Styles */
.cart-section {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(43, 154, 207, 0.03);
    border-radius: 8px;
}

.cart-section__quantity {
    flex: 0 0 auto;
}

/* Cart Actions */
.cart-actions {
    flex: 1;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.cart-actions__main {
    flex: 1;
    position: relative;
}

/* SKU Cart Button Base */
.sku-add-cart {
    width: 100%;
    height: 44px;
    min-height: 44px;
    background: #ff8a00;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    white-space: nowrap;
    position: relative;
}

.sku-add-cart:hover {
    background: #e67a00;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 138, 0, 0.2);
}

.sku-add-cart:active {
    transform: translateY(0);
    box-shadow: none;
}

.sku-add-cart__icon {
    position: relative;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 20px;
}

.sku-add-cart__icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.sku-add-cart__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.sku-add-cart__text {
    font-size: 16px;
    font-weight: 600;
}

/* SKU Cart Button Loading State */
.sku-add-cart--loading {
    background: #ff8a00 !important;
    opacity: 0.9;
    cursor: wait !important;
    color: #fff !important;
    transform: none !important;
    box-shadow: none !important;
}

.sku-add-cart--loading .sku-add-cart__icon--loading {
    animation: spin 0.8s linear infinite;
}

.sku-add-cart--loading .sku-add-cart__loader {
    stroke-dasharray: 30;
    stroke-dashoffset: 15;
    stroke: currentColor;
    stroke-linecap: round;
    animation: dash 1s ease-in-out infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 30;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -30;
    }
}

/* SKU Cart Button In Cart State */
.sku-add-cart--in-cart {
    background: #4CAF50 !important;
    border: none !important;
    color: #fff !important;
    opacity: 1 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
}

.sku-add-cart--in-cart:hover {
    background: #43A047 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.sku-add-cart--in-cart:active {
    transform: translateY(0);
    box-shadow: none;
}

.sku-add-cart--in-cart .sku-add-cart__icon {
    opacity: 1;
}

/* SKU Cart Button Disabled State */
.sku-add-cart:disabled,
.sku-add-cart--disabled {
    opacity: 0.7;
    background: #f5f5f5;
    color: #999;
    border: 1px solid #ddd;
    cursor: not-allowed;
    pointer-events: none;
}

.sku-add-cart:disabled .sku-add-cart__icon,
.sku-add-cart--disabled .sku-add-cart__icon {
    opacity: 0.5;
}

.sku-add-cart:disabled:hover,
.sku-add-cart--disabled:hover {
    background: #f5f5f5;
    transform: none;
    box-shadow: none;
}

/* Pulse animation for loading state */
.sku-add-cart--loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-radius: inherit;
    opacity: 0;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.1;
    }
    100% {
        opacity: 0;
    }
}

/* Wishlist Button */
.wishlist-button {
    flex: 0 0 auto;
    height: 44px;
    width: 44px;
    min-width: 44px;
    padding: 0;
    background: #fff;
    border: 2px solid #4facd7;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #2b9acf;
}

.wishlist-button:hover {
    background: rgba(43, 154, 207, 0.05);
    transform: translateY(-1px);
}

.wishlist-button:active {
    transform: translateY(0);
}

.wishlist-button__icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.wishlist-button[data-added="true"] {
    background: rgba(43, 154, 207, 0.05);
}

.wishlist-button[data-added="true"] .wishlist-button__icon {
    fill: currentColor;
}

/* Quantity Selector Styles */
.quantity-selector {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid rgba(43, 154, 207, 0.3);
    border-radius: 6px;
    background: #fff;
    width: 122px;
}

.quantity-selector__plus-wrapper {
    position: relative;
}

.quantity-selector__btn {
    width: 36px;
    height: 44px;
    border: none;
    background: transparent;
    color: #2b9acf;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border-radius: 0 6px 6px 0;
    flex-shrink: 0;
}

.quantity-selector__btn:first-child {
    border-radius: 6px 0 0 6px;
}

.quantity-selector__btn:hover:not(:disabled) {
    background: rgba(43, 154, 207, 0.1);
}

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

.quantity-selector__input {
    width: 50px;
    height: 44px;
    border: none;
    border-left: 1px solid rgba(43, 154, 207, 0.2);
    border-right: 1px solid rgba(43, 154, 207, 0.2);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    -moz-appearance: textfield;
    background: transparent;
    padding: 0;
    flex: 1;
    min-width: 0;
    outline: none;
    transition: all 0.2s ease;
}

.quantity-selector__input:focus {
    background: rgba(43, 154, 207, 0.05);
    color: #2b9acf;
}

.quantity-selector__input::-webkit-outer-spin-button,
.quantity-selector__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Quantity Limit Message */
.quantity-selector__limit {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: #fff5e6;
    border: 2px solid #ff8a00;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 13px;
    line-height: 1.4;
    color: #ff8a00;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(255, 138, 0, 0.15);
    z-index: 1000;
    font-weight: 500;
    width: max-content;
    text-align: center;
    min-width: 200px;
}

.quantity-selector__limit--show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.quantity-selector__limit-value {
    font-weight: 700;
    color: #e67a00;
    display: inline-block;
    margin: 0 2px;
}

/* Shake animation for quantity selector */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

.quantity-selector--shake {
    animation: shake 0.4s ease-in-out;
    border-color: #ff8a00;
    background: #fff5e6;
}

.quantity-selector--shake .quantity-selector__input {
    background: #fff5e6;
    color: #ff8a00;
    font-weight: 700;
}

.quantity-selector--shake .quantity-selector__btn:disabled {
    opacity: 1;
    color: #ff8a00;
    cursor: not-allowed;
}

/* Показываем сообщение при наведении на кнопку плюс */
.quantity-selector__plus-wrapper:hover .quantity-selector__limit.quantity-selector__limit--show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Показываем сообщение при фокусе на кнопке плюс */
.quantity-selector__plus-wrapper:focus-within .quantity-selector__limit.quantity-selector__limit--show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Quantity Selector Disabled Styles */
.quantity-selector--disabled {
    opacity: 0.7;
    background: #f5f5f5;
    border-color: #ddd;
}

.quantity-selector--disabled .quantity-selector__btn {
    color: #999;
    background: #f5f5f5;
    cursor: not-allowed;
}

.quantity-selector--disabled .quantity-selector__input {
    color: #999;
    background: #f5f5f5;
    cursor: not-allowed;
}

.quantity-selector--disabled .quantity-selector__btn:hover {
    background: #f5f5f5;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .cart-section {
        flex-direction: column;
        gap: 12px;
        padding: 15px;
    }

    .cart-section__quantity {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .cart-actions {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .cart-actions__main {
        width: 100%;
        max-width: 280px;
    }

    .wishlist-button {
        margin: 0 auto;
    }

    .quantity-selector {
        width: 122px;
        margin: 0 auto;
    }

    .quantity-selector__limit {
        position: absolute;
        top: auto;
        bottom: calc(100% + 8px);
        min-width: 180px;
        font-size: 12px;
        padding: 8px 12px;
        line-height: 1.3;
    }

    .sku-add-cart {
        height: 42px;
        font-size: 15px;
    }

    .wishlist-button {
        height: 42px;
        width: 42px;
        min-width: 42px;
    }
}

@media (max-width: 480px) {
    .cart-section {
        padding: 12px;
    }

    .sku-add-cart {
        font-size: 14px;
        padding: 0 15px;
    }

    .sku-add-cart__icon,
    .wishlist-button__icon {
        width: 18px;
        height: 18px;
    }

    .sku-add-cart__badge {
        top: -6px;
        right: -6px;
        min-width: 16px;
        height: 16px;
        font-size: 10px;
    }

    .sku-add-cart__text {
        font-size: 14px;
    }
    
    .sku-add-cart__subtext {
        font-size: 11px;
    }
}

/* Responsive styles for cart buttons */
@media (max-width: 768px) {
    .cart-actions {
        flex-direction: column;
        gap: 20px;
    }

    .sku-add-cart {
        width: 100%;
        order: 1;
    }

    .cart-link {
        order: 2;
        margin-top: 12px;
        font-size: 13px;
    }

    .wishlist-button {
        order: 3;
    }
}

@media (max-width: 480px) {
    .cart-link {
        margin-top: 8px;
        font-size: 12px;
    }
}

/* Goto Cart Link */
.cart-link {
    display: block;
    text-align: center;
    margin-top: 14px;
    color: #2b9acf;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    width: 100%;
    order: 2;
}

.cart-link:hover {
    color: #ff8a00;
}

.wishlist-button {
    order: 3;
}

/* Badge Styles */
.sku-add-cart__badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #4CAF50;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    z-index: 2;
    border: 2px solid #fff;
}


/* Wishlist button styles */
.wishlist-button--active {
    background: rgba(255, 138, 0, 0.05);
    border-color: #ff8a00;
    color: #ff8a00;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 138, 0, 0.15);
}

.wishlist-button--active:hover {
    background: rgba(255, 138, 0, 0.1);
    border-color: #e67a00;
    color: #e67a00;
}

.wishlist-button--active .wishlist-button__icon {
    fill: currentColor;
}
/* End */


/* Start:/local/components/darneo/catalog.sku.vue/templates/.default/slider.css?17412246955317*/
.product-gallery,
.product-gallery-empty {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.product-gallery-empty {
    background-color: rgba(43, 154, 207, 0.05);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.product-gallery-empty img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    opacity: 0.5;
}

.gallery-container {
    position: relative;
}

.gallery-main {
    width: 100%;
    margin-bottom: 10px;
    overflow: hidden;
}

/* Styles for multiple images scenario */
.gallery-container .gallery-main {
    background-color: #fff;
    border: 1px solid rgba(43, 154, 207, 0.1);
    border-radius: 8px;
}

.gallery-item {
    cursor: pointer;
    position: relative;
    width: 100%;
    height: 100%;
}

/* Styles for single image scenario */
.single-image {
    width: 100%;
    position: relative;
}

.single-image .gallery-item {
    background-color: #fff;
    border: 1px solid rgba(43, 154, 207, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.single-image img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    background-color: #fff;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-main-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    background-color: #fff;
    display: block;
}

.gallery-thumbs {
    width: 100%;
    height: 100px;
    box-sizing: border-box;
}

.gallery-thumb-image {
    width: 100%;
    height: 80px;
    object-fit: contain;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;

}

.swiper-slide-thumb-active .gallery-thumb-image {
    border-color: #2b9acf;
    box-shadow: 0 2px 8px rgba(43, 154, 207, 0.2);
}

/* Swiper Navigation Buttons */
.gallery-container .swiper-button-next,
.gallery-container .swiper-button-prev {
    color: #2b9acf !important;
    background: none;
    width: 44px;
    height: 44px;
    transition: all 0.3s ease;
    opacity: 0;
}

.gallery-container:hover .swiper-button-next,
.gallery-container:hover .swiper-button-prev {
    opacity: 1;
}

.gallery-container .swiper-button-next:hover,
.gallery-container .swiper-button-prev:hover {
    transform: scale(1.1);
}

.gallery-container .swiper-button-next:after,
.gallery-container .swiper-button-prev:after {
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.swiper-button-disabled {
    opacity: 0 !important;
}

/* PhotoSwipe Customization */
.pswp {
    --pswp-bg: rgba(0, 0, 0, 0.9);
}

.pswp__counter {
    color: #fff;
    opacity: 0.85;
}

.pswp__button {
    color: #fff !important;
}

.pswp__button:hover {
    opacity: 1 !important;
}

.pswp__top-bar {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent) !important;
}

.pswp__caption {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent) !important;
}

/* Gallery Loader */
.gallery-loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.gallery-loader.active {
    opacity: 1;
}

.gallery-loader__spinner {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(43, 154, 207, 0.1);
    border-top: 2px solid #2b9acf;
    border-radius: 50%;
    animation: spin 0.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    margin-bottom: 12px;
}

.gallery-loader__text {
    color: #2b9acf;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(5px);
    animation: fadeInUp 0.3s ease forwards 0.2s;
}

/* Loading States */
.gallery-main--loading,
.gallery-thumbs--loading,
.gallery-item--loading {
    opacity: 0.6;
    pointer-events: none;
}

.gallery-container {
    position: relative;
}

/* Hover effects for thumbnails */
.gallery-thumb-image:hover {
    border-color: #4facd7;
    box-shadow: 0 2px 8px rgba(43, 154, 207, 0.15);
}

/* Active thumbnail */
.swiper-slide-thumb-active .gallery-thumb-image:hover {
    border-color: #2b9acf;
    transform: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-main-image,
    .single-image img {
        height: 300px;
    }
    
    .gallery-thumbs {
        height: 80px;
    }
    
    .gallery-thumb-image {
        height: 60px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 36px;
        height: 36px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px;
    }
}

.product-layout .swiper-thumbs .swiper-slide {
    width: auto !important;
}
/* End */


/* Start:/local/components/darneo/catalog.sku.vue/templates/.default/sku_tabs.css?17392029669444*/
.product-tabs {
    margin-top: 30px;
}

.tabs-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(43, 154, 207, 0.1);
    padding: 1px;
    border-radius: 8px;
}

.tab-button {
    padding: 15px;
    font-size: 15px;
    color: #666;
    background: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
}

.tab-button:first-child {
    border-radius: 8px 0 0 8px;
}

.tab-button:last-child {
    border-radius: 0 8px 8px 0;
}

.tab-button:hover {
    color: #2b9acf;
    background: #f8fcff;
}

.tab-button--active {
    color: #fff;
    background: #2b9acf;
}

.tab-button--active:hover {
    color: #fff;
    background: #2b9acf;
}

.tabs-content {
    margin-top: 20px;
    background: #fff;
    border: 1px solid rgba(43, 154, 207, 0.1);
    border-radius: 8px;
    padding: 30px;
}

.tab-panel {
    display: none;
}

.tab-panel--active {
    display: block;
}

/* Description Tab Styles */
.item-description {
    color: #333;
    line-height: 1.6;
}

.item-description p {
    margin-bottom: 20px;
    font-size: 15px;
}

.item-description h3 {
    color: #2b9acf;
    font-size: 18px;
    margin: 10px 0 15px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(43, 154, 207, 0.1);
}

.item-description h3:first-child {
    margin-top: 0;
}

.item-description ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.item-description li {
    margin-bottom: 10px;
    font-size: 15px;
    position: relative;
    padding-left: 5px;
}

/* Specifications Tab Styles */
.specifications {
    border: 1px solid rgba(43, 154, 207, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.spec-group {
    border: 1px solid rgba(43, 154, 207, 0.1);
    border-radius: 8px;
    padding: 20px;
}

.spec-group__title {
    color: #2b9acf;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(43, 154, 207, 0.1);
}

.spec-list {
    display: grid;
    gap: 1px;
    background: rgba(43, 154, 207, 0.1);
}

.spec-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
}

.spec-item:nth-child(odd) {
    background: #f8fcff;
}

.spec-item__label {
    color: #666;
    font-size: 14px;
}

.spec-item__value {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

/* Delivery Tab Styles */
.delivery-info {
    display: grid;
    gap: 40px;
}

.delivery-section {
    background: #fff;
    line-height: 1.6;
    border: 1px solid rgba(43, 154, 207, 0.1);
    border-radius: 12px;
    padding: 30px;
}

.delivery-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.delivery-section__title {
    color: #2b9acf;
    font-size: 18px;
    margin: 0;
    font-weight: 600;
    flex: 1;
}

.delivery-section__content {
    padding: 0;
}

.delivery-group {
    margin-bottom: 35px;
    background: #fff;
    border-radius: 10px;
}

.delivery-group:last-child {
    margin-bottom: 0;
}

.delivery-group__title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    padding-left: 15px;
    position: relative;
}

.delivery-group__title:before {
    content: '';
    position: absolute;
    left: 0;
    width: 4px;
    height: 16px;
    background: #2b9acf;
    border-radius: 2px;
}

.delivery-methods {
    display: grid;
    gap: 15px;
}

.delivery-methods--grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.delivery-method {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(43, 154, 207, 0.1);
}

.delivery-method__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.delivery-method__title {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

.delivery-method__price {
    font-size: 14px;
    font-weight: 600;
    color: #ff8a00;
    padding: 6px 12px;
    background: rgba(255, 138, 0, 0.1);
    border-radius: 6px;
    white-space: nowrap;
}

.delivery-method__price--free {
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
}

.delivery-method__note {
    font-size: 13px;
    color: #666;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed rgba(43, 154, 207, 0.15);
    line-height: 1.4;
}

.delivery-note {
    font-size: 14px;
    color: #666;
    padding: 15px;
    background: rgba(43, 154, 207, 0.04);
    border-radius: 8px;
    margin-top: 20px;
    line-height: 1.4;
}

.delivery-note--warning {
    color: #ff8a00;
    background: rgba(255, 138, 0, 0.1);
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 6px;
    margin: 0;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.delivery-note--warning:before {
    content: '⚠️';
    margin-right: 8px;
    font-size: 14px;
}

/* Payment Methods */
.product-payment {
    padding: 0;
    margin-top: 10px;
}

.product-payment__list {
    display: grid;
    gap: 15px;
}

.product-payment__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(43, 154, 207, 0.1);
}

.product-payment__icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(43, 154, 207, 0.1);
    flex-shrink: 0;
    border: 1px solid rgba(43, 154, 207, 0.1);
}

.product-payment__content {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.product-payment__title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.product-payment__description {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    word-wrap: break-word;
}

/* Mobile Navigation */
.tabs-nav-mobile {
    display: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .product-tabs {
        margin-top: 20px;
    }

    .tabs-nav {
        display: none;
    }

    .tabs-nav-mobile {
        display: block;
        position: relative;
    }

    .tabs-select {
        width: 100%;
        padding: 12px 15px;
        font-size: 14px;
        color: #2b9acf;
        background: #fff;
        border: 2px solid rgba(43, 154, 207, 0.2);
        border-radius: 8px;
        appearance: none;
        cursor: pointer;
        font-weight: 500;
    }

    .tabs-select:focus {
        outline: none;
        border-color: #2b9acf;
    }

    .tabs-content {
        padding: 20px;
        margin-top: 15px;
    }

    .spec-item {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 12px 15px;
    }

    .spec-item__label {
        color: #2b9acf;
        font-weight: 500;
    }

    .delivery-methods--grid {
        grid-template-columns: 1fr;
    }

    .delivery-section {
        padding: 20px;
    }

    .delivery-section__header {
        gap: 15px;
        margin-bottom: 25px;
        flex-wrap: nowrap;
    }

    .delivery-section__title {
        padding-bottom: 10px;
        font-size: 16px;
    }

    .delivery-group {
        padding: 20px;
        margin-bottom: 25px;
    }

    .delivery-method {
        padding: 15px;
    }

    .product-payment__list {
        gap: 10px;
    }

    .product-payment__item {
        padding: 15px;
        gap: 15px;
    }

    .product-payment__icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .product-payment {
        padding: 15px;
    }

    .delivery-section__content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .product-tabs {
        margin-top: 15px;
    }

    .tabs-content {
        padding: 15px;
    }

    .item-description h3 {
        font-size: 16px;
        margin: 20px 0 12px;
    }

    .spec-group__title {
        font-size: 15px;
    }

    .delivery-info {
        gap: 25px;
    }

    .delivery-section {
        padding: 15px;
    }

    .delivery-section__header {
        gap: 12px;
        margin-bottom: 20px;
    }

    .delivery-section__title {
        font-size: 15px;
    }

    .delivery-group {
        padding: 15px;
        margin-bottom: 25px;
    }

    .delivery-group__title {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .delivery-method {
        padding: 12px;
    }

    .delivery-method__header {
        gap: 10px;
    }

    .delivery-method__title {
        font-size: 14px;
    }

    .delivery-method__price {
        font-size: 13px;
        padding: 5px 10px;
    }

    .delivery-method__note {
        font-size: 12px;
        margin-top: 10px;
        padding-top: 10px;
    }

    .product-payment__item {
        padding: 12px;
        gap: 12px;
    }

    .product-payment__icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .product-payment__title {
        font-size: 14px;
    }

    .product-payment__description {
        font-size: 12px;
    }

    .delivery-note--warning {
        padding: 6px 12px;
        font-size: 12px;
    }

    .delivery-section__content {
        padding: 15px;
    }
} 
/* End */


/* Start:/local/templates/meb/js/swiper/swiper-bundle.min.css?173920226818456*/
/**
 * Swiper 11.2.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 31, 2025
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:var(--swiper-navigation-top-offset,50%);width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next svg,.swiper-button-prev svg{width:100%;height:100%;object-fit:contain;transform-origin:center}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-lock{display:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);top:var(--swiper-pagination-top,auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius,50%);background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active{pointer-events:auto}.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
/* End */


/* Start:/local/templates/meb/js/photoswipe/photoswipe.min.css?17392022922546*/
/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */.pswp{display:none;position:absolute;width:100%;height:100%;left:0;top:0;overflow:hidden;-ms-touch-action:none;touch-action:none;z-index:1500;-webkit-text-size-adjust:100%;-webkit-backface-visibility:hidden;outline:0}.pswp *{-webkit-box-sizing:border-box;box-sizing:border-box}.pswp img{max-width:none}.pswp--animate_opacity{opacity:.001;will-change:opacity;-webkit-transition:opacity 333ms cubic-bezier(.4,0,.22,1);transition:opacity 333ms cubic-bezier(.4,0,.22,1)}.pswp--open{display:block}.pswp--zoom-allowed .pswp__img{cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.pswp--zoomed-in .pswp__img{cursor:-webkit-grab;cursor:-moz-grab;cursor:grab}.pswp--dragging .pswp__img{cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:grabbing}.pswp__bg{position:absolute;left:0;top:0;width:100%;height:100%;background:#000;opacity:0;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;will-change:opacity}.pswp__scroll-wrap{position:absolute;left:0;top:0;width:100%;height:100%;overflow:hidden}.pswp__container,.pswp__zoom-wrap{-ms-touch-action:none;touch-action:none;position:absolute;left:0;right:0;top:0;bottom:0}.pswp__container,.pswp__img{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none}.pswp__zoom-wrap{position:absolute;width:100%;-webkit-transform-origin:left top;-ms-transform-origin:left top;transform-origin:left top;-webkit-transition:-webkit-transform 333ms cubic-bezier(.4,0,.22,1);transition:transform 333ms cubic-bezier(.4,0,.22,1)}.pswp__bg{will-change:opacity;-webkit-transition:opacity 333ms cubic-bezier(.4,0,.22,1);transition:opacity 333ms cubic-bezier(.4,0,.22,1)}.pswp--animated-in .pswp__bg,.pswp--animated-in .pswp__zoom-wrap{-webkit-transition:none;transition:none}.pswp__container,.pswp__zoom-wrap{-webkit-backface-visibility:hidden}.pswp__item{position:absolute;left:0;right:0;top:0;bottom:0;overflow:hidden}.pswp__img{position:absolute;width:auto;height:auto;top:0;left:0}.pswp__img--placeholder{-webkit-backface-visibility:hidden}.pswp__img--placeholder--blank{background:#222}.pswp--ie .pswp__img{width:100%!important;height:auto!important;left:0;top:0}.pswp__error-msg{position:absolute;left:0;top:50%;width:100%;text-align:center;font-size:14px;line-height:16px;margin-top:-8px;color:#ccc}.pswp__error-msg a{color:#ccc;text-decoration:underline}
/*# sourceMappingURL=photoswipe.min.css.map */
/* End */


/* Start:/local/templates/meb/js/photoswipe/default-skin.css?173945963911607*/
/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*
	
	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
          transition: opacity 0.2s;
  -webkit-box-shadow: none;
          box-shadow: none; }
  .pswp__button:focus, .pswp__button:hover {
    opacity: 1; }
  .pswp__button:active {
    outline: none;
    opacity: 0.9; }
  .pswp__button::-moz-focus-inner {
    padding: 0;
    border: 0; }

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1; }

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(/local/templates/meb/js/photoswipe/default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px; }

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(/local/templates/meb/js/photoswipe/default-skin.svg); }
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none; } }

.pswp__button--close {
  background-position: 0 -44px; }

.pswp__button--share {
  background-position: -44px -44px; }

.pswp__button--fs {
  display: none; }

.pswp--supports-fs .pswp__button--fs {
  display: block; }

.pswp--fs .pswp__button--fs {
  background-position: -44px 0; }

.pswp__button--zoom {
  display: none;
  background-position: -88px 0; }

.pswp--zoom-allowed .pswp__button--zoom {
  display: block; }

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0; }

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden; }

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute; }

.pswp__button--arrow--left {
  left: 0; }

.pswp__button--arrow--right {
  right: 0; }

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute; }

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px; }

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px; }

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__share-modal--hidden {
  display: none; }

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
          transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform; }
  .pswp__share-tooltip a {
    display: block;
    padding: 8px 12px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px; }
    .pswp__share-tooltip a:hover {
      text-decoration: none;
      color: #000; }
    .pswp__share-tooltip a:first-child {
      /* round corners on the first/last list item */
      border-radius: 2px 2px 0 0; }
    .pswp__share-tooltip a:last-child {
      border-radius: 0 0 2px 2px; }

.pswp__share-modal--fade-in {
  opacity: 1; }
  .pswp__share-modal--fade-in .pswp__share-tooltip {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px; }

a.pswp__share--facebook:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none; }

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF; }
  a.pswp__share--facebook:hover:before {
    border-bottom-color: #3E5C9A; }

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF; }

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D; }

a.pswp__share--download:hover {
  background: #DDD; }

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px; }

/*
	
	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px; }
  .pswp__caption small {
    font-size: 11px;
    color: #BBB; }

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC; }

.pswp__caption--empty {
  display: none; }

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden; }

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr; }

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px; }

.pswp__preloader--active {
  opacity: 1; }
  .pswp__preloader--active .pswp__preloader__icn {
    /* We use .gif in browsers that don't support CSS animation */
    background: url(/local/templates/meb/js/photoswipe/preloader.gif) 0 0 no-repeat; }

.pswp--css_animation .pswp__preloader--active {
  opacity: 1; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
    -webkit-animation: clockwise 500ms linear infinite;
            animation: clockwise 500ms linear infinite; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
    -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
            animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite; }

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0; }

.pswp--css_animation .pswp__preloader__cut {
  /* 
			The idea of animating inner circle is based on Polymer ("material") loading indicator 
			 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
		*/
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden; }

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0; }

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right; } }

@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

/*
	
	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550; }

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%; }

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible; }

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5); }

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3); }

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0; }

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0; }

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001; }

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none; }

.pswp__element--disabled {
  display: none !important; }

.pswp--minimal--dark .pswp__top-bar {
  background: none; }

/* End */


/* Start:/local/templates/meb/components/api/reviews/new/style.css?16674650868028*/
/* General
 ========================================================================== */
.api-reviews *{ -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
.api-reviews{ font-size: 14px; line-height: 20px }
.api-reviews .api-block-top{
	margin: 0 0 15px; background: #fff;	-webkit-border-radius:4px; -moz-border-radius:4px; border-radius:4px;
	-webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, .25); -moz-box-shadow: 0 3px 3px rgba(0, 0, 0, .25); box-shadow: 0 3px 3px rgba(0, 0, 0, .25);
}
.api-reviews .api-block-header{ position: relative; overflow: hidden; padding: 20px; }

.api-reviews .api-block-title{ padding: 10px 20px; line-height: 32px;}
.api-reviews .api-block-title:after {content: "";display: table;clear: both;}
.api-reviews .api-block-title .api-block-left{font-weight: bold; font-size: 20px; float: left; }
.api-reviews .api-block-title .api-block-right{float: right; text-align: right}

.api-reviews .api-block-header .api-reviews-stat,
.api-reviews .api-block-header .api-reviews-form{ float: left; width: 100%; padding-left: 10px; }
.api-reviews .api-block-sort{ padding: 13px 20px 10px; border-top: 1px solid #f0f0f0; }

/* .api-field-files */
.api-reviews  .api-field-files a{
	position: relative;
	text-decoration: none;
	display: inline-block;
	vertical-align: top;
	margin: 0 6px 6px 0;
	border: 1px solid rgba(0, 0, 0, .1);
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.api-reviews  .api-field-files a:hover{
	border: 1px solid rgba(0, 0, 0, .2);
	-webkit-box-shadow: 0 0 2px rgba(0, 0, 0, .2);
	-moz-box-shadow: 0 0 2px rgba(0, 0, 0, .2);
	box-shadow: 0 0 2px rgba(0, 0, 0, .2);
}
.api-reviews  .api-field-files .api-file-outer{
	border: 1px solid #fff;
}
.api-reviews  .api-file-content{
	font-size: 13px;
	line-height: 15px;
	max-height: 30px;
	overflow: hidden;
	display: block;
}
.api-reviews  .api-file-thumbnail{
	display: block;
	width: 114px;
	height: 72px;
	background-size: contain;
	background-position: center;
	background-color: rgba(0,0,0,.05);
	background-repeat: no-repeat;
	overflow: hidden;
	position: relative;
}
.api-reviews  .api-file-attachment{
	display: block;
	width: 114px;
	height: 72px;
	background: #eeece9;
	color: #000;
	padding: 5px 7px;
	overflow: hidden;
	position: relative;
	-webkit-border-radius:3px; -moz-border-radius:3px; border-radius:3px;
}
.api-reviews  .api-file-extension{
	display: block;
	padding: 0 4px;
	text-transform: uppercase;
	color: #fff;
	position: absolute;
	bottom: 5px;
	left: 5px;
	background: #60605a;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
	-webkit-border-radius:3px; -moz-border-radius:3px; border-radius:3px;
}

.api-reviews  .api-file-delete{
	display: block;
	position: absolute;
	z-index: 1;
	right: -10px;
	top: -10px;
	width: 16px;
	height: 16px;
	background: #FFF;
	color: #000;
	opacity: .75;
	filter: alpha(opacity=75);
	line-height: 16px;
	font-size: 20px;
	font-family: sans-serif;
	text-align: center;
	cursor: pointer;
	-webkit-border-radius:50%; -moz-border-radius:50%; border-radius:50%;
	-webkit-transition: all 50ms linear 0s; -moz-transition: all 50ms linear 0s; -ms-transition: all 50ms linear 0s; -o-transition: all 50ms linear 0s; transition: all 50ms linear 0s;
}
.api-reviews  .api-file-delete:hover{
	background: #F00;
	color: #FFF;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .5);
}
.api-reviews  .api-file-delete:active{
	opacity: .3;
	filter: alpha(opacity=30);
}

.api-reviews .api-file-ext-mp3,
.api-reviews .api-file-ext-wav,
.api-reviews .api-file-ext-midi,
.api-reviews .api-file-ext-snd,
.api-reviews .api-file-ext-au,
.api-reviews .api-file-ext-wma,
.api-reviews .api-file-ext-ogg,
.api-reviews .api-file-ext-aac,
.api-reviews .api-file-ext-flac,
.api-reviews .api-file-ext-cda{background: #23a9db;}

.api-reviews .api-file-ext-mpg,
.api-reviews .api-file-ext-avi,
.api-reviews .api-file-ext-wmv,
.api-reviews .api-file-ext-mpeg,
.api-reviews .api-file-ext-mpe,
.api-reviews .api-file-ext-flv,
.api-reviews .api-file-ext-mkv,
.api-reviews .api-file-ext-mov,
.api-reviews .api-file-ext-wma,
.api-reviews .api-file-ext-mp4,
.api-reviews .api-file-ext-xvid,
.api-reviews .api-file-ext-asf,
.api-reviews .api-file-ext-divx,
.api-reviews .api-file-ext-vob{background: #7e70ee;}
.api-reviews .api-file-ext-swf{background: #A42222;}

.api-reviews .api-file-ext-odt,
.api-reviews .api-file-ext-doc,
.api-reviews .api-file-ext-docx{background: #03689b;}

.api-reviews .api-file-ext-csv,
.api-reviews .api-file-ext-ods,
.api-reviews .api-file-ext-xls,
.api-reviews .api-file-ext-xlsx{background: #5bab6e;}

.api-reviews .api-file-ext-odp,
.api-reviews .api-file-ext-ppt,
.api-reviews .api-file-ext-pptx{background: #f1592a;}

.api-reviews .api-file-ext-rar,
.api-reviews .api-file-ext-tar,
.api-reviews .api-file-ext-7zip,
.api-reviews .api-file-ext-zip{background: #867c75;}

.api-reviews .api-file-ext-djvu,
.api-reviews .api-file-ext-epub,
.api-reviews .api-file-ext-tiff,
.api-reviews .api-file-ext-xps{background: #3468b0;}
.api-reviews .api-file-ext-pdf{background: #d00;}

.api-reviews .api-file-ext-txt{background: #a4a7ac;}
.api-reviews .api-file-ext-rtf{background: #a94bb7;}

.api-reviews .api-file-ext-app{background: #ed558f;}
.api-reviews .api-file-ext-php{background: #8993BE;}
.api-reviews .api-file-ext-js{background: #d0c54d;}
.api-reviews .api-file-ext-css{background: #44afa6;}

.api-reviews .api-file-ext-jpeg,
.api-reviews .api-file-ext-jpg{background: #e15955;}

/* Adobe */
.api-reviews .api-file-ext-psd{background: #26cdf7;}
.api-reviews .api-file-ext-ae{background: #d4a6ff;}
.api-reviews .api-file-ext-au{background: #00dfb9;}
.api-reviews .api-file-ext-an{background: #ff4926;}
.api-reviews .api-file-ext-ai{background: #ff7e19;}
.api-reviews .api-file-ext-ic{background: #fc64f6;}
.api-reviews .api-file-ext-id{background: #ff3f8d;}
.api-reviews .api-file-ext-mu{background: #d0e73e;}
.api-reviews .api-file-ext-pr{background: #e383ff;}


/* Display
 ========================================================================== */
.api-hidden{ display: none !important; visibility: hidden !important; }
.api-display-block{ display: block !important; }
.api-display-inline{ display: inline !important; }
.api-display-inline-block{ display: inline-block !important; }

/* Wait
 ========================================================================== */
#api-reviews-wait{ display: none; position: fixed; top: 0; left: 0; height: 100%; width: 100%; z-index: 9999; overflow: hidden; }
#api-reviews-wait .api-image{
	z-index: 2; position: absolute; top: 50%; left: 50%; height: 56px; width: 56px; margin: -28px 0 0 -28px;
	background-image: url("/local/templates/meb/components/api/reviews/new/images/wait.svg"); background-repeat: no-repeat; background-size: contain;background-color: rgba(255, 255, 255, .7);
	-webkit-border-radius:50%; -moz-border-radius:50%; border-radius:50%;
	-webkit-box-shadow: 0 0 7px 3px rgba(255, 255, 255, .7); -moz-box-shadow: 0 0 7px 3px rgba(255, 255, 255, .7); box-shadow: 0 0 7px 3px rgba(255, 255, 255, .7);
	-webkit-animation:loader 5s linear infinite; -o-animation:loader 5s linear infinite; animation:loader 5s linear infinite;
}
@keyframes loader{
	100%{-webkit-transform: rotate(-360deg);transform: rotate(-360deg); }
}
#api-reviews-wait .api-bg{ position: absolute; top: 0; left: 0; height: 100%; width: 100%; background: #fff; opacity: .4; }

/* @media
 ========================================================================== */
@media (min-width: 768px){
	.api-reviews .api-block-header .api-reviews-stat{width: 66.666%;margin-bottom: 0;}
	.api-reviews:not(.api-stat-off) .api-block-header .api-reviews-form{width: 33.333%;}
}
@media (max-width: 768px){
	.api-reviews .api-block-title > div{width: 100% !important; float: none !important; text-align: left !important;}
}

/* End */


/* Start:/local/templates/meb/components/api/reviews/new/theme/flat/style.css?16674650861671*/
.arbt-color-orange1 .api-block-title,
.arbt-color-orange1 .api-block-sort{ background: #f8f8f8; }

.arbt-color-orange2{border: 1px solid #ededed;}
.arbt-color-orange2 .api-block-title{background: #fffefb;border-bottom: 1px solid #f0f0f0; }
.arbt-color-orange2 .api-block-sort{ background: #fffefb; }

.arbt-color-orange3{border: 1px solid #ededed;}
.arbt-color-orange3 .api-block-header{ border-top: 1px solid #dfdfdf; border-bottom: 1px solid #dfdfdf;}
.arbt-color-orange3 .api-block-sort{ border-top: 0}

.arbt-color-blue1 .api-block-title,
.arbt-color-blue1 .api-block-sort{ background: #edf5f8; }

.arbt-color-blue2 .api-block-title,
.arbt-color-blue2 .api-block-sort{ background: rgba(0, 131, 209, 0.1); }

.arbt-color-blue3 .api-block-title,
.arbt-color-blue3 .api-block-sort{ background: rgba(63, 188, 239, 0.1); }

.arbt-color-black1 .api-block-title,
.arbt-color-black1 .api-block-sort{ background: #f5f5f5; }

.arbt-color-red1 .api-block-title,
.arbt-color-red1 .api-block-sort{ background: #fff9f9; }

.arbt-color-pink1 .api-block-title,
.arbt-color-pink1 .api-block-sort{ background: #fbfbfb; }

.arbt-color-yellow1 .api-block-title,
.arbt-color-yellow1 .api-block-sort{ background: #fcf8e3; }

.arbt-color-green1 .api-block-title,
.arbt-color-green1 .api-block-sort{ background: rgba(121, 196, 113, 0.1); }

.arbt-color-green2 .api-block-title,
.arbt-color-green2 .api-block-sort{ background: #e2f3eb }

.arbt-color-green3 .api-block-title,
.arbt-color-green3 .api-block-sort{ background: #e2f3eb }

.arbt-color-purple1 .api-block-title,
.arbt-color-purple1 .api-block-sort{ background: rgba(199, 144, 185, 0.1); }

/* End */


/* Start:/local/templates/meb/components/api/reviews/new/api/reviews.form/.default/style.css?16674650864082*/
.api-reviews-form *{ -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;}
.api-reviews-form hr{ margin: 25px 0 }
.api-reviews-form .api-shop-stat{ text-align: center }
.api-reviews-form .api-shop-desc{ font-size: 18px; line-height: 28px; margin-bottom: 20px }
.api-reviews-form .api-shop-desc span{ display: block }
.api-reviews-form .api-shop-name{ font-weight: bold; }
.api-reviews-form .api-form-controls{ overflow: hidden }
.api-reviews-form .api-star-rating{ float: left; margin-right: 15px; }
.api-reviews-form .api-star-rating-label{ line-height: 32px; }
.api-reviews-form .api-star-rating i{ display: inline-block; height: 28px; width: 29px; cursor: pointer}
.api-reviews-form .api-star-rating i.active{ background-position: -29px -57px; }
.api-reviews-form .api-guest-form{ overflow: hidden; background: #fafafa; border: 1px dashed #ddd; color: #444; padding: 15px 0 0 15px; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; }
.api-reviews-form .api-guest-form-field{ float: left; width: 50%; padding: 0 15px 15px 0 }
.api-reviews-form .api-guest-form-field input{ width: 100% }
.api-reviews-form .api-location .dropdown-fade2white{ height: 30px; top: 0; right: 0 }
.api-reviews-form .api-location .bx-sls .dropdown-icon{ top: 11px }
.api-reviews-form .api-location .bx-ui-sls-route{ padding: 4px 10px !important; }
.api-reviews-form .api-button{
	color: #fff;
	border: none;
	position: relative;
	margin: 0;
	font: inherit;
	overflow: visible;
	text-transform: none;
	display: inline-block;
	vertical-align: middle;
	text-decoration: none;
	text-align: center;
	outline: none;
	cursor: pointer;
	text-shadow: 0 1px 0 rgba(0, 0, 0, .2);
	-webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px;
	-webkit-transition: border-color .1s ease-out 0s; -moz-transition: border-color .1s ease-out 0s; -ms-transition: border-color .1s ease-out 0s; -o-transition: border-color .1s ease-out 0s; transition: border-color .1s ease-out 0s;
	-webkit-box-shadow: -1px 1px 2px rgba(0, 0, 0, .28);-moz-box-shadow: -1px 1px 2px rgba(0, 0, 0, .28);box-shadow: -1px 1px 2px rgba(0, 0, 0, .28);
}
.api-reviews-form .api-button-large{min-height: 44px;padding: 0 20px;line-height: 42px;font-size: 16px;}
.api-reviews-form .api-button .api-icon{ display: inline-block; vertical-align: middle; background: url("/bitrix/images/api.reviews/sprite.png") no-repeat 0 -33px; width: 23px; height: 20px; margin-right: 5px; }
.api-reviews-form .api_row_error .api_upload_drop{border-color: #d95c5c;}
.api-reviews-form .api_modal .api_alert{width: 450px !important;}
.api-reviews-form .api_video_upload{position: relative}
.api-reviews-form .api_video_list{position: relative; overflow: hidden; }
.api-reviews-form .api_video_item{margin-bottom: 3px; white-space: nowrap; position: relative}
.api-reviews-form .api_video_remove{position: absolute;right: 0;top: 0;bottom: 0;background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAICAYAAAArzdW1AAAAVklEQVR42nWOgQnAMAgE3aCjOJEDuY3DZJ8rqZYipg8KPgen7GACvpAKLFCBgCxcYfeSYAHVFUhYHqdRR96w/A/40hRNzXUAJpiQdcVQB+QuYPxo8XQ33NCTVnhoHP8AAAAASUVORK5CYII=") no-repeat 50% 50%;width: 20px;height: 20px;cursor: pointer;opacity: .6;}
.api-reviews-form .api_video_remove:hover{ opacity: 1 }
.api-reviews-form .api_video_info{font-size: 13px;color: #7a7a7a;font-family: Tahoma, Helvetica, Arial, sans-serif;}
/* .api-rules */
.api-reviews-form .api-rules-label{font-size: 12px;cursor: pointer;padding-left: 20px;display: block;font-weight: normal;}
.api-reviews-form .api-rules .api-field{position: absolute;left: 0;top: 3px;margin: 0;padding: 0;}
.api-reviews-form .api-rules-error{margin: 5px 0;color: #ff0f00;font-size: 12px;font-weight: bold;display: none;padding-left: 20px;}
.api-reviews-form .api-rules a{ font-size: 13px; text-decoration: none; border-bottom: 1px dotted; }
.api-reviews-form .api-rules a:hover{ border-bottom: 1px solid; }
#mytest {
	margin-top: 21px;
}
.error-block {
    color: red;
    text-align: right;
}
/* End */


/* Start:/local/templates/meb/components/api/reviews/new/api/reviews.form/.default/theme/flat/style.css?16674650866201*/
.arform-color-orange1 .api-button{ background: #f7682c; color: #fff; border: none;}
.arform-color-orange1 .api-button:hover{ background: #f7510d; }
.arform-color-orange1 .api-button:active{ background: #e8441e; }
.arform-color-orange1 .api-button:disabled{ background: #c8421e; }
.arform-color-orange1 .api-star-rating i{ background: url("/bitrix/images/api.reviews/flat/orange1/sprite.png") no-repeat 0 -57px;}

.arform-color-orange2 .api-button{ background: #f7682c; color: #fff; border: none; }
.arform-color-orange2 .api-button:hover{ background: #f7510d; }
.arform-color-orange2 .api-button:active{ background: #e8441e; }
.arform-color-orange2 .api-button:disabled{ background: #c8421e; }
.arform-color-orange2 .api-star-rating i{ background: url("/bitrix/images/api.reviews/flat/orange2/sprite.png") no-repeat 0 -57px;}

.arform-color-orange3 .api-button{ background: #f7682c; color: #fff; border: none; }
.arform-color-orange3 .api-button:hover{ background: #f7510d; }
.arform-color-orange3 .api-button:active{ background: #e8441e; }
.arform-color-orange3 .api-button:disabled{ background: #c8421e; }
.arform-color-orange3 .api-star-rating i{ background: url("/bitrix/images/api.reviews/flat/orange3/sprite.png") no-repeat 0 -57px;}

.arform-color-blue1 .api-button{ background: #33b5e5; color: #fff; border: 1px solid rgba(0, 0, 0, 0.3); }
.arform-color-blue1 .api-button:hover{ background: #05aadf; }
.arform-color-blue1 .api-button:active{ background: #0591c5; }
.arform-color-blue1 .api-button:disabled{ background: #0573a8; }
.arform-color-blue1 .api-star-rating i{ background: url("/bitrix/images/api.reviews/flat/blue1/sprite.png") no-repeat 0 -57px;}

.arform-color-blue2 .api-button{ background: #0083d1; color: #fff; border: none; }
.arform-color-blue2 .api-button:hover{ background: #006cb9; }
.arform-color-blue2 .api-button:active{ background: #0063aa; }
.arform-color-blue2 .api-button:disabled{ background: #00559b; }
.arform-color-blue2 .api-star-rating i{ background: url("/bitrix/images/api.reviews/flat/blue2/sprite.png") no-repeat 0 -57px;}

.arform-color-blue3 .api-button{ background: #3fbcef; color: #fff; border: none; }
.arform-color-blue3 .api-button:hover{ background: #05aadf; }
.arform-color-blue3 .api-button:active{ background: #0591c5; }
.arform-color-blue3 .api-button:disabled{ background: #0573a8; }
.arform-color-blue3 .api-star-rating i{ background: url("/bitrix/images/api.reviews/flat/blue3/sprite.png") no-repeat 0 -57px;}

.arform-color-black1 .api-button{ background: #000; color: #fff; border: none; }
.arform-color-black1 .api-button:hover{ background: #222; }
.arform-color-black1 .api-button:active{ background: #444; }
.arform-color-black1 .api-star-rating i{ background: url("/bitrix/images/api.reviews/flat/black1/sprite.png") no-repeat 0 -57px;}

.arform-color-red1 .api-button{ background: #ed1c24; color: #fff; border: none; }
.arform-color-red1 .api-button:hover{ background: #cb302b; }
.arform-color-red1 .api-button:active{ background: #b11116 }
.arform-color-red1 .api-star-rating i{ background: url("/bitrix/images/api.reviews/flat/red1/sprite.png") no-repeat 0 -57px;}

.arform-color-pink1 .api-button{ background: #ff28a8; color: #fff; border: 1px solid #ff28a8; }
.arform-color-pink1 .api-button:hover{ background: #ea0093; border: 1px solid #ea0093; }
.arform-color-pink1 .api-button:active{ background: #ca0178; border: 1px solid #ca0178; }
.arform-color-pink1 .api-star-rating i{ background: url("/bitrix/images/api.reviews/flat/pink1/sprite.png") no-repeat 0 -57px;}

.arform-color-yellow1 .api-button{ background: #ffc733; color: #fff; border: 1px solid #eaae00; }
.arform-color-yellow1 .api-button:hover{ background: #eaae00; border: 1px solid #daa300; }
.arform-color-yellow1 .api-button:active{ background: #daa300; border: 1px solid #daa300; }
.arform-color-yellow1 .api-star-rating i{ background: url("/bitrix/images/api.reviews/flat/yellow1/sprite.png") no-repeat 0 -57px;}

.arform-color-green1 .api-button{ background: #79c471; color: #fff; border: 1px solid #79c471; }
.arform-color-green1 .api-button:hover{ background: #6eb966; border: 1px solid #6eb966; }
.arform-color-green1 .api-button:active{ background: #5faa57; border: 1px solid #5faa57; }
.arform-color-green1 .api-button:disabled{ background: #519b4e; }
.arform-color-green1 .api-star-rating i{ background: url("/bitrix/images/api.reviews/flat/green1/sprite.png") no-repeat 0 -57px;}

.arform-color-green2 .api-button{ background: #57bb8a; color: #fff; border: 1px solid #57bb8a; -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);}
.arform-color-green2 .api-button:hover{ background: #59af7d; border: 1px solid #59af7d; }
.arform-color-green2 .api-button:active{ background: #50a070; border: 1px solid #50a070; }
.arform-color-green2 .api-button:disabled{ background: #468c60; }
.arform-color-green2 .api-star-rating i{ background: url("/bitrix/images/api.reviews/flat/green2/sprite.png") no-repeat 0 -57px;}

.arform-color-green3 .api-button{ background: #57bb8a; color: #fff; border: 1px solid #57bb8a; -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);}
.arform-color-green3 .api-button:hover{ background: #59af7d; border: 1px solid #59af7d; }
.arform-color-green3 .api-button:active{ background: #50a070; border: 1px solid #50a070; }
.arform-color-green3 .api-button:disabled{ background: #468c60; }
.arform-color-green3 .api-star-rating i{ background: url("/bitrix/images/api.reviews/flat/green3/sprite.png") no-repeat 0 -57px;}

.arform-color-purple1 .api-button{ background: #c790b9; color: #fff; border: 1px solid #c790b9; }
.arform-color-purple1 .api-button:hover{ background: #b982ab; border: 1px solid #b982ab; }
.arform-color-purple1 .api-button:active{ background: #aa749c; border: 1px solid #aa749c; }
.arform-color-purple1 .api-button:disabled{ background: #9b658d; }
.arform-color-purple1 .api-star-rating i{ background: url("/bitrix/images/api.reviews/flat/purple1/sprite.png") no-repeat 0 -57px;}

/* End */


/* Start:/local/templates/meb/components/api/reviews/new/api/reviews.list/.default/style.css?16674650867845*/
/* General
 ========================================================================== */
.api-reviews-list *{ -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
/* .api-header */
.api-reviews-list .api-header .api-icon-star{ display: inline-block; width: 16px; height: 15px; }
.api-reviews-list .api-header .api-user-info{ overflow: hidden }
.api-reviews-list .api-header .api-guest-picture{ float: left; margin-right: 15px }
.api-reviews-list .api-header .api-guest-info{ padding: 9px 0; overflow: hidden }
.api-reviews-list .api-header .api-guest-info > div{ display: block;float: left; margin:0 15px 5px 0;line-height: 1; min-height: 16px}
.api-reviews-list .api-header .api-guest-name{ font-weight: bold }
.api-reviews-list .api-header .api-date{ font-size: 10px; font-style: italic; color: #999;}
.api-reviews-list .api-header .api-date:before{ content: " "; display: inline-block; margin: 0 6px -2px 0; width: 15px; height: 13px; background: url("/bitrix/images/api.reviews/sprite.png") no-repeat -51px 0 transparent; }
.api-reviews-list .api-header .api-true-buyer{
	background: url("/bitrix/css/api.core/images/components/buyer.svg") no-repeat 0 50%;
	display: inline-block;height: 18px;background-size: contain;margin-top: -2px !important;padding-left: 23px;line-height:16px !important;color: #29ad2e;font-weight: 700;font-size: 12.8px;
}
.api-reviews-list .api-header .api-userpic{ width: 36px; height: 36px; display: inline-block; border: 1px solid #fff; background-color: #c5c5c5; /*background-color: #3194F4;*/ background-size: contain; background-position: center; background-repeat: no-repeat; /*box-shadow: 0 1px 2px rgba(0,0,0,.2);*/-webkit-border-radius:100%; -moz-border-radius:100%; border-radius:100%;}
.api-reviews-list .api-header .api-prodpic{ width: 36px; height: 36px; display: inline-block; background-size: contain; background-position: center; background-repeat: no-repeat; }
/* .api-content */
.api-reviews-list .api-content{ padding: 15px 0; border-bottom: 1px solid #dfdfdf }
/* .api-item */
.api-reviews-list .api-item{background: #f8f8f8; padding: 30px; position: relative; -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px;}
.api-reviews-list .api-item.api-active{ background: #fffbe6 }
.api-reviews-list .api-item + *{ margin-top: 30px; }
.api-reviews-list .api-item-hidden{ background: #f3f2f2 !important; border: 1px solid #ccc !important; }
.api-reviews-list .api-item-hidden .api-item-status{ background: #212121; display: block; position: absolute; right: 0; top: 0; color: #f3f2f2; font-size: 12px; padding: 3px 10px; min-width: 140px; text-align: center }
.api-reviews-list .api-review-link{float: right;}
.api-reviews-list .api-review-link a{line-height: normal; cursor: pointer}
.api-reviews-list .api-item .api-star-rating .api-icon-active{ background-position: 0 0; }
/* .api-fields */
.api-reviews-list .api-field{ margin: 0 0 15px }
.api-reviews-list .api-field-label{ font-weight: bold; display: inline-block; vertical-align: top; min-width: 120px }
.api-reviews-list .api-field-value{ display: inline-block }
.api-reviews-list .api-field-title{ font-size: 16px; font-weight: bold; font-style: italic; color: #eb6132; background: #fff; padding: 5px 12px; margin: 0 0 20px; }
.api-reviews-list .api-field-advantage{ color: #0b700d }
.api-reviews-list .api-field-disadvantage{ color: #c51111 }
.api-reviews-list input[type=text],
.api-reviews-list textarea{ background: #fff; border: 1px solid #c0c0be; padding: 4px 10px; font-weight: normal; font-size: 14px; width: 100%; display: block; transition: none; overflow: hidden; resize: none; outline: none; }
.api-reviews-list textarea{ height: auto; }
.api-reviews-list [data-fake-field]{ display: none; }
/* .api-footer */
.api-reviews-list .api-footer{ padding: 8px 0 0; }
.api-reviews-list .api-footer .api-user-info{ overflow: hidden }
.api-reviews-list .api-footer .api-user-info .api-left{float: left}
.api-reviews-list .api-footer .api-user-info .api-right{float: right; text-align: right;}
.api-reviews-list .api-footer .api-guest-contacts{ display: inline-block }
/* .api-answer */
.api-reviews-list .api-answer{ background: #fff; color: #444; padding: 10px; margin: 25px 0 0 60px; position: relative; }
.api-reviews-list .api-answer:before{ content: " "; display: block; position: absolute; top: 50%; left: -57px; margin-top: -10px; width: 33px; height: 20px; background: url("/bitrix/images/api.reviews/sprite.png") no-repeat 0 -13px transparent; }
.api-reviews-list .api-answer .api-shop-name{ font-weight: bold; font-size: 15px }
.api-reviews-list .api-answer-send .api-shop-name:after{ content: ""; background: url("/local/templates/meb/components/api/reviews/new/api/reviews.list/.default/images/ok.svg") no-repeat 50% 50%; background-size: contain; width: 14px; height: 14px; display: inline-block; margin: 0 0 -2px 5px; }
.api-reviews-list .api-answer .api-badge{ display: inline-block; vertical-align: middle; color: #fff; height: 20px; line-height: 21px; padding: 0 8px; font-size: 8px; text-transform: uppercase; letter-spacing: 1px;	-webkit-border-radius:15px; -moz-border-radius:15px; border-radius:15px;}
.api-reviews-list .api-answer .api-shop-text{ margin-top: 10px; }
/* .api-thumbs */
.api-reviews-list .api-thumbs{white-space: nowrap}
.api-reviews-list .api-thumbs .api-thumbs-label{ font-size: 12px }
.api-reviews-list .api-thumbs > *{ margin-right: 10px; display: inline-block; white-space: nowrap }
.api-reviews-list .api-thumbs-up,
.api-reviews-list .api-thumbs-down{ cursor: pointer; font-size: 12px   }
.api-reviews-list .api-thumbs .api-hand{background-image: url("/bitrix/images/api.reviews/sprite.png"); background-repeat:no-repeat;  display: inline-block; width: 14px; height: 15px; line-height: 0; font-size: 0;  }
.api-reviews-list .api-thumbs-up .api-hand{ background-position: -46px -33px; margin-bottom: -2px }
.api-reviews-list .api-thumbs-up.api-thumbs-active .api-hand{ background-position: -61px -33px }
.api-reviews-list .api-thumbs-up .api-counter{ color: #298800 }
.api-reviews-list .api-thumbs-down .api-hand{ background-position: -76px -33px; margin-bottom: -5px }
.api-reviews-list .api-thumbs-down.api-thumbs-active .api-hand{ background-position: -91px -33px }
.api-reviews-list .api-thumbs-down .api-counter{ color: #f81f1f }
.api-reviews-list .api-wait-small:after{ content: ""; display: inline-block; vertical-align: middle; background-size: contain !important; width: 16px; height: 16px; -webkit-animation: loader 5s linear infinite; animation: loader 5s linear infinite; }
@keyframes loader{
	100%{ -webkit-transform: rotate(-360deg); transform: rotate(-360deg); }
}
/* .api-admin-controls */
.api-reviews-list .api-admin-controls{ margin:0;position: relative; bottom: -15px }

/* #api-reply */
.api-reviews-list #api-reply{position: relative; bottom: -20px; margin: 0}
.api-reviews-list #api-reply .api-reply-button{ margin: 5px 0 0 }
.api-reviews-list #api-reply button, #api-reply .api-label{ display: inline-block; vertical-align: middle }
.api-reviews-list #api-reply button{ margin-right: 5px }
.api-reviews-list #api-reply .api-label{ margin-left: 15px }
.api-reviews-list #api-reply .api-label input{ margin: 0 5px 0 0 }

/* .api-pagination */
.api-reviews-list .api-pagination{ margin: 50px 0 25px; text-align: center }


/* @media
 ========================================================================== */
@media (max-width: 600px){
	.api-reviews-list .api-footer .api-user-info > div{width: 100% !important;}
	.api-reviews-list .api-footer .api-user-info .api-right{margin-top: 15px}
}
@media (max-width: 480px){
	.api-reviews-list .api-answer{margin-left: 0}
	.api-reviews-list .api-answer:before{display: none}
	.api-reviews-list .api-footer .api-user-info .api-right{text-align: center;}
}

/* End */


/* Start:/local/templates/meb/components/api/reviews/new/api/reviews.list/.default/theme/flat/style.css?16674650866598*/
.arlist-color-orange1 .api-wait-small:after{ background: url("/bitrix/images/api.reviews/flat/orange1/wait.svg") no-repeat 50% 50% transparent; }
.arlist-color-orange1 .api-icon-star{ background: url("/bitrix/images/api.reviews/flat/orange1/sprite.png") no-repeat -16px 0 transparent; }
.arlist-color-orange1 .api-icon-active{ background-position: 0 0; }
.arlist-color-orange1 .api-item{ background: #f8f8f8;}

.arlist-color-orange2 .api-wait-small:after{ background: url("/bitrix/images/api.reviews/flat/orange2/wait.svg") no-repeat 50% 50% transparent; }
.arlist-color-orange2 .api-icon-star{ background: url("/bitrix/images/api.reviews/flat/orange2/sprite.png") no-repeat -16px 0 transparent; }
.arlist-color-orange2 .api-icon-active{ background-position: 0 0; }
.arlist-color-orange2 .api-item{ background: #fffefb;border: 1px solid #ededed;}
.arlist-color-orange2 .api-item .api-field-title{background: transparent; padding: 0; font-size: 16px; color: #000}
.arlist-color-orange2 .api-answer{ border: 2px dashed #f66128; }

.arlist-color-orange3 .api-wait-small:after{ background: url("/bitrix/images/api.reviews/flat/orange3/wait.svg") no-repeat 50% 50% transparent; }
.arlist-color-orange3 .api-icon-star{ background: url("/bitrix/images/api.reviews/flat/orange3/sprite.png") no-repeat -16px 0 transparent; }
.arlist-color-orange3 .api-icon-active{ background-position: 0 0; }
.arlist-color-orange3 .api-item{ background: #fff;border: 1px solid #ededed;}
.arlist-color-orange3 .api-item .api-field-title{background: transparent; padding: 0; font-size: 16px; color: #000}
.arlist-color-orange3 .api-answer{ border: 2px dashed #f66128; }

.arlist-color-blue1 .api-wait-small:after{ background: url("/bitrix/images/api.reviews/flat/blue1/wait.svg") no-repeat 50% 50% transparent; }
.arlist-color-blue1 .api-icon-star{ background: url("/bitrix/images/api.reviews/flat/blue1/sprite.png") no-repeat -16px 0 transparent; }
.arlist-color-blue1 .api-icon-active{ background-position: 0 0; }
.arlist-color-blue1 .api-item{ background: #edf5f8;}

.arlist-color-blue2 .api-wait-small:after{ background: url("/bitrix/images/api.reviews/flat/blue2/wait.svg") no-repeat 50% 50% transparent; }
.arlist-color-blue2 .api-icon-star{ background: url("/bitrix/images/api.reviews/flat/blue2/sprite.png") no-repeat -16px 0 transparent; }
.arlist-color-blue2 .api-icon-active{ background-position: 0 0; }
.arlist-color-blue2 .api-item{ background: rgba(0, 131, 209, 0.1); }

.arlist-color-blue3 .api-wait-small:after{ background: url("/bitrix/images/api.reviews/flat/blue3/wait.svg") no-repeat 50% 50% transparent; }
.arlist-color-blue3 .api-icon-star{ background: url("/bitrix/images/api.reviews/flat/blue3/sprite.png") no-repeat -16px 0 transparent; }
.arlist-color-blue3 .api-icon-active{ background-position: 0 0; }
.arlist-color-blue3 .api-item{ background: rgba(63, 188, 239, 0.1);}

.arlist-color-black1 .api-wait-small:after{ background: url("/bitrix/images/api.reviews/flat/black1/wait.svg") no-repeat 50% 50% transparent; }
.arlist-color-black1 .api-icon-star{ background: url("/bitrix/images/api.reviews/flat/black1/sprite.png") no-repeat -16px 0 transparent; }
.arlist-color-black1 .api-icon-active{ background-position: 0 0; }

.arlist-color-red1 .api-wait-small:after{ background: url("/bitrix/images/api.reviews/flat/red1/wait.svg") no-repeat 50% 50% transparent; }
.arlist-color-red1 .api-icon-star{ background: url("/bitrix/images/api.reviews/flat/red1/sprite.png") no-repeat -16px 0 transparent; }
.arlist-color-red1 .api-icon-active{ background-position: 0 0; }
.arlist-color-red1 .api-item{ background: #fff9f9 }
.arlist-color-red1 .api-field-title{ border: 1px solid #ececec; }
.arlist-color-red1 .api-answer{ border: 1px dashed #f6b4b4; }

.arlist-color-pink1 .api-wait-small:after{ background: url("/bitrix/images/api.reviews/flat/pink1/wait.svg") no-repeat 50% 50% transparent; }
.arlist-color-pink1 .api-icon-star{ background: url("/bitrix/images/api.reviews/flat/pink1/sprite.png") no-repeat -16px 0 transparent; }
.arlist-color-pink1 .api-icon-active{ background-position: 0 0; }
.arlist-color-pink1 .api-item{ background: transparent; -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .25); -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .25); box-shadow: 0 1px 3px rgba(0, 0, 0, .25); }
.arlist-color-pink1 .api-field-title{ border: 1px solid #ececec; color: #000; background: #fbfbfb }
.arlist-color-pink1 .api-answer{ border: 2px dashed #f799d4; }

.arlist-color-yellow1 .api-wait-small:after{ background: url("/bitrix/images/api.reviews/flat/yellow1/wait.svg") no-repeat 50% 50% transparent; }
.arlist-color-yellow1 .api-icon-star{ background: url("/bitrix/images/api.reviews/flat/yellow1/sprite.png") no-repeat -16px 0 transparent; }
.arlist-color-yellow1 .api-icon-active{ background-position: 0 0; }
.arlist-color-yellow1 .api-item{ background: #fcf8e3 }

.arlist-color-green1 .api-wait-small:after{ background: url("/bitrix/images/api.reviews/flat/green1/wait.svg") no-repeat 50% 50% transparent; }
.arlist-color-green1 .api-icon-star{ background: url("/bitrix/images/api.reviews/flat/green1/sprite.png") no-repeat -16px 0 transparent; }
.arlist-color-green1 .api-icon-active{ background-position: 0 0; }
.arlist-color-green1 .api-item{ background: rgba(121, 196, 113, 0.1) }

.arlist-color-green2 .api-wait-small:after{ background: url("/bitrix/images/api.reviews/flat/green2/wait.svg") no-repeat 50% 50% transparent; }
.arlist-color-green2 .api-icon-star{ background: url("/bitrix/images/api.reviews/flat/green2/sprite.png") no-repeat -16px 0 transparent; }
.arlist-color-green2 .api-icon-active{ background-position: 0 0; }
.arlist-color-green2 .api-item{ background: #e2f3eb }

.arlist-color-green3 .api-wait-small:after{ background: url("/bitrix/images/api.reviews/flat/green3/wait.svg") no-repeat 50% 50% transparent; }
.arlist-color-green3 .api-icon-star{ background: url("/bitrix/images/api.reviews/flat/green3/sprite.png") no-repeat -16px 0 transparent; }
.arlist-color-green3 .api-icon-active{ background-position: 0 0; }
.arlist-color-green3 .api-item{ background: #e2f3eb }

.arlist-color-purple1 .api-wait-small:after{ background: url("/bitrix/images/api.reviews/flat/purple1/wait.svg") no-repeat 50% 50% transparent; }
.arlist-color-purple1 .api-icon-star{ background: url("/bitrix/images/api.reviews/flat/purple1/sprite.png") no-repeat -16px 0 transparent; }
.arlist-color-purple1 .api-icon-active{ background-position: 0 0; }
.arlist-color-purple1 .api-item{ background: rgba(199, 144, 185, 0.1); }

/* End */


/* Start:/bitrix/components/bitrix/main.pagenavigation/templates/.default/style.min.css?16673975882530*/
.bx-pagination{margin:10px 0}.bx-pagination .bx-pagination-container{text-align:center;position:relative}.bx-pagination .bx-pagination-container ul{padding:0;margin:0;list-style:none;display:inline-block}.bx-pagination .bx-pagination-container ul li{display:inline-block;margin:0 2px 15px 2px}.bx-pagination .bx-pagination-container ul li span{-webkit-transition:color .3s ease,background-color .3s ease,border-color .3s ease;-moz-transition:color .3s ease,background-color .3s ease,border-color .3s ease;-ms-transition:color .3s ease,background-color .3s ease,border-color .3s ease;-o-transition:color .3s ease,background-color .3s ease,border-color .3s ease;transition:color .3s ease,background-color .3s ease,border-color .3s ease;background:#eff0f1;padding:0 8px;display:block;height:32px;min-width:32px;line-height:32px;color:#444;font-size:14px;border-radius:16px;vertical-align:middle;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bx-pagination .bx-pagination-container ul li a{text-decoration:none;display:block;border-radius:16px;height:32px;min-width:32px;line-height:32px;color:#444;vertical-align:middle}.bx-pagination .bx-pagination-container ul li a:hover span{background:#dadada}.bx-pagination .bx-pagination-container ul li.bx-active span{background:#0083d1;color:#fff}.bx-pagination .bx-pagination-container ul li.bx-pag-all a span,.bx-pagination .bx-pagination-container ul li.bx-pag-prev a span,.bx-pagination .bx-pagination-container ul li.bx-pag-next a span{background:#fff;border:2px solid #eff0f1;line-height:28px;padding:0 18px;color:#444}.bx-pagination .bx-pagination-container ul li.bx-pag-all span,.bx-pagination .bx-pagination-container ul li.bx-pag-prev span,.bx-pagination .bx-pagination-container ul li.bx-pag-next span{color:#aab1b4;background:#fff;border:2px solid #eff0f1;line-height:28px;padding:0 18px}.bx-pagination .bx-pagination-container ul li.bx-pag-all a:hover span,.bx-pagination .bx-pagination-container ul li.bx-pag-prev a:hover span,.bx-pagination .bx-pagination-container ul li.bx-pag-next a:hover span{background:#fff;border-color:#dadada;color:#000}.bx-pagination.bx-green .bx-pagination-container ul li.bx-active span{background:#3bc915;color:#fff}.bx-pagination.bx-yellow .bx-pagination-container ul li.bx-active span{background:#f9a91d;color:#fff}.bx-pagination.bx-red .bx-pagination-container ul li.bx-active span{background:#e22b2b;color:#fff}.bx-pagination.bx-blue .bx-pagination-container ul li.bx-active span{background:#0083d1;color:#fff}
/* End */


/* Start:/local/templates/meb/components/bitrix/catalog.section/slider/style.min.css?166746508688*/
.carousel-indicators>li{position:relative;-webkit-transition:all .5s;transition:all .5s}
/* End */
/* /local/templates/meb/components/bitrix/catalog/meb/bitrix/catalog.element/.default/style.css?16908203612647 */
/* /local/components/darneo/catalog.sku.vue/templates/.default/style.css?174118858016620 */
/* /local/components/darneo/catalog.sku.vue/templates/.default/slider.css?17412246955317 */
/* /local/components/darneo/catalog.sku.vue/templates/.default/sku_tabs.css?17392029669444 */
/* /local/templates/meb/js/swiper/swiper-bundle.min.css?173920226818456 */
/* /local/templates/meb/js/photoswipe/photoswipe.min.css?17392022922546 */
/* /local/templates/meb/js/photoswipe/default-skin.css?173945963911607 */
/* /local/templates/meb/components/api/reviews/new/style.css?16674650868028 */
/* /local/templates/meb/components/api/reviews/new/theme/flat/style.css?16674650861671 */
/* /local/templates/meb/components/api/reviews/new/api/reviews.form/.default/style.css?16674650864082 */
/* /local/templates/meb/components/api/reviews/new/api/reviews.form/.default/theme/flat/style.css?16674650866201 */
/* /local/templates/meb/components/api/reviews/new/api/reviews.list/.default/style.css?16674650867845 */
/* /local/templates/meb/components/api/reviews/new/api/reviews.list/.default/theme/flat/style.css?16674650866598 */
/* /bitrix/components/bitrix/main.pagenavigation/templates/.default/style.min.css?16673975882530 */
/* /local/templates/meb/components/bitrix/catalog.section/slider/style.min.css?166746508688 */
