@media screen and (min-width: 1921px) {
    body.compensate-for-scrollbar {
        margin-right: auto !important;
    }
}

/**
 * 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 rgba(0, 0, 0, 0.1);
    }

    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-secondary);
}

.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: 40px;
    height: 40px;
    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 {
    margin: 15px 0;
    text-align: center;
}

/**
 * RWD BUTTON
 */

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

.rwdButton .icon {
    width: 14px;
}

.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: 1800px) {
    .product-view-col-instructions-links {
        gap: 10px;
    }

    .btn-product-view.btn {
        font-size: 12px;
    }
}

@media screen and (max-width: 1700px) {
    .main-slider-arrows .btn-prev {
        left: var(--container-padding);
    }

    .main-slider-arrows .btn-next {
        right: var(--container-padding);
    }

    .categories-wrapper .container > ul > li > a > .box-title {
        font-size: 20px;
    }

    .btn-menu-close {
        top: 10px;
        right: 10px;
        width: 44px;
        height: 44px;
    }

    .shop-product .product-column {
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
    }

}

@media screen and (max-width: 1600px) {
    .submenu-tiles {
        gap: var(--space-25);
    }

    .product-view-col-instructions-links {
        grid-template-columns: 1fr;
    }

    .btn-product-view.btn {
        font-size: 14px;
    }

    .info-column .toggle-row .btn-lg {
        padding: 5px;
    }

    .info-column .toggle-row .manual-list {
        width: 63%;
    }

    .agency-list {
        margin: -10px;
    }

    .agency-item {
        padding: 10px;
    }

    .footer-top-info-link-inner {
        font-size: 15px;
    }

    .footer-col:nth-child(4) {
        width: 26%;
    }

    .footer-col {
        width: 19%;
    }

    .shop-product-list .shop-product-box {
        padding: 10px;
    }

    .shop-product-list {
        margin: -10px;
    }

    .product-container {
        padding: var(--space-25) 15px;
    }
}

@media screen and (max-width: 1500px) {
    .header-main .user-nav {
        padding-right: 15px;
    }

    .mainCategories-list {
        margin: -7px;
    }

    .mainCategories-item {
        padding: 7px;
        width: 16.666%;
    }

    .categories-wrapper .container > ul > li > a > .box-title {
        font-size: 19px;
    }
}

@media screen and (max-width: 1440px) {
    .product-view-col-person-image {
        width: 116px;
    }

    .product-view-col-person-link .icon {
        width: 40px;
        height: 40px;
        padding: 12px;
    }

    .product-view-col-person {
        gap: 20px;
    }

    .product-view-col-person-link {
        font-size: 14px;
    }

    .main-submenu-column-item-name {
        font-size: 22px;
    }

    .main-submenu-column-item-top {
        gap: var(--space-25);
    }

    #main-menu .main-submenu-column-item-columns > ul > li > a {
        font-size: 16px;
    }

    .submenu-tiles {
        grid-template-columns: repeat(6, 1fr);
    }

    header.sticky .top-box {
        top: calc(100% + 10px);
    }

    #main-menu > ul > li > a {
        padding: 10px 15px;
    }

    .main-submenu-wrapper {
        top: 98px;
    }

    header.sticky .main-submenu-wrapper {
        top: 93px;
    }

    .info-column .toggle-row .manual-list {
        width: 69%;
    }

    .shop-product-list {
        margin: -5px;
    }

    .shop-product-list .shop-product-box {
        padding: 5px;
    }

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

    .categories-wrapper {
        top: 90px;
        max-height: calc(100% - 90px);
    }

    .footer-logotype {
        width: 50%;
    }

    .footer-logotype-inner {
        width: 100%;
    }

    .footer-col:nth-child(1) {
        width: 16% !important;
    }

    .footer-col {
        width: 21% !important;
    }

    .mainsearch-submit, .header-main .user-nav-item .icon, .basket-icon {
        width: 46px;
        height: 46px;
    }

    .categories-wrapper > .container > ul > li {
        width: 20%;
    }

    .mainCategories-item-inner .icon {
        width: 60%;
    }

    .mainCategories-item-inner {
        text-align: center;
        padding: 10px;
        aspect-ratio: unset;
    }

    .agency-bottom {
        padding: var(--space-25);
    }

    .configurator-field-container .form-element-container {
        display: block;
    }

    .shop-configurator-label {
        width: 100%;
        padding-right: 0;
        padding-bottom: 10px;
    }

    .shop-configurator-options-panel {
        width: 100%;
    }

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

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

}

@media screen and (max-width: 1366px) {
    .categories-wrapper {
        top: 80px;
        max-height: calc(100% - 80px);
    }

    .shop-product-list .shop-product-box {
        width: 25%;
    }
}

