/**
 * RWD PANEL
 */

@media screen and (min-width: 1140px) {
    .mainsearch-search {
        margin-right: var(--space-25);
    }

    .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(150%);
        -webkit-transform: translateY(150%);
        -ms-transform: translateY(150%);
    }

    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: 11px 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;
    margin: 15px 15px 15px 0;
    font-size: 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: all 0.4s;
}

.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: #f00;
}

.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: 1670px) {
    .tile-content-title {
        font-size: 24px;
        max-width: 200px;
    }

    .tiles-dashboard .tile-item:nth-child(odd) .tile-left {
        margin-right: calc(-1 * var(--container-padding)) !important;
        margin-left: 0 !important;
    }

    .tiles .tile-item:nth-child(even) .tile-left {
        margin-right: calc(-1 * var(--container-padding));
        margin-left: 0;
    }

    .tiles-dashboard .tile-item:nth-child(even) .tile-left {
        margin-left: calc(-1 * var(--container-padding)) !important;
        margin-right: 0 !important;
    }

    .tiles-dashboard.tiles-dashboard .tile-left {
        margin-left: calc(-1 * var(--container-padding));
        width: calc(50% + var(--container-padding)) !important;
    }

    .tile-left {
        margin-left: calc(-1 * var(--container-padding));
        width: calc(50% + var(--container-padding));
    }

    .product-right .slide-image {
        max-width: 300px;
    }

    .product-slider-inner {
        margin-right: 100px;
    }
}

@media screen and (max-width: 1600px) {
    .content-right .title-big {
        font-size: 136px;

    }

    .logo {
        padding-left: 160px;
    }

    .header-deliver-left {
        margin-right: 18px;
    }

    .header-delivery {
        padding-left: 16px;
    }

    .header-deliver-left .caption {
        line-height: 1.1;
        font-size: 14px;
    }

    .header-b2b .logo-big img {
        width: 120px !important;
    }

    .header-bottom-b2b #main-menu li > a {
        font-weight: 600;
        font-size: 14px;
    }

    .header-bottom-b2b #main-menu > ul > li > a{
        max-width: 170px;
    }

    #main-menu > ul > li > ul > li > a{
        max-width: 180px;
    }

    .header-bottom-b2b #main-menu li {
        padding: 6px;
    }

    .header-bottom-b2b #main-menu {
        margin: -6px;
    }

    .header-delivery {
        margin-right: 25px;
    }

    .top-box-basket-container {
        margin-left: 25px;
    }

    .shop-product-list {
        padding-bottom: 30px;
    }

    #main-menu > ul > li > ul > li > ul > li a{
        font-weight: 600;
    }
}

@media screen and (max-width: 1540px) {
    .tile-left-content {
        padding: var(--space-60) var(--space-40);
    }

    .tile-content-title {
        margin-left: 15px;
    }
}

@media screen and (max-width: 1440px) {
    .product-right .slide-image {
        max-width: 240px;
    }

    .content-right img {
        width: 350px;
    }

    .content-right .title-big {
        font-size: 124px;
        line-height: 0.96774;
    }

    .logo {
        padding-left: 140px;
    }


    .header-b2b .logo-big img {
        width: 110px !important;
    }


    #main-menu ul li {
        padding-left: var(--space-25);
    }

    .description-box-item {
        width: 33.3333%;
    }

    .header-bottom-b2b #main-menu li > a {
        font-size: 13px;
        letter-spacing: -0.35px;
    }

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

    .header-bottom-b2b #main-menu li {
        padding: 3px;
    }

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

    .header-bottom-b2b #main-menu {
        margin: -3px;
    }

    .header-delivery {
        margin-right: 0;
    }

    .top-box-basket-container {
        margin-left: 0;
    }

    .europe-top .title-big {
        font-size: 100px;
        line-height: 1;
    }

    .news-starred{
        top: 0;
        left: -25px;
    }

}

@media screen and (max-width: 1366px) {
    .tile-content-links {
        padding-top: var(--space-25);
    }

    .tile-left-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #main-menu ul li {
        padding-left: 12px;
    }

    .footer-floating-img {
        right: 24vw;
    }

    .product-list-item {
        padding: 10px;
    }

    section.contact .contact-right {
        padding-left: calc(2 * var(--space-50));
    }

    section.contact .contact-left {
        padding-right: calc(2 * var(--space-50));
    }

    .image-floating-3 {
        left: -40px;
    }

    .btn-row {
        margin: -5px;
    }

    .btn-row .btn {
        margin: 5px;
    }

    .content-right .title-big {
        font-size: 114px;
    }

    .caption.caption-user {
        white-space: initial;
    }

    .header-bottom-b2b #main-menu > ul > li > a{
        max-width: 150px;
    }

    #main-menu > ul > li > ul > li > a{
        max-width: 150px;
    }
}

