:root {
  --bg-main: #001428;
  --bg-main-var: #001224;
  --bg-main-var-2: #011b34;
  --border-color:#0b2741;
  --almost-black: #0d0c0c;
  --grey: #777;
  --grey-light: #c8c8c8;
  --fullwidth: 100%;
}



body{
    font-family: Montserrat;
    background-color: var(--bg-main);
    color: #F5F5F5;
    font-size: 16px
}

a{
    font-weight: 400;
    /*color: #82C1E9;*/
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6{
    font-family: Montserrat;
}

hr{
    border: none;
    background: rgba(255, 255, 255, 0.2);
    height: 1px;
    margin: 15px 0;
}

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

.page-title{
    color: #F5F5F5;
    font-size: 35px;
    font-weight: 300;
    line-height: 49px;
    letter-spacing: 0em;
    text-transform: uppercase;
}
.page-title-sub-text{
    line-height: 28.8px;
}

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

.text-small{
    font-size: 12px;
    margin-bottom: 0px;
    color: rgba(255, 255, 255, 0.5);
}



.bg-dark-block{
    padding: 14px 28px 28px 28px;
    background: linear-gradient(128.73deg, #042341 -1.06%, #011930 61.09%);
    border: 0px solid #0C3761;
    margin-bottom: 20px;
}
.bg-almost-black{
  background: var(--almost-black);
}



/* HEADER */

.navbar-default{
    background-color: var(--bg-main);
    border: none;
}

img.logo{
    height: 32px;
}

.menu li a, .cart a {
    color: #F5F5F5;
}

.main-menu{
  /*line-height: 100px;*/
}
.main-menu li a{
    font-size: 1em;
    color: #F5F5F5
}

.nav-utility .menu-secondary li a{
  color: #ff554d;
  color: #82c1e9;
  color: #689aef;
  text-transform: none;
  font-size: 1em;
  text-transform: capitalize !important;
}

.top-menu {
    position: absolute !important;
    top: -15px;
    right: 110px;
    text-transform: capitalize !important;
    height: 62px;
    color: #000
}

.menu > li{
  /*height: 55px;*/
}

.menu-language a.active,
.menu-language li.active a{
  font-weight: bold;
}

.header-phones{
  max-width: 370px
}

.header-phones a{
  height: auto;
}

.module-contact ul li a
{
  height: 35px;
  line-height: 35px;
}

.module-contact ul.schedule li ul li{
  height: auto;
}

@media (max-width: 767px){
    #photos ul li,
    .lightbox-grid ul li{
        margin: 0;
        margin-right: 1px;
        width: 49%;
    }
    .menu-language{
        padding-top: 32px;
    }
}

/* HEADER END */



@media (min-width: 1400px){
    .container {
        width: 1400px;
    }
}
@media (max-width: 1400px){
  .module.widget-handle.cart-widget-handle{
    float: left;
  }
  .module-main-menu{
    width: 100%;
  }
}


/* CATEGORY */

.category-above-products>div{
    padding: 0 10px;
}
.category-above-products select{
    width: 100%;
}

.category-above-products a span{
    font-weight: 300;
}

.category-above-products p{
    font-size: 15px;
    height: 48px;
    padding-top: 16px;
    margin-bottom: 0;
    font-weight: 100;
}
#product-items-list > div{
    padding: 10px;
    margin-bottom: 1px;
}

.product-items-filters label{
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
    cursor: pointer;
}

.product-items-filters label input{
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.product-items-filters label > span{
    display: inline-flex;
    align-items: center;
    user-select: none;
}
.product-items-filters label > span::before{
    content: '';
    display: inline-block;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    margin-right: 15px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}
.product-items-filters label span span{
    color: grey;
    margin-left: 5px;
}

.product-items-filters label > input:not(:disabled):not(:checked)+span:hover::before {
  border-color: #ff554d
}

.product-items-filters label > input:not(:disabled):active+span::before {
  background-color: #ff554d;
  border-color: #ff554d;
}

.product-items-filters label > input:focus+span::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.product-items-filters label > input:focus:not(:checked)+span::before {
  border-color: #ff554d;
}


.product-items-filters label > input:checked+span::before {
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='10' height='10' rx='2' fill='white' fill-opacity='0.9'/%3E%3Crect x='0.5' y='0.5' width='9' height='9' rx='1.5' stroke='white' stroke-opacity='0.9'/%3E%3C/svg%3E%0A");
}


.product-items-filters label > input:disabled+span::before {
  background-color: #e9ecef;
}


.product-items-filters p{
    font-size: 15px;
    line-height: 18px;
    line-height: 110%;
    cursor: pointer;
}
.product-items-filters p:not(:first-child){
    margin-top: 20px;
}

.product-items-filters p:hover{
    color: #82C1E9;
}

.product-items-filters .filter{
  padding-bottom: 12px;
}

.product-items-filters .filter .filter__title{
  font-weight: 600;
  color: grey;
  padding-bottom: 3px;
  margin-bottom: 5px;
  border-bottom: 1px solid rgba(127, 127, 127, 0.2);
}

.selected-filters-list li{
    padding-left: 0;
}

.selected-filters-list a,
.selected-filters-list button{
    background-color: #011b34;
    border: 1px solid;
    border-color: #ff554d;
    border-radius: 4px;
    color: white;
    padding: 2px 4px;
    margin-bottom: 12px;
}
.selected-filters-list a{
    display: inline-block;
}
.selected-filters-list button span{
    font-size: 12px;
}
.selected-filters-list a:hover,
.selected-filters-list button:hover span{
    color: #ff554d;
}


.product-item{
    background: linear-gradient(128.73deg, #042341 -1.06%, #011930 61.09%);
    border: 1px solid #0C3761;
    border-radius: 2px;
    padding: 35px;
}

.product-item:hover{
    border-color: #ff554d;
}

.product-item-photo{
    display: block;
}
.product-item-photo img{
    max-height: 175px;
}

.product-item-title{
    color: #82C1E9;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0em;
}

.product-item hr{
    border: none;
    background: linear-gradient(90deg, rgba(12, 55, 97, 0) -3.85%, #0C3761 47.43%, rgba(3, 30, 56, 0) 103.17%);
    height: 1px;
    margin: 15px 0;
}

.product-item-properties p{
    font-size: 14px;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 0em;
    text-align: left;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.product-item-properties p strong{
    color: rgba(255, 255, 255, 1);
}

.product-item-link{
    font-size: 14px;
}


.category-description-title{
    font-size: 34px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 38px;
}
.category-description-text-block{
    padding: 60px;
    border: 1px solid rgba(12, 55, 97, 1);
    border-radius: 2px;
    background: linear-gradient(128.73deg, rgba(4, 35, 65, 0.8) -1.06%, rgba(1, 25, 48, 0.8) 61.09%);
    z-index: 2;
    margin-top: 42px;
}

.category-description-image-block{
    margin-left: -30%;
    width: 80%;
    z-index: 1;
    margin-bottom: 32px;
}

.btn,
select,
.btn.btn-blue,
.btn-quick-filter,
.accordion-2 .title:before,
.accordion.accordion-2 li,
.accordion.accordion-2 li:hover,
.accordion.accordion-2 li .title
.accordion.accordion-2 li .content,
.product-item,
.accordion .content,
.accordion-2 .active .title:before,
.product-items-filters label span::before,
.product-items-filters p,
.product-items-filters label > input:checked+span::before,
.selected-filters-list button span,
.accordion-1 li,
.button-tabs .tab-title
{
    transition: all .85s ease;
    -webkit-transition: all .85s ease;
}
.foundry_modal{
    transition: all .35s ease;
    -webkit-transition: all .35s ease;
}

@media (min-width: 1500px)  {
    #callback-modal {
        max-width: 35%;
        width: 35%;
    }
}


.accordion.accordion-2 li{
    border: 1px solid #0C3761;
    margin-bottom: 20px;
}
.accordion.accordion-2 li .content p{
    padding: 0 20px 20px;
}
.accordion.accordion-2 li:hover{
    border-color: #ff554d;
}
.accordion.accordion-2 .title{
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    border-bottom: none;
}

.accordion-2 .title:before{
    display: inline-block;
    padding: 32px;
    content: "\e64b";
}

.accordion-2 .active .title:before {
    -moz-transform:rotate(180deg);
    -webkit-transform:rotate(180deg);
    transform:rotate(180deg);
}


.btn-group-quick-filters{
    border-spacing: 10px;
}

.btn-group-quick-filters>div{
    padding: 0 10px;
}
.btn-group-quick-filters>div:not(:first-child) {
    padding-left: 5px;
}
.btn-group-quick-filters>div:not(:last-child) {
    padding-right: 5px;
}

.btn-quick-filter{
    height: 90px;
    width: 100%;
    color: #F5F5F5;
    background-color: #011b34;
    border: 1px solid #082e53;
    border-radius: 4px;
    box-shadow: 5px 3px 8px rgb(0 0 0 / 55%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-weight: 400;
}

.btn-quick-filter:hover,
.btn-quick-filter.active{
    color: #ff554d;
    border: 1px solid #ff554d;
}
.btn-quick-filter:hover{
    background-color: #011b34;
    color: #ff554d;
}
.btn-quick-filter img{
    padding-right: 20px;
}

#toggle-filters-mobile{
    position: absolute;
    right: 0;
    color: #ff554d;
}

.btn.btn-blue{
    background-color: #011b34;
    border: 1px solid #082e53;
    border-radius: 4px;
    color: white;
    text-transform: none;
    height: 48px;
    padding: 4px 30px;
    font-size: 18px;
}

.btn.btn-blue:hover{
    border-color: #ff554d;
}
.btn-svg svg{
    padding-left: 4px;
}
.btn-svg svg, .btn-svg span {
    display: inline-block;
    vertical-align: middle;
}
.btn-svg span {
    padding-right: 20px;
}

.btn.btn-orange{
    background-color: #FF554D;
    color: #F5F5F5;
    border: none;
    display: inline-block;
    width: 100%;
    border-radius: 2px;
    margin-bottom: 2px;
}
.btn.btn-orange:hover{
  background-color: var(--border-color);
}

.btn.btn-white{
    background-color: #F5F5F5;
    border: 1px solid #F5F5F5;
    border-radius: 4px;
    color: rgb(13, 12, 12);
    text-transform: none;
    height: 48px;
    padding: 4px 30px;
    font-size: 18px;
}

.btn.btn-blue:hover{
    border-color: #ff554d;
}

.btn-ghost{
    background-color: transparent;
    border-radius: 2px;
    border: 1px solid var(--grey-light);
    display: inline-block;
    width: 100%;
    color: var(--grey-light);
}
.btn-ghost:hover{
  border-color: var(--border-color);
  background-color: var(--border-color);
}

.one-click-buy{
  text-transform: none;
}

.btn-dropdown{
    font-size: 14px;
    color: #82C1E9;
}
.btn-dropdown::before{
    font-family: 'themify';
    content: "\e64b";
    display: inline-block;
    padding-right: 12px;
    font-size: 18px;
}


select{
    cursor: pointer;
    background-color: #011b34;
    border: 1px solid #082e53;
    border-radius: 4px;
    color: white;
    text-transform: none;
    height: 48px;
    padding: 4px 30px;
    padding: 4px 12px;
    font-size: 18px;
    background-image: url("data:image/svg+xml,%3Csvg width='17' height='10' viewBox='0 0 17 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 1L9.95907 7.44365C9.27518 8.17314 8.93323 8.53789 8.5 8.53789C8.06677 8.53789 7.72482 8.17314 7.04093 7.44365L1 1' stroke='white' stroke-opacity='0.9' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .85em auto, 100%;
    width: 100%;
}

select:active,
select:focus,
select:hover {
    outline: none;
    border: 1px solid #082e53;
}
select:hover {
    border: 1px solid #ff554d;
}


/*
.selectize-input,
.selectize-control.single .selectize-input.input-active,
.selectize-control.single .selectize-input,
.selectize-dropdown.single{
*/

.selectize-input,
.selectize-control.single .selectize-input.input-active,
.selectize-control.single .selectize-input{
    background-color: #011b34;
    border: 1px solid #082e53;
    border-radius: 4px;
    color: white;
    text-transform: none;
/*
    height: 48px;
    padding: 0px 12px;
*/
    font-size: 18px;
    background-image: url("data:image/svg+xml,%3Csvg width='17' height='10' viewBox='0 0 17 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 1L9.95907 7.44365C9.27518 8.17314 8.93323 8.53789 8.5 8.53789C8.06677 8.53789 7.72482 8.17314 7.04093 7.44365L1 1' stroke='white' stroke-opacity='0.9' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .85em auto, 100%;

}

.selectize-control.single .selectize-input,
.selectize-control.single .selectize-input input{
  min-width: 175px;
}

.selectize-dropdown, .selectize-input, .selectize-input input{
    color: white;
}

.selectize-dropdown.single{
    font-size: 16px;
    background-color: #042341;
    color: white;
}
.selectize-dropdown.single .item:hover{
    background-color: #0C3761;
}


.selectize-control.single .selectize-input:after{
    display: none;
}


/* CATEGORY END */


/* PRODUCT */

    .product-description-text img{
        display: block;
        margin: 0px auto;
    }
    .product-review,
    #review-form{
        padding: 28px 20px;
        border: 1px solid rgba(12, 55, 97, 0.8);
        background: linear-gradient(
            128.73deg,
            rgba(4, 35, 65, 0.8) -1.06%,
            rgba(1, 25, 48, 0.8) 61.09%
        );
        margin-bottom: 20px;
    }
    #review-form h5{
        color: white;
        margin-bottom: 8px;
    }
    #review-form select{
        width: 100%;
    }

    .cart input::placeholder,
    #review-form::placeholder{
        color: #F5F5F5;
        font-weight: unset;
        font-size: unset;
    }

    .form-control
    /*
    .cart input,
    #review-form input,
    #review-form textarea
    */
    {
        outline: none !important;
        background-color: transparent;
        border: 1px solid #082e53;
        border-radius: 2px;
        color: white;
        text-transform: none;
        padding: 4px 20px;
        height: 52px;
        font-size: 18px;
    }
    textarea.form-control{
        padding-top: 12px;
    }
    textarea.form-control::placeholder{
        text-transform: none;
    }


    /*
    .cart input,
    #review-form input
    */
    .form-control input[type=text]
    {
        height: 52px;
    }

    #photos li{
        border: 2px solid #0C3761;
        background: linear-gradient(128.73deg, #042341 -1.06%, #011930 61.09%);
        margin: 4px;
    }
    #photos img{
        max-height: 285px;
    }

    .product-property-group{
        font-size: 18px;
        line-height: 20px;
    }

    .score {
      font-size: 16px;
      position: relative;
      overflow: hidden;
    }

    .score-wrap {
      display: inline-block;
      position: relative;
      height: 19px;
    }

    .score .stars-active {
      color: #82C1E9;
      position: relative;
      z-index: 10;
      display: inline-block;
      overflow: hidden;
      white-space: nowrap;
    }

    .score .stars-inactive {
      color: rgba(255, 255, 255, 0.8);
      position: absolute;
      top: 0;
      left: 0;
      -webkit-text-stroke: initial;
      /* overflow: hidden; */
    }

    .score-summ{
        position: absolute;
        left: 98px;
        width: 120px;
        color: white;
    }

    .product-icon-tabs .tabs li{
        width: auto;
        margin-bottom: 0px;
        padding-right: 5px;
    }
    .product-icon-tabs .tab-title{
        text-align: left;
    }

    .product-tabs a{
        font-size: 14px;
        font-weight: 200;
        border: 1px solid #082e53;
        border-color: var(--border-color);
        border-radius: 2px;
        color: white;
        text-transform: none;
        height: 40px;
        display: inline-block;
        padding: 6px 30px;
        margin-right: 10px;
    }
    .product-tabs a:hover{
        background-color: #011b34;
    }

.product-name-category{
    color: #82C1E9;
    color: #F5F5F5;
    font-size: 30px;
    line-height: 30px;
    padding-bottom: 48px;
}

.product-models{
    padding: 0px;
    padding-bottom: 24px;
}

.product-models .product-models-title{
    font-size: 16px;
    font-weight: 100;
    line-height: 16px;
}
.product-models a.btn{
    color: white;
    border: 1px solid #082e53;
    text-align: left;
    text-transform: none;
    background: linear-gradient(128.73deg, #042341 -1.06%, #011930 61.09%);
    margin-bottom: 16px;
    padding: 0 18px;
    border-radius: 2px;
}

.btn.active, .btn:active,
.product-models a.active{
    border: 1px solid #FF554D;
}

.product-available{
    padding-top: 38px;
}
.product-available p{
    font-size: 14px;
    font-weight: 100;
    margin-bottom: 0px;
}

p.product-price span{
    color: #FF554D;
    font-size: 22px;
    font-weight: 700;
    line-height: 22px;
}

p.product-price span.product-price-old:after {
  position: absolute;
  left: -3px;
  top: 50%;
  height: .75px;
  background: #777;
  content: "";
  width: 100%;
  display: block;
}

p.product-price span.product-price-old{
    position: relative;
    color: #777;
    font-size: 15px;

}

.product-delivery-details{
    font-size: 14px;
    line-height: 15px;
    font-weight: 500;
}

.product-delivery-details-title{
    line-height: 38px;
}

.product-delivery-details-value{
    color: rgba(255, 255, 255, 0.5);
    line-height: 22px;
}

.product-property-top{
    font-size: 14px;
    line-height: 15px;
    font-weight: 500;
}

.product-property-top-title{
    line-height: 38px;
}

.product-property-top-value{
    color: rgba(255, 255, 255, 0.5);
}

.product-property-icons{
    margin-bottom: 20px;
/*
    padding-left: 0;
    padding-right: 0;
*/
}

.product-property-icons-wrap{
    margin-top: 75px;
}
.product-property-icons-wrap > div{
  padding-left: 0;
}
.product-property-icons-inner{
  border: 1px solid var(--bg-main-var);
  background-color: var(--bg-main-var);
  width: 100%;
  display: inline-block;
  padding: 16px 28px;
  border-radius: 12px;
}

.product-property-icons .product-property-icons-title{
    font-size: 16px;
    line-height: 18px;
    font-weight: 100;
    margin-bottom: 6px;
    color: #777;
}

.product-property-icons .product-property-icons-value{
  color: var(--grey-light);
  color: #F5F5F5;
}

.product-property-icons img{
    filter: brightness(0) invert(1);
    width: 44px;
    height: 44px;
    margin-right: 24px;
    opacity: .85;
}




.slick-slider .slick-prev,
.slick-slider .slick-next {
  z-index: 100;
  font-size: 2.5em;
  height: 40px;
  width: 40px;
  margin-top: -20px;
  color: #B7B7B7;
  position: absolute;
  top: 50%;
  text-align: center;
  color: #000;
  opacity: .3;
  transition: opacity .25s;
  cursor: pointer;
    background: #F5F5F5;
}
.slick-slider .slick-prev:hover,
.slick-slider .slick-next:hover {
  opacity: .65;
}
.slick-slider .slick-prev {
  left: 0;
}
.slick-slider .slick-next {
  right: 0;
}
.main-img-slider .slick-slide{
  padding: 32px;
}


#detail .product-images {
  width: 100%;
  margin: 0 auto;
  border:0px solid #eee;
}

#detail .product-images li,
#detail .product-images figure,
#detail .product-images a{
  outline: none;
  border: none;
}

