@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-display: swap;
  src: url(RobotoSlab-Regular.eot); /* For IE6-8 */
  src: local('Ubuntu'),
       local('Ubuntu-Regular'),
       url(Ubuntu-Regular.woff2) format('woff2'),
       url(Ubuntu-Regular.woff) format('woff');
}

@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 {
  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; */
}

@media screen and (max-width: 1200px) {
    .loader-wrapper {
        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: #7b046b;
    animation-delay: -1.5s;
}

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

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

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

@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: 80px 20px 5px 20px;
    background: #f5f5f5;
}

@media screen and (max-width: 768px) {
    .breadcrumbs {
        padding-top: 5px;
    }
}

.breadcrumbs a {
    color: #747474;
    display: inline-block;
    vertical-align: middle;
}

.breadcrumbs svg {
    display: inline-block;
    vertical-align: top;
    width: 15px;
    height: 15px;
    margin-top: 3px;
    fill: #b2b2b2;
}

.breadcrumbs span {
    color: #747474;
    padding-top: 4px;
    vertical-align: bottom;
}

.breadcrumbs span.arrow {
    color: #b2b2b2;
}

﻿/* 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: #000
}

.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: rgba(0, 149, 218, 1);
    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: rgba(0, 149, 218, 1);
    border-left-color: rgba(0, 149, 218, 1);
    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;
}

.pace .pace-activity, .loader-lazy .loader-activity {
    display: block;
    position: fixed;
    z-index: 2000;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    border: solid 5px transparent;
    border-top-color: rgba(157, 22, 141, 1);
    border-left-color: rgba(157, 22, 141, 1);
    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;
}
.loader-lazy {
    position: relative;
    width: 100%;
    height: 50px;
    //display: none;
}
.loader-lazy .loader-activity {
    bottom: 0;
    right: calc(50% - 25px);
    position: absolute;
    background: #fff;
}

@-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(/themes/aqua/assets/img/colorbox/loading_background.png) no-repeat center center
}

#cboxLoadingGraphic {
    background: url(/themes/aqua/assets/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(/themes/aqua/assets/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(/themes/aqua/assets/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(/themes/aqua/assets/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(/themes/aqua/assets/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(/themes/aqua/assets/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: #9d168d;
    color: #fff;
    display: block;
    font: 20px/30px "Ubuntu";
    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: #000;
    /*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(/themes/aqua/assets/img/ring.gif) center bottom no-repeat;
    }
}

[data-pjax-container].pjax-loading:after {
    background: url(/themes/aqua/assets/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(/themes/aqua/assets/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;
    //overflow-x: hidden;
}

body {
    background: #fff url() center top no-repeat fixed;
    background-size: cover;
    color: #2e2e2e;
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    line-height: 1.42857143;
}

a {
    color: #0095da;
    outline: none !important;
    text-decoration: none !important;
}

a:focus,
a:hover {
    color: #2e2e2e;
    cursor: pointer;
}

h1,
h2 {
    font-size: 26px;
    color: #2e2e2e;
}

h2 {
    text-transform: none;
}

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

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

h1,
h2,
h3,
h4,
h5,
h5 {
    font-family: "Ubuntu"
}

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="/themes/aqua/assets/img/svg/nophoto.svg"] {
    width: 75%;
}

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

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


/* Header */

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

.navbarLogo a {
    display: block;
    height: 40px;
    margin: 12px 0;
    overflow: hidden;
}

.navbarLogo a .normal-logo {
    display: block;
    opacity: 1;
    transition: all 300ms ease-in-out;
    width: 180px;
    height: 40px;
}

.fixed .navbarLogo a .normal-logo {
    opacity: 0;
    height: 0;
}

.navbarLogo a svg {
    display: block;
    opacity: 1;
    height: 44px;
    transition: all 300ms ease-in-out;
    width: auto;
}

.fixed .navbarLogo a .fixed-logo {
    opacity: 1;
    height: 40px;
}


/* Full height carousel */

.full-height {
    padding: 0;
}

.full-height.big-slider {
    padding-left: 20px;
    padding-right: 20px;

}

@media screen and (max-width: 768px) {
    .full-height.big-slider {
        padding-left: 10px;
        padding-right: 10px;

    }
}

.full-height,
.full-height .carousel-home-el {
    min-height: 100%;
    height: 100vh;
}

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


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

.background-product h1,
.background-product h3 {
    //background: rgba(143, 13, 122, .9);
    color: #2e2e2e;
    display: inline-block;
    font-size: 26px;
    margin: 0;
    max-width: 400px;
    padding: 10px;
    text-align: center;
    text-transform: none;
    width: 100%;
}

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


/* Helper Classes */

.vimeo-video {
    background: #000;
    display: none;
}

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

.video-carousel-caption {
    position: absolute;
    width: 100%;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.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: 'Ubuntu', 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 #0095da;
    color: #0095da;
}

.frame-productOfDay {
    border: 1px solid #15a884;
    background: #15a884;
    color: #fff;
}

.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: #fff;
    width: 100%;
    min-height: 300px;
    border-radius: 0px;
    padding: 10px;
    margin: 0;
    position: relative;
}

.card-content {
    height: 150px;
}

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

.card-content h3 a {
    color: #2e2e2e;
}

.card-content h3 a:hover {
    color: #0095da;
}

.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: auto;
    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(/themes/aqua/assets/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;
}

.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;
    height: 80px;
    padding-top: 30px;
}

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

.productBoxFooter a h3 {
    color: #2e2e2e;
}

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

.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(/themes/aqua/assets/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: 95%;
    overflow: hidden;
}

.tile .image-manager {
    background-size: 100% 100%;
}

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

@media screen and (max-width: 1200px) {
    .header-margin>.product-details {
        padding-top: 90px;
    }
    .header-margin {
        padding-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    .header-margin>.product-details {
        padding-top: 0;
        margin-top: -20px;
    }
    .col-sm-6.description {
        width: 100% !important;
    }
}

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

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

.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: 50px;
    width: 50px;
}

.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: #2e2e2e !important;
}

.text-grey {
    color: #a2a2a2;
}

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

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

.bg-blue {
    background: #0075ef;
}

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

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

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

.sliderSvgIcons a h3 {
    color: #000;
    font-size: 21px;
    margin: 0 0 20px 0;
}

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

.sliderSvgIcons a:hover h5 {
    color: #9d168d;
}

.newCollectionsImage a {
    background: #fff url() center center no-repeat;
    background-size: contain;
    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;
}

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

.coloured-box.checked {
    background-image: url(/themes/aqua/assets/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: 0 0 40px 0
}

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

.bg-header {
    color: #fff;
    margin: 0;
    padding: 15px;
    text-transform: uppercase;
    background: #9d168d
}

.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;
    transition: .5s;
}

.blog-background .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
}

.blog-card .table-cell-imitation,
.blog-background .overlay {
    background-color: rgba(0, 0, 0, .1);
    transition: .5s;
}

.blog-card:hover .overlay,
.blog-card:hover .table-cell-imitation {
    background-color: rgba(0, 0, 0, .5);
}

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

.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;
    color: #2e2e2e;
    font-size: 26px;
    margin: 0px 0 20px 0;
    padding: 10px 15px 15px 15px;
    text-align: center;
    text-transform: none;
}

.blog-title.no-background {
    background: none;
    color: #2e2e2e;
}

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

.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;
    text-align: center;
}

.blog-gallery-image {
    margin-bottom: 20px;
}

.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;
    font-size: 16px;
    padding: 6px 15px;
    text-transform: uppercase;
    transition: all 200ms;
}

.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: #000 !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: #fff;
    background-color: #9f9f9f;
    border-color: #9f9f9f;
    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-green {
    color: #fff;
    background-color: #84c020;
    border-color: #84c020;
    border-radius: 0px;
}

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

.btn-red {
    color: #fff;
    background-color: #d30000;
    border-color: #d30000;
    border-radius: 0px;
}

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

.large-btn {
    padding: 15px 50px;
    height: 58px;
}

.btn-blue-dark {
    color: #fff !important;
    background-color: #2440bb;
    border-color: #2440bb;
    border-radius: 0px;
    max-width: 200px;
}

.btn-blue-dark.active,
.btn-blue-dark.focus,
.btn-blue-dark:active,
.btn-blue-dark:focus,
.btn-blue-dark:hover,
.open>.dropdown-toggle.btn-blue-dark {
    color: #fff;
    background-color: #2440bb;
    border-color: #2440bb;
}
.btn-blue {
    color: #fff !important;
    background-color: #0095da;
    border-color: #0095da;
    border-radius: 0px;
    text-transform: none !important;
}

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

.btn-bordered {
    color: #2e2e2e !important;
    background-color: #fff;
    border: 1px solid #d3d3d3;
    border-radius: 0px;
}


.payment .btn-purple:hover {
    border-color: #9d168d;
}

.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-yellow {
    background: #eba21c;
}

.text-green .tooltip.top .tooltip-arrow {
    border-top-color: #84c020;
}

.text-green .tooltip-inner {
    background: #84c020;
}

.text-yellow .tooltip.top .tooltip-arrow {
    border-top-color: #eba21c;
}

.text-yellow .tooltip-inner {
    background: #eba21c;
}

.text-black .tooltip.top .tooltip-arrow {
    border-top-color: #b2b8bf;
}

.text-black .tooltip-inner {
    background: #b2b8bf;
}


.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: rgba(0, 0, 0, .9)
}

.bg-white-opacity {
    background: rgba(255, 255, 255, 1) !important;
}

.bg-blue {
    background-color: #006cff;
}

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

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

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

@media screen and (max-width: 400px) {
    .bg-padding-box {
        padding: 10px;
    }
}

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

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

.giftbox2-el {
    background: url() center center no-repeat;
    background-size: cover;
    display: block;
    overflow: hidden;
}

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

@media screen and (min-width: 1000px) {
    .giftbox2-flex:hover span {
        padding: 30px 20px;
        width: 98%;
        margin: 0 auto;
    }
}

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

.inspirations5 {
    margin: 0 20px;
    position: relative;
    opacity: 0;
}

.inspirations5-el {
    display: block;
    overflow: hidden;
    background: url() center center no-repeat;
    background-size: cover;
}

.inspirations5-flex {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    text-align: center;
    transition: 500ms;
    width: 100%;
    opacity: 1;
    position: absolute;
}

.inspirations5-el .background {
    background: url() center center no-repeat;
    background-size: cover;
    transform: scale(1);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    transition: 500ms;
}

.inspirations5-el:hover .background {
    transform: scale(1.1);
    transition: 500ms;
}

.inspirations5-el:hover .inspirations5-flex {
    opacity: 1;
    transition: 500ms;
    background: rgba(0, 149, 218, 0.8);
}

.inspirations5-flex span {
    padding: 20px;
    transition: all 200ms ease-in-out;
}
.inspirations5-header {
    opacity: 0;
}

