@font-face {
    font-family: 'Roboto';
    src: url('Roboto-Regular.woff2') format('woff2'),
        url('Roboto-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto Bold';
    src: url('Roboto-Bold.woff2') format('woff2'),
        url('Roboto-Bold.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'OpenSans BoldItalic';
    src: url('OpenSans-SemiBoldItalic.woff2') format('woff2'),
        url('OpenSans-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
}


/* @font-face {
    font-family: 'Font1';
    src: url('font1.woff2') format('woff2'),
        url('font1.woff') format('woff');
    font-weight: var(--font-family-weight-1);
    font-style: var(--font-family-style-1);
}

@font-face {
    font-family: 'Font2';
    src: url('font2.woff2') format('woff2'),
        url('font2.woff') format('woff');
    font-weight: var(--font-family-weight-2);
    font-style: var(--font-family-style-2);
} */

@font-face {
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: 400;
  src: url(fa-regular-400.eot); /* For IE6-8 */
  src: local('FontAwesome'),
       url(fa-regular-400.woff2) format('woff2'),
       url(fa-regular-400.woff) format('woff'),
       url(fa-regular-400.ttf) format('truetype');
}

@font-face {
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: 900;
  src: url(fa-solid-900.eot); /* For IE6-8 */
  src: local('FontAwesome'),
       url(fa-solid-900.woff2) format('woff2'),
       url(fa-solid-900.woff) format('woff'),
       url(fa-solid-900.ttf) format('truetype');
}

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
       local('MaterialIcons-Regular'),
       url(MaterialIcons-Regular.woff2) format('woff2'),
       url(MaterialIcons-Regular.woff) format('woff'),
       url(MaterialIcons-Regular.ttf) format('truetype');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}

/* PRELOADER */

#loader-wrapper, #loader-wrapper2, #loader-wrapper3, #loader-wrapper4, #loader-wrapper5, #loader-wrapper6, #loader-wrapper7, #loader-wrapper8, #loader-wrapper9 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #f5f5f5;
  width: 100%;
  margin: 0 auto;
  min-height: 150px;
  /* display: none; */
}

.load {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    /* display: none; */
}

.load hr {
    border: 0;
    margin: 0;
    width: 40%;
    height: 40%;
    position: absolute;
    border-radius: 50%;
    animation: spin 2s ease infinite;
}

.load :first-child {
    background: #15a884;
    animation-delay: -1.5s;
}

.load :nth-child(2) {
    background: #253942;
    animation-delay: -1s;
}

.load :nth-child(3) {
    background: #15a884;
    animation-delay: -0.5s;
}

.load :last-child {
    background: #253942;
}

@keyframes spin {
    0%, 100% {
        transform: translate(0)
    }
    25% {
        transform: translate(160%)
    }
    50% {
        transform: translate(160%, 160%)
    }
    75% {
        transform: translate(0, 160%)
    }
}

.modal-content {
    border-radius: 0;
}

.breadcrumbs {
    padding: 0 20px 50px 20px;
    color: var(--breadcrumbs-color);
    text-transform: var(--breadcrumbs-transform);
    font: var(--breadcrumbs-font);
    float: none;
    clear: both;
}

.breadcrumbs a, .breadcrumbs span {
    color: var(--breadcrumbs-color);
    font: var(--breadcrumbs-font);
    vertical-align: middle;
    display: inline-block;
}

.breadcrumbs a:hover {
    color: var(--breadcrumbs-color-hover);
    text-decoration: var(--breadcrumbs-underline-hover) !important;
}

.breadcrumbs svg {
    width: var(--breadcrumbs-icon-size);
    height: auto;
    margin: 0 5px 0;
    display: inline-block;
    vertical-align: middle;
    fill: var(--breadcrumbs-fill);
}

﻿/* owlCarousel */

.owl-carousel .animated {
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.owl-carousel .owl-animated-in {
    z-index: 0
}

.owl-carousel .owl-animated-out {
    z-index: 1
}

.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

@-webkit-keyframes "fadeOut" {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@keyframes "fadeOut" {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

.owl-height {
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out
}

.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0px, 0px, 0px)
}

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel.owl-loaded {
    display: block
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block
}

.owl-carousel.owl-hidden {
    opacity: 0
}

.owl-carousel .owl-refresh .owl-item {
    display: none
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel .owl-item>img {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d
}

.owl-carousel.owl-text-select-on .owl-item {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto
}

.owl-carousel .owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab
}

.owl-carousel.owl-rtl {
    direction: rtl
}

.owl-carousel.owl-rtl .owl-item {
    float: right
}

.no-js .owl-carousel {
    display: block
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    -ms-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease
}

.owl-carousel .owl-item img {
    transform-style: preserve-3d
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: var(--font-color-second);
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.html") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -webkit-transition: scale 100ms ease;
    -moz-transition: scale 100ms ease;
    -ms-transition: scale 100ms ease;
    -o-transition: scale 100ms ease;
    transition: scale 100ms ease
}

.owl-carousel .owl-video-play-icon:hover {
    -webkit-transition: scale(1.3, 1.3);
    -moz-transition: scale(1.3, 1.3);
    -ms-transition: scale(1.3, 1.3);
    -o-transition: scale(1.3, 1.3);
    transition: scale(1.3, 1.3)
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    -ms-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1
}


/* pace */

.pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.pace-inactive {
    display: none
}

.pace .pace-progress {
    background: #d7d6d6;
    position: fixed;
    z-index: 2000;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px
}

.pace .pace-activity {
    display: block;
    position: fixed;
    z-index: 2000;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    border: solid 5px transparent;
    border-top-color: #d7d6d6;
    border-left-color: #d7d6d6;
    border-radius: 25px;
    -webkit-animation: pace-spinner 600ms linear infinite;
    -moz-animation: pace-spinner 600ms linear infinite;
    -ms-animation: pace-spinner 600ms linear infinite;
    -o-animation: pace-spinner 600ms linear infinite;
    animation: pace-spinner 600ms linear infinite;
}

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

@-moz-keyframes pace-spinner {
    0% {
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes pace-spinner {
    0% {
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-ms-keyframes pace-spinner {
    0% {
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

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


/* Bootstrap Override */

@media (min-width: 1500px) {
    .col-xl-1,
    .col-xl-10,
    .col-xl-11,
    .col-xl-12,
    .col-xl-2,
    .col-xl-3,
    .col-xl-4,
    .col-xl-5,
    .col-xl-6,
    .col-xl-7,
    .col-xl-8,
    .col-xl-9 {
        float: left;
        position: relative;
        min-height: 1px;
        padding-left: 15px;
        padding-right: 15px
    }
    .col-xl-12 {
        width: 100%
    }
    .col-xl-11 {
        width: 91.66666667%
    }
    .col-xl-10 {
        width: 83.33333333%
    }
    .col-xl-9 {
        width: 75%
    }
    .col-xl-8 {
        width: 66.66666667%
    }
    .col-xl-7 {
        width: 58.33333333%
    }
    .col-xl-6 {
        width: 50%
    }
    .col-xl-5 {
        width: 41.66666667%
    }
    .col-xl-4 {
        width: 33.33333333%
    }
    .col-xl-3 {
        width: 25%
    }
    .col-xl-2 {
        width: 16.66666667%
    }
    .col-xl-1 {
        width: 8.33333333%
    }
    .col-xl-pull-12 {
        right: 100%
    }
    .col-xl-pull-11 {
        right: 91.66666667%
    }
    .col-xl-pull-10 {
        right: 83.33333333%
    }
    .col-xl-pull-9 {
        right: 75%
    }
    .col-xl-pull-8 {
        right: 66.66666667%
    }
    .col-xl-pull-7 {
        right: 58.33333333%
    }
    .col-xl-pull-6 {
        right: 50%
    }
    .col-xl-pull-5 {
        right: 41.66666667%
    }
    .col-xl-pull-4 {
        right: 33.33333333%
    }
    .col-xl-pull-3 {
        right: 25%
    }
    .col-xl-pull-2 {
        right: 16.66666667%
    }
    .col-xl-pull-1 {
        right: 8.33333333%
    }
    .col-xl-pull-0 {
        right: auto
    }
    .col-xl-push-12 {
        left: 100%
    }
    .col-xl-push-11 {
        left: 91.66666667%
    }
    .col-xl-push-10 {
        left: 83.33333333%
    }
    .col-xl-push-9 {
        left: 75%
    }
    .col-xl-push-8 {
        left: 66.66666667%
    }
    .col-xl-push-7 {
        left: 58.33333333%
    }
    .col-xl-push-6 {
        left: 50%
    }
    .col-xl-push-5 {
        left: 41.66666667%
    }
    .col-xl-push-4 {
        left: 33.33333333%
    }
    .col-xl-push-3 {
        left: 25%
    }
    .col-xl-push-2 {
        left: 16.66666667%
    }
    .col-xl-push-1 {
        left: 8.33333333%
    }
    .col-xl-push-0 {
        left: auto
    }
    .col-xl-offset-12 {
        margin-left: 100%
    }
    .col-xl-offset-11 {
        margin-left: 91.66666667%
    }
    .col-xl-offset-10 {
        margin-left: 83.33333333%
    }
    .col-xl-offset-9 {
        margin-left: 75%
    }
    .col-xl-offset-8 {
        margin-left: 66.66666667%
    }
    .col-xl-offset-7 {
        margin-left: 58.33333333%
    }
    .col-xl-offset-6 {
        margin-left: 50%
    }
    .col-xl-offset-5 {
        margin-left: 41.66666667%
    }
    .col-xl-offset-4 {
        margin-left: 33.33333333%
    }
    .col-xl-offset-3 {
        margin-left: 25%
    }
    .col-xl-offset-2 {
        margin-left: 16.66666667%
    }
    .col-xl-offset-1 {
        margin-left: 8.33333333%
    }
    .col-xl-offset-0 {
        margin-left: 0
    }
    /*.container { width: 1440px; }*/
}

.container,
.container-fluid,
.navbar-collapse,
[class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

.row,
.form-horizontal .form-group {
    margin-left: -10px;
    margin-right: -10px;
}

.owl-carousel.row {
    margin-left: 0;
    margin-right: 0;
}

.owl-item>[class*="col-"] {
    width: 100%;
}


/* centered columns styles */

.row-centered {
    text-align: center;
}

[class*="col-centered-"] {
    display: block;
    float: none;
    text-align: left;
    margin-right: -5px;
}

@media (min-width: 768px) {
    .col-centered-sm {
        display: inline-block
    }
}

@media (min-width: 992px) {
    .col-centered-md {
        display: inline-block
    }
}

@media (min-width: 1200px) {
    .col-centered-lg {
        display: inline-block
    }
}

@media (min-width: 1500px) {
    .col-centered-xl {
        display: inline-block
    }
}


/* colorbox */

#colorbox,
#cboxOverlay,
#cboxWrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99990;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0)
}

#cboxWrapper {
    max-width: none
}

#cboxOverlay {
    position: fixed;
    width: 100%;
    height: 100%
}

#cboxMiddleLeft,
#cboxBottomLeft {
    clear: left
}

#cboxContent {
    position: relative;
}

#cboxLoadedContent {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#cboxTitle {
    margin: 0
}

#cboxLoadingOverlay,
#cboxLoadingGraphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
    cursor: pointer
}

.cboxPhoto {
    float: left;
    margin: auto;
    border: 0;
    display: block;
    max-width: none;
    -ms-interpolation-mode: bicubic
}

.cboxIframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    padding: 0;
    margin: 0
}

#colorbox,
#cboxContent,
#cboxLoadedContent {
    box-sizing: content-box;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box
}

#cboxOverlay {
    background: rgba(0, 0, 0, .5);
    opacity: 0.9;
    filter: alpha(opacity=90)
}

#colorbox {
    outline: 0
}


/*
#cboxTopLeft,#cboxTopRight,#cboxBottomLeft,#cboxBottomRight,#cboxMiddleLeft,#cboxMiddleRight,#cboxTopCenter,#cboxBottomCenter {opacity: 0;pointer-events: none;}
#cboxTopLeft {width: 21px;height: 21px;background: url(../../img/gameshop/colorbox/controls.png) no-repeat -101px 0}
#cboxTopRight {width: 21px;height: 21px;background: url(../../img/gameshop/colorbox/controls.png) no-repeat -130px 0}
#cboxBottomLeft {width: 21px;height: 21px;background: url(../../img/gameshop/colorbox/controls.png) no-repeat -101px -29px}
#cboxBottomRight {width: 21px;height: 21px;background: url(../../img/gameshop/colorbox/controls.png) no-repeat -130px -29px}
#cboxMiddleLeft {width: 21px;background: url(../../img/gameshop/colorbox/controls.png) left top repeat-y}
#cboxMiddleRight {width: 21px;background: url(../../img/gameshop/colorbox/controls.png) right top repeat-y}
#cboxTopCenter {height: 21px;background: url(../../img/gameshop/colorbox/border.png) 0 0 repeat-x}
#cboxBottomCenter {height: 21px;background: url(../../img/gameshop/colorbox/border.png) 0 -29px repeat-x}
*/

#cboxContent {
    background: #fff
}

.cboxIframe {
    background: #fff
}

#cboxError {
    padding: 50px;
    border: 1px solid #ccc
}

#cboxLoadedContent {
    margin-bottom: 0
}

#cboxTitle {
    position: absolute;
    bottom: 4px;
    left: 0;
    text-align: center;
    width: 100%;
    color: #949494
}

#cboxCurrent {
    position: absolute;
    bottom: 4px;
    left: 58px;
    color: #949494
}

#cboxLoadingOverlay {
    background: url(../img/colorbox/loading_background.png) no-repeat center center
}

#cboxLoadingGraphic {
    background: url(../img/colorbox/loading.gif) no-repeat center center
}

#cboxPrevious,
#cboxNext,
#cboxSlideshow,
#cboxClose {
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
    opacity: 0.5;
    overflow: visible;
    transition: all 200ms;
    width: auto;
}

#cboxPrevious:focus,
#cboxNext:focus,
#cboxSlideshow:focus,
#cboxClose:focus,
#cboxPrevious:active,
#cboxNext:active,
#cboxSlideshow:active,
#cboxClose:active {
    outline: 0
}

#cboxPrevious:hover,
#cboxNext:hover,
#cboxSlideshow:hover,
#cboxClose:hover {
    opacity: 1;
}

#cboxSlideshow {
    position: absolute;
    bottom: 4px;
    right: 30px;
    color: #0092ef
}

#cboxPrevious {
    background: url(../img/icons/colorbox-arrow.svg) 80% center no-repeat;
    bottom: 0;
    left: 0;
    position: absolute;
    text-indent: -9999px;
    top: 0;
    width: 50%;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

#cboxPrevious:hover {}

#cboxNext {
    background: url(../img/icons/colorbox-arrow.svg) 80% center no-repeat;
    bottom: 0;
    position: absolute;
    right: 0;
    text-indent: -9999px;
    top: 0;
    width: 50%;
}

#cboxNext:hover {}

#cboxClose {
    background: url(../img/icons/colorbox-close.svg) center center no-repeat;
    background-size: 40%;
    height: 50px;
    position: absolute;
    right: 0;
    text-indent: -9999px;
    top: 0;
    width: 50px;
}

#cboxClose:hover {}

.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF, endColorstr=#00FFFFFF)
}

.cboxPhoto {
    opacity: 0;
    transition: all 400ms ease-in-out;
}

.cboxPhoto.active {
    opacity: 1;
}


/* jAlert */

.jAlertBox {
    background: #ffffff;
    -webkit-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.5);
    display: none;
    position: fixed;
    top: 100px;
    z-index: 1000000;
}

.modal {
    display: none;
    position: fixed;
    top: 100px;
    z-index: 1000000;
    padding: 0;
}

.modal-dialog {
    background: #fff;
    padding: 0;

}

.modal-content {
    margin-top: -1px;
    width: 100%;
    height: 100%;
}

.jAlertClose {
    background: transparent url(../img/icons/cancel2.svg) center center no-repeat;
    background-size: 40%;
    display: block;
    height: 40px;
    opacity: 0.5;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity 200ms;
    width: 40px;
    z-index: 1
}

.modal-close-bck {
    opacity: 1;
    background: #fff;
    display: block;
    height: 40px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

.modal-close {
    background: transparent url(../img/icons/cancel2.svg) center center no-repeat;
    background-size: 40%;
    z-index: 2;
    height: 40px;
    width: 39px;
    opacity: 0.5;
}

.jAlertClose:hover, .modal-close {
    cursor: pointer;
    opacity: 1
}

.jAlertTitle, .modal-title {
    background: #4295d1;
    color: #fff;
    display: block;
    font: 20px/30px "times new roman";
    margin: 0 40px 0 0;
    height: 40px;
    overflow: hidden;
    padding: 5px 10px;
    text-align: center;
    text-transform: uppercase
}

.jAlertTitle:after, .modal-title:after {
    border-bottom: 40px solid #ffffff;
    border-left: 15px solid rgba(0, 0, 0, 0);
    content: '';
    display: block;
    right: 40px;
    position: absolute;
    top: 0;
    transition: all 200ms;
    z-index: 2
}

.jAlertContent {
    background: #ffffff;
    display: block;
    font-size: 22px;
    overflow: hidden;
    padding: 40px;
    text-align: center;
}

@media (min-width: 768px) {
    .jAlertBox {
        left: 50%;
        margin-left: -250px;
        width: 500px
    }
    .jAlertContent {
        font-size: 18px;
    }

}

@media screen and (max-width: 500px) {
    .jAlertContent a {
        font-size: 16px;
    }
    .jAlertContent span {
        font-size: 16px;
    }

}


/*@media (min-width: 992px){.jAlertBox{margin-left:-480px;width:960px}}*/

.jAlertContent>.error-summary {
    background: none;
    border: none;
    color: var(--font-color-second);
    /*font-size: 16px;*/
    font-size: 22px;
    margin: 0;
    padding: 0;
    text-align: left;
}

.jAlertContent>.error-summary>ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.jAlertContent>.error-summary>ul>li {
    display: block;
    margin: 0 0 10px 0;
    padding: 0;
}


/* Ajax Animation */

.loader {
    width: 16px;
    height: 16px;
    margin: 0 auto 0 auto;
    display: block;
    /*z-index: 2000;*/
    border: solid 2px transparent;
    border-top-color: #29d;
    border-left-color: #29d;
    border-radius: 0px;
    -webkit-animation: pace-spinner 400ms linear infinite;
    -moz-animation: pace-spinner 400ms linear infinite;
    -ms-animation: pace-spinner 400ms linear infinite;
    -o-animation: pace-spinner 400ms linear infinite;
    animation: pace-spinner 400ms linear infinite;
}

[data-pjax-container] {
    position: relative;
    transition: all 200ms ease-ing-out;
}

[data-pjax-container].pjax-loading {
    opacity: 0.5;
}

@media screen and (max-width: 621px) {
    [data-pjax-container].pjax-loading {
        background: url(../img/ring.gif) center bottom no-repeat;
    }
}

[data-pjax-container].pjax-loading:after {
    background: url(../img/ring.gif) center center no-repeat;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1000;
}

.ias-spinner {
    background: url(../img/ring.gif) center center no-repeat;
    clear: both;
    height: 150px;
}

.ias-trigger {
    clear: both;
    text-align: center;
}

.ias-trigger a.btn {
    color: #fff;
    background-color: #9d168d;
    border-color: #9d168d;
    border-radius: 0px;
}


/* Global Styles */

html,
body {
    -ms-overflow-style: scrollbar;
    height: auto;
}

body {
    background: #fff url() center top no-repeat fixed;
    background-size: cover;
    color: #253942;
    /* font-family: var(--font-family-body), sans-serif !important; */
    font-family: var(--body-font-family);
    font-size: 16px;
    line-height: 1.42857143;
}

a {
    color: var(--default-a);
    outline: none !important;
    text-decoration: none !important;
}

a:focus,
a:hover {
    color: var(--default-a-hover);
    cursor: pointer;
}

h1,
h2 {
    font-size: 24px;
}

h3,
h4 {
    font-size: 21px;
}

h5,
h6 {
    font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h5 {
    font-family: var(--headers-font-family);
}

h1 {
    text-transform: uppercase;
    font-size: 34px;
    font-family: var(--header-h1-font-family);
    color: #000;
}

table {
    width: 100%;
}

.table-responsive>.table {
    width: 99.9%;
    max-width: 99.9%;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}

select::-ms-expand {
    display: none;
}

textarea {
    resize: vertical;
}

hr {
    border-top: 1px solid #ddd;
    margin: 0;
}

ul {
    margin: 0;
    padding: 0 0 0 20px;
}

ul>li {
    margin: 0;
    padding: 0;
}

.non-padding-container {
    padding-left: 0;
    padding-right: 0;
}


/* jurek ogórek */

img[src="../img/svg/nophoto.svg"] {
    width: 75%;
}

.adserver-esp-products-list-top {
    margin-bottom: 30px;
}

.adserver-esp-products-list-bottom {
    margin-top: 30px;
}


/* Header */

.zoomWindow {
    cursor: zoom-in !important;
}

.navbar .col-sm-3 {
  width: 270px;
  padding-right: 0;
}

.navbarLogo a {
    display: block;
    height: auto;
    padding: 12px 0;
    overflow: hidden;
}

.navbarLogo a .normal-logo {
    display: block;
    opacity: 1;
    transition: all 300ms ease-in-out;
    width: 100%;
    height: 35px;
    margin-left: -100px;
}

.navbarLogo a svg {
    display: block;
    opacity: 1;
    transition: all 300ms ease-in-out;
    width: auto;
    height: 35px;
    margin-left: var(--svg-logo-marginLeft);
}

.navbarLogo p {
    display: inline-block;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: top;
    padding-left: 30px;
    height: auto;
    margin-top: -5px;
}

.navbarLogo p svg {
    width: 45px;
    height: 45px;
    margin-left: 0;
}

@media screen and (max-width: 400px) {
  .navbarLogo p {
    font-size: 18px;
  }
  .navbar .col-sm-3 {
    max-widtH: 300px;
  }
}

.navbarLogo span {
    display: inline-block;
    width: auto;
    color: #fff;
    font-size: 12px;
    padding-left: 10px;
    font-weight: normal;
}

/* Full height carousel */

.slider {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.full-height {
    padding: 0;
}

.full-height,
.full-height>.row,
.full-height .carousel-home,
.full-height .owl-stage-outer,
.full-height .owl-stage,
.full-height .owl-item,
.full-height .carousel-home-el {
    min-height: 100%;
    height: 100%;
}

.full-height>.row {
    margin: 0;
    width: 100%;
}

.background-product {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 20px 0 20px;
    text-align: center;
}

.background-product h1,
.background-product h3 {
    color: #253942;
    display: inline-block;
    font-size: 24px;
    margin: 0;
    max-width: 400px;
    padding: 10px;
    text-align: center;
    text-transform: none;
    width: 100%;
    font-weight: 600;
}

.background-product h1 {
    font-size: 24px;
    font-weight: 500;
}

.owl-theme .owl-controls .owl-page span {
    background: #9d168d;
}


/* Helper Classes */

.vimeo-video {
    background: var(--font-color-second);
    display: none;
}

.home-video {
    width: 100%;
    height: auto;
    object-fit: inherit;
}

.video-carousel-caption {
    position: absolute;
    width: 100%;
    z-index: 10;
}

#video {
    width: 100%;
height: 100%;
/* object-fit: inherit; */
display: inline-block;
vertical-align: baseline;
max-height: 100%;
position: relative;
}

.category-full-width-button {
    display: inline-block;
    text-align: center;
    font-size: 18px;
    padding: 10px 5px;
    width: 100%;
    background: white;
    border: 1px solid #999;
    transition: .5s;
}

.category-full-width-button:hover {
    text-decoration: none;
    border: 1px solid #333;
}

.little-border {
    border: 1px solid #ddd;
    transition: .5s;
}

.little-border:hover {
    border: 1px solid rgba(157, 22, 141, .5);
}

.more-filters img {
    opacity: .5;
    transition: .5s;
}

.more-filters img:hover {
    opacity: .8;
    cursor: pointer;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 180px;
}

.relative {
    position: relative;
}

.sizes {
    margin-top: 5px;
}

.sizes span {
    margin-left: 10px;
    text-transform: uppercase;
}

.subtitle {
    position: absolute;
    bottom: 20px;
    right: 40px;
    padding: 10px;
    color: white;
    transition: .5s;
}

img:hover+.subtitle,
.subtitle:hover {
    background: rgba(0, 0, 0, .5)
}

.subtitle>h3 {
    margin: 0;
    font-size: 26px;
}

.frame-card {
    border: 1px solid black;
    padding: 6.5px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    display: inline-block;
    position: relative;
    top: -2px;
    margin: 1px;
}

.tile .frame-card {
    line-height: 1;
}

.frame-card svg {
    margin-right: 5px;
    height: 20px;
    position: relative;
    top: 3px;
}

.frame-card:hover {
    cursor: pointer;
}

.frame-last-units {
    border: 1px solid #ccc;
    color: black;
}

.frame-promotion {
    border: 1px solid rgba(255, 0, 0, .5);
    color: red;
}

.frame-novelty {
    border: 1px solid rgba(157, 22, 141, .5);
    color: #9d168d;
}

.frame-handmade {
    border: 1px solid #CCC;
    top: 0;
    padding: 4px;
    line-height: 21px;
}

.frame-made-in-poland {
    border: 1px solid #CCC;
    top: 0;
    padding: 4px;
    line-height: 21px;
}

.frame-made-in-poland>span,
.frame-handmade>span {
    position: relative;
    top: -2.5px;
}

.zoomLens {
    border: none !important;
}

.large-button {
    padding: 15px 20px!important;
    border-radius: 0px !important;
}

.segment {
    margin: 40px 0;
    background: white;
}

.segment .head {
    padding: 20px 0;
    color: white;
    background: #2f2f2f;
}

.segment .head h2 {
    margin: 0;
}

.segment .body {
    padding: 20px 30px;
    font-size: 18px;
}

.segment .body .row>div {
    margin-top: 20px;
    margin-bottom: 20px;
}

.segment .body input[type="text"] {
    padding: 5px 10px;
    position: relative;
    top: -7.5px;
    width: 100%;
}

.segment label {
    display: inline;
}

.segment .body input[type="radio"]+label,
.segment .body input[type="checkbox"]+label {
    margin-left: 10px;
    font-weight: normal;
}

.segment .thumbnail {
    width: 130px;
    height: 100px;
    padding: 0;
    border: 2px solid #ccc;
}

.segment .thumbnail img {
    width: 100%;
    height: 100%;
}

.segment .table>tbody>tr>td {
    border: none;
}

.segment td:first-child {
    width: 130px;
}

.segment td:nth-child(2) {
    width: 60%;
}

.segment a {
    color: #ac229b;
    font-weight: bold;
}

.segment button {
    background: #0075ef;
    width: 100%;
    padding: 15px 0;
    font-size: 21px;
    color: white;
    border-radius: 0px;
    border: none;
}

.card {
    background: none;
    width: 100%;
    min-height: 300px;
    border-radius: 0px;
    padding: 0;
    margin: 0;
    position: relative;
}

.card-content {
    height: 150px;
}

.pageGalleryRow .card-content {
    height: 50px;
    margin-bottom: 30px !important;
    padding: 15px !important;
    font-size: 16px !important;
}

.card-content h3 {
    text-transform: none;
}

.sticky-bottom {
    position: absolute;
    bottom: 20px;
    width: calc(100% - 20px);
}

.card .img-responsive {
    display: inline-block;
}

.card .add2clipboard {
    display: none;
}

.card ul.level2 {
    display: block;
    list-style-type: disc;
    -webkit-margin-before: 1em;
    -webkit-margin-after: 1em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    -webkit-padding-start: 40px;
    padding: 0 0 0 20px;
    text-align: -webkit-match-parent;
}

.card li.level2 {
    text-align: left;
    display: list-item;
    list-style-type: disc;
}

.card li.level2>a {
    padding: 10px 0;
    display: inline-block;
    color: #9f018c;
}

.card .sitemap-list li.level2 > a {
    padding: 0;
}

.card li.level3 {
    margin-left: 15px;
}

.card li.level3 a {
    color: #9f018c
}

.card table {
    margin: 20px;
}

.card .button-more {
    display: inline-block;
    padding: 7.5px 20px;
    border: 1px solid white;
    border-radius: 0px;
    margin-top: 35px;
}

@media (max-width: 767px) {
    .card table {
        margin: 0;
    }
}

.page-header-white {
    margin: 20px 0 !important;
    background: transparent !important;
    color: black !important;
}

.category-filter {
    background: #a6a6a6;
    padding: 25px 15px;
    font-size: 18px;
    color: white;
}

.category-filter button {
    background: #242424;
    padding: 10px 25px;
    position: relative;
    top: -10px;
    transition: .5s;
}

.category-filter button:hover {
    background: #484848;
    color: white;
}

.filter-group .bootstrap-select {
    width: 100%;
}

.filter-group>img {
    opacity: .5;
    transition: .5s;
}

.filter-group:hover>img {
    opacity: 1;
}

.active-filters>.active-filter {
    display: inline-block;
    margin: 5px;
    padding: 10px;
}

.active-filters img {
    opacity: .5;
    transition: .5s;
    position: relative;
    top: -2px;
    left: 3px
}

.active-filter:last-child a {
    color: #9d168d;
}

.active-filters img:hover {
    opacity: 1;
    cursor: pointer;
}

.accessibility-content {
    display: inline-block;
    margin-left: 10px;
    color: #84c020;
}

.accessibility-content .glyphicon {
    font-size: 17px !important;
}

.accessibility-block {
    background: #84c020;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    display: inline-block;
    position: relative;
    top: 2px;
}

.small-tile {
    background: #fff;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    border: 1px solid #d0d0d0;
    transition: .5s;
}

.small-tile:hover {
    border: 1px solid #d0d0d0;
}

.small-tile h3 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 5px;
}

.tile {
    background: #fff;
    width: 100%;
    /* height: 410px; */
    max-width: 350px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    border: 1px solid transparent;
    transition: .5s;
    margin: 5px auto;
    overflow: hidden;
}

.small>.tile {
    /* height: 370px; */
}

.tile:hover {
    z-index: 10;
    border: 1px solid #d0d0d0;
}

.tile>img {
    /* height: 350px; */
}

.tile p {
    margin: 5px 0;
}

.tile .favorite {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    fill: #9d168d;
}

.small-tile .productBoxHeader .plus,
.tile .productBoxHeader .plus,
.productBoxHeader .plus {
    width: 50px;
    position: absolute;
    opacity: 0;
    transition: .5s;
    top: 10px;
    right: 10px;
}

.small>.tile .productBoxHeader .plus,
.small-tile .productBoxHeader .plus {
    width: 40px;
}

.small-tile:hover .productBoxHeader .plus,
.tile:hover .productBoxHeader .plus,
.productBox:hover .productBoxHeader .plus {
    opacity: .2;
}

.small-tile .productBoxHeader .plus:hover,
.tile .productBoxHeader .plus:hover,
.productBox .productBoxHeader .plus:hover {
    opacity: 1;
    cursor: pointer;
}

.blog-card {
    overflow: hidden;
    height: 100%;
    text-align: left;
}

.blog-content a {
    color: #9f018c;
}

.card article {
    font-size: 17px;
    margin-bottom: 30px;
}

.card article>img {
    margin-bottom: 20px;
}

.card .social-article {
    font-size: 20px;
    text-align: right;
}

.card .social-article svg {
    margin: 0 5px;
    position: relative;
    top: 10px;
    left: 5px
}

.hidden .card {
    display: none;
}

.card .favorite {
    position: absolute;
    top: 20px;
    left: 20px;
    opacity: 0;
    pointer-events: none;
    transition: .5s;
    z-index: 10;
}

.card:hover .favorite {
    opacity: .5;
    pointer-events: auto;
}

.card .favorite:hover {
    opacity: 1;
}

.card .bubble {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
    padding: 5px;
    display: none;
}

.card-bordered {
    border: 1px solid #d0d0d0;
}

.main-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
    margin-bottom: 10px;
}

.main-image>span {
    background: url(../img/icons/colorbox-arrow.svg) center center no-repeat;
    bottom: 0;
    content: "";
    display: block;
    opacity: 0.5;
    position: absolute;
    top: 0;
    transition: all 200ms ease-in-out;
    width: 10%;
    z-index: 11;
    -webkit-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -ms-user-select: none;
}

.main-image>span.prev {
    left: 0;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.main-image>span.next {
    right: 0;
}

.main-image>span:hover {
    cursor: pointer;
    opacity: 1;
}

.main-image>img {
    margin: 0 auto;
    max-width: 100%;
    display: block;
}

.tile h3 {
    margin: 0 7.5px;
}

.box h3 {
  text-transform: none;
  color: rgb(73, 150, 209);
  font-size: 18px;
  height: 30px;
}

.tile-add-to-cart {
    left: -1px;
    right: -1px;
    background: white;
    /*box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .1);*/
    transition: .5s;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
}

.tile:hover .tile-add-to-cart {
    opacity: 1;
    pointer-events: auto;
}

.tile .productBoxFooter {
    top: 0;
    transition: .5s;
    z-index: -1;
}

.tile:hover .productBoxFooter {
    opacity: 1;
    //top: -40px;
    top: 0;
}

.tile-add-to-cart .amount {
    margin: 15px;
}

.tile-add-to-cart .btn {
    border-width: 1px;
    border-radius: 0px;
}

.btn.add2clipboard {
    border-radius: 0px;
}

.add-to-cart .add2clipboard {
    line-height: 30px;
}

.clipboard-remove {
    display: none !important;
}

.tile-add-to-cart>a {
    font-size: 14px;
    margin-bottom: 10px;
}

.clipboard-add {
    display: inline-block !important;
    color: var(--font-color-second);
}

.in-clipboard .clipboard-remove {
    display: inline-block !important;
    margin-bottom: 10px;
}

.in-clipboard .clipboard-add {
    display: none !important;
    margin-bottom: 10px;
}

.tile-add-to-cart-button img {
    margin: 10px;
}

.btn.load-more {
    width: 90%;
    max-width: 500px;
    border-radius: 0px;
    padding: 15px 0;
}


/* Lightbox content */

.photo-dynamic {
    margin-bottom: 10px;
}

.photo-dynamic img:hover {
    cursor: pointer;
}

.product-photo {
    background: url(../img/colorbox/loading.gif) no-repeat center center;
}

#cboxLoadedContent .product-photo {
    width: 100%;
    height: auto;
}

.colorboxed {
    padding: 20px;
}

#cboxLoadedContent {
    overflow: auto !important;
}

.image-manager {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-bottom: 10px;
    text-align: center;
    height: 0;
    width: 100%;
    padding-bottom: 75%;
    overflow: hidden;
}

.image-manager img {
    width: 100%;
    height: auto;
    opacity: 0;
    transition: 1s;
}

.image-manager:hover img {
    opacity: 1;
}

img.exit-colorbox {
    opacity: .5;
    transition: .5s;
    height: 18px !important;
    width: 18px !important;
    display: none;
    z-index: 100;
}

#cboxLoadedContent .exit-colorbox {
    display: inline-block;
}

img.exit-colorbox:hover {
    cursor: pointer;
    opacity: 1;
}

.product-details,
.recommended-products {
    padding: 20px;
}

.header-margin>.product-details {
    padding-top: 0;
}

.product-details .add2clipboard span {
    position: relative;
    display: inline-block;
    padding: 1.5px 0;
}

.product-details-favorite {
    position: absolute;
    left: -40px;
    top: 0px;
    fill: #999;
}

.clipboard-add:hover .product-details-favorite {
    fill: var(--font-color-second);
}

.colorboxed h1,
.product-details h1,
.colorboxed h3,
.product-details h3 {
    margin: 0 0 5px 0;
    font-size: 24px;
}

.colorboxed .price-content,
.product-details .price-content {
    margin: 30px 0;
    text-align: center;
}

.colorboxed .price-content>span,
.product-details .price-content>span {
    margin: 0 10px
}

.colorboxed .add-to-cart,
.product-details .add-to-cart {
    font-size: 21px;
    text-align: center;
}

.colorboxed .add-to-cart a,
.product-details .add-to-cart a {
    padding: 10px;
    border-radius: 0px;
    margin: 5px 0;
    transition: .5s;
}

.colorboxed .add-to-cart a img,
.product-details .add-to-cart a img {
    width: 30px;
    height: 30px;
    margin-right: 5px;
    opacity: .5;
    transition: .5s;
}

.colorboxed .add-to-cart a:hover,
.product-details .add-to-cart a:hover {
    opacity: 1;
}

.colorboxed .add-to-cart a:hover img,
.product-details .add-to-cart a:hover img {
    opacity: 1;
}

.colorboxed .add-to-cart a.btn,
.product-details .add-to-cart a.btn {
    width: 90%;
}

@media (max-width: 580px) {
    .colorboxed .add-to-cart,
    .product-details .add-to-cart {
        text-align: center;
    }
    .colorboxed .add-to-cart a.btn,
    .product-details .add-to-cart a.btn {
        margin: 0px auto;
    }
}

.colorboxed .hero,
.product-details .hero {
    padding-top: 20px;
}

.colorboxed .hero img,
.product-details .hero img {
    width: 40px;
    margin-right: 5px;
}


/* next helpers ... */

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

.extra-margin-top {
    margin-top: 60px;
}

.contactBox img {
    height: 30px;
}

.small-image {
    height: 150px;
}

.small-font {
    font-size: 16px;
}

.medium-font {
    font-size: 20px;
}

.large-font {
    font-size: 26px;
}

.big-icon {
    width: 45px;
    position: relative;
    top: -5px;
    left: -5px;
    vertical-align: top;
}

.text-black {
    color: #333;
}

.text-grey {
    color: #a2a2a2;
}

.bg-red {
    background: #dd3535;
    opacity: .65;
    transition: .5s;
}

.bg-red:hover {
    background: #dd3535;
    opacity: 1;
}

.bg-blue {
    background: rgb(73, 150, 209);
    color: #fff !important;
}

.bg-blue:hover {
    background: #0053cd;
}

.bg-purple {
    background: #9d168d;
}

.text-blue {
    color: #0075ef !important;
}

.text-blue>a,
a.text-blue {
    color: #0075ef !important;
    transition: .5s;
}

.text-blue>a:hover,
{
    color: #0042ab !important;
    text-decoration: underline !important;
}

a.text-blue:hover {
    text-decoration: underline !important;
}

.text-purple {
    color: #9d168d;
}

a.text-purple {
    transition: .5s;
}

a.text-purple:hover {
    color: #bf38af;
}

.text-red {
    color: #f94442;
}

.text-white,
.text-white:hover,
.text-white:focus {
    color: #fff;
}

.extra-bottom-margin {
    padding-bottom: 40px;
}

.extra-bottom-margin img {
    position: relative;
    top: -50px;
}

.relative-header {
    font-size: 21px;
    margin: 0;
    text-align: center;
    position: relative;
}

.extra-bottom-margin .productBoxFooter {
    position: relative;
    top: -50px;
}

.productBoxFooter h3 {
    font-size: 18px;
    height: 1.4em;
    line-height: 1.4em;
    overflow: hidden;
}

.productBoxFooter h3:hover {
    text-decoration: underline;
}

.productLink {
    font-size: 22px;
    color: #333;
    padding: 10px 0;
    text-align: center;
    font-family: "times new roman";
}

.productLink img {
    position: relative;
    top: -2.5px;
}

.sliderSvgIcons a {
    background: #fff;
    border: 1px solid #fff;
    display: block;
    padding: 30px;
    text-align: center;
    text-transform: uppercase;
    transition: all 300ms ease-in-out;
}

#jsSvgicons .owl-item:not(.cloned) {
    -webkit-transform: translateY(500px);
   -moz-transform: translateY(500px);
    -ms-transform: translateY(500px);
     -o-transform: translateY(500px);
        transform: translateY(500px);
}

.sliderSvgIcons a:hover {
    border-color: #ccc;
}

.sliderSvgIcons a svg {
    fill: #888;
    height: 150px;
    margin: 0 0 50px 0;
    transition: all 300ms ease-in-out;
    width: 150px;
}

.sliderSvgIcons a:hover svg {
    fill: #14A884;
}

.sliderSvgIcons a h3 {
    color: var(--font-color-second);
    font-size: 21px;
    margin: 0 0 20px 0;
}

.sliderSvgIcons a h5 {
    color: #666;
    font-family: "Roboto";
    font-size: 14px;
    margin: 0;
    transition: all 300ms ease-in-out;
}

.sliderSvgIcons a:hover h5 {
    color: #14A884;
}

.newCollectionsImage {
    opacity: 0;
}

.newCollectionsImage a {
    background: #fff url() center center no-repeat;
    background-size: cover;
    display: block;
}

.newCollectionsImage a img {
    opacity: 0;
    transition: all 300ms ease-in-out;
}

.newCollectionsImage a:hover img {
    opacity: 1;
}

.newCollectionsImage h3 {
    margin: 0;
    padding: 20px 0 0 0;
    text-align: center;
}

#jsColors p {
    opacity: 0;
}

.coloured-box {
    height: 50px;
    width: 50px;
    display: inline-block;
    margin: 10px;
    border: 1px solid #ddd;
    opacity: 0;
}

.coloured-box.checked {
    background-image: url(../img/icons/check-mark.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.coloured-box:hover {
    cursor: pointer;
}

.inline-block {
    display: inline-block;
}

.not-float {
    float: none;
}

.header {
    margin: 30px 0 20px 0
}

.header-bold {
    font-weight: 500;
    color: #212121;
}

.bg-header {
    color: #fff;
    margin: 0;
    padding: 15px;
    text-transform: none;
    background: #15a884
}

.margin-top-50 {
    margin-top: 50px;
}

.padding-top-50 {
    padding-top: 50px;
}

.margin-top {
    margin-top: 20px;
}

.margin-bottom {
    margin-bottom: 20px;
}

.margin-bottom-box {
    margin-bottom: 40px;
}

.margin-left {
    margin-left: 20px;
}

.margin-right {
    margin-right: 20px;
}

.padding-top {
    padding-top: 20px;
}

.padding-bottom {
    padding-bottom: 20px;
}

.padding-left {
    padding-left: 20px;
}

.padding-right {
    padding-right: 20px;
}

.blog-background {
    position: relative;
    /* display: table; */
    width: 100%;
    /* height: 350px; */
    /* background-repeat: no-repeat; */
    /* background-position: center; */
    /* background-size: cover; */
    /* color: white; */
    height: auto;
    display: block;
    transition: .5s;
}

.blog-background .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.blog-card .table-cell-imitation,
.blog-background .overlay {
    background-color: var(--home-pageBox-overlay-bck);
    /* transition: .5s; */
}

.blog-card:hover .overlay,
.blog-card:hover .table-cell-imitation {
    background-color: var(--home-pageBox-overlay-hover-bck);
}

.blog-background h3 {
    font-size: 26px;
    text-transform: uppercase;
}

.blog-card {
    padding-left: 10px;
    padding-right: 10px;
}

.blog-padding {
    padding: 10px
}

.table-cell-imitation {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    background: rgba(0, 0, 0, .1);
}

.table-cell-imitation .blog-caption {
    text-align: center;
    max-width: 1200px;
}

.blog-caption {
    width: 100%;
    max-width: 550px;
    padding: 10px;
    display: inline-block;
    text-align: justify;
}

.blog-background a {
    color: white;
}

.blog-title {
    background: #9f018c;
    color: white;
    font-size: 26px;
    margin: 0px 0 20px 0;
    padding: 15px;
    text-align: center;
    text-transform: uppercase;
}

.blog-title.no-background {
    background: none;
    color: var(--font-color-second);
}

.blog-subtitle {
    margin: 0 0 20px 0;
    font-family: "Roboto";
}

.blog-background+.blog-title {
    margin: 10px 0 20px 0;
}

.blog-title+span {
    font-size: 16px!important;
}

.blog-medium-image {
    width: 100%;
    height: 250px;
}

.blog-gallery {
    padding: 10px 20px;
    text-align: center;
    display:block;
    width: 100%;
    position: relative;
    height: auto;
}

.blog-gallery-img {
    width: calc(25% - 30px);
    margin: 10px;
    height: auto;
    display: inline-block;
    float: none;
}

.responsive-container {
    overflow: hidden;
    position: relative;
}

.responsive-container:before {
    content: '';
    display: block;
}

.responsive-1x1:before {
    padding-top: 100%;
}

.responsive-2x1:before {
    padding-top: 50%;
}

.responsive-3x2:before {
    padding-top: 75%;
}

.responsive-image {
    bottom: 0;
    font: 0/0 a;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    text-align: center;
    z-index: 1;
}

.responsive-image:before {
    content: ' ';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

.responsive-image img {
    display: inline-block;
    max-height: 100%;
    max-width: 100%;
    vertical-align: middle;
}

.responsive-link {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

.responsive-link:hover {
    /*background: rgba(255,255,255,0.1);*/
}

.center-flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
}

a.glyphicon:hover {
    text-decoration: none;
}

.help-block {
    display: none;
    margin-top: 8px;
}


/*
.has-error .help-block {
	display: block;
}
*/

.form-horizontal .control-label {
    font-weight: 500;
    /*padding-top: 10px;*/
    text-align: left;
    text-transform: uppercase;
}

.form-horizontal h2,
.form-horizontal h3 {
    margin: 0 0 20px 0;
}

input,
button,
select,
textarea,
input:focus,
button:focus,
select:focus,
textarea:focus {
    box-shadow: none !important;
    outline: none !important;
}

#orderForm .form-horizontal h2,
#orderForm .form-horizontal h3 {
    margin: 0;
}

.form-control {
    border-color: #b0b6bd;
    border-radius: 0;
    color: #212121;
    font-size: 16px;
    height: 38px;
}

.form-control.input-lg {
    height: 48px;
}

.form-control:focus {
    border-color: #626e7e;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -safari-appearance: none;
    border: 1px solid #999;
    position: relative;
    top: 5px;
}

.form-checkbox input[type="checkbox"]:checked {
    background: blue;
}

.form-checkbox label {
    margin-left: 10px;
}

select.form-control {
    max-width: 250px;
    position: relative;
}

.checkbox label,
.radio label {
    padding-left: 35px;
}

.checkbox input[type=checkbox],
.checkbox-inline input[type=checkbox],
.radio input[type=radio],
.radio-inline input[type=radio] {
    height: 20px;
    margin-left: -35px;
    width: 20px;
}

.checkbox>label,
.radio>label {
    color: #212121;
    font: 500 18px/28px;
    /*text-transform: uppercase;*/
}

.checkbox>label b,
.radio>label b {
    font-weight: 500;
}


/*
.checkbox > label > div,
.radio > label > div {
	color: #7d8794;
}
.checkbox > label > input[type=checkbox]:checked + div,
.radio > label > input[type=radio]:checked + div {
	color: #212121;
}
.checkbox > label > div > b {
	display: block;
	font: 500 18px/28px Play;
	text-transform: uppercase;
}
.radio > label > div > b {
	display: block;
	font: 500 18px/28px Play;
	text-transform: uppercase;
}
*/

.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
    vertical-align: middle;
}

div.required label:after {
    content: " *";
    color: red;
}

div.required.has-error label:after {
    content: " *";
    color: #a94442;
}

div.required .radio label:after {
    display: none;
}

.btn {
    border-width: 2px;
    padding: 8px 15px;
    text-transform: uppercase;
    transition: all 200ms;
    font-family: var(--button-font-family);
    font-size: 18px;
}

.btn.active,
.btn:active {
    box-shadow: none;
}

.btn-group-lg>.btn,
.btn-lg {
    font-size: 18px;
    padding: 10px 40px;
}

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

.big-slider .btn-lg {
    font-size: 18px;
}

.voucher {
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
}

.amount-of-voucher {
    margin: 20px 0;
}

.amount-in-tile {
    margin: 5px 0 5px 0;
    font-size: 14px;
}

.voucher input {
    position: relative;
    top: -15px;
    margin: 0 15px;
}

.enter-voucher {
    margin: 20px 0;
}

.nav-div {
    margin: 20px 0;
}

.enter-voucher input {
    padding: 10px;
    border-radius: 0px;
    border: 1px solid #999;
    margin-left: 30px;
}

.back-to-buying,
.clear-cart,
.enter-voucher button {
    display: inline-block;
    text-align: center;
    padding: 15px 15px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 0px;
    font-size: 16px;
    transition: .5s;
    margin: 0 10px;
    color: #212121;
}

.back-to-buying:hover,
.clear-cart:hover,
.enter-voucher button:hover {
    border: 1px solid rgba(0, 0, 0, .3);
}

.back-to-buying span {
    position: relative;
    top: 3px;
    left: -5px;
}

.input-group {}

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

.input-group-btn>.btn {
    border-width: 1px;
    height: 40px;
    padding: 6px 10px;
}

.input-group-btn>.btn:focus {
    outline: none;
}

.btn {
    border-radius: 0px;
}

.btn-black {
    color: #fff;
    background-color: #212121;
    border-color: #212121;
    border-radius: 0px;
}

.btn-black.active,
.btn-black.focus,
.btn-black:active,
.btn-black:focus,
.btn-black:hover,
.open>.dropdown-toggle.btn-black {
    color: #fff;
    background-color: #111111;
    border-color: #111111;
}

.btn-features {
    color: var(--font-color-second) !important;
    background-color: #ffffff;
    border-color: #ffffff;
    border-radius: 0px;
}

.btn-features.active,
.btn-features:hover {
    color: #000 !important;
    background-color: #efefef;
    border-color: #efefef;
}

.btn-white {
    color: #000;
    background-color: #ffffff;
    border-color: #ffffff;
    border-radius: 0px;
}

.btn-white.active,
.btn-white.focus,
.btn-white:active,
.btn-white:focus,
.btn-white:hover,
.open>.dropdown-toggle.btn-white {
    color: #000;
    background-color: #efefef;
    border-color: #efefef;
}

.btn-grey {
    color: #000;
    background-color: #efefef;
    border-color: #efefef;
    border-radius: 0px;
}

.btn-grey.active,
.btn-grey.focus,
.btn-grey:active,
.btn-grey:focus,
.btn-grey:hover,
.open>.dropdown-toggle.btn-grey {
    color: #000;
    background-color: #dfdfdf;
    border-color: #dfdfdf;
}

.btn-grey-border.jAlertClose {
    color: #333;
    background: #fff;
    border: 1px solid #afafaf;
    border-radius: 0px;
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    display: inline-block;
    height: 40px;
    line-height: 1.5;
}

.btn-grey-border.active,
.btn-grey-border.focus,
.btn-grey-border:active,
.btn-grey-border:focus,
.btn-grey-border:hover,
.open>.dropdown-toggle.btn-grey-border {
    background-color: #fff;
    border-color: #9c9c9c;
}

.jAlertContent .btn.bg-blue {
    height: 40px;
    line-height: 1.5;
}

.btn-default {
    font: var(--btn-default-font);
    color: var(--btn-default-color);
    background-color: var(--btn-default-bck);
    border: var(--btn-default-border);
    border-radius: var(--btn-default-radius);
    padding: var(--btn-default-padding);
    text-transform: var(--btn-default-transform);
    height: auto;
}

.btn-default.active,
.btn-default.focus,
.btn-default:active,
.btn-default:focus,
.btn-default:hover,
.open>.dropdown-toggle.btn-red {
    color: var(--btn-default-hover-color);
    background-color: var(--btn-default-hover-bck);
    border: var(--btn-default-hover-border);
}

.btn-second {
    background: var(--btn-second);
    border: 0;
    color: var(--btn-second-font);
    border-radius: 10px;
    padding: 8px 20px;
}

.btn-login {
    padding: 15px 50px !important;
    font-size: 18px !important;
}

.wide-button {
    width: 100%;
    padding: 15px 0;
}

.ico-square {
    background: inherit;
    display: inline-block;
    height: 1em;
    position: relative;
    top: -2px;
    vertical-align: middle;
    width: 1em;
}

.ico-grey {
    background: #b2b8bf;
}

.ico-green {
    background: #84c020;
}

.ico-promo {
    background: #6faf03;
    color: #fff;
    display: inline-block;
    float: right;
    font: 18px/30px;
    margin-left: 10px;
    padding: 0 10px;
    text-transform: uppercase;
}

.bg-black {
    background-color: #212121;
}

.bg-black-opacity {
    background: #000;
}

.bg-blue {
    background-color: rgb(73, 150, 209);
}

.bg-green {
    background-color: #84c020;
}

.bg-grey {
    background-color: var(--bg-grey-bck);
}

.bg-red {
    background-color: #d30000;
}

.bg-white {
    background-color: #fff;
}

.bg-white-bordered {
    background: #ffffff;
    border: 1px solid #afafaf;
    color: #333;
}


/*
.bg-black { background-color: rgba(21,21,21,0.9); }
.bg-blue { background-color: rgba(0,108,255,0.9); }
.bg-green { background-color: rgba(132,192,32,0.9); }
.bg-grey { background-color: rgba(239,239,239,0.9); }
.bg-red { background-color: rgba(211,0,0,0.9); }
.bg-white { background-color: rgba(255,255,255,0.9); }
*/

.bg-padding {
    padding-top: 30px;
    padding-bottom: 30px;
}

.bg-padding-box {
    padding: 30px;
}

.filters+.bg-padding {
    padding-top: 0;
}

.giftbox2 {
    margin: 0 35px;
    position: relative;
}

.giftbox2-el {
    background: url() center center no-repeat;
    background-size: cover;
    display: block;
    overflow: hidden;
        -moz-transform: scale(0);
    -webkit-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.giftbox2-el:nth-child(n+4) {
    display: none;
}

.giftbox2-flex {
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    height: 100%;
    justify-content: center;
    text-align: center;
    transition: all 200ms ease-in-out;
    width: 100%;
}

.giftbox2-flex:hover {
    background: rgba(0, 0, 0, 0.0);
}

.giftbox2-flex span {
    padding: 20px;
    transition: all 200ms ease-in-out;
}

.giftbox2-flex:hover span {
    background: rgba(0, 0, 0, 0.3);
}

.giftbox2-flex h3 {
    color: #fff;
    font-size: 26px;
    margin: 0;
}

.giftbox2-flex button {
    transition: all 250ms ease-in-out;
}

.giftbox2-flex:hover button {
    padding-left: 60px;
    padding-right: 60px;
}

.giftbox3 {
    margin: 0 20px;
}

#jsGiftbox3 .owl-item:not(.cloned) {
    opacity: 0;
}

.carousel-giftbox3 {
    padding-left: 5px;
    padding-right: 5px;
}

.giftbox3-el {
    position: relative;
}

.giftbox3-flex {
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    bottom: 0;
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    transition: all 200ms ease-in-out;
}

.giftbox3-flex:hover {
    background: rgba(0, 0, 0, 0.0);
}

.giftbox3-flex span {
    padding: 20px;
    transition: all 200ms ease-in-out;
}

.giftbox3-flex:hover span {
    background: rgba(0, 0, 0, 0.3);
}

.giftbox3-flex h3 {
    color: #fff;
    font-size: 26px;
    margin: 0;
}

.giftbox3-flex button {
    transition: all 250ms ease-in-out;
}

.giftbox3-flex:hover button {
    padding-left: 60px;
    padding-right: 60px;
}

@media (max-width: 767px) {
    .giftbox2-el:nth-child(n+2) {
        margin-top: 20px;
    }
    .giftbox2-flex {
        padding: 15% 0;
    }
}

@media (min-width: 768px) {
    .giftbox2 {
        padding-bottom: 35%;
    }
    .giftbox2-el {
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
    }
    .giftbox2-el:nth-child(1) {
        right: calc(50% - -10px);
    }
    .giftbox2-el:nth-child(2) {
        bottom: calc(50% - -10px);
        left: calc(50% - -10px);
    }
    .giftbox2-el:nth-child(3) {
        left: calc(50% - -10px);
        top: calc(50% - -10px);
    }
}

.carousel-1-2-3 {
    padding-left: 0;
    padding-right: 0;
}

#jsSvgicons .carousel-1-2-3 {
    padding-left: 15px;
    padding-right: 15px;
}


.stars-container-blog img {
    width: 16px;
}

.stars-container-blog {
    font-size: 16px;
}

.stars,
.stars>span {
    font-size: 24px;
    height: 1em;
    margin: 0;
}

.stars {
    background: url(../img/icons/star-5.svg) 0 0 repeat-x;
    display: inline-block;
    width: 5em;
    transform: scale(.70);
    margin-left: -17.5px !important;
}

.stars>span {
    background: url(../img/icons/star-3.svg) 0 0 repeat-x;
    display: block;
}


/* Sections CSS */
/*
.owl-prev,
.owl-next {
    background: url(../img/svg/iconmonstr-arrow-25.svg) center center no-repeat;
    background-size: 50%;
    bottom: 0px;
    opacity: 0;
    position: absolute;
    top: 0px;
    transition: all 200ms ease-in-out;
    width: 100px;
}

.owl-prev {
    left: 0px;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.owl-next {
    right: 0px;
}

.owl-carousel:hover .owl-prev,
.owl-carousel:hover .owl-next {
    opacity: 0.5;
}

.owl-carousel .owl-prev:hover,
.owl-carousel .owl-next:hover {
    background-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
}
*/

/* #header-static ul.level3, #header-static2 ul.level3 {
    position: absolute;
    top: 60px;
    left: 9px;
    width: 250px;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transition: .5s;
    margin: 0;
    padding: 0;
    list-style-type: none;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
}

#header-static ul.level3:before, #header-static2 ul.level3:before {
    border-bottom: 10px solid #fff;
    border-left: 5px solid rgba(0, 0, 0, 0);
    border-right: 5px solid rgba(0, 0, 0, 0);
    top: -10px;
    content: '';
    display: block;
    left: 30px;
    position: absolute;
    z-index: 9;
    transition: all 200ms ease-in-out;
}

#header-static li.level2, #header-static2 li.level2 {
    position: relative;
}

#header-static li.level2:hover>ul.level3, #header-static2 li.level2:hover>ul.level3 {
    opacity: 1;
    pointer-events: auto;
    top: 60px;
}

#header-static li.level2 .arrow-menu, #header-static li.level2 .arrow-menu {
    position: relative;
    top: 3px;
    left: 5px;
    transition: .5s;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 1;
}

#header-static a.level3 {
    display: block;
    color: #000;
    text-align: left;
    font-size: 18px;
    padding: 10px 20px;
    transition: .5s;
    width: 300px;
}

#header-static, #header-static a.level3:hover {
    color: white;
    background: #9e008b;
}

#header-static {
    background: none;
    position: static !important;
}

#header-static li.level3 img {
    position: absolute;
    right: 15px;
    top: 15px;
    display: none;
}

#header-static li.level3:hover img {
    display: block;
} */

.submenu-carousel.active hr {
    margin: 10px;
    border-top: 2px solid rgba(255, 255, 255, .3)
}

.submenu-carousel ul {
    max-height: 0;
    pointer-events: none;
    opacity: 0;
    list-style-type: none;
    transition: .5s;
    padding: 0;
}

.submenu-carousel.active ul {
    pointer-events: auto;
    opacity: 1;
    max-height: 500px;
    padding-bottom: 10px;
}

.submenu-carousel ul a {
    color: white
}

.owl-dots {
    text-align: center;
}

.owl-dot {
    display: inline-block;
}

.owl-dot:only-child {
    display: none !important;
}

.owl-dot span {
    background: #a8bac3;
    border: 2px solid transparent;
    border-radius: 10px;
    display: inline-block;
    height: 20px;
    margin: 5px;
    width: 20px;
}

.owl-dot.active span {
    background: var(--font-color);
    border-color: transparent;
}

@media screen and (max-width: 768px) {
    .owl-dot span {
        width: 10px;
        height: 10px;
    }
}

.carousel-home {
    position: relative;
}

.carousel-home-el {
    background: #fff url() center top no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: none;
    height: auto !important;
    position: relative;
    font-family: var(--bigSlider-font-family);
}

.tbs .carousel-home-el {
    margin-top: 0;
}

/* .tbs #big-slider .slider {
    margin-top: 80px;
} */

#big-slider {
    padding-top: 80px;
}

.carousel-home-el::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../img/big-slider-mask.png) center center no-repeat;
    background-size: 100% 100%;
    z-index: 8;
}

.tbs .carousel-home-el::before {
    display: none;
}
.hideImagesMask .carousel-home-el::before {
    display: none;
}
.carousel-home-el .btn {
    font: var(--bigSlider-btn-font);
    margin-left: 30px;
    margin-right: 30px;
    min-width: 110px;
    padding: var(--bigSlider-btn-padding);
    text-transform: var(--bigSlider-btn-transform);
    border-radius: var(--bigSlider-btn-radius);
    color: var(--bigSlider-btn-color);
    background: var(--bigSlider-btn-bck);
    border: var(--bigSlider-btn-border);
    height: auto;
}
.carousel-home-el .btn:hover {
    color: var(--bigSlider-btn-hover-color);
    background: var(--bigSlider-btn-hover-bck);
    border: var(--bigSlider-btn-hover-border);
}
.carousel-home-el:first-child {
    display: block;
}

.carousel-home-el .center-flex {
    height: 100%;
}

.carousel-home-el span.text {
    color: #fff;
    display: inline-block;
    padding: 5px;
    font: var(--bigSlider-line1-font);
    text-transform: var(--bigSlider-line1-transform);
}

/* .carousel-home-el span.text span {
    font-size: 0.8em;
} */

.carousel-home-el span.spinny-words span, h1.onlyChild span, h1.onlyChild {
    font: var(--bigSlider-line2-font);
    text-transform: var(--bigSlider-line2-transform);
}
.carousel-home-el h1 span {
    color: var(--bigSlider-line2-color);
}
/*
.carousel-home-el h1 span.text {
    font-size: 50px;
    font-weight: 600;
} */

.big-slider-line {
    width: 300px;
    height: 5px;
    margin: 20px auto 30px;
}

.hideLine .big-slider-line {
    display: none;
}

@media screen and (min-width: 1300px) {
    .carousel-home-el .text-center {
        margin-top: -100px;
    }
    .overlayToRight .carousel-home-el .text-center {
        margin-top: 0;
    }
}

.carousel-home-el .center-flex {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.carousel-home-el .text-center {
    width: 100%;
    background: var(--bigSlider-overlay-bck);
}
.overlayToCenter .carousel-home-el .text-center {
    width: auto;
    padding: 30px 100px;
    border-radius: var(--bigSlider-overlay-borderRadius);
}
@media screen and (min-width: 901px) {
    .carousel-home-el .text-center, .overlayToCenter .carousel-home-el .text-center {
        min-width: var(--bigSlider-overlay-width);
        padding: var(--bigSlider-overlay-padding);
    }
}
.carousel-home-el .img-responsive {
    width: 100%;
}

.carousel-home .owl-dots {
    bottom: 10px;
    left: 10px;
    position: absolute;
    right: 10px;
}

.carousel-home .owl-wrapper-outer,
.carousel-home .owl-wrapper,
.carousel-home .owl-item {
    height: 100%;
}

.carousel-home .owl-controls {
    position: relative;
    top: -50px;
}

.right-bar {
    position: relative;
    top: -10px;
}

.right-bar h2 {
    margin-bottom: 5px;
}

.navbar {
    border: 0;
    border-radius: 0;
    margin: 0;
    text-align: center;
    transition: all 200ms ease-in-out;
}

.navbar>.container {
    transition: all 200ms ease-in-out;
}

.navbar>.container.bg-black {
    padding: 30px 10px;
    opacity: .8;
}

.relative-icons svg {
    position: relative;
    top: 7.5px;
}

.responsive-768-1300 {
    background: rgba(157, 22, 141, .5);
}

.responsive-1300-x .navbar-nav>li>a {
    color: white;
    font-size: 18px;
    padding: 17.5px 0px;
    margin: 0 10px;
    position: relative;
    top: 5px;
}

.responsive-1300-x {
    float: left;
    width: calc(100% - 510px);
}

.navbar-nav .responsive-768-1300>li>a {
    top: 0
}

.navbarSearch {
    margin: 10px 0;
    padding: 0 50px 0 0;
    position: relative;
    transition: all 200ms ease-in-out;
}

.navbarSearch input {
    height: 40px;
    transition: all 200ms ease-in-out;
}

.navbarSearch button {
    background: none;
    border: none;
    color: #212121;
    font-size: 20px;
    line-height: 20px;
    opacity: 0.6;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 200ms ease-in-out;
}

.navbarSearch button:hover {
    opacity: 1;
}

.navbarSearch button img {
    height: 20px;
    transition: all 200ms ease-in-out;
    vertical-align: middle;
    width: 20px;
}

.navbarIcons {
    min-height: 20px;
    display: inline-block;
    margin: 15px 0;
}

.navbarIcon {
    display: block;
    float: right;
    height:50px;
}

.navbarIcon>a {
    color: #fff;
    display: block;
    font-size: 18px;
    line-height: 20px;
    padding: 0 10px;
    position: relative;
    text-decoration: none;
    transition: all 200ms ease-in-out;
}

.navbarIcon>a>span {
    display: inline-block;
    margin: 0 10px;
    position: relative;
    top: 4px;
}


/* <Stateful colors>*/

.social-cart {
  padding-top: 15px;
  padding-bottom: 5px;
  margin-bottom: 0;
}

.social-cart svg {
    margin: 0 5px;
}

.social-cart a:hover {
    text-decoration: none;
}


/* black */

.stateful-color-black svg {
    fill: #000;
    left: 3px;
    opacity: .5;
    position: relative;
    top: 7px;
    transition: .5s;
    z-index: 2;
}

.stateful-color-black:hover svg {
    fill: #000;
    opacity: 1;
    cursor: pointer;
}

.stateful-color-black:focus svg {
    fill: #9d168d;
    opacity: 1;
}


/* white */

.stateful-color-white svg {
    fill: rgba(255, 255, 255, .8);
}

.stateful-color-white:hover svg,
.stateful-color-white.active svg {
    fill: rgba(255, 255, 255, 1);
}

.activebox .stateful-color-white:hover svg {
    fill: #4295d1
}

.navbarIcon.activebox .stateful-color-white:focus svg,
nav.stateful-color-white svg,
.activebox .stateful-color-white svg {
    fill: #4295d1;
}


/* </Stateful colors> */

.navbarIcon.activebox>a,
.navbarIcon:hover>a {
    opacity: 1;
}
/*
.navbarIcon.activebox>a:after {
    border-bottom: 10px solid #fff;
    border-left: 5px solid rgba(0, 0, 0, 0);
    border-right: 5px solid rgba(0, 0, 0, 0);
    top: 42px;
    content: '';
    display: block;
    left: 15px;
    position: absolute;
    z-index: 9;
    transition: all 200ms ease-in-out;
}
*/
.navbarIcon>a>img {
    height: 20px;
    transition: all 200ms ease-in-out;
    vertical-align: middle;
    width: 20px;
}

.navbarIconBox {
    background: #fff;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
    display: none;
    position: absolute;
    right: 10px;
    text-align: left;
    top: 65px;
    transition: all 200ms ease-in-out;
    z-index: 20;
}

.navbarIcon.activebox .navbarIconBox {
    display: block;
}

.activeboxLangsBox {
    padding: 10px;
    width: 300px;
}

.activeboxLangsBox table td {
    padding: 10px;
    vertical-align: middle;
}

.activeboxLangsBox table td.image {
    text-align: right;
    width: 40px;
    padding-right: 5px;
}

.activeboxLangsBox table td.image img, .activeboxLangsBox img {
    height: 24px;
    width: 24px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: top;
    margin-top: 3px;
}

.activeboxLangsBox table td.image img {
    margin-right: 0;
}

.activeboxLangsBox table td.text, .activeboxLangsBox .col-sm-12 {
    font-size: 21px;
    text-align: left;
}

.activeboxLangsBox .col-sm-12 {
    padding-bottom: 20px;
}

.activeboxLangsBox .form-group {
    margin-right: 30px;
}

.activeboxLangsBox .form-group>img {
    height: 32px;
    margin-right: 10px;
}

.activeboxLangsBox .form-group>.form-control {
    width: 260px;
    max-width: 300px;
}

.activeboxSearchBox {
    width: 600px;
}

.activeboxSearchBoxInput {
    padding: 20px;
}

.activeboxSearchBoxResults {
    max-height: 500px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 20px 20px 20px;
}

.activeboxSearchBoxResults .entry {
    position: relative;
    margin-top: 10px;
    text-align: left;
}

.activeboxPagesSearchBoxResults .entry {
    position: relative;
    margin-top: 10px;
    text-align: left;
}


.activeboxSearchBoxResults .entry:first-child {
    margin-top: 0;
}

.activeboxSearchBoxResults .entry h3 {
    margin: 0 0 5px 0;
    line-height: 1.4em;
    text-decoration: none;
}

.activeboxSearchBoxResults .entry h3 a {
    color: #9d168d;
}

.activeboxSearchBoxResults .entry span {
    white-space: nowrap;
}

.activeboxSearchBoxResults .entry .frame-card {
    padding: 0px 5px;
    top: -1px;
}

.activeboxCartBox {
    width: 650px;
}

.activeboxCartBox td,
.activeboxCartBox th {
    min-width: 150px;
}

.activeboxCartBoxTable {
    max-height: 405px;
    overflow-x: hidden;
    overflow-y: auto;
}

.activeboxCartBoxTable .table {
    margin-bottom: 0;
}

.activeboxCartBoxTable tr {
    padding: 10px 0;
}

.table-cart.table>tbody>tr>td {
    vertical-align: middle;
}

.activeboxCartBoxTable table {
    width: 100%;
}

.activeboxCartBoxTable table th {
    font-weight: normal;
    background: #4295d1;
    border: 0!important;
    color: #fff;
    font: 16px/20px;
    padding: 5px 10px;
    text-transform: uppercase;
}

.activeboxCartBoxTable table td {
    border-bottom: 1px solid #eee;
    color: #212121;
    font: 16px/20px;
    padding: 10px;
    vertical-align: middle;
    border-top: none !important;
}

.activeboxCartBoxTable table td.image {
    height: 100px;
    width: 100px;
}

.activeboxCartBoxTable table td.image img {
    max-height: 80px;
    max-width: 80px;
}

.activeboxCartBoxTable table td .glyphicon {
    color: #d30000;
    width: 15px;
    height: 15px;
}

.activeboxCartBoxFooter {
    padding: 10px;
}

.activeboxCartBoxFooter span {
    display: inline-block;
    font-size: 16px;
    line-height: 38px;
    text-transform: uppercase;
}

.activeboxCartBoxEmpty {
    font: 18px/20px;
    padding: 30px;
    text-align: center;
    text-transform: uppercase;
}

.main-font {
    font-family: "Roboto" !important;
}

@media screen and (min-width: 1000px) {
    .pages-container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.big-page-box .pageTallBoxContent h2 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 40px !important;
}


.pagesList>div {
    padding: 0 10px;
}

.page-header {
    background: #af30a1;
    padding: 10px;
    margin: 0 0 35px 0;
    display: inline-block;
    max-width: 100%;
    width: 400px;
    color: white;
}

.page-header.header {
    text-transform: uppercase;
}

.header-font {
    font-family: "times new roman";
}

.brutto-price {
    font-family: "Roboto" !important;
    font-size: 18px;
    margin: 0;
}

.delivery-promotion {
    font-size: 14px;
    font-family: "Roboto";
}

.activeboxLoginBox {
    width: 500px;
}

div.auth-clients {
    border-top: 1px solid #eee;
}

.auth-clients {
    margin: 0 !important;
    padding: 5px;
    text-align: center;
    overflow: hidden !important;
}

.auth-clients .auth-client {
    display: inline-block;
    float: none;
    margin: 0 10px;
}

.auth-clients .auth-client .auth-link {
    width: auto !important;
    color: #212121;
}

.auth-clients .auth-client .auth-link .auth-icon {
    background: url() center center no-repeat;
    background-size: 100%;
    display: inline-block;
    transition: all 200ms;
}

.auth-clients .auth-client .auth-link .auth-icon.facebook {
    background-image: url(../img/icons/login-facebook.svg);
}

.auth-clients .auth-client .auth-link .auth-icon.google {
    background-image: url(../img/icons/login-google.svg);
}

.auth-clients .auth-client .auth-link .auth-icon {
    background-color: #fff;
    width: 40px;
    height: 40px;
}

.auth-link>span {
    line-height: 40px;
    vertical-align: top;
    position: relative;
    top: 0;
}

.auth-title {
    text-transform: uppercase;
    width: auto !important;
}

.activeboxLoginBoxForm {
    padding: 15px 10px 0px 10px;
}

.activeboxLoginBoxForm .btn-trans {
    padding: 6px 0;
}

.activeboxLoginBoxFooter {
    padding: 10px;
}

.activeboxLoginBoxFooter span {
    font: 16px;
    color: white;
    text-transform: uppercase;
}

.activeboxLoginBoxFooter .btn {
    border: 1px solid white;
}

.activeboxAccountBox {
    width: 320px;
}

.activeboxAccountBoxLinks {
    padding: 10px;
}

.activeboxAccountBoxLinks>a {
    display: block;
    font: 16px/20px 'Roboto';
    padding: 5px 0px;
    text-transform: uppercase;
}

.activeboxAccountBoxFooter {
    padding: 10px;
}

.navbarMenu {
    position: relative;
}

.navbarMenu>ul {
    list-style: none;
    margin: 0;
    overflow: hidden;
    padding: 0 10px;
    text-align: center;
}

.navbarMenu>ul>li {
    display: inline-block;
    margin-right: 5px;
}

.navbarMenu2{
    position:relative;
    height: auto;
}

.navbarMenu2-el{
    display:block;
    float:left;
    margin-right:5px;
    height: auto;
    position: relative !important;
}

.navbarMenu2-el a.level2 {
    color:var(--menu-color);
    border-bottom: var(--menu-border) !important;
    position: relative !important;
    display: block;
    font: var(--menu-font);
    text-transform: var(--menu-transform);
}
.navbarMenu2-el a.level2:hover, .navbarMenu2-el a.level2:focus, .navbarMenu2-el a.level2.hover {
    color:var(--menu-hover-color);
    border-bottom: var(--menu-hover-border) !important;
    background: transparent;
}
.navbarMenu2-el a.level2.active {
    color:var(--menu-active-color);
    border-bottom: var(--menu-active-border) !important;
}
.menu-desktop .navbarMenu3 * {
    position: static;
}
.navbarMenu3{
    background:var(--submenu-bck);
    display:none;
    -webkit-box-shadow:0 5px 10px 0 rgba(0,0,0,.2);
    box-shadow:0 5px 10px 0 rgba(0,0,0,.2);
    left:0;
    padding: 15px;
    /* min-height:320px; */
    position:absolute !important;
    z-index:10;
    top: 40px;
    height: auto;
    /* width: 650px; */
    width: 400px;
}

.navbarMenu3 .row{
    position:relative;
}
.navbarMenu2-el:hover .navbarMenu3, .navbarMenu3:hover{
    display:block !important;
}
.navbarMenu3 .col-sm-12 .col-sm-12{
    float:left;
    width:100%;
}
/* .navbarMenu2-el:first-child .navbarMenu3 .col-sm-12 .col-sm-12 {
    width: 33.333%;
    max-width: 260px;
} */

.navbarMenu2-el:hover .navbarMenu3{
    display:block;
    opacity:1;
    overflow:visible;
    height:auto;
    top:40px;
}

.navbar-nav > li > a, .navbarMenu2-el > a {
    color: var(--menu-color);
    font: var(--menu-font);
    background: none;
    padding: 10px;
}

.navbar-nav > li > a:hover, .navbar-nav > li > a:focus, .navbarMenu2-el > a:hover, .navbarMenu2-el > a:focus {
    color: var(--menu-hover-color);
    border-bottom: var(--menu-hover-border);
    text-decoration: none;
    background: none;
}
.navbar-nav > li > a.active, .navbarMenu2-el > a.active {
    color:var(--menu-active-color);
    border-bottom: var(--menu-active-border) !important;
}
.footerMenu .navbar-nav > li > a.active, .footerMenu .navbarMenu2-el > a.active {
    color: var(--footer-links-color);
}

.menu-desktop {
    margin: 0 auto;
    display: inline-block;
    padding-top: 10px;
}

.menu-desktop a.level3 img {
    display: none;
    opacity: 0;
    position: absolute;
    top: 10px;
    right: 15px;
    border: var(--submenu-img-border);
}

.menu-desktop a.level3:hover img {
    display: block;
    opacity: 1;
    transition: opacity 0.5s linear;
}

.menu-desktop .navbarMenu3-el {
    position: static;
    max-width: 650px;
}

.menu-desktop .navbarMenu3-el > a.level3 {
    width: 100%;
    margin: 0 !important;
    padding: 7px 0 2px;
    position: static;
    color: var(--submenu-color) !important;
    font: var(--submenu-font);
    border-bottom: var(--submenu-border) !important;
    display: inline-block;
    text-align: left;
    text-transform: var(--submenu-transform);
}

.menu-desktop .navbarMenu3-el > a.level3:hover, .menu-desktop .navbarMenu3-el > a.level3:focus {
    color: var(--submenu-hover-color) !important;
    border-bottom: var(--submenu-hover-border) !important;
}
.menu-desktop .navbarMenu3-el > a.level3.active {
    color: var(--submenu-active-color) !important;
    border-bottom: var(--submenu-active-border) !important;
}
.nav-tabs {
    border: none;
    margin-bottom: 20px;
}

.nav-tabs>li {
    margin-bottom: -3px;
}

.nav-tabs>li>a {
    border: 0;
    border-bottom: 3px solid #d7d7d7;
    border-radius: 0;
    color: #5f5f5f;
    font: 21px/30px;
    margin: 10px 20px 0 0;
    padding: 0;
    text-transform: uppercase;
}

.nav-tabs>li>a:hover,
.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
    background: none;
    border: 0;
    border-bottom: 3px solid #212121;
    color: #212121;
}

.arrow-top {
    z-index: 100;
    position: fixed;
    right: 0;
    bottom: 50px;
    padding: 17px;
    background: rgba(0, 0, 0, .8);
    opacity: 1;
    pointer-events: auto;
    transition: .5s;
}

.arrow-top.faded {
    opacity: 0;
    pointer-events: none;
}

.arrow-top:hover {
    background: rgba(0, 0, 0, 1);
}

.arrow-top svg {
    fill: #fff;
    height: 32px;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    width: 32px;
}

.filters {
    z-index: 10;
    display: block;
    padding-top: 5px;
}

.filters .input-group-addon {
    background: none;
}

.filter-shift {
    z-index: 1000;
    position: fixed;
    left: 0;
    top: 40%;
    padding: 20px;
    background: rgba(0, 0, 0, .8);
    opacity: 1;
    pointer-events: auto;
    transition: .5s;
}

.filter-shift.faded {
    opacity: 0;
    pointer-events: none;
}

.filter-shift:hover {
    background: rgba(0, 0, 0, 1);
}

.filter-shift svg {
    position: relative;
    top: 5px;
    left: -2.5px;
}

.clear-filters {
    text-transform: uppercase;
    color: rgba(143, 13, 122, 1);
}

.clear-filters:hover,
.clear-filters:focus {
    color: rgba(143, 13, 122, 1);
}

.filters .container {
    width: 100%;
}

.filter-shift:hover {
    cursor: pointer
}

.filters.active {
    display: block;
}

.filters.horizontal>a,
.filters.horizontal>span {
    float: right;
    height: 34px;
    margin: 0 0 10px 10px;
}

.horizontal-filters .col-xs-12>a,
.horizontal-filters .col-xs-12>span>a {
    width: 250px;
    font-family: 'Roboto', sans-serif;
}

.horizontal-filters .filters-el {
    display: inline-block;
    padding: 0;
    vertical-align: top;
    position: relative;
    max-width: 250px;
}

.horizontal-filters .filters-el-btn,
.horizontal-filters .filter-show-btn {
    display: inline-block;
    min-width: 250px;
    text-transform: none;
}

.horizontal-filters .filters-el-dropdown, .filters-el-dropdown {
    position: absolute;
    z-index: 100;
    top: 34px;
    background: white;
    width: 250px;
    margin: 0 auto;
    left: 0;
}

.horizontal-filters .filters-el.active .filters-el-dropdown {
    display: inline-block;
}

.horizontal-filters+div {
    margin: 10px 0!important;
}

.filter-dynamic .well {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: none;
}

.filter-dynamic .container {
    width: 100% !important;
    padding :0 !important;
}

.filters-container {
    max-width: 745px;
    margin: 0 auto;
}

.filters-container .filters-footer-btn {
    width: 250px;
}

.horizontal-filters .col-xs-12 {
    padding: 0 !important;
}

.horizontal-filters .filters-el.active .filters-el-dropdown {
    display: inline-block;
}

.horizontal-filters .filters-footer-btn {
    margin: 10px auto 30px auto;
}

.filter-show-btn {
    vertical-align: top;
    background: white;
    display: inline-block;
    height: 36px;
    line-height: 34px;
    padding: 0 15px;
    padding-left: 50px;
    border: 1px solid #d0d0d0;
    font-size: 18px;
    position: relative;
    color: #000;
}

.filter-show-btn svg {
    transform: scale(.8);
    position: absolute;
    top: 5px;
    left: 15px;
}

h2.header>.filters-el-icon {
    display: block;
    float: left;
    height: 40px;
    margin: 0;
}

.filters .show-filters {
    position: relative;
    top: 10px;
    left: 10px;
    fill: #fff;
}

.filters .show-filters:hover {
    cursor: pointer;
}

.filters.active .show-filters {
    fill: #444444;
}

.filters .show-filters+span+span {
    display: none;
}

.filters.active .show-filters+span+span {
    display: block;
}

.filters .show-filters+span {
    margin-left: 20px;
    position: relative;
    top: 5px;
    font-family: 'Roboto', sans-serif;
    color: #fff;
}

.filters.active .show-filters+span {
    color: #212121;
}

.filters.horizontal>a {
    color: #828d9a;
    font-size: 21px;
    line-height: 34px;
    margin-top: 2px;
}

.filters.horizontal>a:hover {
    color: #d30000;
}

.filters-el-icon {
    background: url() center center no-repeat;
    margin-bottom: 10px;
    width: 34px;
}

.filters-el-icon.clickable {
    opacity: 0.6;
    transition: all 200ms ease-in-out;
}

.filters-el-icon.clickable:hover {
    cursor: pointer;
    opacity: 1;
}

/*
.filters-el-icon.icon-list-grid {
    background-image: url(../img/svg/menu3.svg);
    background-size: 70%;
}

.filters-el-icon.icon-list-rows {
    background-image: url(../img/svg/menu2.svg);
    background-size: 70%;
}
*/

.filter-show-btn.icon-list-grid:after, .filter-show-btn.icon-list-rows:after {
    background: none !important;
}

.filter-show-btn.icon-list-grid, .filter-show-btn.icon-list-rows {
    padding: 0 10px 0 50px;
    display: inline-block;
    cursor: pointer;
}

.filter-show-btn.icon-list-grid {
    background-image: url(../img/icons/menu3.svg) !important;
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: 10px;
    height: 36px;
    display: inline-block;
    float: none;
    margin: 0;
    padding-left: 35px;
    margin-bottom: 10px;
    width: 100%;
}

.filter-show-btn.icon-list-rows {
    background-image: url(../img/icons/menu2.svg) !important;
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: 10px;
    height: 36px;
    display: inline-block;
    float: none;
    margin: 0 auto 1px auto;
    padding-left: 25px;
}

.slider.slider-horizontal {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 15px;
}

.slider-selection {
    background-image: linear-gradient(to bottom, #ddd 0%, #ddd 100%)
}

.slider-handle {
    background-image: linear-gradient(to bottom, #992386 0%, #992386 100%);
}

.slider .tooltip {
    z-index: 10;
}

@media screen and (max-width: 767px) {
    .filters-el-btn.icon-list-grid, .filters-el-btn.icon-list-rows {
        display: inline-block;
        margin-left: 0;
        cursor: pointer;
    }
    .filters-el-btn, .filter-show-btn {
        min-width: 100px !important;
        max-width: 200px !important;
        width: 200px !important;
        height: 36px !important;
        font-size: 14px;
    }
    .colorbox.filter-shift.filter-show {
        display: none;
    }
}


@media screen and (max-width: 621px) {
    .filters-el-btn, .filter-show-btn, .filters-el {
        max-width: 250px !important;
        width: 250px !important;
        height: 36px;
        font-size: 18px;
        margin: 0 auto 3px auto;
        display: block;
        float: none !important;
    }
    .filters #filters-el-price {
        height: 150px !important;
    }
    .filters-el-btn.icon-list-grid {
        margin-bottom: -20px;
        display: inline-block;
        vertical-align: bottom;
    }
    .filters-el-dropdown {
        overflow: hidden;
        height: 0;
        padding: 0;
    }

}

.filters-el-icon.icon-order {
    background-image: url(../img/svg/sort.svg);
    background-size: 75%;
}

.filters-el-icon.icon-features {
    background-image: url(../img/svg/filter.svg);
    background-size: 60%;
}

.filters-el {
    padding: 0 0 10px 0;
    position: relative;
}

.filters .hide-filters {
    position: relative;
    top: 7.5px;
    left: -10px;
    transition: .5s;
    opacity: .5;
}

.filters .hide-filters:hover {
    opacity: 1;
    cursor: pointer;
}

.filters.vertical .filters-el, .filters.vertical .filters-el-btn {
    width: 100%;
    display: block;
    padding-top: 0;
}

.chosen-filters {
    max-height: 400px;
    opacity: 1;
}

.chosen-filters:empty {
    max-height: 0;
    opacity: 0;
    transition: .5s;
}

.input-group-addon {
    background: white;
    border: none;
}

.filters-el-btn {
    background: #fff;
    color: #252525;
    display: block;
    font-family: "Roboto";
    font-size: 18px;
    height: 36px;
    line-height: 34px;
    overflow: hidden;
    padding: 0 42px 0 10px;
    text-transform: none;
    position: relative;
    transition: .5s;
    border: 1px solid #d0d0d0;
}

.filters-el-btn:hover,
.active>.filters-el-btn {
    color: #212121;
}

.filters-el-btn:after {
    background: transparent url(../img/icons/arrow.svg) center center no-repeat;
    content: '';
    display: block;
    height: 24px;
    position: absolute;
    right: 12px;
    top: 5px;
    transition: all 200ms ease-in-out;
    width: 24px;
    opacity: .5;
    -webkit-transform: scale(.7) rotate(90deg);
    -moz-transform: scale(.7) rotate(90deg);
    -o-transform: scale(.7) rotate(90deg);
    transform: scale(.7) rotate(90deg);
}

.filters-el-btn svg {
    display: inline-block;
    vertical-align: middle;
}

.filters-el.active .filters-el-btn:after,
.filters-el-btn.active:after,
.filters-el.activebox .filters-el-btn:after {
    -webkit-transform: scale(.7) rotate(270deg);
    -moz-transform: scale(.7) rotate(270deg);
    -o-transform: scale(.7) rotate(270deg);
    transform: scale(.7) rotate(270deg);
    opacity: 1;
}

.filters.horizontal .filters-el-btn {
    background-color: #fff;
    border: 1px solid #a8b0b9;
    max-width: 220px;
}

.filters-el-btn:hover {
    text-decoration: none;
}

.filters-el-dropdown {
    display: block;
    height: 0;
    overflow: hidden;
    padding: 0 10px;
    opacity: 0;
    border-left: 1px solid #d0d0d0;
    border-right: 1px solid #d0d0d0;
    border-bottom: 1px solid #d0d0d0;
    top: 36px;
}

.filters.horizontal .filters-el-dropdown {
    background: #fff;
    border: 1px solid #d5d5d5;
    left: 0;
    padding: 0 10px;
    position: absolute;
    top: 36px;
    width: 250px;
    z-index: 10;
}

.filters-el {
    position: relative;
}

.filters.vertical .filters-el-dropdown {
    position: absolute;
    width: auto;
    z-index: 100;
    background: white;
    padding: 0 10px;
    right: 0;
    left: 0;
}

.filters.vertical .filters-el-dropdown.active, .filters.vertical .filters-el-dropdown.open, .horizontal-filters .filters-el-dropdown.active {
    padding: 10px;
}
.filters-button {
    display: none;
}

.filters-el.active .filters-el-dropdown,
.filters-el.activebox .filters-el-dropdown {
    display: block;
}

.filters-el-dropdown-search {
    margin-bottom: 10px;
}

.filters-el-dropdown-search>input {
    border-color: #d5d5d5;
    border-radius: 0;
    box-shadow: none;
    height: 34px;
}

.filters-el-dropdown-list {
    /*max-height: 180px;*/
    overflow: auto;
}

.filters-el-dropdown-list-el {
    margin-top: 10px;
    padding-left: 30px;
    position: relative;
}

.filters-el-dropdown-list-el:first-child {
    margin-top: 0;
}

.filters-el-dropdown-list-el>a {
    color: #212121;
    font-size: 16px;
    display: block;
    text-align: left;
}

.filters-el-dropdown-list-el>span {
    background: url(../img/filters-icons.png) no-repeat;
    position: absolute;
    height: 19px;
    left: 0;
    top: 0;
    width: 19px;
}

.filters-el-dropdown-list-el>span:hover {
    cursor: pointer;
}

.filters-el-dropdown-list-el[data-type="checkbox"]>span {
    background-position: 0px 0px;
}

.filters-el-dropdown-list-el.active[data-type="checkbox"]>span {
    background-position: 0px -19px;
}

.filters-el-dropdown-list-el[data-type="radio"]>span {
    background-position: -19px 0px;
}

.filters-el-dropdown-list-el.active[data-type="radio"]>span {
    background-position: -19px -19px;
}

#filters-el-menu .filters-el-dropdown-list-el.active {
    background: rgba(143, 13, 122, 1);
}

#filters-el-menu .filters-el-dropdown-list-el.active a {
    color: #fff;
}

#filters-el-menu .filters-el-dropdown, #filters-el-menu .filters-el-dropdown-list {
    overflow: hidden !important;
    max-height: 2000px;
}

.filters-el-dropdown-btn {
    margin-top: 10px;
}

.filters-el-dropdown-btn>.btn {
    background-color: #212121;
    border-color: #212121;
}

.filters-footer {
    padding: 10px 0;
    text-align: center;
    width: 100%;
}

.filters-footer a {
    display: inline-block;
}

.filters-footer .btn-transparent {
    color: #fff;
    padding-right: 20px;
}

.filters-footer .btn-blue {
    background-color: #212121;
}

#filters-footer-fixed {
    padding-top: 100px;
    width: 100% !important;
}

.filters-tags {
    display: inline-block;
}

.filters-tags>span {
    display: inline-block;
    font-size: 15px;
    line-height: 30px;
    margin: 0 5px 10px 5px;
    padding: 5px;
    text-transform: uppercase;
}

#filters-tags>span:hover {}

#filters-tags>span>span {
    color: #828d9a;
    display: block;
    float: right;
    font-size: 21px;
    margin: 2px 0 0 2px;
    padding: 0 5px;
}

#filters-tags>span>span:hover {
    color: #d30000;
    cursor: pointer;
}

.icon-pdf {
    background-image: url(../img/pdf_ico.png);
    width: 25px;
    height: 25px;
    display: inline-block;
}

.pagesMenu {
    padding: 10px 20px;
}

.pagesMenu ul {
    list-style: none;
    margin: 0;
}

.pagesMenu ul li {
    margin: 5px 0;
}

.pagesMenu ul li a {
    color: #212121;
    text-transform: uppercase;
}

.pagesMenu ul li a.active,
.pagesMenu ul li a:hover {
    color: #d30000;
}

.pagesMenu ul.level2 {
    padding: 0;
}

.pagesMenu ul.level2>li>a {
    font-size: 18px;
}

.pageHeader {
    padding: 20px;
}

.pageHeader h1 {
    color: #fff;
    font-size: 21px;
    margin: 0;
}

.pageHeader img {
    margin-top: 20px;
}

.pageContent {
    overflow: hidden;
    padding: 20px;
    font: var(--page-font);
    color: var(--page-color);
}

.pageContent p {
    font: var(--page-p-font);
    color: var(--page-p-color);
}

.pageContent span {
    background: none !important;
    font: var(--page-font);
}

.pageContent h2, .pageContent h2 span {
    font: var(--page-h2-font);
    color: var(--page-h2-color);
}

.pageContent h3, .pageContent h3 span {
    font: var(--page-h3-font);
    color: var(--page-h3-color);
}

.pageContent h4, .pageContent h4 span {
    font: var(--page-h4-font);
    color: var(--page-h4-color);
}

.pageContent h5, .pageContent h5 span {
    font: var(--page-h5-font);
    color: var(--page-h5-color);
}
.pageContent h2 {
    margin-top: var(--page-h2-margin-top);
    margin-top: var(--page-h2-margin-bottom);
}
.pageContent h3 {
    margin-top: var(--page-h3-margin-top);
    margin-bottom: var(--page-h3-margin-bottom);
}
.pageContent h4 {
    margin-top: var(--page-h4-margin-top);
    margin-top: var(--page-h4-margin-bottom);
}
.pageContent h5 {
    margin-top: var(--page-h5-margin-top);
    margin-top: var(--page-h5-margin-bottom);
}
.pageContent img {
    max-width: 100%;
    display: inline-block !important;
}

.pageContent a, .pageContent a span {
    color: var(--page-link-color);
    font: var(--page-link-font);
}
.pageContent a:hover, .pageContent a:hover span {
    color: var(--page-link-hover-color);
}
.pageBigBox {
    position: relative;
    padding: 10px;
    background: white;
}

.pageBigBox .pageBigBoxContent {
    transition: .5s;
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
}

.pageBigBox:hover .pageBigBoxContent {
    -webkit-filter: brightness(70%);
    filter: brightness(70%);
}

.pageBigBoxContent {
    background: url() center center no-repeat;
    background-size: cover;
    position: relative;
}

.pageBigBoxContent>div {
    background: rgba(255, 255, 255, 1);
    bottom: 0;
    left: 0;
    padding: 10px 10px 0 10px;
    position: absolute;
    right: 0;
}

.pageBigBoxContent>div>h3 {
    color: #333;
    font-size: 24px;
    line-height: 30px;
    margin: 0 0 10px 0;
    text-align: center;
}

.pageBigBoxContent>div>p {
    color: #333;
    font-size: 16px;
    line-height: 20px;
    margin: 0 0 10px 0;
    max-height: 0;
    overflow: hidden;
    text-align: justify;
    transition: all 200ms;
}

.pageBigBoxContent:hover>div>p {
    max-height: 100px;
}

.pageBigBoxFooter {
    background: #fff;
    padding: 5px 10px;
}

.pageBigBoxFooter h3 {
    margin: 5px 0;
    min-height: 46px;
}

.pageBigBoxFooter h3 a {
    color: #9d168d;
    text-transform: uppercase;
}

.pageBigBoxFooter .limited-paragraph {
    height: 130px;
    overflow: hidden;
    margin-bottom: 10px;
}

.pageBigBoxFooter .limited-paragraph span {
    font-size: 16px !important;
}

.pageBigBoxFooter .limited-paragraph+span {
    font-size: 14px;
}

.pageBigBoxFooter a,
.pageBigBoxFooter span {
    font-size: 18px;
}

.pageTallBox {
    background: #fff;
    color: #212121;
    position: relative;
    transition: all 200ms ease-in-out;
}

.pageTallBox:hover {
    -webkit-box-shadow: 1px 2px 18px 2px rgba(156,153,156,1);
    -moz-box-shadow: 1px 2px 18px 2px rgba(156,153,156,1);
    box-shadow: 1px 2px 18px 2px rgba(156,153,156,1);
}

.pageTallBoxImage {
    background: url() center center no-repeat;
    background-size: cover;
    height: auto;
}

.pageTallBoxContent {
    padding: 10px 15px;
    text-align: center;
    height: 250px;
    overflow: hidden;
    text-align: justify;
}

.pageTallBoxContent a {
    //font: 18px/24px;
    font-size: 23px;
    //height: 72px;
    line-height: 1.2;
    margin: 0;
    overflow: hidden;
    color: #14a884;
    font-weight: 500;
    text-align: left;
}

.big-page-box .responsive-1x1::before {
    padding-top: 350px;
}

.big-page-box .pageTallBoxContent {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 150px;
    background: rgba(35, 57, 66, 0.7);
    color: #fff;
    text-align: justify;
    overflow: hidden;
}

.big-page-box .pageTallBoxImage {
    height: 350px;
}

.big-page-box .pageTallBoxContent h3 {
    color: #14a884;
    font-weight: 600;
    height: auto;
    margin-bottom: 20px;
    text-align: left    ;
}
.pageTallBoxContent {
    font: var(--pageBox-font);
    color: var(--pageBox-color);
    text-align: left;
}
.pageTallBoxContent h2 a {
    margin-bottom: 20px !important;
    font: var(--pageBox-header-font);
    color: var(--pageBox-header-color);
}

.pageTallBoxContent h2 a:hover {
    color: var(--pageBox-header-hover-color);
}

@media screen and (max-width: 940px) {
    .pageTallBoxContent {
        height: 350px;
    }
    .big-page-box .pageTallBoxContent {
        height: 180px;
    }
}

@media screen and (max-width: 600px) {
    .big-page-box .pageTallBoxContent {
        height: 200px;
        line-height: 1.1;
    }
}

@media screen and (max-width: 500px) {
    .big-page-box .pageTallBoxContent {
        height: 250px;
        line-height: 1;
    }
}

@media screen and (max-width: 400px) {
    .big-page-box .pageTallBoxContent {
        height: auto;
        top: 20px;
    }
}

.pageWideBox {
    background: #fff;
    color: #212121;
    position: relative;
    transition: all 200ms ease-in-out;
}

.pageWideBox:hover {
    background: #212121;
    color: #fff;
}

.pageWideBoxImage {
    background: url() center center no-repeat;
    background-size: cover;
    height: 240px;
}

.pageWideBoxContent {
    height: 200px;
    overflow: hidden;
    margin: 20px 20px 20px 0;
}

.pageWideBoxContent h3 {
    font-size: 21px;
    line-height: 24px;
    margin: 0 0 12px 0;
}

.pageWideBoxContent p {
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    text-align: justify;
}

.productBox {}

.productBox:before {
    height: 500px;
}


/*
.productBox > .responsive-image {
	bottom: 60px;
	top: 90px;
}
*/

.productBoxPromo {
    height: 35px;
    overflow: hidden;
    padding: 0 10px;
    text-align: center;
}

.productBoxPromo>span {
    color: #fff;
    font: 16px/35px;
    text-transform: uppercase;
}

.box {
  bordeR: 1px solid #d7d7d7;
}

.productBoxHeader {
    /*left: 0;
    padding: 10px 10px;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 200ms ease-in-out;
    z-index: 3;*/
    position: relative;
    height: 60px;
    padding: 20px 10px;
    border-bottom: 1px solid #d7d7d7;
}

.productBoxHeader>a {
    color: #212121;
    display: block;
    font: 16px/22px;
    max-height: 22px;
    overflow: hidden;
    text-align: center;
    text-transform: uppercase;
    transition: all 200ms ease-in-out;
}

.productBoxHeader>.ico-promo {
    bottom: -40px;
    position: absolute;
    right: 0;
}

.productBoxHeader>.ico-clipboard {
    background: url(../img/icons/favorite.svg) center center no-repeat;
    background-size: 100%;
    bottom: -40px;
    display: block;
    top: 50px;
    left: 50px;
    height: 30px;
    opacity: 0.5;
    position: absolute;
    transition: all 200ms;
    width: 30px;
}

.productBoxHeader>.ico-clipboard.active {
    background: url(../img/icons/favorite-purple.svg) center center no-repeat;
    cursor: pointer;
    opacity: 1;
}

.productBoxHeader>.ico-clipboard:hover {
    cursor: pointer;
    opacity: 1;
}

.productBoxFooter h4.price {
  color: red;
}

.productBoxFooter {
    bottom: 12.5px;
    left: 0;
    position: relative;
    right: 0;
    z-index: 3;
    background: white;
    transition: .3s;
}

.productBoxFooter>div,
.productBoxFooter>h4 {
    margin: 8px 0 0 0;
}

.productBoxFooter>h4 {
    font-size: 18px;
    height: 1.4em;
    line-height: 1.4em;
    overflow: hidden;
}

.productBoxFooter>div {
    height: 30px;
}

.productBoxFooter .badges {
  height: auto;
}

.productBoxFooter>div.amount-in-tile {
    height: 25px;
}

.productBoxFooter>div.amount-in-tile.small {
    height: 40px;
}

.productBoxFooter>div.amount-in-tile>span {
    white-space: nowrap;
}

.productBoxFooter>div.tile-add-to-cart {
    height: 45px;
}

.productBoxFooterPrice {
    background: #fff;
}

.productBoxFooter span.btn-white {
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.2);
    font-size: 21px;
}

.productBoxFooter span.btn-white>span.old {
    color: #818b97;
    display: block;
    font-size: 0.7em;
    text-decoration: line-through;
}

.productBoxFooter span.btn-blue {
    font-size: 18px;
}

.productBoxFooter span.btn-grey>img {
    height: 24px;
    width: 24px;
    opacity: 0.5;
}

.productBoxFooter span.btn-grey.active img {
    opacity: 1;
}

.box .productBoxFooter {
  height: 200px;
}
.box .productBoxFooter:hover .productRowFeatures {
  height: 0 !important;
  overflow: hidden;
  transition: 0.5s;
}
.box .productBoxFooter .productRowFeatures {
  height: 70px !important;
  overflow: hidden;
  transition: 0.5s;
}
.box .productBoxFooter .tile-add-to-cart {
  opacity: 1;
}

@media screen and (max-width: 990px) {
    .box .productBoxFooter .productRowFeatures {
      height: 70px !important;
      overflow: hidden;
      transition: 0.5s;
    }
    .box .productBoxFooter {
      height: 250px;
    }
    .box .productBoxFooter:hover .productRowFeatures {
      height: 70px !important;
      overflow: hidden;
      transition: 0.5s;
    }
}

.productRow {
    padding: 20px 10px;
}

.productRowTitle {
    margin: 5px 0 10px 0;
}

.productRowTitle>a {
    font: 21px/30px;
    text-transform: uppercase;
}

.productRowInfo {
    margin-bottom: 20px;
}

.productRowInfo a,
.productRowInfo span {
    margin-left: 10px;
}

.productRowInfo span {
    color: #212121;
    font: 500 16px/21px;
}

.productRowInfo span:first-child {
    margin-left: 0;
}

.productRowInfo .green {
    color: #70ac13;
}

.productRowInfo .purple {
    color: #9d168d;
}

.productRowFeatures {
    overflow: hidden;
    height: 70px !important;
    margin-bottom: 30px !important;
}

.productRowFeatures p {
    color: #7d8794;
    margin-bottom: 5px;
}

.productRowPrice {}

.productRowPrice table {
    width: auto;
}

.productRowPrice table td {
    padding: 0 5px;
    vertical-align: bottom;
}

.productRowPrice1 {
    color: #212121;
    font: 18px/23px;
}

.productRowPrice2 {
    color: #212121;
    font: 500 31px/31px;
}

.productRowPrice2 span.old {
    color: #818b97;
    display: block;
    font-size: 0.7em;
    text-decoration: line-through;
}

.productRowButtons {
    margin-top: 20px;
}

.productRowButtons .btn {
    line-height: 40px;
}

.productRowButtons span.btn-blue {
    font-size: 18px;
}

.productRowButtons span.btn-grey>img {
    height: 24px;
    width: 24px;
    opacity: 0.5;
}

.productRowButtons span.btn-grey.active img {
    opacity: 1;
}

#productTab2 a {
    color: #9f018c;
}

.productTabRowTitle a {
    font: 500 18px/24px;
}

.productTabRowPrice b {
    font: 500 21px/24px;
}

.productTabRowPrice strike {
    color: #7d8794;
    font: 500 18px/24px;
}

.productDetailsInfo {
    color: #536071;
    font: 16px/20px;
}

.productDetailsInfo>.pull-left>span {
    margin-left: 20px;
}

.productDetailsInfo>.pull-left>span:first-child {
    margin-left: 0;
}

.productDetailsInfo>.pull-right {}

.productDetailsRatings {
    margin-bottom: 10px;
    color: #212121;
}

.productDetailsRatings>span {
    display: inline-block;
    vertical-align: middle;
}

.productDetailsRatings>span:first-child {
    margin-left: 0;
}

.productDetailsRatings .text-blue {
    color: #006cff;
}

.productDetailsPrice {}

.productDetailsPrice1 {
    color: #212121;
    font: 18px/21px;
    margin-bottom: 10px;
}

.productDetailsPrice2 {
    color: #212121;
    font: 500 16px/21px;
    margin-bottom: 20px;
}

.productDetailsPrice2 p {}

.productDetailsPrice2 b {
    font: 500 31px/21px;
}

.productDetailsPrice2 a,
.productDetailsPrice2 span {
    margin-left: 10px;
}

.productDetailsPrice2 span:first-child {
    margin-left: 0;
}

.productDetailsPrice2 .green {
    color: #70ac13;
}

.productDetailsPrice2 .purple {
    color: #9d168d;
}

.productDetailsPrice3 {
    text-align: right;
}

.productDetailsActions {}

.productDetailsAction1 {
    padding-top: 15px;
    text-align: center;
}

.productDetailsAction1>input {
    border: 1px solid #ccc;
    box-shadow: none;
    color: #212121;
    font-size: 28px;
    opacity: 0.8;
    text-align: center;
    width: 60px;
}

.productDetailsAction1>input:focus {
    border-color: #626e7e;
    box-shadow: none;
    opacity: 1;
    outline: none;
}

.productDetailsAction1>.glyphicon {
    color: #212121;
    font-size: 28px;
    margin: 0 10px;
    opacity: 0.5;
}

.productDetailsAction1>.glyphicon:hover {
    opacity: 1;
}

.productDetailsAction2 .btn {
    display: block;
    line-height: 40px;
    overflow: hidden;
    padding: 15px 15px;
}

.productDetailsAction2 .btn img {
    height: 32px;
    margin-right: 20px;
    opacity: 0.8;
    transition: all 200ms;
    width: 32px;
}

.productDetailsAction3 .btn {
    display: block;
    font-size: 16px;
    line-height: 20px;
    overflow: hidden;
    padding: 5px 15px;
    margin-bottom: 6px;
}

.productDetailsAction3 .btn img {
    height: 16px;
    margin-right: 15px;
    opacity: 0.8;
    transition: all 200ms;
    width: 16px;
}

.productDetailsAction2 .btn:hover img,
.productDetailsAction3 .btn:hover img {
    opacity: 1;
}

.productDetailsFeatures table {}

.productDetailsFeatures table tr td {
    border-bottom: 1px solid #d9d9d9;
    color: #212121;
    font-size: 16px;
    line-height: 24px;
    padding: 5px;
    vertical-align: top;
}

.productDetailsFeatures table tr td span {
    margin-right: 10px;
    white-space: nowrap;
}

.productDetailsDelivery select {
    margin-bottom: 10px;
}

.productDetailsDelivery table {
    border-bottom: 1px solid #d9d9d9;
}

.productDetailsDelivery table tr td {
    border-top: 1px solid #d9d9d9;
    color: #212121;
    font-size: 16px;
    line-height: 24px;
    padding: 5px 10px;
    vertical-align: top;
}

.productDetailsDelivery table tr.no-border td {
    border: none;
}

.productDetailsDelivery table tr td.text-right {}

.productDetailsButtons {}

.productDetailsOptions {}

.productDetailsOptions table {
    width: 100%;
}

.productDetailsOptions table tr td {
    color: #212121;
    font: 500 18px/24px;
    padding: 5px 10px;
}

.productDetailsOptions table tr:hover td {
    background: #fafafa;
}

#cboxLoadedContent .product-features {
    display: none
}

.productDetailsTabs .tab-content {}

.productDetailsCategories {
    margin-bottom: 10px;
}

.productDetailsCategories a {}

.rating {
    overflow: hidden;
    display: inline-block;
    font-size: 0;
    position: relative;
}

.rating-input {
    float: right;
    height: 24px;
    margin: 0 0 0 -24px !important;
    opacity: 0;
    padding: 0;
    width: 24px;
}

.rating:hover .rating-star:hover,
.rating:hover .rating-star:hover~.rating-star,
.rating-input:checked~.rating-star {
    background-image: url(../img/icons/star-3.svg);
}

.rating-star,
.rating:hover .rating-star {
    background: url(../img/icons/star-5.svg) 0 0 no-repeat;
    display: block;
    float: right;
    height: 24px;
    position: relative;
    transition: all 200ms ease-in-out;
    width: 30px;
}

.rating-star:hover {
    cursor: pointer;
}

#reviews-form {
    border-bottom: 1px solid #d7d7d7;
    padding: 0 0 20px 0;
}

#reviews-form .rating {
    padding-top: 7px;
}

#reviews-list {}

.reviews-list-el {
    border-bottom: 1px solid #d7d7d7;
    padding: 20px 0;
}

.reviews-list-el-header {}

.reviews-list-el-content {
    padding: 1em 0;
}

.reviews-list-el-footer {}

.reviews-list-el-footer .stars {
    margin-top: 7px;
}

.reviews-list-el-footer .vote-up .glyphicon,
.reviews-list-el-footer .vote-down .glyphicon {
    margin-right: 10px;
}

.reviews-list-el-footer a.vote-up .glyphicon {
    color: #70ac13;
}

.reviews-list-el-footer a.vote-down .glyphicon {
    color: #d30000;
}

.cart-link {
    display: block;
    font-family: "Roboto";
}

.cartChangeAmount {
    width: 30px;
    text-align: center;
}

.cartTable>thead>tr>th {
    color: #333;
    font-weight: normal;
    font: 16px/21px;
    padding: 5px 10px;
    text-transform: uppercase;
}

.cartTable>tbody>tr>td {
    color: #212121;
    font: 500 16px/21px;
    vertical-align: middle;
}

.cartTable>tbody>tr>td.no-border {
    border: none;
}

.cartTable>tbody>tr:hover>td {
    background: #fafafa;
}

.cartTable>tbody>tr>td.col2>.responsive-container {
    width: 120px;
}

.cartTable>tbody>tr>td.col3 {
    /*font-size: 18px;*/
}

.cartTable>tbody>tr>td.col8 {
    width: 120px;
}

.cartTable>tbody>tr>td.col8>input {
    color: #212121;
    opacity: 0.8;
    text-align: center;
    width: 40px;
}

.cartTable>tbody>tr>td.col8>input:focus {
    opacity: 1;
}

.cartTable>tbody>tr>td.col8>.glyphicon {
    color: #212121;
    margin: 0 5px;
    opacity: 0.5;
}

.cartTable>tbody>tr>td.col8>.glyphicon:hover {
    opacity: 1;
}

.cartTable>tbody>tr>td.col11>.glyphicon {
    color: #d30000;
}

.cartTable>tfoot>tr>td {
    border-top: none;
    color: #212121;
    font: 500 16px/21px 'Roboto';
    vertical-align: middle;
}

.cartTable>tfoot>tr>td.no-border {
    border: none;
}

.cartMethodsSummary .text-left {
    font: 500 18px/28px;
    text-transform: uppercase;
}

.cartMethodsSummary .text-right {
    font: 500 24px/28px;
}

.cartSubmit h2,
.cartSubmit h3 {
    display: inline-block;
    line-height: 62px;
    margin: 0 20px 0 0;
    vertical-align: middle;
}

.cartHeaders h3 {
    margin: 0 0 10px 0;
    text-transform: uppercase;
    font-family: "Roboto";
}

.cartHeaders h5 {
    margin: 0;
    text-transform: uppercase;
    font-family: "Roboto";
}

.cartDiscounts {
    padding: 20px 0;
}

.cartDiscounts .blog-title {
    color: #000;
    background: none;
}

.cartDiscountsForm {
    margin: 0 0 20px 0;
}

.cartDiscountsForm table {
    width: auto;
}

.cartDiscountsForm table td {
    padding: 0 20px 0 0;
}

.cartDiscountsForm h5 {
    text-transform: uppercase;
    margin: 0;
    font-family: "Roboto";
}

.cartDiscountsList h5, .cartDiscountsListAll h5 {
    margin: 0 0 20px 0;
    text-transform: uppercase;
    font-family: "Roboto";
}

.cart-radio {
    border-top: 1px solid #e3e3e3;
}

.cart-radio .radio {
    margin: 0;
}

.cart-radio label {
    border-bottom: 1px solid #e3e3e3;
    display: block;
    padding: 20px;
    transition: all 100ms;
}

.cart-radio label:hover {
    background-color: #fafafa;
}

.cart-radio input[type=radio] {
    margin-left: 0;
}

.cart-radio label span {
    display: inline-block;
    margin-left: 40px;
    text-transform: uppercase;
}

.cart-radio label span b {
    color: #006cff;
    margin-right: 20px;
}

.order-header {
    margin-bottom: 40px;
    text-align: center;
}

.order-header h2 {
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.order-header p {
    margin: 0 0 20px 0;
}

.order-header a.btn {
    padding: 20px 100px;
}

.order-radio label {
    display: block;
    padding: 15px;
    transition: all 100ms;
    width: 100%;
}

.order-radio label:hover {
    background: rgb(232, 232, 232);
    //color: #fff;
}

.order-radio input[type=radio] {
    margin-left: 0;
}

.order-radio input[type=radio]:checked+span {}

.order-radio label span {
    display: inline-block;
    margin-left: 35px;
    //width: calc(100% - 40px);
}

.order-radio label span b {
    float: right;
    text-align: right;
    display: inline-block;
    width: auto;
}

div.required .order-radio label::after {
  position: absolute;
  left: 80px;
}

.order-radio .description {
  margin: 0 !important;
  padding-left: 105px !important;
}

.order-radio span.label-text {
    width: 100%;
}
.order-radio span.label-text span {
    width: calc(100% - 100px);
}

.order-radio label:hover {
  color: #212121 !important;
}

.order-radio .description {
    margin: 10px 15px 10px 50px;
}

.description hr {
    border-top: 1px solid #d9d9d9;
}

.orderSummaryCartTable table {
    width: 100%;
}

.orderSummaryCartTable table td {
    font: 18px/24px;
    padding: 0 0 20px 20px;
    vertical-align: middle;
}

.orderSummaryCartTable table td.image {
    padding-left: 0;
    width: 120px;
}

.orderSummaryCartTable table td.image .responsive-container {
    width: 120px;
}

.historyTable>thead>tr>th {
    border-bottom: 0;
    color: #8693a2;
    font: 16px/21px 'Roboto';
    padding: 5px 10px;
    text-transform: uppercase;
}

.historyTable>tbody>tr>td {
    border-top: 3px solid #EBEFF3;
    color: #212121;
    font: 500 16px/21px;
    padding: 10px 10px;
    vertical-align: middle;
}

.historyTable>tbody>tr:hover>td {
    background: #fafafa;
}

.underline:hover {
    text-decoration: underline;
}

.userDocumentsFilters {
    margin-bottom: 20px;
}

.userDocumentsFilters input,
.userDocumentsFilters select {
    display: block;
    font-size: 16px;
    height: 60px;
    max-width: none;
    text-transform: uppercase;
}

.userDocumentsList {
    text-transform: uppercase;
}

.userDocumentsList .green {
    color: #6faf03;
}

.userDocumentsList .purple {
    color: #9d168d;
}

.userDocumentsList .red {
    color: #d30000;
}

.userDocumentsList>.table>thead>tr>th {
    border-bottom: 4px solid #d6dadd;
    font-weight: 400;
    padding: 10px;
}

.userDocumentsList>.table>tbody>tr.userDocumentsRow1>td {
    border: none;
    padding: 15px 10px;
}

.userDocumentsList>.table>tbody>tr.userDocumentsRow1>td>.glyphicon-menu-down {
    display: none;
}

.userDocumentsList>.table>tbody>tr.userDocumentsRow1>td>.glyphicon-menu-up {
    display: inline-block;
}

.userDocumentsList>.table>tbody>tr.userDocumentsRow1.collapsed>td>.glyphicon-menu-up {
    display: none;
}

.userDocumentsList>.table>tbody>tr.userDocumentsRow1.collapsed>td>.glyphicon-menu-down {
    display: inline-block;
}

.userDocumentsList>.table>tbody>tr.userDocumentsRow1:hover>td {
    background: #fafafa;
}

.userDocumentsList>.table>tbody>tr.userDocumentsRow1>td:hover {
    cursor: pointer;
}

.userDocumentsList>.table>tbody>tr.userDocumentsRow2>td {
    border: none;
    padding: 0;
}

.userDocumentsRow2>td>div,
.userDocumentsRow2 {
    background: #fff;
    border: 1px solid #85898c;
}

.userDocumentsRow2 .table>thead>tr>th {
    border-bottom: none;
}

.navbarIconBox table>thead>tr>th {
    border: none;
    border-image-width: 0 !important;
}

.userDocumentsRow2>td>div hr,
.userDocumentsRow2>hr {
    margin: 10px 0;
}

.userDocumentsRow2>td>div table h3,
.userDocumentsRow2>table h3 {
    margin: 10px 0;
}

.userDocumentsRow2>td>div table th,
.userDocumentsRow2>table th {
    background: #e1e5e8;
    font-weight: 400;
}

.userDocumentsRow2>td>div table th,
.userDocumentsRow2>td>div table td,
.userDocumentsRow2 table th,
.userDocumentsRow2 table td {
    padding: 10px;
}

.userDocumentsRow2 .responsive-1x1::before {
    padding-top: 70%;
}

.userDocumentsRow2 .responsive-image {
    padding-left: 10px;
}

#userDocumentsGrid .summary {
    display: none;
}


.btn-cart {
    background: #0075ef;
    width: 100%;
    padding: 15px 0;
    font-size: 18px;
    color: white;
    border-radius: 0px;
    border: none;
    text-transform: uppercase;
}

.compare .buttons {
    display: none;
    margin: 0 0 30px 0;
}

.compare .btn-group .btn {
    font-size: 16px;
    padding: 5px;
}

.compare .btn-group .btn.active {
    background-color: #007ce8;
    border-color: #007ce8;
}

.compare table {
    border-collapse: separate;
    border-spacing: 10px 0;
}

.compare table tr.row-hidden {
    display: none;
}

.compare table td {
    background: #fff;
    border-color: #d4d7db;
    border-style: solid;
    border-width: 1px 1px 0px 1px;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    width: 20%;
}

.compare table tr:first-child td {
    vertical-align: top;
}

.compare table tr:first-child td:first-child {
    background: none;
    border-width: 0;
}

.compare table tr:last-child td {
    border-width: 1px;
    vertical-align: top;
}

.compare table tr:last-child td:first-child {
    background: none;
    border-width: 1px 0 0 0;
}

.compare table td h3 {
    color: #007ce8;
    font-size: 24px;
    margin: 0 0 10px 0;
}

.compare table td h4 {
    font-size: 28px;
    font-weight: 600;
    margin: 10px 0;
}

.compare table td h5 {
    font-size: 21px;
    margin: 10px 0;
    text-decoration: line-through;
}

.categoryBoxFooter {
    background: rgba(61, 76, 95, 0.9);
    border-top: 1px solid #ebeff3;
    bottom: 0;
    left: 0;
    padding: 5px 10px;
    position: absolute;
    right: 0;
    z-index: 3;
    text-align: center;
}

.categoryBoxFooter a {
    color: #fff;
    display: block;
    font: 16px/35px 'Roboto';
    text-transform: uppercase;
}

.footer-icons {
    width: 100%;
}

.footer-icons td {
    background: rgba(239, 239, 239, 0.9);
    border: 1px solid #d2d2d2;
    font-size: 18px;
    padding: 20px;
    text-align: center;
    text-transform: uppercase;
    transition: all 200ms;
    vertical-align: top;
}

.footer-icons td:hover {
    background: rgba(239, 239, 239, 1);
}

.footer-icons td>svg {
    height: 64px;
    margin-bottom: 10px;
    width: 64px;
}

.footer-icons td>svg>path {
    transition: all 200ms;
}

.footer-icons td:hover>svg>path {
    fill: #d30000;
}

.categories-footer {
    background: #505050;
    padding: 30px 0;
    text-align: center;
}

.categories-footer * {
    color: #fff;
}

.categories-footer .btn {
    color: #000;
}

.bg-newsletter {
    background: #787878;
    transition: all 300ms;
}

.bg-newsletter:hover {}


.contact-row .contactBox h4, .form-contact h4 {
    color: var(--headers-contact-color);
    font: var(--headers-contact-font);
    text-transform: var(--headers-contact-transform) !important;
    padding-bottom: 30px;
}
.form-contact h4 {
    margin-bottom: 0;
}
.contact-row .contactBox * {
    color: var(--contact-color);
    font: var(--contact-font);
}

.newsletter-form {
    margin: 0 auto;
    width: auto;
    text-align: center;
}

.newsletter-form td {
    padding: 0 10px;
    vertical-align: top;
}

.newsletter-form h3 {
    color: #fff;
    font-size: 28px;
    margin: 0;
}

.newsletter-form h5 {
    color: #fff;
    font-size: 18px;
    margin: 20px 0 0 0;
    font-family: "Roboto";
}

.newsletter-form .form-control::-webkit-input-placeholder {
    color: white;
    transition: .5s
}

.newsletter-form .form-control:-moz-placeholder {
    color: white;
    transition: .5s
}

.newsletter-form .form-control::-moz-placeholder {
    color: white;
    transition: .5s
}

.newsletter-form .form-control:-ms-input-placeholder {
    color: white;
    transition: .5s
}

.newsletter-form p {
    color: #fff;
    font-size: 16px;
}

.newsletter-form input.form-control {
    background: none;
    border-color: #fff;
    color: #fff;
    text-align: center;
    width: 302px;
    margin: 10px auto;
    transition: all 200ms;
}

.newsletter-form input.form-control::-webkit-input-placeholder,
.newsletter-form input.form-control::-moz-placeholder,
.newsletter-form input.form-control:-ms-input-placeholder,
.newsletter-form input.form-control:-moz-placeholder {
    color: #fff;
    transition: .5s;
}

.newsletter-form label {
    color: #fff;
    font: 16px 'Roboto';
    margin: 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.1;
}

.newsletter-form label input[type=checkbox] {
    margin: 0;
    margin-left: -10px;
    left: 0;
    position: absolute;
    top: 0;
    vertical-align: top;
}

.rodo-row {
    width: 302px;
    margin: 0 auto 0 auto;
    line-height: 1;
    height: auto;
    overflow: hidden;
}

.rodo-row .checkbox {
    margin: 0;
    margin-bottom: 10px;
}

.newsletter-page label {
    color: #000;
}

.bg-social {
    background: #d5d5d5;
}

.bg-social a {
    color: #969696;
    display: block;
    float: left;
    height: 110px;
    overflow: hidden;
    padding: 30px 10px;
    text-align: center;
    width: 25%;
}

.bg-social a:hover {
    text-decoration: none;
}

.bg-social a img {
    display: inline-block;
    height: 50px;
    transition: all 500ms ease-in-out;
    vertical-align: middle;
    width: 50px;
    opacity: .5;
}

.bg-social a:hover img {
    opacity: 1;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
}

.bg-social a span {
    display: inline-block;
    height: 50px;
    line-height: 25px;
    max-width: 0%;
    overflow: hidden;
    text-align: left;
    transition: all 300ms ease-in-out;
    vertical-align: middle;
}

.bg-social a:hover span {
    padding: 0 0 0 10px;
    max-width: 100%;
}

#cookies {
    background-color: var(--cookies);
    bottom: 0;
    left: 0;
    padding: 10px 45px 10px 10px;
    position: fixed;
    right: 0;
    text-align: left;
    z-index: 3000;
}

.cookies-text {
    color: #fff;
    float:left;
}

.cookies-text>div {
    display: inline-block;
    padding: 0 10px;
    font-size: 1.5em;
    position: relative;
    top: 2px;
}

.cookies-text a {
    color: #fff;
    text-decoration: underline;
}

.cookies-close {
    opacity: 0.8;
    right: 9px;
    top: 9px;
    transition: opacity 200ms;
    margin-left:5px;
}

.cookies-close:hover {
    opacity: 1;
}

.bg-footer {
    background-color: var(--footer-bck);
    position: relative;
}

.bg-footer:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45%;
    height: 10px;
    background: var(--footer-line);
}

.bg-footer h3 {
    color: var(--footer-headers-color);
    font-size: 18px;
    margin: 0 0 20px 0;
    font-family: var(--footer-headers-font-family);
    text-transform: uppercase;
}

.bg-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.bg-footer ul ul {}

.bg-footer ul li {
    display: block;
    list-style: none;
    margin: 0 0 0px 0;
    padding: 5px 0;
    overflow: hidden;
}

.bg-footer ul li.level3 {
    padding-top: 1px;
}

.bg-footer ul li a {
    color: var(--footer-links-color);
    padding: 0;
    margin: 0;
    text-align: left;
    font: var(--footer-links-font);
    text-decoration: var(--footer-links-decoration) !important;
    /* border-bottom: var(--footer-links-border); */
}

.bg-footer ul li a:hover {
    color: var(--footer-links-hover-color);
    text-decoration: var(--footer-links-hover-decoration) !important;
    /* border-bottom: var(--footer-links-hover-border) !important; */
}

.bg-footer ul li a.active {
    color: var(--footer-links-active-color);
    text-decoration: var(--footer-links-active-decoration) !important;
    border-bottom: none !important;
}

.footer-logo a {
    display: block;
    margin-right: 20%;
}

.bg-copyright {
    background-color: #e0e0e0;
}

.bg-copyright,
.bg-copyright a {
    color: #000;
}

.bg-copyright a:hover {
    color: #000;
    text-decoration: none;
}

#alertPin h3 {
    font: 16px/20px Play;
    height: 60px;
    margin: 10px 0 0 0;
    overflow: hidden;
}

.cartMethodsShipments .radio,
.cartMethodsPayments .radio {
    display: none;
}

.cartMethodsShipments>h2,
.cartMethodsPayments>h2 {
    text-transform: uppercase;
    font-family: "Roboto";
    font-size: 18px;
}

#registrationFormMoreInfo+div {
    padding: 10px;
}


/* CSS by Grzegorz :) */

.error-summary {
    margin-bottom: 30px;
    padding: 10px 35px 10px 10px;
    color: #b94a48;
    background-color: #f2dede;
    border-color: #eed3d7;
}

.gridSizer {
    display: none;
}


/*
.grid-init .gridSizer {
	display: block;
}
*/

.productsList {
    text-align: center;
    font-size: 0;
}

.gridItem {
    margin-bottom: 20px;
    display: inline-block;
    float: none;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
    .gridItem {
        float: left;
    }
}

#contractors-fv label {
    margin: 0px 20px 0 15px;
}

.kv-grid-table > thead > tr > th {
    font-weight: 400;
}

.kv-grid-table .kv-expand-detail-row td:first-child {
    padding: 8px 0 8px 0;
}

.kv-expand-icon-cell:focus .glyphicon,
.kv-expand-icon-cell:hover .glyphicon,
.kv-expand-icon-cell .glyphicon {
    font-size: 18px;
    top: 0px;
}

.kv-expand-icon-cell,
.kv-expand-icon-cell:hover {
    padding: 5px 0 0 0 !important;
    height: 30px !important;
}

.kv-grid-table > thead > tr > th {
    text-align: center;
}

.userDocumentsRow2 > table .kv-expand-detail-row td:first-child {
    padding: 0px 8px 0px 8px;
}

#userDocumentsGrid .gridExpandRow:hover,
#userDocumentsGrid .gridExpandRow,
#userDocumentsGrid .kv-expand-header-cell:hover {
    background: none;
    font-size: inherit;
}

.kv-expand-icon-cell,
.kv-expand-icon-cell:hover,
.kv-expand-icon-cell:focus {
    font-size: inherit;
    color: #245269;
    background-color: #f9f9f9 !important;
}

.select2-container--krajee .select2-selection {
    border-radius: 0;
}

.select2-container--krajee.select2-container--open .select2-selection,
.select2-container--krajee .select2-selection:focus,
.select2-container--krajee .select2-dropdown,
.select2-container--krajee .select2-search--dropdown .select2-search__field {
    border-color: #b0b6bd;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px rgba(176, 182, 189, 0.6);
    border-radius: 0;
}

.header-margin {
    padding-top: 100px;
}

#header-static {
    position: relative;
}

#header-dynamic {
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 4000;
    height: 80px;
    padding-top: 10px;
    background: var(--menu-bck);
    /* transition: height 0.1s; */
}

#header-dynamic.fixed {
    position: fixed;
    background: var(--menu-fixed-bck);
    padding: 0;
    width: 100%;
    height: 60px;
    /* transition: height 0.1s; */
}
#header-dynamic.fixed.fixedTall {
    height: 60px;
}
#header-dynamic.fixed p {
    display: none;
}

#header-dynamic.fixed .entry p {
    display: block;
}

#header-dynamic.fixed.hidden {
    display: none;
}
.body-page #header-dynamic {
    height: 70px;
    border-bottom: var(--pages-header-border);
}
/* .body-page #header-dynamic .navbarLogo a {
    padding-bottom: 0;
} */
.body-page #header-dynamic .navbarLogo .page-logo-cont {
    height: auto;
}
.body-page .pages-container {
    padding-top: 10px;
}
.body-page .padding-top-80.container.bg-white {
    padding-top: 70px;
}
.body-page .breadcrumbs {
    padding-bottom: 30px;
}
@media screen and (max-width: 990px) {
    .navbar .navbar-nav {
        float: right;
    }
}

.burger-container {
    width: 30px;
    height: 30px;
    position: absolute;
    display: none;
    top: 0;
    padding: 15px 30px 30px;
    right: -11px;
    transition: .5s;
    transform: scale(.75);
    box-sizing: content-box;
    opacity: 1;
}

.burger-container:hover,
.burger-container.open {
    opacity: 1;
}

.burger {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index: 100;
    position: relative;
}

.burger-container.open .burger {
    top: -5px;
}

.burger span {
    display: block;
    position: absolute;
    height: 5px;
    width: 50%;
    background: var(--burger-bck);
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.burger span:nth-child(even) {
    left: 50%;
}

.burger span:nth-child(odd) {
    left: 0px;
}

.burger span:nth-child(1),
.burger span:nth-child(2) {
    top: 0px;
}

.burger span:nth-child(3),
.burger span:nth-child(4) {
    top: 12px;
}

.burger span:nth-child(5),
.burger span:nth-child(6) {
    top: 24px;
}

.burger-container.open span:nth-child(1),
.burger-container.open span:nth-child(6) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.burger-container.open span:nth-child(2),
.burger-container.open span:nth-child(5) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.burger-container.open span:nth-child(1) {
    left: 4px;
    top: 13px;
}

.burger-container.open span:nth-child(2) {
    left: calc(50% - 1px);
    top: 13px;
}

.burger-container.open span:nth-child(3) {
    left: -50%;
    opacity: 0;
}

.burger-container.open span:nth-child(4) {
    left: 100%;
    opacity: 0;
}

.burger-container.open span:nth-child(5) {
    left: 4px;
    top: 23px;
}

.burger-container.open span:nth-child(6) {
    left: calc(50% -4px);
    top: 23px;
}

.burger-container:hover {
    cursor: pointer;
    opacity: 1;
}

.currencyWidget .filters-el-btn {
    display: inline-block;
    width: 90px;
}

.currencyWidget,
.contactBox {
    padding: 20px;
}

.currencyWidget .filters-el-dropdown-list-el>span {
    margin: 0 10px 0 0;
}

.mixedBox>hr {
    border-top: 1px solid #e9eee8;
}

.contact-row {
    overflow: hidden;
}


.bg-contact {
    background: #00388b;
}

.icons-navbar {
    text-align: right;
    float: right;
    width: 100px;
}

.responsive-768-1300 {
    display: none;
}

.contact-icon {
    position: relative;
    top: -15px;
}

.contact-icon>img {
    float: right;
    margin-top: 15px;
}

.contact-row .bg-newsletter {
    background: #a40192;
}

.bg-message {
    color: #253942;
}

.form-contact {
    margin: 0 auto;
    width: auto;
}

.form-contact td {
    padding: 0 10px;
    vertical-align: top;
}

.form-contact h3 {
    color: #fff;
    font-size: 28px;
    margin: 0;
}

.form-contact .form-control::-webkit-input-placeholder {
    color: #ddd;
    transition: .5s
}

.form-contact .form-control:-moz-placeholder {
    color: #ddd;
    transition: .5s
}

.form-contact .form-control::-moz-placeholder {
    color: #ddd;
    transition: .5s
}

.form-contact .form-control:-ms-input-placeholder {
    color: #ddd;
    transition: .5s
}

.form-contact p {
    color: #253942;
    font-size: 16px;
}

.form-contact input.form-control, .form-contact select.form-control {
    background: #fff;
    border-color: #c2c2c2;
    color: #253942;
    text-align: left;
    margin: 10px 0;
}
.form-contact select.form-control {
    width: 100%;
    max-width: 500px;
}
.form-contact textarea.form-control {
    background: #fff;
    border-color: #c2c2c2;
    color: #253942;
    text-align: left;
    margin: 10px 0;
}

.form-contact input.form-control::-webkit-input-placeholder,
.form-contact input.form-control::-moz-placeholder,
.form-contact input.form-control:-ms-input-placeholder,
.form-contact input.form-control:-moz-placeholder,
.form-contact select.form-control::-webkit-input-placeholder,
.form-contact select.form-control::-moz-placeholder,
.form-contact select.form-control:-ms-input-placeholder,
.form-contact select.form-control:-moz-placeholder {
    color: #253942;
    transition: .5s;
}

.form-contact label {
    color: var(--contact-form-label-color);
    font: var(--contact-form-label-font);
    position: relative;
    margin: 10px auto;
    padding: 6px 0;
    text-transform: var(--contact-form-label-transform);
}

.form-contact label input[type=checkbox] {
    margin: 0;
    left: 0;
    position: absolute;
    top: 12px;
}

.contact-row .newsletter-form {
    text-align: left;
}

.contact-row .newsletter-form input.form-control {
    width: 100%;
}

.config-dropdown {
    position: relative;
    display: inline-block;
}

.config-dropdown .filters-el-dropdown {
    position: absolute;
    width: 100%;
    background: white;
    left: 0;
    top: 34px;
}

.config-dropdown .filters-el-dropdown.active {
    display: inline-block;
}

.responsive-x-768 {
    display: none;
}

.blog-home {
    background: #fff;
}

.footer {
    padding-bottom: 20px;
    padding-left: 10px;
    color: var(--copyrights-color);
    padding-top: 50px;
    font-size: 14px;
}

.footer a {
    color: var(--copyrights-link-color);
}

.footer a:hover {
    text-decoration: underline;
}

.footer p {
    display: inline-block;
    margin-right: 50px;
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    background-color: #9d168d;
    border-color: #9d168d;
}

.pagination>li>a,
.pagination>li>span {
    color: #000;
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
    color: #222;
}

.carousel-promo .pagination {
    display: none !important;
}

.opinions {
    background: #f4f4f4;
    padding: 10px 20px 20px 20px;
}

.carousel-opinions {
    padding-right: 5px;
    padding-left: 5px;
}

.opinions .row {
    margin: 0;
}

.opinions .opinion {
    margin-top: 10px;

}

.opinions .owl-item:not(.cloned) {
    opacity: 0;
}

.opinions .categoryBox {
    padding: 15px;
    margin-bottom: 2px;
    background: #fff url(../img/icons/iconmonstr-quote-12.svg) no-repeat;
    background-size: 100px 100px;
    background-position: 95% 95%;
}

.opinions h3 {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    height: 40px;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
}

.opinions span {
    color: #434343;
    font-style: italic;
    line-height: 1.2;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    text-align: justify;
    display: inline-block;
    height: 60px;
    overflow: hidden;
}

.opinions .owl-dot span {
    height: 20px;
}
/*
.opinions .owl-controls {
    position: absolute;
    top: -30px;
    right: 10px;
    width: 80px;
    height: 30px;
}

.opinions .owl-nav .owl-prev, .opinions .owl-nav .owl-next {
    width: 40px;
    display: relative;
    opacity: 0.7;
    float: left;
    text-align: right;
}

.opinions .owl-nav .owl-prev:hover, .opinions .owl-nav .owl-next:hover {
    opacity: 1;
}
*/

@media screen and (max-width: 1024px) {
    .opinions span {
        height: 125px;
    }
}

@media screen and (max-width: 980px) {
    .opinions span {
        height: 46px;
    }
}

@media screen and (max-width: 800px) {
    .opinions span {
        height: 55px;
    }
}

@media screen and (max-width: 700px) {
    .opinions span {
        height: 70px;
    }
}

@media screen and (max-width: 600px) {
    .opinions span {
        height: 80px;
    }
}

@media screen and (max-width: 500px) {
    .opinions span {
        height: 115px;
    }
}

@media screen and (max-width: 360px) {
    .opinions span {
        height: 135px;
    }
}

@media screen and (max-width: 330px) {
    .opinions span {
        height: 155px;
    }
}

.opinions span.sign {
    display: block;
    margin-top: 10px;
    height: 20px;
}

.opinions .btn-purple {
    width: auto;
    padding: 6px 15px;
    margin: 20px auto 0;
    display: inline-block;
    float: none;
    text-align: center;
}

.sitemap {
    margin-bottom: 30px;
}

.sitemap-list div {
    width:50%;
    float:left;
}
.sitemap-list ul {
    padding:0;
}
.sitemap-list ul li {
    float:none;
    text-align:left;
    list-style-type: disc;
    list-style-position: inside;
    display: list-item;
}
.sitemap-list ul li a {
    padding:0;
    margin:0;
    display: inline;
}
.sitemap-list ul li ul {
    padding-left:20px;
}
.sitemap-list ul li ul li {
    list-style-type: circle;
}

.sitemap-list ul li ul li ul li {
    list-style-type: square;
}

.sitemap-list h2 span {
    display: none;
}

@media screen and (max-width: 768px) {
    .sitemap-list {
        width: 100%;
        float: none;
        margin-bottom: 10px;
    }
    .sitemap-list .sitemap-list {
        display: none;
    }

    .sitemap-list h2 span {
        display: block;
        float: right;
        margin-top: 5px;
    }
    .sitemap .col-md-10 {
        padding: 0;
    }
    .sitemap .col-md-6 {
        padding: 0;
    }
    .sitemap-list ul.level2 {
        display: none;
    }
    .sitemap-list ul.nav {
        list-style: disc;
        padding-left: 15px;
    }
}

.background-product h1, .page-header {
    width: auto;
    max-width: 1000px;
    padding: 10px 50px;
    min-width: 400px;
}

@media screen and (max-width: 500px) {
    .background-product h1, .page-header {
        padding: 10px 20px;
        min-width: 280px;
    }
}

.google-play {
    display: none;
}

.newsletter-page {

}

.newsletter-page h1.page-header {
    margin-bottom: 0;
}
 .newsletter-page .newsletter-form p,  .newsletter-page .newsletter-form h5 {
    color: #000;
}

.newsletter-page .newsletter-form input.form-control {
    border: 1px solid #000;
    color: #000;
}

.newsletter-page .newsletter-form input.form-control::placeholder {
    color: #555;
}

.instashow-gallery-view {
    margin-top: 0 !important;
}

.pc-offer{padding-left: 20px;padding-right:20px;padding-bottom: 40px;margin-bottom:40px;clear:both; float: none;width: 100%;height:auto;overflow:hidden;}
.pc-offer h2{margin-top:0;padding-top:68px;text-align:left;margin-bottom:10px;text-transform:uppercase;font-size:32px}
.pc-offer h2+div{background-color:#fff;overflow:hidden;padding:40px 20px 0;margin:0 20px}
.pc-offer .toggle, .pc-offer .toggle2{
    clear:left;
    float:none;
    background: #e9e9e9;
    text-align:center;
    font-size:30px;
    cursor:pointer;
    width: 100%;
    margin-left:0;
    margin-right:0;
    border-top: 10px solid #F5F5F5;
    line-height: 1;
}
.pc-offer .toggle:hover, .pc-offer .toggle2:hover{
    background: #aaa;
}
.pc-offer img{
    float:left;
    border:5px solid #b9b9b9;
    margin-right:25px;
    margin-bottom: 10px;
}
.pc-offer .description{
    float:left;
    text-align:justify;
    height: auto;
    max-height:275px;
    overflow:hidden;
    transition:height 1s;
    margin-bottom:10px;
    line-height: 1.2;
}

h2.home-header {
    padding-top: 55px;
    padding-bottom: 30px;
    /* font-weight: 500 !important; */
    /* font-size: 32px !important; */
    text-transform: var(--home-header-h2-transform);
    color: var(--home-header-h2-color);
    font: var(--home-header-h2-font);
}

.home-header .header-text, .background-pages-category h1 span {
    position: relative;
    padding-bottom: 15px;
}

.home-header .header-text:after, .background-pages-category h1 span:after, .background-pages-category h2 span:after {
    content: '';
    width: 70%;
    height: 7px;
    background: var(--header-line-bottom);
    position: absolute;
    bottom: 0;
    left: 15%;
}

.background-pages-category h2 span:after {
    width: 55%;
    left: auto;
    right: 0;
}

.categoryHeaderOrnament .home-header .header-text:after, .categoryHeaderOrnament .home-header .galleries-header:after, .categoryHeaderOrnament .background-pages-category h1 span:after, .categoryHeaderOrnament .background-pages-category h2 span:after {
    background: url() center bottom no-repeat;
    background-size: auto;
    content: '';
    width: 100%;
    height: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}


.home-contact .home-header  .header-text:after {
    background: #fff;
}
.galleries-header {
    position: relative;
    padding-bottom: 10px;
    font: var(--galleries-header-font);
    color: var(--galleries-header-color);
    text-transform: var(--galleries-header-transform);
}
.galleries-header:after {
    content: '';
    width: 50%;
    height: 5px;
    background: #898989;
    position: absolute;
    bottom: 0;
    left: 25%;
}

.about h1 {
    text-transform: uppercase;
    padding-top: 40px;
}

.about .pc-offer {
    width: 66%;
    padding: 0;
    margin: 0 auto;
}

#jsAbout1, #jsAbout2, #jsAbout3 {
    opacity: 0;
    transition: 1s;
}

.about2 h2 {
    font-weight: 600;
    font-size: 50px;
    font-family: var(--about-h2-font-family);
    text-transform: none;
    margin-bottom: 40px;
    overflow: hidden;
    height: 65px;
}

.about2 h2.left-header span {
    /*-webkit-transform: translateX(-600px);
   -moz-transform: translateX(-600px);
    -ms-transform: translateX(-600px);
     -o-transform: translateX(-600px);
        transform: translateX(-600px);*/
    opacity: 0;
    display: block;
    -webkit-transition: 0.5s 0.5s;
    -moz-transition: 0.5s 0.5s;
      -o-transition: 0.5s 0.5s;
         transition: 0.5s 0.5s;
}

.about2 h2.right-header span {
    /*-webkit-transform: translateX(-600px);
   -moz-transform: translateX(-600px);
    -ms-transform: translateX(-600px);
     -o-transform: translateX(-600px);
        transform: translateX(-600px);*/
    opacity: 0;
    display: block;
    -webkit-transition: 0.5s 0.5s;
    -moz-transition: 0.5s 0.5s;
      -o-transition: 0.5s 0.5s;
         transition: 0.5s 0.5s;
         float:right;
}

@media screen and (max-width: 500px) {
    .about2 h2.right-header, .about2 h2.left-header {
        margin-bottom: 0;
    }
}

/* #about p {
    opacity: 0;
    display: block;
    -webkit-transition: 0.5s 1s;
    -moz-transition: 0.5s 1s;
      -o-transition: 0.5s 1s;
         transition: 0.5s 1s;
}


#about2 p {
    opacity: 0;
    display: block;
    -webkit-transition: 0.5s 1s;
    -moz-transition: 0.5s 1s;
      -o-transition: 0.5s 1s;
         transition: 0.5s 1s;
} */

.about2 p {
    font-size: 22px;
    text-align: justify;
    font-family: var(--about-font-family);
}

.about2 {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    font-family: var(--about-font-family);
    color: #fff;
    position: relative;
    margin-top: 30px;
}

.about2 .image {
    position: relative;
    margin-bottom: 20px;
    //height: 600px;
    height: auto;
    overflow: hidden;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    background: url() no-repeat 50% 0 fixed;
    -webkit-backface-visibility: hidden;
}

.about2 .image img {
    display: block;
    max-width: 100%;
    height: 100%;
}

.about2 .description {
    margin-top: 50px;
    margin-left: 100px;
    margin-right: 100px;
    margin-bottom: 50px;
    background: rgba(33, 60, 71, 0.45);
    position: relative;
    padding: 50px 80px;
    width: calc(100% - 200px);
}

.about2 .image:nth-child(2) .description h2 {
    text-align: right;
}

.about3-el {
    padding-bottom: 30px;
    height: auto;
    overflow: hidden;
}

.about3-el .image {
    width: 50%;
    float: left;
    height: auto;
    overflow: hidden;
    padding-right: 20px;
    position: relative;
}
.about3 {
    color: var(--sliderAbout-desc-color);
}

.about3-el .description {
    width: 50%;
    float: left;
    height: auto;
    overflow: hidden;
    padding-left: 20px;
    font: var(--sliderAbout-desc-font);
}

.about3-el .description h3, .about3-el .description h4 {
    font: var(--sliderAbout-desc-header-font);
}

.about3-el .description h3 {
    font-size: 26px;
    display: inline-block;
    padding-bottom: 20px;
    width: auto;
    position: relative;
    margin-bottom: 30px;
    margin-top: 5px;
}

.about3-el .description h3:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 5px;
    background: #bebebe;
    bottom: 0;
    left: 0;
    display: block;
}

.about3-el .description h4 {
    font-size: 22px;
    margin-top: 30px;
}

.centerImage .about3-el .image {
    float: none;
    clear: both;
    margin: 0 auto;
    padding-right: 0;
}

.about3PhotoRight .description, .about3PhotoRight .image, .photoRight .description, .photoRight .image {
    float: right;
}

.about3PhotoRight .description, .photoRight .description {
    padding-left: 0;
    padding-right: 20px;
}

.about3PhotoRight .image, .photoRight .image {
    padding-left: 20px;
    padding-right: 0;
}

.triangle-img {
    width: 180px;
    height: 200px;
    background: url(/files/admin/tr-mask.png) top center no-repeat;
    background-size: 100% auto;
    position: absolute;
    z-index: 2000;
    top: 0;
    left: 0;
}

.about3PhotoRight .triangle-img {
    left: 20px;
}

.hideImagesMask .triangle-img {
    display: none;
}

.stats {
    padding: 50px;
}

.stats-el {
    font-size: 40px;
    text-align: center;
    color: #213c47;
}

.review-el {
    background-size: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 60vh;
    background-position: right center;
    padding: 0 20%;
    text-align: center;
    color: #fff;
    line-height: 100px;
    font-size: 40px;
    overflow: hidden;
    display: block;
    width: 100%;
}

.review-el h3 {
    font: var(--sliderReview-line1-font);
    text-transform: var(--sliderReview-line1-transform);
    color: var(--sliderReview-line1-color);
    text-align: left;
    margin-bottom: 20px;
    margin-top: 0;
}
.review-el h4 {
    font: var(--sliderReview-line2-font);
    text-transform: var(--sliderReview-line2-transform);
    color: var(--sliderReview-line2-color);
}
.review-el .cover-cont {
    position: absolute;
    top: calc(50% - 100px);
    width: 60%;
    height: 220px;
    left: 20%;
    right: 20%;
}

.review-el .cover {
    background: var(--sliderReview-overlay-bck);
    border-radius: 20px;
    width: 100%;
    margin: 0;
    height: auto;
    overflow: hidden;
    display: table;
    padding-top: 50px;
    padding-bottom: 50px;
}

.review-icon {
    width: 20%;
    height: auto;
    text-align: right;
    display: table-cell;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    font: var(--sliderReview-icon-txt-font);
    color: var(--sliderReview-icon-txt-color);
}

.review-icon svg {
    width: auto;
    height: 100px;
    vertical-align: middle;
    position: absolute;
    top: calc(50% - 50px);
    right: 0;
}

.review-icon .svg-txt {
    width: 100px;
    height: auto;
    vertical-align: middle;
    text-align: center;
    display: block;
    position: relative;
    float: right;
    
}

.review-text {
    width: 80%;
    padding-left: 50px;
    height: auto;
    text-align: left;
    display: table-cell;
    vertical-align: middle;
}

.hideIcon .review-icon {
    display: none;
}

.hideIcon .review-text {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    
}
.centerText .review-text, .centerText .review-text h3 {
    text-align: center;
}

.text-ocean {
    color: #0ea582;
    font-weight: 600;
    font-family: 'Roboto';
}

.offer {
    padding: 0 25px;
    height: auto;
    overflow: hidden;
}

.offer h2.home-header {
    padding-bottom: 20px;
}

.offer-box {
    width: calc(33.3333333% - 20px);
    float: left;
    height: 350px;
    padding: 20px;
    color: #fff;
    margin: 15px 10px;
    text-align: justify;
    font-family: var(--offer-box-font-family);
}

.offer-box:nth-child(1), .offer-box:nth-child(2), .offer-box:nth-child(3),.offer-box:nth-child(4), .offer-box:nth-child(5), .offer-box:nth-child(6) {
    -webkit-transform: translateY(720px);
   -moz-transform: translateY(720px);
    -ms-transform: translateY(720px);
     -o-transform: translateY(720px);
        transform: translateY(720px);
        -webkit-transition: 1s;
    -moz-transition: 1s;
      -o-transition: 1s;
         transition: 1s;
    opacity: 0;
}

.offer-box:nth-child(even) {
    background: #253942;
}

.offer-box:nth-child(even):hover {
    background: #17272e;
    -webkit-transition: 0.5s 0s !important;
-moz-transition: 0.5s 0s !important;
  -o-transition: 0.5s 0s !important;
     transition: 0.5s 0s !important;
}

.offer-box:nth-child(odd) {
    background: #14a884;
}

.offer-box:nth-child(odd):hover {
    background: #0e7e63;
    -webkit-transition: 0.5s 0s !important;
-moz-transition: 0.5s 0s !important;
  -o-transition: 0.5s 0s !important;
     transition: 0.5s 0s !important;
}

.offer-box h2 {
    text-align: center;
    margin-bottom: 20px;
}

.btn-ocean {
    background: #14a884;
    border: 1px solid #14a884;
    color: #fff;
}

.btn-ocean:hover {
    color: #fff;
}

.carousel-home-el .btn-ocean {
    padding: 10px 50px;
    font-size: 21px;
}

.btn-white-border {
    border: 1px solid #fff;
    width: 250px;
    color: #fff;
    background: transparent;
    display: block;
}

.btn-white-border:hover {
    background: #fff;
}

.offer-box .btn-white-border {
    margin: 0 auto;
    max-width: 100%;
}

.img-responsive {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

#jsWorks {
    opacity: 0;
}

.works {
    background: #fff;
    height: auto;
    overflow: hidden;
    padding-bottom: 100px;
    position: relative;
}

.works-el {
    height: auto;
    overflow: hidden;
    position: relative;
    background: #253942;
    padding: 0;
}

.works-el a {
  color: #fff;
  text-decoration: underline !important;
}

.works-el a:hover {

}

.works-el .img {
    width: 65%;
    float: left;
    height: auto;
    position: relative;
}

.works-el .img img {
    opacity: 0;
    -webkit-transition: 0.5s 0.5s;
-moz-transition: 0.5s 0.5s;
  -o-transition: 0.5s 0.5s;
     transition: 0.5s 0.5s;
}

.works-el .img a.btn {
    color: #fff;
    position: absolute;
    bottom: 20px;
    left: 100px;
    padding: 10px 0 10px 0;
    font-size: 35px;
    width: 450px;
    opacity: 0;
    -webkit-transition: 0.5s 1s;
-moz-transition: 0.5s 1s;
  -o-transition: 0.5s 1s;
     transition: 0.5s 1s;
}

.works-el .description {
    width: 35%;
    float: left;
    height: auto;
    overflow: hidden;
    padding: 0 35px;
    color: #fff;
    text-align: justify;
}

.works-el .description h2 {
    opacity: 0;
    -webkit-transition: 0.5s 1.5s;
-moz-transition: 0.5s 1.5s;
  -o-transition: 0.5s 1.5s;
     transition: 0.5s 1.5s;
}

.works-el .description p {
    opacity: 0;
    -webkit-transition: 0.5s 2s;
-moz-transition: 0.5s 2s;
  -o-transition: 0.5s 2s;
     transition: 0.5s 2s;
     font-family: var(--works-desc-font-family);
}

.works-el .btn-blue {
    position: absolute;
    bottom: 20px;
    right: 100px;
    width: 250px;
    opacity: 0;
    -webkit-transition: 0.5s 2.5s;
-moz-transition: 0.5s 2.5s;
  -o-transition: 0.5s 2.5s;
     transition: 0.5s 2.5s;
}

.works.owl-carousel .owl-controls {
    bottom: 40px;
    position: absolute;
    width: 100%;
}

.giftbox11 h2 {
    display: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.giftbox11 .description h2 {
    display: block;
    text-transform: uppercase;
    font-size: 24px;
    margin-bottom: 10px;
    text-align: left;
    margin-top: 0;
}

.giftbox11, .giftbox13 {
    background: url() no-repeat;
    background-size: 100% 100%;
    width: 100%;
}

.giftbox14 h2, .giftbox13 h2 {
    margin-bottom: 0;
    padding-bottom: 0 !important;
}

.program {
    height: auto;
    overflow: hidden;
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
}

.program-el {
    height: auto;
    overflow: hidden;
    position: relative;
    margin: 20px 250px;
    width: calc(100% - 500px);
}

.giftbox13 .program-el {
    margin: 20px 250px;
    width: calc(100% - 500px);
}

.giftbox14 .program-el {
    margin: 20px 250px;
    width: calc(100% - 500px);
}

.program-el .img {
    width: 55%;
    float: right;
    height: auto;
    position: relative;
    text-align: center;
}

.giftbox13 .img {
    width: 50%;
}

.giftbox14 .img {
    float: left;
    width: calc(70% - -100px);
}

.program-el .img img {
    border-radius: 10px;
    max-width: 100%;
    width: auto !important;
}

.arrow-next-photo {
    background: url(../img/icons/arrow-white.svg) no-repeat;
    background-size: 100px 100px;
    width: 100px;
    height: 100px;
    position: absolute;
    right: 50px;
    bottom: 50px;
    z-index: 2000;
    cursor: pointer;
    opacity: 0.8;
}

.giftbox14 .arrow-next-photo {
    right: calc(10% + 70px);
    background-size: 50px 50px;
    width: 50px;
    height: 50px;
    bottom: 50px;
}


.giftbox14 .owl-dots {
    width: 300px;
    right: calc(10% + 150px);
    position: absolute;
    bottom: 50px;
    text-align: right;
}
.giftbox14 .owl-dot span {
    background: rgba(255, 255, 255, 0.7);
}
.giftbox14 .owl-dot.active span {
    background: rgba(255, 255, 255, 1);
}

.arrow-next-photo:hover {
    opacity: 1;
}

.giftbox13 .program-el .img {
    width: 50%;
}

.giftbox14 .program-el .img {
    width: 50%;
}

.program-el .description {
    width: 42%;
    height: auto;
    position: absolute;
    background: rgba(195, 0, 0, 0.8);
    overflow: hidden;
    padding: 30px;
    color: #fff;
    text-align: left;
    top: 50px;
    bottom: 50px;
    z-index: 3000;
    line-height: 1.6;
    font-size: 16px;
    border-radius: 10px;
}

.giftbox13 .description {
    background: #0033a6;
    width: 40%;
}

.giftbox14 .description {
    background: var(--font-color);
    width: 45%;
    right: 0;
}

.program-el .description h3 {
    opacity: 1;
    -webkit-transition: 0.5s 1.5s;
-moz-transition: 0.5s 1.5s;
  -o-transition: 0.5s 1.5s;
     transition: 0.5s 1.5s;
     color: #fff;
     font-size: 28px;
}

.program-el .description p {
    opacity: 0;
    -webkit-transition: 0.5s 2s;
-moz-transition: 0.5s 2s;
  -o-transition: 0.5s 2s;
     transition: 0.5s 2s;
}

.program.owl-carousel .owl-controls {
    bottom: 100px;
    position: absolute;
    width: 100%;
}

.leftRight2Center .img,
.leftRight2Center .sliderTextImage-image,
.leftRight2Center .sliderTextImage-cont h2.home-header,
.leftRight2Center .threeBoxes .sliderTextImage-text {
    transform: translateX(3000px);
    transition: transform 0.5s;
}

.leftRight2Center .description,
.leftRight2Center .sliderTextImage-text,
.leftRight2Center .sliderTextImage-boxes {
    transform: translateX(-3000px);
    transition: transform 0.5s;
}

.left2Right .big-slider,
.left2Right .giftbox4 .col-sm-4,
.left2Right .review-el h3,
.tbs .left2Right .review-el .cover,
.left2Right .worth-el h2,
.left2Right .customers-el,
.left2Right .about3 .img,
.left2Right .about3 .description,
.left2Right .sliderTextImage-image,
.left2Right .sliderTextImage-text,
.left2Right.sliderTextImage h2,
.left2Right .sliderTextImage-box {
    transform: translateX(-5000px);
    transition: transform 0.5s;
}

.left2Right .giftbox4 .owl-item .col-sm-4,
.left2Right .owl-item .brands-el,
.tbs .left2Right .review-el h3 {
    transform: none;
}

.left2Right .giftbox4 .owl-item.active .col-sm-4,
.left2Right .carousel-5:not(.owl-carousel) .brands-el,
.left2Right .owl-item.active .brands-el {
    transform: translateX(-5000px);
    transition: transform 0.5s;
}

.right2Left .big-slider,
.right2Left .giftbox4 .col-sm-4,
.right2Left .review-el h3,
.tbs .right2Left .review-el .cover,
.right2Left .worth-el h2,
.right2Left .customers-el,
.right2Left .about3 .img,
.right2Left .about3 .description,
.right2Left .sliderTextImage-image,
.right2Left .sliderTextImage-text,
.right2Left.sliderTextImage h2,
.right2Left .sliderTextImage-box {
    transform: translateX(5000px);
    transition: transform 0.5s;
}

.right2Left .giftbox4 .owl-item .col-sm-4,
.right2Left .owl-item .brands-el,
.tbs .right2Left .review-el h3 {
    transform: none;
}

.right2Left .giftbox4 .owl-item.active .col-sm-4,
.right2Left .carousel-5:not(.owl-carousel) .brands-el,
.right2Left .owl-item.active .brands-el {
    transform: translateX(5000px);
    transition: transform 0.5s;
}

.scale0to100 .img,
.scale0to100 .description,
.scale0to100 .big-slider,
.scale0to100 .giftbox4 .col-sm-4,
.scale0to100 .review-el h3,
.tbs .scale0to100 .review-el .cover,
.scale0to100 .worth-el h2,
.scale0to100 .customers-el,
.scale0to100 .active .brands-el,
.scale0to100 .carousel-5:not(.owl-carousel) .brands-el,
.scale0to100 .sliderTextImage-cont {
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.tbs .scale0to100 .review-el h3 {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.bottom2Top .img,
.bottom2Top .description,
.sc,
.bottom2Top .big-slider,
.bottom2Top .giftbox4 .col-sm-4,
.bottom2Top .review-el h3,
.bottom2Top .worth-el h2,
.bottom2Top .customers-el {
    transform: translateY(3000px);
    transition: transform 0.5s;
}

.bottom2Top .img,
.bottom2Top .description,
.sc,
.bottom2Top .big-slider,
.bottom2Top .giftbox4 .col-sm-4,
.bottom2Top .review-el h3,
.tbs .bottom2Top .review-el .cover,
.bottom2Top .worth-el h2,
.bottom2Top .customers-el,
.bottom2Top .about3 .img,
.bottom2Top .about3 .description,
.bottom2Top .sliderTextImage-image,
.bottom2Top .sliderTextImage-text,
.bottom2Top.sliderTextImage h2,
.bottom2Top .sliderTextImage-box {
    transform: translateY(3000px);
    transition: transform 0.5s;
}

.bottom2Top .giftbox4 .owl-item .col-sm-4,
.bottom2Top .owl-item .brands-el,
.tbs .bottom2Top .review-el h3 {
    transform: none;
}

.bottom2Top .giftbox4 .owl-item.active .col-sm-4,
.bottom2Top .carousel-5:not(.owl-carousel) .brands-el,
.bottom2Top .owl-item.active .brands-el {
    transform: translateY(3000px);
    transition: transform 0.5s;
}

.top2Bottom .img,
.top2Bottom .description,
.top2Bottom .big-slider,
.top2Bottom .giftbox4 .col-sm-4,
.top2Bottom .review-el h3,
.tbs .top2Bottom .review-el .cover,
.top2Bottom .worth-el h2,
.top2Bottom .customers-el,
.top2Bottom .about3 .img,
.top2Bottom .about3 .description,
.top2Bottom .sliderTextImage-image,
.top2Bottom .sliderTextImage-text,
.top2Bottom.sliderTextImage h2,
.top2Bottom .sliderTextImage-box {
    transform: translateY(-3000px);
    transition: transform 0.5s;
}

.top2Bottom .giftbox4 .owl-item .col-sm-4,
.top2Bottom .owl-item .brands-el,
.tbs .top2Bottom .review-el h3 {
    transform: none;
}

.top2Bottom .giftbox4 .owl-item.active .col-sm-4,
.top2Bottom .carousel-5:not(.owl-carousel) .brands-el,
.top2Bottom .owl-item.active .brands-el {
    transform: translateY(-3000px);
    transition: transform 0.5s;
}

.invisible2Visible .img,
.invisible2Visible .description,
.invisible2Visible .big-slider,
.invisible2Visible .giftbox4 .col-sm-4,
.invisible2Visible .giftbox4 .owl-item.active,
.invisible2Visible .giftbox4 .owl-controls,
.invisible2Visible .review-el h3,
.tbs .invisible2Visible .review-el,
.invisible2Visible .worth-el h2,
.invisible2Visible .customers-el,
.invisible2Visible .brands-el,
.invisible2Visible .sliderTextImage-cont,
.invisible2Visible .sliderTextImage-box {
    opacity: 0;
    transition: transform 0.5s;
}

.invisible2Visible .giftbox4 .owl-item.active .col-sm-4, .tbs .invisible2Visible .review-el h3 {
    opacity: 1;
}

#jsCustomers {
    opacity: 0;
}

.customers {
    width: 100%;
    background: #eaebef;
    padding: 0 10% 30px;
    height: auto;
    overflow: hidden;
}

.customers h2.home-header {
    width: 100%;
    display: block;
    opacity: 0;
}

.customers-el {
    width: calc(33.33333% - 20px);
    margin: 0 10px;
    background: #fff;
    float: left;
}

.owl-carousel .customers-el {
    width: 100%;
    float: none;
    margin: 0;
    height: auto;
    overflow: hidden;
}

.customers .owl-item {
    padding: 0 20px;
}

.customers .owl-controls {
    margin-top: 20px;
}

.customers-el .img {
    width: 100%;
    display: none;
}

.customers-el .description {
    padding: 0 20px 20px 20px;
    color: #000;
    text-align: center;
    height: 400px;
    overflow: hidden;
    line-height: 1.5;
    background: url(../img/icons/bubble.svg) no-repeat;
    background-size: 80px 80px;
    background-position: 95% 95%;
    font-size: 16px;

}

.customers-el h2 {
    color: var(--font-color);
    font-size: italic;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #eaebef;
    padding-bottom: 20px;
    font-size: 18px;
    padding-top: 30px;
    text-align: center;
}

.customers-el a {
    display: inline;
    color: #01a0e2;
}

.customers-el .link {
    height: 60px;
    padding-top: 20px;
    text-align: center;
    display: none;
}

.customers-el .description p {
}

.giftBrand .responsive-1x1:before {
    padding-top: 70%;
}

.giftBrand img {
    border: 1px solid #b3b4b8;
    width: 90%;
}

.giftBrand {
    padding-left: 20px;
    padding-right: 20px;
    background: #fff;
    padding-bottom: 30px;
    padding-top: 0;
}

#jsBrands h2 {
    opacity: 0;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -o-transition: 1s;
     transition: 1s;
}

#jsBrands .elem-1 {
    -webkit-transition: 1s 0.5s;
-moz-transition: 1s 0.5s;
  -o-transition: 1s 0.5s;
     transition: 1s 0.5s;
     opacity: 0;
}

#jsBrands .elem-2 {
    -webkit-transition: 1s 1s;
-moz-transition: 1s 1s;
  -o-transition: 1s 1s;
     transition: 1s 1s;
     opacity: 0;
}

#jsBrands .elem-3 {
    -webkit-transition: 1s 1.5s;
-moz-transition: 1s 1.5s;
  -o-transition: 1s 1.5s;
     transition: 1s 1.5s;
     opacity: 0;
}
#jsBrands .elem-4 {
    -webkit-transition: 1s 2s;
-moz-transition: 1s 2s;
  -o-transition: 1s 2s;
     transition: 1s 2s;
     opacity: 0;
}
#jsBrands .elem-5 {
    -webkit-transition: 1s 2.5s;
-moz-transition: 1s 2.5s;
  -o-transition: 1s 2.5s;
     transition: 1s 2.5s;
     opacity: 0;
}

.worth {
    background: #000;
    padding: 0 35px 30px;
    color: #fff;
    height: auto;
    overflow: hidden;
}

#jsFaq h2.home-header {
    opacity: 0;
    color: var(--header);
}

.worth-el {
    width: 100%;
    margin-bottom: 0;
    transition: background 0s !important;
    padding: 10px 10px 0 10px;
    opacity: 1;
}

.worth-el h2 {
    text-transform: uppercase;
    background: url(../img/icons/top_znak.svg) no-repeat;
    background-size: 26px 26px;
    background-position: left 7px;
    padding-left: 40px;
    cursor: pointer;
    text-align: left !important;
    line-height: 1 !important;
    color: var(--faq-headers) !important;
    margin-top: 0;
}

.worth-el.active h2 {
    color: var(--faq-headers-hover) !important;
    background-image: url(../img/icons/top_znak_red.svg);
}

.worth-el.active {
    background: #fff;
    transition: background 0s !important;
}

.worth .arrow-down {
    background: url(../img/icons/arrow-down.svg) no-repeat;
    background-size: 26px 26px;
    background-position: 95% bottom;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-left: 10px;
}

.worth .arrow-up {
    background: url(../img/icons/arrow-up.svg) no-repeat;
    background-size: 26px 26px;
    background-position: 95% bottom;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-left: 10px;
}

.worth-el div {
    height: 0;
    overflow: hidden;
    opacity: 0;
    padding-left: 40px;
    color: #000;
    font-size: 16px;
    margin-bottom: 0;
    padding-bottom: 10px;
    max-width: 1250px;
    text-align: justify;
}

.worth-el p {
    margin: 0 0 5px;
}

#jsHowWeWork h2 {
    opacity: 0;
}

.how-works {
    background: #146b5a;
    padding: 0 25px 30px;
    color: #fff;
    height: auto;
    overflow:hidden;
}

.how-works h2 {
    text-align: center;
    text-transform: none;
}

.how-works-el {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    width: calc(33.33333% - 20px);
    float: left;
    margin: 0 10px;
    text-align: justify;
    opacity: 0;
}

.how-works .elem-1 {
    -webkit-transition: 0.5s 0.5s;
-moz-transition: 0.5s 0.5s;
  -o-transition: 0.5s 0.5s;
     transition: 0.5s 0.5s;
     -webkit-transform: translateY(500px);
    -moz-transform: translateY(500px);
     -ms-transform: translateY(500px);
      -o-transform: translateY(500px);
         transform: translateY(500px);
}

.how-works .elem-2 {
    -webkit-transition: 0.5s 1s;
-moz-transition: 0.5s 1s;
  -o-transition: 0.5s 1s;
     transition: 0.5s 1s;
     -webkit-transform: translateY(500px);
    -moz-transform: translateY(500px);
     -ms-transform: translateY(500px);
      -o-transform: translateY(500px);
         transform: translateY(500px);
}

.how-works .elem-3 {
    -webkit-transition: 0.5s 1.5s;
-moz-transition: 0.5s 1.5s;
  -o-transition: 0.5s 1.5s;
     transition: 0.5s 1.5s;
     -webkit-transform: translateY(500px);
    -moz-transform: translateY(500px);
     -ms-transform: translateY(500px);
      -o-transform: translateY(500px);
         transform: translateY(500px);
}

.home-contact-cont {
    background: #fff;
    /* border-bottom: 20px solid #e6e6e6; */
}
.home-contact-cont-border {
    width: 100%;
    height: 20px;
    background: var(--home-contact-border-bck);
    background-color: #e6e6e6;
    margin-top: 80px;
}
.home-contact {
    background: var(--home-contact-bck);
    height: auto;
    text-align: center;
    padding-bottom: 30px;
    font-size: 18px;
    font-weight: 600;
    width: calc(100% - 60px);
    margin-left: 30px;
}

.home-contact h2.home-header .header-text {
    text-transform: var(--home-contact-header-transform);
    font: var(--home-contact-header-font);
    color: var(--home-contact-header-color);
}
.home-contact h2 .
.home-contact .img {
    background: #fff;
    padding-top: 10px;
}
.home-contact .img img {
    max-width: 300px;
    margin: 0 auto;
}
.home-contact h3, .home-contact h3 * {
    color: var(--home-contact-h3-color);
}
.home-contact p, .home-contact p a {
    color: var(--home-contact-a-color);
}
.home-contact p a:hover {
    color: var(--home-contact-a-hover-color);
}
.home-contact .btn-blue {
    margin-top: 20px;
    width: 300px;
    font-size: 21px;
    padding: 15px;
    color: #fff;
}

.home-contact .btn-blue:hover {
    background: #15a884;
    border-color: #15a884;
    color: #fff;
}

.navigation {
    position: fixed;
    top: 100px;
    right: 10px;
    padding-right: 0;
    width: auto;
    height: auto;
    z-index: 3000;
    overflow: visible;
}

#footer {
    opacity: 1;
    padding-left: 30px;
    padding-right: 30px;
}

.footerMenu a {
    color: #fff;
}

.footerMenu a:hover {
    border: 0 !important;
    text-decoration: underline;
}

.footerMenu:nth-child(1) {
    max-width: 250px;
}

.footerMenu:nth-child(2) {
    min-width: 400px;
}

.footerMenu:nth-child(3) {
    display: block !important;
}

.footerSendMessage, .footerMap {
    display: inline-block;
    margin-bottom: 15px;
    width: auto;
    padding-left: 35px;
}

.footerSendMessage {
    background: url(../img/icons/mail-white.svg) left center no-repeat;
    background-size: 22px auto;
    height: 22px;
}

.footerMap {
    background: url(../img/icons/marker.svg) left center no-repeat;
    background-size: 24px auto;
    height: 24px;
}

.footerFacebook svg {
    fill: var(--footer-facebook-fill);
    width: 30px;
    height: 30px;
    display: inline-block;
    width: auto;
}

.footerFacebook:hover svg {
    fill: var(--footer-facebook-fill-hover);
}

@media screen and (max-width: 768px) {
    .navigation {
        display: none;
    }
}

.navigation-el {
    width: 100%;
    position: relative;
    height: 25px;
}

.navigation-el a {
    border-radius: 50%;
    //border: 2px solid #14a884;
    background: #c1c1c1;
    width: 15px;
    height: 15px;
    display: block;
    z-index: 3002;
    float: right;
    margin-top: 5px;
    margin-right: 8px;
}

.navigation-el:first-child a {
    background: #14a884;
}

.navigation-el span {
    color: #14a884;
    display: none;
    float: right;
    margin-right: 10px;
    height: 20px;
}

.navigation-el:hover span {
    display: block;
}

.navigation-el:hover a {
    background: #14a884;
}



body {
    transform-style: none;
    overflow-x: hidden;
}

/*

html {
    overflow: hidden
}

html, body{
    height: 100%
}

body{
    overflow: hidden;
    overflow-y: auto;
    -webkit-perspective: 1px;
    -moz-perspective: 1px;
    perspective: 1px;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d
}


.parallax-container{
    height:100vh;
}

.big-slider video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(-1px) scale(2);
    -moz-transform: translateX(-50%) translateY(-50%) translateZ(-1px) scale(2);
    transform: translateX(-50%) translateY(-50%) translateZ(-1px) scale(2);
    z-index: -99;
}
*/
@media screen and (max-width: 500px) {
    .about .pc-offer {
        width: 95%;
    }
}

.about .pc-offer .description{
    float:left;
    text-align:justify;
    height: auto;
    max-height:115px;
    overflow:hidden;
    transition:height 1s;
    margin-bottom:10px;
}

.rodo .col-sm-offset-3 {
    margin-left: 0;
    width: 100%;
}

.newsletter-link {
    top: 0;
    position: absolute;
}

.left {
    margin-right: 15px !important;
    float: left;
}

.rigth {
    margin-left: 15px !important;
    float: right;
}

.blog-content img {
    margin: 0 3px 6px 3px;
}

.rodo-container {
    padding: 0 !important;
}

.recaptcha {
    width: 302px;
    margin: 10px auto;
}

.page-carosuel .productsList.row {
    margin: 0;
}

.page-carousel .col-xs-12 {
    padding: 3px;
}

.contact-trigger-form {
    height: 0;
    overflow: hidden;
    transition: 0.5s;
    opacity: 0;
    margin-top: 30px;
}

.bg-message.contact-trigger-form {
    background: #fff;
}

.bg-message.contact-trigger-form label {
    color: #000;
    text-transform: uppercase;
    line-height: 40px;
    font-weight: normal;
}

.bg-message.contact-trigger-form * {
    color: #000 !important;
}

.bg-message.contact-trigger-form .btn-ocean {
    color: #fff !important;
}

.productDetailsDelivery select.form-control, select.variants-select {
    background: url(../img/icons/arrow-down.svg) no-repeat;
    background-size: 16px 16px;
    background-position: 95% center;
}

.contact-trigger-form input.form-control {
    border: 1px solid #b0b0b0 !important;
    color: #000 !important;
}

.contact-trigger-form .col-md-offset-2 {
  margin-left: 0 !important;
}

@media screen and (max-width: 1000px) {
    .blog-content img {
        margin-bottom: 6px;
    }
}

@media (max-width:670px){
    .pc-offer{text-align:center}
    .pc-offer img{float:none;margin:0 0 40px}
    .pc-offer .description{width:100%; max-height: 400px;}
    .pc-offer ol{padding-left:10px}
}

/* Responsive */

@media (max-width: 627px) {
    .navbarIconBox {
        max-width: 100%;
        left: 0;
        right: auto;
        top: 75px;
    }
    .activeboxSearchBox,
    .activeboxCartBox,
    .activeboxLoginBox {
        max-width: 100%;
    }
    .activeboxCartBoxTable table .image {
        display: none;
    }
    .nav-tabs>li>a {
        /*font-size: 16px;*/
        margin: 10px 10px 0 0;
    }
    .productBox .productBoxHeader>a {
        max-height: 66px;
    }
    .productBox .productBoxFooter>p {
        height: 30px;
        margin: 10px 0;
    }
    .cartTable {
        border-top: 1px solid #ddd;
    }
    .cartTable>thead {
        display: none;
    }
    .cartTable>tbody>tr>td,
    .cartTable>tfoot>tr>td {
        display: block;
        border: none !important;
        padding: 5px 10px !important;
        text-align: center;
        width: 100% !important;
    }
    .cartTable>tbody>tr>td:first-child {
        display: none;
    }
    .cartTable>tbody>tr>td:last-child {
        border-bottom: 1px solid #ddd !important;
    }
    .orderSummaryCartTable table td {
        padding: 0 0 20px 0;
    }
    .orderSummaryCartTable table td.image {
        display: none;
    }
}

@media (min-width: 768px) {
    .navbar-nav>li {
        float: left;
    }
    .nav>li {
        display: inline-block;
    }
}

@media screen and (max-width: 630px) {
    .filters-footer {
        max-width: 250px;
        margin: 0 auto;
    }
}

@media (min-width: 628px) {
    .no-wrap {
        white-space: nowrap;
    }
    .navbar-nav>li {
        float: none;
    }
}

@media(max-width: 525px) {
    .horizontal-filters a {
        /*width: 100%;*/
    }
}

@media (max-width: 991px) {
    .productDetailsAction2 .btn,
    .productDetailsAction3 .btn {
        padding: 22px 10px;
    }
    .productDetailsAction2 .btn img,
    .productDetailsAction3 .btn img {
        margin-right: 10px;
    }
    .cartTable>tbody>tr>td.col2>.responsive-container {
        width: 50px;
    }
    .cartTable .col4,
    .cartTable .col5,
    .cartTable .col7,
    .cartTable .col10 {
        display: none;
    }
    .compare .buttons {
        display: block;
    }
    .compare table td {
        display: none;
        padding: 10px;
        width: 50%;
    }
    .compare table td:first-child,
    .compare table td.active {
        display: table-cell;
    }
    .navbar .nav>li>a:focus,
    .navbar .nav>li>a:hover,
    .navbar .nav>li>a.active,
    .navbar .nav>li>a.active {
        border-bottom: 5px solid transparent;
    }
}

@media (min-width: 1200px) {
    .hover-opacity {
        opacity: 0.5;
        transition: opacity 200ms;
    }
    .hover-opacity:hover {
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .giftbox>.overlay-gift {
        margin-bottom: 10px;
    }
    .giftbox div {
        padding: 0;
    }
    .giftbox img {
        height: auto!important;
    }
}

@media (max-width: 1300px) {
    .background-product {
        padding-top: 100px;
        padding-bottom: 0;
    }
    .header-margin {
        padding-top: 100px;
    }
    .navbarIconBox {
        top: 115px
    }
    .tile:hover .productBoxFooter {
        top: 0;
    }
    div.tile-add-to-cart {
        position: static;
        border: none;
        pointer-events: auto;
        background: transparent;
        opacity: 1;
    }
    #header-static ul.level3, #header-static2 ul.level3 {
        position: absolute;
        top: 45px;
        left: 0px;
    }
    #header-static li.level2:hover ul.level3, #header-static2 li.level2:hover ul.level3 {
        opacity: 0;
        pointer-events: none;
    }
    #header-static li.level2.opened ul.level3, #header-static2 li.level2.opened ul.level3 {
        position: absolute;
        top: 50px;
        left: 0px;
        opacity: 1;
        pointer-events: auto;
    }
    #header-static ul.level3:before, #header-static2 ul.level3:before {
        left: 30px;
    }
    .home-video {
        height: 100%;
        object-fit: inherit;
    }

    /*.navbarIcon.activebox>a:after {
        top: 89px;
    }*/
    .tile-add-to-cart a {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 770px) {
    .responsive-1300-x {
        display: none
    }
}

@media screen and (max-width: 1200px) {
    .icons-navbar {
        width: 100px;
    }
}


@media (min-width: 460px) and (max-width: 628px) {
    .mixedBox .currencyWidget img {
        width: 30px!important;
        float: left;
        position: relative;
        top: 5px;
        left: 10px;
    }
    .mixedBox .currencyWidget .form-group {
        width: 80%!important;
        float: right;
    }
}

@media (max-width: 460px) {
    .mixedBox .currencyWidget img {
        width: 30px!important;
        float: left;
        position: relative;
        top: 5px;
        left: 0px;
    }
    .mixedBox .currencyWidget .form-group {
        width: 70%!important;
        float: right;
    }
}

@media (max-width: 991px) {
    .contact-row>[class*="col-"] {
        height: auto;
        padding: 20px;
    }
    .contactBox img {
        left: 0;
        margin-right: 10px;
    }
}
@media (max-width: 768px) {
    .jAlertBox {
        left: 5%;
        right: 5%
    }
    .burger-container {
        display: block!important;
    }
    .icons-navbar {
        width: 100px;
    }
    .background-product,
    .header-margin {
        padding-top: 35px;
    }
    .large-font,
    .page-header,
    .blog-title,
    .blog-background h1,
    .background-product h1,
    .blog-background h3,
    .background-product h3 {
        font-size: 21px;
    }
    .card .favorite {
        opacity: .5;
        pointer-events: auto;
    }
    .navbarIconBox {
        top: 62px;
        right: -64px;
    }
    .mixedBox img {
        width: 30px;
        top: 0;
    }
    .carousel-home .owl-controls {
        top: 40px;
    }
    .carousel-home-el span.text {
        font-size: 21px;
    }
    .carousel-home-el h1 span.text {
        font-size: 26px !important;
        display: inline;
    }
    .tile .colorboxProductDetails {
        display: none;
    }
    .coloured-box {
        height: 40px;
        width: 40px;
        margin: 5px;
    }
    .tile {
        z-index: 10;
        border: 1px solid #d0d0d0;
        height: auto;
    }
    .blog-home {
        /*background: white;*/
    }
    .blog-home .card {
        border: 1px solid #efefef;
    }
    .table>tbody>tr>td,
    .table>tbody>tr>th,
    .table>tfoot>tr>td,
    .table>tfoot>tr>th,
    .table>thead>tr>td,
    .table>thead>tr>th {
        padding: 4px;
        border-color: #eee;
    }
    #activeboxContact {
        display: none;
    }
    .back-to-buying,
    .clear-cart,
    .makeOrder {
        display: block;
        margin: 10px 0;
        font-size: 16px;
    }
    .mobile-block {
        display: block;
    }
    .extra-bottom-margin .productBoxFooter {
        position: relative;
        top: 0;
    }
    .enter-voucher>* {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    .enter-voucher input,
    .enter-voucher button {
        margin: 10px 0;
        display: block;
        width: 100%;
    }
    .nav-div a {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    .responsive-x-frame {
        /*overflow-x: hidden;*/
        position: relative;
        width: 100%;
    }

    .arrow-top,
    .filter-shift {
        display: none;
    }
    .sliderSvgIcons a {
        padding: 10px;
    }
    .sliderSvgIcons a h3 {
        margin: 0;
    }
    .giftbox2,
    .giftbox3 {
        margin: 0 10px;
    }
    .newCollectionsImage {
        padding: 0;
    }
    .product-details,
    .recommended-products {
        padding: 10px;
    }
    .activeboxSearchBoxResults .entry h3 {
        font-size: 18px;
    }
    .cartTable>tbody>tr>td.col2>.responsive-container {
        margin: 0 auto;
        width: 200px;
    }
    .card-content {
        height: 250px;
    }
    .blog-gallery {
        padding: 0px;
    }
    .blog-gallery-image {
        margin-bottom: 10px;
    }
    .google-play {
        width: 100%;
        height: 50px;
        background: #000;
        padding: 8px 15px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index:4000;
        display: block;
    }
    .google-play img {
        background: none;
        margin-right: 15px;
        max-width: 110px;
        margin-top: 2px;
        display: inline-block;
    }
    .google-play a {
        color: #fff;
        font-size: 16px;
    }
    #header-static {
        margin-top: 0px;
    }
    .google-play .close {
        background: url('../img/svg/cancel-white.svg') no-repeat;
        width: 24px;
        height: 24px;
        float: right;
        opacity: 1;
        margin-top: 7px;
        margin-right: 7px;
    }
}

@media (max-width: 628px) {
    .activeboxLoginBox {
        width: 100%;
    }
    .navbarIconBox {
        top: 59px;
        right: -64px;
    }
    .icons-navbar {
        width: 100px;
        text-align: center;
    }
    .currencyWidget>.padding-mobile {
        padding-bottom: 10px;
    }
}

@media screen and (max-width: 500px) {
    .jAlertContent a.btn.btn-grey-border, .jAlertContent a.btn.bg-blue {
        font-size: 14px !important;
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    .jAlertContent {
        padding: 15px !important;
    }
    .jAlertContent a {
        font-size: 14px !important;
    }
}

@media screen and (max-width: 768px) {
    .kv-table-wrap tr > td:first-child {
        font-size: 14px;
    }
    #documents {
        padding: 0;
    }
    .table-responsive > .table > tbody > tr > td,
    .table-responsive > .table > tbody > tr > th,
    .table-responsive > .table > tfoot > tr > td,
    .table-responsive > .table > tfoot > tr > th,
    .table-responsive > .table > thead > tr > td,
    .table-responsive > .table > thead > tr > th {
        white-space: normal;
    }
}

@media screen and (max-width: 767px) {
    .filters-el-btn.icon-list-grid, .filters-el-btn.icon-list-rows {
        display: inline-block;
        margin-left: 0;
        cursor: pointer;
    }
    .filters-el-btn, .filter-show-btn {
        min-width: 100px !important;
        max-width: 200px !important;
        width: 200px !important;
        height: 36px !important;
        font-size: 14px;
    }
    .colorbox.filter-shift.filter-show {
        display: none;
    }
    .tile {
        max-width: 100%;
    }
}


@media screen and (max-width: 621px) {
    .filters-el-btn, .filter-show-btn, .filters-el, .filters-button {
        max-width: 250px !important;
        width: 250px !important;
        height: 36px !important;
        font-size: 18px;
        margin: 0 auto 3px auto;
        display: block;
        float: none !important;
    }
    .filter-show-btn.icon-list-grid {
        display: inline-block;
        vertical-align: bottom;
        margin: 0 auto 3px auto;
    }
    .filters-button {
        display: block;
    }

    .filters {
        display: none;
    }

}

@media screen and (max-width: 480px) {
    .kv-table-wrap tr > td:first-child {
        font-size: 14px !important;
    }
    #documents .kv-table-wrap th, #documents .kv-table-wrap td {
        width: 99% !important;
        font-size: 16px;
    }
    #documents .kv-table-wrap td h3 {
        margin-bottom: 0;
    }
    .userDocumentsRow2 {
        margin-bottom: 0;
    }
    #documents .kv-table-wrap thead {
        display: none;
    }
    .kv-table-wrap tr:first-child > td:first-child {
        border: 0;
    }
    .kv-table-wrap tbody tr > td {
        border: 0;
    }
    .kv-table-wrap tr > td:first-child {
        border-top: 3px double #ccc;
    }
    .kv-table-wrap tr > td tr td:first-child {
        border-top: 0;
    }
}

@media screen and (max-width: 400px) {
    .productBoxFooter>div.tile-add-to-cart {
        height: 100px;
    }
    .productBoxFooter > div.amount-in-tile {
        height: 40px;
        font-size: 14px;
    }
    .row.productsList {
        margin-left: -7px !important;
        margin-right: -7px !important;
    }
    .row.productsList [class*="col-"] {
        padding-left: 3px !important;
        padding-right: 3px !important;
    }
}

#rodoPopup {
    width: 600px;
    height: 500px;
    padding: 0;
    margin: 0 auto;
}

.rodoContent {
    width: 100%;
    height: 370px;
    overflow-y: auto;
    margin-bottom: 20px;
    padding: 0 10px 10px 10px;
}

.form-contact .contact-rodo label {
    text-transform: none !important;
}

.contact-rodo label span {
    padding-left: 30px;
    display: inline-block;
    text-transform: none;
    line-height: 1.1;
}

.contact-trigger-form .contact-rodo label span {
    padding-left: 0;
}

.contact-trigger-form div.required label::after, .contact-rodo.required label::after {
    top: -5px;
    position: absolute;
    left: 25px;
}

.contact-rodo.required label::after {
    top: 5px;
    left: 23px;
    COLOR: RED;
}

@media screen and (max-width: 650px) {
	#rodoPopup {
    	width: 100%;
    	height: 450px;
        padding: 15px;
	}
	.rodoContent {
	    height: 300px;
	}
}

.shopping-path {
    height: 50px;
    overflow: hidden;
    //margin-top: -30px;
    clear: both;
    display: block;
    padding: 0 !important;
}

.shopping-path .col-xs-4 a {
    color: #9F018C;
    border-bottom: 4px solid #9F018C !important;
    padding-bottom: 7px !important;
    text-align: center !important;
    width: 100% !important;
    display: block;
    text-transform: uppercase;
    float: left;
}

.shopping-path .col-xs-4 span.active {
    color: #005CEF;
    border-bottom: 4px solid #005CEF !important;
    padding-bottom: 7px !important;
    text-align: center !important;
    width: 100% !important;
    display: block;
    text-transform: uppercase;
    float: left;
}

.shopping-path .col-xs-4 span.notactive {
    color: #999;
    border-bottom: 4px solid #999 !important;
    padding-bottom: 7px !important;
    text-align: center !important;
    width: 100% !important;
    display: block;
    text-transform: uppercase;
    float: left;
}

.arrow-path {
    display: none;
    float: right;
    font-size: 26px;
    color: #565656;
    vertical-align: top;
}

.order-login {
    max-width: 900px;
    margin: 0 auto 30px auto;
    display: none;
}
.auth-link.btn-wide.facebook:hover {
    background: #3c5693;
}
.auth-link.btn-wide.facebook {
    border: 1px solid #3c5693;
    line-height: 30px;
    padding: 2px 5px 5px 5px;
    background: #fff;
    width: 193px;
    margin-left: 5px;
    text-align: center;
}
.auth-clients .auth-client .auth-link {
    //width: auto !important;
    color: #212121;
    display: inline-block;
}
.auth-clients .auth-client .auth-link.btn-wide .auth-icon.facebook {
    background-image: url(../img/icons/facebook-blue.svg) !important;
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    background-color: transparent;
}
.auth-clients .auth-client .auth-link.btn-wide.facebook .auth-title {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
    margin-top: 0;
    color: #3c5693;
    text-transform: none;
}

.auth-link.btn-wide.google:hover {
    background: #d2564e;
}
.auth-link.btn-wide.google {
    border: 1px solid #d2564e;
    line-height: 30px;
    padding: 2px 5px 5px 5px;
    background: #fff;
    width: 193px;
    text-align: center;
}
.auth-clients .auth-client .auth-link.btn-wide .auth-icon.google {
    background-image: url(../img/icons/google-red.svg) !important;
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    background-color: transparent;
}
.auth-clients .auth-client .auth-link.btn-wide.google .auth-title {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
    margin-top: 0;
    color: #d2564e;
    text-transform: none;
}
.auth-clients .auth-client .auth-link.btn-wide.google:hover .auth-title, .auth-clients .auth-client .auth-link.btn-wide.facebook:hover .auth-title {
  color: #fff;
}
.order-login .activeboxLoginBox {
    width: 100%;
}
.auth-clients .auth-client .auth-link.btn-wide:hover .auth-icon.google {
    background-image: url(../img/icons/google-white.svg) !important;
}
.auth-clients .auth-client .auth-link.btn-wide:hover .auth-icon.facebook {
    background-image: url(../img/icons/facebook-white.svg) !important;
}

.order-login #loginForm .col-sm-9 {
    width: 50%;
}
#orderForm {
    max-width: 880px;
    margin: 0 auto;
}
label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
}
#orderCreateAccount .label-text, #orderCreateAccount .col-sm-3 {
    width: 100%;
}

#orderCreateAccount .col-sm-3 {
  width: calc(100% - 30px);
}
.form-horizontal .control-label {
    font-weight: 500;
    padding-top: 10px;
    text-align: left;
    text-transform: none;
}

.label-text span, .label-text {
  font-weight: normal;
}
.label-text span, .label-text {
    font-weight: normal !important;
}

.label-text b {
    float: right;
    font-weight: normal !important;
    width: calc(100% - 21px);
    margin-right: 0 !important;
    display: block;
}

input[type="checkbox"], input[type="radio"]{
	position: absolute;
	right: 9000px;
}

/*Check box*/
input[type="checkbox"] + .label-text:before {
	content: "\f0c8";
	font-family: "FontAwesome";
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing:antialiased;
	width: 1em;
	display: inline-block;
	margin-right: 5px;
    color: #474747;
}

input[type="checkbox"]:checked + .label-text:before, .label-text.checked:before {
	content: "\f14a";
	color: rgb(73, 150, 209);
	animation: effect 250ms ease-in;
}

input[type="checkbox"] + .label-text.unchecked:before {
	content: "\f0c8";
    color: #474747;
}

input[type="checkbox"]:disabled + .label-text{
	color: #474747;
}

input[type="checkbox"]:disabled + .label-text:before{
	content: "\f0c8";
	color: #474747;
}

input[type="radio"] + .label-text:before {
	content: "\f111";
	font-family: "FontAwesome";
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing:antialiased;
	//width: 1em;
	display: inline-block;
	margin-right: 5px;
    color: #474747;
}

input[type="radio"]:checked + .label-text:before{
	content: "\f111";
	color: rgb(73, 150, 209);
	animation: effect 250ms ease-in;
    font-weight: 900;
    font-size: 10px;
    border: 1px solid #474747;
    padding: 3px 2px 2px 2px;
    border-radius: 50%;
    margin-top: 3px;
    vertical-align: top;
}

input[type="radio"]:checked + .label-text span, input[type="radio"]:checked + .label-text span b,  input[type="radio"]:checked + .label-text {
    font-weight: bold !important;

}
@media screen and (max-width: 768px) {
    .footerMenu {
        height: 36px;
        overflow: hidden;
        margin-bottom: 0;
        text-align: left;
        transition: 0.5s;
    }
    .tbs .footerMenu {
        height: 24px;
    }
    .footerMenu ul {
        list-style: none;
        padding-left: 0;
        padding-bottom: 10px;
    }

    .footerMenu ul {
        padding-left: 8px;
    }

    .footerMenu ul li {
        text-align: left;
    }

    .footerMenu ul li a {
        color: #fff;
    }

    .footerMenu h3 {
        margin-top: 10px;
        cursor: pointer;
        color: #fff;
        font-size: 21px;
    }


}

@media screen and (max-width: 990px) {
    .footerMenu span.plus-icon {
        background: url(../img/icons/plus-grey.svg) no-repeat;
        background-size: var(--footer-plus-size) auto;
        float: right;
        display: block;
        width: var(--footer-plus-size);
        height: var(--footer-plus-size);
        cursor: pointer;
    }

    .footerMenu span.minus-icon {
        background: url(../img/icons/minus-grey.svg) no-repeat;
        /* background-size: 24px 24px; */
        float: right;
        display: block;
        width: var(--footer-minus-size);
        height: var(--footer-minus-size);
        cursor: pointer;
        background-size: var(--footer-minus-size) auto;
    }
    .tbs .footerMenu span.plus-icon {
        background-size: 18px 18px;
        width: 18px;
        height: 18px;
    }

    .tbs .footerMenu span.minus-icon {
        background-size: 18px 18px;
        width: 18px;
        height: 18px;
    }
    .footerMenu {
        height: 36px;
        overflow: hidden;
    }
    .tbs .footerMenu {
        height: 24px;
    }
}

@media screen and (min-width: 991px) {
    .footerMenu {
        height: auto;
        overflow: hidden;
    }
}


.www_hide {
    display: none !important;
}

.search-close {
    background: url(../img/icons/colorbox-close.svg) no-repeat;
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    float: right;
    margin-top: -30px;
    padding: 0;
    border: 0;
    display: inline-block;
}

.cartTable button, .activeboxCartBoxTable button {
    background: none;
    width: 20px;
    border: none;
    margin: 0 !important;
    padding: 0 !important;
}

.activeboxSearchBoxResults strike {
    color: #000;
}

#header-static .activeboxSearchBoxResults {
    color: #000;
}

#orderForm[data-pjax-container].pjax-loading::after {
    background-position: center bottom !important;
}

.cartDiscountsListAll h6 {
    margin-bottom: 5px;
    border-bottom: 1px solid #ddd;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.cartDiscountsListAll span {
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
}

#header-static .navbarIconBox {
    color: #000;
}

.activeboxCartBoxFooter .col-xs-12 {
    text-align: left;
}

.cartDiscountsListAll .item button.arrow-down {
    border: 0;
    background: url(../img/icons/arrow-down.svg) no-repeat;
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: top;
    margin-left: 10px;
}

.cartDiscountsListAll .item button.arrow-up {
    border: 0;
    background: url(../img/icons/arrow-up.svg) no-repeat;
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: top;
    margin-left: 10px;
}

.cartDiscountsListAll .item span {
    display: none;
}

.cartDiscountsListAll .item span.show {
    display: block;
}

.cartDiscountsListAll {
    max-height: 130px;
    overflow: hidden;
}

button.promotions-more {
    border: 0;
    background: url(../img/icons/arrow-down.svg) no-repeat;
    background-size: 20px 20px;
    background-position: right 3px;
    padding-right: 30px;
    width: 160px;
    height: 20px;
    display: inline-block;
    vertical-align: top;
    margin-left: 0;
    margin-top: 20px;
    text-align: left;
    padding-left: 0;
    color: #9d168d;
}

button.promotions-less {
    border: 0;
    background: url(../img/icons/arrow-up.svg) no-repeat;
    background-size: 20px 20px;
    background-position: right 3px;
    padding-right: 30px;
    width: 160px;
    height: 20px;
    display: inline-block;
    vertical-align: top;
    margin-left: 0;
    margin-top: 20px;
    text-align: left;
    padding-left: 0;
    color: #9d168d;
}

.promotion-item {
    background: #fff;
    padding: 10px;
    margin-bottom: 10px;
    font-family: 'Roboto';
    height: auto;
    overflow: hidden;
}

.promotion-item h6 {
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: right top;
    background-image: url(../img/icons/arrow-down.svg);
    margin-top: 0;
    margin-bottom: 0;
    font-size: 21px;
}

.promotion-item h6.arrow-up {
    background-image: url(../img/icons/arrow-up.svg);
}

.promotion-item h6 button {
    background: none;
    border: 0;
    text-transform: uppercase;
    width: 100%;
    text-align: left;
    padding: 0;
}

.promotion-item span.desc {
    padding-top: 10px;
    display: none;
}

.promotion-item span.date {
    width: auto;
    display: inline-block;
    background: url(../img/icons/calendar.svg) no-repeat;
    background-size: 20px 20px;
    padding-left: 30px;
    text-transform: none;
    font-size: 16px;
    padding-top: 2px;
}

.promotion-item span.name {
    width: auto;
    padding-right: 50px;
    display: inline-block;
    background: url(../img/icons/tag.svg) no-repeat;
    background-size: 20px 20px;
    padding-left: 30px;
}

.counter {
    background: #15a884;
    height: 379px;
    cursor: pointer;
}

.counter:hover {
    background: #088969;
}

.counter-header {
    height: 250px;
    padding-top: 80px;
    font-size: 24px;
    color: #fff;
    text-align: center;
}

.counter-header p {
    margin-bottom: 20px;
    font-family: 'Times New Roman';
}

.countdown {
    color: #fff;
    font-size: 21px;
    text-align: center;
}

.counter-header .btn-white-border {
    border: 2px solid #fff;
    background: none;
    color: #fff;
    margin-bottom: 20px;
    width: 100%;
    max-width: 150px;
}

.counter-header .btn-white-border:hover {
    background: #fff;
    color: #000;
}

.counter-header p.time-left {
    font-size: 18px;
    text-transform: uppercase;
    font-family: 'Roboto';
}

.product-day {
    border: 2px solid #15a884;
}

.product-day:hover {
    border: 2px solid #088969;
}

.product-day .productBoxHeader {
    padding: 0;
}

.product-day p.header {
    width: 100%;
    height: 40px;
    background: #15a884;
    color: #fff;
    font-family: 'Roboto';
    text-align: center;
    font-size: 18px;
    padding-top: 5px;
    margin-top: 0;
    text-transform: uppercase;
}

.product-day:hover p.header {
    background: #088969;
}

.discount-circle {
    background: #15a884;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    padding-top: 12px;
    color: #fff;
    font-size: 18px;
    position: absolute;
    right: 20px;
    top: 60px;
}

.product-day:hover .discount-circle {
    background: #088969;
}

.products-of-day .countdown {
    color: #15a884;
    margin-bottom: 20px;
}

.end-promotion {
    margin-top: -80px;
    font-size: 21px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.frame-product-of-day {
    border: 1px solid #15a884;
    color: #15a884;
}

.price-content .discount-circle {
    position: relative;
    top: auto;
    right: auto;
    margin-left: 20px;
}

.product-day-discount {
    margin-top: 30px;
}

.product-day-discount .countdown {
    color: #15a884;
    display: inline-block;
}

.giftbox2.productsOfDay {
    height: 300px !important;
    padding: 0;
    overflow: hidden;
    margin-top: 0;
}

.giftbox2.productsOfDay .elem-1 {
    opacity: 0;
    -webkit-transition: 0.5s 0.5s;
-moz-transition: 0.5s 0.5s;
  -o-transition: 0.5s 0.5s;
     transition: 0.5s 0.5s;
     -webkit-transform: translateY(500px);
    -moz-transform: translateY(500px);
     -ms-transform: translateY(500px);
      -o-transform: translateY(500px);
         transform: translateY(500px);
}

.giftbox2.productsOfDay .elem-2 {
    opacity: 0;
    -webkit-transition: 0.5s 1s;
-moz-transition: 0.5s 1s;
  -o-transition: 0.5s 1s;
     transition: 0.5s 1s;
     -webkit-transform: translateY(500px);
    -moz-transform: translateY(500px);
     -ms-transform: translateY(500px);
      -o-transform: translateY(500px);
         transform: translateY(500px);
}

.giftbox2.productsOfDay .elem-3 {
    opacity: 0;
    -webkit-transition: 0.5s 1.5s;
-moz-transition: 0.5s 1.5s;
  -o-transition: 0.5s 1.5s;
     transition: 0.5s 1.5s;
     -webkit-transform: translateY(500px);
    -moz-transform: translateY(500px);
     -ms-transform: translateY(500px);
      -o-transform: translateY(500px);
         transform: translateY(500px);
}

@media screen and (max-width: 767px) {
    .giftbox2.productsOfDay {
        height: 610px !important;
    }
}

.giftbox2.productsOfDay .giftbox2-el:nth-child(2) {
    bottom: 0;
    background: #4b4b4b !important;
    height: 300px;
}

.giftbox2.productsOfDay .giftbox2-el:nth-child(1), .giftbox2.productsOfDay .giftbox2-el:nth-child(3) {
    background: #15a884;
    color: #fff;
    height: 300px;
}

.giftbox2.productsOfDay .giftbox2-flex {
    background: rgba(0, 0, 0, 0);
}

.giftbox2.productsOfDay .btn-white-border {
    border: 2px solid #fff;
    color: #fff;
    background: none;
}

.giftbox2.productsOfDay .btn-white-border:hover {
    border: 2px solid #fff;
    color: #000;
    background: #fff;
}

.giftbox2.productsOfDay h3 {
    text-transform: uppercase;
}

.promotions-frames {
    padding-top: 5px;
}

.promotions-frames .frame-card {
    padding: 3px;
    font-size: 12px;
}

@media screen and (max-width: 1560px) {
    .customers-el .description {
        height: 280px;
    }
}

@media screen and (max-width: 1300px) {
    .customers-el h2 {
        margin-top: 0;
    }
    .customers-el .description {
        height: 247px;
    }
    .customers-el .description {
        height: 320px;
    }
}

@media screen and (max-width: 1200px) {
    .customers-el .description {
        height: 360px;
    }
}

@media screen and (max-width: 1100px) {
    .offer-box {
        height: 450px;
    }
    .customers {
        padding-left: 5%;
        padding-right: 5%;
    }

    .how-works-el h2 {
        font-size: 20px;
    }
}

@media screen and (max-width: 980px) {
    .about2 p {
        font-size: 18px;
    }
    .about2 h2 {
        font-size: 36px;
    }
    .offer-box {
        width: calc(50% - 20px);
        height: 350px;
    }
    .offer-box:nth-child(2), .offer-box:nth-child(5), .offer-box:nth-child(6) {
        background: #253942;
    }
    .offer-box:nth-child(3), .offer-box:nth-child(4), .offer-box:nth-child(7) {
        background: #14a884;
    }
    .works-el .img {
        width: 40%;
    }
    .works-el .description {
        width: 60%;
    }
    .works-el .btn-blue {
        position: relative;
        float: right;
        margin-top: 30px;
        margin-bottom: 20px;
        right: auto;
        bottom: auto;
        margin-right: 50px;
    }
    .customers-el h2 {
        font-size: 20px;
    }
    .customers p {
        line-height: 1.3;
    }
    .customers-el .description {
        height: 260px;
    }
}

@media screen and (max-width: 900px) {
    .works-el .img {
        width: 100%;
    }
    .works-el .description {
        width: 100%;
    }
    .works-el .btn-blue {
        position: relative;
        float: right;
        margin-top: 30px;
        margin-bottom: 20px;
        right: auto;
        bottom: auto;
        margin-right: 50px;
    }
}

@media screen and (max-width: 768px) {
    .app_footer {
        display: block;
    }
    .www_footer {
        display: none;
    }
    /*#header-static {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        z-index: 2000;
        margin-top: 0;
    }*/
    .navbarIcon span.circle {
        position: absolute !important;
        width: 20px !important;
        height: 20px !important;
        right: -30px !important;
        top: 0px !important;
        margin-left: 0 !important;
        border-radius: 50% !important;
        background: rgb(73, 150, 209) !important;
        font-size: 14px !important;
        text-align: center;
    }

    .navbarIcons {
        float: left;
    }

    .responsive-x-768 {
        position: fixed;
        top: 74px;
        right: 0;
        display: none;
        transition: 0.5s;
    }
    .responsive-x-768.noGoogle {
        top: 75px;
    }
    .responsive-x-768.fixed {
        top: 74px;
    }
    .responsive-x-768.fixed.noGoogle {
        top: 74px;
    }
    .responsive-x-768.active {
        display: block;
    }
    .responsive-x-768.active a:focus, .responsive-x-768.active a:hover {
        border-bottom: 0 !important;
    }
    .burger-container {
        padding-bottom: 17px;
        top: 55px;
        z-index: 3000;
    }
    .navbarIconBox {
        top: 56px;
    }
    .activeboxLoginBoxForm label {
        color: #000;
    }
    .navbarIcons {
        width: calc(100% - 45px);
    }
    .navbarIcon {
        width: 20%;
    }
    .burger-container.open {
        background: transparent;
    }
    .responsive-x-768 a.level2 {
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .about2 .description {
        margin-left:50px;
        margin-right: 50px;
        margin-top: 20px;
        width: calc(100% - 100px);
    }
    .offer-box {
        height: 400px;
        width: 100%;
        margin: 0;
    }
    .carousel-offer .owl-item:nth-child(even) .offer-box {
        background: #253942;
    }
    .carousel-offer .owl-item:nth-child(odd) .offer-box {
        background: #14a884;
    }
    .carousel-offer .owl-item {
        padding-left: 10px;
        padding-right: 10px;
    }
    .carousel-offer .owl-controls {
        margin-top: 30px;
    }
    .works-el .img {
        width: 100%;
        margin-bottom: 30px;
    }
    .works-el .description {
        width: 100%;
        float: none;
    }
    .works-el .btn-blue {
        margin: 30px auto 20px auto;
        float: none;
        display: block;
    }
    .how-works-el {
        width: 100%;
        margin: 0;
    }
    .how-works .owl-item {
        padding: 0 10px;
    }
    .how-works .owl-controls {
        margin-top: 30px;
    }
    .navbarLogo span {
        font-size: 10px;
    }
    .customers-el .description {
        height: 300px;
    }
    .burger-container {
        padding-bottom: 17px;
        top: -5px;
        z-index: 3000;
    }
    .offer {
        padding: 0 10px;
    }
    .works-el .description {
        padding: 0 10px;
    }
    .customers {
        padding-left: 0;
        padding-right: 0;
    }
    .how-works {
        padding: 0 10px 30px;
    }
    .navbar-nav {
        float: left;
        width: 100%;
    }
    .responsive-x-768 ul.level3::before {
        border-bottom: 10px solid #253942;
    }
    .responsive-x-768 ul.level3 {
        background: #253942;
    }
    h2.home-header {
        padding-top: 20px;
    }
    .icons-navbar {
        padding-top: 5px;
        position: absolute;
        right: 50px;
        margin-right: 0 !important;
        top:0;
    }
}

@media screen and (max-width: 630px) {
    .end-promotion {
        margin-top: 0;
    }
    .about2 .description {
        padding: 20px;
    }
    .stats-el {
        font-size: 30px;
    }
    .customers p {
        line-height: 1.42857143;
    }
    .worth {
        padding: 30px 20px;
    }
    .worth-el h2 {
        font-size: 20px;
        height: 40px;
        padding-top: 5px;
    }
    .worth-el h2 .arrow-down {
        background-position: 95% 3px;
    }
    .contact-data {
        background: url(../img/icons/building2.svg) right top no-repeat;
        background-size: 50px 50px;
        min-height: 50px;
    }
    .phone-data {
        background: url(../img/icons/phone2.svg) right top no-repeat;
        background-size: 50px 50px;
        min-height: 50px;
    }
    .mail-data {
        background: url(../img/icons/mail2.svg) right top no-repeat;
        background-size: 50px 50px;
        min-height: 50px;
    }
    .form-contact label {
        margin: 0;
        padding-bottom: 0;
    }
}

@media screen and (max-width: 500px) {
    .about2 h2, h2 {
        font-size: 23px;
        text-align: center !important;
    }
    .about2 h2.right-header span {
        font-size: 23px;
        text-align: center !important;
        float: none !important;
        display: inline;
    }
    .stats-el {
        font-size: 26px;
    }
    .stats {
        padding-left: 20px;
        padding-right: 20px;
    }
    .home-contact h2 {
        font-size: 18px;
    }
    .carousel-home-el .text {
        font-size: 21px;
    }
    .carousel-home-el span.text.big-slider-text {
        font-size: 24px;
    }
    .carousel-home-el .center-flex {
        display: block;
        padding-top: 20px;
    }
    .responsive-x-768 {
        width: 100%;
    }
    .pageContent, .gallery, .recommended {
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% - -40px);
    }

}

@media screen and (max-width: 400px) {
    .about2 .description {
        margin-left: 20px;
        margin-right: 20px;
        width: calc(100% - 40px);
    }
    .offer-box p {
        line-height: 1.42857143;
    }
    .offer-box h2 {
        font-size: 20px;
    }
    .worth-el h2 {
        font-size: 18px;
        height: 40px;
        padding-top: 5px;
    }
    .works-el .img a.btn {
        left: 10px;
        right: 10px;
        width: calc(100% - 20px);
        font-size: 22px;
    }
}

@media screen and (max-width: 350px) {
    .stats-el {
        font-size: 22px;
    }
}

/*
@media screen and (max-width: 700px) {
    .promotion-item span.name {
        width: 100%;
        padding-bottom: 10px;
    }
    .promotion-item span.date {
        width: 100%;
    }
}

*/
@media screen and (max-width: 768px) and (min-width: 626px) {
    .responsive-x-768 {
        position: absolute;
        top: 79px;
        right: 0;
        display: none;
    }
    .responsive-x-768.noGoogle {
        top: 74px;
    }
    .responsive-x-768.fixed {
        top: 100px;
    }
    .responsive-x-768.fixed.noGoogle {
        top: 50px;
    }
    .responsive-x-768.active {
        display: block;
    }
    .counter-header p.time-left {
        font-size: 16px;
        text-transform: uppercase;
    }
    .counter-header {
        height: 220px;
        padding-top: 20px;
        font-size: 22px;
    }
    .countdown {
        font-size: 16px;
    }
}

@media screen and (max-width: 500px) {
    .activeboxCartBoxFooter .col-xs-12 {
        text-align: right;
    }

    .counter-header p.time-left {
        font-size: 16px;
        text-transform: uppercase;
    }
    .counter-header {
        height: 220px;
        padding-top: 40px;
        font-size: 22px;
    }
    .countdown {
        font-size: 18px;
    }
    .products-of-day .countdown {
        font-size: 21px;
    }
}

@media screen and (max-width: 400px) {
    .shopping-path .col-xs-4 span.notactive, .shopping-path .col-xs-4 span.active, .shopping-path .col-xs-4 a {
        border-bottom: 0 !important;
        font-size: 12px;
        width: 100% !important;
        vertical-align: top;
        display: block !important;
        margin: 0 auto;
        float: none;

    }
    .shopping-path .col-xs-4 {
        padding-left: 0 !important;
        padding-right: 5px !important;
    }
    .shopping-path .col-xs-4:first-child {
        padding-left: 5px !important;
    }
    .shopping-path .col-xs-4:last-child {
        padding-right: 0 !important;
    }
    .arrow-path {
        display: inline-block;
        line-height: 1 !important;
        margin-top: -7px;
    }
    .tile-add-to-cart-button {
        width: 115px;
    }
    .newsletter-form input.form-control {
        width: 100%;
    }
    .counter-header p.time-left {
        font-size: 16px;
        text-transform: uppercase;
    }
    .counter-header {
        font-size: 22px;
        padding-top: 50px;
    }
    .countdown {
        font-size: 14px;
    }
}

.activeboxSearchBoxInput .form-control {
    width: calc(100% - 40px);
}



.rw-wrapper{
	position: relative;
	padding: 10px;
    margin: 0 auto;
    width: 100%;
}
.rw-sentence{
	margin: 0;
	text-align: left;
    display:inline-block;
    width: 100%;
}
.rw-sentence span.text {
	color: #fff;
	font-size: 50px;
    line-height: 70px;
	font-weight: normal;
}
.carousel-home-el span.text {
    padding-right: 5px;
    color: var(--bigSlider-line1-color);
}
/* .carousel-home .carousel-home-el .text-center h2.first, .carousel-home .carousel-home-el .text-center h2.second, .carousel-home .rw-wrapper, .carousel-home h1.onlyChild span {
    opacity: 0;
    -webkit-animation: fadein 1s linear;
    -ms-animation: fadein 1s linear;
    animation: fadein 1s linear;
     animation-iteration-count: 1;
     animation-fill-mode: forwards;
} */
.carouselDesktop .carousel-home .carousel-home-el .text-center h2.first, .carouselDesktop .carousel-home .carousel-home-el .text-center h2.second, .carouselDesktop .carousel-home .rw-wrapper, .carouselDesktop .carousel-home h1.onlyChild span {
    opacity: 0;
    animation: none;
}
.owl-item .carousel-home-el .text-center h2.first, .owl-item .carousel-home-el .text-center h2.second, .owl-item .rw-wrapper, .owl-item h1.onlyChild span, .carousel-home-el .text-center h2.first, h1.onlyChild span {
    animation: none;
    opacity: 0;
    transition: 1s opacity 1s;
}
.rw-wrapper {
    -webkit-animation-delay: 1.5s;
    -ms-animation-delay: 1.5s;
    animation-delay: 1.5s;
}
.owl-item.active .rw-wrapper {
    opacity: 1;
    transition: 1s opacity 1s;
}
/* .carousel-home-el .text-center h2.first {
    -webkit-animation-delay: 1s;
    -ms-animation-delay: 1s;
    animation-delay: 1s;
} */
.owl-item.active .carousel-home-el .text-center h2.first, .big-slider .oneSlide .carousel-home-el .text-center h2.first {
    opacity: 1;
    transition: 1s opacity 0.2s;
}

/* .carousel-home h1.onlyChild span {
    -webkit-animation-delay: 2s;
    -ms-animation-delay: 2s;
    animation-delay: 2s;
} */
.owl-item.active h1.onlyChild span, .big-slider .oneSlide h1.onlyChild span {
    opacity: 1;
    transition: 1s opacity 1.2s;
}
/* .carousel-home-el .text-center h2.second {
    -webkit-animation-delay: 1.5s;
    -ms-animation-delay: 1.5s;
    animation-delay: 1.5s;
} */
.owl-item.active .text-center h2.second, .oneSlide .text-center h2.second {
    opacity: 1;
    transition: 1s opacity 1.5s;
}


@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.rw-words{
	display: inline-block;
    height: 70px;
    position: relative;
    width: auto;
    vertical-align: top;
    //padding-top: 5px;
    width: 100%;
}
.rw-words-1 span{
	position: absolute;
	opacity: 0;
    top: 0;
	color: #fff;
    display: block;
    line-height: 1.5;
    text-indent: 0;
    font-size: 50px;
    line-height: 70px;
    font-weight: 600;
    height: 70px;
    left: 0;
    right: 0;
    text-align: center;
    padding-top: 0;
}

.rw-words-1 span:nth-child(2) {
    -webkit-animation-delay: 3s;
	-ms-animation-delay: 3s;
	animation-delay: 3s;
	color: #fff;
    display: block;
    opacity: 0;
}
.rw-words-1 span:nth-child(3) {
    -webkit-animation-delay: 6s;
	-ms-animation-delay: 6s;
	animation-delay: 6s;
	color: #fff;
    display: block;
    opacity: 0;
}

.rw-words-1 span:nth-child(4) {
    -webkit-animation-delay: 9s;
	-ms-animation-delay: 9s;
	animation-delay: 9s;
	//color: #7a6b9d;
}
.rw-words-1 span:nth-child(5) {
    -webkit-animation-delay: 12s;
	-ms-animation-delay: 12s;
	animation-delay: 12s;
	//color: #8d6b9d;
}
.rw-words-1 span:nth-child(6) {
    -webkit-animation-delay: 15s;
	-ms-animation-delay: 15s;
	animation-delay: 15s;
	//color: #9b6b9d;
}

@-webkit-keyframes rotateWord {
    0% { opacity: 0; width: 0;}
    20% {opacity: 1; width: auto;}
    60% {opacity: 0; width: 0;}
    100% { opacity: 0; width: 0;}
}
@-ms-keyframes rotateWord {
    0% { opacity: 0; width: 0;}
    20% {opacity: 1; width: auto;}
    60% {opacity: 0; width: 0;}
    100% { opacity: 0; width: 0;}
}
@keyframes rotateWord {
    0% { opacity: 0; width: 0;}
    20% {opacity: 1; width: auto;}
    60% {opacity: 0; width: 0;}
    100% { opacity: 0; width: 0;}
}

@media screen and (max-width: 1400px) {
    .carousel-home-el h1 span.text {
        font-size: 40px;
    }
    .rw-words-1 span {
        font-size: 40px;
    }
}

@media screen and (max-width: 768px){
	.rw-sentence span { font-size: 26px; line-height: 1;}
    .carousel-home-el span.text, .carousel-home-el span.text.big-slider-text {
        font-size: 21px;
    }
}

@media screen and (max-width: 650px) {
    .rw-words-1 span{
    	-webkit-animation: none;
    	-ms-animation: none;
    	animation: none;
        display: none;
    }
    .rw-words-1 span:first-child {
        display: block;
        opacity: 1;
        position: relative;
        width: auto;
        height: auto;
        float: left;
    }
    .rw-sentence {
        text-align: center;
        display: block;
        float: left;
    }

}

.pages-list h1, .pages-list h2, .pages-list h3, .pages-list .h1, .pages-list .h2, .pages-list .h3,
.pagesList h1, .pagesList h2, .pagesList h3, .pagesList .h1, .pagesList .h2, .pagesList .h3 {
    margin-top: 0;
    margin-bottom: 40px;
    font-family: var(--pagesList-headers);
}

@media screen and (max-width: 768px) {
    .pages-list h1 {
        padding-top: 50px;
    }
    .home-header.page {
        padding-top: 35px;
    }
}

.page-box-small .pageTallBoxContent h2 a, .itemPromo .pageBoxContent a {
    font: var(--recommended-arts-header-font) !important;
    color: var(--recommended-arts-header-color);
}

.page-box-small .pageTallBoxContent h2 a:hover, .itemPromo .pageBoxContent a:hover {
    color: var(--recommended-arts-header-hover-color);
}

@media screen and (min-width: 769px) {
    h1.page {
        margin-top: 0;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 768px) {
    .pages-container {
        padding-top: 0;
        margin-top: -60px;
    }
}

.recommended-carousel .owl-stage-outer {
    margin-left: -10px;
}


.giftbox4{margin:0 10px;padding-bottom:0}

.giftbox4 .giftbox4-el{
    text-align:left;
    padding:0;
    overflow:hidden;
    height:auto;
    position:relative;
    border: 0;
}

.giftbox4-img {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    border-radius: var(--giftbox4-img-borderRadius);
}

.giftbox4-img-border {
    display: block;
    position: absolute;
    width: 100;
    height: 8px;
    bottom: 0;
    left: 0;
    right: 0;
}

.giftbox4-bottom-border {
    width: 40%;
    display: block;
    height: 5px;
}

.whiteBorder .giftbox4 .giftbox4-el {
    border: 1px solid #fff;
}
#jsGiftbox4 .owl-item:not(.cloned) {
    -webkit-transform: translateY(500px);
   -moz-transform: translateY(500px);
    -ms-transform: translateY(500px);
     -o-transform: translateY(500px);
        transform: translateY(500px);
}



.giftbox4 .giftbox4-el img,.giftbox4 .giftbox4-el svg{
    max-width:100%;
    width: auto;
    padding: 0;
    height:auto;
    margin:0 auto;
}

.giftbox4 .giftbox4-el svg {
    fill: var(--giftbox4-svg-fill);
    width: var(--giftbox4-svg-width);
    height: auto;
    display: block;
    margin: var(--giftbox4-svg-margin);
}
.giftbox4 .giftbox4-el:hover svg {
    fill: var(--giftbox4-svh-hover-fill);
}

.giftbox4 .giftbox4-el a{
    position: relative;
    text-align: justify;
    height: auto;
    display: block;
    top: auto;
    /* padding-top: 15px; */
}
.giftbox4 .giftbox4-el a:hover h3{
    color:#000
}
.giftbox4 .giftbox4-el h3{
    font-size:22px;
    color:#000;
    text-align:left;
    text-transform:none;
    line-height: 1.3;
    margin-top: 0;
    padding-top: 15px;
    height: 75px;
}
.giftbox4 .giftbox4-el p{
    color: var(--giftbox4-elem-desc-color);
    position:relative;
    margin-top: 10px;
    height: 100px;
    font: var(--giftbox4-elem-desc-font);
}
.giftbox4 .col-sm-4 {
    padding-left: 15px;
    padding-right: 15px;
}
#jsGiftbox10 .giftbox4 .giftbox4-el p {
  position: relative;
  top: auto;
   margin-top: 0;
}
#jsGiftbox10 .giftbox4 .giftbox4-el a {
    padding-top: 10px;
}

.withoutDesc .giftbox4 .giftbox4-el h3 {
    height: auto;
    min-height: 50px;
}

.shortElemTitle .giftbox4 .giftbox4-el h3 {
    height: 45px;
}

.shortElemTitle .giftbox4 .giftbox4-el p {
    /* height: 260px; */
    height: auto;
}
.textHeightAuto .giftbox4 .giftbox4-el p {
    height: auto;
}
.giftbox4 .giftbox4-el, .shortElemTitle.giftbox4-cont:not(.carouselDesktop) .giftbox4-el {
    margin-bottom: 20px;
}
.giftbox4 .col-sm-4 {
    margin-bottom: 50px;
}

@media screen and (max-width:768px){
    .giftbox4 .giftbox4-el p{left:20px;right:20px;}
}
.professions {
    height: auto;
    overflow: hidden;
}
.professions a,.professions a:hover .btn{color:#fff}
.professions .gridWrapper{width:calc(100% - 50px);margin:0 auto;padding:0}
.professions .info h3,.professions img+h3{text-align:center;margin:24px 0 0;text-transform:uppercase}
.professions .categoryBox{padding:0;border:none;margin-bottom:25px;}
.professions img{width:100%}
.professions .responsive-hover:hover .responsive-image img{-webkit-transform:none;-ms-transform:none;transform:none}
.professions .responsive-image{height:312px;position:relative}
.professions .responsive-1x1:before{padding:0}
.professions a:hover .info{background-color:rgba(35, 57, 66, 0.8);opacity:1}
.professions img+h3{position:absolute;bottom:59px;width:100%}
.professions a:hover img+h3{display:none}
.professions .info{
    position:absolute;width:100%;top:-10px;height:330px;-webkit-transition:all 1s;transition:all 1s;opacity:0}
.professions .info .btn,.professions .info p{font-size:16px;line-height:24px;font-family:"Roboto Slab";text-align:justify}
.professions .info .btn{background-color:transparent;border:2px solid #fff}
.professions .info p{padding:20px}
.professions .owl-item:not(.cloned) {
    opacity: 0;
}
.why-us{height:auto; padding-left: 11px; padding-right: 11px;}
.why-us .carousel-5 .owl-carousel{}
.why-us .gridWrapper{margin:0 auto;width:calc(100% - 45px)}
.why-us .gridItem{width:calc(100% - 2px);border-right: 1px solid #ddd;margin:0;padding:0;height:260px;text-align:center}
.why-us .owl-stage-outer{border:1px solid #ddd;border-right: 0;}
.why-us .owl-item+.owl-item:last-of-type{border-right:0}
.why-us img,.why-us svg{width:125px;height:125px;margin-top:35px}
.why-us img{
    margin-bottom:4px
}
.why-us h3{
    font-size:17px;text-transform:uppercase;color:#444;margin-top:35px;padding:0 10px
}
#jsGiftbox6 {
    opacity: 0;
}
#jsGiftbox9 .gridItem {
    opacity: 0;
}
@media screen and (max-width: 768px){
    .why-us .carousel-5 .owl-carousel.gridWrapper{margin: 0 auto;}
}
.overprint p{width:66%;margin:0 auto 50px;font-size:17px;text-align:justify; opacity: 0;}
.overprint .owl-carousel{margin:0 auto}
.overprint .gridItem{
    margin:10px;
    padding:0;
    height:500px;
    text-align:center;
    border:1px solid #dbdbdb;
    width:96%;
    position:relative;
}
.overprint .owl-item:not(.cloned) {
    -webkit-transform: translateY(500px);
   -moz-transform: translateY(500px);
    -ms-transform: translateY(500px);
     -o-transform: translateY(500px);
        transform: translateY(500px);
}
@media (min-width:768px){
    .overprint .carousel-1-2-3 .gridItem{height:360px}
}
@media (min-width:992px){
    .overprint .carousel-1-2-3 .gridItem{height:360px}
}@media (min-width:1200px){
    .overprint .carousel-1-2-3 .gridItem{height:440px}
}@media (min-width:1600px){
    .overprint .carousel-1-2-3 .gridItem{height:500px}
}
.overprint h3{font-size:17px;position:absolute;bottom:14px;height:50px;text-align:center;right:0;left:0;padding:0 5px}
.overprint .gridItem h3,.overprint .gridItem h4{text-transform:uppercase; color: #565656;}
.overprint .gridItem h4, .overprint .gridItem button{display:none;}.overprint .gridItem .overlay{position: absolute;opacity: 0;width:100%;height:100%;top:0;bottom:0;left:0;right:0;transition:1s;}
.overprint .gridItem:hover .overlay{opacity:1;background-color:rgba(35, 57, 66, 0.8);width:100%;height:100%;}.overprint .gridItem:hover button,.overprint .gridItem:hover h3,.overprint .gridItem:hover h4,.overprint .gridItem:hover button,.overprint .gridItem:hover h3,.overprint .gridItem:hover h4{display: inline-block;color:#fff}.overprint .gridItem:hover h3{top:190px}.overprint .gridItem:hover h4,.overprint .gridItem:hover h4{font-size:21px;text-align:center;padding:0 5px;top:215px}.overprint .gridItem:hover button,.overprint .gridItem:hover h4,.overprint .gridItem:hover button,.overprint .gridItem:hover h4{display:block;position:absolute;left:0;right:0}.overprint .gridItem.active button,.overprint .gridItem:hover button{top:260px;margin:0 auto;width:180px;background-color:transparent;border:2px solid #fff}@media (min-width:992px){.overprint .gridItem:hover h3{top:100px}.overprint .gridItem:hover h4{top:160px}.overprint .gridItem:hover button,.overprint .gridItem:hover button{top:210px}}@media (min-width:1200px){.overprint .gridItem:hover h3{top:170px}.overprint .gridItem:hover h4,.overprint .gridItem:hover h4{top:200px}.overprint .gridItem:hover button,.overprint .gridItem:hover button{top:240px}}.overprint button,.overprint h4{display:none}
.overprint .gridWrapper{margin:0 auto;width:calc(100% - 43px)}
@media (max-width:370px){.overprint p{width:90%}}
.giftbox8{text-align:center;margin-top:60px}
.giftbox8 h3{margin-bottom:0;font-size:25px}
@media (min-width:769px){.giftbox8 h3{font-size:34px}}
.offer .info h3,.offer a>h3{text-align:center;font-size:17px;text-transform:uppercase}
.giftbox8 p{margin:0 0 28px}
.giftbox8 img{width:100%}
.giftbox8 a{position:relative;width:100%;height:100%}
.giftbox8 {
    padding-left: 23px;
    padding-right: 25px;
}
.giftbox8 .action{position:absolute;bottom:-18px;width:100%; left: 0;}
.giftbox8 .btn{background-color:#cc0800;color:#fff;border:2px solid #fff;padding:10px 30px; margin: 0 auto;}
.giftbox8-el {
    -moz-transform: scale(0);
-webkit-transform: scale(0);
-o-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
}



.offer .gridWrapper{padding:1px 0 0 1px;margin:0 auto;width:calc(100% - 15px)}
.offer .gridItem{margin-bottom: 0;background:#fff;height:328px;padding:0;margin-top:-1px;margin-left:-1px;border:1px solid #dbdbdb}
.offer img{padding:10%;width:100%}
.offer a{color:#fff;display:block;width:100%;height:100%;position:relative}
.offer a:hover .info{background-color:rgba(35, 57, 66, 0.8);opacity:1}
.offer a>h3{margin:24px 0 0;position:absolute;bottom:13px;width:100%;color:#272525;height:50px}
.contact p{color:#fff}
.offer a:hover>h3{display:none}
.offer .info{background:#fff;position:absolute;width:100%;top:0;height:328px;-webkit-transition:all 1s;transition:all 1s;opacity:0}
.offer .info h3{margin:35px 0 0}
.offer .info .btn,.offer .info p{font-size:16px;line-height:24px;font-family:"Roboto Slab";text-align:justify}
.offer .info .btn{background-color:transparent;border:2px solid #fff; margin: 0 auto; display: block;}
.offer .info p{padding:20px}

.page-header-2 img {
    margin-bottom: 20px;
}

.page-header-2 {
    padding:0;
}

.site .description {
    padding: 20px 50px;
    text-align: justify;
}

.gallery-slider {
    width: 100%;
    height: auto;
    overflow: hidden;
    clear: both;
    padding: 40px 20px;
}

.gallery-el {
    float: left;
    width: calc(33.3% - 40px);
    height: auto;
    margin: 20px;
}

#jsCollections .container-fluid {
    padding-left: 25px;
    padding-right: 25px;
}

header{
  height: 100px;
  font-size: 20px;
  text-transform: none;
  padding: 50px;
  color:#fff;
  display: flex;
  width:100%;
  align-items: center;
  // justify-content:center;


}
header h2{
  text-align: left;
  font-size: 50px;
  // width:500px;
  margin: 0 auto;
}
.spinny-wrapper{
  margin-top: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;

}

.wrapper {
    width: 100%;
    text-align: center;
}

.spinny-wrapper h1 {
    width: auto;
    margin: 0;
}

/*--------------------------------------------------
-------------------- rotate words ------------------
---------------------------------------------------*/

.spinny-words{
    display: inline-block;
    width: 100%;
    text-align: left;
}
.spinny-words span{
    position: absolute;
    top:-20px;
    opacity: 0;
    width: 100%;
    text-align: center;
    font-size: 34px;
    text-transform: uppercase;
}

.spinny-words span:nth-child(2) {
    //animation-delay: 2s !important;
}
.spinny-words span:nth-child(3) {
    //animation-delay: 4s !important;
}
.spinny-words span:nth-child(4) {
    //animation-delay: 6s !important;
}
.spinny-words span:nth-child(5) {
    //animation-delay: 8s !important;
}

@keyframes rotateWord {
  0%   { opacity: 0; }
  5% { opacity: 0; }
  20%   { opacity: 0; transform: translateY(-30px); }
  30%   { opacity: 1; transform: translateY(0px);}
  40%  { opacity: 1; transform: translateY(0px); }
  50%  { opacity: 1; transform: translateY(0px); }
  60%  { opacity: 0; transform: translateY(30px); }
  90%  { opacity: 0; }
  100% { opacity: 0; }
}

.variants, .product-details .variants a h3 {
  font-size: 18px !important;
  font-family: 'Roboto';
}

.product-details .variants a h3 {
  color: rgb(73, 150, 209);
}

.cart-summary {
    background: #f4f4f4;
    margin-left: 30px;
    width: calc(100% - 30px);
    padding: 10px;
}

.cart-summary p {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
}
.cart-summary .brutto-price {
    margin-bottom: 15px;
}

.brutto-price {
    font-family: "Roboto Web" !important;
    font-size: 18px;
    margin: 0;
}
.cart-summary .back-to-buying {
    padding-top: 5px;
    padding-bottom: 5px;
}
.cart-summary .back-to-buying {
    margin: 0;
    width: 100%;
    margin-top: 10px;
}

.cart-info {
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin: 10px 0 0 30px;
    width: calc(100% - 30px);
    padding: 10px;
    height: auto;
    overflow: hidden;
}

.freeTransport {
    width: 100%;
    text-align: right;
    background: url(../img/icons/delivery.svg) no-repeat;
}

.cartTable button.deleteFromCart {
    background: url(../img/icons/trash.svg) no-repeat !important;
    width: 25px;
    height: 25px;
}

.clear-cart {
    border: 0;
    color: #212121;
    background: url(../img/icons/trash.svg) center left no-repeat !important;
    padding-left: 30px;
    padding-right: 0;
    margin-right: 0;
    float: right;
}

.clear-cart:hover {
    border: 0;
    color: #15a884;
}

.field-shopstransports-shtid .col-sm-offset-3, .field-shopspayments-shpid .col-sm-offset-3 {
  margin-left: 0 !important;
  width: 100% !important;
}

.order-radio label {
  margin-bottom: 0;
  padding-top: 7px;
}

 .add-to-cart-icon {
   background: url(../img/icons/cart.svg) center left no-repeat !important;
   width: 40px;
   height: 40px;
   background-size: 40px 40px;
   position: absolute;
   right: 10px;
   opacity: 0;
 }

 .box:hover .add-to-cart-icon {
      opacity: 0.3;
  }

.box .add-to-cart-icon:hover {
    opacity: 1;
  }

.products-back {
    width: 100%;
    height: auto;
    overflow: hidden;
    background: url(../img/bilety_bckg.jpg) no-repeat;
}

.products-back h2 {
    color: #fff;
    font-size: 45px;
}

.cart-summary .large-font {
    font-size: 18px;
}

#page ul li ul {
    margin-left: 30px;
}

.cartMethodsSummary .checkbox label {
    padding: 0;
}

.cartMethodsSummary .label-text {
    margin-right: 10px;
}

.cartMethodsSummary div.required label::after {
    position: absolute;
    left: 20px;
    top: 8px;
}

.correct {
    border: 1px solid #dedede;
    width: auto;
    padding: 5px;
    cursor: pointer;
    display: inline-block;
}

.program-header {
    background: #fff;
}

#cart {
    padding-top: 100px !important;
}

.giftbox4 {
    padding: 0;
    height: auto;
    overflow: hidden;
    margin: 0;
}

.showAll .giftbox4 {
    height: auto;
}

.showAll .sliderMore {
    display: none;
}

.giftbox4-el {
    margin-bottom: 20px;
}

.giftbox4 .giftbox4-el p {
    position: relative;
}

.btn-bordered {
    border: 1px solid #d4d4d4;
    background: #fff;
    padding-top: 7px;
    font-family: 'OpenSans BoldItalic', sans-serif;
    font-size: 18px;
}

.lazy {
     height: auto;
     min-height: 200px;
}

.lazy:first-child {
    height: 100vh;
}

.wpisz {
	height: 100%;
	width: 80%;
    margin: 50px auto;
	font-style: italic;
	text-transform: uppercase
}
.wpisz tbody.white {
	background: #fff
}
.wpisz td {
	width: 50%
}
.wpisz td p {
	display: inline-block;
	margin: 0;
	padding: 5px 15px 5px 0;
	float: left;
	min-height: 60px;
	line-height: 50px;
	font-weight: 600;
	font-size: 22px;
	font-style: italic;
	text-transform: uppercase;
	text-align: left
}
.wpisz td p input, .wpisz td p select {
	float: right;
	font-weight: 600;
	font-size: 22px;
	font-style: italic;
	margin: 0px;
	width: 100px;
	height: 50px;
	padding: 0 5px;
	border: 3px solid #CECECE;
	border-radius: 3px;
	text-align: center;
	font-family: "Open Sans"
}
.wpisz td p:nth-child(3n+1) {
	padding-left: 30px;
	width: 55%
}
.wpisz td p:nth-child(3n+2) {
	width: 25%
}
.wpisz td p:nth-child(3n+3) {
	padding-left: 10px;
	width: 20%
}
.wpisz td p span {
	color: #7E7E7E
}
.wpisz td.oblicz {
	text-align: center;
	position: relative
}
.wpisz td.oblicz button {
	background: #c10f00;
	font-style: normal;
	font-weight: 900;
	height: 90px;
	line-height: 90px;
	padding: 0 30px;
	display: block;
	position: relative;
	margin: auto;
	font-size: 30px;
	text-transform: uppercase;
	border: none;
	color: #fff;
	font-family: "RobotoNeue", "Open Sans";
	font-style: normal
}
.wpisz td.oblicz button:hover {
	cursor: pointer
}
.wpisz td.oblicz button:before {
	border-bottom: 90px solid #c10f00;
	border-left: 20px solid rgba(0, 0, 0, 0);
	content: "";
	display: block;
	left: -20px;
	position: absolute;
	top: 0
}
.wpisz td.oblicz button:after {
	border-top: 90px solid #c10f00;
	border-right: 20px solid rgba(0, 0, 0, 0);
	content: "";
	display: block;
	right: -20px;
	position: absolute;
	top: 0
}
.wpisz td.oblicz button:hover {
	background: #1246BA
}
.wpisz td.oblicz button:hover:after {
	border-top-color: #1246BA
}
.wpisz td.oblicz button:hover:before {
	border-bottom-color: #1246BA
}
.wpisz td h4 {
	margin-top: 30px;
	font-family: 'RobotoNeue', 'Open Sans';
	width: 80%;
	font-style: normal
}
.wpisz .legenda {
	width: auto;
	color: #666;
	font-weight: 600;
	font-size: 16px;
	padding-left: 30px
}
.wpisz .legenda:before {
	margin-top: 10px;
	margin-bottom: 10px;
	border-top: 1px solid #eee;
	width: 100%;
	height: 1px;
	content: "";
	overflow: hidden;
	display: block
}
.wpisz .opis {
	display: none;
	background: #fff;
	color: #000
}
.wpisz .opis th {
	text-align: center;
	font-size: 24px;
	padding: 20px 0
}
.wpisz .opis th:last-child, .wpisz .opis th.red {
	color: #C10F00
}
.wpisz .opis td p {
	font-size: 20px
}
.wpisz .opis td p:nth-child(2n+1) {
	padding-left: 30px;
	width: 60%
}
.wpisz .opis td p:nth-child(2n+2) {
	width: 40%;
	text-align: left;
	padding-left: 0
}
.wpisz .opis td p span {
	color: #7E7E7E;
	font-size: 26px
}
.wpisz .opis td p span.black {
	color: #000
}
.wpisz .opis td p span.red {
	color: #C10F00
}

.hide-desktop {
	display: none
}
.hide-tablet {
	display: block
}
.visible-tablet {
    display: none;
}

.BW2Color img {
    -webkit-filter: grayscale(100%); /* Ch 23+, Saf 6.0+, BB 10.0+ */
    filter: grayscale(100%); /* FF 35+ */
    transition: filter .2s ease-in-out;
}

.BW2Color img:hover, .BW2Color .giftbox4-el:hover img {
    transition: filter .2s ease-in-out;
    -webkit-filter: grayscale(0%); /* Ch 23+, Saf 6.0+, BB 10.0+ */
    filter: grayscale(0%); /* FF 35+ */
}

.navbarLogo a svg {
    width: var(--svg-logo-width);
    height: auto;
    max-height: 100%;
    max-width: 100%;
}

.navbarLogo a .normal-logo-cont, .page-logo-cont {
    display: inline-block;
    opacity: 1;
    transition: all 300ms ease-in-out;
    width: var(--logo-normal-width) !important;
    margin-top: var(--logo-normal-top);
    height: var(--logo-normal-height);
    max-width: 100%;
    background: var(--logo-normal-background);

}

.fixed .navbarLogo a .normal-logo-cont {
    opacity: 0;
    height: 0;
    display: none;
}

.navbarLogo a .fixed-logo-cont {
    display: none;
    opacity: 0;
    height: 0;
    transition: all 300ms ease-in-out;
    width: var(--logo-fixed-width);
    margin-top: var(--logo-fixed-top);
}

.fixed .navbarLogo a .fixed-logo-cont {
    opacity: 1;
    height: auto;
    width: var(--logo-fixed-width);
    margin-top: var(--logo-fixed-top);
    display: block;
    padding-top: 5px;
}

.fixed .navbarLogo a .page-logo-cont {
    display: none;
}

.container-1300 {
    width: 100%;
    max-width: 1400px;
    padding-left: 50px;
    padding-right: 50px;
    height: auto;
    overflow: hidden;
    margin: 0 auto;
}

.container-1500 {
    width: 1600px;
    margin: 0 auto;
    padding-left: 100px;
    padding-right: 100px;
    height: auto;
    overflow: hidden;
}

.container-1300-padding {
    width: 100%;
    padding-left: calc(50% - 650px);
    padding-right: calc(50% - 650px);
    height: auto;
    overflow: hidden;
}

.slider2box-el {
    width: 50%;
    float: left;
}

.slider4photo .slider2box-el {
    width: 25%;
    margin-bottom: 20px;
}

.slider2box-img {
    position: relative;
}

.slider2box-el:nth-child(odd) {
    padding-right: 15px;
}

.slider2box-el:nth-child(even) {
    padding-left: 15px;
}

.slider4photo .slider2box-el:nth-child(odd), .slider4photo .slider2box-el:nth-child(even) {
    padding-right: 15px;
    padding-left: 15px;
}

.owl-item .slider2box-el {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    float: none;
}

.slider2box-el h2, .pageGalleryRow .card-content {
    margin: 0;
    padding: 30px 20px;
    font-size: 22px;
}

.slider4photo .slider2box-el h2 {
    font-size: 16px;
    padding: 15px;
}

.pageGalleryRow .card-content {
    background: var(--galleriesList-photo-desc-bck);
}

.pageGalleryRow .card a {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}

.pageGalleryRow .card a.btn {
    display: inline-block !important;
    width: auto;
    margin: 0 auto;
}

.pageGalleryRow .card a img {
    margin-bottom: 0;
}

.galleryZoom .pageGalleryRow .card a img {
    transform: scale(1);
    transition: 0.5s;
}
.galleryZoom .pageGalleryRow .card a img:hover {
    transform: scale(1.1);
    transition: 0.5s;
}
.galleryZoom .pageGalleryRow .card a {
    transition: 0.5s;
    display: block;
    overflow: hidden;
}
.slider2box-el .triangle-img, .pageGalleryRow .triangle-img {
    width: 150px;
    height: 150px;
    background: url(../img/about-us-tr.png) bottom left no-repeat;
    background-size: 100% auto;
    top: auto;
    left: 0;
    bottom: 0;
    transform: rotate(270deg);
}

.pageGalleryRow .triangle-img, .slider4photo .triangle-img {
    width: 120px;
    height: 120px;
}

.pageGalleryRow .blog-card, .galleryList-cont .margin-bottom.gridItem {
    padding-left: 0;
    padding-right: 0;
}
/* .galleryList-breadcrumbs {
    width: 1600px;
    margin: 0 auto;
    padding-left: 90px;
    padding-right: 90px;
} */

.pswp {
    z-index: 4000;
}

.carousel-slider2box, .carousel-offer {
    padding-bottom: 80px;
    height: auto;
    overflow: hidden;
}

.slider2box .owl-prev, .slider2box .owl-next, .giftbox4 .owl-prev, .giftbox4 .owl-next {
    width: 30px;
    height: 40px;
    display: block;
    left: calc(50% - 120px);
    position: absolute;
    bottom: 5px;
}

.slider2box .owl-next, .giftbox4 .owl-next {
    left: auto;
    right: calc(50% - 120px);
}

.arrow-prev, .arrow-next {
	width: 0;
	height: 0;
	border-width: 20px 30px 20px 0;
	border-color: transparent #FF0000 transparent transparent;
	border-style: solid;
    display: block;
}

.arrow-next {
    border-width: 20px 0 20px 30px;
	border-color: transparent transparent transparent #FF0000;
}

.slider2box .btn, .carousel .btn {
    margin-top: -47px;
    z-index: 3000;
    position: absolute;
    left: calc(50% - 50px);
    width: 100px;
}

.carousel {
    margin-bottom: 20px;
}

.slider4photo .slider2box .btn {
    position: relative;
    margin-top: 10px;
    left: auto;
}

.slider4photo {
    padding-bottom: 50px;
}

a.pl, a.en {
    float: right;
    display: inline-block;
    margin-left: 20px;
    vertical-align: middle;
    font-size: var(--menu-font-size);
    font-family: var(--language-switcher-font-family);
}

#activeboxPagesSearch {
    float: right;
    width: 30px;
    height: 30px;
    display: none;
}

#activeboxPagesSearch a {
    display: inline-block;
    vertical-align: middle;
}

#activeboxPagesSearch a svg {
    top: 2px;
    width: 26px;
    height: 26px;
}

.activeboxPagesSearchBox {
    width: 400px;
    z-index: 6000;
    position: absolute;
    left: -400px;
    display: none;
    top: 10px;
}

.activeboxPagesSearchBox input["type=text"]{
    padding-right: 60px;
    border-color: #b0b6bd;
}

#activeboxPagesSearch.activebox .activeboxPagesSearchBox {
    display: block;
}

.activeboxPagesSearchBox button {
    position: absolute;
    z-index: 2000;
    right: 1px;
    width: 50px;
    background: #fff;
    border: 0;
    top: 1px;
    height: 36px;
}

.activeboxPagesSearchBox button svg {
    vertical-align: top;
    fill: var(--fill-icon-mobile);
    top: 0;
}

.activeboxPagesSearchBox button:hover svg {
    fill: var(--fill-icon-hover);
}

.clearSearchPagesButton {
    position: absolute !important;
    right: 10px;
    top: 10px !important;
    display: none;
    z-index: 3000;
    cursor: pointer;
}
.clearSearchPagesButton path {
    fill: #ddd !important;
}

.activeboxPagesSearchBoxResults {
    background: #fff;
    padding: 10px;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
}

.activeboxPagesSearchBoxResults h3 {
    text-align: left;
    font-size: 16px;
}

.padding-top-80 {
    padding-top: 80px;
}

.background-pages-category {
    width: 100%;
    height: auto;
    position: relative;
}

.background-pages-category:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../img/category-mask.png) center center no-repeat;
    background-size: 100%;
    z-index: 2;
}

.background-pages-category h1, .background-pages-category h2 {
    position: absolute;
    width: 100%;
    color: #fff;
    font-size: 36px;
    text-transform: uppercase;
    font-family: var(--pages-header-font-family);
    top: 40%;
    text-align: center;
    z-index: 3;
}

.background-pages-category img {
    z-index: 1;
    position: relative;
    width: 100%;
}

.background-pages-category h1 span {
    padding-bottom: 30px;
}

.pageGalleryRow {
    border-bottom: 1px solid #ccc;
    padding: 0 0 30px 0;
    margin: 0;
    width: 100%;
}

.pageGalleryRow h2 {
    text-align: center;
    margin-top: 0;
    padding-top: 0;
}

.pageGalleryRow h2 a {
    color: #191919;
    text-transform: uppercase;
    text-align: center;
}

.pageGalleryRow img {
    background: #fff;
    margin-bottom: 20px;
}

.pagesWidgets #_offer h2.home-header {
    padding-top: 0;
    margin-top: 0;
}

.slider2box-el {
    display: none;
}

.slider2box-el:nth-child(1),
.slider2box-el:nth-child(2),
.slider2box-el:nth-child(3) {
    display: block;
    max-width: 450px;
}

.owl-item .slider2box-el {
    display: block;
    max-width: 100%;
}

.phoneNumber {
    display: block;
    background: url(../img/icons/phone-red.svg) left center no-repeat;
    background-size: var(--header-phone-icon-size);
    padding: 3px 0 0 30px;
    text-align: left;
    width: auto;
    float: right;
}
.phoneNumber a {
    color: var(--header-phone-color);
    font: var(--header-phone-font);
}
.phoneNumber a:hover {
    color: var(--header-phone-hover-color);
}
.icons-navbar {
    width: 240px;
    padding-left: 0;
}
.show1024 {
    display: none;
}

.overlayToRight .carousel-home-el .text-center {
    background: rgba(0, 0, 0, 0.75);
    padding: 70px 40px 40px 40px;
    width: 80%;
    margin-left: 20%;
    text-align: left;
}
.tbs .carousel-home-el .text-center {
    padding-top: 50px;
}
.tbs .carousel-home-el .text-center .margin-top {
    margin-top: 30px !important;
}
.overlayToRight .spinny-words span, .overlayToRight .carousel-home-el span.text, .overlayToRight header {
    text-align: left;
    padding-left: 0;
}

.overlayToRight .big-slider-line {
    display: none;
}

.overlayToRight .carousel-home-el .btn {
    width: 180px;
    height: 58px;
    padding-top: 15px;
    margin-left: 0;
    padding-left: 20px;
    padding-right: 20px;
}

/* .slider.hideTitle h2.home-header {
    display: none;
} */

.about3-el {
    padding-top: var(--sliderAbout-padding-top);
    padding-bottom: var(--sliderAbout-padding-bottom);
}

.headerOverIcon .image {
    text-align: center;
}

.headerOverIcon .image h3 {
    font-size: 52px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 6px;
    display: inline-block;
    width: auto;
    position: relative;
    text-transform: uppercase;
    margin-top: 0;
}

.headerOverIcon .image h3:after, .titleRight .home-header .header-text::after, .titleLeft .home-header .header-text::after {
    content: '';
    width: 75%;
    height: 6px;
    background: var(--header-line-bottom);
    position: absolute;
    bottom: 0;
    right: 0;
    left: auto;
}

.headerOverIcon .image svg {
    width: 160px;
    height: 160px;
    display: block;
    margin: 30px auto;
}

.titleRight h2.home-header {
    text-align: right;
}

.titleLeft h2.home-header {
    text-align: left;
}
.titleCenter h2.home-header {
    text-align: center;
}
.titleRight .home-header .header-text, .titleLeft .home-header .header-text, .titleCenter .header-text {
    font: var(--home-header-h2-font);
    padding-bottom: 5px;
    /* font-weight: var(--header-font-weight); */
}
.titleOrnament .home-header, .titleOrnament2 .home-header {
    position: relative;
    padding-bottom: 40px;
}
.titleOrnament .home-header:after, .titleOrnament2 .home-header:after {
    background: url() center bottom no-repeat;
    background-size: auto;
    content: '';
    width: 100%;
    height: 10px;
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
}

.titleOrnament.titleRight .home-header:after, .titleOrnament2.titleRight .home-header:after {
    background-position: right bottom;
}

.titleOrnament.titleLeft .home-header:after, .titleOrnament2.titleLeft .home-header:after {
    background-position: left bottom;
}

.titleOrnament .home-header .header-text:after, .titleOrnament2 .home-header .header-text:after {
    display: none;
}

.titleOrnament .home-header .header-text, .titleOrnament2 .home-header .header-text {
    padding-bottom: 0;
}

/*
h2.home-header {
    font-size: var(--header-font-size) !important;
} */

.big-arrow-next {
    background: url(../img/icons/arrow-right-slider.svg) center center no-repeat;
    width: 60px;
    height: 100px;
    background-size: 60px auto;
    position: absolute;
    left: auto;
    right: -100px;
    top: calc(50% - 50px);
    bottom: auto;
}

.carouselArrowRight .giftbox4 .owl-next {
     position: static;
}
.carouselArrowRight .giftbox4 {
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% - -30px);
}
.carouselArrowRight .giftbox4, .carouselArrowRight.slider {
    overflow: visible;
}
.carouselArrowRight .owl-nav {
    height: 0;
}

.carouselArrowRight-carousel .giftbox4 .col-sm-4 {
    display: none;
}

.carouselArrowRight-carousel .giftbox4 .col-sm-4:nth-child(1),
.carouselArrowRight-carousel .giftbox4 .col-sm-4:nth-child(2),
.carouselArrowRight-carousel .giftbox4 .col-sm-4:nth-child(3) {
    display: block;
}

.carouselArrowRight-carousel .giftbox4 .owl-item .col-sm-4 {
    display: block;
}

.owl-dot span {
    background: var(--carouselDot-background);
}

.owl-dot.active span {
    background: var(--carouselDot-background-active);
}

.giftbox4-cont:not(.carouselDesktop) .giftbox4-el {
    margin-bottom: 50px;
}

@media screen and (max-width: 1024px) {
    .giftbox4-cont:not(.carouselDesktop):not(.carouselTablet) .giftbox4-el {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 768px) {
    .giftbox4-cont:not(.carouselDesktop):not(.carouselTablet):not(.carouselMobile) .giftbox4-el {
        margin-bottom: 50px;
    }
}

.review-el .cover {
    border-radius: var(--sliderReview-overlay-radius);
}

.review-el {
    height: var(--sliderReview-height);
    display: table;
    table-layout: fixed;
}

.review-el .cover-cont {
    position: relative;
    width: 60%;
    display: table-cell;
    vertical-align: middle;
    top: auto;
    left: auto;
    right: auto;
}

.tbs .cover-cont {
    display: table;
    width: 60%;
    height: 50%;
    position: absolute;
    top: 25%;
    bottom: 25%;
    left: 20%;
    right: 20%;
}

.tbs .review-el .cover {
    /* margin-top: 50px;
    margin-bottom: 50px; */
    height: auto;
    display: table-cell;
    vertical-align: middle;
    /* display: block;
    position: absolute; */
}

.withoutDesc .giftbox4 p {
    display: none;
}

/* .containerPadding .giftbox4 {
    width: calc(100% - -30px);
    margin-left: -15px;
    margin-right: -15px;
} */

.containerPadding .giftBrand {
    padding-left: 0;
    padding-right: 0;
    margin-left: -25px;
    margin-right: -25px;
    width: calc(100% - -50px);
}

.containerPadding .giftBrand h2.home-header {
    padding-right: 25px;
}

.containerPadding .giftBrand .owl-stage-outer {
    margin-bottom: 20px;
}

.categories-1200 {
    width: 100%;
    max-width: 1300px;
    padding-left: 50px;
    padding-right: 50px;
    margin: 0 auto;
}

.categoriesWidgetsTop {
    padding-left: 0;
    padding-right: 0;
}

.categoriesWidgetsTop .background-pages-category::after, .tbs .background-pages-category::after {
    display: none;
}

.categoriesWidgetsTop .background-pages-category, .hideAfter.background-pages-category {
    display: table;
}

.categoriesWidgetsTop .background-pages-category h1, .categoriesWidgetsTop .background-pages-category h2,
.hideAfter.background-pages-category h1, .hideAfter.background-pages-category h2 {
    width: 100%;
    height: 200px;
    top: calc(50% - 100px);
    margin-top: 0;
    margin-bottom: 0;

}

.categoriesWidgetsTop .background-pages-category h1 .cover, .categoriesWidgetsTop .background-pages-category h2 .cover,
.hideAfter.background-pages-category h1 .cover, .hideAfter.background-pages-category h2 .cover {
    background: var(--category-header-bck);
    border-radius: var(--category-header-radius);
    width: 80%;
    margin-left: 20%;
    height: 200px;
    padding: var(--category-header-padding);
    position: absolute;
}
.categoryHeaderCenter .categoriesWidgetsTop .background-pages-category h1 .cover, .categoryHeaderCenter .categoriesWidgetsTop .background-pages-category h2 .cover,
.categoryHeaderCenter .hideAfter.background-pages-category h1 .cover, .categoryHeaderCenter .hideAfter.background-pages-category h2 .cover {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    left: auto;
    right: auto;
    display: inline-block;
    position: relative;
}

.categoriesWidgetsTop .background-pages-category h1 span, .categoriesWidgetsTop .background-pages-category h2 span,
.hideAfter.background-pages-category h1 span, .hideAfter.background-pages-category h2 span {
    display: inline-block;
    vertical-align: middle;
    padding-top: 70px;
    padding-bottom: 10px;
    font: var(--category-header-font);
    color: var(--category-header-color);
    text-transform: var(--category-header-transform);
    position: relative;
}
.categoryHeaderOrnament .categoriesWidgetsTop .background-pages-category h1 span, .categoryHeaderOrnament .categoriesWidgetsTop .background-pages-category h2 span,
.categoryHeaderOrnament .hideAfter.background-pages-category h1 span, .categoryHeaderOrnament .hideAfter.background-pages-category h2 span {
    padding-bottom: 20px;
}
.categoriesWidgetsTop .pages-container {
    padding-left: 0;
    padding-right: 0;
}

/* .container-1300-padding .hideTitle {
    padding-top: 50px;
} */

/* .categoriesWidgetsTop .breadcrumbs {
    max-width: 1500px;
    padding-left: 100px;
    padding-right: 100px;
    width: 100%;
} */

/* .container-1500 {
    width: 100%;
    padding-left: calc(50% - 750px);
    padding-right: calc(50% - 750px);
} */

.categoriesWidgetsTop .category-desc {
    max-width: 1300px;
    margin: 40px auto;
    padding-left: 50px;
    padding-right: 50px;
}

.giftbox4 .giftbox4-el .giftbox4-desc {
    height: 70px;
}

.giftbox4 .giftbox4-el .giftbox4-desc p {
    height: auto;
    margin-top: 0;
    margin-bottom: 15px;
}
.tabsTitle h3 {
    margin-bottom: 0;
}

.tabsTitle .giftbox4-el {
    margin-bottom: 70px;
}
.categoriesLinks {
    margin-bottom: 30px;
}
.categoriesLinks a, .sliderTextImage-menu a {
    color: var(--categoriesLink-color);
    display: inline-block;
    margin: 0 25px;
    font-size: 30px;
    font-weight: bold;
}

.categoriesLinks a.active, .sliderTextImage-menu a.active {
    color: var(--categoriesLink-color-active);
}

.categoriesLinks a:hover, .sliderTextImage-menu a:hover {
    color: var(--categoriesLink-color-hover);
}

.sliderTextImage-menu {
    margin-bottom: 20px;
    font-size: 0;
}

.sliderTextImage-cont {
    height: auto;
    overflow: hidden;
}
.container-1500 .pages-container {
    padding-left: 0;
    padding-right: 0;
}

.pagesLinks .breadcrumbs {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 0;
    padding-bottom: 25px;
    max-width: 1340px;
    margin: 0 auto;
}

.pagesLinks .breadcrumbs a, .pagesLinks .breadcrumbs span {
    font-size: 16px;
}

.hideAfter:after {
    display: none;
}
.categoriesWidgetsTop .background-pages-category h1 span:after, .categoriesWidgetsTop .background-pages-category h2 span:after,
.hideAfter.background-pages-category h1 span:after, .hideAfter.background-pages-category h2 span:after {
    display: block;
    left: auto;
    right: 0;
}
.categoryHeaderCenter .categoriesWidgetsTop .background-pages-category h1 span:after, .categoryHeaderCenter .categoriesWidgetsTop .background-pages-category h2 span:after,
.categoryHeaderCenter .hideAfter.background-pages-category h1 span:after, .categoryHeaderCenter .hideAfter.background-pages-category h2 span:after {
    display: block;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}
.pagesListLinks {
    width: 100%;
    padding: 50px calc(50% - 750px);
    background: var(--pagesList-background);
}

.pageBox {
    height: 520px;
    margin-bottom: 80px;
}
.pageBoxContent {
    text-align: left;
}
.pageBoxContent h2 {
    font-size: 22px;
    color: #000;
    text-align: left;
    text-transform: none;
    line-height: 1.3;
    margin-top: 0;
    padding-top: 15px;
    height: 75px;
    margin-bottom: 0;
    font-weight: bold;
}

.pageBoxContent p {
    color: #343434;
    position: relative;
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.25;
    height: 100px;
}

.auctionBox .pageBoxContent p {
    height: auto !important;
    margin-top: 0;
    margin-bottom: 0;
}

.pageBoxContent .desc {
    line-height: 2.2;
    height: 80px;
    overflow: hidden;
}

.pageBoxBorder {
    width: 40%;
    display: block;
    height: 5px;
    background: var(--pageBox-border);
}

.pageBox:hover .pageBoxBorder {
    background: var(--pageBox-border-hover);
}

.auctionItem .pageBoxContent, .auctionItem .pageBoxContent h2 {
    height: auto !important;
}

.pageNoImage h1 {
    font-weight: bold;
}

#pageNoImage {
    max-width: 1240px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

.pageNoImage .blog-gallery {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1540px;
    margin: 0 auto;
}

.pageNoImage .blog-gallery-image {
    margin-bottom: 20px;
}

.sliderTextImage-image, .sliderTextImage-text {
    width: 50%;
}

.photoLeft .sliderTextImage-image, .photoLeft .sliderTextImage-text {
    float: left;
}

.photoRight .sliderTextImage-image, .photoRight .sliderTextImage-text {
    float: right;
}

.sliderTextImage {
    padding-bottom: 50px;
    position: relative;
    color: #000;
}

.sliderTextImage-border {
    width: 80px;
    height: 400px;
    position: absolute;
    right: 0;
    bottom: 0;
}

.borderLeft .sliderTextImage-border {
    right: auto;
    left: 0;
}

.sliderTextImage-image {
    padding-right: 30px;
}

.sliderTextImage h2.home-header {
    margin-top: 0;
}

.sliderTextImage-text {
    padding-left: 30px;
}

.photoRight .sliderTextImage-image {
    padding-left: 30px;
    padding-right: 0;
}

.photoRight .sliderTextImage-text {
    padding-left: 0;
    padding-right: 30px;
}

.threeBoxes .sliderTextImage-image {
    display: none;
}

.threeBoxes .sliderTextImage-text {
    width: 100%;
    float: none;
    padding: 0;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 30px;
}

.threeBoxes .sliderTextImage-boxes {
    display: table;
    height: auto;
    width: calc(100% - -40px);
    border-collapse:separate;
    border-spacing: 20px;
    margin-left: -20px;
    margin-right: -20px;
    table-layout: fixed;
}

.threeBoxes .sliderTextImage-box {
    width: calc(33.333% - 20px);
    padding: 60px 50px;
    font-weight: bold;
    height: auto;
    display: table-cell;
}

.threeBoxes .sliderTextImage-box h3 {
    margin-top: 0;
    padding-top: 0;
    color: #000;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

.threeBoxes .sliderTextImage-box p {
    background: url(../img/icons/arrow-right.svg) left center no-repeat;
    background-size: 20px auto;
    padding-left: 30px;
}

.threeBoxes .sliderTextImage-border {
    bottom: auto;
    top: 0;
}

.pagesListLinks .pageBox {
    height: auto;
    margin-bottom: 40px;
}

.pagesListLinks .pageBox .pageBoxContent {
    height: 160px;
}

.tbs .bg-footer {
    background-image: url(../img/tbs-footer.svg);
    background-size: 230px auto;
    background-position:  calc(100% - 200px) 40px;
    background-repeat: no-repeat;
}

.tbs .bg-footer::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    top: 0;
    width: 80px;
    height: 100%;
    background: var(--footer-line);
}

/* .tbs .footerMenu:nth-child(2) {
    display: block !important;
}
.tbs .footerMenu:nth-child(3) {
    display: none !important;
} */
.tbs .footerMenu:nth-child(1) {
    max-width: 320px;
    width: 320px;
}
.tbs ul {
    list-style: none;
    margin-top: 8px;
    margin-bottom: 8px;
}
.tbs ul li {
    background: url(../img/icons/arrow-right.svg) left 5px no-repeat;
    padding-left: 20px;
    background-size: 15px auto;
    margin-bottom: 8px;
}

.tbs #page ul li {
    font-size: 1em;
}

.categoriesWidgetsTop .pageContent {
    max-width: 1340px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

/* .categoriesWidgetsTop .breadcrumbs {
    padding-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    float: none;
} */

.tbs .gridItem {
    display: block;
    float: left;
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.ias-noneleft {
    clear: both;
}

.itemGallery {
    margin-bottom: 30px;
}

.itemGallery .date, .tbs .pageBox .date {
    margin-top: 8px;
    line-height: 20px;
    height: 20px;
}

.itemGallery .date svg, .tbs .pageBox .date svg {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    vertical-align: top;
    display: inline-block;
}

.itemGallery .pageBoxImage, .tbs .pageGalleryRow figure {
    transition: 0.5s;
    position: relative;
}
.itemGallery .pageBoxContent {
    padding-left: 10px;
    padding-right: 10px;
}

.itemGallery .pageBoxImage a, .tbs .pageGalleryRow figure a {
    transition: 0.5s;
    display: block;
    /* position: absolute;
    top: 7.5px;
    left: 10px;
    right: 10px;
    bottom: 7.5px; */
    overflow: hidden;
}

.itemGallery .pageBoxImage a img, .tbs .pageGalleryRow figure a img {
    transform: scale(1);
    transition: 0.5s;
}
.itemGallery:hover .pageBoxImage a img, .tbs .pageGalleryRow figure:hover a img {
    transform: scale(1.1);
    transition: 0.5s;
}
.tbs .pageGalleryRow figure a {
    width: auto;
}
.itemGallery:hover .pageBoxImage a, .tbs .pageGalleryRow figure:hover a {
    transition: 0.5s;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.tbs .footerMenu ul li {
    background: none;
    padding-left: 0;
    margin: 0;
    padding:3px 0 3px;
}

.tbs .footerMenu ul {
    margin: 0;
    padding:0;
}
.tbs .footerMenu h3 {
    margin-bottom: 10px;
    margin-top: 0;
}
.tbs .footerMenu {
    margin-bottom: 20px;
}
.tbs .navbarLogo p {
    display: none;
}
.tbs .galleryList-breadcrumbs {
    padding-top: 50px;
}
.tbs .galleries-header::after {
    display: none;
}
.tbs .gallery-header {
    text-align: center;
    padding-top: 0;
}
.tbs .gallery-cont {
    background: #f5f5f5;
    padding-top: 50px;
    padding-bottom: 50px;
}
.tbs .pageGalleryRow {
    border-bottom: none;
}
.itemPromo {
    background: #fff;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    transition: 0.5s;
}
.itemPromo:hover {
    -webkit-box-shadow: 2px 2px 11px 0px rgba(74,74,74,1);
    -moz-box-shadow: 2px 2px 11px 0px rgba(74,74,74,1);
    box-shadow: 2px 2px 11px 0px rgba(74,74,74,1);
    transition: 0.5s;
}
.itemPromo .pageBoxContent {
    padding: 0 15px 15px 15px;
}
/* .itemPromo .pageBoxContent a {
    color: var(--promoBox-link-color);
}
.itemPromo .pageBoxContent a:hover {
    color: var(--promoBox-link-color-hover);
} */
.itemPromo .pageBoxContent .desc {
    line-height: 1.2;
    margin-bottom: 15px;
    height: auto;
}
.itemPromo .pageBoxContent svg {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: top;
    margin-top: 2px;
}
.itemPromo .pageBoxContent h2 {
    height: auto;
    margin-bottom: 15px;
}
.pagesListPromo .home-header .header-text {
    font-size: 38px;
    font-weight: bold;
}
.pagesListPromo .home-header .header-text:after {
    right: 0;
    left: auto;
}

.auctionBox .pageBoxContent .desc {
    line-height: 1.2;
    height: auto !important;
    margin-bottom: 20px;
    padding-top: 15px;
}
.auctionsSlider .bg-white {
    background: none;
}

.auctionsSlider, .tbs .gallery-cont, .pagesListLinks {
    padding-top: 40px;
    padding-left: calc(50% - 650px) !important;
    padding-right: calc(50% - 650px) !important;
}

.sliderAuctions .about3-el .image {
    width: 100%;
}
.auctionItem {
    border-bottom: 1px solid #dcdcdc;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.auctionItem .pageBox {
    height: auto;
    margin-bottom: 40px;
}
.ias-trigger a.btn {
    color: var(--iasTriggerBtn-color);
    background-color: var(--iasTriggerBtn-bck);
    border-color: var(--iasTriggerBtn-border);
}
.ias-trigger a.btn:hover {
    color: var(--iasTriggerBtn-color-hover);
    background-color: var(--iasTriggerBtn-bck-hover);
    border-color: var(--iasTriggerBtn-border-hover);
}
.tbs .pageContent a, .tbs .pageContent a span {
    color: var(--page-link-color);
}
.tbs .pageContent a:hover, .tbs .pageContent a span:hover {
    color: var(--page-link-color-hover);
}

.itemGallery .pageBoxContent h2, .auctionBox .pageBoxContent h2 {
    font-size: 18px;
    font-weight: normal;
}

.tbs .responsive-x-768 ul li {
    background: none;
}

.responsive-x-768 ul.level3 {
    margin: 0;
}
.galleryList-cont .row {
    margin-left: -5px;
    margin-right: -5px;
}

.about3 .img-responsive {
    border-radius: var(--about3-img-borderRadius);
}

.facebookWidget .img-responsive, .facebookWidget .image  svg {
    margin: 30px auto;
    display: block;
}
.facebookWidget .image svg {
    width: var(--facebookWidget-icon-size);
    height: auto;
    margin-top: var(--facebookWidget-icon-margin-top);
    fill: var(--facebookWidget-icon-fill);
}
.facebookWidget .image svg:hover {
    fill: var(--facebookWidget-icon-hover-fill);
}
.facebookWidget .about3-el {
    font-size: 0;
}
.facebookWidget .about3-el .image, .facebookWidget .about3-el .description {
    float: none;
    display: inline-block;
    vertical-align: middle;
    width: 50%;
    font-size: 16px;
}
.facebookWidget .about3-el .image {
    font: var(--facebookWidget-desc-font);
    color: var(--facebookWidget-desc-color);
}
.facebookWidget {
    padding-bottom: var(--facebookWidget-padding-bottom);
}

.carousel-gift4-dots {
    margin-bottom: 30px;
}
.pswp img {
    max-width: none;
    object-fit: contain;
}
.about3 .btn-default {
    padding: var(--sliderAbout-btn-padding);
    height: auto;
    font: var(--sliderAbout-btn-font);
    text-transform: var(--sliderAbout-btn-transform);
    border-radius: var(--sliderAbout-btn-radius);
    /* background: var(--sliderAbout-btn-bck);
    color: var(--sliderAbout-btn-color);
    border: var(--sliderAbout-btn-border); */
}
/* .about3 .btn-default:hover {
    background: var(--sliderAbout-btn-hover-bck);
    color: var(--sliderAbout-btn-hover-color);
    border: var(--sliderAbout-btn-hover-border);
} */
.review-text .btn-default {
    padding: var(--sliderReview-btn-padding);
    height: auto;
    font: var(--sliderReview-btn-font);
    text-transform: var(--sliderReview-btn-transform);
    border-radius: var(--sliderReview-btn-radius);
}
.home-contact .btn-default {
    padding: var(--home-contact-btn-padding);
    height: auto;
    font: var(--home-contact-btn-font);
    text-transform: var(--home-contact-btn-transform);
    border-radius: var(--home-contact-btn-radius);
    border: var(--home-contact-btn-border);
    background: var(--home-contact-btn-bck);
    color: var(--home-contact-btn-color);
}
.home-contact .btn-default:hover {
    border: var(--home-contact-btn-hover-border);
    background: var(--home-contact-btn-hover-bck);
    color: var(--home-contact-btn-hover-color);
}
#contactForm .btn-default {
    padding: var(--contact-btn-padding);
    height: auto;
    font: var(--contact-btn-font);
    text-transform: var(--contact-btn-transform);
    border-radius: var(--contact-btn-radius);
}
.giftbox4-button {
    margin-top: 20px;
    width: 100%;
    clear: both;
}
.giftbox4-button .btn-default {
    padding: var(--sliderGiftbox4-btn-padding);
    height: auto;
    font: var(--sliderGiftbox4-btn-font);
    text-transform: var(--sliderGiftbox4-btn-transform);
    border-radius: var(--sliderGiftbox4-btn-radius);
}

.contactBuildingImg {
    width: var(--contact-building-icon-size);
    height: auto !important;
    display: block !important;
    max-width: 1000px !important;
}
.contactPhoneImg {
    width: var(--contact-phone-icon-size);
    height: auto !important;
    display: block !important;
    max-width: 1000px !important;
}
.contactMailImg {
    width: var(--contact-mail-icon-size);
    height: auto !important;
    display: block !important;
    max-width: 1000px !important;
}

.recommended .pagesList {
    font-size: 0;
}

.recommended {
    padding-left: 30px;
    padding-right: 30px;
}

.giftbox4-cont {
    margin-bottom: 50px;
}

.noTitle {
    padding-top: 50px;
}
.giftbox-el-cont {
    margin-left: -10px;
    margin-right: -10px;
    width: auto;
    height: auto;
    clear: both;
    overflow: hidden;
}
.onlyText .giftbox-el-cont {
    display: table;
    height: 100%;
    overflow: hidden;
    table-layout: fixed;
    max-width: 100%;
    width: 100%;
}
.onlyText .giftbox-el-cont .col-sm-4 {
    display: table-cell;
    height: 100%;
    float: none;
    height: 100%;
    vertical-align: top;
    position: relative;
}
.onlyText .giftbox-el-cont .col-sm-4 .giftbox4-bottom-border {
    position: absolute;
    bottom: 0;
    left: 15px;
}

.onlyText .owl-carousel .owl-stage{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.onlyText .owl-item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: auto !important;
}

.onlyText ul {
    list-style: none;
    padding-left: 0;
}
.onlyText ul li {
    padding-left: 20px;
    position: relative;
}
.onlyText ul li::before {
  content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  left: 0; /* Also needed for space (tweak if needed) */
  color: var(--giftbox4-ul-dot-color);
  font: var(--giftbox4-ul-dot-font);
  position: absolute;
  top: 4px;
}

.carousel-gift4-dots .owl-dots {
    margin-top: 30px;
}

/* .centerColumn .giftbox-el-cont .col-sm-4 {
    max-width: 33.333%;
} */

.centerColumn .giftbox-el-cont {
    width: 66.666%;
    margin: 0 auto;
}

.breadcrumbs.col-lg-10.col-lg-offset-1.col-md-12 {
    padding-left: 20px;
    padding-right: 20px;
}

.categoriesWidgetsTop .breadcrumbs {
    width: 100%;
    padding-left: calc(50% - 650px);
    padding-right: calc(50% - 650px);
    padding-bottom: 30px;
    max-width: 100%;
}

.categoriesWidgetsTop .galleryList-breadcrumbs {
    padding-top: 30px;
    padding-left: calc(50% - 700px);
    padding-right: calc(50% - 700px);
}

.pages-list h1 {
    font: var(--header-h1-font);
    color: var(--header-h1-color);
    text-transform: var(--header-h1-transform);
}

#page.pageContent ul li {
    font-size: var(--page-font);
}

.pageContent ul {
    list-style: none;
    padding-left: 0;
}
.pageContent ul li {
    position: relative;
    padding-left: 20px;
}
.pageContent ul li::before {
    content: "\2022";
    font-weight: bold;
    display: inline-block;
    left: 0;
    color: var(--page-ul-dot-color);
    font: var(--page-ul-dot-font);
    position: absolute;
    top: 4px;
}

.sceneTitle h2.home-header {
    padding-top: 0;
}

.footerMenuLogos {
    display: block !important;
    vertical-align: middle;
}

.footerMenuLogos svg:nth-child(1) {
    width: var(--footerMenuLogos-svg1-width);
    height: auto;
    margin-right: 30px;
    display: inline-block;
    vertical-align: middle;
}
.footerMenuLogos a {
    display:inline-block;
    width: auto;
    height: auto;
    vertical-align: middle;
}
.footerMenuLogos svg:nth-child(2), .footerMenuLogos a svg {
    width: var(--footerMenuLogos-svg2-width);
    height: auto;
    margin-right: 30px;
    display: inline-block;
    vertical-align: middle;
}

.contact .home-contact-cont-border {
	margin-top: 0;
}

.contact .margin-bottom-box.card {
    margin-bottom: 0;
}
.contact .pages-container {
    padding-bottom: 0;
}

.footer-copy span {
    white-space: nowrap;
    display: inline-block;
    margin-left: 15px;
    margin-right: 15px;
}

.footer-copy a {
    white-space: nowrap;
}

.textHeightAuto .giftbox4 .giftbox4-el p {
    height: auto;
}
/* .textHeightAuto .giftbox4 .giftbox-el-cont {
    display: table;
    table-layout: fixed;
    height: auto;
    width: 100%;
} */
.textHeightAuto .giftbox4 .giftbox-el-cont:not(.owl-carousel) {
    height: auto;
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    align-items: stretch;
    align-content: flex-start;
}
/* .textHeightAuto .giftbox4 .col-sm-4 {
    display: table-cell;
    height: 95%;
    width: 33.333%;
    float: none;
    position: relative;
} */
.textHeightAuto .giftbox4 .giftbox-el-cont:not(.owl-carousel) .col-sm-4 {
    position: relative;
    width: 50%;
}
.textHeightAuto .giftbox4 .giftbox-el-cont.carousel-gift4-dots {
  margin-left: 0;
}
.textHeightAuto .giftbox4 .giftbox-el-cont.carousel-gift4-dots:not(.owl-carousel) {
  width: 1310px;
  display: flex;
  flex-wrap: nowrap;
}
.textHeightAuto .giftbox4 .giftbox-el-cont.carousel-gift4-dots:not(.owl-carousel) .col-sm-4 {
    position: relative;
    width: 440px;
}
.textHeightAuto .giftbox4 .giftbox4-bottom-border {
    bottom: 0;
    position: absolute;
    left: 15px;
}

.textHeightAuto .giftbox4 .owl-carousel .owl-stage {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.textHeightAuto .giftbox4 .owl-item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: auto !important;
}
 .textHeightAuto .giftbox4 .owl-item .col-sm-4 {
    width: 100%;
}

.textHeightAuto .giftbox4 .giftbox4-el .textNotvisible {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s;
}
.textHeightAuto .giftbox4 .giftbox4-el .textVisible {
    height: auto;
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.3s;
}
#textDots {
    text-align: center;
    padding-top: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
#textDots span {
    width: 10px;
    height: 10px;
    display: inline-block;
    margin: 20px 5px 0 5px;
    background: red;
    border-radius: 50%;
    cursor: pointer;
}
#textCarousel p {
    margin-top: 0;
    margin-bottom: 0;
}
/*
.textHeightAuto .giftbox4 .owl-item .giftbox4-el {
    display: flex;
	flex-direction: column;
    height: 100%;
}
.textHeightAuto .giftbox4 .owl-item .giftbox4-el p {
    flex-grow: 1;
} */



@supports (-webkit-touch-callout: none) {
  .review-el {
      background-attachment: initial;
  }
}

.home-blog.row {
    margin-left: -10px;
    margin-right: -10px;
}

.home-blog .blog-card {
    padding-left: 0;
    padding-right: 0;
}
.blog-home {
    background: var(--home-blog-bck);
}
.container-1500-padding {
    padding-left: calc(50% - 750px);
    padding-right: calc(50% - 750px);
}

.home-blog .card-content {
    font: var(--home-pageBox-font);
    color: var(--home-pageBox-color);
    padding-left: 10px;
    padding-right: 10px;
}
.blog-home h2.home-header {
    padding-bottom: 0 !important;
}
.home-blog .gridItem {
    padding-top: 30px;
    padding-bottom: 20px;
}
.home-blog .margin-top {
    margin: 0;
}
.home-blog .blog-card h3 a {
    font: var(--home-pageBox-title-font);
    color: var(--home-pageBox-title-color);
}
.home-blog .blog-card h3 a:hover {
    color: var(--home-pageBox-title-hover-color);
}

.home-blog .gridItem .blog-card:hover {
    -webkit-box-shadow: var(--home-pageBox-hover-shadow);
    -moz-box-shadow: var(--home-pageBox-hover-shadow);
    box-shadow: var(--home-pageBox-hover-shadow);
}

.home-blog .owl-stage-outer {
    padding-left: 10px;
    padding-right: 10px;
    width: calc(100% - -20px);
}

.blog-home .btn-purple {
    font: var(--home-blog-btn-font);
    color: var(--home-blog-btn-color);
    background-color: var(--home-blog-btn-bck);
    border: var(--home-blog-btn-border);
    border-radius: var(--home-blog-btn-radius);
    padding: var(--home-blog-btn-padding);
    text-transform: var(--home-blog-btn-transform);
    height: auto;
}

.blog-home .btn-purple:hover {
    color: var(--home-blog-btn-hover-color);
    background-color: var(--home-blog-btn-hover-bck);
    border: var(--home-blog-btn-hover-border);
}

/*
.blog-home * {
    overflow: visible !important;
} */

.carousel-home-iframe {
    height: 100vh !important;
}

.about3-cont {
    background: var(--sliderAbout-bck);
}
.about3 .header-text {
    color: var(--sliderAbout-header-color);
    font: var(--sliderAbout-header-font);
}
.giftbox4-cont .header-text {
    color: var(--giftbox4-header-color);
    font: var(--giftbox4-header-font);
}

.giftbox4 .giftbox4-el h3 {
    color: var(--giftbox4-elem-header-color) !important;
    font: var(--giftbox4-elem-header-font);
}
.giftbox4 .giftbox4-el h3:hover {
    color: var(--giftbox4-elem-header-hover-color) !important;
}
.giftbox4 .giftbox4-el p, .giftbox4 .giftbox4-el ul li, .giftbox4 .giftbox4-el {
    color: var(--giftbox4-elem-desc-color);
    font: var(--giftbox4-elem-desc-font);
}

.giftbox4-bottom-border {
    background: var(--giftbox4-elem-border-bck);
}
.col-sm-4:hover .giftbox4-bottom-border {
    background: var(--giftbox4-elem-border-hover-bck);
}
.giftbox4-padding {
    background: var(--giftbox4-bck);
}

.pageRecommendedHeader {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.flags-cont {
    width: 30px;
    float: right;
    height: 22px;
    overflow: visible;
    position: relative;
    margin-left: 20px;
}

.flags {
    width: 34px;
    height: 26px;
    overflow: hidden;
    padding: 5px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1000;
}

.flag-active {
    display: block;
    width: 24px;
    height: 16px;
    margin-bottom: 20px;
}

.flags:hover {
    height: auto;
    background: #fff;
}

.flags a {
    margin-bottom: 10px;
    vertical-align: top;
    display: block;
    height: 16px;
}
.flags a:last-child {
    margin-bottom: 0;
}
.flags a img, .flags span img {
    vertical-align: top;
    max-width: 100%;
    width: auto;
    display: inline-block;
    height: auto;
}

.carousel-gift4-dots.owl-carousel {
    margin-bottom: 0;
}

.contact .contactFormThanks {
    color: var(--contactForm-thanks-color);
    font: var(--contactForm-thanks-font);
    text-align: var(--contactForm-thanks-align);
}
/* .carousel-gift4-dots .col-sm-4 {
  width: 33.33%;
}
.carousel-gift4-dots .owl-item .col-sm-4 {
  width: 100%;
} */

/* RWD */

@media screen and (max-width: 1600px) {
    .container-1500 {
        width: 100%;
    }
}

@media screen and (max-width: 1550px) {
    .big-arrow-next {
        width: 35px;
        background-size: 35px auto;
        right: -30px;
        top: calc(50% - 40px);
    }
}

@media screen and (max-width: 1500px) {
    .overlayToRight .carousel-home-el .text-center {
        width: 85%;
        margin-left: 15%;
    }
    .overlayToRight .carousel-home-el span.text {
        font-size: 44px;
    }
    .overlayToRight .spinny-words span {
        font-size: 30px;
    }
    .container-1300-padding.sliderTextImage {
        padding-left: calc(50% - 550px);
        padding-right: calc(50% - 550px);
    }
    .threeBoxes .sliderTextImage-box {
        padding-left: 20px;
        padding-right: 20px;
    }
    .pagesListLinks .pagerItem {
        width: 33.333%;
        float: left;
    }
    .pagesListLinks {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media screen and (max-width: 1400px) {
    .carousel-home-el h1 span.text {
        font-size: 40px;
    }
    .rw-words-1 span {
        font-size: 40px;
    }

    .container-1500 {
        width: 100%;
        padding-left: 50px;
        padding-right: 50px;
    }
    .breadcrumbs.container-1500 {
        padding-left: 50px;
        padding-right: 50px;
    }
}
@media screen and (max-width: 1340px) {
    .tbs .galleryList-cont, .tbs .gallery-cont, .tbs .promoList, .auctionsSlider, .tbs .gallery-cont, .pagesListLinks {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media screen and (max-width: 1300px) {
    .container-1300-padding, .categoriesWidgetsTop .breadcrumbs {
        padding-left: 65px;
        padding-right: 65px;
    }
    .giftbox4 .giftbox4-el p {
        height: 130px;
    }
    .overlayToRight .carousel-home-el .text-center {
        width: 90%;
        margin-left: 10%;
    }
    .container-1300-padding.sliderTextImage {
        padding-left: calc(50% - 450px);
        padding-right: calc(50% - 450px);
    }
    .container-1300-padding.threeBoxes {
        padding-left: calc(50% - 500px);
        padding-right: calc(50% - 500px);
    }
}

@media screen and (max-width: 1240px) {
    .overlayToCenter .carousel-home-el .text-center {
        padding: 30px 50px 30px;
    }
    .container-1500, .breadcrumbs.container-1500 {
        padding-left: 20px;
        padding-right: 20px;
    }
    /* .shortElemTitle .giftbox4 .giftbox4-el p {
        height: 320px;
    }
    .textHeightAuto .giftbox4 .giftbox4-el p {
        height: auto;
    } */
}

@media screen and (max-width: 1200px) {
    .responsive-1300-x {
        display: none;
    }
    .burger-container {
        display: block;
    }
    .icons-navbar {
        margin-right: 100px;
    }
    .responsive-x-768.active {
        display: block;
    }
    .responsive-x-768 {
        -webkit-transform: translateZ(0);
        background: var(--menu-mobile-bck);
        display: block;
        max-width: 500px;
        min-height: 100%;
        padding: 0;
        position: fixed;
        right: -500px;
        top: 80px;
        transition: .5s;
        width: 80%;
        z-index: 10000;
    }
    .responsive-x-768.active {
        right: 0;
    }
    .responsive-x-768.active.fixed {
        top: 60px;
    }
    .responsive-x-768 .navbar-nav {
        margin: 0;
        padding: 0;
    }
    .responsive-x-768 .navbar-nav li {
        margin: 0;
        padding: 0 10px;
        position: relative;
        width: 100%;
    }
    .responsive-x-768 .navbar-nav a {
        color: var(--mobile-menu-color);
        display: block;
        font: var(--mobile-menu-font);
        text-align: left;
    }
    .responsive-x-768 .navbar-nav a.active {
        color: var(--mobile-menu-active-color);
    }
    .responsive-x-768 .navbar-nav a:focus, .responsive-x-768 .navbar-nav a:hover {
        color: var(--mobile-menu-hover-color);
    }
    .responsive-x-768 .navbar-nav svg {
        fill: var(--mobile-menu-icon-fill);
        height: 44px;
        padding: 10px;
        position: absolute;
        right: 10px;
        top: 0;
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
        width: 44px;
        cursor: pointer;
    }
    .responsive-x-768 .navbar-nav svg.menuMinus {
        -webkit-transform: none;
        -moz-transform: none;
        -o-transform: none;
        transform: none;
        display: none;
    }
    .responsive-x-768 ul.level2 {
        padding: 10px 0;
        text-align: left;
    }
    .responsive-x-768 a.level2 {
        padding: 10px 60px 10px 10px;
    }
    .responsive-x-768 ul.level3 {
        background: var(--submenu-mobile-bck);
        list-style: none;
        max-height: 0;
        opacity: 0;
        padding: 0;
        position: relative;
        pointer-events: none;
        transition: .5s;
    }
    .responsive-x-768 ul.level3.active {
        pointer-events: auto;
        opacity: 1;
        max-height: 400px;
        padding: 10px 0;
    }
    .responsive-x-768 a.level3 {
        padding: 5px 10px;
    }
    .responsive-x-768 ul.level3:before {
        border-bottom: 10px solid var(--submenu-mobile-bck);
        border-left: 5px solid rgba(0, 0, 0, 0);
        border-right: 5px solid rgba(0, 0, 0, 0);
        top: -10px;
        content: '';
        display: block;
        left: 30px;
        position: absolute;
        z-index: 9;
        transition: all 200ms ease-in-out;
    }
    .navbar-nav > li {
        float: left;
    }
    .responsive-x-768 ul.level2:last-child {
        padding-top: 0;
    }
    .responsive-x-768 ul.level2:first-child {
        padding-bottom: 0;
    }
    .nav > li > a:focus, .nav > li > a:hover {
        border-bottom: none;
    }
    .review-el {
        padding-left: 100px;
        padding-right: 100px;
    }
    .tbs .cover-cont {
        left: 100px;
        right: 100px;
        width: calc(100% - 200px);
    }
    /* .review-el .cover-cont {
        left: 100px;
        right: 100px;
        width: auto;
    } */
    .slider4photo .slider2box .btn {
        margin-top: -47px;
        z-index: 3000;
        position: absolute;
        left: calc(50% - 50px);
        width: 100px;
    }
    .giftbox4 .giftbox4-el p {
        height: 160px;
    }
    .overlayToRight .carousel-home-el .text-center {
        width: 100%;
        margin-left: 0%;
    }
    .sliderTextImage-border {
        width: 40px;
    }
    .tbs .bg-footer {
        background-size: 150px auto;
        background-position: calc(100% - 150px) 30px;
    }
    .tbs .responsive-x-768 {
        background: var(--mobile-menu-background);
        font-size: var(--mobile-menu-font-size);
    }
    .tbs .responsive-x-768 .navbar-nav > li > a,
    .tbs .responsive-x-768 .navbarMenu2-el > a {
        color: var(--mobile-menu-font-color);
    }
    .tbs .responsive-x-768 .navbar-nav > li > a:hover,
    .tbs .responsive-x-768 .navbar-nav > li > a:focus,
    .tbs .responsive-x-768 .navbarMenu2-el > a:hover,
    .tbs .responsive-x-768 .navbarMenu2-el > a:focus,
    .tbs .responsive-x-768 .navbar-nav > li > a.active,
    .tbs .responsive-x-768 .navbarMenu2-el > a.active {
        color: var(--mobile-menu-font-color-active);
    }
    .tbs .responsive-x-768 .navbar-nav svg {
        fill: var(--mobile-menu-icon-fill);
        cursor: pointer;
    }
    .tbs .responsive-x-768 .navbar-nav svg.menuPlus {
        display: block;
        transform: none;
    }
    .tbs .responsive-x-768 .navbar-nav svg.menuMinus {
        display: none;
        transform: none;
    }
    .tbs .responsive-x-768.fixed {
        background: var(--mobile-menu-fixed-background);
    }
    .tbs .responsive-x-768 ul.level3 {
        background: var(--mobile-menu-list-background) !important;
    }
    .tbs .responsive-x-768 ul.level3::before {
        border-bottom: 10px solid var(--mobile-menu-list-arrow);
        border-left: 5px solid rgba(0, 0, 0, 0);
        border-right: 5px solid rgba(0, 0, 0, 0);
    }
    .tbs .responsive-x-768 a.level3 {
        color: var(--mobile-menu-list-color);
    }
    .tbs .responsive-x-768 a.level3.active {
        color: var(--mobile-menu-list-color-active);
    }
}

@media screen and (max-width: 1100px) {
    .container-1300-padding.threeBoxes {
        padding-left: calc(50% - 450px);
        padding-right: calc(50% - 450px);
    }
}

@media screen and (max-width: 1060px) {
    .navbar .col-sm-3 {
        width: 30%;
    }
    .overlayToRight .carousel-home-el span.text {
        font-size: 34px;
    }
    .overlayToRight .spinny-words span {
        font-size: 22px;
    }
    /* .shortElemTitle .giftbox4 .giftbox4-el p {
        height: 390px;
    }
    .textHeightAuto .giftbox4 .giftbox4-el p {
        height: auto;
    } */
}

@media screen and (max-width: 1024px) {
    .show1024 {
        display: block;
    }
    .hide1024 {
        display: none;
    }
    .textHeightAuto .giftbox4 .giftbox-el-cont.carousel-gift4-dots:not(.owl-carousel) .col-sm-4 {
      width: 50%;
    }
    .textHeightAuto .giftbox4 .giftbox-el-cont.carousel-gift4-dots:not(.owl-carousel) .col-sm-4:nth-child(n+3) {
      display: none;
    }
    .textHeightAuto .giftbox4 .giftbox-el-cont.carousel-gift4-dots:not(.owl-carousel) {
      width: 100%;
      display: flex;
      flex-wrap: nowrap;
    }
    .textHeightAuto .giftbox4 .giftbox-el-cont.carousel-gift4-dots:not(.owl-carousel) .col-sm-4 {
        position: relative;
        width: 50%;
    }
    /* .categoriesWidgetsTop .background-pages-category h1, .categoriesWidgetsTop .background-pages-category h2, .hideAfter.background-pages-category h1, .hideAfter.background-pages-category h2 {
        width: 80%;
        margin-left: 20%;
    }
    .categoriesWidgetsTop .background-pages-category h1 .cover, .categoriesWidgetsTop .background-pages-category h2 .cover, .hideAfter.background-pages-category h1 .cover, .hideAfter.background-pages-category h2 .cover {
        width: 100%;
        margin-left: 0;
    } */
    
}

@media screen and (max-width: 990px) {
    .cart-summary, .cart-info {
        width: 100%;
        margin-left: 0;
    }
    .giftbox4 .giftbox4-el {
        height: auto;
    }
    .navbar .col-sm-3 {
        width: 50%;
    }
    .container-1300 {
        padding-left: 15px;
        padding-right: 15px;
    }
    .container-1300-padding, .container-1500, .categoriesWidgetsTop .breadcrumbs {
        padding-left: 30px;
        padding-right: 30px;
    }
    .giftbox4 {
        margin-left: 0;
        margin-right: 0;
    }
    .footerMenu:nth-child(1), .footerMenu:nth-child(2) {
        max-width: 100%;
        min-width: 100px;
    }
    .footerMenu ul.level3 {
        padding-left: 0;
    }
    .bg-footer ul li {
        width: 100%;
    }
    .triangle-img {
        width: 120px;
        height: 130px;
    }
    .pageGalleryRow .triangle-img, .slider4photo .triangle-img {
        width: 100px;
        height: 100px;
    }
    .big-arrow-next {
        display: none;
    }
    .sliderTextImage-border {
        width: 10px;
    }
    .sliderTextImage-text {
        padding-left: 0;
    }
    .photoRight .sliderTextImage-text {
        padding-right:0;
    }
    .container-1300-padding.sliderTextImage {
        padding-left: 30px;;
        padding-right: 30px;
    }
    .pagesListLinks .pageBox .pageBoxContent {
        height: 190px;
    }
    .pagesListLinks .pageBox .pageBoxContent .desc {
        height: 110px;
    }
    /* .tbs .footerMenu:nth-child(2) {
        height: auto !important;
    }
    .tbs .footerMenu:nth-child(2) span.plus-icon {
        display: none;
    } */
    .auctionItem {
        width: 50%;
    }
    .auctionsSlider .auctionItem {
        width: 100%;
    }
    .sliderAuctions .image h3 {
        font-size: 38px;
    }
    .sliderAuctions .image svg {
        width: 120px;
        height: 120px;
    }
    .categoriesWidgetsTop .background-pages-category h1 span, .categoriesWidgetsTop .background-pages-category h2 span, .hideAfter.background-pages-category h1 span, .hideAfter.background-pages-category h2 span {
        font-size: 36px;
    }
    .centerColumn .giftbox-el-cont {
        width: 100%;
    }
    .breadcrumbs.col-lg-10.col-lg-offset-1.col-md-12 {
        padding-left: 0;
        padding-right: 0;
        /* margin-left: -10px; */
    }
    .carousel-home-iframe {
        height: 80vh !important;
    }
}

@media screen and (max-width: 950px) {
    .giftbox4 .col-sm-4 {
        width: 50%;
    }
    .giftbox4 .owl-item .col-sm-4 {
        width: 100%;
    }
    
}

@media screen and (max-width: 900px) {
    .navbar .col-md-6 {
        width: 58%;
        float: left;
    }
    .navbar .col-sm-3 {
        max-width: 300px;
        width: 300px;
        min-width: 250px;
        padding: 0;
        padding-top: 5px;
    }
    .navbarLogo a .normal-logo {
        width: 25px;
        height: 25px;
    }
    .navbarLogo a {
        padding-top: 7px;
    }
    .carousel-home-el span.text {
        font-size: 44px;
    }
    .spinny-words span {
        font-size: 30px;
    }
    .giftbox4 .giftbox4-el p {
        height: 120px;
    }
    .giftbox4-button .btn {
        position: absolute;
        left: calc(50% - 50px);
        margin-top: -68px;
        z-index: 3000;
        width: auto;
    }
    .giftbox4-button.button-relative .btn {
        position: relative;
        margin-top: 0;
        left: auto;
        
    }
    .review-el h3 {
        font-size: 40px;
    }
    .review-el h4 {
        font-size: 20px;
    }
    .review-icon {
        width: 110px;
    }
    .review-icon svg {
        height: 80px;
        top: calc(50% - 40px);
    }
    .review-text {
        width: calc(100% - 110px);
        padding-left: 35px;
    }
    .background-pages-category h1 {
        top: 15%;
    }
    .slider2box-el {
        display: none;
    }

    .slider2box-el:nth-child(1),
    .slider2box-el:nth-child(2) {
        display: block;
        max-width: 430px;
    }

    .owl-item .slider2box-el {
        display: block;
        max-width: 100%;
    }
    .review-icon .svg-txt {
        font-size: 0.8em;
        width: 80px;
    }
    .overlayToCenter .carousel-home-el .text-center {
        width: 90%;
    }
    .overlayToCenter header {
        padding: 20px 0;
    }
    /* .shortElemTitle .giftbox4 .giftbox4-el p {
        height: 280px;
    } */
    .breadcrumbs.col-lg-10.col-lg-offset-1.col-md-12 {
        margin-left: -10px;
    }
    /* .textHeightAuto .giftbox4 .giftbox4-el p {
        height: auto;
    } */
    .giftbox4-button .btn {
      position: relative;
      margin-top: 0;
      left: auto;
    }
    .giftbox-el-cont {
        margin-bottom: 30px;
    }
    .textHeightAuto .giftbox4 .giftbox-el-cont:not(.owl-carousel) .col-sm-4 {
        width: 100%;
    }
}

@media screen and (max-width: 850px) {
    .responsive-1300-x {
        display: none;
    }
    .burger-container {
        display: block;
    }
    .icons-navbar {
        margin-right: 50px;
    }
    .overlayToRight .carousel-home-el .text-center {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 20px;
    }
}

@media screen and (max-width: 800px) {
    .review-el {
        padding-left: 50px;
        padding-right: 50px;
    }
    /* .review-el .cover-cont {
        width: calc(100% - 100px);
        left: 50px;
        right: 50px;
    } */
    .tbs .cover-cont {
        left: 50px;
        right: 50px;
        width: calc(100% - 100px);
    }
    .categoriesWidgetsTop .background-pages-category h1 .cover, .categoriesWidgetsTop .background-pages-category h2 .cover, .hideAfter.background-pages-category h1 .cover, .hideAfter.background-pages-category h2 .cover {
        height: 120px;
    }
    .categoriesWidgetsTop .background-pages-category h1 span, .categoriesWidgetsTop .background-pages-category h2 span, .hideAfter.background-pages-category h1 span, .hideAfter.background-pages-category h2 span {
        padding-top: 30px;
        font-size: 32px;
        padding-top: 40px;
    }
    .categoriesWidgetsTop .background-pages-category h1, .categoriesWidgetsTop .background-pages-category h2, .hideAfter.background-pages-category h1, .hideAfter.background-pages-category h2 {
        top: calc(50% - 60px);
    }
    .threeBoxes .sliderTextImage-box {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 14px;
    }
    .categoriesWidgetsTop .background-pages-category h1, .categoriesWidgetsTop .background-pages-category h2, .hideAfter.background-pages-category h1, .hideAfter.background-pages-category h2 {
        height: 130px;
    }
    .tbs .breadcrumbs {
        max-width: 100%;
        overflow: auto;
        white-space: nowrap;
        z-index: 200;
        position: relative;
    }
    .tbs .breadcrumbs span {
        margin-right: 20px;
    }
    .tbs .pageNoImage h1 {
        padding-top: 15px;
    }
    .onlyText:not(.centerColumn) .giftbox-el-cont .col-sm-4 {
        display: block;
        width: 50%;
        float: left;
        margin-bottom: 30px;
    }
    .onlyText .giftbox-el-cont .owl-item .col-sm-4 {
        float: none;
        width: 100%;
    }
}

@media screen and (max-width: 780px) {
    .giftbox4 .giftbox4-el {
        height: auto;
    }
    .giftbox4 .giftbox4-el p {
        left: auto;
        right: auto;
    }
    /* .withoutDesc .giftbox4 .col-sm-4 {
        width: 33.333%;
        float: left;
    } */
    .withoutDesc .giftbox4 .owl-item .col-sm-4 {
        width: 100%;
    }
}

@media screen and (max-width: 768px){
    .body-page .pages-container {
        margin-top: 0;
    }
    .body-page .pages-list h1 {
        padding-top: 0;
        font: var(--mobile-header-h1-font);
    }
    .pageContent h2, .pageContent h2 span {
        font: var(--mobile-page-h2-font);
    }
    .pageContent h3, .pageContent h3 span {
        font: var(--mobile-page-h3-font);
    }
	.rw-sentence span { font-size: 26px; line-height: 1;}
    
    header {
        padding: 40px 20px;
        height: 80px;

    }
    /* header .spinny-words span {
        font-size: 22px;
    } */
    .burger-container {
        top: 0;
    }
    .navbarIcons {
        width: 100%;
        margin-top: 10px;
    }
    .icons-navbar {
        right: 80px;
    }
    .navbarLogo p {
        padding-left: 15px;
    }
    .navbarLogo a .fixed-logo-cont svg {
        display: block;
        opacity: 1;
        height: auto;
    }
    .offer{padding-left:20px;padding-right:20px;}
    .offer .hidden-xs {
        display: block;
    }
    .offer .visible-xs {
        display: none;
    }
    .gallery-el {
        width: calc(50% - 40px);
    }
    .responsive-x-768 ul.level2 {
        padding-bottom: 0;

    }
    .responsive-x-768 ul.level2:nth-child(2) {
        padding-top: 0;
    }
    .background-product, .header-margin {
        padding-top: 85px;
    }
    .start-filter {
        padding-top: 0;
    }
    .productRowFeatures {
        height: auto !important;
    }
    .box .productBoxFooter {
        height: auto !important;
    }
    .productBoxFooter > div.tile-add-to-cart {
        height: 50px;
    }
    .box .productBoxFooter:hover .productRowFeatures {
        height: auto !important;
    }
    .giftbox4 {
        margin: 0;
    }
    h2.home-header, .products-back h2, .review-el h2 {
        font-size: 26px !important;
    }
    .products-back {
        padding-left: 10px;
        padding-right: 10px;
    }
    .review-el {
        font-size: 20px;
        line-height: 1.2;
    }
    #header-dynamic,
    #header-dynamic.fixed {
        background: var(--menu-header-mobile-bck);
    }
    #header-dynamic.fixed {
        position: fixed;
    }
    .about3-el .image, .about3-el .description {
        width: 100%;
        padding: 0;
    }
    .about3-el .description {
        margin-top: 30px;
    }
    .slider2box-el h2, .pageGalleryRow .card-content {
        font-size: 20px;
    }
    .pageGalleryRow figure.col-sm-4 {
        width: 50%;
    }
    #activeboxPagesSearch.activebox .activeboxPagesSearchBox {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 80px;
        background: #fff;
        width: 100%;
        padding: 20px;
    }
    .activeboxPagesSearchBoxInput {
        width: calc(100% - 40px);
    }
    .clearSearchPagesButton {
        right: 70px;
        top: 30px !important;
    }
    #activeboxPagesSearchBoxAjax {
        width: calc(100% - 40px);
    }
    .giftbox4 .giftbox4-el p{
        height: 160px;
    }
    .overlayToRight .carousel-home-el .text-center {
        padding-top: 0;
    }
    .overlayToRight header {
        padding: 20px 0;
        height: 50px;
    }
    .overlayToRight .spinny-words span {
        top: 0;
    }
    .overlayToRight .carousel-home-el .text-center {
        padding-bottom: 30px;
    }
    .pagesListLinks .pagerItem {
        width: 50%;
    }
    .auctionItem {
        width: 100%;
        margin-bottom: 30px;
    }
    .auctionItem .auctionBox {
        margin-bottom: 0 !important;
    }
    .auctionsSlider .auctionItem .auctionBox {
        margin-bottom: 40px !important;
    }
    .auctionsSlider-slider {
        padding-left: 0;
    }
    .auctionsSlider-auctions .row {
        margin: 0;
    }
    .auctionsSlider-slider .container-1300-padding {
        padding-left: 0;
    }
    .categoriesWidgetsTop .pages-container {
        margin-top: 30px;;
    }
    .categoriesWidgetsTop .background-pages-category h1 span, .categoriesWidgetsTop .background-pages-category h2 span, .hideAfter.background-pages-category h1 span, .hideAfter.background-pages-category h2 span {
        font-size: 28px;
    }
    .facebookWidget .about3-el .description, .facebookWidget .about3-el .image {
        text-align: center;
        width: 100%;
    }
    .carousel-gift4-dots .owl-dots {
        margin-top: 10px;
    }
    .giftbox4-cont:not(.carouselDesktop) .giftbox4-el {
        margin-bottom: 20px;
    }
    .home-contact-cont-border {
        margin-top: 30px;
    }
    /* .shortElemTitle .giftbox4 .giftbox4-el p {
        height: 320px;
    }
    .textHeightAuto .giftbox4 .giftbox4-el p {
        height: auto;
    } */
    .textHeightAuto .giftbox4 .giftbox-el-cont.carousel-gift4-dots:not(.owl-carousel) .col-sm-4 {
      width: 100%;
    }
    .textHeightAuto .giftbox4 .giftbox-el-cont.carousel-gift4-dots:not(.owl-carousel) .col-sm-4:nth-child(n+2) {
      display: none;
    }
    .textHeightAuto .giftbox4 .giftbox-el-cont.carousel-gift4-dots:not(.owl-carousel) .col-sm-4 {
        position: relative;
        width: 100%;
    }
}

@media screen and (max-width: 750px) {
    .categoriesLinks a, .sliderTextImage-menu a {
        font-size: 24px;
    }
    .categoriesLinks a:first-child, .sliderTextImage-menu a:first-child {
        margin-left: 0;
    }
    .categoriesLinks a:last-child, .sliderTextImage-menu a:last-child {
        margin-right: 0;
    }
}

@media screen and (max-width: 700px) {
    .giftbox4 .giftbox4-el h3 {
        height: 90px;
    }
    .giftbox4 .giftbox4-el p {
        height: 160px;
    }
    .carousel-offer .owl-controls {
        margin: 0;
    }
    .review-el h3 {
        font-size: 32px;
    }
    .review-el h4 {
        font-size: 18px;
    }
    .background-pages-category h1 {
        font-size: 30px;
    }
    .titleRight .home-header .header-text, .titleLeft .home-header .header-text, .titleCenter .header-text, .headerOverIcon .image h3 {
        font: var(--mobile700-home-header-h2-font);
    }
    .home-contact h2.home-header .header-text {
        font: var(--mobile700-home-contact-header-font);
    }
    .about3-el {
        padding-top: 0;
        padding-bottom: 40px;
    }
    .noTitle .about3-el {
        padding-top: 40px;
    }
    .headerOverIcon .image svg {
        width: 100px;
        height: 100px;
        margin: 25px auto 10px;
    }
    .tbs .bg-footer::after {
        width: 20px;
    }
    .tbs .bg-footer {
        background-size: 100px auto;
        background-position: calc(100% - 60px) 30px;
    }
    .facebookWidget .about3-el {
        padding-top: 0;
        padding-bottom: 0;
    }
    .noTitle {
        padding-top: 0;
    }
}

@media screen and (max-width: 650px) {
    .review-el {
        padding-left: 20px;
        padding-right: 20px;
    }
    /* .review-el .cover-cont {
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
    } */
    .review-icon svg {
        height: 70px;
        top: calc(50% - 35px);
    }
    .review-icon {
        width: 90px;
    }
    .review-icon .svg-txt {
        font-size: 0.7em;
        width: 70px;
    }
    .review-text {
        width: calc(100% - 90px);
        padding-left: 15px;
    }
    .giftbox4 .giftbox4-el p {
        height: 180px;
    }
    .overlayToRight .carousel-home-el span.text {
        font-size: 28px;
    }
    .overlayToRight .spinny-words span {
        font-size: 18px;
    }
    .threeBoxes .sliderTextImage-box {
        width: 100%;
        padding: 30px;
        margin-bottom: 20px;
        font-size: 16px;
        display: block;
    }
}

@media screen and (max-width: 627px) {
    .categoriesWidgetsTop .background-pages-category h1 span, .categoriesWidgetsTop .background-pages-category h2 span, .hideAfter.background-pages-category h1 span, .hideAfter.background-pages-category h2 span {
        font: var(--mobile-category-header-font);
    }
    .overlayToCenter .carousel-home-el .text-center {
        padding: 20px 20px 30px 20px;
    }
    .giftbox4 .col-sm-4 {
        width: 100%;
    }
    .carousel-home-el span.text, .carousel-home-el span.text.big-slider-text {
        font: var(--mobile-bigSlider-line1-font) !important;
    }
    .carousel-home-el span.spinny-words span, h1.onlyChild span, h1.onlyChild {
        font: var(--mobile-bigSlider-line2-font) !important;
    }
    .carousel-home-iframe {
        height: 60vh !important;
    }
    .textHeightAuto .giftbox4 .col-sm-4 {
        display: block;
        width: 100%;
        height: auto;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }
    .textHeightAuto .giftbox4 .col-sm-4 .giftbox4-el {
        margin-bottom: 10px;
    }
    .giftbox-el-cont {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 600px) {
    /* .giftbox4 .col-sm-4 {
        padding-left: 0;
        padding-right: 0;
    } */
    /* .giftbox-el-cont {
        margin-left: 0;
        margin-right: 0;
    } */
    .program-el .img {
        width: 100%;
    }
    .program-el .description {
        width: 100%;
    }
    .row.productsList {
        margin: 0 !important;
    }
    .navbar .col-sm-3 {
        width: 80%;
    }
    .carousel-home-el span.text {
        font-size: 30px;
    }
    .big-slider-line {
        margin: 10px auto 20px;
    }
    header {
        padding: 30px 20px;
        height: 60px;
    }
    .overlayToCenter header {
        padding-left: 0;
        padding-right: 0;
        height: 100px;
    }
    .responsive-x-768 {
        width: 100%;
        max-width: 100%;
        right: -100%;
    }
    .carouselArrowRight .col-sm-4 {
        padding-left: 10px;
        padding-right: 10px;
    }
    .carouselArrowRight .owl-prev, .carouselArrowRight .owl-next {
        display: none !important;
    }
    .carouselArrowRight .owl-dots {
        display: block !important;
    }
    .withoutDesc .giftbox4 .col-sm-4 {
        padding-left: 5px;
        padding-right: 5px;
    }
    .categoriesLinks a, .sliderTextImage-menu a {
        margin-left: 15px;
        margin-right: 15px;
    }
    .categoriesLinks a:first-child, .sliderTextImage-menu a:first-child {
        margin-left: 0;
    }
    .categoriesLinks a:last-child, .sliderTextImage-menu a:last-child {
        margin-right: 0;
    }
    .sliderTextImage-image, .sliderTextImage-text {
        float: none;
        width: 100%;
    }
    .sliderTextImage-image, .photoRight .sliderTextImage-image {
        margin-bottom: 30px;
        padding-right: 0;
        padding-left: 0;
    }
    .pagesListLinks {
        padding-left: 10px;
        padding-right: 10px;
    }
    .hideLine .spinny-words span {
        top: 0;
    }
    .categoriesWidgetsTop .background-pages-category h1 .cover, .categoriesWidgetsTop .background-pages-category h2 .cover, .hideAfter.background-pages-category h1 .cover, .hideAfter.background-pages-category h2 .cover {
        padding: var(--mobile-category-header-padding);
    }
    .home-blog .owl-stage-outer {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}

@media screen and (max-width:550px){
    .offer .info p{font-size: 14px;line-height:1;padding:10px;}
    .offer .info .btn{font-size:14px;padding:5px;}
    .offer .hidden-xs {
        display: none;
    }
    .offer .gridItem {
        height: 290px;
    }
    .offer .info {
        height: 290px;
        left: 0;
    }
    .offer .visible-xs {
        display: block;
    }
    .offer h3, .offer p {
        color: #565656;
        width: 100%;
    }
    .offer-box p {
        color: #fff;
    }
    .offer .col-md-12 {
        padding-top: 15px;
    }
    .offer p {
        padding-right: 15px;
        text-align: justify;
        padding-top: 0;
        margin-top: 0;
    }
    .offer .col-xs-5 img {
        padding: 0;
        padding-left: 15px;
        padding-top: 5px;
    }
    .offer .info .btn {
        margin-top: 30%;
    }
    .carousel-home-el .text-center {
        margin-top: -25px;
    }
    .overlayToRight .carousel-home-el .text-center {
        margin-top: 0;
        padding-top: 5px;
    }
    .overlayToRight .carousel-home-el .center-flex {
        padding-top: 50px;
    }
    .overlayToRight header {
        padding-top: 0;
        height: 60px;
    }
    .review-text {
        padding-right: 15px;
    }
    .background-pages-category h1 {
        font-size: 26px;
    }
    .slider2box-el {
        display: none;
    }

    .slider2box-el:nth-child(1) {
        display: block;
        max-width: 450px;
    }

    .owl-item .slider2box-el {
        display: block;
        max-width: 100%;
    }
    .tbs .bg-footer {
        background-size: 100px auto;
        background-position: 50px 20px;
        padding-top: 100px;
    }
    .tbs .navbarLogo a .normal-logo-cont, .tbs .page-logo-cont {
        max-width: 200px;
        height: 75px;
    }
    .tbs .navbarLogo a svg {
        max-width: 160px;
    }
}

@media screen and (max-width: 500px) {
    .giftbox4 .giftbox4-el p {
        margin-bottom: 20px;
        height: 100px;
    }
    .program {
        padding-left: 10px;
        padding-right: 10px;
    }
    .offer {
        padding-left: 10px;
        padding-right: 10px;
    }
    .gallery-el {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .gallery-slider {
        padding: 20px;
    }
    .carousel-home-el .btn-ocean {
        display: block;
        width: 250px;
        margin: 0 auto 20px auto;
    }
    .cartDiscountsForm .btn-blue {
        padding-left: 10px;
        padding-right: 10px;
        text-align: center;
    }
    .icons-navbar {
        right: 60px;
    }
    .navbar .col-sm-3 {
        width: 250px;
    }
    .carousel-home-el .btn {
        /* padding-top: 6px;
        padding-bottom: 6px; */
        font-size: 16px;
    }
    .carousel-home-el span.text {
        font-size: 26px;
    }
    header .spinny-words span {
        font-size: 20px;
    }
    .container-1300 {
        padding-left: 5px;
        padding-right: 5px;
    }
    .container-1300-padding, .categoriesWidgetsTop .breadcrumbs {
        padding-left: 15px;
        padding-right: 15px;
    }
    .owl-item .slider2box-el {
        padding-left: 10px;
        padding-right: 10px;
    }
    .home-contact {
        margin-left: 15px;
        width: calc(100% - 30px);
    }
    .background-pages-category h1 {
        top: 5%;
    }
    .background-pages-category h1 span {
        padding-bottom: 15px;
    }
    .pageGalleryRow figure.col-sm-4 {
        width: 100%;
    }
    .phoneNumber {
        font-size: 16px;
        background-size: 16px;
        padding-left: 20px;
    }
    .icons-navbar {
        width: auto;
        padding-right: 0;
        right: 60px;
    }
    .carouselArrowRight .giftbox4 {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    .categoriesWidgetsTop .background-pages-category h1 .cover, .categoriesWidgetsTop .background-pages-category h2 .cover, .hideAfter.background-pages-category h1 .cover, .hideAfter.background-pages-category h2 .cover {
        height: auto;
        width: 100%;
        margin-left: 0;
        margin-top: 30px;
    }
    .categoriesWidgetsTop .background-pages-category h1 span, .categoriesWidgetsTop .background-pages-category h2 span, .hideAfter.background-pages-category h1 span, .hideAfter.background-pages-category h2 span {
        padding-top: 25px;
        /* font-size: 24px; */
    }
    .categoriesWidgetsTop .background-pages-category h1, .categoriesWidgetsTop .background-pages-category h2, .hideAfter.background-pages-category h1, .hideAfter.background-pages-category h2 {
        top: 0;
        bottom: 0;
        height: auto;
        width: 100%;
        margin-left: 0;
    }
    .categoryHeaderCenter .categoriesWidgetsTop .background-pages-category h1 span::after, .categoryHeaderCenter .categoriesWidgetsTop .background-pages-category h2 span::after, .categoryHeaderCenter .hideAfter.background-pages-category h1 span::after, .categoryHeaderCenter .hideAfter.background-pages-category h2 span::after {
        bottom: 5px;
    }
    .categoriesWidgetsTop .background-pages-category {
        position: relative;
    }
    .categoriesLinks a, .sliderTextImage-menu a {
        font-size: 18px;
        margin-left: 5px;
        margin-right: 5px;
    }
    .container-1300-padding.sliderTextImage {
        padding-left: 20px;
        padding-right: 20px;
    }
    #pageNoImage {
        width: 100%;
    }
    .pagesListLinks .pagerItem {
        width: 100%;
    }
    .pagesListLinks .pageBox .pageBoxContent .desc {
        height: 80px;
    }
    .pagesListLinks .pageBox .pageBoxContent {
        height: 160px;
    }
    .auctionItem .pageBoxContent h2 {
        text-align: left !important;
    }
    .overlayToCenter .carousel-home-el .text-center {
        max-width: 90%;
        margin: 150px auto 0;
    }
    .centerColumn .giftbox-el-cont .col-sm-4 {
        display: block;
        width: 100%;
        margin-bottom: 30px;
        padding-bottom: 10px;
    }
    .breadcrumbs.col-lg-10.col-lg-offset-1.col-md-12 {
        padding-left: 0;
        padding-right: 0;
    }
    .navbarLogo a svg {
        width: var(--mobile-svg-logo-width);
    }
    .carousel-home-iframe .center-flex {
        padding-top: 0;
    }
}

@media screen and (max-width: 460px) {
    .overlayToRight .carousel-home-el .btn {
        width: 140px;
    }
    .overlayToRight .carousel-home-el span.text {
        font-size: 22px;
    }
    .overlayToRight .spinny-words span {
        font-size: 14px;
    }
    .overlayToRight .carousel-home-el .text-center {
        padding-left: 10px;
        padding-right: 10px;
    }
    .overlayToRight .carousel-home-el .text-center * {
        text-align: center !important;
    }
    .overlayToRight .carousel-home-el .btn {
        display: inline-block;
        float: none;
    }
    .overlayToRight .carousel-home-el .btn:nth-child(2) {
        margin-right: 0;
    }
}

@media screen and (max-width: 450px) {
    .order-radio label span {
        margin-left: 10px;
    }
    .cartMethodsShipments .radio, .cartMethodsPayments .radio, .order-radio label {
        padding-left: 0 !important;
    }
    .bg-padding-box {
        padding: 5px;
    }
    .cartMethodsShipments div.required .order-radio label::after {
        left: 30px;
    }
    .cartMethodsPayments div.required .order-radio label::after {
        left: 40px;
    }
    .order-radio span.label-text span {
        width: calc(100% - 50px);
    }
    .order-radio .description {
        padding-left: 10px !important;
    }
    .navbarLogo p {
        display: none;
    }
    .navbar .col-sm-3 {
        min-width: 200px;
        width: 200px;
    }
    .review-icon, .review-text {
        width: 100%;
        display: block;
        text-align: center;
    }
    .review-icon {
        text-align: center;
        padding-bottom: 20px;
    }
    .review-el .cover {
        padding-top: 20px;
    }
    .review-el .cover-cont {
        top: calc(50% - 150px);
    }
    @supports (-webkit-touch-callout: none) {
      .review-el .cover-cont {
          top: auto;
      }
    }
    .review-el h3 {
        font-size: 27px;
        text-align: center;
    }
    .review-el h4 {
        font-size: 17px;
    }
    .review-icon {
        height: 100px;
    }
    .review-icon svg {
        right: 0;
        left: 0;
        margin: 0 auto;
        top: 0;
    }
    .review-icon .svg-txt {
        margin: 12px auto 0 auto;
        float: none;
    }
    .tbs .navbarLogo a .normal-logo-cont, .tbs .page-logo-cont {
        padding-left: 0;
        max-width: 140px;
        height: 55px;
    }
    .tbs .navbarLogo a svg {
        max-width: 120px;
    }
    .tbs .navbarLogo a {
        padding-top: 0;
    }
    .tbs .cover-cont {
        top: 100px;
        bottom: 100px;
        left: 20px;
        right: 20px;
        width: calc(100% - 40px);
        height: calc(100% - 200px);
    }
    #header-dynamic, .navbar .col-sm-3, .navbarLogo a {
        padding-top: 0;
    }
    .navbarLogo a {
        padding-bottom: 0;
    }
    .normal-logo-cont, .page-logo-cont {
        height: 80px !important;
        display: table-cell !important;
        vertical-align: middle;
    }
    .fixed .fixed-logo-cont {
        height: 60px !important;
        display: table-cell !important;
        vertical-align: middle;
    }
    .fixed .page-logo-cont, .fixed .normal-logo-cont {
        display: none !important;
    }
    .normal-logo-cont .img-responsive, .page-logo-cont .img-responsive {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
    }
    .icons-navbar {
        padding-top: 0;
        height: 80px;
    }
    .navbarIcons {
        margin: 0;
        height: 80px;
    }
    .phoneNumber {
        display: table-cell;
        height: 80px;
        vertical-align: middle;
        float: none;
    }
    .phoneNumber.hide1024 {
        display: none;
    }
    .burger-container {
        top: 10px;
    }
    .fixed .icons-navbar, .fixed .navbarIcons, .fixed .phoneNumber {
        height: 60px;
    }
    .fixed .burger-container {
        top: 0;
    }
    .flags {
        top: calc(50% - 13px);
    }
    .flags-cont {
        height: 80px;
    }
}

@media screen and (max-width: 420px) {
    .home-contact p {
        font-size: 16px;
    }
    .home-contact h3 p {
        font-size: 18px;
    }
    .home-contact {
        width: 100%;
        margin-left: 0;
    }
    .review-el {
        padding-left: 10px;
        padding-right: 10px;
    }
    /* .review-el .cover-cont {
        width: calc(100% - 20px);
        left: 10px;
        right: 10px;
    } */
    .carousel-home-iframe {
        height: 40vh !important;
    }
}

@media screen and (max-width: 400px) {
    .giftbox4 .giftbox4-el p {
        height: 120px;
    }
    .carousel-home-el .center-flex {
        padding-top: 40px;
    }
    .navbarLogo span {
        padding-left: 0;
    }
    .burger-container {
        padding-right: 15px;
    }
    .icons-navbar {
        right: 45px;
    }
    .navbarLogo a .normal-logo-cont, .page-logo-cont, .fixed .fixed-logo-cont {
        max-width: 180px;
    }
    .overlayToRight .carousel-home-el .center-flex {
        padding-top: 20px;
    }
    /* .categoriesWidgetsTop .background-pages-category h1 span, .categoriesWidgetsTop .background-pages-category h2 span, .hideAfter.background-pages-category h1 span, .hideAfter.background-pages-category h2 span {
        padding-top: 40px;
    } */
    .titleRight .home-header .header-text, .titleLeft .home-header .header-text, .titleCenter .header-text, .headerOverIcon .image h3 {
        font: var(--mobile400-home-header-h2-font);
    }
    .home-contact h2.home-header .header-text {
        font: var(--mobile400-home-contact-header-font);
    }
    .tbs .bg-footer#footer {
        background-size: 100px auto;
        background-position: 20px 20px;
        padding-top: 100px;
        padding: 100px 0 30px 0;
    }
    .tbs .footerMenu:nth-child(1) {
        width: 100%;
        max-width: 100%;
    }
    .tbs .footer p {
        width: 100%;
        display: block;
    }
    .overlayToCenter .carousel-home-el .text-center {
        margin-top: 100px;
        max-width: 94%;
        padding: 20px 10px;
    }
    /* .overlayToCenter .carousel-home-el .btn {
        height: 45px;
        padding-top: 10px;
    } */
    /* .overlayToCenter .carousel-home-el header {
        padding: 20px 0 0;
        height: 40px;
    } */
    .overlayToCenter .carousel-home-el span.text {
        padding-left: 0;
        padding-right: 0;
    }
    .overlayToCenter .carousel-home-el .text-center h2.first {
        margin-top: 0;
    }
    .breadcrumbs.col-lg-10.col-lg-offset-1.col-md-12 {
        margin-left: -20px;
    }
    .footer-copy span, .footer-copy a {
        width: 100%;
        margin: 0;
    }
    .footer-copy span {
        margin-top: 5px;
        margin-bottom: 5px;
    }
    #footer {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media screen and (max-width: 380px) {
    .pagesListLinks .pageBox .pageBoxContent .desc {
        height: 110px;
    }
    .pagesListLinks .pageBox .pageBoxContent {
        height: 190px;
    }
}

@media screen and (max-width: 360px) {
    #header-dynamic .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }
    /* .burger-container {
        padding-right: 10px;
    } */
    .navbarLogo span {
        padding-left: 5px;
    }
    .icons-navbar {
        right: 40px;
    }
    .phoneNumber {
        font-size: 15px;
    }
    .breadcrumbs.col-lg-10.col-lg-offset-1.col-md-12 {
        margin-left: -25px;
    }
}

@media screen and (max-width: 350px) {
    .offer .gridItem {
        height: 310px;
    }
    .offer .col-md-12 {
        padding-top: 5px;
    }
    .offer .info {
        height: 310px;
    }
    .offer .info .btn {
        margin-top: 45%;
    }
    .overlayToRight .carousel-home-el span.text {
        font-size: 20px;
    }
    .overlayToRight .carousel-home-el .btn {
        margin-right: 10px;
    }
    .categoriesWidgetsTop .background-pages-category h1 span, .categoriesWidgetsTop .background-pages-category h2 span, .hideAfter.background-pages-category h1 span, .hideAfter.background-pages-category h2 span {
        /* font-size: 22px; */
    }
}

@media screen and (max-width: 340px) {
    .overlayToCenter .carousel-home-el .text-center {
        margin-top: 100px;
    }
    .navbarLogo a .normal-logo-cont, .page-logo-cont, .fixed .fixed-logo-cont {
        max-width: 150px;
    }
}

@media screen and (min-width: 768px) {
    .giftbox2 {
        padding-bottom: 35%;
    }
    .giftbox2-el {
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
    }
    .giftbox2-el:nth-child(1) {
        right: calc(50% - -10px);
    }
    .giftbox2-el:nth-child(2) {
        bottom: calc(50% - -10px);
        left: calc(50% - -10px);
    }
    .giftbox2-el:nth-child(3) {
        left: calc(50% - -10px);
        top: calc(50% - -10px);
    }
    .giftbox2-el.giftbox2-3:nth-child(1) {
        right: calc(66% - -15px);
    }
    .giftbox2-el.giftbox2-3:nth-child(2) {
        bottom: 0;
        left: calc(33% - -15px);
        right: calc(33% - -15px);
    }
    .giftbox2-el.giftbox2-3:nth-child(3) {
        left: calc(66% - -15px);
        top: 0;
    }

}