@media screen and (max-width: 1280px) {
    .logo-min img {
        max-width: 60px;
    }

    .b2b-icons-item {
        width: 33.33%;
        padding: 15px;
    }

    .dots-row {
        flex-wrap: wrap;
    }

    .dot-item {
        width: 220px;
        margin: var(--space-25);
    }

    .content-right .title-big {
        font-size: 96px;
    }

    .logo {
        padding-left: 110px;
    }

    .logo a img {
        width: 100px;
    }

    .header-b2b .logo-big img {
        width: 85px !important;
    }

    header.sticky .logo a img {
        width: 90px;
    }

    .content-right img {
        width: 300px;
    }

    .product-list-b2b-price {
        width: 9%;
    }

    .product-list-b2b-tax-rate {
        width: 8%;
    }

    .product-list-b2b-name {
        width: 24%;
    }

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

    .header-bottom-right .btn-link {
        padding: 8px 12px;
    }

    header .shop-itemsTotalPrice-gross, header .shop-itemsTotalPrice-net {
        font-size: 17px;
    }

    .news-date{
        margin-bottom: 5px;
    }

    .news-title{
        margin-bottom: 5px;
    }

    .news-page .news-image{
        margin-right: var(--space-25);
    }

    .news-page .news-content{
        margin-left: var(--space-25);
    }

    .news-starred {
        left: 0px;
    }

}

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

    .rwd-only {
        display: none !important;
    }

    .mainsearch {
        top: 0 !important;
    }

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

@media screen and (max-width: 1195px) {
    .product-page-top-inner .btn-row {
        flex-direction: column;
    }

    .product-page-top-inner .btn-row .btn + .btn {
        margin-top: 5px !important;
    }
}