@media screen and (min-width: 1000px) {
    .inspirations5-flex:hover span {
        padding: 30px 20px;
        width: 98%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .inspirations5-el .background {
        display: none;
    }
    .inspirations5-el:hover .background {
        transform: none;
    }
    .inspirations5-el {
        height: 300px;
        position: relative;
    }
}

.inspirations5-el .inspirations5-flex h3 {
    color: #fff;
    font-size: 24px;
    margin: 0;
}

.inspirations5-el:first-child .inspirations5-flex h3 {
    color: #fff;
    font-size: 34px;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .inspirations5-el:first-child .inspirations5-flex h3 {
        font-size: 24px;
    }
}

.inspirations5-flex button {
    transition: all 250ms ease-in-out;
    font-size: 18px;
    color: #fff;
    padding: 10px;
    line-height: 1;
    border: 2px solid #fff;
    background: none;
    opacity: 0;
}

.inspirations5-flex:hover button {
    opacity: 1;
}
.inspirations5-flex button:hover {
    color: #2e2e2e;
    border: 2px solid #fff;
    background: #fff;

}

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

@media screen and (max-width: 768px) {
    .inspirations5 {
        margin: 0 10px;
    }
}

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

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

}

.giftbox2.inspirations {
    margin: 0 20px;
    position: relative;
}

.inspirations-el {
    background: url() center center no-repeat;
    background-size: cover;
    display: block;
    overflow: hidden;
    width: calc(50% - 20px);
    margin: 10px;
    float: left;
    position: relative;
    height: auto;
}

.inspirations-flex {
    background: rgba(0, 149, 218, 0.8);
    opacity: 0;
    height: 100%;
    justify-content: center;
    padding-top: 25%;
    text-align: center;
    transition: 500ms;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.inspirations-el:hover .inspirations-flex {
    opacity: 1;
    transition: 500ms;
}

.inspirations-flex h3 {
    color: #fff;
    font-size: 26px;
    margin: 0;
    width: 100%;
    text-align:center;
    display: block;
    float: none;
    height: auto;
}

.inspirations-flex button {
    transition: 500ms;
    background: none;
    color: #fff;
    border: 1px solid #fff;
    display: block;
    margin: 10px auto;
    float: none;
    text-transform: none;
}

.inspirations-flex button:hover {
    padding-left: 60px;
    padding-right: 60px;
    transition: 500ms;
    color: #fff;
}





.giftbox3 {
    margin: 0 20px;
}

.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;
    transition: all 200ms ease-in-out;
}

.giftbox3-flex:hover {
    display: block;
}

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

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

.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(/themes/aqua/assets/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(/themes/aqua/assets/img/icons/star-3.svg) 0 0 repeat-x;
    display: block;
}


/* Sections CSS */
/*
.owl-prev,
.owl-next {
    background: url(/themes/aqua/assets/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 {
    position: absolute;
    top: 60px;
    width: 100vw;
    left: 0;
    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);
    display: none;
    padding-top: 30px;
}

#header-static ul.level3 li.level3 {
    width: 20%;
    display: block;
    height: 230px;
    float: left;
    margin-bottom: 20px;
}

#header-static ul.level3 li.level3:hover a {
    background: #fff;
    color: #2e2e2e;
}

#header-static ul.level3 li.level3 {
    font-size: 20px;
}

#header-static .responsive-1300-x li.level2:hover ul.level3 {
    display: block !important;
    opacity: 1 !important;
    z-index: 1000;
}

#header-static ul.level4 {
    list-style: none;
}

#header-static ul.level3 li.level4 {
    text-align: left;
}
#header-static ul.level3 li.level4 a {
    color: #2e2e2e;
    font-size: 16px;
    padding-left: 55px;
}
#header-static ul.level3 li.level4 a:hover {
    color: #0095da;
}

#header-static ul.level2 li.level2:hover {
    background: url(/themes/aqua/assets/img/icons/arrow-menu.svg) center bottom no-repeat;
    background-size: 12px 12px;
}

#header-static .responsive-x-768 ul.level3 li.level4 a {
    padding-left: 0;
}

/*
#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 {
    position: static;
}

#header-static li.level2:hover {
    position: static;
}

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

#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, #header-static2 a.level3 {
    display: block;
    color: #2e2e2e;
    text-align: left;
    font-size: 18px;
    padding: 5px 20px;
    font-weight: bold;
}

@media screen and (max-width: 1200px) {
    #header-static a.level3, #header-static2 a.level3 {
        font-weight: normal;
    }
}

#header-static .responsive-768-1300 a.level3 {
    transition: none;
}

#header-static a.level3:hover {
    color: white;
    background: #2440bb;
}

#header-static li.level3 img {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

#header-static li.level3:hover img {

}

.menu-icon, .menu-last {
    display: none;
}

#header-static li.level2:last-child ul.level3 li.level3:first-child {
    padding-left: 30% !important;
    width: 50%;
    text-align: center;
}

#header-static li.level2:last-child ul.level3 li.level3:first-child span.menu-icon {
    display: inline-block;
    width: 100px;
    height: 100px;
    background: url(/themes/aqua/assets/img/icons/location-menu.svg) no-repeat;
    background-size: 100px 100px;
}

#header-static li.level2:last-child ul.level3 li.level3:first-child:hover span.menu-icon {
    display: inline-block;
    width: 100px;
    height: 100px;
    background: url(/themes/aqua/assets/img/icons/location-menu2.svg) no-repeat;
    background-size: 100px 100px;
}

#header-static li.level2:last-child ul.level3 li.level3:last-child span.menu-icon {
    display: inline-block;
    width: 100px;
    height: 100px;
    background: url(/themes/aqua/assets/img/icons/basket-menu.svg) no-repeat;
    background-size: 100px 100px;
}

#header-static li.level2:last-child ul.level3 li.level3:last-child:hover span.menu-icon {
    display: inline-block;
    width: 100px;
    height: 100px;
    background: url(/themes/aqua/assets/img/icons/basket-menu2.svg) no-repeat;
    background-size: 100px 100px;
}


#header-static li.level2:last-child ul.level3 li.level3 a.level3 {
    text-align: center;
}


#header-static li.level2:last-child ul.level3 li.level3:hover a.level3 {
    color: #0095da;
}

#header-static li.level2:last-child ul.level3 li.level3:first-child span.menu-last {
    color: #2e2e2e;
    display: block;
    font-size: 16px;
}

#header-static li.level2:last-child ul.level3 li.level3:first-child:hover span.menu-last {
    color: #2e2e2e;
    font-size: 16px;
}

#header-static li.level2:last-child ul.level3 li.level3:last-child span.menu-last {
    color: #2e2e2e;
    display: block;
    font-size: 16px;
}

#header-static li.level2:last-child ul.level3 li.level3:last-child:hover span.menu-last {
    color: #2e2e2e;

}

#header-static li.level2:last-child ul.level3 li.level3:last-child {
    padding-right: 30% !important;
    width: 50%;
    text-align: center;
}

#header-static .responsive-x-768 ul.level3 li.level3 {
    display: block;
    float: none;
    widtH: 100%;
    height: 30px;
    overflow: hidden;
    margin-bottom: 0;
}

#header-static .responsive-x-768 ul.level3 {
    padding-top: 0;
}

.menuImage {
    display: inline-block;
    vertical-align: top;
}

.menuItemName {
    display: inline-block;
    width: calc(100% - 55px);
    vertical-align: top;
}

@media screen and (max-width: 1200px) {
    #header-static ul.level3 {
        position: relative;
        top: auto !important;
        left: auto;
        width: 100%;
    }
    #header-static li:hover>ul.level3 {
        display: none !important;
    }
    #header-static li.active:hover ul.level3 {
        display: none !important;
    }
    #header-static li.level2.opened>ul.level3, #header-static li.level3.opened>ul.level4 {
        opacity: 1;
        display: block !important;
        position: relative !important;
        top: auto;
        height: auto !important;
        max-height: 1000px !important;
    }
    #header-static li.level2 {
        width: 100%;
        position: relative;
        display: block;
        height: auto;
        overflow: hidden;
    }
    #header-static .responsive-x-768 ul.level3 li.level3.opened {
            height: auto !important;
    }
    .responsive-x-768 li.opened ul.level3::before {
        top: -10px !important;
    }
    #header-static li.level2:last-child ul.level3 li.level3:first-child {
        padding-left: 0 !important;
        height: 130px;
        float: left;
    }
    #header-static li.level2:last-child ul.level3 li.level3:first-child span.menu-icon {
        background-image: url(/themes/aqua/assets/img/icons/location-menu2.svg);
        background-repeat: no-repeat;
    }
    #header-static li.level2:last-child ul.level3 li.level3:last-child {
        padding-right: 0 !important;
        height: 130px;
        float: left;
    }
    #header-static li.level2:last-child ul.level3 li.level3:last-child span.menu-icon {
        background-image: url(/themes/aqua/assets/img/icons/basket-menu2.svg);
        background-repeat: no-repeat;
    }
    #header-static li.level2:last-child ul.level3 li.level3 a.level3 {
        color: #0095da;
    }
    #header-static li.level2:last-child ul.level3 li.level3 span.menu-icon,
    #header-static li.level2:last-child ul.level3 li.level3:first-child:hover span.menu-icon,
    #header-static li.level2:last-child ul.level3 li.level3:last-child:hover span.menu-icon {
        background-size: 30px 30px !important;
        width: 30px !important;
        height: 30px !important;
    }
    #header-static li.level2:last-child a.level3 {
        padding: 0;
    }
    #header-static ul.level2 li.level2:hover {
        background: none;
    }
}


.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: #a2a2a2;
    border: 2px solid transparent;
    border-radius: 10px;
    display: inline-block;
    height: 10px;
    margin: 5px;
    width: 10px;
}

.owl-dot.active span {
    background: #0095da;
    border-color: transparent;
}

.carousel-home {
    position: relative;
}

.carousel-home .owl-nav {
    margin-bottom: 0;
}

.carousel-home-el {
    background: #fff url() center top no-repeat;
    //background-size: cover;
    display: none;
    height: auto !important;
    position: relative;
    font-family: 'Ubuntu';
    transform: scale(1);
    transition: 1000ms;
    opacity: 0;
}

.carousel-home-el-image {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    //transform: scale(1);
    //transition: 500ms;
}

.carousel-home-el:hover .carousel-home-el-image {
    //transform: scale(1.05);
    //transition: 500ms;
}

@media screen and (max-width: 620px) {
    .carousel-home-el-image {
        display: none;
    }
    .carousel-home-el, .big-slider {
        height: auto !important;
    }
    .carousel-home .owl-dots {
        bottom: 0 !important;
        margin-bottom: 0 !important;
    }
    .carousel-home .owl-nav {
        margin-bottom: 0;
    }
    .carousel-home-el .btn {
        font-size: 16px;
        padding: 10px 15px;
        height: auto;
    }
}

.carousel-home-el .btn {
    font-family: "Ubuntu";
    font-size: 18px;
}

.carousel-home-el:first-child {
    display: block;
}

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

.carousel-home-el span.text {
    color: #fff;
    font-size: 50px;
    display: inline-block;
    padding: 5px 15px;
    text-shadow: 2px 2px 2px rgba(0,0,0,0.42);
    text-transform: none;
}

.carousel-home-el span.text.big-slider-text {
    font-size: 30px;
}

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

@media screen and (max-width: 1200px) {
    .carousel-home .owl-controls {
        top: -40vh;
    }
}
@media screen and (max-width: 1000px) {
    .carousel-home .owl-controls {
        top: -30vh;
    }
}

.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 {
    position: static !important;
    height: 75px;
    text-align: left;
    width: 530px;
}

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

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

.navbar-nav {
    height: inherit;
}

.navbar-nav li.level2 {
    height: inherit;
}

.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 0;
    width: 100%;
}

.navbarIcon {
    display: block;
    float: left;
    min-width: 40px;
    cursor: pointer;
    padding-top: 10px;
}

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

.contact-phone {
    float: left;
    margin-left: 20px;
    margin-right: 10px;
}

/* <Stateful colors>*/