#detail .product-images img{
    max-height: 350px;
}

#detail .product-images .thumb-nav li,
#detail .product-images a{
    border: 2px solid var(--border-color);
    background: linear-gradient(128.73deg, #042341 -1.06%, #011930 61.09%);
}
#detail .product-images .main-img-slider figure {
  margin: 0 auto;
  padding: 0 2em;
}
#detail .product-images .main-img-slider figure a {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}
#detail .product-images .main-img-slider figure a img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

#detail .product-images .thumb-nav {
  margin: 0 auto;
  padding:20px 0;
  max-width: 600px;
  max-height: 95px;
}
#detail .product-images .thumb-nav.slick-slider .slick-prev,
#detail .product-images .thumb-nav.slick-slider .slick-next {
  font-size: 1.2em;
  height: 20px;
  width: 26px;
  margin-top: -10px;
}
#detail .product-images .thumb-nav.slick-slider .slick-prev {
  margin-left: -30px;
}
#detail .product-images .thumb-nav.slick-slider .slick-next {
  margin-right: -30px;
}
#detail .product-images .thumb-nav li {
  display: block;
  margin: 0 auto;
  cursor: pointer;
  height: 125px;
  width: 125px;
  margin-right: 20px;
}
#detail .product-images .thumb-nav li img {
    display: block;
    max-width: 92px;
    max-height: 92px;
    margin: 0 auto;
    border: 2px solid transparent;
    -webkit-transition: border-color .25s;
    -ms-transition: border-color .25s;
    -moz-transition: border-color .25s;
    transition: border-color .25s;
    margin-top: 14px;
}
#detail .product-images .thumb-nav li:hover, #detail .product-images .thumb-nav li:focus {
  border-color: #999;
}
#detail .product-images .thumb-nav li{
  opacity: .5;
}

