/**
 * RWD PANEL
 */

@media screen and (min-width: 1140px) {
    .rwdPanel {
        display: none;
    }

    .rwdPanel-action-open,
    .rwdPanel-action-toggle {
        display: none !important;
    }
}

@media screen and (max-width: 1139px) {
    .rwdPanel {
        overflow-x: hidden;
        overflow-y: auto;
        position: fixed;
        z-index: 1000;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        background: #fff;
        transition-duration: 0.5s;
        transition-timing-function: ease;
        transition-property: transform, -webkit-transform, -ms-transform;
        /* Closed: */
        pointer-events: none;
        transform: translateY(100%);
        -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
        border-top: 1px solid var(--color-default);
    }

    header.stickable .rwdPanel {
        z-index: -1;
    }

    .rwdPanel.active {
        pointer-events: all;
        transform: none;
        -webkit-transform: none;
        -ms-transform: none;
    }

    .rwdPanel-scrollLock body {
        position: fixed;
        width: 100%;
        overflow-y: scroll;
    }
}

/**
 * RWD MENU
 */

.rwdMenu {
    font-size: 1rem;
}

.rwdMenu ul {
    display: block;
    width: 100%;
    padding: 0;
}

.rwdMenu:not(:first-child) > ul {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.rwdMenu + .rwdMenu > ul {
    border-top: none;
}

.rwdMenu ul ul {
    display: none;
    box-shadow: inset 0 3px 5px -1px rgba(0, 0, 0, 0.12);
    background-color: rgba(0, 0, 0, 0.1);
}

.rwdMenu li {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.rwdMenu li.slided {
    border-bottom: none;
}

.rwdMenu a {
    color: inherit;
}

.rwdMenu li > *:first-child {
    flex: 1 0 0px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 46px;
    padding: 5px var(--container-padding);
    text-align: left;
    word-break: break-word;
    color: #000;
    border: none;
}

.rwdMenu li > *:first-child:hover {
    text-decoration: none;
}

.rwdMenu li.active > *:first-child {
    font-weight: 700;
    color: var(--color-primary);
}

.rwdMenu > ul > li > *:first-child {
    text-transform: uppercase;
}

.rwdMenu > ul > li > ul {
    font-size: 0.875rem;
}

.rwdMenu > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 15px);
}

.rwdMenu > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 30px);
}

.rwdMenu > ul > li > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 45px);
}

.rwdMenu > ul > li > ul > li > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 60px);
}

.rwdMenu > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 75px);
}

.rwdMenu li > *:first-child > .fa,
.rwdMenu li > *:first-child > .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    font-size: 22px;
    flex-shrink: 0;
    margin: -9px 6px -9px -9px;
}

.rwdMenu li > *:first-child > .icon img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.rwdMenu li > *:first-child > .caption {
    flex: 1 0 0;
}

.rwdMenu li > *:first-child > .caption * {
    display: inline-block;
}

.rwdMenu li > *:first-child > .caption ~ * {
    margin-left: 10px;
}

.rwdMenu .rwdMenu-count {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2em;
    height: 2em;
    text-align: center;
    font-size: 14px;
    color: #000;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.rwdMenu .user-nav li + li:before {
    display: none;
}

.cloneMenu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    padding: 0;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 1px solid rgba(0, 0, 0, 0.04);
    background: rgba(0, 0, 0, 0.06);
}

.cloneMenu-toggle::before {
    content: "\f107";
    display: block;
    font-family: 'FontAwesome', sans-serif;
    transition: all 0.3s;
}

.cloneMenu-toggle.active::before {
    transform: rotateZ(180deg);
    -webkit-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
}

.rwdPanel .social-list {
    padding: 10px var(--container-padding);
    margin: 0 -5px;
}

/**
 * RWD BUTTON
 */

.rwdButton {
    float: right;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    font-size: 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: all 0.2s;
}

.rwdButton .icon {
    height: 30px;
    width: 30px;
}

.rwdButton .animIcon {
    opacity: 0;
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    width: auto;
}

.rwdButton > * {
    transition: all 0.5s;
}

.rwdButton.rwdPanel-action-toggle.active {
    color: #fff;
    background-color: var(--color-primary);
}

.rwdButton .animIcon--close span {
    background-color: #fff;
}

.rwdButton:not(.active) > .animIcon--close {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    -ms-transform: scale(0.4);
}

.rwdButton.active > .animIcon--close {
    opacity: 1;
}

.rwdButton.active > .animIcon--close ~ * {
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
}