.social-cart {
    height: auto;
    overflow: hidden;
    min-height: 35px;
}
@media screen and (max-width: 1260px) {
    .social-cart .text-right, .social-cart .col-sm-8 {
        text-align: left;
        margin-top: 20px;
        width: 100%;
    }
}
@media screen and (max-width: 450px) {
    .social-cart .text-right {
        text-align: left;
        margin-top: 20px;
    }
}

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

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

.stateful-color-purple svg, .stateful-color-purple span {
    fill: #9d168d !important;
    color: #9d168d !important;
}

/* </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: 64px;
    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;
}

#activeboxSearch .navbarIconBox {
    z-index: 30;
}

#activeboxSearch {
    width: calc(100% - 120px);
    z-index: 3000;
    position: relative;
}

.activeboxSearchBoxResults {
    max-height: 500px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 20px 20px 20px;
    z-index: 2000;
    position: absolute;
    background: #fff;
    top: 38px;
    width: calc(100% - 2px);
    border: 1px solid #b0b6bd;
    border-top: 0;
}

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

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

.activeboxSearchBoxResults .entry h3 {
    margin: 0 0 5px 0;
    padding: 20px 0 0 0;
    line-height: 1;
    text-decoration: none;
}

.activeboxSearchBoxResults .entry h3 a {
    color: #2e2e2e;
    font-size: 16px;
}

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

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

.activeboxSearchBoxInput input[type=text] {
    float: left;
}

button.search {
    width: 38px;
    height: 38px;
    background: #0095da url(/themes/aqua/assets/img/icons/magnifier.svg) 8px 8px no-repeat;
    background-size: 22px 22px;
    border: 0;
    float: left;
}

.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: #9d168d;
    border: 0!important;
    color: #fff;
    font: 16px/20px;
    padding: 5px 10px;
    text-transform: uppercase;
}

#activeboxCart .activeboxCartBoxTable table th, #activeboxClipboard .activeboxCartBoxTable table th {
    background: #fff;
    color: #000;
}

.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: "Ubuntu" !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: "Ubuntu";
}

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

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

.activeboxLoginBox {
    width: 500px;
}

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

ul.auth-clients {
    padding-top: 0;
}

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

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

.navbarIconBox .activeboxLoginBoxForm .auth-clients .auth-client {
    display: initial;
    float: none;
    margin: 0 10px;
}

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

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

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

.auth-clients .auth-client .auth-link .auth-icon.google {
    background-image: url(/themes/aqua/assets/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;
}

.order-login .activeboxLoginBoxForm {
    padding: 0 !important;
}

@media screen and (min-width: 629px) {
    .order-login #loginForm .col-sm-9 {
        width: 50%;
    }
}


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

.navbar .nav>li>a {
    color: #2e2e2e;
    border-bottom: 5px solid transparent;
    font-family: 'Ubuntu', sans-serif
}

.nav>li>a:focus,
.nav>li>a:hover {
    background: transparent;
    color: #0095da;
}

.navbar .responsive-1300-x .nav>li>a:focus,
.navbar .responsive-1300-x .nav>li>a.active,
.navbar .responsive-1300-x .nav>li>a.active {
    background: transparent;
    color: white;
    padding: 18.5px 0;
    //border-bottom: 3px solid #0095da;
}

.navbar .nav>li>a:hover {
    //border-bottom: 3px solid #0095da !important;
}

.bg-white-opacity .navbar .nav>li>a {
    color: #2e2e2e !important;
}

.navbar .responsive-1300-x .nav>li>a:hover {
    background: transparent;
    color: #0095da !important;
}

.navbar .responsive-1300-x .nav>li.level2:last-child>a {
    color: #0095da !important;
}

.fixed .responsive-1300-x > .navbar-nav > li > a:hover, .fixed .responsive-1300-x > .navbar-nav > li > a:focus {
    color: #2e2e2e !important;
}

.navbar .responsive-768-1300 .nav>li>a {
    //transition: .5s;
    border: 0;
}

.navbar .responsive-768-1300 .nav>li>a:focus,
.navbar .responsive-768-1300 .nav>li>a:hover,
.navbar .responsive-768-1300 .nav>li>a.active,
.navbar .responsive-768-1300 .nav>li>a.active {
    background: #c500b0;
    border: 0;
    color: white
}

.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: 10px;
    bottom: 50px;
    padding: 17px;
    background: url(/themes/aqua/assets/img/icons/arrow-right3.svg) left center no-repeat;
    opacity: 0.9;
    transform: rotate(270deg);
    pointer-events: auto;
    transition: .5s;
    width: 60px;
    height: 60px;
    background-size: 60px 60px;
}

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

.arrow-top:hover {
    opacity: 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: 'Ubuntu', 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: 'Ubuntu', 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(/themes/aqua/assets/img/svg/menu3.svg);
    background-size: 70%;
}

.filters-el-icon.icon-list-rows {
    background-image: url(/themes/aqua/assets/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(/themes/aqua/assets/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(/themes/aqua/assets/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(/themes/aqua/assets/img/svg/sort.svg);
    background-size: 75%;
}

.filters-el-icon.icon-features {
    background-image: url(/themes/aqua/assets/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: "Ubuntu";
    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(/themes/aqua/assets/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;
    text-align: left;
}

.filters-el-dropdown-list-el a {
    color: #2e2e2e;
    text-align: left;
}

.filters-el-category-parent {
    height: 23px;
    overflow: hidden;
    transition: 500ms;
}

@media screen and (min-width: 1200px) {
    .filters-el-category-parent:hover {
        height: auto;
        overflow: hidden;
        transition: 500ms;
    }
}


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

.filters-el-dropdown-list-el>a.category {
    color: #2e2e2e;
    font-size: 16px;
    display: block;
    text-align: left;
    width: calc(100% - 23px);
    float: left;
}

a.arrow-menu {
    //display: none;
    float: left;
    width: 20px;
    height: 20px;
    background: url(/themes/aqua/assets/img/icons/arrow.svg) center center no-repeat;
    background-size: 20px 20px;
    transform: rotate(90deg) scale(0.8);
    opacity: 0.5;
}

@media screen and (max-width: 1200px) {
    a.arrow-menu {
        display: block;
    }
    .filters-el-btn, .filter-show-btn, .filters-el, .filters-button, .filters-el-dropdown-list-el  a {
        font-size: 16px !important;
        color: #2e2e2e;
    }
}

.filters-el-dropdown-list-el>a:hover {
    color: #0095da;
}

.filters-el-dropdown-list-el>span {
    background: url(/themes/aqua/assets/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: none;
}

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

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

#filters-el-menu .filters-el-dropdown-list-el.active .filters-el-dropdown-list-el.active a, #filters-el-menu .filters-el-dropdown-list-el.active .filters-el-dropdown-list-el a:hover {
    color: #0095da;
}

#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-trans {
    color: #2e2e2e;
    padding-right: 20px;
    background: #fff;
    border: 1px solid #fff;
}

.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(/themes/aqua/assets/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;
}

.pageContent img {
    max-width: 100%;
}

.pageBigBox {
    position: relative;
    padding: 10px;
    background: white;
    border: 1px solid #eaeaea;
}

.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: #2e2e2e;
    text-transform: none;
}

.pageBigBox:hover .pageBigBoxFooter h3 a {
    color: #0095da;
}

.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 {
    background: #212121;
    color: #fff;
}

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

.pageTallBoxContent {
    padding: 10px 20px;
    text-align: center;
}

.pageTallBoxContent h3 {
    font: 18px/24px;
    height: 72px;
    margin: 0;
    overflow: hidden;
}

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

.productBoxHeader {
    left: -1px;
    padding: 0;
    position: absolute;
    //right: 0;
    width: 100px;
    top: -1px;
    transition: all 200ms ease-in-out;
    z-index: 3;
}

.productBoxHeader .frame-card {
    float: left;
    top: auto;
}

.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(/themes/aqua/assets/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(/themes/aqua/assets/img/icons/favorite-purple.svg) center center no-repeat;
    cursor: pointer;
    opacity: 1;
}

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

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

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

.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(/themes/aqua/assets/img/icons/star-3.svg);
}

.rating-star,
.rating:hover .rating-star {
    background: url(/themes/aqua/assets/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: "Ubuntu";
}

.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 'Ubuntu';
    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: "Ubuntu";
}

.cartHeaders h5 {
    margin: 0;
    text-transform: uppercase;
    font-family: "Ubuntu";
}

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

.cartDiscountsList h5, .cartDiscountsListAll h5 {
    margin: 0 0 20px 0;
    text-transform: uppercase;
    font-family: "Ubuntu";
}

.cart-radio {
    border-top: 1px solid #e3e3e3;
}

.cart-radio .radio {
    margin: 0;
}

.cart-radio label {
    border-bottom: 1px solid #e3e3e3;
    display: block;
    padding: 20px 0 20px 0;
    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: none;
}

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

.order-radio label:hover {
    background: #9d168d;
    color: #fff;
}

.order-radio input[type=radio] {
    margin-left: 0;
}

.order-radio input[type=radio]:checked+span {}

.order-radio label span {
    display: block;
    margin-left: 35px;
}

.order-radio label span b {
    float: right;
}

.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 0 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 'Ubuntu';
    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 'Ubuntu';
    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 svg {
    height: 64px;
    margin-bottom: 10px;
    width: 64px;
}

.footer-icons svg>path {
    transition: all 200ms;
}

.footer-icons td:hover>svg>path {
    fill: #d30000;
}

.bg-footer img {
    display: none;
}

.social-icons svg {
    width: 64px;
    height: 64px;
    fill: #989898;
    transform: rotate(360deg);
    transition: 500ms;
}

.social-icons svg:hover {
    fill: #0095da;
    transform: rotate(0deg);
    transition: 500ms;
}

@media screen and (max-width: 550px) {
    .social-icons svg {
        width: 32px;
        height: 32px;
    }
}

.categories-footer {
    background: none;
    padding: 30px 0;
}

.categories-footer * {
    color: #2e2e2e;
}

.categories-footer h2 {
    margin-bottom: 20px;
    text-align: center;
}

.categories-footer .btn {
    color: #000;
}

.bg-newsletter {
    background: #787878;
    transition: all 300ms;
}

.bg-newsletter:hover {}

.contact-row {
    //background: #78006c;
    background: #fff;
}

.contact-row a {
    color: #9D168D;
}

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

.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 'Ubuntu';
    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: #f2f4f7;
}

.social-icons {
    text-align: center;
}

.bg-social a {
    color: #969696;
    display: inline-block;
    height: 110px;
    overflow: hidden;
    padding: 30px 10px;
    text-align: center;
    width: 12.5%;
}

.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: #2e3192;
    bottom: 0;
    left: 0;
    padding: 10px 45px 10px 10px;
    position: fixed;
    right: 0;
    text-align: left;
    z-index: 100;
}

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

.bg-footer h3 {
    color: #fff;
    font-size: 21px;
    margin: 0 0 10px 0;
    font-family: "Ubuntu";
}

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

.bg-footer ul li a {
    color: #fff;
    padding: 5px 0;
    margin: 0;
    text-align: left;
    font-size: 16px;
    font-family: "Ubuntu";
}

.bg-footer ul li a:hover {
    text-decoration: underline !important;
    color: #fff;
}

.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: "Ubuntu";
    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;
}
*/