#detail .product-images .thumb-nav li.slick-current {
  border-color: #999;
  opacity: .85;
}

#detail .product-images .thumb-nav li,
.main-img-slider a{
  display: none;
}
.main-img-slider a:first-child {
  display: block;
}




#detail .product-images .thumb-nav.slick-initialized li,
.main-img-slider.slick-initialized a {
  display: block;
}

.main_img {
    width: 500px;
    margin: 0 auto;
    border: 1px solid #ff554d;
}



/* PRODUCT END */


/* CART */


p.modal_title,
#cart-modal .modal_title{
    font-size: 24px;
}

.cart-item_right-half{
    padding-top: 18px;
}

.cart-item__product-name{
    color: #82C1E9;
    font-size: 18px;
}

.cart-item__product-image{
    max-height: 115px;
}

.cart-item__product-image-href{
    width: 100%;
    border: 1px solid #0C3761;
    background: linear-gradient(128.73deg, #042341 -1.06%, #011930 61.09%);
}

.header-cart-item{
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 0;
    line-height: 18px;
}

.cart-bottom{
    padding-top: 16px;
}

.widget .cart-overview img {
    width: 100%;
}


.cart-product-remove{
    position: absolute;
    right: -5px;
    font-size: 22px;
    color: white;
}

.cart-product-quantity{
    padding: 4px;
    outline: none !important;
    font-size: 20px;
    font-weight: 400;
    color: #F5F5F5;
    width: 50px;
    border: none;
    border-bottom: 1px solid white;
    background-color: transparent;
    padding: 0px 0px 0px 13px;
    text-align: center;
    vertical-align: middle;
}

.cart input[type=radio]{
    height: unset;
}

.delivery-radio{
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 8px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 400;
}

.delivery-radio .delivery-details{
    font-size: 14px;
    font-weight: 200;
    display: block;
    color: rgba(255, 255, 255, 0.7);
}

.delivery-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.delivery-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: transparent;
    border-radius: 50%;
    border: 2px solid rgba(12, 55, 97, 0.9);

}