/* --------------- BREAKPOINTS --------------- */

@media screen and (max-width: 1700px) {
    .footer-logo {
        width: 300px;
    }

    .footer-logo img {
        max-width: 100%;
    }
}

@media screen and (max-width: 1600px) {
    .about-right {
        padding-left: calc(2 * var(--space-40));
    }

    .about-line1,
    .about-line2,
    .article-floating {
        font-size: 170px;
    }

    .article-subtitle {
        font-size: var(--font-48);
    }

    .product-list {
        margin: calc(-1 * (calc(var(--space-25) - 10px)));
    }

    .product-list .product {
        padding: calc(var(--space-25) - 10px);
    }

    .product-list .product-top:before {
        padding-top: 90%;
    }

    .product-list-slider .product{
        padding: 10px;
    }
    .product-list-slider{
        margin: -10px;
    }
}

@media screen and (max-width: 1440px) {
    /*INDEX*/
    .mainSlider-title {
        font-size: 80px;
    }

    /*.mainBoxes-item {*/
        /*padding: 0 var(--space-40);*/
    /*}*/

    .section-heading-title {
        font-size: var(--font-30);
    }

    .about-line1,
    .about-line2,
    .article-floating {
        font-size: 150px;
    }

    .icons-line-1 {
        font-size: 20px;
    }

    .icons-item .icon {
        height: 140px;
        width: 140px;
    }

    .footer-col-1,
    .footer-col-2 {
        width: 15%;
    }

    .footer-col-5 {
        width: 30%;
    }

    .product-wrapper:not(.product-list-slider .product-wrapper) {
        position: static;
        height: 100%;
    }

    .product-inner:not(.product-list-slider .product-inner) {
        height: 100%;
    }

    .product-inner:before {
        display: none;
    }
    .product-list-slider .product-inner:before{
        display: block;
    }

    .header-top-right > * + * {
        margin-left: var(--space-50);
    }

    .add-to-basket-left:not(:last-child) {
        width: 50%;
    }
    .add-to-basket-right {
        padding-left: var(--space-25);
    }
}

@media screen and (max-width: 1280px) {
    /*HEADER*/
    .logo {
        width: 280px;
    }

    .header-top-inner {
        min-height: 90px;
    }

    #content {
        padding-top: 150px;
    }

    /*INDEX*/
    .mainSlider-title {
        font-size: 60px;
    }

    .mainSlider-text {
        font-size: 16px;
        padding-right: var(--space-40);
    }

    .mainSlider {
        height: calc(100vh - 150px);
    }

    .mainBoxes-item-icon {
        width: 120px;
        height: 120px;
    }

    .mainBoxes-item-icon .icon {
        height: 100%;
        width: 100%;
    }

    .mainBoxes-item-inner {
        padding-left: var(--space-40);
    }

    .about-line1,
    .about-line2,
    .article-floating {
        font-size: 130px;
    }

    .section-contact-item .icon {
        width: 60px;
        height: 60px;
        margin: -15px 5px -15px -15px;
    }

    .icons-line-1 {
        font-size: 18px;
    }

    .icons-line-2 {
        font-size: 14px;
    }

    .icons-item .icon {
        height: 120px;
        width: 120px;
    }

    .product-list .product {
        width: 50%;
    }
    .shop-product-price {
        font-size: 30px;
    }
}

@media screen and (min-width: 1140px) {
    .footer-col-content {
        display: block !important;
    }
}

