/*Fonts*/

@font-face {
  	font-family: 'Alata';
  	font-weight: 400;
  	src: url('../fonts/Alata-Regular.ttf')  format('truetype');
}
@font-face {
  	font-family: 'Lato';
  	font-weight: 300;
  	src: url('../fonts/Lato-Light.ttf')  format('truetype');
}
@font-face {
  	font-family: 'Lato';
  	font-weight: 300;
  	font-style: italic;
  	src: url('../fonts/Lato-LightItalic.ttf')  format('truetype');
}
@font-face {
  	font-family: 'Lato';
  	font-weight: 400;
  	src: url('../fonts/Lato-Regular.ttf')  format('truetype');
}
@font-face {
  	font-family: 'Lato';
  	font-weight: 400;
  	font-style: italic;
  	src: url('../fonts/Lato-Italic.ttf')  format('truetype');
}
@font-face {
    font-family: 'Lato';
    font-weight: 700;
    src: url('../fonts/Lato-Bold.ttf')  format('truetype');
}
@font-face {
    font-family: 'Lato';
    font-weight: 700;
    font-style: italic;
    src: url('../fonts/Lato-BoldItalic.ttf')  format('truetype');
}
@font-face {
    font-family: 'Lato';
    font-weight: 900;
    src: url('../fonts/Lato-Black.ttf')  format('truetype');
}
@font-face {
    font-family: 'Lato';
    font-weight: 900;
    font-style: italic;
    src: url('../fonts/Lato-BlackItalic.ttf')  format('truetype');
}
@font-face {
  	font-family: 'Rajdhani';
  	font-weight: 300;
  	src: url('../fonts/Rajdhani-Light.ttf')  format('truetype');
}
@font-face {
  	font-family: 'Rajdhani';
  	font-weight: 400;
  	src: url('../fonts/Rajdhani-Regular.ttf')  format('truetype');
}
@font-face {
  	font-family: 'Rajdhani';
  	font-weight: 500;
  	src: url('../fonts/Rajdhani-Medium.ttf')  format('truetype');
}
@font-face {
  	font-family: 'Rajdhani';
  	font-weight: 600;
  	src: url('../fonts/Rajdhani-SemiBold.ttf')  format('truetype');
}
@font-face {
  	font-family: 'Rajdhani';
  	font-weight: 700;
  	src: url('../fonts/Rajdhani-Bold.ttf')  format('truetype');
}