/* On mouse-over, add a grey background color */
.delivery-radio:hover input ~ .delivery-checkmark {
    border: 2px solid rgba(12, 55, 97, 1);
}

/* When the radio button is checked, add a blue background */
.delivery-radio input:checked ~ .delivery-checkmark {

}

/* Create the indicator (the dot/circle - hidden when not checked) */
.delivery-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.delivery-radio input:checked ~ .delivery-checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.delivery-radio .delivery-checkmark:after {
  top: 2px;
  left: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
}

.page-title.page-title-cart{
    text-transform: none;
}

.cart-product-list{
    margin-bottom: 20px;
}

.cart-product-list-item{
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.cart-product-list-item a{
    font-size: 20px;
}
.cart-product-list-item-image{
    border: 2px solid #0C3761;
    background: linear-gradient(128.73deg, #042341 -1.06%, #011930 61.09%);
    padding: 6px 18px;
}


#cart-submit{
    padding: ;
}

.cart h4{
    font-size: 20px;
    font-weight: bold;
    color: white;
    position: relative;
    border-bottom: 1px solid #0C3761;
    margin-bottom: 16px;
    opacity: .5;
}

.cart h4 span{
    padding: 0 8px;
    font-weight: unset;
    text-align: center;
}

/*
.cart h4 span::before{
    position: absolute;
    left: 0px;
    top: 8px;
    content: '';
    border:1px solid #F5F5F5;
    height:22px;
    width:22px;
    border-radius:50%;
}
.cart h4 span.span-2::before{
    height:21px;
    width:21px;
    left: 1px;
}
*/


.cart .button-tabs .tabs{
    margin-bottom: 8px;
}

.cart .button-tabs .tab-title{
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0);
    padding: 6px 20px;
}