@media screen and (max-width: 1139px) {

    /*HEADER*/
    header {
        border-bottom: 1px solid var(--color-default);
    }

    .header-bottom {
        display: none;
    }

    .header-top-right > * + * {
        margin-left: 15px;
    }

    .header-top-right .user-nav {
        display: none;
    }

    .header-top-right .basket-box {
        display: none;
    }

    .header-top-inner {
        min-height: 75px;
    }

    .header-bottom-inner .btn-md {
        min-height: 35px;
    }

    #content {
        padding-top: 76px;
    }

    .basket-box-btn .caption {
        min-width: 80px;
        text-align: center;
    }

    .logo {
        width: 240px;
    }

    .rwdMenu .rwd-basket.rwd-basket {
        background-color: transparent;
        color: #000;
    }

    /*INDEX*/
    .mainSlider-title {
        font-size: 50px;
    }

    .mainSlider {
        height: initial;
    }

    .mainSlider-content {
        padding: calc(3 * var(--space-60)) 0;
    }

    .btn-lg {
        min-height: 40px;
        min-width: 170px;
    }

    .product-top:before {
        padding-top: 90%;
    }

    .product-label {
        padding: 2px 5px;
    }

    .product .price-box {
        font-size: 16px;
    }

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

    .mainBoxes-title {
        margin-bottom: 0;
    }

    .mainBoxes-item-icon {
        width: 100px;
        height: 100px;
    }

    .mainBoxes-item-btn {
        margin-top: 10px;
    }

    .about-right {
        padding-left: var(--space-40);
    }

    .icons-item {
        width: 50%;
        justify-content: center;
    }

    .gallery-list {
        margin: -3px;
    }

    .gallery-list-item {
        padding: 3px;
    }

    .contact-box-inner img {
        max-width: 70px;
    }

    .contact-box-inner .text {
        font-size: 14px;
        line-height: 1.8;
    }
    .basket-table .shop-quantity-box .qty-up, .basket-table .shop-quantity-box .qty-down{
        top: 0;
    }

    .panel-page{
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    /*ASIDE*/
    .asidedPage-content {
        width: 100%;
    }

    .aside-form-container {
        padding: 15px;
    }

    .product-info li {
        width: 40%;
    }

    .aside {
        width: 300px;
        padding: var(--space-50) 0;
        position: fixed;
        left: -300px;
        top: 76px;
        bottom: 0;
        z-index: 100;
        --side-space: 15px;
        background-color: #fff;
        overflow-y: auto;
        transition: left 0.4s;
    }

    .aside.active {
        left: 0;
    }

    .aside.active .aside-open {
        left: -40px;
    }

    .aside-title {
        position: relative;
        padding-left: var(--container-padding);
        padding-right: 40px;
        font-size: var(--font-48);
    }
    
    .aside-close {
        position: absolute;
        top: 50%;
        right: 20px;
        font-size: 20px;
        -webkit-transform: translate3d(50%, -50%, 0);
        -moz-transform: translate3d(50%, -50%, 0);
        -ms-transform: translate3d(50%, -50%, 0);
        -o-transform: translate3d(50%, -50%, 0);
        transform: translate3d(50%, -50%, 0);
    }

    .aside-shadow {
        display: block;
        opacity: 0;
        pointer-events: none;
    }

    .aside-shadow.active {
        opacity: 0.2;
        pointer-events: all;
    }

    .page-asided-content {
        width: 100%;
        padding-left: 0;
    }

    .product-list .product {
        width: 33.3333%;
    }

    .add-to-basket-right .btn {
        padding-left: 12px;
        padding-right: 12px;
    }

    /*FOOTER*/
    .footer-main {
        padding: var(--space-40) 0;
    }

    .footer-col-content {
        display: none;
    }

    .footer-cols > div {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid var(--color-primary);
    }

    .footer-col-5 {
        border: none !important;
    }

    .footer-col-title {
        position: relative;
    }

    .footer-col-title::before {
        content: '\f107';
        position: absolute;
        right: 0;
        top: 50%;
        transition: all 0.4s;
        font-family: FontAwesome;
        font-size: 16px;
        color: #fff;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .footer-col-title.active:before {
        -webkit-transform: translateY(-50%) scaleY(-1);
        -moz-transform: translateY(-50%) scaleY(-1);
        -ms-transform: translateY(-50%) scaleY(-1);
        -o-transform: translateY(-50%) scaleY(-1);
        transform: translateY(-50%) scaleY(-1);
    }

    .footer-payment {
        align-items: center;
    }

    .footer-col-content .social-list {
        margin-top: var(--space-25);
    }

    .footer-logo {
        margin: 0 auto;
    }

    .footer-extra-text {
        margin-top: var(--space-25);
    }


    .text table tr td {
        padding: 6px 10px;
    }

    #main-menu {
        display: none;
    }

    .langs-menu {
        display: none !important;
    }

    .rwd-hide {
        display: none;
    }

    .text img {
        max-width: 100%;
        max-width: 100% !important;
    }

    .container {
        width: 100%;
    }

    .article-image {
        margin-right: 25px;
        margin-bottom: 15px;
    }

    .lang .langs-menu-short {
        display: none;
    }

    .lang .langs-menu-long {
        display: block;
    }

    .mainsearch.rwdPanel .mainsearch-search {
        /*background-color: #f0f;*/
        align-items: center;
    }

    .mainsearch.rwdPanel .dropdown-menu {
        position: static !important;
        width: 100% !important;
        box-shadow: none;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

    .mainsearch.rwdPanel .mainsearch-search,
    .mainsearch.rwdPanel .dropdown-menu {
        padding: 15px;
    }

    .mainsearch.rwdPanel .dropdown-menu .dropdown-search-li.all-search-results {
        margin-top: 15px;
    }

    .mainsearch.rwdPanel .form-element-container {
        width: calc(100% - 46px);
        border: 1px solid var(--color-default);
        border-right: none;
    }

    .mainsearch.rwdPanel .mainsearch-submit {
        height: 46px;
        width: 46px;
        border: 1px solid var(--color-default);
    }

    .mainsearch.rwdPanel input {
        height: 44px;
        padding: 5px 20px;
    }
    .add-to-basket-cols {
        padding: var(--space-25);
    }
}