.gridItem {
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .gridItem {
        margin-bottom: 10px;
    }
}

#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: 5px;
}

#header-static {
    position: relative;
    z-index: 2000;
}

#header-static>.container, #header-static2>.container {
    height: 170px;
}

#header-dynamic, #header-dynamic2 {
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1000;
    transition: .5s;
    background: #fff;
}

#header-dynamic2 {
    background: #000;
}

#header-dynamic.fixed, #header-dynamic2.fixed {
    position: fixed;
    background: rgba(255, 255, 255, 1);
    padding: 0;
}

#header-dynamic.bg-transparent.fixed, #header-dynamic.bg-transparent {
    position: fixed;
    background: rgba(255, 255, 255, 0.9) !important;
    padding: 0;
}

.burger-container {
    width: 27px;
    height: 30px;
    //position: absolute;
    display: none;
    //padding: 30px 30px;
    //right: -11px;
    transition: .5s;
    transform: scale(.75);
    box-sizing: content-box;
    opacity: 1;
    float: right;
    //margin-left:5px;
}

.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;
    position: relative;
    width: 30px;
    margin: 0 auto;
}

.burger-container.open .burger {
    top: -5px;
}

.burger span {
    display: block;
    position: absolute;
    height: 5px;
    width: 50%;
    background: #2e2e2e;
    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;
}

.contact-row>[class*="col-"] {
    height: 820px;
}

.bg-contact {
    background: #00388b;
}

.icons-navbar {
    text-align: right;
    //position: fixed;
    width: 500px;
}

.menu-search {
    width: 1030px;
    margin: 0 auto 0 auto;
}

.responsive-768-1300 {
    display: none;
}

.contact-icon {
    height: 70px;
    margin-bottom: 30px;
    position: relative;
    top: -15px;
}

.contact-icon>svg {
    width: 70px;
    height:70px;
}

.contact-row .bg-newsletter {
    background: #a40192;
}

.bg-message {
    //background: #910081;
    background: #fff;
}

.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: white;
    transition: .5s
}

.form-contact .form-control:-moz-placeholder {
    color: white;
    transition: .5s
}

.form-contact .form-control::-moz-placeholder {
    color: white;
    transition: .5s
}

.form-contact .form-control:-ms-input-placeholder {
    color: white;
    transition: .5s
}

.form-contact p {
    color: #fff;
    font-size: 16px;
}

.form-contact input.form-control {
    background: #fff;
    border-color: #b0b6bd;
    color: #000;
    text-align: left;
    margin: 10px 0;
}

.form-contact textarea.form-control {
    background: #fff;
    border-color: #b0b6bd;
    color: #000;
    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 {
    color: #fff;
    transition: .5s;
}

.form-contact label {
    color: #000;
    font: 16px "Ubuntu";
    position: relative;
    margin: 10px auto;
    padding: 6px 0;
    line-height: 24px;
    text-transform: none;
}
/*
.form-contact label input[type=checkbox] {
    margin: 0;
    left: 0;
    position: absolute;
    top: 12px;
}
*/
.form-contact .btn {
    color: white;
}

.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: 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: #0095da;
    border-color: #0095da;
}

.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 10px 20px 10px;
}

.opinions .row {
    margin: 0;
}

.opinions .opinion {
    margin-top: 10px;
}

.opinions .categoryBox {
    padding: 15px 15px 10px 15px;
    margin-bottom: 2px;
    background: #fff url(/themes/aqua/assets/img/icons/iconmonstr-quote-12.svg) no-repeat;
    background-size: 100px 100px;
    background-position: 95% 95%;
}

.owl-prev, .owl-next {
    width: 70px;
    height: auto;
}

.owl-prev {
    float: left;
    margin-left: 15px;
}

.owl-next {
    float: right;
    margin-right: 15px;
}

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

.owl-controls {
    position: absolute;
    top: calc(50% - 25px);
    width: 100%;
    height: 0;
}

.arrow-left {
    width: 50px;
    height: 50px;
    background: url(/themes/aqua/assets/img/icons/arrow-right.svg) left center no-repeat;
    background-size: 50px 50px;
    display: block;
    transform: rotate(180deg);
    float: right;
    opacity: 0.8;
}

.arrow-right {
    width: 50px;
    height: 50px;
    background: url(/themes/aqua/assets/img/icons/arrow-right.svg) right center no-repeat;
    background-size: 50px 50px;
    display: block;
    float: left;
    opacity: 0.8;
}

.arrow-left-grey {
    width: 50px;
    height: 50px;
    background: url(/themes/aqua/assets/img/icons/arrow-right3.svg) left center no-repeat;
    background-size: 50px 50px;
    display: block;
    transform: rotate(180deg);
    float: right;
    opacity: 0.8;
}

.arrow-right-grey {
    width: 50px;
    height: 50px;
    background: url(/themes/aqua/assets/img/icons/arrow-right3.svg) right center no-repeat;
    background-size: 50px 50px;
    display: block;
    float: left;
    opacity: 0.8;
}

.arrow-left:hover {
    transform: scale(1.2) rotate(180deg);
    opacity: 1;
}

 .arrow-right:hover {
    transform: scale(1.2);
    opacity: 1;
}

.arrow-left-grey:hover {
    transform: scale(1.2) rotate(180deg);
    opacity: 1;
}

 .arrow-right-grey:hover {
    transform: scale(1.2);
    opacity: 1;
}

.opinions h3 {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    height: 40px;
    overflow: hidden;
    font-family: 'Ubuntu', sans-serif;
}

.opinions span {
    color: #434343;
    font-style: italic;
    line-height: 1.2;
    font-family: 'Ubuntu', sans-serif;
    font-size: 15px;
    text-align: justify;
    display: inline-block;
    height: 100px;
    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: 1550px) {
    .opinions span {
        height: 120px;
    }
}

@media screen and (max-width: 1300px) {
    .opinions span {
        height: 140px;
    }
}

@media screen and (max-width: 1150px) {
    .opinions span {
        height: 160px;
    }
}

@media screen and (max-width: 1024px) {
    .opinions span {
        height: 180px;
    }
}

@media screen and (max-width: 980px) {
    .opinions span {
        height: 70px;
    }
}

@media screen and (max-width: 800px) {
    .opinions span {
        height: 80px;
    }
}

@media screen and (max-width: 700px) {
    .opinions span {
        height: 95px;
    }
}

@media screen and (max-width: 600px) {
    .opinions span {
        height: 105px;
    }
}

@media screen and (max-width: 500px) {
    .opinions span {
        height: 140px;
    }
}

@media screen and (max-width: 360px) {
    .opinions span {
        height: 160px;
    }
}

@media screen and (max-width: 330px) {
    .opinions span {
        height: 180px;
    }
}

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

.about h1 {
    text-transform: uppercase;
    padding-top: 40px;
}

.about .pc-offer {
    width: 66%;
    padding: 0;
    margin: 0 auto;
}

@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;
    padding-top: 20px;
}

.bg-message.contact-trigger-form {
    background: #fff;
}

.bg-message.contact-trigger-form label {
    color: #000;
    text-transform: none;
    line-height: 24px;
    font-weight: normal;
}

.bg-message.contact-trigger-form .row .col-md-offset-5 {
    margin-left: 25% !important;
}

@media screen and (max-width: 990px) {
    .bg-message.contact-trigger-form .row .col-md-offset-5 {
        margin-left: 0% !important;
    }
}

.bg-message.contact-trigger-form * {
    color: #000 !important;
}

.productDetailsDelivery select.form-control, select.variants-select {
    background: url(/themes/aqua/assets/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;
}

.contact-trigger-form .btn-blue {
    color: #fff !important;
}

.navbarIcon > .lang-change {
    color: #2e2e2e !important;
    font-size: 18px;
    text-transform: uppercase;
    padding-right: 15px;
    padding-left: 10px;
    background: #fff url(/themes/aqua/assets/img/icons/arrow-lang.svg) 42px 12px no-repeat;
    background-size: 10px 10px;
    height: 40px;
    width: 60px;
    overflow: hidden;
    display: block;
    text-align: center;
    position: absolute;
    border: 1px solid #fff;
    padding-top: 6px;
    z-index: 3000;
}

.lang-change a {
    color: #2e2e2e;
    font-size: 18px;
    text-align: center;
}

.lang-change a:hover {
    color: #0095da;
}

#mixedBox {
    text-align: center;
}

@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) {
    .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;
    }
    .tile {
        height: auto;
    }
    .col-xs-12 .tile .productBoxFooter, .owl-carousel .col-xs-12 .tile .productBoxFooter {
        height: 85px;
    }
    .col-xs-6 .tile .productBoxFooter {
        height: 225px;
    }
}

@media screen and (max-width: 1200px) {
    .background-product {
        padding-top: 20px;
    }
    .header-margin {
        padding-top: 20px;
    }
}

@media screen and (max-width: 1198px) {
    .col-xs-6 .tile .productBoxFooter, .owl-carousel .col-xs-12 .tile .productBoxFooter {
        height: 85px;
    }
}