.cart .button-tabs .active .tab-title{
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: transparent;
}

.cart .button-tabs .active .tab-title:hover{
    background-color: transparent;
}

.cart .button-tabs .tab-title span{
    text-transform: none;
    font-weight: 200;
    font-size: 14px;
}


.cart .label-number{
    font-weight: bold;
    font-size: 22px;
    padding-bottom: 4px;
    opacity: 0.5;
}

#comment{
    max-width: 464px;
    height: 112px;
}


/* HELPERS */
.fs15,
.fs15 a,
.fs15 li a{
    font-size: 15px;
}
.op90{opacity: 0.9;}
.p0{padding: 0;}
.mb0{}
.pr20{padding-right: 20px;}
.pt0{padding-top: 0;}
.pl0{padding-left: 0}
.display-none{display: none;}
.fw300{font-weight: 300;}
.w100{width:100%}
.pointer{cursor: pointer;}
.input-disabled{cursor: not-allowed !important;}
.color-orange{color: #FF554D;}
.color-grey{color: var(--grey)};
.vertical-center {
    display: flex;
    align-items: center;
}
.no-border{
    border: none !important;
}
.halfscreen {
  height: 50vh;
}
.transparent{
    opacity: .5;
}
.border-2{
    border-radius: 2px;
}

/* HELPERS END */
.container-lg 	100% 	100% 	100% 	960px 	1140px 	1320px



@media(max-width:767px){
    .product-tabs li{
        width: 47%;
    }

    .product-tabs li a{
        width: 100%;
    }

    .category-description-text-block {
        padding: 20px;
        margin: 225px 10px 10px;

    }
    .category-description-image-block {
        position: absolute;
        top: -200px;
        left: 0;
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        width: 100%;

    }
    .btn-quick-filter{
        height: 62px;
        margin-bottom: 12px;
    }
    .btn-quick-filter img{
        max-height: 18px;
        padding-right: 5px;
    }
    .btn-svg span{
        padding-right: 5px;
    }
    #quick-filters>div{
        padding: 0 10px;
    }
    #quick-filters>div:nth-child(odd) {
        padding-right: 5px;
    }
    #quick-filters>div:nth-child(even) {
        padding-left: 5px;
    }
    .category-above-products .btn,
    .category-above-products select{
        font-size: 14px;
        margin-bottom: 0px;
    }
    #product-items-filters{
        border: 1px solid #ff554d;
        padding: 10px;
        margin: 10px;
    }
    .product-item{
        padding: 15px;
    }
    .product-item-price{
        font-size: 14px;
    }

    #cart-count.label{
        border: 1px solid #F5F5F5;
        border: none;
        background-color: var(--bg-main);
        border-radius: 50%;
        padding: 6px;
    }

}
@media(min-width:768px){
    .cart #username{
        width: 95%;
    }
}
@media (max-width: 767px){
    p {font-size: unset;}
}