@media screen and (max-width: 900px) {
    /*INDEX*/
    .mainSlider-content-bottom {
        flex-direction: column;
        align-items: flex-start;
        max-width: 100%;
        width: 100%;
        margin-top: var(--space-25);
    }

    .mainSlider-content-bottom .btn {
        margin-left: 0;
        margin-top: var(--space-40);
    }

    .mainBoxes-left {
        width: 60%;
    }

    .mainBoxes-image {
        width: 40%;
    }

    .mainBoxes-item {
        padding: var(--space-25);
    }

    .about-line1,
    .about-line2,
    .article-floating {
        font-size: 100px;
    }

    .about-image {
        width: 40%;
    }

    .about-right {
        width: 60%;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .contact-boxes {
        width: 100%;
    }

    .contact-right {
        position: relative;
        width: 100%;
        padding-top: 100%;
    }

    .contact-right iframe {
        position: absolute;
        top: 0;
        left: 0;
    }

    .product-view-top {
        flex-direction: column;
    }

    .product-view-left {
        width: 100%;
    }

    .shop-product-title {
        font-size: 20px;
    }

    .product-view-right {
        width: 100%;
        padding-left: 0;
        padding-top: var(--space-50);
    }

    .add-to-basket-cols {
        padding: var(--space-60);
    }

    .add-to-basket-right {
        padding-left: var(--space-60);
    }

    .shop-product-price {
        font-size: 36px;
    }

    .add-to-basket-right .btn .icon {
        margin: -10px 0px -10px -10px;
    }

    .footer-bar {
        text-align: center;
        padding: 13px 0;
        line-height: normal;
    }

    .footer-bar-content > * {
        float: none;
        display: inline-block;
        vertical-align: middle;
    }

    .footer-bar-content.footer-bar-content > * {
        margin-left: 15px;
        margin-right: 15px;
    }

    .footer-bar .footer-bar-links {
        display: block;
        margin: -3px -8px;
    }

    .footer-bar .footer-bar-links:not(:last-child) {
        margin-bottom: 3px;
    }

    .footer-bar-links > li {
        margin: 3px 8px;
        line-height: 20px;
    }

    .copyright,
    .copyright-undicom {
        margin-top: 4px;
        margin-bottom: 4px;
        line-height: 20px;
    }
}

@media screen and (max-width: 767px) {
    .header-top {
        display: block;
    }

    /*INDEX*/
    .product {
        padding: 5px;
    }

    .product-slider-inner {
        margin: -5px;
    }


    .price-and-discount-container tfoot .shop-basket-price, .orderItemsValue span {
        font-size: 20px;
    }
    .add-to-basket-right .btn .icon{
        width: 38px;
        height: 38px;
    }
    .add-to-basket-right .btn{
        font-size: 13px;
    }

    .shop-product-price {
        font-size: 30px;
    }

    .text .table-responsive-wrapper {
        position: relative;
        padding-bottom: 40px;
        margin: 20px 0;
    }

    .text .table-responsive-wrapper::after {
        pointer-events: none;
        content: "";
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 45px;
        background-size: contain;
        background-position: right 15px center;
        background-repeat: no-repeat;
        background-image: url(../images/rwd-table-hand.png);
        -webkit-animation-name: rwd-hand-move;
        animation-name: rwd-hand-move;
        -webkit-animation-duration: 1.5s;
        animation-duration: 1.5s;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-direction: alternate;
        animation-direction: alternate;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }

    .text .table-responsive {
        margin: 0;
        border: none;
    }

    .text table {
        margin: 0;
        min-width: 780px;
    }

    @keyframes rwd-hand-move {
        0% {
            transform: translateX(-30px);
        }
        100% {
            transform: translateX(0);
        }
    }
    @-webkit-keyframes rwd-hand-move {
        0% {
            transform: translateX(-20px);
        }
        100% {
            transform: translateX(0);
        }
    }
    .form .form-element-captcha .captcha-image-wrapper {
        margin-bottom: 15px;
    }

    .product-list .product {
        width: 50%;
    }
}

@media screen and (min-width: 706px) {
    footer .show-hide {
        display: block !important;
    }
}

@media screen and (max-width: 700px) {
    .section-about {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
    }

    .about-right {
        width: 100%;
        margin-top: 15px;
        padding: 0;
    }

    .about-line1,
    .about-line2,
    .article-floating {
        font-size: 70px;
    }
}

@media screen and (max-width: 639px) {
    /*INDEX*/
    .mainSlider-content-bottom {
        width: 100%;
    }

    .mainSlider-title {
        font-size: 40px;
    }

    .mainBoxes-section-inner {
        flex-direction: column-reverse;
    }

    .mainBoxes-left {
        width: 100%;
    }

    .mainBoxes-image {
        width: 100%;
    }

    .section-contact-text {
        font-size: 16px;
    }

    .basket-view .thumbnail {
        margin-bottom: 0;
        width: 90px;
        float: left;
    }

    .basket-table .product-info-box-inner > * {
        display: table-cell;
        vertical-align: middle;
        float: none;
    }

    .basket-table .name {
        width: auto;
        padding-left: 15px;
    }

    .text img {
        max-width: 100%;
        max-width: 100% !important;
        width: inherit;
        width: inherit !important;
        height: auto;
        height: auto !important;
    }

    .text table,
    .text iframe,
    .text object {
        max-width: 100%;
        max-width: 100% !important;
        width: 100%;
        width: 100% !important;
    }


    .article-image {
        margin: 0;
        width: 100%;
        display: block;
        float: none;
        max-width: none;
        text-align: center;
        line-height: 0;
    }

    .breadcrumb > li:not(:first-child):not(:last-child):not(:nth-last-child(2)) {
        display: none;
    }

    .breadcrumb > li:not(:first-child):not(:last-child) a {
        font-size: 0;
        text-indent: -1000px; /* Apple */
    }

    .breadcrumb > li:not(:last-child) a span {
        display: none;
    }

    .breadcrumb > li:not(:first-child):not(:last-child) a:after {
        content: "...";
        font-size: 12px;
    }

    .breadcrumb > li + li:before {
        padding: 0 6px;
    }

    .breadcrumb > li:first-child a {
        font-size: 0 !important;
        letter-spacing: 0 !important;
    }

    .breadcrumb > li:first-child a:after {
        content: "\f015";
        display: inline-block;
        font-family: FontAwesome, sans-serif;
        font-size: 12px;
    }
}

@media screen and (max-width: 560px) {
    .header-top-right > .header-btn {
        display: none;
    }
    .section-heading-title .icon {
        width: 60px;
        height: 60px;
        margin: -16px 0px -16px -16px;
    }

    .section-contact-logo {
        width: 120px;
        padding-right: var(--space-40);
    }

    .section-contact-logo img {
        max-width: 100%;
    }

    .text {
        word-wrap: break-word;
        font-size: 14px;
    }

    .icons-line-1 {
        font-size: 14px;
    }

    .icon-line-2 {
        font-size: 12px;
    }

    .icons-item .icon {
        height: 90px;
        width: 90px;
        margin: -35px 0 -35px -20px;
    }

    .icons-item-content{
        padding-left: 0;
    }
    .icons-item{
        justify-content: flex-start;
    }

    .footer-col-title {
        font-size: 16px;
    }

    .gallery-list-item {
        width: 50%;
    }

    .form .form-element-name {
        font-size: 14px;
    }

    .basket-table .price:not(.price-old), .basket-table tbody .lp {
        font-size: 16px;
    }

    .product-view-left {
        padding: 0;
        width: 100%;
        float: none;
        padding-bottom: 15px;
    }
    .modal-footer .btn{
        padding: 5px;
    }
    .modal-title{
        font-size: 20px;
    }

    .add-to-basket-cols {
        flex-direction: column;
    }

    .add-to-basket-left:not(:last-child) {
        padding-right: 0;
        width: 100%;
    }

    .add-to-basket-right {
        width: 100%;
        padding-left: 0;
        margin-top: var(--space-40);
        padding-top: var(--space-40);
        border-left: none;
        border-top: 1px solid var(--color-default);
    }

    .shop-sort-heading{
        flex-direction: column;
    }

    .shop-sort{
        position: static;
    }

    .availability-notification{
        margin-top: var(--space-25);
    }
}

@media screen and (max-width: 480px) {
    .userpanel-container .panel-body .btn-danger {
        top: -12px;
    }
    .shop-basket-summary .checkboxradio-container .col-xs-12, .shop-basket-summary .checkboxradio-container .col-xs-4{
        width: 50%;
    }
}

@media screen and (max-width: 420px) {
    /*INDEX*/
    .mainSlider-title {
        font-size: 36px;
    }

    .mainSlider-content {
        padding: calc(2 * var(--space-60)) 0;
    }

    .mainBoxes-item {
        display: block;
    }

    .mainBoxes-item-icon {
        float: left;
        width: 90px;
        height: 90px;
        margin-right: 10px;
    }

    .section-heading-buttons > .btn {
        padding-right: 0;
    }

    .btn-square.btn-lg {
        width: 38px;
    }

    .section-contact-logo {
        display: none;
    }

    .section-contact-logo {
        width: 100px;
    }

    .icons-item {
        width: 100%;
        justify-content: center;
    }

    .product-list .product {
        width: 100%;
    }

    .basket-view .thumbnail {
        margin-bottom: 15px;
        width: 100%;
        float: none;
    }

    .basket-table .product-info-box-inner > * {
        display: block;
    }

    .price-and-discount-container tfoot .shop-basket-price, .orderItemsValue span {
        font-size: 18px;
    }

    .footer-bar-content.footer-bar-content > * {
        display: block;
        margin-left: 0;
        margin-right: 0;
    }

    .footer-logo {
        width: 250px;
    }

    .contact-right {
        height: 320px;
    }

    .contact-box-inner > * + * {
        margin-top: 5px;
    }

    .contact-box-inner > ul {
        font-size: 13px;
        line-height: 1.8;
    }

    .contact-box-inner .text {
        font-size: 12px;
    }

    .shop-product-actions .select2-container .select2-selection--single .select2-selection__rendered {
        min-width: 160px;
    }

    .top-box-product .top-box-right .product-name{
        font-size: 14px;
    }
}

@media screen and (max-width: 360px) {
    .shop-sort span.select2{
        width: 140px !important;
    }
    .aside {
        left: -280px;
        width: 280px;
    }
    .contact-box {
        width: 100%;
    }
    .contact-box-inner .text,
    .contact-box-inner > ul {
        font-size: 15px;
    }
    .contact-box:nth-child(4n+3) {
        background-color: var(--color-primary);
        color: #fff;
    }
    .modal-footer{
        display: flex;
    }
    .modal-footer .btn{
        width: 100%;
    }
    .modal-footer .btn+.btn{
        margin: 0;
        margin-top: 10px;
    }
}

@media screen and (max-width: 319px) {
    body {
        width: 320px;
    }
}

/* --------------- GLOBAL VARIABLES --------------- */
@media screen and (max-width: 1600px) {
    :root {
        --space-60: 55px;
        --space-50: 45px;
        --space-40: 35px;

        --font-48: 40px;
        --font-36: 32px;
        --font-30: 26px;
        --font-24: 22px;
    }
}

@media screen and (max-width: 1440px) {
    :root {
        --space-60: 50px;
        --space-50: 40px;

        --font-48: 36px;

        --container-padding: 30px;
    }
}

@media screen and (max-width: 1366px) {
    :root {
        --space-25: 20px;

        --font-48: 34px;
        --font-36: 28px;
        --font-30: 24px;
    }
}

@media screen and (max-width: 1280px) {
    :root {
        --space-60: 40px;
        --space-50: 35px;
        --space-40: 30px;

        --font-48: 32px;

        --container-padding: 20px;
    }
}

@media screen and (max-width: 1139px) {
    :root {
        --space-60: 35px;
        --space-50: 30px;
        --space-40: 25px;
        --space-25: 15px;
    }
}

@media screen and (max-width: 960px) {
    :root {
        --space-60: 30px;
        --space-50: 25px;
        --space-40: 20px;
    }
}

@media screen and (max-width: 900px) {
    :root {
        --container-padding: 15px;
    }
}

@media screen and (max-width: 639px) {
    :root {
        --font-48: 30px;
        --font-36: 24px;
        --font-30: 22px;
        --font-24: 18px;
    }
}

@media screen and (max-width: 420px) {
    :root {
        --font-48: 24px;
        --font-36: 20px;
        --font-30: 18px;
        --font-24: 16px;
    }
}