@media screen and (max-width: 990px) {
    .col-xs-6 .tile .productBoxFooter, .owl-carousel .col-xs-12 .tile .productBoxFooter {
        height: 85px;
    }
    .owl-carousel .col-xs-12 .productBoxFooter .frame-card, .col-xs-6 .productBoxFooter .frame-card {
        display: none;
    }
    .owl-carousel .col-xs-12 .productBoxFooter .frame-card:first-child, .col-xs-6 .productBoxFooter .frame-card:first-child {
        display: inline-block;
    }
    #contactForm label {
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

@media screen and (max-width: 800px) {
    .col-xs-6 .tile .productBoxFooter, .owl-carousel .col-xs-12 .tile .productBoxFooter {
        height: 85px;
    }
}

@media screen and (max-width: 752px) {
    .col-xs-12 .tile .productBoxFooter {
        height: 85px;
    }
}

@media screen and (max-width: 600px) {
    .col-xs-12 .tile .productBoxFooter {
        height: 85px;
    }
}

@media screen and (max-width: 515px) {
    .col-xs-6 .tile .productBoxFooter, .owl-carousel .col-xs-12 .tile .productBoxFooter {
        height: 85px;
    }
}

@media screen and (max-width: 1200px) {
    .icons-navbar {
        width: 75%;
    }
    .responsive-1300-x {
        display: none
    }
    .burger-container {
        display: block;
    }
    .responsive-x-768 ul.level3 {
        background: #6d005d;
        list-style: none;
        max-height: 0;
        opacity: 0;
        padding: 0;
        position: relative !important;
        //pointer-events: none;
        transition: .5s;
    }
    .responsive-x-768 ul.level3.active {
        pointer-events: auto;
        opacity: 1 !important;
        max-height: 400px !important;
        padding: 10px 0;
    }
    .responsive-x-768 a.level3 {
        padding: 5px 10px;
    }
    .responsive-x-768 ul.level3:before {
        border-bottom: 10px solid #d3d3d3;
        border-left: 5px solid rgba(0, 0, 0, 0);
        border-right: 5px solid rgba(0, 0, 0, 0);
        top: 0 !important;
        content: '';
        display: block;
        left: 30px;
        position: absolute;
        z-index: 9;
        transition: all 200ms ease-in-out;
    }
    .responsive-x-768 li.active ul.level3:before {
        top: -10px !important;
    }
    .responsive-x-frame {
        /*overflow-x: hidden;*/
        position: relative;
        width: 100%;
    }
    .responsive-x-768 {
        -webkit-transform: translateZ(0);
        background: #fff;
        display: block;
        max-width: 500px;
        min-height: 100%;
        padding: 0;
        position: absolute;
        right: -500px;
        top: 50px;
        transition: .5s;
        width: 400px;
        z-index: 10000;
    }
    .responsive-x-768.active {
        right: -10px;
    }
    .responsive-x-768 .navbar-nav {
        margin: 0;
        padding: 0;
    }
    .responsive-x-768 .navbar-nav li {
        margin: 0;
        padding: 0 10px;
        position: relative;
    }
    .responsive-x-768 .navbar-nav a {
        color: #000;
        display: block;
        font-size: 18px;
        line-height: 24px;
        text-align: left;
    }
    .responsive-x-768 .navbar-nav a:hover {
        color: #000;
    }
    .responsive-x-768 .navbar-nav svg {
        fill: #000;
        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;
    }
    .responsive-x-768 ul.level2 {
        padding: 10px 0;
        text-align: left;
        width: 100%;
    }
    .responsive-x-768 a.level2 {
        padding: 10px 10px 10px 10px;
        width: calc(100% - 50px);
        float: left;
    }
    .responsive-x-768 {
        position: absolute;
        top: 50px;
        right: 0;
        display: none;
        transition: 0.5s;
    }
    .responsive-x-768.noGoogle {
        top: 50px;
    }
    .responsive-x-768.fixed {
        top: 106px;
    }
    .responsive-x-768.fixed.noGoogle {
        top: 50px;
    }
    .responsive-x-768.active {
        display: block;
    }
    .responsive-x-768 a.level2 {
        padding-top: 5px;
        padding-bottom: 5px;
    }
    #header-static li.level2 {
        widtH: 100%;
    }
}

@media (max-width: 628px) {
    .contact-row .contactBox .col-sm-9 {
        text-align: center!important;
        border-radius: 5px;
        //background: #700060;
        padding: 10px 0;
    }
}

@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: 65%;
        float: right;
    }
    .background-product,
    .header-margin {
        padding-top: 15px;
    }
    .blog h1 {
        margin-top: 0 !important;
        font-size: 21px;
    }
    .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 span.text.big-slider-text {
        font-size: 16px;
    }
    .tile .colorboxProductDetails {
        display: none;
    }
    .coloured-box {
        height: 40px;
        width: 40px;
        margin: 5px;
    }
    .tile {
        z-index: 10;
        border: 1px solid #d0d0d0;
        height: auto;
    }
    #header-dynamic,
    #header-dynamic.fixed {
        //background: #000;
        position: static;
    }
    .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;
    }

    .arrow-container {
        width: 50px;
        float: left;
        display: block;
    }

    .navbar .nav > li > a:hover {
        border-bottom: 5px solid transparent !important;
    }
    .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:2001;
        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;
    }
    .google-play .close {
        background: url('/themes/relax/assets/img/svg/cancel-white.svg') no-repeat;
        width: 24px;
        height: 24px;
        float: right;
        opacity: 1;
        margin-top: 7px;
        margin-right: 7px;
    }
    .navbar .nav > li > a {
        color: #2e2e2e;
    }
}

@media (max-width: 628px) {
    .activeboxLoginBox {
        width: 100%;
    }
    .navbarIconBox {
        top: 59px;
        right: -64px;
    }
    .icons-navbar {
        width: 100%;
        text-align: center;
    }
    .currencyWidget>.padding-mobile {
        padding-bottom: 10px;
    }

    .contact-phone, #activeboxMixed, .burger-container {
        top: -50px;
        position: absolute;
    }
    .contact-phone {
        right: 200px;
        margin: 0;
    }
    #activeboxMixed {
        right: 150px;
        margin: 0;
        width: auto;
    }
    .burger-container {
        right: 50px;
        margin: 0;
        width: auto;
        top: -45px;
    }
    .navbarIcons {
        padding-bottom: 20px;
    }
    #activeboxSearch {
        width: 100% !important;
    }
}

@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: 750px) {
    .productBoxFooter>div.tile-add-to-cart {
        height: 100px;
    }
}

@media screen and (max-width: 630px) {
    .productBoxFooter>div.tile-add-to-cart {
        height: 50px;
    }
}

@media screen and (max-width: 400px) {
    .productBoxFooter > div.amount-in-tile {
        height: 20px;
        font-size: 14px;
    }
    .row.productsList {
        margin-left: -7px !important;
        margin-right: -7px !important;
    }
    .carousel-opinions .row.productsList, .products-viewed .row.productsList, .products-group .row.productsList {
        margin: 0 !important;
    }
    .row.productsList [class*="col-"] {
        padding-left: 3px !important;
        padding-right: 3px !important;
    }
    .responsive-x-768 {
        width: calc(100% - -20px);
        left: -10px;
    }
}

.app_footer {
    display: none;
}

#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: 0;
    display: inline-block;
    text-transform: none;
    line-height: 1.1;
    padding-right: 5px;
}
.contact-rodo label {
    padding-left: 0;
}

.contact-rodo {
    height: auto;
    overflow: hidden;
}

.contact-trigger-form .contact-rodo label span {
    padding-left: 0;
    text-transform: none !important;
}

.contact-trigger-form div.required label::after, .contact-rodo.required label::after {
    top: -2px;
    position: absolute;
    left: 18px;
}

.contact-rodo.required label::after {
    top: 9px;
    left: 18px;
}

@media screen and (max-width: 650px) {
	#rodoPopup {
    	width: 100%;
    	height: 450px;
        padding: 15px;
	}
	.rodoContent {
	    height: 300px;
	}
}

.shopping-path {
    height: 50px;
    overflow: hidden;
    margin-top: -60px;
    clear: both;
    display: block;
    padding: 0 !important;
    max-width: 900px;
}

.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 #dedede !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;
}

.app_footer .footerMenu {
    height: 40px;
    overflow: hidden;
    margin-bottom: 0;
    text-align: left;
    transition: 0.5s;
    color: #fff;
}
.footerMenu {
    color: #fff;
}
.app_footer .footerMenu ul {
    list-style: none;
    padding-left: 0;
    padding-bottom: 10px;
}

.app_footer .app_hide.footerMenu ul {
    padding-left: 8px;
}

.app_footer .footerMenu ul li {
    text-align: left;
}

.app_footer .footerMenu ul li a {
    color: #2e2e2e;
}

.app_footer .footerMenu ul li img {
    display: none;
}

.app_footer .footerMenu ul.level3 {
    padding-left: 8px;
}

.app_footer .footerMenu a {
    color: #2e2e2e;
}

.app_footer .footerMenu h3 {
    margin-top: 10px;
    cursor: pointer;
    color: #2e2e2e;
    font-size: 21px;
    font-family: "Ubuntu";
}

.app_footer .footerMenu span.plus-icon {
    background: url(/themes/aqua/assets/img/icons/plus-grey.svg) no-repeat;
    background-size: 20px 20px;
    float: right;
    display: inline-block;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.app_footer .footerMenu span.minus-icon {
    background: url(/themes/aqua/assets/img/icons/minus-grey.svg) no-repeat;
    background-size: 20px 20px;
    float: right;
    display: inline-block;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.footerMenu a {
    color: #fff;
}

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

.footerMenu:last-child div {
    height: 200px;
    overflow: hidden;
    margin-bottom: 10px;
}

#more-trigger {
    display: block;
    cursor: pointer;
}

#less-trigger {
    display: none;
    cursor: pointer;
}

.search-clear {
    background: url(/themes/aqua/assets/img/icons/colorbox-close.svg) no-repeat;
    background-size: 15px 15px;
    width: 20px;
    height: 20px;
    float: right;
    top: 13px;
    padding: 0;
    border: 0;
    display: none;
    right: 45px;
    position: absolute;
}