/*General*/

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html {
    overflow-x: hidden;
}
body{
    background: #FFF;
    font-family: 'Rajdhani';
    font-size: 14px;
    line-height: normal;
    font-weight: normal;
    color: #444444;
    overflow-x: hidden;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1{
    font-size: 50px;
    font-family: 'Rajdhani';
    color: #444444;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 20px;
}
h2{
    font-size: 60px;
    font-family: 'Rajdhani';
    color: #444444;
    line-height: 1;
    font-weight: 700;
    margin: 0 0 20px;
}
h3 {
    font-size: 40px;
    font-family: 'Rajdhani';
    color: #444444;
    line-height: 1.1;
    font-weight: 700;
    margin: 0 0 20px;
}
h4{
    font-size: 22px;
    font-family: 'Rajdhani';
    color: #444444;
    line-height: 1.2;
    font-weight: 600;
    margin: 0 0 20px;
}
h5 {
    font-size: 30px;
    font-family: 'Rajdhani';
    color: #666666;
    font-weight: 700;
    margin: 0 0 20px;
}
h6{
    font-size: 18px;
    font-family: 'Rajdhani';
    color: #444444;
    line-height: 1.4;
    font-weight: 600;
    margin: 0 0 20px;
}
p {
    font-size: 16px;
    font-family: 'Lato';
    color: #444444;
    line-height: 1.5;
    font-weight: 400;
    margin: 0 0 20px;
}
p:nth-last-child(1){
    margin-bottom: 0;
}
a{
    outline: none;
    display: inline-block;
    transition: all ease-in-out .4s;
}
a:hover{
    text-decoration: none;
    color: #5DB6FF;
}
.btn {
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'Rajdhani';
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
    height: 60px;
    padding: 17px 36px;
    display: inline-block;
    outline: none;
    cursor: pointer;
    border-radius: 0;
    transition: all ease-in-out .4s;
    background-color: #5db6ff;
    color: #FFF !important;
    text-align: center;
    border: none;
    max-width: 100%;
}
.btn:hover{
    background-color: #444;
    color: #FFFFFF !important;
    text-decoration: none;
    border: none;
}
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea, select {
    width: 100%;
    border: 1px solid #cccccc;
    padding: 0 10px;
    height: 40px;
    font-size: 14px;
    line-height: 1;
    color: #666;
    font-family: 'Rajdhani';
    font-weight: 500;
    outline: none;
    background-color: #FFF;
    box-shadow: none;
    overflow: hidden;
    transition: all ease-in-out .4s;
    border-radius: 0;
}
textarea {
    height: 130px;
    padding: 10px;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="number"]:focus, input[type="tel"]:focus, input[type="range"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="time"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="color"]:focus, textarea:focus {
    outline: none;
    box-shadow: none;
}
img{
    max-width: 100%;
    vertical-align: middle;
}
ul{
	list-style: none;
	padding: 0;
	margin: 0;
}
li{
	list-style: none;
}
.container {
    max-width: 1320px;
    padding: 0 20px;
    margin: 0 auto;
}
.navigation, .breadcrumbs, .page-header .header.panel, .header.content, .footer.content, .page-wrapper > .widget, .page-wrapper > .page-bottom, .block.category.event, .top-container, .page-main {
    max-width: 1320px !important;
    width: 100%;
}
.mb-0{
    margin: 0 !important;
}
._keyfocus *:focus, input:not([disabled]):focus, textarea:not([disabled]):focus, select:not([disabled]):focus {
    box-shadow: none;
}
select {
    background: url(../images/angle-down.svg);
    background-repeat: no-repeat;
    background-size: 11px;
    background-position: 85% 50%;
    appearance: none;
    min-width: 70px;
    background-position-x: calc( 100% - 13px );
}
.row {
    display: flex;
    flex-wrap: wrap;
}
.text-center{
    text-align: center !important;
}
.column.main {
    padding: 0 !important;
}

/*Header*/

.page-header .panel.wrapper {
    border-bottom: 1px solid #e1e1e1 !important;
}
.page-header .header.panel {
    padding: 0 20px !important;
    display: flex;
    align-items: center;
    height: 40px;
}
.header-top-left li.welcome {
    color: #333;
    font-weight: 500;
}
.header.panel > .header.links {
    float: none;
}
.header.panel > .header.links > li {
    margin: 0 !important;
}
.header.panel > .header.links > li a {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.75 !important;
    vertical-align: middle;
}
.header.panel > .header.links > li a:hover{
	color: #5DB6FF;
}
/*.page-header .panel.wrapper .switcher.language {
    display: none;
}*/
.header.panel > .header.links > li {
    padding-left: 20px;
    margin-left: 20px !important;
    border-left: 1px solid #e1e1e1;
}
.header.panel > .header.links > li:first-child {
    padding-left: 0px;
    margin-left: 0px !important;
    border-left: none;
}
.header.panel > .header.links > li a.track-my-order:before {
    content: '\f0d1';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
    margin-right: 5px;
    vertical-align: middle;
}
.header.panel > .header.links > li a.payment:before {
    content: '\f0d6';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
    margin-right: 5px;
    vertical-align: middle;
}
.header.content {
    padding: 0 20px !important;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    height: 100px;
}
.logo {
    margin: 0 !important;
    position: static;
    max-width: unset;
}
.logo img {
    width: auto;
}
.header-mid-left {
    width: 22%;
}
.header-mid-center {
    width: 36%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-mid-right {
    width: 42%;
}
.minicart-wrapper {
    float: none;
}
.block-search .control {
    margin: 0 !important;
    padding: 0 !important;
}
.header-mid-center .block-search {
    width: auto;
    padding-left: 0 !important;
    position: relative;
    float: right;
    z-index: 4;
}
.block-search input::placeholder {
    color: #666;
}
.block-search input {
    min-width: 430px;
    margin: 0;
    position: static;
    border: 2px solid #e8e8e8;
    border-radius: 2px;
    height: 50px;
    padding-right: 102px;
}
html:lang(es) .block-search input {
    min-width: 510px;
    padding-right: 120px;
}
.block-search .control {
    margin: 0 !important;
    padding: 0 !important;
    border-top: 0;
}
.block-search .label {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
div.block-search .action.search > span {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: unset;
    clip: unset;
}
div.block-search .action.search:before{
	display: none;
}
div.block-search .action.search {
    background: #5DB6FF;
    opacity: 1;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    color: #FFF;
    padding: 17px 25px;
    cursor: pointer;
}
div.block-search .action.search.disabled, div.block-search .action.search[disabled], fieldset[disabled] div.block-search .action.search {
    pointer-events: unset;
    opacity: 1;
}
div.block-search .action.search {
    background: #5DB6FF;
    opacity: 1;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    color: #FFF;
    padding: 17px 28px;
    right: 0;
    border-radius: 0;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    font-family: 'Rajdhani';
    transition: all ease .4s;
}
div.block-search .action.search:hover, div.block-search .action.search:focus, div.block-search .action.search:active{
    background: #444;
}
.page-header {
    border-bottom: 0;
    margin-bottom: 0;
}
.header-mid-right {
    width: 42%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header-mid-right li.greet.welcome a {
    display: block;
    font-size: 16px;
    line-height: normal;
    font-weight: 600;
    color: #666666;
    text-transform: uppercase;
}
.header-mid-right li.greet.welcome a:hover{
	color: #5DB6FF;
}
.header-mid-right li.greet.welcome span {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}
.header-mid-right li.greet.welcome {
    line-height: 1.3;
    position: relative;
    padding-left: 46px;
}
.header-mid-right li.greet.welcome:before {
    content: '';
    background-image: url(../images/user-icon.png);
    background-size: cover;
    width: 26px;
    height: 30px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.minicart-wrapper {
    margin-left: 25px !important;
    padding-left: 25px;
    border-left: 1px solid #f6f6f6;
}
.cart-icon-wrap {
    display: flex;
    align-items: center;
}
.cart-icon-wrap .icon-block {
    font-size: 30px;
    margin-right: 20px;
}
.cart-icon-wrap .cart-text span.label {
    display: block;
}
.minicart-wrapper .action.showcart {
    color: #666;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.3;
}
.cart-icon-wrap .cart-text span.counter-text {
    display: block;
    font-size: 16px;
    font-weight: 700;
}
.minicart-wrapper .action.showcart:before, .minicart-wrapper .action.showcart.active:before{
	display: none !important;
}
nav.navigation ul {
    padding: 0;
}
.nav-sections-item-content > .navigation {
    padding: 0 20px;
    background: #696969;
}
nav.navigation .level0 > .level-top {
  font-size: 15px;
    font-weight: 600;
    color: #FFF;
    padding: 0 10px;
    line-height: 50px;
}
html:lang(es) nav.navigation .level0 > .level-top {
    padding: 0 8px;
}
nav.navigation .level0 {
    margin: 0;
}
.nav-sections {
    background: #696969;
    margin-bottom: 0 !important;
}
nav.navigation .level0 > .level-top:hover {
    background: #5db6ff;
    color: #FFF;
}
nav.navigation .level0.active > .level-top, nav.navigation .level0.has-active > .level-top {
    border: 0;
    color: #FFF;
    background: #5db6ff;
}
.footer-main {
    background: #696969;
}
.footer-main .copyright-text {
    text-align: center;
    border-top: 1px solid #8f8f8f;
    padding: 35px 0;
}
.footer-main .copyright-text p {
    color: #FFF;
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
}
.payment-info {
    padding: 45px 0 50px;
    text-align: center;
}
.payment-info ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
.payment-info ul li {
    margin: 0 18px;
}
.payment-info ul li img {
    width: 125px;
    height: auto;
}
.subscribe-form-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.subscribe-form-inner .form-block form {
    display: block;
    align-items: center;
}
.subscribe-form-inner .form-block form fieldset {
    display: flex;
    margin-bottom: 0;
}
.subscribe-form-inner .form-block form fieldset .newsletter {
    margin-bottom: 0 !important;
}
.subscribe-form-inner .form-block form .field-recaptcha {
    display: flex;
}
.subscribe-form-inner .form-block form input[type="email"] {
    padding: 26px 20px;
    border: 1px solid #ffffff;
    border-radius: 0;
    background: transparent;
    font-family: 'Lato';
    color: #FFF;
    font-weight: 400;
    width: 300px;
    height: 55px;
    line-height: 1;
}
.subscribe-form-inner .form-block form input[type="email"]::placeholder{
    color: #FFF;
}
.subscribe-form {
    background: #5db6ff;
    padding: 40px 0;
}
.subscribe-form-inner h5 {
    color: #FFF;
    padding-right: 50px;
}
.subscribe-form-inner .form-block form button.action {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    padding: 0 40px;
    color: #5db6ff;
    background: #FFF;
    border: 1px solid #FFF;
    border-left: 0;
    height: 55px;
    font-family: 'Rajdhani';
    border-radius: 0;
    transition: all ease-in-out .4s;
}
.subscribe-form-inner .form-block form button.action:hover {
    background: #5db6ff;
    color: #FFF;
}
.subscribe-form-inner .form-block form div#newsletter-error {
    position: absolute;
}
.block-search .block-content {
    display: flex;
    align-items: center;
}
.block-search .block-content select {
   height: 50px;
    width: 140px;
    padding: 10px 20px 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border: 2px solid #e8e8e8;
    border-radius: 2px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    box-sizing: border-box;
    position: absolute;
}
html:lang(es) .block-search .block-content select{
    width: 160px;
}
.search-autocomplete ul li {
    font-size: 14px;
    padding: 10px 15px;
    border: 1px solid #e5e5e5 !important;
}
.banner-item {
    position: relative;
}
.banner-content {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.banner-content h5 {
    color: #FFF;
    font-size: 36px;
    line-height: normal;
    margin: 0;
}
.banner-content p.small {
    color: #000;
    font-size: 30px;
    /*line-height: normal;*/
    font-weight: 600;
    background-color: #fff;
    display: inline-block;
    padding: 6px;
    margin: 10px 0 0 0;
}
.banner-content-inner {
    width: 38%;
}
.main-banner {
    position: relative;
    max-height: 600px;
}
 .banner-item img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}
.banner-items {
    min-height: 600px;
}
.banner-items {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    -webkit-transition: opacity 1s ease;
}
.banner-items.slick-initialized {
    visibility: visible;
    opacity: 1;
}
.spinner-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 12px;
}
.spinner.spinner--slider {
    position: absolute;
    margin: -4.5em auto 0;
    top: 50%;
    border-radius: 50%;
    width: 9em;
    height: 9em;
    font-size: 6px;
    position: relative;
    color: transparent;
    border-top: 1em solid #5db6ff;
    border-right: 1em solid #5db6ff;
    border-bottom: 1em solid #5db6ff;
    border-left: 1em solid #fff;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: loader 1.1s infinite linear;
    animation: loader 1.1s infinite linear;
}
@-webkit-keyframes loader {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes loader {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.who-we-are {
    padding: 80px 0 215px;
}
.who-we-are .row {
    margin: 0 -30px;
}
.who-we-are .img-wrap {
    width: 60%;
    padding: 0 30px;
    position: relative;
}
.who-we-are .content-wrap {
    width: 40%;
    padding: 0 30px;
}
.who-we-are .img-wrap .img-top {
    padding-left: 125px;
    height: 100%;
}
.who-we-are .img-wrap .img-top img {
    height: 100%;
    object-fit: cover;
}
.experience-wrap {
    width: 335px;
    height: 335px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #5db6ff;
    padding: 45px;
    position: absolute;
    bottom: -135px;
    left: 30px;
}
html:lang(es) .experience-wrap h3 {
    font-size: 34px;
}
.experience-wrap p {
    font-size: 24px;
    line-height: 1.5;
    color: #FFF;
    font-family: 'Alata';
    margin: 0;
}
.experience-wrap h3 {
    font-size: 40px;
    line-height: 50px;
    font-family: 'Alata';
    color: #FFF;
    font-weight: 400;
    margin: 0;
}
.experience-wrap h2 {
    font-size: 115px;
    line-height: 1.25;
    font-family: 'Lato';
    font-weight: 700;
    color: #FFF;
    margin: 0;
}
.experience-wrap-inner {
    position: relative;
}
.experience-wrap-inner:after {
    content: '';
    background-image: url(../images/experience-line.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    height: 250px;
    width: 121px;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-position: right;
}
.who-we-are .content-wrap p {
    margin: 0 0 25px;
    font-weight: 300;
    color: #666;
}
p.sub-title {
    font-size: 16px;
    line-height: 36px;
    font-family: 'Alata';
    text-transform: uppercase;
    color: #5db6ff !important;
    letter-spacing: 2px;
    margin: 0 0 15px !important;
}
p.sub-title::before {
    content: '';
    background-image: url(../images/subtitle-icon.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 22px;
    height: 14px;
    display: inline-block;
    margin-right: 8px;
}
.cms-index-index main#maincontent {
    max-width: 100% !important;
    margin: 0;
    padding: 0;
}
.cms-index-index main#maincontent a#contentarea {
    display: none;
}
.category-list-item {
    width: 25%;
    background: #696969;
}
.cat-all {
    margin: 40px 0 0;
}
.cat-all .btn {
    min-width: 285px;
}
.home-category {
    padding: 40px 0 60px;
}
.home-category .title-wrap {
    margin: 0 0 40px;
}
.category-list-item {
    width: 25%;
    background: #696969;
    position: relative;
    min-height: 320px;
    max-height: 320px;
    overflow: hidden;
}
.category-list-item h5.cat-name {
    margin: 0;
    font-size: 35px;
    line-height: 1;
    color: #FFF;
}
.category-list-item p.cat-count {
    color: #FFF;
    font-size: 15px;
    font-weight: 400;
    margin: 10px 0 0;
}
.category-list-item .cat-image {
    position: absolute;
    right: -25px;
    bottom: -25px;
}
.category-list-item:nth-child(2), .category-list-item:nth-child(4), .category-list-item:nth-child(5), .category-list-item:nth-child(7) {
    background: #5db6ff;
}
.category-list-item:before {
    content: '';
    background-image: url(../images/home-cat-pattern-blue.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 318px;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}
.category-list-item:nth-child(2):before, .category-list-item:nth-child(4):before, .category-list-item:nth-child(5):before, .category-list-item:nth-child(7):before {
    background-image: url(../images/home-cat-pattern-white.png);
    bottom: -128px;
    left: -198px;
    width: 505px;
}
.category-list-item a.cat-img-link {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 60px 40px;
    position: relative;
}
.category-list-item .cat-image img {
    mix-blend-mode: multiply;
    width: 240px;
    height: auto;
    transition: all ease .4s;
}
.category-list-item a.cat-img-link:hover .cat-image img {
    transform: scale(1.2);
}
.category-list-item .cat-details {
    position: relative;
    z-index: 2;
}
.major-categories-items {
    padding: 0 50px;
    margin: 50px 0 0;
}
.major-categories-items .row {
    margin: 0 -20px;
}
.major-categories-item {
    padding: 0 20px;
    width: 50%;
}
.major-categories-item > a {
    height: 100%;
}
.major-categories-inner {
    background-color: #ffffff;
    padding: 30px;
    box-shadow: 0 0 6.5px rgb(0 0 0 / 8%);
    transition: all ease .4s;
    height: 100%;
}
.major-categories-item > a:hover .major-categories-inner {
    box-shadow: 0 0 6.5px rgb(0 0 0 / 20%);
}
.major-categories-inner .title-col {
    display: flex;
    align-items: center;
    margin: 0 0 20px;
}
.major-categories-inner .title-col .img-wrap {
    margin-right: 25px;
}
.major-categories-inner .title-col .img-wrap img {
    width: auto;
    height: 40px;
}
.major-categories-inner p {
    color: #666;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.72;
}
.major-categories {
    padding: 0 0 60px;
}
.best-seller {
    padding: 40px 0 140px;
}
.bestseller-item-inner,
.related-item-inner {
    border: 1px solid #e5e5e5;
    transition: all ease .4s;
}
.bestseller-item-inner:hover,
.related-item-inner:hover {
    box-shadow: 0 0 10px rgb(0 0 0 / 8%);
}
.bestseller-item-inner .pro-img img,
.related-item-inner .pro-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    position: static;
}
.bestseller-item-inner .product-image-container,
.related-item-inner .product-image-container {
    width: 100% !important;
}
.bestseller-item-inner .pro-img > a,
.related-item-inner .pro-img > a {
    width: 100%;
    height: 100%;
}
.bestseller-item-inner .pro-details,
.related-item-inner .pro-details {
    padding: 30px 15px;
}
.bestseller-item-inner .pro-details p.category-name,
.related-item-inner .pro-details p.category-name {
    font-size: 16px;
    font-weight: 700;
    color: #cccccc;
    font-family: 'Rajdhani';
    line-height: 1;
    margin: 0 0 10px;
    text-transform: capitalize;
}
.bestseller-item-inner .pro-details a.pro-name,
.related-item-inner .pro-details a.pro-name {
    font-size: 16px;
    line-height: normal;
    color: #333;
    font-weight: 500;
    min-height: 60px;
}
.bestseller-item-inner .pro-details a.pro-name:hover,
.related-item-inner .pro-details a.pro-name:hover {
    color: #5DB6FF;
}
.bestseller-item-inner .cart-btn-parent,
.related-item-inner .cart-btn-parent {
    margin: 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bestseller-item-inner .cart-btn-parent .price,
.related-item-inner .cart-btn-parent .price {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Rajdhani';
    color: #5DB6FF;
    line-height: 1;
}
button.addto-cart-btn {
    width: 40px;
    height: 40px !important;
    border-radius: 20px !important;
    border: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #f7f7f7 !important;
    color: #333 !important;
    transition: all ease .4s;
}
button.addto-cart-btn:hover {
    background: #5DB6FF !important;
    color: #FFF !important;
}
.bestseller-items,
.related-items {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -34px;
    margin-top: 60px;
}
.bestseller-item,
.related-item {
    width: 25%;
    padding: 0 34px;
}
.bestseller-items .slick-prev,
.bestseller-items .slick-next,
.related-items .slick-prev,
.related-items .slick-next {
    position: absolute;
    bottom: -100px;
    top: unset;
    background: #5DB6FF;
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 0;
    border: 0 !important;
    box-shadow: none;
    outline: none;
    opacity: 1;
    color: #FFF;
    transform: skewX(-10deg);
    transition: all ease .4s;
}
.bestseller-items .slick-prev.slick-disabled:before,
.bestseller-items .slick-next.slick-disabled:before,
.related-items .slick-prev.slick-disabled:before,
.related-items .slick-next.slick-disabled:before {
    opacity: 1;
}
.bestseller-items .slick-prev:before,
.bestseller-items .slick-next:before,
.related-items .slick-prev:before,
.related-items .slick-next:before {
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
    color: #FFF;
    font-size: 36px;
    opacity: 1;
}
.bestseller-items .slick-prev:before,
.related-items .slick-prev:before {
    content: '\f104';
}
.bestseller-items .slick-next:before,
.related-items .slick-next:before {
    content: '\f105';
}
.bestseller-items .slick-prev:hover,
.bestseller-items .slick-next:hover,
.related-items .slick-prev:hover,
.related-items .slick-next:hover {
    color: #FFF;
    outline: none;
    background: #444;
    border: 0;
}
.bestseller-items button.slick-next.slick-arrow,
.related-items button.slick-next.slick-arrow {
    left: 0;
    right: -60px;
    margin: auto;
}
.bestseller-items button.slick-prev.slick-arrow,
.related-items button.slick-prev.slick-arrow {
    left: -60px;
    right: 0;
    margin: auto;
}
.bestseller-item-inner .product-image-wrapper,
.related-item-inner .product-image-wrapper {
    padding: 0 !important;
    height: 100%;
    width: 100%;
    position: static;
}
.minicart-wrapper .action.showcart .counter.qty {
    background: #5db6ff;
    position: absolute;
    top: -7px;
    left: 24px;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 0;
    padding: 0;
    line-height: 1;
}
.minicart-wrapper .action.showcart {
    position: relative;
}
.minicart-wrapper .block-minicart {
    border-color: #e3e3e3;
}
.minicart-wrapper .block-minicart:after {
    border-color: transparent transparent #e3e3e3 transparent;
}
.block-minicart .block-content > .actions > .primary .action.primary {
    font-size: 18px;
    text-transform: uppercase;
    font-family: 'Rajdhani';
    font-weight: 600;
    line-height: 50px;
    text-decoration: none;
    height: 50px;
    padding: 0 36px;
    display: inline-block;
    outline: none;
    cursor: pointer;
    border-radius: 0;
    transition: all ease-in-out .4s;
    background-color: #5db6ff;
    color: #FFF !important;
    text-align: center;
    border: none;
    max-width: 100%;
    margin: 0;
}
.block-minicart .block-content > .actions > .primary .action.primary:hover{
    background-color: #444;
    color: #FFFFFF !important;
    text-decoration: none;
    border: none;
}
.block-minicart .amount .price-wrapper:first-child .price {
    color: #5db6ff;
}
.minicart-items .product-item-name a {
    color: #666;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
}
.minicart-items .product-item-name a:hover {
    color: #5db6ff;
    text-decoration: none;
}
.minicart-items .product-item-details .price-including-tax, .minicart-items .product-item-details .price-excluding-tax {
    margin: 10px 0 0;
}
.minicart-items .product-item-details .price {
    color: #5db6ff;
    font-weight: 700;
    font-size: 18px;
}
.minicart-items .item-qty {
    width: 60px;
    height: 40px;
    border-width: 1px;
    margin-left: 5px;
    padding: 15px 10px;
    border-radius: 0;
}
.minicart-items .update-cart-item {
    font-size: 15px;
    text-transform: uppercase;
    font-family: 'Rajdhani';
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
    height: 40px;
    padding: 8px 15px;
    display: inline-block;
    outline: none;
    cursor: pointer;
    border-radius: 0;
    transition: all ease-in-out .4s;
    background-color: #5db6ff;
    color: #FFF;
    text-align: center;
    border: none;
    max-width: 100%;
    margin: 0;
}
.minicart-items .update-cart-item:hover {
    background: #444;
}
.minicart-items .action.edit:hover:before, .minicart-items .action.delete:hover:before {
    color: #5db6ff;
}
.minicart-wrapper .product .actions {
    margin: -34px 0 0;
}
.minicart-items .action.edit:before, .minicart-items .action.delete:before {
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
    content: '\f044';
    color: #666;
    font-size: 16px;
}
.minicart-items .action.delete:before {
    content: '\f2ed' !important;
}
.minicart-items .action.edit, .minicart-items .action.delete {
    margin-left: 8px;
}
a.action.viewcart {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #5db6ff;
}
.minicart-wrapper .block-minicart {
    padding-bottom: 0;
}
.block-minicart .block-content > .actions {
    margin: 20px 0 20px;
}
a.action.viewcart:hover {
    color: #666;
}
.minicart-wrapper .action.close:before {
    color: #666;
}
.minicart-items .product-item:not(:first-child) {
    border-top: 1px solid #e8e8e8;
}
.minicart-items-wrapper {
    border-color: #e8e8e8;
}

/*All Category*/

.breadcrumbs {
    margin: 0 auto;
    padding: 20px;
}
.breadcrumbs li strong, .breadcrumbs li a {
    font-size: 16px;
    color: #666 !important;
    font-weight: 700;
    font-family: 'Lato';
}
.breadcrumbs li a:hover {
    color: #5db6ff !important;
    text-decoration: none;
}
.breadcrumbs .item:not(:last-child):after {
    content: '>';
    font-size: 16px;
    font-weight: 700;
    font-family: 'Lato';
    color: #666;
    margin: 0 5px;
    vertical-align: unset;
}
.breadcrumbs .items > li {
    vertical-align: unset;
}
.breadcrumbs .items {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.breadcrumbs .items li.home a:before {
    content: '';
    background: url(../images/home.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 24px;
    height: 22px;
    display: inline-block;
}
.breadcrumbs .items li.home a {
    font-size: 0;
}
.category-section ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}
.category-section ul li {
    width: 20%;
    padding: 0 20px;
    height: 100%;
    margin: 0 0 30px;
}
.category-section ul li .cat-block {
    width: 100%;
    height: 100%;
    text-align: center;
}
.category-section ul li .cat-block a {
    border: 1px solid #e9e9e9;
    width: 100%;
    height: 100%;
    /* min-height: 352px; */
    padding: 25px 20px;
    transition: all ease .4s;
    position: relative;
}
.category-section ul li .cat-block a:hover:before{
    opacity: 1;
}
.category-section ul li .cat-block a:before {
    content: '';
    background-image: url(../images/category-pattern.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 210px;
    height: 195px;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
    transition: all ease .4s;
}
.category-section ul li .cat-block a:hover {
    border-color: transparent;
    box-shadow: 0 0 12px rgb(0 0 0 / 9%);
}
.category-section ul li .cat-image img {
    max-height: 130px;
    width: auto;
}
.category-section ul li .cat-image {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 30px;
}
.category-section ul li h6 {
    font-size: 26px;
    line-height: 28px;
    color: #696969;
    font-weight: 700;
    margin: 0 0 10px;
}
.category-section ul li .product-count p {
    font-size: 16px;
    color: #5db6ff;
    line-height: 1;
}
.category-section {
    padding: 30px 0 60px;
}
a#contentarea {
    display: none;
}
.brand-section ul {
    display: flex;
    flex-wrap: wrap;
    margin-left: 1px;
}
.brand-section ul li {
    border: 1px solid #d7d7d7;
    height: 153px;
    width: 11.11%;
    margin: 0;
    margin-left: -1px;
    margin-bottom: -1px;
}
.brand-section {
    padding: 30px 0 100px;
}
.brand-section ul li .brand-block, .brand-section ul li .brand-image {
    width: 100%;
    height: 100%;
}
.brand-section ul li .brand-image a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF;
    padding: 10px;
}
.brand-section ul li .brand-image a:hover {
    box-shadow: 0px 0px 16px 6px rgb(0 0 0 / 10%) inset;
}
.page-main > .page-title-wrapper .page-title {
    color: #666666;
    font-size: 45px;
    margin: 0;
}
/*table.category-list-items {
    background: #FFF;
    box-shadow: 1.5px 2.598px 21.5px rgb(0 0 0 / 14%);
    border: 0;
    border-left: 20px solid #FFF;
    border-right: 20px solid #FFF;
    position: relative;
}
table.category-list-items tbody tr:first-child td {
    border-top: 0;
}
table.category-list-items thead:after {
    box-shadow: 0.349px 4.988px 4.5px rgb(0 0 0 / 7%);
    content: '';
    width: calc(100% + 40px);
    height: 80px;
    position: absolute;
    left: -20px;
    top: 0;
}
table.category-list-items th {
    font-size: 16px;
    color: #666;
    font-family: 'Lato';
    font-weight: 700;
    padding: 0px 20px;
    text-transform: capitalize;
    height: 80px;
    vertical-align: middle;
    text-align: center;
}*/
table.category-list-items th {
    font-size: 16px;
    color: #666;
    font-family: 'Lato';
    font-weight: 700;
    padding: 0px 20px;
    text-transform: capitalize;
    height: 80px;
    vertical-align: middle;
    text-align: center;
}
table.category-list-items td {
    padding: 0px 20px;
    text-transform: capitalize;
    height: 80px;
    vertical-align: middle;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Lato';
    color: #999999;
    border: 1px solid #ececec;
    text-align: center;
}
.category-list-items .product-item-photo span.product-image-wrapper img {
    width: 65px;
    position: static;
    height: 55px;
    margin: 0;
    object-fit: cover;

}
.category-table-view {
    padding: 0 0 160px;
}
table.category-list-items td.product-sku a {
    font-size: 18px;
    font-weight: 700;
    color: #666;
    font-family: 'Lato';
}
table.category-list-items td.product-sku a:hover {
    color: #5db6ff;
}
table.category-list-items a.product-item-photo span.product-image-container {
    width: auto !important;
}
table.category-list-items a.product-item-photo {
    border: 1px solid transparent;
    margin: 0 auto;
    width: auto;
    text-align: center;
    display: block;
}
table.category-list-items .product-item-photo span.product-image-wrapper img{
    left: auto;
    right: auto;
    margin: 0 auto;
}
table.category-list-items a.product-item-photo:hover {
    border-color: #e9e9e9;
}
.text-left {
    text-align: left !important;
}
.block-content.filter-content strong.block-subtitle.filter-subtitle {
    display: none;
}
.filter-options .filter-options-title {
    display: none;
}
dd.filter-options-content ol.items {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.filter-options .filter-options-content .item {
    margin: 0 75px 0 0;
}
.filter-options .filter-options-content li.item:last-child {
    margin-right: 0;
}
.filter-options .filter-options-content .item a {
    color: #666666;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Lato';
    position: relative;
    padding-left: 30px;
}
.filter-options .filter-options-content .item span.count {
    display: none;
}
.filter-options .filter-options-content .item a:hover, .filter-options .filter-options-content .item a:focus{
    color: #5db6ff;
}
.filter-options .filter-options-content .item a:before {
    content: '';
    width: 16px;
    height: 16px;
    border: 1px solid #cccccc;
    position: absolute;
    background: #FFF;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: all ease .4s;
}
.filter-options .filter-options-content .item a:hover:before {
    border-color: #5db6ff;
}
.filter-options .filter-options-content .item a:focus:before {
    border-color: #5db6ff;
    background: #5db6ff;
}
.block.filter .filter-title {
    display: none;
}
.catalog-category-view .block.filter {
    margin: 0 0 20px;
}
.catalog-category-view .page-title-wrapper {
    margin: 0 0 40px;
    text-align: left;
}
.catalog-category-view .page-title-wrapper .page-title {
    font-size: 22px;
    font-weight: 500;
    text-transform: capitalize;
    color: #5db6ff;
    font-style: italic;
    margin: 0;
}
.filter-current .filter-label {
    display: none;
}
.filter-current .block-subtitle {
    display: none;
}
.filter-current .item span.filter-value {
    color: #666666;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Lato';
    position: relative;
}
.filter-current .item {
    margin-bottom: 0;
}
.filter-current .item a.action.remove{
    font-size: 0;
}
.filter-current .item a.action.remove:before {
    content: '\f00d';
    font-family: 'Font Awesome 5 Pro';
    font-size: 16px;
    font-weight: 300;
    color: #666666;
    margin-left: 5px;
}
.filter-current .item a.action.remove:hover:before{
    color: #5DB6FF;
}
.filter-current + .filter-actions {
    display: none;
}
.products-grid li.item.product.product-item .product-image-wrapper {
    padding-bottom: 0 !important;
    width: 100%;
    height: 100%;
}
.products-grid .product.product-item .product-image-wrapper .product-image-photo {
    position: static;
    width: auto;
    height: 150px;
}
.products-grid li.item.product.product-item .product-image-container {
    width: 100% !important;
}
.products-grid li.item.product.product-item {
    margin: 0 0 24px !important;
    width: 16.66% !important;
    padding: 0 12px;
}
.products-grid li.item.product.product-item .product-item-info {
    border: 1px solid #e9e9e9;
    transition: all ease .4s;
    text-align: center;
}
.products-grid li.item.product.product-item .product-item-info:hover {
    box-shadow: 0 0 12px rgb(0 0 0 / 9%);
    border-color: transparent;
}
.products-grid .product-item-actions {
    margin: 0;
}
.products-grid li.item.product.product-item .product-item-name {
    margin: 0;
}
.products-grid li.item.product.product-item .product-item-name > a {
    font-size: 19px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0 0 10px;
    width: 100%;
    min-height: 66px;
}
.products.wrapper.grid.products-grid {
    margin: 0;
    padding: 0 0 125px;
}
.products-grid li.item.product.product-item .product-item-name > a:hover{
    color: #5DB6FF;
    text-decoration: none;
}
.products-grid li.item.product.product-item .product.details.product-item-details {
    padding: 20px 15px;
}
.products-grid li.item.product.product-item .product-sku p {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 1px;
    color: #000;
    text-transform: uppercase;
}
.products-grid li.item.product.product-item .product-sku {
    margin: 0 0 10px;
}
.products-grid li.item.product.product-item button.tocart {
    font-family: 'Rajdhani';
    background: #5DB6FF;
    color: #FFF;
    border-radius: 0;
    text-transform: uppercase;
    height: 40px;
    font-size: 15px;
    font-weight: 600;
    padding: 7px 25px;
    border: 0;
    transition: all ease-in-out .4s;
}
.products-grid li.item.product.product-item button.tocart:hover {
    background: #666;
}
.products-grid .products.list.items.product-items {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

/*Product View*/

.catalog-product-view .column.main {
    margin: 20px 0 0;
}
.product-info-main .page-title-wrapper .page-title {
    font-size: 35px;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 20px !important;
    color: #000;
}
.product-info-price .product-reviews-summary {
    display: none;
}
.product-info-main .product-info-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 25px;
}
.product-info-price .price-box {
    width: 50%;
    order: -1;
    margin: 0;
}
.product-info-price .product-info-stock-sku {
    width: 50%;
    text-align: right;
}
.product-info-price .product-info-stock-sku .product.attribute.sku {
    display: none;
}
.product-info-price .product-info-stock-sku .stock {
    margin: 0;
}
.product-info-main .price-box .price-wrapper .price, .product-options-bottom .price-box .price-wrapper .price {
    font-size: 35px;
    font-weight: 700;
    line-height: 1;
    color: #5db6ff;
}
.product-info-price .product-info-stock-sku .stock {
    font-size: 18px;
    font-weight: 600;
    color: #00a651;
}
.product-info-price .product-info-stock-sku .stock:after {
    display: inline-block;
    content: '';
    width: 11px;
    height: 11px;
    background: #3cb878;
    border-radius: 5px;
    margin-left: 10px;
}
.product-info-price .product-info-stock-sku .stock.unavailable {
    color: red;
}
.product-info-price .product-info-stock-sku .stock.unavailable:after {
    background: red;
}
.product-info-main .product.attribute.overview strong.title {
    color: #000;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    margin: 0 0 10px;
    display: inline-block;
}
.product-info-main .product.attribute.overview .value {
    font-size: 14px;
    line-height: 25px;
    font-weight: 300;
    font-family: 'Lato';
    color: #666;
}
.product-info-main .product.attribute.overview {
    margin: 0 0 20px;
}
.product-info-main .box-tocart .field.qty, .product-options-bottom .box-tocart .field.qty {
    width: 100%;
    display: flex !important;
    margin: 0;
    align-items: center;
    padding: 0;
}
.product-info-main .box-tocart, .product-options-bottom .box-tocart {
    width: 100%;
    display: inline-block;
    margin: 0;
}
.product-info-main .box-tocart .field.qty label.label {
    font-size: 16px;
    color: #999999;
    font-weight: 600;
    margin: 0 20px 0 0;
    width: auto !important;
}
.product-info-main .box-tocart .field .quantity-adder {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.product-info-main .box-tocart .field .quantity-adder .add-action {
    width: 45px;
    height: 45px;
    border: 1px solid #cccccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #999999;
    cursor: pointer;
}
.product-info-main .box-tocart .field .quantity-adder input#qty {
    width: 82px;
    height: 45px;
    border: 1px solid #cccccc;
    border-radius: 0;
    padding: 0;
    border-left: 0;
    border-right: 0;
    font-size: 16px;
    color: #999999;
    font-weight: 500;
}
html:lang(es) .product-info-main .box-tocart .action.tocart{
    padding: 17px 25px;
}
.product-info-main .box-tocart .actions {
    padding: 0;
    margin: 20px 0 0;
    width: 100%;
    display: inline-block;
    text-align: left;
}
.product-info-main .box-tocart .action.tocart {
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'Rajdhani';
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
    height: 60px;
    padding: 17px 70px;
    display: inline-block;
    outline: none;
    cursor: pointer;
    border-radius: 0;
    transition: all ease-in-out .4s;
    background-color: #5db6ff;
    color: #FFF !important;
    text-align: center;
    border: none;
    max-width: 100%;
}
.product-info-main .box-tocart .action.tocart:hover{
    background-color: #666;
}
.product-info-main .box-tocart .action.tocart i {
    margin-right: 10px;
    vertical-align: middle;
}
.product-info-main .box-tocart .fieldset {
    margin: 0;
}
.product-addto-links a.action.towishlist, .product-addto-links a.action.tocompare {
    border-radius: 0;
    font-size: 15px;
    font-weight: 500;
    height: 60px;
    color: #999;
    font-family: 'Rajdhani';
    border: 1px solid #CCC;
    background: transparent;
    padding: 21px 20px;
    box-shadow: none;
    outline: none;
    display: flex;
    align-items: center;
    width: auto;
    margin: 0 10px;
}
.product-addto-links a.action.towishlist:hover, .product-addto-links a.action.tocompare:hover {
    background: #5DB6FF;
    color: #FFF;
}
.product-addto-links a.action.towishlist i, .product-addto-links a.action.tocompare i {
    color: #5db6ff;
    font-size: 17px;
    margin-right: 15px;
}
.product-addto-links a.action.towishlist:hover i, .product-addto-links a.action.tocompare:hover i {
    color: #FFF;
}
.product-info-main .product-addto-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
}
.product-social-links {
    width: auto;
    display: block;
    margin: -60px 0 0 290px;
}
html:lang(es) .product-social-links {
    margin: -60px 0 0 240px;
}
.catalog-product-view .product-info-main {
    width: 52% !important;
    padding-left: 45px;
}
.catalog-product-view .product.media {
    width: 48% !important;
    margin: 0;
}
.catalog-product-view .product-info-main {
    width: 52% !important;
    padding-left: 45px;
}
.product.info.detailed {
    margin: 60px 0 0;
    display: inline-block;
    width: 100%;
}
.fotorama__thumb-border {
    border: 1px solid #5db6ff !important;
    background-image: unset !important;
}
.fotorama__fullscreen-icon:focus:after, .fotorama__zoom-out:focus:after, .fotorama__zoom-in:focus:after, .fotorama__arr:focus:after, .fotorama__stage__shaft:focus:after, .fotorama__nav__frame--thumb:focus .fotorama__thumb:after, .fotorama__nav__frame--dot:focus .fotorama__dot:after{
    box-shadow: none !important;
}
.fotorama__arr .fotorama__arr__arr {
    background-image: none !important;
    text-align: center;
}
.fotorama__arr .fotorama__arr__arr::before {
    content: '\f105';
    font-weight: 300;
    font-family: 'Font Awesome 5 Pro';
    font-size: 50px;
    color: #666;
}
.fotorama__arr--prev .fotorama__arr__arr::before {
    content: '\f104';
}
.fotorama__arr {
    background: transparent !important;
}
.product-tab-title-items {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    background: #FFF;
    padding: 0 10px;
}
.product.data.items .data.item.title > a {
    justify-content: center;
    border: 1px solid transparent;
    font-size: 20px;
    line-height: 1;
    font-weight: 600;
    color: #000;
    padding: 10px 21px;
}
.product.data.items .data.item.title {
    margin: 0 5px;
}
.product.data.items .data.item.title.active > a {
    border-color: #5db6ff;
}
.product-tab-title-parent {
    position: relative;
    text-align: center;
    margin: 0 0 30px;
}
.product-tab-title-parent:after {
    content: '';
    height: 1px;
    width: 100%;
    position: absolute;
    background: #e1e1e1;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.product-tab-content-items .product.attribute {
    max-width: 100%;
    margin: 0 auto;
}
.product-tab-content-items .product.attribute .value {
    text-align: left;
    font-size: 14px;
    line-height: 22px;
    font-weight: 300;
    font-family: 'Lato';
}
/*.product-tab-content-items .product.attribute .value br {
    display: none;
}*/
.product.info.detailed .product.data.items {
    margin: 0;
}
.product.info.detailed {
    margin: 60px 0 90px;
    display: inline-block;
    width: 100%;
}
.fieldset .review-legend.legend strong {
    color: #000;
}
legend.legend.review-legend span {
    color: #000;
}
.review-form {
    max-width: 100%;
}
.review-fieldset > .field > .label {
    width: 100% !important;
    text-align: left !important;
    padding: 0 !important;
    margin: 0 0 10px !important;
    font-size: 16px;
    color: #666;
    font-weight: 600;
}
.review-form-actions {
    margin-left: 0 !important;
}
.review-form .action.submit.primary {
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'Rajdhani';
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
    height: 60px;
    padding: 17px 35px;
    display: inline-block;
    outline: none;
    cursor: pointer;
    border-radius: 0;
    transition: all ease-in-out .4s;
    background-color: #5db6ff;
    color: #FFF !important;
    text-align: center;
    border: none;
    max-width: 100%;
    margin: 0;
    border: 0 !important;
}
.review-form .action.submit.primary:hover{
    background-color: #666;
}
.review-field-ratings .review-field-rating .label {
    padding-right: 30px;
    font-size: 15px;
    color: #666;
}
input.mage-error, select.mage-error, textarea.mage-error {
    border-color: #ed8380 !important;
}
.review-control-vote label:before {
    color: #5DB6FF;
}
.fieldset.review-fieldset > .field:not(.choice) > .control {
    width: 100%;
}
.review-form {
    max-width: 80%;
}
.product-info-main .product.attribute.overview .value ul li {
    margin: 0;
    font-size: 14px;
    line-height: 25px;
    font-weight: 300;
    font-family: 'Lato';
    color: #666;
    position: relative;
    display: flex;
    align-items: flex-start;
}
.product-info-main .product.attribute.overview .value ul li:before {
    content: '\f105';
    font-family: 'Font Awesome 5 Pro';
    font-size: 18px;
    color: #5db6ff;
    vertical-align: middle;
    margin-right: 10px;
}
.product-tab-title-items .data.switch .counter {
    color: #000;
}
.review-list .block-title strong {
    font-size: 30px;
    font-weight: 700;
    color: #666;
    text-transform: capitalize;
}
.review-title {
    margin: 0 0 20px;
    font-size: 16px;
    font-weight: 400;
    color: #666;
}
.review-ratings {
    float: none;
}
.review-content {
    width: 100%;
    text-align: left !important;
    margin: 10px 0 20px !important;
    font-size: 16px;
    color: #666;
    font-weight: 400;
}
.review-details {
    margin: 0 !important;
}
.review-details p {
    font-size: 15px;
    font-family: 'Rajdhani';
    color: #000;
}
.review-details p strong {
    font-weight: 400;
}
.rating-summary .rating-result > span:before {
    color: #5DB6FF;
}
.product-top {
    max-width: 1170px;
    margin: auto;
}
.product-addto-links a.action.towishlist, .product-addto-links a.action.tocompare{
    margin-right: 0;
}
.catalog-product-view .product.media a#gallery-prev-area {
    display: none;
}
.catalog-product-view .breadcrumbs {
    max-width: 1210px !important;
}
.fotorama__thumb{
    background-color: #FFF !important;
}
.fotorama__nav-wrap.fotorama__nav-wrap--horizontal {
    margin: 20px 0 0;
}
.product-bestseller{
    padding: 0 0 190px;
}
.product-related{
    padding-bottom: 60px;
}
.catalog-product-view .page.messages {
    max-width: 1170px;
    margin: 0 auto;
}
.product-add-form .fieldset > .field:not(.choice) > .label {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px;
}
.product-options-wrapper .options-list .field.choice label {
    font-family: 'Lato';
    font-size: 14px;
    line-height: 1.5;
    font-weight: 300;
    color: #666666;
    position: relative;
    padding-left: 26px;
    display: block;
}
.product-options-wrapper .options-list .field.choice label span.price-notice {
    font-weight: 900;
    color: #5db6ff;
    margin-left: 4px;
}
.product-options-wrapper .options-list .field.choice {
    margin: 0 0 10px;
}
.product-options-wrapper .options-list .field.choice input[type="checkbox"] {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}
.product-options-wrapper .options-list .field.choice label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #c2c2c2;
    padding: 7px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 3px;
    vertical-align: middle;
    cursor: pointer;
    transition: all ease .3s;
}
.product-options-wrapper .options-list .field.choice input[type="checkbox"]:checked + label:after {
    content: '\f00c';
    display: block;
    position: absolute;
    top: 2px;
    left: 3px;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
    font-size: 12px;
    color: #FFF;
}
.product-options-wrapper .options-list .field.choice input[type="checkbox"]:checked + label:before{
    background-color: #5db6ff;
    border-color: #5db6ff;
}
.minicart-items .product-item-details .product.options .product.options.list {
    margin: 8px 0 20px;
}
/*.page-title-wrapper {
    text-align: center;
}*/

/*Account*/

.customer-account-login main#maincontent, .customer-account-create main#maincontent, .customer-account-forgotpassword main#maincontent{
    padding: 50px 20px;
}
.customer-account-login .page-title-wrapper, .customer-account-create .page-title-wrapper, .customer-account-forgotpassword .page-title-wrapper{
    text-align: center;
}
.customer-account-login .page-title-wrapper, .customer-account-create .page-title-wrapper, .customer-account-forgotpassword .page-title-wrapper{
    /*text-align: left;*/
    margin: 0 0 40px;
}
.login-container .block.block-customer-login {
    border: 1px solid #CCC;
    padding: 30px;
    box-shadow: 0 0 3px rgb(0 0 0 / 10%);
    float: none !important;
    margin: 0 auto;
    width: 40%;
}
.login-container .block.block-new-customer {
    border: 1px solid #CCC;
    padding: 30px;
    box-shadow: 0 0 3px rgb(0 0 0 / 10%);
    float: none !important;
    margin: 0 auto;
    margin-top: 30px;
    width: 40%;
}
.login-container .block .block-title {
    border: 0;
    font-size: 35px;
    color: #666;
    padding: 0;
    text-align: center;
    margin: 0;
}
.login-container .block .block-title strong {
    font-weight: 600;
}
.login-container .field.note, .block.block-new-customer .block-content > p {
    margin: 0 0 25px;
    font-weight: 400;
    color: #666;
    font-size: 16px;
    text-align: center;
    margin: 0 0 30px !important;
}
.fieldset.login > .field:not(.choice) > .label {
    width: 100%;
    text-align: left;
    margin: 0 0 5px;
    font-size: 15px;
    color: #666;
    font-weight: 500;
    padding: 0;
}
.fieldset.login > .field:not(.choice) > .control {
    width: 100%;
}
.fieldset.login > .field {
    margin: 0 0 20px;
}
.login-container .fieldset:after{
    display: none;
}
form.form-login .actions-toolbar {
    margin-left: 0 !important;
}
fieldset.fieldset.login {
    margin: 0;
}
.actions-toolbar .secondary a.action {
    font-size: 16px;
    text-decoration: underline;
    color: #5DB6FF;
}
.actions-toolbar .secondary a.action:hover{
    color: #666;
}
.customer-account-login .actions-toolbar .primary .action, .customer-account-create .actions-toolbar .primary .action{
    margin: 0;
    font-size: 18px;
    text-transform: uppercase;
    font-family: 'Rajdhani';
    font-weight: 600;
    text-decoration: none;
    height: 50px;
    line-height: 50px;
    padding: 0 36px;
    display: inline-block;
    outline: none;
    cursor: pointer;
    border-radius: 0;
    transition: all ease-in-out .4s;
    background-color: #5db6ff;
    color: #FFF !important;
    text-align: center;
    border: none;
    max-width: 100%;
}
.customer-account-login .actions-toolbar .primary .action:hover, .customer-account-create .actions-toolbar .primary .action:hover{
    background-color: #666;
    color: #FFFFFF !important;
    text-decoration: none;
    border: none;
}
.customer-account-login .actions-toolbar .secondary a.action, .customer-account-create .actions-toolbar .secondary a.action{
    margin: 0;
    line-height: 50px;
}
.form.create.account {
    border: 1px solid #ccc;
    padding: 30px;
    box-shadow: 0 0 3px rgb(204 204 204 / 10%);
    width: 40% !important;
    min-width: 40% !important;
    margin: 0 auto;
}
.form.create.account fieldset.fieldset legend.legend {
    margin-left: 0;
    font-size: 25px;
    color: #666;
    padding: 0;
    font-weight: 600;
    margin-bottom: 15px;
}
.form.create.account fieldset.fieldset{

}
.form.create.account fieldset.fieldset label.label {
    width: 100%;
    text-align: left;
    margin: 0 0 5px;
    font-size: 15px;
    color: #666;
    font-weight: 500;
    padding: 0;
}
.form.create.account fieldset.fieldset .control {
    width: 100%;
}
.form.create.account fieldset.fieldset .field {
    margin: 0 0 20px !important;
}
.form.create.account .fieldset > .field.choice:before, .form.create.account .fieldset > .field.no-label:before{
    display: none;
}
.form.create.account fieldset.fieldset {
    margin: 0;
}
.form.create.account .actions-toolbar {
    margin-left: 0;
}
.form.create.account .field.choice label {
    position: relative;
    padding-left: 26px !important;
}
.form.create.account .field.choice input[type="checkbox"] {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}
.form.create.account .field.choice label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #c2c2c2;
    padding: 7px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 1px;
    vertical-align: middle;
    cursor: pointer;
    transition: all ease .3s;
}
.form.create.account .field.choice input[type="checkbox"]:checked + label:after {
    content: '\f00c';
    display: block;
    position: absolute;
    top: 2px;
    left: 3px;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
    font-size: 12px;
    color: #FFF;
}
.form.create.account .field.choice input[type="checkbox"]:checked + label:before{
    background-color: #5db6ff;
    border-color: #5db6ff;
}
.field.choice .field-tooltip{
    top: 0;
}
.form.create.account fieldset.fieldset.additional_info {
    margin-bottom: 20px;
}
/*.form.create.account fieldset.fieldset .field.choice.newsletter {
    margin: 0 0 5px;
}*/
.login-container .block .login .actions-toolbar > .secondary {
    float: right !important;
}
.login-container .field.note a {
    font-size: 16px;
    text-decoration: underline;
    color: #5DB6FF;
}
.login-container .field.note a:hover {
    color: #666;
}
form.password.forget {
    min-width: 40%;
    width: 40%;
    margin: 0 auto;
    border: 1px solid #CCC;
    padding: 30px;
    box-shadow: 0 0 3px rgb(0 0 0 / 10%);
}
form.password.forget .field.note {
    font-weight: 400;
    color: #666;
    font-size: 16px;
    text-align: left;
    margin: 0 0 30px !important;
}
form.password.forget .fieldset .field label.label {
    width: 100%;
    text-align: left;
    margin: 0 0 5px;
    font-size: 15px;
    color: #666;
    font-weight: 500;
    padding: 0;
}
form.password.forget .fieldset .field .control {
    width: 100%;
}
form.password.forget .fieldset {
    margin: 0 0 20px;
}
form.password.forget .actions-toolbar {
    margin: 0 !important;
}
form.password.forget .actions-toolbar button.action.submit.primary {
    margin: 0;
    font-size: 18px;
    text-transform: uppercase;
    font-family: 'Rajdhani';
    font-weight: 600;
    text-decoration: none;
    height: 50px;
    line-height: 50px;
    padding: 0 36px;
    display: inline-block;
    outline: none;
    cursor: pointer;
    border-radius: 0;
    transition: all ease-in-out .4s;
    background-color: #5db6ff;
    color: #FFF !important;
    text-align: center;
    border: none;
    max-width: 100%;
}
form.password.forget .actions-toolbar button.action.submit.primary:hover {
    background-color: #666;
    color: #FFFFFF !important;
    text-decoration: none;
    border: none;
}
form.password.forget .actions-toolbar .secondary a.action {
    margin: 0;
    line-height: 50px;
}
.product.info.detailed .additional-attributes.table {
    border: 1px solid #ececec;
}
.product.info.detailed .additional-attributes.table th, .product.info.detailed .additional-attributes.table td {
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 400;
    color: #666;
}
.product.info.detailed .additional-attributes.table th {
    border-right: 1px solid #ececec;
    font-weight: 700;
}
.product.info.detailed .additional-attributes.table caption.table-caption {
    display: none;
}
.catalog-product-view .page-title-wrapper {
    text-align: left;
}
.account main#maincontent {
    padding: 50px 20px;
}
.catalogsearch-result-index .sidebar {
    display: none;
}
.catalogsearch-result-index .column.main {
    width: 100% !important;
    margin: 40px 0 0;
}

/*My Account*/

.account .page-title-wrapper .page-title {
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 30px;
    color: #000;
}
.account.page-layout-2columns-left .column.main {
    width: 75% !important;
}
.account.page-layout-2columns-left .sidebar-main, .account.page-layout-2columns-left .sidebar-additional {
    width: 25% !important;
    padding-right: 30px;
}
.block-collapsible-nav .content {
    background: #f7f7f7;
    padding: 15px 0;
}
.account .sidebar.sidebar-main li a {
    font-size: 16px;
    color: #000;
    padding: 8px 15px;
    font-weight: 500;
}
.account .sidebar.sidebar-main li strong {
    font-size: 16px;
    color: #000;
    padding: 8px 15px;
    font-weight: 500;
}
.account .sidebar.sidebar-main li.current > strong {
    border-color: #5db6ff;
    color: #5db6ff;
}
.account .sidebar.sidebar-main li.current a {
    border-color: #5db6ff;
    color: #5db6ff;
}
.account .sidebar.sidebar-main li.current a strong {
    color: #5db6ff;
    padding: 0;
}
.account .sidebar.sidebar-main li {
    margin: 0;
}
.account .sidebar.sidebar-main .block {
    margin: 0;
}
.category-sidebar-main, .block-compare, .block-wishlist, .block-reorder {
    border: 1px solid #e5e5e5;
    padding: 30px 15px;
}
.account.page-layout-2columns-left .sidebar-additional {
    margin-top: 30px;
}
.account.page-layout-2columns-left .sidebar-additional .block {
    margin: 0 0 30px;
}
.block-compare .block-title strong, .block-reorder .block-title strong, .widget .block-title strong, .block-wishlist .block-title strong {
    font-size: 26px;
    font-weight: bold;
    color: #666;
    text-transform: uppercase;
}
.block-compare .counter, .block-wishlist .counter {
    color: #5db6ff;
    font-size: 16px;
    font-weight: 600;
}
.block-compare .counter:before, .block-wishlist .counter:before {
    content: '(';
}
.block-compare .counter:after, .block-wishlist .counter:after {
    content: ')';
}
.block.block-compare li.product-item {
    font-size: 16px;
    color: #666;
}
.block.block-compare li.product-item strong {
    color: #666;
}
.block.block-compare li.product-item a {
    color: #666;
}
.block.block-compare li.product-item a:hover {
    color: #5db6ff;
    text-decoration: none;
}
.block.block-compare li.product-item a:before {
    color: #666;
}
.block.block-compare li.product-item a:hover:before {
    color: #5db6ff;
}
.account .actions-toolbar > .primary .action:last-child {
    margin: 0;
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Rajdhani';
    font-weight: 600;
    text-decoration: none;
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    display: inline-block;
    outline: none;
    cursor: pointer;
    border-radius: 0;
    transition: all ease-in-out .4s;
    background-color: #5db6ff;
    color: #FFF !important;
    text-align: center;
    border: none;
    max-width: 100%;
}
.account .actions-toolbar > .primary .action:last-child:hover{
    background-color: #666;
    color: #FFFFFF !important;
    text-decoration: none;
    border: none;
}
.account .actions-toolbar > .secondary .action:last-child {
    margin: 0;
    line-height: 40px;
    float: right;
}
.block-reorder .actions-toolbar {
    margin: 17px 0 0;
    max-width: 100%;
}
.form.reorder li.product-item a {
    color: #666;
    font-size: 16px;
}
.form.reorder li.product-item a:hover {
    color: #5db6ff;
    text-decoration: none;
}
#wishlist-sidebar .product-item-photo span.product-image-container {
    width: 50px !important;
    height: auto !important;
}
#wishlist-sidebar .product-item-details {
    margin-left: 70px;
}
#wishlist-sidebar .product-item-details .product-item-name a {
    font-size: 16px;
    color: #666;
}
#wishlist-sidebar .product-item-details .product-item-name a:hover {
    color: #5db6ff;
    text-decoration: none;
}
.block.block-wishlist a.btn-remove.action:before {
    color: #666;
    transition: all ease .4s;
}
.block.block-wishlist a.btn-remove.action:hover:before {
    color: #5db6ff;
}
.block.block-wishlist .price-box span.price {
    font-size: 18px;
    font-weight: 700;
    color: #5db6ff;
    font-family: 'Rajdhani';
}
.block.block-wishlist .actions-primary button {
    margin: 0;
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Rajdhani';
    font-weight: 600;
    text-decoration: none;
    height: 35px;
    line-height: 35px;
    padding: 0 15px;
    display: inline-block;
    outline: none;
    cursor: pointer;
    border-radius: 0;
    transition: all ease-in-out .4s;
    background-color: #5db6ff;
    color: #FFF !important;
    text-align: center;
    border: none;
    max-width: 100%;
}
.block.block-wishlist .actions-primary button:hover{
    background-color: #666;
    color: #FFFFFF !important;
    text-decoration: none;
    border: none;
}
.block.block-wishlist .actions-toolbar a.action.details {
    background: transparent !important;
    padding: 0;
    color: #5db6ff !important;
    height: auto;
    line-height: initial;
    text-decoration: underline;
}
.block.block-wishlist .actions-toolbar a.action.details:hover {
    color: #666 !important;
    text-decoration: underline;
}
.block.block-wishlist .actions-toolbar {
    display: flex;
    justify-content: center;
    margin: 30px 0 0;
}
.block-compare .block-title, .block-reorder .block-title, .widget .block-title, .block-wishlist .block-title {
    margin: 0 0 20px;
}
.account .column.main .block:not(.widget) .block-title {
    border-bottom: 1px solid #c6c6c6;
    margin-bottom: 25px;
    padding-bottom: 10px;
}
.account .column.main .block:not(.widget) .block-title > strong {
    font-size: 22px;
    font-weight: 700;
    color: #666;
}
.account .column.main .block:not(.widget) .block-title > .action {
    color: #5db6ff;
    font-weight: 600;
    font-size: 16px;
}
.account .column.main .block:not(.widget) .block-title > .action:hover{
    color: #666;
}
.account .column.main .block:not(.widget) .box-title {
    margin: 0 0 10px;
}
.account .column.main .block:not(.widget) .box-title > span {
    font-size: 16px;
    color: #666;
}
.account .column.main .block:not(.widget) .block-content p:last-child {
    font-size: 16px;
    line-height: 1.4;
    font-family: 'Rajdhani';
    color: #666;
}
.box-billing-address .box-content address, .box-shipping-address .box-content address {
    font-size: 16px;
    line-height: 1.4;
    color: #666;
}
.block-addresses-list .items.addresses .item.actions .action:after, .account .data.table .col.actions .action:after, [class^='sales-guest-'] .data.table .col.actions .action:after, .sales-guest-view .data.table .col.actions .action:after, .block .box-actions .action:after{
    border-left: 1px solid #a6a6a6;
    content: '';
    display: inline-block;
    height: 12px;
    margin: 0 10px;
    vertical-align: -1px;
}
.block-addresses-list .items.addresses .item.actions .action:last-child:after, .account .data.table .col.actions .action:last-child:after, [class^='sales-guest-'] .data.table .col.actions .action:last-child:after, .sales-guest-view .data.table .col.actions .action:after, .block .box-actions .action:last-child:after{
    display: none;
}
.account .table-wrapper .action {
    margin-right: 0;
}
.account .column.main .block .box-actions a {
    color: #5db6ff;
    font-weight: 600;
}
.account .column.main .block .box-actions a:hover{
    color: #666;
}
.account table.data.table th, .account table.data.table td {
    padding: 11px 10px;
    font-size: 16px;
    color: #666;
    font-weight: 400;
    border-bottom: 1px solid #e5e5e5 !important;
    vertical-align: middle;
}
.account table.data.table th {
    font-weight: 700;
}
.account .table-wrapper .action {
    font-weight: 600;
    color: #5db6ff;
}
.account .table-wrapper .action:hover {
    color: #666;
}
.abs-pager-toolbar .toolbar-amount, .account .toolbar .toolbar-amount, .toolbar-giftregistry-results .toolbar-amount, .toolbar-wishlist-results .toolbar-amount {
    font-size: 16px;
    font-family: 'Rajdhani';
    color: #666;
}
.abs-pager-toolbar .limiter, .account .toolbar .limiter, .toolbar-giftregistry-results .limiter, .toolbar-wishlist-results .limiter {
    color: #666;
    font-size: 16px;
}
.account select {
    height: 40px;
    padding: 10px 15px;
}
a.action.rss.wishlist {
    display: none;
}
.wishlist-index-index .products-grid .product-items {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px !important;
}
.wishlist-index-index .products-grid .product-items li {
    margin: 0 !important;
    width: 25%;
    padding: 0 15px;
    text-align: center;
}
.wishlist-index-index .products-grid .product-items li .product-item-info {
    border: 1px solid #e9e9e9;
}
.wishlist-index-index .products-grid .product-items li .product-item-inner {
    padding: 0 20px 20px 20px;
}
.wishlist-index-index .products-grid .product-items li .product-item-name {
    padding: 0 20px;
    margin: 0 0 10px;
}
.wishlist-index-index .products-grid .product-items li .product-item-name a {
    color: #666;
    font-size: 16px;
    line-height: 1.3;
    min-height: 60px;
}
.wishlist-index-index .products-grid .product-items li .product-item-name a:hover {
    color: #5db6ff;
    text-decoration: none;
}
.products-grid.wishlist .product-item .price-box .price {
    font-size: 20px;
    line-height: 1;
    font-family: 'Rajdhani';
    color: #5db6ff;
}
.products-grid.wishlist .product-reviews-summary {
    display: none;
}
.products-grid.wishlist .product-item-comment {
    padding: 0 10px;
    line-height: 42px;
}
.products-grid.wishlist .product-item .box-tocart input.qty {
    padding: 0px 10px;
    height: 40px;
    width: 50px;
}
.products-grid.wishlist .product-item .fieldset .field.qty {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.products-grid.wishlist .product-item .fieldset .field.qty .control {
    float: none;
    width: auto;
}
.products-grid.wishlist .product-item .fieldset .field.qty .label {
    display: none;
}
.products-grid.wishlist .product-item-actions button.action.tocart {
    font-family: 'Rajdhani';
    width: 100%;
    text-align: center;
    background: #5DB6FF;
    color: #FFF;
    border-radius: 0;
    text-transform: uppercase;
    height: 40px;
    font-size: 15px;
    font-weight: 600;
    padding: 7px 5px;
    border: 0;
    transition: all ease-in-out .4s;
}
.products-grid.wishlist .product-item-actions button.action.tocart:hover{
    background-color: #666;
}
.products-grid.wishlist .product-item-actions > * {
    font-weight: 600;
    color: #5db6ff;
    line-height: 1;
}
.products-grid.wishlist .product-item-actions > *:hover{
    color: #666;
}
.products-grid.wishlist .product-item-actions a.action.edit::after {
    content: '';
    border-right: 1px solid #CCC;
    margin: 0 10px;
}
.products-grid.wishlist .product-item-actions a.action.edit {
    margin: 0;
}
.products-grid.wishlist .box-tocart fieldset.fieldset {
    display: flex;
    align-items: center;
    justify-content: center;
}
.products-grid.wishlist .product-item .fieldset .field.qty {
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
}
.products-grid.wishlist .box-tocart .product-item-actions {
    margin: 0 0 0px 10px !important;
    width: calc(100% - 60px);
}
.products-grid.wishlist .box-tocart .product-item-actions .actions-primary {
    width: 100%;
}
.form-wishlist-items > .actions-toolbar > .primary button {
    margin: 0;
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Rajdhani';
    font-weight: 600;
    text-decoration: none;
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    display: inline-block;
    outline: none;
    cursor: pointer;
    border-radius: 0;
    transition: all ease-in-out .4s;
    background-color: #5db6ff;
    color: #FFF !important;
    text-align: center;
    border: none;
    max-width: 100%;
}
.form-wishlist-items > .actions-toolbar > .primary button:hover{
    background-color: #666;
    color: #FFFFFF !important;
    text-decoration: none;
    border: none;
}
.form-wishlist-items > .actions-toolbar {
    margin: 40px 0 0;
}
.account .toolbar .toolbar-amount {
    padding: 0;
    line-height: 40px;
}
.account .box-content address {
    font-size: 16px;
    line-height: 1.4;
    color: #666;
}
.fieldset > .field:not(.choice) > .label {
    width: 100% !important;
    text-align: left !important;
    margin: 0 0 5px;
    font-size: 15px;
    color: #666;
    font-weight: 500;
    padding: 0 !important;
}
.form-address-edit legend.legend {
    border-bottom: 1px solid #c6c6c6;
    margin: 0 !important;
    margin-bottom: 25px !important;
    padding-bottom: 10px !important;
    width: 100%;
    font-size: 22px;
    font-weight: 700;
    color: #666;
}
.fieldset > .field:not(.choice) > .control {
    width: 100% !important;
}
.fieldset > .field.choice:before, .fieldset > .field.no-label:before{
    display: none;
}
.abs-margin-for-forms-desktop, .fieldset .legend, .column:not(.sidebar-main) form .actions-toolbar, .column:not(.sidebar-additional) form .actions-toolbar, .login-container .fieldset:after {
    margin-left: 0 !important;
}
.fieldset > .field {
    margin: 0 0 20px !important;
}
.fieldset > .field.choice {
    margin: 0 0 10px !important;
}
form.form-address-edit {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
form.form-address-edit > .actions-toolbar {
    width: 100%;
    padding: 0 15px;
}
form.form-address-edit > fieldset.fieldset {
    width: 50%;
    padding: 0 15px;
}
.form-address-edit select {
    background-position: 95% 50%;
}
.form.form-edit-account fieldset.fieldset.info {
    margin: 0 0 40px;
}
.form.form-edit-account fieldset.fieldset.password {
    margin: 40px 0;
}
.form.form-edit-account fieldset.fieldset.additional_info {
    margin: 0;
}
.block.block-order-details-view .box {
    width: 25% !important;
    margin: 0 0 20px !important;
    float: left;
}
.block.block-order-details-view .block-content {
    display: flex;
    flex-wrap: wrap;
}
.page-title-wrapper .order-date {
    margin: 0 0 10px;
    font-size: 16px;
    color: #666;
}
.page-title-wrapper span.order-status {
    border: 1px solid #e5e5e5;
    border-radius: 0;
    display: inline-block;
    padding: 10px 15px;
    text-transform: uppercase;
    vertical-align: top;
    font-size: 16px;
    color: #666;
    margin: 0;
}
body[class*="sales-order-"] .page-title-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 25px;
}
body[class*="sales-order-"] .page-title-wrapper h1.page-title {
    width: 50%;
    margin: 0;
}
body[class*="sales-order-"] .page-title-wrapper .order-date {
    width: 50%;
    margin: 20px 0 0;
}
body[class*="sales-order-"] .page-title-wrapper .order-actions-toolbar {
    text-align: right;
    width: 50%;
    margin: 20px 0 0;
}
.order-actions-toolbar .action {
    font-weight: 600;
    color: #5db6ff;
    font-size: 16px;
}
.order-actions-toolbar .action:hover{
    color: #666;
}
.order-links .item strong {
    background: #ffffff;
    border: 1px solid #cccccc;
    display: block;
    font-weight: 400;
    border-bottom: 0;
    margin-bottom: -1px;
    padding: 0px 35px;
    font-size: 16px;
    color: #666;
}
.order-links .item {
    line-height: 40px;
    margin: 0 -1px 0 0;
}
ul.items.order-links {
    margin: 0;
    border: 0;
}
.order-details-items {
    border: 1px solid #cccccc;
    margin-bottom: 40px;
    margin-top: -2px;
    padding: 25px;
}
.order-details-items .order-title {
    display: none;
}
.order-details-items table.data.table tfoot th, .order-details-items table.data.table tfoot td {
    border: 0 !important;
    background: #f5f5f5;
    padding: 15px 10px !important;
}
.order-details-items table.data.table tr:last-child td {
    border-bottom: 0 !important;
    padding-bottom: 25px;
}
.order-details-items .actions-toolbar {
    display: none;
}
.order-details-items table.data.table tfoot th strong, .order-details-items table.data.table tfoot td strong {
    font-weight: 400;
}
.order-details-items table.data.table tr td span.price {
    font-weight: 600;
    color: #5db6ff;
}
.order-links .item a {
    background: #f6f6f6;
    color: #6d6d6d;
    border: 1px solid #cccccc;
    display: block;
    font-weight: 400;
    padding: 0 35px;
    font-size: 16px;
    color: #666;
}
.order-links .item a:hover {
    background: transparent;
}
.table-reviews .product-name a {
    color: #5db6ff;
}
.table-reviews .product-name a:hover {
    color: #666;
}
.table-reviews .product-name {
    font-weight: 400;
}
.product-reviews-summary .reviews-actions a {
    color: #5db6ff;
    font-weight: 600;
}
.product-reviews-summary .reviews-actions a:hover {
    color: #666;
}
.customer-review-rating .rating-summary.item {
    margin: 0 !important;
}
.customer-review-rating {
    margin: 10px 0 20px !important;
}
.customer-review-rating .rating-summary.item span.rating-label {
    margin-right: 5px;
}
.customer-review.view .product-info .product-name {
    font-size: 30px;
    font-weight: 700;
    color: #666;
    margin: 0 0 15px;
}
.rating-average-label {
    font-size: 16px;
    color: #666;
}
.product-reviews-summary .reviews-actions a.action.view {
    border-right: 1px solid #5db6ff;
    margin-right: 5px;
    padding-right: 10px;
}
.product-reviews-summary .reviews-actions a.action {
    line-height: 1;
}
.account .product-reviews-summary {
    margin-top: 5px;
}
.account .product-reviews-summary .rating-summary {
    left: 0;
}
.account .review-details .title {
    font-size: 20px;
    color: #666;
}
.account .page-title-wrapper .page-title {
    font-size: 45px;
    margin: 0 0 30px;
    color: #666666;
}
.checkout-index-index .nav-sections {
    display: block;
}
.block.block-reviews-dashboard a {
    font-size: 16px;
    color: #5db6ff;
    font-weight: 600;
}
.block.block-reviews-dashboard a:hover {
    color: #666;
}
.block.block-reviews-dashboard li.item {
    margin: 0 0 15px;
}
.block.block-reviews-dashboard li.item:last-child {
    margin: 0;
}

/*Contact*/

.contact-block {
    display: flex;
    flex-wrap: wrap;
    box-shadow: 1.5px 2.598px 21.5px rgb(0 0 0 / 14%);
}
.contact-right-block {
    width: 38%;
    background: #5db6ff;
    padding: 80px;
}
.contact-left-block {
    width: 62%;
    padding: 50px 80px 50px 60px;
}
.contact-right-inner {
    height: 100%;
}
.contact-right-block h4 {
    font-size: 35px;
    line-height: 1;
    font-weight: 700;
    color: #FFF;
    margin: 0 0 40px;
}
.contact-right-inner ul li {
    margin: 0 0 24px;
}
.contact-right-inner ul li a {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    color: #FFF;
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
}
.contact-right-inner ul li a:hover {
    color: #666;
}
.contact-right-inner ul li a .icon-wrap {
    margin-right: 10px;
    width: 25px;
}
.contact-right-inner ul li a span {
    width: calc(100% - 35px);
}
.contact-index-index main#maincontent {
    padding-bottom: 110px;
    padding-top: 60px;
}
.contact-left-block form.contact.form {
    width: 100% !important;
    min-width: 100% !important;
}
.contact-left-block form.contact.form legend.legend {
    color: #333;
    font-size: 35px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
}
.contact-left-block form.contact.form .fieldset .field {
    padding: 0 20px;
}
.contact-left-block form.contact.form .fieldset {
    margin: 0 -20px;
}
.contact-left-block form.contact.form .fieldset .field.w-50 {
    width: 50%;
    float: left;
}
.contact-left-block form.contact.form .fieldset .field input {
    padding: 0 0 22px;
    border: 0;
    border-bottom: 1px solid #d7d7d7;
    color: #999999;
    font-size: 15px;
    font-family: 'Lato';
    font-weight: 500;
    height: unset;
}
.contact-left-block form.contact.form .fieldset .field textarea {
    padding: 0 0 22px;
    border: 0;
    border-bottom: 1px solid #d7d7d7;
    color: #999999;
    font-size: 15px;
    font-family: 'Lato';
    font-weight: 400;
    height: 110px;
    resize: none;
}
.contact-left-block form.contact.form .fieldset .field input::placeholder, .contact-left-block form.contact.form .fieldset .field textarea::placeholder{
    color: #999;
}
.contact-left-block form.contact.form .fieldset .field {
    padding: 0 20px;
    margin: 0 0 35px !important;
}
.contact-left-block form.contact.form .fieldset .field-recaptcha {
    margin: 22px;
}
.contact-left-block form.contact.form button.action.submit.primary {
    font-size: 19px;
    text-transform: uppercase;
    font-family: 'Rajdhani';
    font-weight: 600;
    text-decoration: none;
    height: 58px;
    line-height: 58px;
    padding: 0 65px;
    display: inline-block;
    outline: none;
    cursor: pointer;
    border-radius: 0;
    transition: all ease-in-out .4s;
    background-color: #5db6ff;
    color: #FFF !important;
    text-align: center;
    border: none;
    max-width: 100%;
    margin: 0;
}
.contact-left-block form.contact.form button.action.submit.primary:hover{
    background: #666;
}
.contact-left-block form.contact.form .title-wrap {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 35px;
}
.page-header .panel.wrapper .switcher .options ul.dropdown {
    display: block;
    position: static;
    margin: 0;
    border: 0;
    box-shadow: none;
    min-width: auto;
}
.page-header .panel.wrapper .switcher .options .action.toggle {
    display: none;
}
.page-header .panel.wrapper .switcher .options ul.dropdown:before, .page-footer .switcher .options ul.dropdown:before{
    display: none;
}
.page-header .panel.wrapper .switcher .options ul.dropdown:after, .page-footer .switcher .options ul.dropdown:after{
    display: none;
}
.page-header .panel.wrapper .switcher .options ul.dropdown a, .page-footer .switcher .options ul.dropdown a {
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.75 !important;
    vertical-align: middle;
    background: transparent;
}
.page-header .panel.wrapper .switcher .options ul.dropdown a:hover, .page-footer .switcher .options ul.dropdown a:hover{
    color: #5DB6FF;
}
.page-header .panel.wrapper .switcher .options ul.dropdown li:hover, .page-footer .switcher .options ul.dropdown li:hover {
    background: transparent;
    cursor: pointer;
}
.page-header .panel.wrapper .switcher {
    padding-left: 20px;
    margin-left: 20px !important;
    border-left: 1px solid #e1e1e1;
    margin-right: 0;
}
.page-header .panel.wrapper .switcher .options ul.dropdown a img, .page-footer .switcher .options ul.dropdown a img {
    margin-right: 5px;
    border: 1px solid dimgrey;
}
.cart-empty {
    text-align: center;
    padding: 110px 0;
}
.cart-empty p {
    font-size: 22px;
    color: #666;
    margin: 0 0 10px;
}
.cart-empty p a {
    color: #5db6ff;
}
.layout3 .block.filter {
    display: none;
}
.cms-page-view .sidebar {
    display: none;
}
.cms-page-view .column.main {
    width: 100%;
    float: none;
}
.cms-title {
    text-align: center;
    background: #5db6ff;
    padding: 70px 0;
    background-image: url(../images/cms-banner.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    position: relative;
}
.cms-title h1.page-title {
    margin: 0;
    color: #FFF;
    text-align: left;
}
/*.cms-title .breadcrumbs .items {
    justify-content: center;
}*/
.cms-title .breadcrumbs .items li.home a {
    font-size: 16px;
}
.cms-title .breadcrumbs .items li.home a:before{
    display: none;
}
.cms-title .breadcrumbs {
    margin: 0 auto;
    padding-top: 10px;
    padding-bottom: 0;
}
.cms-title .breadcrumbs li strong, .cms-title .breadcrumbs li a {
    color: #FFF !important;
}
.cms-title .breadcrumbs .item:not(:last-child):after {
    color: #FFF;
    line-height: 1;
    vertical-align: sub;
}
.cms-title .breadcrumbs li a:hover{
    color: #666 !important;
}
.cms-title .page-title-wrapper {
    max-width: 1320px !important;
    padding: 0 20px;
    margin: 0 auto;
}
/*.cms-title::after {
    content: '';
    background-image: url(../images/home-cat-pattern-white.png);
    width: 318px;
    height: 100%;
    position: absolute;
    left: -11%;
    bottom: 0;
}*/
.cms-content {
    padding: 50px 0;
}
.cms-content h2 {
    font-size: 38px;
    color: #333;
    margin: 30px 0 30px;
    font-weight: 700;
}
.cms-content h3 {
    font-size: 25px;
    color: #333;
    margin: 0 0 15px;
    text-transform: uppercase;
}
.cms-content p {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Lato';
    margin: 0 0 20px;
}
.cms-content ul li {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Lato';
    margin: 0 0 20px;
    display: flex;
    align-items: flex-start;
}
.cms-content ul li::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Pro';
    font-size: 16px;
    color: #5db6ff;
    vertical-align: middle;
    margin-right: 10px;
    margin-top: 2px;
}
.cms-content p a:hover {
    text-decoration: underline;
}
.cms-content .img-gallery {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.cms-content .img-gallery .img-item {
    width: 25%;
    padding: 0 15px;
    text-align: center;
}
.cms-content .img-gallery .img-item img {
    width: 100%;
}
.cms-content .img-gallery .img-item h4 {
    margin: 15px 0 0;
    font-size: 20px;
    font-weight: 500;
    color: #666;
}
.cms-content .img-gallery .img-item {
    width: 25%;
    padding: 0 15px;
    text-align: center;
    margin: 0 0 30px;
}
.cms-reparation .cms-content {
    padding-bottom: 20px;
}
.cms-content .img-wrap {
    margin: 0 0 20px;
}
.modal-popup .modal-footer button {
    margin: 0;
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Rajdhani';
    font-weight: 600;
    text-decoration: none;
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    display: inline-block;
    outline: none;
    cursor: pointer;
    border-radius: 0;
    transition: all ease-in-out .4s;
    background-color: #5db6ff;
    color: #FFF !important;
    text-align: center;
    border: none;
    max-width: 100%;
}
.modal-popup .modal-footer button:hover{
    background: #666;
}
.modal-content {
    font-size: 16px;
    color: #666;
}
.catalog-product_compare-index main#maincontent {
    padding-bottom: 50px;
}
.catalog-category-view .page-title-wrapper {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.catalog-category-view .page-title-wrapper .page-title{
    padding: 0 10px;
    order: 2;
}
.catalog-category-view .page-title-wrapper img{
    padding: 0 10px;
}
.catalog-category-view .page-title-wrapper h4 {
        margin: 0 0 0;
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
}
.catalog-category-view .page-main .view {
           position: absolute;
    right: 0;
    top: -76px;
}
.catalog-category-view .page-main .view a{
    font-size: 0;
}
.catalog-category-view .page-main .view a:before{
        -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 24px;
    line-height: inherit;
    color: #7d7d7d;
       content: '\f00a';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 600;
    vertical-align: middle;
    display: inline-block;
    overflow: hidden;
    speak: none;
    text-align: center;
}
.catalog-category-view .page-main .products-grid li.item.product.product-item .product-item-info{
    position: relative;
}
.catalog-category-view .page-main .products-grid li.item.product.product-item .product-item-info:before {
    content: '';
    background-image: url(../images/category-pattern.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 210px;
    height: 195px;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
    transition: all ease .4s;
}
.catalog-category-view .page-main .products-grid li.item.product.product-item .product-item-info:hover:before {
    opacity: 1;
}
nav.navigation {
    max-width: 1360px !important;
}
.shop-by-parent-data {
    border: none;
}
/*custom.css*/
    .shop-by-category-main a,
    .shop-by-parent-main a,
    .shop-by-marks-main a {
        color: #fff;
    }
.shop-by-category-data,
.shop-by-parent-data,
.shop-by-marks-data {
    display: none;
    left: 0;
}
.shop-by-category-main:not(:has(ul.active)) .shop-by-category-data,
.shop-by-marks-main:not(:has(ul.active)) .shop-by-marks-data {
    display: none !important;
}
.shop-by-category-main:has(ul.active) .shop-by-category-data,
.shop-by-marks-main:has(ul.active) .shop-by-marks-data {
    display: block !important;
    top: unset !important;
    left: 0 !important;
    position: absolute !important;
}

.custom-upper-footer-block {
    background: #696969;
    display: flex;
    justify-content: center;
    padding: 0;
    color: #fff;
    font-weight: 700;
    border-bottom: 1px solid #8f8f8f;
}
.custom-upper-footer-block a,
.custom-upper-footer-block a:visited {
    display: inline-block;
    color: #fff;
    padding: 15px 7px;
    margin: 0 10px;
}
.custom-upper-footer-block a:hover {
    background: #5eb6ff;
}
.navigation ul.shop-by-category-data,
.navigation ul.shop-by-parent-data,
.navigation ul.shop-by-marks-data {
    height: auto !important;
}
.shop-by-parent-main:has(ul.active) a.shop-by-parent-link {
    border-bottom: 1px solid #8f8f8f;
}
.shop-by-category-main:has( > .active) a.shop-by-category-link .fa-bars:before,
.shop-by-parent-main:has( > .active) a.shop-by-parent-link .fa-bars:before,
.shop-by-marks-main:has( > .active) a.shop-by-marks-link .fa-bars:before {
    content: '\00BB';
    font-size: 22px;
}
.shop-by-category-main:has( > .active) a.shop-by-category-link,
.shop-by-parent-main:has( > .active) a.shop-by-parent-link,
.shop-by-marks-main:has( > .active) a.shop-by-marks-link{
    background: grey;
}
.navigation div.shop-by-parent-data.active {
    display: block;
    background: #696969;
    padding: 0;
}
  @media (min-width: 768px), print{
  .shop-by-category-main a.shop-by-category-link,
  .shop-by-parent-main a.shop-by-parent-link,
  .shop-by-marks-main a.shop-by-marks-link{
      color: #fff;
      padding: 0 20px;
      height: 60px;
      line-height: 60px;
      display: inline-block;
      font-size: 18px;
      min-width: 230px;
      text-align: center;
      text-transform: uppercase;
      margin-right: 30px;
  }
      .nav-sections-item-content > .navigation {
          display: flex;
          justify-content: space-between;
      }
      .shop-by-category-main a.shop-by-category-link,
      .shop-by-marks-main a.shop-by-marks-link {
          background-color: #5eb6ff;
      }
      .shop-by-category-main a.shop-by-category-link {
          width: max-content;
      }
      .shop-by-category-main:has(ul.active) .shop-by-category-link,
      .shop-by-marks-main:has(ul.active) .shop-by-marks-link {
          background: grey;
      }

      .navigation div.shop-by-parent-data.active {
          width: fit-content;
          display: flex;
      }


  .shop-by-category-main a i.fas.fa-bars,
  .shop-by-parent-main a i.fas.fa-bars,
  .shop-by-marks-main a i.fas.fa-bars {
    margin-left: 8px;
    top: 1px;
    position: relative;
  }
  .shop-by-category-main,
  .shop-by-parent-main,
  .shop-by-marks-main {
      position: relative;
  }
  .shop-by-category-main a.shop-by-category-link,
  .shop-by-parent-main a.shop-by-parent-link,
  .shop-by-marks-main a.shop-by-marks-link {
      padding: 0 10px;
      font-size: 12px;
      min-width: 150px;
      height: 50px;
      line-height: 50px;
  }

  .shop-by-category-main a.shop-by-category-link,
  .shop-by-parent-main a.shop-by-parent-link,
  .shop-by-marks-main a.shop-by-marks-link {
    padding: 0 15px;
    font-size: 14px;
    min-width: 150px;
    margin-right: 12px;
    height: 50px;
    line-height: 50px;
  }
      .shop-by-parent-main a.shop-by-parent-link {
          margin-right: 12px;
      }
      .shop-by-marks-main a.shop-by-marks-link,
      .shop-by-category-main a.shop-by-category-link{
          margin-right: 0;
      }

  .shop-by-parent-main{
    z-index: 2;
      position: relative;
  }

  .navigation ul.shop-by-category-data,
  .navigation div.shop-by-parent-data,
  .navigation ul.shop-by-marks-data {
      z-index: 1;
      background-color: #fff;
      border-width: 1px;
      border-style: solid;
      border-color: #eaeaea;
      padding: 0 0 3px;
      width: 140%;
      position: absolute;
      -webkit-animation: scale-in-ver-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
      animation: scale-in-ver-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
      transition: all ease .4s;
  }

      .navigation ul.shop-by-marks-data {
          width: 100%;
      }

  .navigation ul.shop-by-category-data li,
  .navigation ul.shop-by-parent-data li,
  .navigation ul.shop-by-marks-data li {
      padding: 0 20px;
      float: left;
      line-height: 40px;
      width: 100%;
      list-style: none;
      position: relative;
      margin: 0;
  }
  .navigation ul.shop-by-category-data li a,
  .navigation ul.shop-by-parent-data li a,
  .navigation ul.shop-by-marks-data li a{
      display: block;
      outline: medium none;
      border-bottom:1px solid #ccc;
      color: #333;
      font-weight: 500;
  }
  .navigation ul.shop-by-category-data li:last-child a,
  .navigation ul.shop-by-parent-data li:last-child a,
  .navigation ul.shop-by-marks-data li:last-child a{
             border-bottom:0;
  }
  .navigation ul.shop-by-category-data li a:hover,
  .navigation ul.shop-by-parent-data li a:hover,
  .navigation ul.shop-by-marks-data li a:hover{
      color: #5eb6ff;
  }
  .mobile-navigation {
      display: none !important;
  }
 .home-category-item{
    float:left;
  }
  .nav-sections {
      margin-bottom: 0;
      position: relative;
  }
      .navigation ul.shop-by-category-data,
      .navigation ul.shop-by-parent-data,
      .navigation ul.shop-by-marks-data {
          max-height: 40vh;
          overflow-y: scroll;
          border: 1px solid;
          border: none;
          box-shadow: black 0px 0px 7px -3px;
      }
}
/* Mobile view */
@media (max-width: 767px), print{
  .desktop-navigation {
        display: none;
    }
   .catalog-category-view .page-title-wrapper .page-title {
    font-size: 17px;
}
.catalog-category-view .page-title-wrapper .page-title {
    font-size: 18px;
}

}
@media only screen and (max-width: 767px) {
    .navigation .shop-by-parent-main .fas.fa-bars {
        display: inline-block;
        margin-left: 5px;
    }
    .shop-by-category-main:has(ul.active) .shop-by-category-data,
    .shop-by-marks-main:has(ul.active) .shop-by-marks-data {
        position: relative !important;
    }
    .shop-by-marks-main {
        border-top: 1px solid #8f8f8f;
    }
    .navigation a, .navigation a:hover {
        color: #fff;
        text-decoration: none;
    }
    .shop-by-category-main a,
    .shop-by-parent-main a,
    .shop-by-marks-main a {
        padding-left: 10px;
    }
    .nav-toggle {
            top: 13px;
    }
    .navigation .level0.active > a:not(.ui-state-active), .navigation .level0.has-active > a:not(.ui-state-active) {
        border-color: #000000;
        color: #fff;
    }
    .navigation .submenu > li {
        position: relative;
    }
    .navigation .parent>a:after {
              position: absolute;
        right: 16px;
        font-size: 12px;
        top: 13px;
    }
    .navigation .submenu:not(:first-child) ul > li a:hover {
        color: #eb0e0e;
    }
    .navigation.mobile-navigation span {
        width: 90%;
        display: block;
    }
    .navigation .parent>a.ui-state-active:after {
        content: '\e621';
    }
    .navigation {
        padding-left: 0;
        padding-right: 0;
    }
    .nav-toggle:hover:before,
    .nav-toggle:before {
        color: #808080;
        font-size: 20px;
        font-weight: bold;
    }
    .nav-open .nav-sections {
        background-color: #000;
    }
    .navigation .level0 {
      border-top: 1px solid #4a4949;
    }
    .navigation li.level0:last-child {
        border-bottom: 1px solid #4a4949;
    }
    .navigation {
        background: transparent;
    }
    .nav-sections-item-content {
        padding: 0 0;
    }
    .navigation a,
    .navigation .level0 > .level-top,
    .nav-sections .header.links a,
    .nav-sections .header.links a:hover {
           font-size: 16px;
          font-weight: 600;
          color: #fff;
    }
    .navigation .level0 > .level-top a{
            color: #eb0e0e;
    }
    .navigation .level0 > .level-top{
            padding: 10px 40px 10px 15px;
    }
    .navigation .parent .level-top:after {
        right: 16px;
    }
    .navigation .level0.active .all-category .ui-state-focus {
        border-color: #000000;
        color: #eb0e0e;
    }
    .navigation .level0 > .level-top:hover {
        color: #eb0e0e;
    }
    .navigation .submenu:not(:first-child) ul > li a {
        color: #ffffff;
    }
    .navigation .submenu:not(:first-child) > li > a {
        padding-left: 15px;
        padding-right: 15px;
    }
    .navigation .submenu:not(:first-child) .active > a {
        border-color: #000000;
        color: #eb0e0e;
    }
    .navigation .submenu > li > a:hover {
        color: #eb0e0e;
    }
    .nav-sections-item-title {
        height: 63px;
            text-transform: uppercase;
    }
    .nav-sections-item-content {
        margin-top: 63px;
    }
    .navigation .level0 > .level-top:hover {
            text-decoration: none;

    }
    .navigation .parent .level-top.ui-state-active:after,
    .navigation .parent .level-top:after {
           font-size: 12px;
        top: 50%;
        transform: translateY(-50%);
    }
    .nav-sections-item-title {
        background: #5eb6ff;
        border: 0;
        width: 50%;
        font-weight: bold;
    }
    .nav-sections-item-title a,
    .nav-sections-item-title a:visited {
        color: #fff;
    }
    .nav-sections-item-title.active a,
    .nav-sections-item-title.active a:visited {
            color: #fff;
    }
    .nav-sections .header.links li.greet.welcome {
          padding: 13px 36px 13px 15px;
    font-weight: normal;
        font-size: 12px;
    }
}
/*20may*/
.layout-row-content .tbodycol .tbodycolinner {
        max-height: 80px;
    overflow-x: auto;
    overflow-x: hidden;
}
/* Works on Firefox */
.layout-row-content .tbodycol .tbodycolinner {
  scrollbar-width: thin;
  scrollbar-color: #BF1E2E #ececec;
}

/* Works on Chrome, Edge, and Safari */
.layout-row-content .tbodycol .tbodycolinner::-webkit-scrollbar {
  width: 4px;
  border-radius: 10px;
}

.layout-row-content .tbodycol .tbodycolinner::-webkit-scrollbar-track {
  background: #ececec;
  border-radius: 5px;
}
.layout-row-content .tbodycol .tbodycolinner::-webkit-scrollbar-thumb {
  background-color: #5DB6FF;
  border-radius: 10px;
  border: 1px solid #ececec;
}

@media only screen and (max-width: 1199px) {
.layout-row-head .theadparent,
.layout-row-content > .tbodycol .tbodyparent {
        flex-wrap: nowrap !important;
}
.layout-row-content .tbodycol .tbodycolinner,
.layout-row-content > .tbodycol .label-title,
.layout-row-head .theadcol{
    width: 100px !important;
    min-width: 100px !important;
        font-size: 12px;
}
.layout-row-content .tbodycol .tbodycolinner a{
      font-size: 12px;
}
.layout-row-content > .tbodycol .label-title span{
    font-size: 12px;
}
.layout4 {
    overflow-x: scroll;
}
}
.table-look-wrapper,.category-table-look-wrapper{
    width: 100%;
    overflow: auto;
    margin: 20px 0;
}
.grid-look {
    border-collapse: inherit;
    border-spacing: 0;
}
.grid-look td:first-child {
    border-left: 1px solid #ececec;
    background: #fff;
    z-index: 9;
}
.grid-look thead td{
    z-index: 9;
    border-top: 1px solid #ececec;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 10px 5px;
    font-size: 14px;
    color: #666;
    font-family: 'Lato';
    font-weight: 600;
    text-transform: capitalize;
    padding-top: 20px !important;
}
.grid-look td {
    padding: 5px;
    text-align: center;
    border-right: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    vertical-align: middle;
    font-size: 12px;
}
.grid-look td:first-child {
    border-left: 1px solid #ececec;
    background: #fff;
    z-index: 9;
}
.product-grid-top{
    box-shadow: 0.349px 4.988px 4.5px rgb(0 0 0 / 7%);
}
.product-grid-center .no-line-height a {
    display: block;
    font-size: 14px;
    color: #999999;
    font-weight: 400;
    font-family: "Lato";
    text-transform: uppercase;
}
.product-grid-center .no-line-height a:hover {
    color: #5DB6FF;
}
.product-grid-center > .item .label-title span {
    line-height: 1.3;
    font-size: 14px;
    font-family: 'Lato';
    font-weight: 600;
    display: block;
    color: #666;
}
.product-grid-center > .item .label-title .label-inner span {
    font-weight: 400;
    display: inline-block;
}
.product-grid-center > .item .label-title {
    width: 150px;
    border: 1px solid #ececec;
    border-top: 0;
    text-align: left;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 10px 18px;
}
.scroll-all {
  height: 80px;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-height: 80px;
    overflow-x: auto;
    overflow-x: hidden;
}
.scroll-all-h {
  width: min-content;
}
.product-grid-center > .item .label-title {
     height: 100px;
}
/* Works on Firefox */
.scroll-all {
  scrollbar-width: thin;
  scrollbar-color: #BF1E2E #ececec;
}
/* Works on Chrome, Edge, and Safari */
.scroll-all::-webkit-scrollbar {
  width: 4px;
  border-radius: 10px;
}
.scroll-all::-webkit-scrollbar-track {
  background: #ececec;
  border-radius: 5px;
}
.scroll-all::-webkit-scrollbar-thumb {
  background-color: #5DB6FF;
  border-radius: 10px;
  border: 1px solid #ececec;
}

.theadcol .scroll-all-h {
    width: auto;
}
.grid-look thead td{
    background: #fff;
}
table .product-grid-top td{
    height: 115px;
}


/* 22-07-2021 */
body.layout4{
    margin-bottom: 0;
}
.related-item-inner .product-image-photo,.bestseller-items .product-image-photo{position: static;}
@media only screen and (min-width: 1401px){
	html:lang(es) nav.navigation .level0 > .level-top {
    padding: 0 7px;
    font-size: 13.5px;
}
}
#ts_product_widget{margin-bottom: 10px;}
li.authorised-logout a::before {
    content: '\f2f5';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
    margin-right: 5px;
    vertical-align: middle;
}
/*service page*/
.custom-makes-mane,
.custom-service-mane {
    width: fit-content;
    margin: 15px auto;
}
.custom-service-title {
    width: 100%;
    text-align: center;
    margin-bottom: 44px;
}
.custom-makes-list,
.custom-service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.custom-service-list li {
    display: inline-block;
    font-size: 19px;
    font-weight: 700;
    padding: 24px;
    border: 1px solid #E1DFDF;
    margin-right: 12px;
    margin-bottom: 12px;
}
.service-form.contact-block {
    max-width: 840px;
    margin: 60px auto 64px;
}
.service-form .contact-left-block{
    width: 100%;
}
.service-form .contact-left-block form.contact.form .title-wrap {
    justify-content: center;
}
.service-form .actions-toolbar {
    display: flex;
    justify-content: end;
}
@media only screen and (max-width: 767px){

    .navigation a.shop-by-marks-link,
    .navigation a.shop-by-category-link {
        display: flex;
        justify-content: space-between;
        padding-right: 10px;
        justify-content: space-between;
    }

    .navigation a.shop-by-marks-link .ui-menu-icon,
    .navigation a.shop-by-category-link .ui-menu-icon{
        display: none;
    }
    .custom-service-list li {
        padding: 12px;
        font-size: 16px;
    }
    .page-header .panel.header .links {
        width: 85px;
    }
    .custom-makes-list,
    .custom-service-list {
        justify-content: flex-start;
    }
    .service-form .actions-toolbar {
        justify-content: center;
    }
}
.catalog-category-view .page-title-wrapper{display:block;}
.catalog-category-view .category-description{
    margin-top:20px;
}
.subscribe-form-inner .g-recaptcha {
    transform-origin: left center;
    margin-top: 10px;
}
/* .subscribe-form-inner .g-recaptcha > div,
.subscribe-form-inner .g-recaptcha iframe {
    width: 100% !important;
} */
.subscribe-form-inner .form-block form {
    align-items: start;
}
.header.panel > .header.links > li a.information-tech:before {
    content: '\f7e7';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
    margin-right: 5px;
    vertical-align: middle;
}
.checkout-agreement.field.choice
{
    flex-wrap: wrap;
}
.product.attribute.availability .value{
    font-weight: bold;
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 1400px) and (min-width: 1023px){
    .shop-by-category-main a.shop-by-category-link,
    .shop-by-marks-main a.shop-by-marks-link,
    nav.navigation div.level0 > .level-top {
        font-size: 11px;
    }
}

@media (max-width: 1023px) and (min-width: 769px){
    .nav-sections-item-content > .navigation {
        flex-wrap: wrap;
    }
}

.checkout-shipping-country-note {
    padding-bottom: 1.5em;
}

.checkout-shipping-country-note p {
    font-size: 12px;
}