@media screen and (max-width: 1139px) {
    .dashboard-left-background {
        display: none;
    }

    .dashboard-section-inner {
        flex-direction: column;

    }

    .dashboard-left, .dashboard-right {
        width: 100%;
        max-width: unset;
    }

    .dashboard-right {
        padding-top: 0;
    }

    .product-page-right .btn-row .btn {
        width: unset;
        max-width: 300px;
    }

    .rwdMenu .social-row {
        padding-top: 0;
    }

    .rwdMenu .social-row .box-caption {
        display: none;
    }

    .rwdMenu .social-row .social-item {
        border: none;
    }

    .rwdMenu .social-row .social-item .social-icon {
        border: 2px solid var(--color-secondary);
    }

    .rwdMenu .social-row .social-list ul {
        display: flex;
    }

    .description-box-item {
        width: 50%;
    }

    .mainsearch .alert-block .error {
        color: #fff !important;
    }

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

    .logo-min {
        margin-top: 0;
    }

    .img-box {
        width: 100%;
    }

    .images-outer {
        display: none;
    }

    .product-dots-wrapper {
        display: none;
    }

    .mainsearch-submit .icon-loupe {
        color: #fff;
    }

    .icon-loupe {
        color: #000;
    }

    .footer-col-2 .footer-col-content .address {
        text-align: center;
    }

    .content-right .title-big {
        padding-left: 80px;
    }

    .product-slider .bg-absolute {
        display: none;
    }

    .floating-leaf {
        display: none;
    }

    #content {
        padding-top: 90px;
    }

    .footer-floating-img {
        display: none;
    }

    .product-bottom {
        height: unset;
        overflow: visible;
    }

    .product-bottom-inner {
        position: unset;
    }

    .product-list-item {
        width: 33.33%;
        padding: 5px;
    }

    .europe-top .title-big {
        font-size: 90px;
    }

    section.certificate .certificate-left,
    section.certificate .certificate-right {
        width: 100%;
        padding: 0;
        padding-bottom: var(--space-60);
        border: none;
    }

    .image-floating-3 {
        display: none;
    }

    .logo a img {
        width: 80px;
        padding: 5px 0;
    }

    .logo-min {
        padding-top: 15px;
    }

    .header-bottom-right,
    .logo {
        padding: 0;
    }

    .logo-wrapper {
        display: flex;
    }

    .logo-big {
        position: unset;
    }

    header {
        padding: 0;
    }

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

    .footer-col-2 .footer-col-content {
        max-width: unset;
    }

    .footer-content-wrapper {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .footer-col-1, .footer-col-2, .footer-col-3, .footer-col-4 {
        width: 100%;
    }

    .footer-col-title i {
        display: block;
        padding-left: 25px;
        transition: all 0.4s;
    }

    .footer-col-title.active i {
        -webkit-transform: scaleY(-1);
        -moz-transform: scaleY(-1);
        -ms-transform: scaleY(-1);
        -o-transform: scaleY(-1);
        transform: scaleY(-1);
    }

    .footer-col-title {
        padding: var(--space-25) 0 0 0;
        position: relative;
    }

    .btn-row .btn + .btn {
        margin-top: 0;
    }

    section.product-slider .slide-item {
        height: unset;
        min-height: 400px;
    }

    .img-box {
        position: unset;
    }

    .product-slider-left {
        position: unset;
        min-height: unset;
    }

    .product-slider-inner {
        margin: 0;
        width: 100%;
    }

    section.product-slider .bg-absolut {
        display: none;
    }

    section.product-slider {
        flex-direction: column;
    }

    .product-slider-right {
        width: 100%;
        justify-content: center;
    }

    .product-left,
    .product-right {
        width: 100%;
    }

    .social-icon a {
        font-size: 10px;
    }

    .content-right img {
        width: 270px;
    }

    .header-right {
        display: flex;
    }

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

    .footer-cols {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

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

    .shop-product-variant-table-row img {
        max-width: 60px !important;
    }

    .container {
        width: 100%;
    }

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

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

    .lang .langs-menu-long {
        display: block;
        margin-left: 5px;
    }

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

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

    .product-list-b2b-variants {
        flex-direction: column;
        align-items: flex-start !important;
        padding: 8px 0;
        padding-left: 8px !important;
    }

    .product-bottom-content {
        height: initial;
    }

    .product-nav-slider-item-inner img {
        max-height: 125px;
    }

    .remove-column label {
        display: inline-block;
    }

    .remove-column .btn {
        margin-bottom: 6px;
    }

    .header-delivery {
        margin: 0 12px;
        margin-top: 6px;
    }

    .rwd-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .header-bottom-b2b {
        display: none;
    }

    .header-item-wrapper.top-box-container {
        display: none;
    }

    .main-menu-button {
        margin: 0;
    }

    .user-logged {
        padding-bottom: 0;
    }

    .header-b2b {
        align-items: center;
    }

    .header-b2b .logo-min img {
        max-width: 44px;
    }

    .page-b2b #content {
        padding-top: 93px;
    }

    .header-bottom-right .btn.btn-circle {
        display: none;
    }

    .header-b2b .logo {
        padding-left: 0;
    }

    .footer-col-4 .footer-col-content {
        padding-top: 0;
        width: 150px;
        height: 150px;
        padding-bottom: var(--space-25);
    }

    .rwdMenu .btn-favs {
        padding: 6px 12px;
    }

    .page-heading-text {
        padding-left: 0;
        padding-right: 0;
    }

    .rwdMenu .btn.btn-link{
        display: flex !important;
        justify-content: flex-start;
    }

    .rwdMenu .btn.btn-link .icon{
        margin-left: 0 !important;
    }

    header .box .social-icon{
        width: 52px;
        height: 52px;
    }

    header .social-list > ul > li{
        padding: 0;
    }

    header .social-list > ul > li a{
        padding: 0 5px !important;
    }

    .rwdPanel .social-list{
        margin-left: var(--container-padding);
    }

    .rwdPanel .box.box-2 .social-list{
        margin-left: 10px;
    }

    .social-row .box + .box {
        margin-left:0;
    }

    .rwdMenu .not-desktop li:last-of-type a .icon{
        margin-left: -4px !important;
    }

    .header-top-right .btn-link{
        padding-right: 25px;
    }

    .header-top-right .btn-link .icon {
        width: 29px;
        height: 29px;
    }

    .rwdMenu .btn-link .caption{
        font-size: 16px;
        font-weight: 400;
    }

    .alert-container > .alert:first-child {
        margin-top: 18px;
    }

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

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

    .b2b-login{
        display: inline-flex !important;
    }

    .product-top{
        flex-grow: initial;
    }
    .product-bottom{
        flex-grow: 1;
    }

    .product-bottom-inner{
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    /*ASIDE*/
    .asidedPage-content {
        width: 100%;
        padding-left: 0;
    }
    .aside {
        padding-top: 60px;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 50px;
        position: fixed;
        transition: transform 0.4s, top 0.4s;
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
        pointer-events: none;
        width: 280px;
        --side-space: 15px;
        background-color: #fff;
        overflow-y: auto;
    }
    .aside-bg {
        display: none;
    }
    .aside-shadow {
        display: block;
        opacity: 0;
        pointer-events: none;
    }
    .aside-button {
        display: block;
    }
    .aside-close {
        display: block;
        color: var(--color-primary);
    }

    .aside-header{
        display: block;
    }

    .aside-categories{
        margin-bottom: 35px;
    }
}

@media screen and (max-width: 1020px) {
    .content-right .title-big {
        padding-left: 50px;
    }
}

@media screen and (max-width: 960px) {
    .tiles-dashboard.tiles-dashboard.tiles-dashboard .tile-left {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .tiles-dashboard .tile-right {
        padding: var(--space-40) 0 !important;
        margin: var(--space-40) 0;
    }

    /*.tile-item .title{*/
    /*font-size: var(--font-30);*/
    /*}*/
    .tiles .tile-item:nth-child(even) .tile-right {
        padding-right: 0;
    }

    .login-box + .login-box {
        margin-top: 0px;
    }

    .b2b-wrapper .login-info {
        padding-top: 0;
    }

    .section-columns .column-item-wrapper {
        flex-direction: column;
    }

    .column-item {
        width: 100%;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .column-item + .column-item {
        padding-top: var(--space-40);
    }

    .column-item:nth-child(even):before {
        display: none;
    }

    .product-page-top-inner .btn-row {
        flex-direction: row;
    }

    .product-page-top-inner .btn-row .btn + .btn {
        margin-top: 0px !important;
    }

    .product-page-top-inner {
        flex-direction: column;
    }

    .product-page-right, .product-page-left {
        width: 100%;
    }

    .product-page-left,
    .product-page-right {
        padding: 0;
    }

    .b2b-right:before {
        display: none;
    }

    .b2b-description-bottom {
        padding-top: 40px;
    }

    .d-flex {
        flex-direction: row;
        align-items: center;
    }

    .b2b-wrapper {
        flex-direction: column-reverse;
    }

    .b2b-left,
    .b2b-right {
        width: 100%;
        padding: 0;
    }

    .europe-top .title-big:not(:first-line) {
        padding-left: 100px;
    }

    .europe-top .title-big {
        font-size: 85px;
    }

    section.tiles .tile-item:nth-child(2n) .tile-right {
        padding: 0;
    }

    .content-left,
    .content-right {
        padding-top: var(--space-25);
    }

    .about-us-content {
        flex-direction: column;
    }

    .content-left,
    .content-right {
        width: 100%;
    }

    .content-left-inner {
        max-width: unset;
    }

    /*.box .social-icon {*/
    /*width: 44px;*/
    /*height: 44px;*/
    /*}*/
    .tile-item {
        flex-direction: column !important;
        padding: 0 0 var(--space-40) 0;
    }

    .tile-left,
    .tile-right {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .content-right .title-big {
        display: block;
        margin-bottom: 0;
        font-size: 70px;
    }

    .content-right img {
        display: none;
    }

    .content-left {
        padding-bottom: 22px;
    }

    .shop-product-photos {
        margin-top: 15px;
    }

    .add-to-favs {
        float: none !important;
    }

    .shop-product-size-table .table-responsive {
        overflow-x: auto;
        border: none;
    }

    .shop-product-photos .product-tag-wrapper {
        position: static;
        justify-content: center;
        margin-bottom: 10px;
    }

}

@media screen and (max-width: 900px) {
    .section-brand-info {
        justify-content: center;
    }

    .section-brand-info .brand-info-item {
        width: 50%;
    }

    .section-imageTiles .image-tile {
        width: 50%;
    }

    .job-form-wrapper {
        max-width: unset;
        margin: var(--space-40);
    }

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

    .box-item {
        width: 100%;
    }

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

    .product-list-b2b-name .product-name {
        font-size: 14px;
    }

    .product-list-b2b-item > div {
        font-size: 14px;
    }

    .box-item-inner {
        min-height: initial;
    }

    section.vision .box-item-inner {
        min-height: initial;
    }

    .box-text {
        line-height: 26px;
    }

    section.vision .box-text {
        line-height: 26px;
    }

    .userpanel-container .form-search .form-control-text{
        width: initial;
    }
}

@media screen and (max-width: 800px) {
    .page-dashboard .category-item {
        width: 50%;
    }

    section.contact {
        flex-direction: column;
    }

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

    section.contact .contact-right,
    section.contact .contact-left {
        width: 100%;
        padding: 0;
        border: none;
    }

    section.contact .contact-right {
        padding-top: var(--space-50);
    }

    .slide-content {
        padding-left: 0;
    }

    .slide-item-inner {
        flex-direction: column;
    }

    .not-rwd {
        display: none !important;
    }

    .rwdMenu .btn-link {
        display: block !important;
    }

    .rwdMenu .not-rwd.btn-favs {
        display: flex !important;
        justify-content: flex-start;
    }
}

@media screen and (max-width: 767px) {
    .filters-n-shorts-left .form-element-container .form-control {
        margin-left: unset;
    }

    .heading-right.sort-right .form-element-container {
        white-space: nowrap;
        display: flex;
        flex-direction: column;
        align-items: flex-start;

    }

    .filters-n-shorts-left .form-element-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .filters-n-shorts-left .form-element-container .form-element-name {
        min-width: 130px;
        margin-bottom: 10px;
    }

    .heading-right.sort-right .form-element-text {
        margin-bottom: 10px;

    }

    .product-description-list-item .text table th {
        width: 300px;
    }

    .about-us-content .about-us-text-wrapper::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
    }

    .about-us-content .about-us-text-wrapper::-webkit-scrollbar-thumb {
        background: var(--color-secondary);
    }

    .about-us-content .about-us-text-wrapper::-webkit-scrollbar {
        width: 3px;

    }

    .about-us-content .about-us-text-wrapper {
        max-height: 200px;
        overflow-y: auto;
    }

    .about-us-content .about-us-title {
        font-size: 24px;
    }

    .about-us-content .content-right {
        display: none;
    }

    .description-box-item {
        width: 100%;
    }

    .content-right .caption {
        padding-left: 0;
    }

    .europe-top .title-big span {
        padding-left: 90px;
    }

    .europe-top .title-big {
        font-size: 75px;
    }

    @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-tile {
        flex-direction: column-reverse;
    }

    .product-tile:nth-child(even) {
        flex-direction: column-reverse;
    }

    .product-tile-left, .product-tile-right {
        width: 100%;
    }

    .product-tile-right img {
        margin: 0 auto;
    }

    .content-right .title-big {
        font-size: 50px;
        padding-top: 15px;
    }

    .product-list-b2b-item {
        flex-wrap: wrap;
    }

    .product-list-b2b-image {
        width: 18%;
        border: none;
    }

    .product-list-b2b-tax-rate {
        width: 15%;
    }

    .product-list-b2b-price {
        width: 15%;
    }

    .product-list-b2b-name {
        width: 52%;
    }

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

    .product-list-b2b-variants {
        flex-direction: row;
        align-items: center !important;
        padding-right: 12px;
    }

    .product-list-b2b-variants .product-weights-variants {
        padding-right: 8px;
    }

    .product-list-b2b-header .product-list-b2b-variants {
        display: none !important;
    }

    .product-list-b2b-name {
        width: 42%;
    }

    .product-list-b2b-price {
        width: 20%;
    }

    .product-list-b2b-tax-rate {
        width: 20%;
    }

    .product-description-list-title {
        padding-left: 0;
    }

    .product-description-list-item {
        margin-top: 0;
    }

    section.product-page-bottom {
        padding-top: 0;
    }

    .product-description-list-title .title-right {
        padding-right: 0;
        margin-right: -3px;
    }

    section.product-page-top {
        padding-top: 0;
    }

    section.target .section-heading {
        height: 380px;
    }

    .see-more-slider {
        position: relative;
        overflow: hidden;
        max-height: 0px;
        transition: all 0.5s;
    }

    .tags-wrapper{
        padding-top: 30px;
    }

    .toggle-more{
        display: flex;
    }

    .news-content-wrapper{
        display: block;
        padding: 10px 0;
    }
    .news-page .news-content{
        padding-left: 0;
        margin-left: 0;
        border: none;
    }

    .news-starred {
        position: static;
        display: inline-flex;
        margin-bottom: 10px;
    }

}

@media screen and (min-width: 767px) {
    .see-more-slider{
        max-height: initial !important;
    }
}

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

@media screen and (max-width: 610px) {
    .product-page-top-inner .btn-row {
        flex-direction: column;
        align-items: center;

    }

    .product-page-top-inner .btn-row .btn + .btn {
        margin-top: 5px !important;
        margin-left: 0;
    }
}

@media screen and (max-width: 639px) {
    .section-images .image-row {
        justify-content: center;
    }

    .section-images .image-row .image-item {
        width: 50%;
    }

    .section-imageTiles .image-tile {
        width: 100%;
    }

    .d-flex {
        flex-direction: column;
        align-items: unset;
    }

    .file-item-wrapper {
        width: 50%;
    }

    .btn-row .btn + .btn {
        margin-top: 5px;
    }

    .content-right .title-big {
        font-size: 46px;
    }

    .slick-dots li button {
        width: 35px;
        height: 35px;
        padding: 0;
    }

    section.main-slider .slick-dots {
        bottom: 10px;
    }

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

    .shop-product-variant-table-row img {
        max-width: 60px !important;
    }

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

    .about-us-content .content-right img {
        display: none;
    }

    .about-us-content .box .social-icon {
        width: 48px;
        height: 48px;
    }

    .about-us-content .social-icon svg {
        width: 36px;
        height: 36px;
    }

    .about-us-bg img {
        object-position: 68% 50%;
    }

    .about-us-content .box {
        width: 60%;
    }

    .about-us-content .box-2 {
        width: 40%;
    }

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

    .dashboard-table .table-responsive-wrapper::after,
    .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;
    }

    .dashboard-table .table-responsive-wrapper::before,
    .text .table-responsive-wrapper::before {
        pointer-events: none;
        content: "";
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: -50px;
        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;
    }

    .dashboard-table {
        width: 100%;
        min-width: initial;
    }

    .tiles-dashboard .subtitle {
        text-align: center;
    }

    .dashboard-table table {
        min-width: initial !important;
    }

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

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

    .dashboard-table table,
    .text table {
        margin: 0;
        min-width: 640px;
    }

    .shop-add-to-basket-variant-set .shop-product-size-table table {
        min-width: 380px;
    }

    header .shop-itemsTotalPrice-gross, header .shop-itemsTotalPrice-net {
        font-size: 15px;
    }

    .rwdMenu .shop-itemsTotalWeight{
        font-size: 15px;
    }

    header .shop-itemsTotalWeight {
        font-size: 13px;
    }

    .rwdButton {
        margin-right: 10px;
    }

    .basket-box-btn {
        margin-right: 10px;
    }

    .basket-box-btn .caption {
        padding-left: 7px;
        padding-right: 0;
        min-width: 85px;
    }

    #logistic-box {
        width: 96%;
    }

    .article-content{
        display: block;
    }

    .order-top{
        flex-direction: column;
        align-items: flex-start;
    }

    .order-top.place-right{
        align-items: flex-end;
    }


    .userpanel-container .form-search #search-form {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media screen and (max-width: 600px) {
    header .logo-min {
        display: none;
    }
}

@media screen and (max-width: 560px) {
    .filters-n-shorts {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-description-list-item .text table th {
        width: 250px;
    }

    .page-dashboard .category-item {
        width: 100%;
    }

    .section-brand-info .brand-info-item {
        width: 100%;
    }

    .production-dot,
    .production-list:before {
        display: none;
    }

    .recomended-slider-heading .title {
        padding: 0 40px;
    }

    .production-list-item .production-title,
    .production-list-item .production-text,
    .production-list-item:nth-child(2n) .production-title,
    .production-list-item:nth-child(2n) .production-text {
        text-align: center;
    }

    .recomended-slider-heading .slider-arrows-wrapper {
        left: 0;
        bottom: 50%;
        -webkit-transform: translateY(50%);
        -moz-transform: translateY(50%);
        -ms-transform: translateY(50%);
        -o-transform: translateY(50%);
        transform: translateY(50%);
        display: flex;
        justify-content: space-between;
    }

    /*.product-list-item {*/
    /*width: 100%;*/
    /*}*/
    .product-text {
        display: none;
    }

    .europe-top {
        flex-direction: column;
    }

    .europe-top .left, .europe-top .right {
        width: 100%;
    }

    .europe-top .title-big span {
        padding-left: 0px;
    }

    .europe-top .title-big {
        text-align: center;
        font-size: 55px;
        letter-spacing: -2px;
        margin-top: 15px;
    }

    .europe-top .title-big > div {
        margin-left: 0 !important;
    }

    .production-list-item .right {
        width: 100%;
        padding: 10px 0 !important;
    }

    .production-list-item {
        flex-direction: column !important;
    }

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

    .content-right img {
        align-self: center;
    }

    .content-right .caption {
        padding: 0;
    }

    .content-right .title-big {
        margin-bottom: 0;
        padding: 0;
        padding-top: 10px;
        font-size: 42px;
    }

    .rwdButton {
        margin: 15px 5px 15px 0;
    }

    .main-menu-button {
        margin: 18px 0 18px 8px;
    }

    .text {
        word-wrap: break-word;
    }

    .about-us-content .box .social-icon {
        width: 40px;
        height: 40px;
    }

    .about-us-content .social-icon svg {
        width: 32px;
        height: 32px;
    }

    .product-page-bottom-heading .section-title {
        line-height: 36px;
        font-size: 20px;
    }

    .dot-item {
        width: 170px;
    }

    .product-list-b2b-variants {
        display: block !important;
    }

    .product-list-b2b-more {
        margin-top: 6px;
        margin-bottom: 6px;
        display: flex;
        justify-content: center;
    }

    .product-list-b2b-variants .product-weights-variants {
        padding-right: 0;
        justify-content: center !important;
    }

    .product-list-b2b-variants .variant-item-more {
        margin-left: initial;
    }

    .page-heading-title {
        font-size: 20px;
    }

    .tag {
        font-size: 13px;
        padding: 0 10px;
    }

    .filters-n-shorts .asidedPage-aside-section {
        width: 100%;
    }

    .filters-n-shorts .heading-right {
        width: 100%;
    }

    .filters-n-shorts-left .form-element.form-element-text {
        width: 100%;
    }

    .filters-n-shorts .form-element-container .form-control {
        width: 100%;
    }

    .filters-n-shorts .heading-right .form-element {
        width: 100%;
    }

    .filters-n-shorts .heading-right.sort-right form {
        width: 100%;
    }

    .filters-n-shorts .heading-right.sort-right .select2-container .select2-selection--single {
        width: 100% !important;
    }

    .filters-n-shorts .heading-right.sort-right .select2.select2-container.select2-container--default {
        width: 100% !important;
    }

    .filters-n-shorts .heading-right.sort-right .form-element-wrapper {
        width: 100%;
    }

    .footer-col-4 .footer-col-content {
        padding-top: 0;
        width: 130px;
        height: 130px;
    }

    section.target .section-heading {
        height: initial;
    }

    .section-heading .section-icon {
        width: 84px;
        height: 84px;
        margin-bottom: var(--space-40);
    }

    section.europe {
        background-size: cover;
    }

    .production-number {
        display: none;
    }

    section.history .production-text {
        max-width: initial;
        width: 100%;
    }

    .btn-book-span {
        display: block;
        word-break: break-all;
        white-space: break-spaces;;
    }

    .rwdMenu .shop-itemsTotalWeight{
        font-weight: 400;
        font-size: 17px;
    }

    section.main-slider{
        flex-wrap: wrap;
    }

    section.main-slider .slick-dots{
        position: static;
        width: 100%;
        justify-content: center;
        padding-bottom: 20px;
        padding-top: 20px;
    }

    .header-delivery .btn{
        padding: 0 10px;
        min-width: 88px;
    }

    .header-deliver-left {
        margin-right: 9px;
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .header-deliver-left .icon {
        width: 24px;
        height: 24px;
        margin-left: 8px;
    }

    .header-delivery{
        height: initial;
        min-height: 46px;
    }

    .dashboard-list .list-link{
        padding: 0 12px;
    }

    .list-link-inner{
        display: block;
        width: 100%;
    }

    .list-icon{
        flex-shrink: 0;
        margin: -8px;
        margin-right: 1px;
    }

    .dashboard-list .list-icon{
        margin: 0;
    }

    .list-link-inner{
        display: flex;
        padding: 5px 0;
    }


    .dashboard-list .icon-arrow {
        width: 40px;
        height: 40px;
        margin-right: -5px;
    }

    .header-deliver-left .list-icon{
        display: none;
    }

    .news-page .news-inner{
        display: block;
    }

    .news-page .news-image{
        margin-right: 0;
    }

    .news-page .news-image img{
        margin: 0 auto;
    }
    .news-page .news-content-wrapper{
        margin-left: var(--space-25);
    }

    .userpanel-container .form-search .form-elements {
        flex-direction: column;
        width: 100%;
    }

    .userpanel-container .form-search .form-control-text{
        width: 100%;
    }

}

@media screen and (min-width: 481px) {

}

@media screen and (max-width: 480px) {
    .product-description-list-item .text table th {
        width: 200px;
    }

    .tile-right {
        display: block;
    }

    .section-images .image-row .image-item {
        width: 100%;
    }

    .product-page-bottom-heading .section-title {
        text-align: center;
    }

    .b2b-icons-item {
        width: 50%;
    }

    .europe-top .title-big {
        font-size: 45px;
    }

    .product-list-b2b-image {
        padding: 5px;
    }

    .product-list-b2b-name {
        padding: 0 5px;
    }

    .product-list-b2b-item {
        padding: 6px 0;
    }

    .product-list-b2b-header > div {
        padding: 6px;
    }

    .shop-product-size-table thead tr th:nth-child(2) {
        text-align: left;
    }

    .header-deliver-left .icon{
        display: none;
    }

    .dashboard-list .list-link{
        font-size: 14px;
    }
}

@media screen and (max-width: 420px) {
    .product-list-item-inner {
        padding: 5px;
    }

    .product-description-list-title {
        font-weight: 600;
    }

    .tiles-dashboard .tile-left > img,
    .tiles-dashboard .tile-left {
        min-height: 250px;
    }

    .link-item {
        font-size: 16px;
    }

    .logo-min img {
        max-width: 45px;
    }

    .logo-min > * + * {
        margin-left: 5px;
    }

    .certificate-left .btn-row .btn {
        font-size: 13px;
        padding: 0 18px;
    }

    .file-item-wrapper {
        width: 100%;
    }

    .logo a img {
        width: 70px;
    }

    .header-b2b .logo-big img {
        width: 70px !important;
    }

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

    .content-right {
        display: none;
    }

    .dot-item {
        width: 140px;
    }

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

    .top-box-product .top-box-left {
        float: none;
        margin-bottom: 10px;
    }

    .top-box-product-image {
        margin: 0 auto;
    }

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

    .page-b2b #content {
        padding-top: 78px;
    }

    .europe-top .title-big {
        font-size: 38px;
    }

    .btn-md {
        padding: 0 12px;
    }

    .header-top-right .btn-link{
        padding-left: 0;
        padding-right: 15px;
    }

    #content {
        padding-top: 79px;
    }

    .news-inner{
        display: block;
    }

    .news-image {
        width: 100%;
    }

    .news-content{
        width: 100%;
    }

    .news-image img{
        margin: 0 auto;
    }
}

@media screen and (max-width: 375px) {
    .product-description-list-title {
        font-size: 14px;
    }

    .dot-item {
        width: 130px;
        margin: 10px;
        font-size: 13px;
    }

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

    .product-list-b2b-header .product-list-b2b-tax-rate,
    .product-list-b2b-header .product-list-b2b-price {
        display: none;
    }

    .product-list-b2b-image {
        width: 30%;
    }

    .product-list-b2b-name {
        width: 70%;
    }

    .product-list-b2b-price {
        width: 50%;
        padding: 10px 0;
    }

    .product-list-b2b-tax-rate {
        width: 50%;
        padding: 10px 0;
    }

    .product-list-b2b-header > div {
        padding: 10px;
    }

    .basket-box-btn .caption {
        display: none;
    }

    .header-top-right .btn-link .caption{
        display: none;
    }

}

@media screen and (max-width: 350px) {
    .rwdButton {
        width: 34px;
        height: 34px;
    }

    .logo-min img {
        max-width: 35px !important;
    }
}

@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-40: 30px;
        --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;
    }
}