.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(/themes/aqua/assets/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(/themes/aqua/assets/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(/themes/aqua/assets/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(/themes/aqua/assets/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: 'Ubuntu';
    height: auto;
    overflow: hidden;
}

.promotion-item h6 {
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: right top;
    background-image: url(/themes/aqua/assets/img/icons/arrow-down.svg);
    margin-top: 0;
    margin-bottom: 0;
    font-size: 21px;
}

.promotion-item h6.arrow-up {
    background-image: url(/themes/aqua/assets/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(/themes/aqua/assets/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(/themes/aqua/assets/img/icons/tag.svg) no-repeat;
    background-size: 20px 20px;
    padding-left: 30px;
}

.counter {
    background: #15a884;
    height: 379px;
    cursor: pointer;
}

@media screen and (max-width: 628px) {
    .counter {
        height: auto;
        padding-bottom: 30px;
    }
}

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

.countdown {
    color: #fff;
    font-size: 24px;
    text-align: center;
}

.countdown.big {
    font-size: 36px;
}

.counter-header .btn-white-border {
    border: 2px solid #fff;
    background: none;
    color: #fff;
    margin-bottom: 20px;
    width: 90%;
    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: 'Ubuntu';
}

.product-day {
    border: 1px solid #93cbbd;
}

.product-day .productBoxFooter a.name {
    color: #15a884;
}

.product-day:hover {
    border: 1px solid #088969;
}

.product-day .productBoxHeader {
    padding: 0;
}

.product-day p.header {
    width: 100%;
    height: 40px;
    background: #15a884;
    color: #fff;
    font-family: 'Ubuntu';
    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: 20px;
    font-family: 'Ubuntu' !important;
}

@media screen and (min-width: 980px) {
    .discount-circle {
        right: -80px;
        transition: 0.5s;
    }
    .product-day:hover .discount-circle {
        right: 20px;
    }
}

@media screen and (max-width: 500px) {
    .cox.xs.6 .product-day .discount-circle {
        display: none;
    }
}

.product-day:hover .discount-circle {
    background: #088969;
}

.products-of-day .countdown {
    color: #15a884;
    margin-bottom: 20px;
}

.end-promotion {
    margin-top: 20px;
    font-size: 21px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.frame-product-of-day {
    border: 1px solid #15a884;
    background: #15a884;
    color: #fff;
    display: inline-block;
}

@media screen and (max-width: 630px) {
    .frame-product-of-day.visible-xs {
        display: inline-block !important;
    }
}

.price-content .discount-circle {
    position: relative;
    top: auto;
    right: auto;
    margin-left: 20px;
}

.product-day-discount {
    margin-top: 30px;
    color: #000;
    font-family: 'Ubuntu' !important;
}

.product-day-discount * {
    font-family: 'Ubuntu' !important;
}

.product-day-discount .countdown {
    color: #15a884;
    display: inline-block;
}

.giftbox2.productsOfDay {
    height: 300px;
    padding: 0;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .giftbox2.productsOfDay {
        height: 610px;
    }
}

.giftbox2.productsOfDay .giftbox2-el:nth-child(1) {
    background: #15a884;
    color: #fff;
    height: 300px;
}

.giftbox2.productsOfDay .giftbox2-el:nth-child(2) {
    bottom: 0;
    background: #4b4b4b;
    height: 300px;
}

.giftbox2.productsOfDay .giftbox2-el:nth-child(3) {
    background: #15a884;
    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;
}


.giftbox2.whyUs2 {
    height: auto;
    padding: 0;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .giftbox2.whyUs2 {
        //height: 610px;
    }
}

.giftbox2.whyUs2 .giftbox2-el:nth-child(1) {
    color: #fff;
    width: 50%;
    float: left;
    position: relative;
}

.giftbox2.whyUs2 .giftbox2-el:nth-child(2) {
    bottom: 0;
    width: 50%;
    float: left;
    position: relative;
    left: auto;
}

.giftbox2.whyUs2 .giftbox2-flex {
    background: rgba(0, 149, 218, 0.8);
    opacity: 0;
    position: absolute;

}

.giftbox2.whyUs2 .giftbox2-el:nth-child(1) .giftbox2-flex {
    top: 0;
    bottom: 0;
}

.giftbox2.whyUs2 .giftbox2-el:nth-child(2) .giftbox2-flex {
    top: 0;
    bottom: 0;
}

@media screen and (max-width: 800px) {
    .giftbox2.whyUs2 .giftbox2-el:nth-child(1) {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        width: 100%;
    }

    .giftbox2.whyUs2 .giftbox2-el:nth-child(2) {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        width: 100%;
    }
}

.giftbox2.whyUs2 .giftbox2-flex:hover {
    background: rgba(0, 149, 218, 0.8);
    opacity: 1;
    transition: 500ms;
    cursor: pointer;
}

.giftbox2.whyUs2 .btn-white-border {
    border: 2px solid #fff;
    color: #fff;
    background: none;
    text-transform: none;
}

.giftbox2.whyUs2 .btn-white-border:hover {
    border: 2px solid #fff;
    color: #000;
    background: #fff;
}

.giftbox2.whyUs2 .giftbox2-flex:hover span {
    background: none;
}

.whyUs2 .giftbox2-el .background {
    background: url() center center no-repeat;
    background-size: 100% 100%;
    transform: scale(1);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    transition: 500ms;
}

.whyUs2 .giftbox2-el:hover .background {
    transform: scale(1.1);
    transition: 500ms;
}

@media screen and (max-width: 768px) {
    .whyUs2 .giftbox2-el .background {
        display: none;
    }
}

.promotions-frames {
    padding-top: 5px;
}

.promotions-frames .frame-card {
    padding: 3px;
    font-size: 12px;
}

.products-of-day-list {
    padding-top: 60px;
}

.legend span {
    display: block;
    width: 100%;
}

.legend.horizontal-legend span {
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
    width: auto;
}

@media screen and (max-width: 630px) {
    .legend span {
        display: block;
        text-align: left;
    }
    .legend {
        width: 50%;
        margin: 0 auto;
    }
    .horizontal-legend {
        width: 100%;
        text-align: left;
    }
    .horizontal-legend span {
        width: 100%;
    }
}

@media screen and (max-width: 530px) {
    .legend span {
        display: block;
        text-align: left;
        margin-left: 50px;
    }
    /*.legend span:first-child {
        margin-left: 50px;
    }*/
    .legend {
        width: 90%;
        margin: 0 auto;
    }
    .legend.horizontal-legend span {
        margin-left: 40px !important;
    }
}

@media screen and (max-width: 330px) {
    .legend span {
        display: block;
        text-align: left;
    }
    .legend span {
        margin-left: 15px !important;
    }
    .legend {
        width: 100%;
        margin: 0 auto;
    }
    .horizontal-legend {
        margin-left: 15px;
    }
}

@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: -10px !important;
        top: -5px !important;
        margin-left: 0 !important;
        border-radius: 50% !important;
        background: #9d168d !important;
        font-size: 14px !important;
        text-align: center;
        color: #fff !important;
    }

    .navbarIcons {
        float: left;
    }


    .burger-container {
        //padding-bottom: 17px;
        z-index: 2000;
    }
    .navbarIconBox {
        top: 64px;
    }
    .activeboxLoginBoxForm label {
        color: #000;
    }
    .navbarIcons {
        width: 100%;
    }
    .navbarIcon {
        width: 16.666%;
    }
    .burger-container.open {
        background: transparent;
    }

    .icons-navbar {
        background: #fff;
    }
    .bg-white-opacity .icons-navbar {
        background: #fff;
    }
    .activeboxSearchBoxResults {
        max-height: 65vh;
        overflow-y: auto;
        padding-bottom: 20px;
    }
    a.level3 {
        width: 100% !important;
    }
}

@media screen and (max-width: 630px) {
    .end-promotion {
        margin-top: 0;
    }
    .products-of-day-list {
        padding-top: 20px;
    }
}

/*
@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: 50px;
        right: 0;
        display: none;
    }
    .responsive-x-768.noGoogle {
        top: 50px;
    }
    .responsive-x-768.fixed {
        top: 50px;
    }
    .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: 639px) {
    .responsive-x-768 {
        position: absolute;
        top: 50px;
        right: 0;
        display: none;
    }
    .responsive-x-768.noGoogle {
        top: 50px;
    }
    .responsive-x-768.fixed {
        top: 50px;
    }
    .responsive-x-768.fixed.noGoogle {
        top: 50px;
    }
}

@media screen and (max-width: 628px) {
    .navbarIcon span.circle {
        right: 20px !important;
    }
}

@media screen and (max-width: 500px) {
    .navbarIcon span.circle {
        right: 10px !important;
    }
    .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;
    }
    .product-day-discount .countdown {
        font-size: 21px;
        display: block !important;
    }
    .products-of-day .countdown {
        font-size: 21px;

    }

}

@media screen and (min-width: 1024px) {
    .shopping-path {
        margin-top: 0;
        top: 10px;
        left: calc(50% - 450px);
        position: absolute;
        z-index: 3000;
    }
    #cart, #order, #confirm {
        padding-top: 10px;
    }
}

@media screen and (max-width: 1400px) {
    .shopping-path {
        max-width: 600px;
        left: calc(50% - 300px);
    }
}

@media screen and (max-width: 1024px) {
    .shopping-path {
        max-width: 900px;
        left: auto;
        margin-top: -140px;
        position: relative;
    }
}


@media screen and (max-width: 768px) {
    .shopping-path {
        margin-top: -20px;
        position: relative;
    }
}

@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: auto !important;
        vertical-align: top;
        display: inline-block !important;
        margin-left: auto;
        margin-right: auto;
        float: none;
    }
    .shopping-path .col-xs-4 {
        padding-left: 0 !important;
        padding-right: 5px !important;
        text-align: center;
    }
    .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%;
    }

    .navbarIcon span.circle {
        right: 0 !important;
    }
    .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);
}

.activeboxSearchBoxInput .form-control:focus {
    border: 1px solid #b0b6bd;
}

.contact-page {
    padding: 0 !important;
}

li.level3 {
    padding: 0 !important;
}

.products-of-day-list .adserver-products-list-top {
    margin-bottom: 70px;
}

@media screen and (min-width: 620px) and (max-width: 800px) {
    .products-wide .col-md-4 {
        width: 50%;
    }
}

@media screen and (max-width: 1200px) and (min-width: 769px){
    #header-static ul.level3 {
        position: absolute;
        top: 50px;
        left: 0px;
    }
    #header-static li.level2:hover>ul.level3 {
        opacity: 1;
        pointer-events: auto;
        top: 50px;
    }
    #header-static ul.level3:before {
        top: -10px;
    }
}

.www_hide {
    display: none;
}
.app_hide {
    display: block;
}
.logo {
    max-width: 220px;
    position: absolute;
}
@media screen and (max-width: 1300px) and (min-width: 768px) {

    .menu {
        //width: calc(50% - -60px);
        padding: 0;
    }
}

@media screen and (max-width: 620px) {
    #productsList .productBoxFooter h3 {
        font-size: 18px;
    }
    .products-wide #productsList .productBoxFooter h3 {
        font-size: 16px;
    }
}

.makeOrder {
    //position: fixed;
    //bottom: 50px;
    //right: 8.333%;
    width: 100%;
    z-index: 1000;
    //float: right;
}

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

span.line {
    width: 100%;
    background: #eaeaea;
    display: block;
    height: 1px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.cart-summary .back-to-buying {
    margin: 0;
    width: 100%;
    margin-top: 10px;
}

.cart-summary .back-to-buying {
    padding-top: 5px;
    padding-bottom: 5px;
}

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

.cartTable tr th {
    background: #f4f4f4;
}

.cartDiscounts {
    background: #f4f4f4;
}

.cartDiscountsList, .cartDiscountsListAll {
    padding: 15px;
}

.deliveryTime {
    width: 100%;
    text-align: right;
    background: url(/themes/aqua/assets/img/icons/check.svg) no-repeat;
}

.freeTransport {
    width: 100%;
    text-align: right;
    background: url(/themes/aqua/assets/img/icons/delivery.svg) no-repeat;
}

.bg-transparent {
    background: none;
    border-bottom: 1px solid #f4f4f4;
}

.number-navbar {
    padding: 20px 50px 10px 30px;
    color: #000;
    background: url(/themes/aqua/assets/img/icons/phone.svg) no-repeat !important;
    background-position: left 20px !important;
}

.cartTable button.deleteFromCart {
    background: url(/themes/aqua/assets/img/icons/trash.svg) no-repeat !important;
    width: 25px;
    height: 25px;
}

.cartTable button.deleteFromCart:hover {
    background: url(/themes/aqua/assets/img/icons/trash-purple.svg) no-repeat !important;
}

.cart-logo {
    max-height: 40px;
    margin-left: -100px;
}

#orderForm .form-control:focus {
    border-color: #005CEF;
}

.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: #0095da;
	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: #9d168d;
	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;
}

#orderCreateAccount .label-text {
    width: 100%;
}

#orderCreateAccount .col-sm-3 {
    width: calc(100% - 30px) !important;
}

.cartMethodsShipments input[type="radio"]:checked + .label-text:before{
    padding: 2px;
}

.cartMethodsShipments div.required label::after, .cartMethodsPayments  div.required label::after{
    display:none;
}

.cartMethodsSummary label:after {
    display: none;
}

.cartMethodsSummary label.star:before {
    content: " *";
    font-size: 21px;
    color: #9D168D;
    vertical-align: top;
}

.cartMethodsSummary .checkbox label {
    padding-left: 0;
}

#shopstransports-shtid .description, #shopspayments-shpid .description {
    display: none;
    padding-bottom: 10px;
    padding-left: 30px !important;
}

#shopstransports-shtid label, #shopspayments-shpid label {
    width: 100%;
    padding: 10px;
    margin-bottom: 0;
}

#shopstransports-shtid label:hover, #shopspayments-shpid label:hover {
    background: rgb(232, 232, 232) !important;
}

.field-shopstransports-shtid .col-sm-6.col-sm-offset-3, .cartMethodsPayments .col-sm-6.col-sm-offset-3 {
    margin-left: 0;
    width: 100%;
}

.field-shopstransports-shtid .order-radio label span, .cartMethodsPayments .order-radio label span  {
    display: inline-block;
    margin-left: 0;
}

.field-shopstransports-shtid .order-radio .description, .cartMethodsPayments .order-radio .description  {
    margin: 0;
}

.field-shopstransports-shtid .order-radio label:hover, .cartMethodsPayments .order-radio label:hover {
    color: #000;
}

.field-shopstransports-shtid .label-text span, .cartMethodsPayments .label-text span  {
    width: calc(100% - 40px);
}

.field-shopstransports-shtid .label-text, .cartMethodsPayments .label-text {
    width: 100%;
}

label.star {
    padding-left: 5px;
}

.field-shopstransports-shtid .order-radio label:hover, .cartMethodsPayments .order-radio label:hover {
    background: none;
    color: #000;
}
#header-dynamic.bg-transparent {
    position: relative !important;
}

.cartDiscountsForm .form-control, .cartDiscountsForm  .btn-blue {
    height: 40px !important;
}

.cartDiscountsForm  .btn-blue {
    padding-top: 7px;
    width: 60px;
    padding-left: 0;
    padding-right: 0;
}

.cartDiscounts {
    padding-top: 0;
}

#discounts h2 {
    margin-bottom: 0;
}

.cartDiscountsForm {
    margin-bottom: 0;
}

.cart-radio .label-text {
    margin-left: 0;
    font-size: 16px;
    width: 100%;
}

div.required label::after {
    font-size: 21px;
    vertical-align: top;
}

#orderForm {
    max-width: 900px;
    margin: 0 auto;
}

.order-login {
    max-width: 900px;
    margin: 0 auto 30px auto;
    display: none;
}

.order-login .activeboxLoginBox {
    width: 100%;
}

.correct {
    border: 1px solid #dedede;
    width: auto;
    padding: 5px;
    cursor: pointer;
}

.cartTable > thead > tr > th {
    border-bottom: 0;
}

.cartTable > tbody > tr:first-child > td {
    border-top: 0;
}

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

.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-link.btn-wide.facebook:hover {
    background: #3c5693;
}

.auth-clients .auth-client .auth-link.btn-wide .auth-icon.facebook {
    background-image: url(/themes/aqua/assets/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:hover .auth-icon.facebook {
    background-image: url(/themes/aqua/assets/img/icons/facebook-white.svg) !important;
}

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

.auth-clients .auth-client .auth-link.btn-wide.facebook:hover .auth-title {
    color: #fff;
}

.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-link.btn-wide.google:hover {
    background: #d2564e;
}

.auth-clients .auth-client .auth-link.btn-wide .auth-icon.google {
    background-image: url(/themes/aqua/assets/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:hover .auth-icon.google {
    background-image: url(/themes/aqua/assets/img/icons/google-white.svg) !important;
}

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

.auth-clients .auth-client .auth-link.btn-wide.google:hover .auth-title {
    color: #fff;
}

.btn-wide .auth-title {
    text-transform: none;
}

.form-check .col-sm-3 {
    width: calc(100% - 30px);
    float: none;
}

.form-check label {
    width: 100%;
    font-weight: normal;
}

.form-check label:after {
    display: none;
}

.form-check label.label-text:after {
    display: inline-block;
}

.recaptcha, .rodo-container {
    clear: both;
}

.rodo-container {
    height: auto;
    overflow: hidden;
}

.label-text, .label-text .control-label {
    cursor: pointer;
}

#profileForm .label-text:before {
    margin-left: 5px;
}

#profileForm .profile .label-text:before {
    margin-left: 0;
}

#profileForm label.profile {
    margin-left: 0;
}


.stateful-color-grey span {
    color: #666;
}
.stateful-color-white span{
    color: #fff !important;
}
.fixed .stateful-color-white span{
    color: #666 !important;
}

.stateful-color-grey path {
    fill: #fff;
}

.fixed .stateful-color-grey path, .fixed .stateful-color-white path {
    fill: #666;
}

.stateful-color-grey:hover path {
    fill: #C300AE;
}
body.home .fixed .stateful-color-white path {
    fill: #666;
}

.bg-white-opacity .stateful-color-grey path {
    fill: #666;
}

.bg-white-opacity .stateful-color-grey:hover path {
    fill: #8F0D7A !important;
}

.statefull-color-dark path, .stateful-color-dark path {
    fill: #666;
}

.fixed .navbarIcon > a > span {
    color: #666;
}

.activebox .stateful-color-grey span {
    color: #8F0D7A !important;
}

.activebox .stateful-color-grey path {
    fill: #8F0D7A;
}

.fixed .navbar .nav > li > a {
    color: #2e2e2e;
}

.stateful-color-white path {
    fill: #fff;
}

.bg-white-opacity .stateful-color-white path {
    fill: #666;
}

h2.login {
    display: none;
}

.activeboxLoginBox input:focus {
    border: 1px solid #005CEF;
}

.blog h1 {
    margin-top: 10px;
    text-transform: none;
    margin-bottom: 40px;
}

.icons-navbar {
    //width: 300px !important;
    float: left;
}

.field-contacts-cntemail .col-xs-3, .field-contacts-cntpassword .col-xs-3 {
    padding-right: 0;
}

.confirm {
    max-width: 1500px;
    width: 100%;
}

.confirm h2 {
    background: #f5f5f5;
    padding: 10px;
    width: 100%;
    text-align: center;
    font-size: 16px;
    color: #333;
    font-weight: normal;
    text-transform: uppercase;
    font-family: 'Ubuntu';
}

.payment {
    background: #f5f5f5;
    padding: 10px;
    font-weight: bold;
    margin-bottom: 30px;
}

.payment h2 {
    margin-top: 0;
    padding-top: 0;
    text-align: left;
    font-weight: bold;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
    padding-left: 0;
}

.confirm-summary {
    border: 1px solid #ddd;
}

.confirm-shipment {
    background: url(/themes/aqua/assets/img/icons/currency.svg) left center no-repeat;
    background-size: 20px 20px;
    padding: 5px;
    padding-left: 30px;
}

.confirm-transport {
    background: url(/themes/aqua/assets/img/icons/delivery.svg) left center no-repeat;
    background-size: 20px 20px;
    padding: 5px;
    padding-left: 30px;
}

.confirm-document {
    background: url(/themes/aqua/assets/img/icons/note.svg) left center no-repeat;
    background-size: 20px 20px;
    padding: 5px;
    padding-left: 30px;
}

.confirm-status {
    background: url(/themes/aqua/assets/img/icons/check2.svg) left center no-repeat;
    background-size: 20px 20px;
    padding: 5px;
    padding-left: 30px;
}

.newsletter-form .form-group {
    margin-bottom: 0;
}

#activeboxUser.activebox path, #activeboxSearch.activebox path, #activeboxMixed.activebox path, #activeboxCart:hover path, #activeboxClipboard:hover path {
    fill: #8F0D7A !important;
}

.cartMethodsShipments .order-radio label span b, .cartMethodsPayments .order-radio label span b {
    text-align: right;
}

.cartMethodsShipments .label-text b, .cartMethodsPayments .label-text b {
    width: auto;
}

#clipboard {
    padding-top: 80px;
}

.clear-cart {
    border: 0;
    color: #212121;
    background: url(/themes/aqua/assets/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: #8F0D7A;
}

.field-contacts-registration label {
    text-transform: none !important;
}

#profile form {
    background: #f5f5f5;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.fil0 {
    fill:#393185 !important;
}

h2 span.line, h1 span.line  {
    height: 1px;
    width: 200px;
    background: #0095da;
    display: inline-block;
    margin: 0 15px;
    vertical-align: middle;
}

.offer4 {
    padding: 0;
    margin: 0 10px;
    width: calc(100% - 20px) !important;
    height: auto !important;
    overflow: hidden;
}

.offer4-container {
    opacity: 0;
}

.offer4 a {
    position: relative;
    transform: scale(1);
    transition: 500ms;
}

.offer4:hover a.img img {
    transform: scale(1);
    transition: 500ms;
}

.offer4:hover a.img img {
    transform: scale(1.1);
    transition: 500ms;
}

.offer4 .afterHover {
    display: block;
    position: absolute;
    z-index: 2000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 149, 218, 0.2);
    color: #fff;
    opacity: 1;
    padding: 20px;
    transition: 500ms;
}

.offer4:hover .afterHover {
    transition: 500ms;
    background: rgba(0, 149, 218, 0.8);
    cursor: pointer;
}

.offer4 .afterHover h3 {
    text-align: center;
    font-size: 26px;
    padding-top: 0;
    margin-top: 0;
    padding-top: 35%;
}

.offer4 .afterHover p {
    max-height: calc(100% - 110px);
    overflow: hidden;
    text-align: justify;
    margin-bottom: 10px;
    display: none;
}

.offer4 .afterHover a {
    width: auto;
    height: 43px;
    border: 2px solid #fff;
    color: #fff;
    padding: 10px;
    margin: 10px auto;
    display: inline-block;
    line-height: 1;
    font-size: 18px;
    display: none;
}

.offer4 .afterHover:hover a {
    display: inline-block;
}
.offer4 .afterHover:hover p {
    display: inline-block;
}

.offer4 .afterHover:hover h3 {
    padding-top: 0;
}

.offer4 .afterHover a:hover {
    border: 2px solid #fff;
    color: #2e2e2e;
    background: #fff;
}

.offer4 img {
    width: 100%;
}
.carousel-offer4 .owl-controls {
    top: calc(50% - 30px);
}

@media screen and (max-width: 768px) {
    .offer4-container {
        padding: 0;
    }
    .carousel-offer4 .owl-controls {
        top: calc(100% - 10px);
    }
}



.gallery img {
    border: 1px solid #FAFAFA;
}

.gallery img:hover {
    border-color: #ddd;
}

.main-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    /*width: 100%;*/
    margin-bottom: 10px;
    touch-action: pan-y;
    background: #fff;
    padding-right: 0;
    padding-left: 0;
}

.col-md-9.main-image {
    width: 66.66666667%;
}

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

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

.main-image > span.prev {
    left: 0;
    background: rgba(0, 0, 0, 0) url("/themes/lumex/assets/img/icons/arrow-left.svg") no-repeat scroll center center;
    transform: none;
}

.main-image > img.main-image-img {
    margin: 0 auto;
    display: block;
    max-width: 100%;
    width: auto;
    //width: 100% !important;
    max-height: 550px !important;
    //height: 100% !important;
}

.clickable-product-photos img {
    border: 1px solid #eaeaea;
    cursor: pointer;
    max-width: 100%;
    max-height: 100%;
}

.clickable-product-photos .active img {
    border: 1px solid #dbdbdb;
}

.mobile {
    display: none !important;
}

.clickable-product-photos {
    overflow: hidden;
    position: relative;
    padding-right: 10px;
}

.arrow-prev {
    background: rgba(190,190,190, 0.3) url(/themes/lumex/assets/img/icons/arrow-up.svg) center center no-repeat;
    position: absolute;
    left: 10px;
    right: 20px;
    height: 40px;
    z-index: 1000;
    cursor: pointer;
    display: none;
    opacity: 0.5;
}

.arrow-next {
    background: rgba(190,190,190, 0.3) url(/themes/lumex/assets/img/icons/arrow-down.svg) center center no-repeat;
    position: absolute;
    left: 10px;
    right: 20px;
    height: 40px;
    z-index: 1000;
    bottom: 0;
    cursor: pointer;
    display: none;
    opacity: 0.5;
}

.clickable-product-photos:hover .arrow-prev, .clickable-product-photos:hover .arrow-next {
    display: block;
}

.photos-container {
    position: relative;
    height: auto;
    overflow: hidden;
    padding-right: 10px;
}

.products-home .tile {
    margin: 10px 0;
    max-width: 100%;
}

.products-home {
    padding: 0;
}

.products-boxes .btn-blue {
    display: inline-block;
    margin: 0 auto;
    width: auto;
}

.products-boxes .bg-padding {
    padding-top: 50px;
    padding-bottom: 0;
}

.carousel-blog .owl-controls {
    top: 25%;
}

@media screen and (max-width: 1400px) {
    .cart-container {
        margin: 0 !important;
        width: 100% !important;
    }
    .menu-search {
        width: 900px;
    }
    .icons-navbar {
        width: calc(100% - 530px);
    }

}

@media screen and (max-width: 1300px) {
    .cart-logo {
        margin-left: -120px;
    }
    .number-navbar {
        padding-right: 20px;
    }
}

@media screen and (max-width: 1200px) {
    .bg-transparent .logo {
        width: auto;
    }
    .cart-summary .large-font {
        font-size: 22px;
    }
    #clipboard {
        padding-top: 150px;
    }
    #activeboxSearch {
        width: calc(100% - 250px);
    }
    .menu-search {
        width: calc(100% - 300px);
        float: right;
    }
    .icons-navbar {
        width: 100%;
    }
    .logo {
        position: relative;
        padding-left: 20px;
    }
}

@media screen and (max-width: 1050px) {
    .cart-container .col-md-8, .cart-container .col-md-4 {
        width: 100% !important;
    }
    .cart-container .col-md-4 {
        margin-top: 30px;
    }
    .cart-summary, .cart-info {
        margin-left: 0;
        width: 100%;
    }
}

@media screen and (max-width: 900px) {
    h2 span.line, h1 span.line {
        width: 100px;
    }
    .menu-search {
        width: calc(100% - 220px);
    }
}

@media screen and (max-width: 768px) {
    .mobile-hide {
        display: none;
    }
    .cart-logo {
        max-height: 35px;
        margin-left: -150px;
    }
    #header-dynamic {
        background: #fff;
    }
    .icons-navbar .stateful-color-white path {
        fill: #666 !important;
    }
    .navbarLogo a .normal-logo {
        display: none !important;
    }
    .navbarLogo a .fixed-logo {
        display: block;
        opacity: 1;
        height: auto;
    }
    #activeboxClipboard #circle-clipboard {
        background: #666666 !important;
    }
    #clipboard {
        padding-top: 35px;
    }
    .breadcrumbs-of-day {
        display: none;
    }
    .mobile {
        display: block !important;
    }
    .desktop {
        display: none;
    }
    .photos {
        margin-bottom: 30px;
    }

    .blueimp-gallery {
        background: #fff;

    }
    .blueimp-gallery-carousel {
        box-shadow: none;
    }
    #activeboxSearch {
        width: calc(100% - 200px);
    }
    .inspirations-el {
        width: 100%;
    }
    .offer4 .afterHover h3 {
        font-size: 20px;
    }
    .offer4 .afterHover p {
        font-size: 14px;
        max-height: calc(100% - 80px);
    }
    .owl-controls {
        top: calc(100% - 20px);
    }
    h2 span.line, h1 span.line {
        width: 60px;
    }
    .blog-button {
        margin-top: 40px;
    }
    .products-boxes .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }
    .carousel-blog .margin-bottom {
        margin-bottom: 10px;
    }
    .blog-home {
        padding: 0;
    }
    .form-contact h2 {
        text-align: center;
    }
    .products-boxes .margin-top {
        margin-top: 30px !important;
    }
    .offer4-container h2 {
        padding-top: 70px !important;
    }
    .carousel-home .owl-nav {
        margin-bottom: 0;
    }
    .inspirations5-header {
        margin-top: 70px !important;
    }
    .menu-search {
        width: calc(100% - 200px);
    }
    .icons-navbar {
        margin-left: -10px;
        padding-right: 0;
    }
    .burger-container {
        right: 0 !important;
    }
    .logo {
        padding-left: 10px;
    }
    .carousel-blog .owl-controls {
        top: calc(100% - 20px);
    }
}

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

}