@media(min-width:992px){
}
@media(min-width:1200px){}

.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-xs-5ths {
    width: 20%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-5ths {
        width: 20%;
        float: left;
    }
}

.cart-widget-handle .function span,
.breadcrumb-2 li.active a,
.icon, h1, h2, h3, h4, h5, h6{
    color: white;
}

.icon {
    font-size: 22px;
}
.icon-round{
    padding: 8px;
    display: block;
    width: 36px;
    border-radius: 50%;
    background: var(--border-color);
    margin-bottom: 8px;
}
.icon-round i{
    font-size: 20px;
}
.feature.active a h5{
    border-bottom: 1px solid white;
}

.cart-widget-handle .function, .foundry_modal{
    background-color: var(--bg-main);
}

.cart-widget-handle .function a{
    line-height: 36px;
}




.popup__title {
    text-align: center;
    margin-bottom: 20px;
    color: #000;
}
.popup__title > * {

}
.popup__btns {
    display: flex;
    flex-direction: column;
}
.popup__inner {
    min-width: 250px;
}
.popup__btns > .btn {
    margin: 0;
}
.popup__btns > .btn:not(:last-child) {
    margin: 0 0 10px;
}


.blured{
    transition: none;
    overflow: hidden;
}

.blured > *:not(.foundry_modal){
    filter: blur(32px);
}