@media screen and (max-width: 1280px) {
    header.sticky .main-submenu-wrapper {
        top: 89px;
    }

    .product-view-col-person-image {
        width: 100px;
    }

    .main-submenu-wrapper {
        top: 94px;
    }

    #main-menu > ul > li.has-submenu:before {
        top: 155px;
    }

    #main-menu > ul > li > a {
        font-size: 13px;
    }

    #content {
        padding-top: 155px;
    }

    .mainsearch input.form-control {
        height: 40px;
    }

    #bot-menu > ul > li > a {
        padding: 12px var(--space-50);
    }

    .manual-download {
        flex-direction: column;
        gap: var(--space-25);
        padding-right: 0;
    }

    .info-column .toggle-row .manual-list {
        width: unset;
    }

    .categories-wrapper {
        top: 78px;
        max-height: calc(100% - 78px);
    }

    .agency-bottom .btn-wrapper {
        height: 36px;
    }

    .agency-title {
        font-size: 18px;
    }

    .agency-item-inner:hover .agency-bottom .btn {
        height: 36px;
    }

    .footer-col:nth-child(1) {
        width: 12% !important;
    }

    .footer-col {
        width: 22% !important;
    }

    .mainsearch-submit, .header-main .user-nav-item .icon, .basket-icon {
        width: 40px;
        height: 40px;
    }

    .aboutUs-row {
        gap: var(--space-50);
    }

    .categories-wrapper > .container > ul > li {
        width: 25%;
    }

    .header-main .user-nav-item-inner .caption {
        display: none;
    }

    .file-box-inner {
        padding: 10px;
    }

    .form-grid {
        display: grid;
        grid-template-columns: 40% 60%;
    }


}

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

    .contact-left {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .contact-left ul {
        display: flex;
        text-align: left;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

@media screen and (min-width: 1140px) {
    .mainsearch {
        top: 0 !important;
    }

    .footer-col-content {
        display: block !important;
    }
}

@media screen and (max-width: 1139px) {
    .product-image-list-wrapper {
        align-items: flex-start;
    }

    .media {
        width: 100%;
    }

    .media-body {
        width: 70%;
    }

    .product-param-item {
        grid-template-columns: 1fr 1fr;
    }

    .product-view-col + .product-view-col {
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .product-view-photos {
        width: 100%;
        max-width: 550px;
        margin: 0 auto;
    }

    .product-view-col-instructions-links {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .product-view-columns {
        flex-wrap: wrap;
    }

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

    .mainContact-inner {
        flex-direction: column;
        gap: calc(2 * var(--space-60));
    }

    .mainContact-inner .contact-form-container,
    .mainContact-content {
        width: 100%;
        padding-right: 0;
        padding-left: 0;
    }

    .mainContact-inner .contact-form-container:before {
        content: none;
    }

    .shop-product-slider-image + .product-list .shop-product-box {
        width: 50% !important;
    }

    .shop-product-box {
        width: 25% !important;
    }

    .mainsearch {
        max-width: 100%;
    }

    .header-top {
        display: none;
    }

    .header-mid-right {
        justify-content: flex-end;
    }

    .column-title {
        font-size: 20px;
    }

    .toggle-title {
        font-size: 16px;
    }

    .toggle-row .btn-circle {
        width: 40px;
        height: 40px;
    }

    .toggle-row .btn-lg {
        font-size: 12px;
        min-height: 40px;
    }

    .aside {
        margin-bottom: 0;
        bottom: 0;
        position: fixed;
        background-color: #fff;
        left: -330px;
        z-index: 101;
        transition: left, 300ms;
        top: 70px;
        margin-top: 0;
    }

    .asidedPage-wrapper .page-header {
        padding-left: 0;
    }

    .aside-close {
        display: block;
    }

    .aside-title {
        padding-left: var(--container-padding);
        padding-top: 10px;
    }

    .aside-button {
        display: block;
    }

    .aside-shadow.active {
        opacity: 1;
        pointer-events: auto;
    }

    .aside-shadow {
        pointer-events: none;
        opacity: 0;
        transition: opacity, 300ms;
        display: block;
        z-index: 99;
    }

    .aside.active {
        left: 0;
    }

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


    .footer-cols {
        display: flex;
        flex-direction: column;
    }

    .contact-row {
        font-size: 18px;
    }

    .agency-bottom {
        padding: var(--space-40) var(--space-25);
    }

    .agency-title {
        font-size: 17px;
    }

    .agency-bottom .btn-wrapper {
        display: none;
    }

    .mainCategories-item {
        width: 20%;
        padding: 4px;
    }

    .mainCategories-list {
        margin: -4px;
    }

    .footer-col, .footer-col:nth-child(1) {
        width: 100% !important;
    }

    .footer-col-content {
        padding-bottom: 30px;
        text-align: center;
    }

    .footer-col-title {
        width: 100%;
        margin-bottom: 15px;
        position: relative;
        border-bottom: 1px solid var(--color-primary);
        padding-bottom: 10px;
        text-align: center;
    }

    .footer-logotypes {
        justify-content: center;
    }

    .footer-logotype {
        width: 120px;
    }

    .footer-col-title.active:after {
        transform: translateY(-50%) rotate(90deg) scaleX(-1);
    }

    .footer-col-title:after {
        transition: transform, 500ms;
        position: absolute;
        right: var(--container-padding);
        top: calc(50% - 5px);
        transform: translateY(-50%) rotate(90deg);
        color: var(--color-primary);
        font-size: 16px;
        font-family: FontAwesome;
        content: "\f054";
    }


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

    .footer-top-info-link-icon {
        max-width: 40px;
    }

    .footer-top-info-link-inner {
        font-size: 14px;
    }

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

    .file-box-title {
        font-size: 15px;
    }

    header {
        padding: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .aboutUs-row {
        gap: var(--space-60);
        flex-direction: column-reverse !important;
    }

    .aboutUs-list:not(.position-switched) .aboutUs-img {
        width: 80%;
    }

    .aboutUs-img {
        width: 80%;
        display: flex;
        justify-content: center;
    }

    #content {
        padding-top: 70px;
    }

    #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;
    }

    .mainsearch.rwdPanel .dropdown-menu {
        position: static !important;
        width: 100%;
        box-shadow: 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);
        flex-grow: 0;
    }

    .mainsearch.rwdPanel .mainsearch-submit {
        height: 46px;
    }

    .mainsearch.rwdPanel input,
    .mainsearch.rwdPanel .mainsearch-submit {
        border: none;
    }

    .mainsearch.rwdPanel .mainsearch-submit {
        display: flex;
        width: 46px;
        height: 46px;
        align-items: center;
        justify-content: center;
    }

    .mainsearch.rwdPanel .mainsearch-search {
        background-color: var(--color-primary);
    }

    .mainsearch .form-control {
        border-radius: 0;
    }

    .mainsearch-search {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-col:last-child {
        margin-top: var(--space-25);
    }

    .footer-contact {
        text-align: center;
        flex-direction: column;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .breadcrumb-container {
        margin: 10px 0;
    }

    .shop-product .product-column {
        padding: 90px var(--space-50) calc(var(--space-50) + var(--space-25));
    }

    .rwdMenu .icon-wrapper {
        margin-right: 10px;
    }

}

@media screen and (max-width: 1000px) {
    .product-photo {
        max-width: 500px;
        margin: 0 auto;
    }

    .info-column {
        width: 100%;
        border: none;
    }

    .product-column-content {
        margin-top: var(--space-60);
    }

    .toggle-rows {
        margin-top: var(--space-60);
    }

    .quantity-column, .shipment-column {
        display: none;
    }

    .mainCategories-item {
        width: 25%;
    }

    .file-box {
        width: 33.333% !important;
    }

    .footer-top-info-links {
        justify-content: center;
    }

    .footer-top-info-link {
        width: 33.333%;
    }

    .content-mobile .product-column-content {
        position: relative;
        z-index: 1;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .content-mobile .product-column-content:before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: calc(-1 * var(--container-padding));
        right: calc(-1 * var(--container-padding));
        z-index: -1;
        background-color: #F5F5F5;
    }

    .add-to-basket-wrapper {
        justify-content: flex-end;
    }

    .shop-product .product-column {
        padding: 65px var(--space-50) calc(var(--space-50) + var(--space-25));
    }
}

@media screen and (max-width: 900px) {
    .product-view-col-instructions-links {
        grid-template-columns: 1fr 1fr;
    }

    .mainImages-inner {
        gap: calc(2 * var(--space-50));
    }

    .mainImages-item {
        flex-direction: column !important;
        align-items: center;
        gap: var(--space-50);
    }

    .mainImages-item-image {
        width: 100%;
        max-width: 500px;
    }

    .mainImages-item-content {
        width: 100%;
    }

    .btn-arrow {
        width: 40px;
        height: 40px;
    }

    .section-header-right {
        gap: var(--space-25);
    }

    .product-container .product-title {
        font-size: 13px;
    }

    .product-image-wrapper::before {
        padding-top: 60%;
    }

    .contact-row {
        font-size: 16px;
    }

    .form-grid {
        display: block;
    }

    .agency-form-title {
        padding: 0;
        text-align: center;
        margin-bottom: var(--space-60);
    }

    .contact-row-content {
        width: 70%;
    }

    .contact-row-content .icon-wrapper {
        width: 42px;
        height: 42px;
    }

    .footer-bottom-text {
        font-size: 13px;
    }

    .agency-title {
        font-size: 15px;
    }

    .agency-item {
        padding: 5px;
    }

    .agency-list {
        margin: -5px;
    }

    .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;
    }

    .footer-bar-links:before {
        display: none;
    }

    .product-label {
        font-size: 13px;
    }

}

@media screen and (max-width: 767px) {
    .product-param-item:nth-child(odd) {
        background-color: #ededed;
    }

    .product-params-list {
        grid-template-columns: 1fr;
    }

    .shop-product-box {
        width: 33.3333% !important;
    }

    .file-box {
        width: 50% !important;
    }

    .contact-row {
        font-size: 14px;
        padding: var(--space-25) 10px;
    }

    .contact-row-content .mail {
        padding-right: 5px;
    }

    .contact-row-content a {
        gap: 5px;
    }

    .contact-row-content .phone {
        width: 46%;
    }

    .agency-item {
        width: 33.333%;
    }

    .btn-circle {
        width: 36px;
        height: 36px;
    }

    .footer-top-info-link {
        width: 50%;
    }

    .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;
    }
}

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

@media screen and (max-width: 639px) {
    .product-view-col-instructions-links {
        grid-template-columns: 1fr;
    }

    .product-image-list-wrapper {
        flex-direction: column;
        gap: calc(2 * var(--space-25));
    }

    .media-inner {
        flex-direction: column;
    }

    .media-body {
        width: 100%;
    }
.media-left{
    padding: 0;
}
    .shop-product-slider-image {
        width: 100%;
        padding-right: 0;
    }

    .shop-product-slider-image + .product-list {
        width: calc(100% + (2 * var(--space-25)));
    }

    .section-header:has(.section-header-right) {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--space-25);
    }

    .section-header:has(.section-header-right):before {
        content: none;
    }

    .mainCategories-item {
        width: 33.333%;
    }

    .contact-row-content {
        width: unset;
        margin-left: auto;
    }

    .contact-row-content .caption {
        display: none;
    }

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

    .header-main .user-nav {
        padding-right: 5px;
    }

    .top-box-basket-container {
        margin-right: 5px;
    }


    .invoice-address-fieldset .col-xs-4 {
        width: 50%;
    }

    .invoice-address-fieldset .checkboxradio-container .row {
        gap: 15px 0;
    }

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

    .article-image {
        margin-right: 0;
        margin-top: 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) {
    .mainContact-person-link .icon {
        width: 32px;
    }

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

    .footer-bottom-text {
        font-size: 12px;
    }

    .agency-bottom {
        padding: var(--space-25);
    }

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

    .shop-product-box {
        width: 50% !important;
    }

    .invoice-address-fieldset .form-element-label-wrapper .form-element-name {
        display: block;
    }

    .invoice-address-fieldset .form-element-copy-btn {
        margin-top: 10px;
    }
}

@media screen and (max-width: 480px) {
    .mainContact-person {
        grid-template-columns: 1fr;
        margin: 0 auto;
    }

    .mainContact-person-content {
        align-items: center;
        text-align: center;
    }

    .modal-footer > .btn {
        width: 100%;
    }

    .aside {
        width: 100%;
        left: -100%;
    }


    .agency-item {
        width: 50%;
    }

    .contact-left .wrapper {
        gap: 5px;
    }

    .contact-left ul {
        align-items: flex-start;
        text-align: left;
        justify-content: flex-start;
    }

    .contact-left ul li, .contact-left .text {
        text-align: left;
        font-size: 15px;

    }

    .file-box {
        width: min(100%, 320px) !important;
    }

    .modal-footer .btn + .btn {
        margin-left: 0;
        margin-top: 5px;
    }

    .footer-top-info-link {
        width: 100%;
    }

    .footer-top-info-link-inner {
        justify-content: flex-start;
    }

    .footer-top-info-link-inner .icon {
        width: 45px;
        flex-shrink: 0;
    }
}

@media screen and (max-width: 420px) {
    .product-view-instructions-collection-item {
        flex-wrap: wrap;
    }

    .product-view-instructions-collection-item > * {
        width: 100%;
        max-width: 100%;
    }

    .agency-bottom {
        padding: var(--space-25) 10px;
    }

    .contact-row {
        font-size: 13px;
    }

    .agency-title {
        font-size: 13px;
    }

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

    .invoice-address-fieldset .col-xs-4 {
        width: 100%;
    }

    .mainCategories-item {
        width: 50%;
    }

    .product-container .product-title {
        font-size: 12px;
    }

}

@media screen and (max-width: 380px) {
    .aboutUs-img {
        width: 100%;
    }
}

@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: 20px;
        --font-24: 16px;
    }
}