@media screen and (max-width: 630px) {
    .cart-row {
        height: auto;
        overflow: hidden;
        margin-bottom: 30px;
    }
    .cartDiscounts {
        height: 60px;
        overflow: hidden;
        cursor: pointer;
    }
    .cart-arrow-down {
        background: url(/themes/aqua/assets/img/icons/arrow.svg) no-repeat;
        transform: rotate(90deg);
        width: 25px;
        height: 25px;
        display: inline-block;
        margin-left: 20px;
        vertical-align: middle;
    }
    .cart-arrow-up {
        background: url(/themes/aqua/assets/img/icons/arrow.svg) no-repeat;
        transform: rotate(270deg);
        width: 25px;
        height: 25px;
        display: inline-block;
        margin-left: 20px;
        vertical-align: middle;
    }
    #discounts h2 {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
        padding: 0;
    }
    #discounts .btn-blue {
        width: 50px;
        padding-left: 0;
        padding-right: 0;
    }
    .bg-transparent .logo {
        max-width: 220px;
        float: left;
    }

}

@media screen and (min-width: 628px) and (max-width: 1000px) {
    .logo {
        //width: 30% !important;
    }
}

@media screen and (max-width: 628px) {
    .icons-navbar {
        width: calc(100% - 10px) !important;
        margin-left: 0;
    }
    .menu-search {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .auth-link.btn-wide.facebook {
        margin: 0;
        margin-bottom: 10px;
    }
    .description .btn-blue-dark, .description .btn-bordered {
        padding-left: 30px !important;
        padding-right: 30px !important;
        font-size: 14px;
    }
}

@media screen and (max-width: 550px) {
    .deliveryTime, .freeTransport {
        background: none;
        padding: 0;
    }
    h1 span.line, h2 span.line {
        width: 40px;
    }
}

@media screen and (max-width: 500px) {
    .description .btn-blue-dark, .description .btn-bordered {
        width: 100%;
        margin-bottom: 10px;
        font-size: 16px;
        max-width: 100%;
    }
}

@media screen and (max-width: 450px) {
    .cart-logo {
        max-height: 35px;
        margin-left: -140px;
    }
    .bg-transparent .logo {
        max-width: 190px;
    }
    .inspirations-flex {
        padding-top: 40px;
    }
    .inspirations-flex h3 {
        font-size: 20px;
    }
}

@media screen and (max-width: 400px) {
    #discounts h2 {
        font-size: 16px !important;
    }
    .cart-arrow-down, .cart-arrow-up {
        margin-left: 10px;
        background-size: 20px 20px;
        width: 20px;
        height: 20px;
    }
    .shopping-path {
        height: 30px;
        padding-left: 5px !important;
    }
    .shopping-path .col-xs-4 span {
        text-align: center !important;
        width: 100%;
    }
    .cart-container h2.blog-title {
        margin-bottom: 0;
    }
    .order-login .bg-white {
        padding: 10px;
    }
    .activeboxLoginBoxForm {
        padding-left: 10px !important;
    }
    .burger-container {
        right: 30px;
    }
    #activeboxMixed {
        right: 100px;
    }
    .contact-phone {
        right: 150px;
    }
}

@media screen and (max-width: 370px) {
    .description .btn-blue-dark, .description .btn-bordered {
        font-size: 14px;
    }
    .bg-social a {
        width: 20%;
    }
}

@media screen and (max-width: 330px) {
    .cart-logo {
        max-height: 35px;
        margin-left: -140px;
    }
    .bg-transparent .logo {
        max-width: 170px;
    }
}