nav.scrolled.fixed.hidden-xs .module-contact,
nav.scrolled.fixed.hidden-xs .top-menu,
nav.scrolled.fixed.hidden-xs .module-info
{
  display: none;
}

nav.scrolled.fixed.hidden-xs .main-menu{
  line-height: 55px;
}


.flex-control-nav li a{
  width:40px;
  height: 4px;
  border-width: 1px;
  border-radius: 2px;
  opacity: 0.8
}

.flex-control-paging li a{
  box-shadow: none;
  -webkit-box-shadow: none;
}
.flex-direction-nav a.flex-next:before,
.flex-direction-nav a.flex-prev:before {
  color: rgba(255, 255, 255, 0.4);
}
.flex-direction-nav a.flex-next:hover:before,
.flex-direction-nav a.flex-prev:hover:before {
  /*color: rgba(255, 255, 255, 1);*/
  font-weight: bolder;

}





/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

  .no-bg-mobile{
    background: none !important;
  }
  .button-tabs .tabs li {
    width: 32%;
  }
.button-tabs .tab-title {
  padding: 22px 22px;
  min-width: 82px;
}

  .main-page-slider .flex-direction-nav a.flex-next{
   right: 2px;
  }
  .main-page-slider .flex-direction-nav a.flex-prev{
    left: 2px;
  }
  .main-page-slider .flex-direction-nav a{
    height: 32px;
  }

  .flex-direction-nav a.flex-next::before,
  .flex-direction-nav a.flex-prev::before {
    font-size: 32px;
  }
}