@media screen and (min-width: 801px) {
    .not-desktop {
        display: none !important;
    }

}

@media screen and (min-width: 1350px) and (max-width: 1350px) {
    div#page > div#content > section.about-us > div.about-us-bg ,
    div#page > div#content > section.about-us > div.about-us-bg img {
        width: 1350px;
        height: 829px;
    }
    div#page > div#content > section.about-us > div.about-us-bg .caption {
        width: 774px;
        height: 331px;
    }
}
@media screen and (min-width: 800px) and (max-width: 800px) {
    div#page > div#content > section.about-us > div.about-us-bg {
        width: 800px;
        height: 692px;
    }
}

@media screen and (min-width: 410px) and (max-width: 420px) {
    div.slick-list > div.slick-track > a.slide-item > img {
        width: 410px;
        height: 156px;
    }
    div.container > div.tile-item > div.tile-left > img {
        width: 380px;
        height: 231px;
    }

    div.dot-item > div.dot-item-inner > div.dot-icon > img {
        width: 80px;
        height: 80px;
    }
    .logo-big img {
        width: 70px;
        height: 69px;
    }


    div.product-slider-left > div.img-box-wrapper > div.img-box > img {
        width: 410px;
        height: 69px;
    }


    .product-slider-right div.slide-item-inner > div.slide-image > img {
        width: 240px;
        height: 240px;
    }

    div.footer-cols > div.footer-col-4 > div.footer-col-content > img {
        width: 130px;
        height: 128px;
    }

    .copyright-undicom img {
        width: 15px;
        height: 15px;
    }

    .main-slider {
        width: 410px;
        height: 231px;
    }
    .about-us-text {
        width: 410px;
        height: 231px;
    }

    section.main-slider > div.slick-list > div.slick-track > a.slide-item {
        width: 410px;
        height: 156px;
    }

    section.tiles {
        width: 412px;
        height: 6666px;
    }

    .about-us-text-wrapper .about-us-text {
        width: 377px;
        height: 380px;
    }


    div#page > div#content > section.about-us > div.about-us-bg img,
    div#page > div#content > section.about-us > div.about-us-bg {
        width: 410px;
        height: 325px;
    }
}