.slider-title{font-size: 26px}
.slider-title-sub{font-size: 18px}
.slider-text{font-size: 14px}

.button-tabs .tab-title{
  background-color: #03213e;
  border: 1px solid #0C3761;
  border-radius: 2px;
  padding: 22px 44px;
  width: 100%;
}

.button-tabs .active .tab-title:hover,
.button-tabs .tab-title:hover,
.button-tabs .active .tab-title{
  background: #192b3e;
  border: 1px solid #FF554D;
}
.button-tabs .tab-title span{
  font-weight: 400;
}

.main-page-slider .flex-direction-nav{
  /*display: none;*/
}
.main-page-slide:hover{
  cursor:pointer;
}
.main-page-slider img{
  border-radius: 4px;
}


.widget-handle .search-form input {
  color: black;
  padding: 0 5px;
  width: 100%;
}

.nav-utility{
  overflow: visible;
}


.search-widget-handle .function{
  width: 216px;
}

.navbar-toggle{
  margin-right: 8px;
}

    .header-notify{
    padding: 20px;
    background-color: #5493e6;
    padding-bottom: 0;
    /*background: no-repeat url(/theme/moto/assets/img/bg-ua.svg);*/
}
.header-notify a{
    color: #F5F5F5;
    text-decoration: underline;
    font-weight: bold;
}
.header-notify p.header-notify-title {
    font-size:24px;
    line-height: 24px;
    margin-bottom: 8px
}
.header-notify p.header-notify-text {
    font-size:16px;
    line-height: 18px;
}
.header-notify-close{
    display:inline-block;
    cursor: pointer;
    color: #F5F5F5;
    transition: transform 0.5s ease 0s;
    font-size: 26px;
    position: absolute;
    top: 15px;
    right: 15px;
}
.header-notify-close:hover{
    transform: rotate(180deg);
}


.flex-direction-nav a.flex-next::before,
.flex-direction-nav a.flex-prev::before{
  color: #FF554D;
}

.main-page-slider.controls-inside .flex-control-nav{
  bottom: -40px;
}


@media (min-width: 1200px) {
  .container.container-slider {
    width: 100%;
  }
}

@media (min-width: 1920px) {
  .container.container-slider {
    width: 1920px;
  }
}


.product-details,
.product-color-capacity a.btn:not(.active),
.product-tabs a{
  border-color: var(--border-color);
}

.product-details{
  padding: 4px 8px;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  color: #777;
}

.product-details span,
.product-details i,
.product-details .details-title{
  color: #F5F5F5;
  font-weight: 500;
}

.product-details-payment .details-title{
  margin: 4px 8px;
}
.product-details-payment .payment-icon{
  opacity: .7;
}
.product-details-delivery{
  padding: 12px;
}

.product-details-delivery .ti-truck::before{
  display: inline-block;
  transform: scaleX(-1);
}

.product-details-delivery i{
  font-size: 22px;
  padding-right: 6px;
}
.product-color-capacity a.btn{
  border-width: 1px;
  border-radius: 12px;
  padding: 0 6px;
  text-transform: none;
  min-width: none;
  color: var(--grey-light);
  border-color: var(--border-color);
}

.product-color-capacity a.btn.active{
  border-color: var(--grey);
  background-color: #011b34;
}

.product-color-capacity a.btn:hover{
  background: none;
  background-color: #011b34;
  background-color: var(--border-color);

}

#about .btn.btn-orange,
#about a.cart-add-button,
#about a.one-click-buy{
  min-width: 220px;
  width: unset;
  font-weight: 700;
}

#catalog-menu-mobile ul li a{
  color: #F5F5F5;
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0 16px 8px;
}
