@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;500;600;700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap');
/* font-family: 'Oswald', sans-serif; */

:root {
  --primary: #E70000;
  --primary-dark: #AD0000;
}
/* var(--blue) */



body {
    font-family: 'Roboto', sans-serif; 
    font-size: 14px;
}
@media (min-width: 1250px) {
    .container {
        width: 1200px;
    }
}
@media (min-width: 1480px) {
    .container {
        width: 1440px;
    }
}
@media (max-width: 576px) {
    .row {
        margin-left: -6px;
        margin-right: -6px;
    }
    [class*="col-"] {
        padding-left: 6px;
        padding-right: 6px;
    }
}

main.page {
    overflow: hidden;
}
img {
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
}

a:focus, a:hover {
    color: var(--primary-dark);
}

.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
    outline: none !important;
}


.btn-primary {
	font: 400 15px/18px "Roboto", Helvetica, sans-serif;
	color: #fff;
	padding: 14px 30px;
	background: #111;
	margin: 0;
	transition: all 400ms ease-in-out;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
	display: inline-block;
	text-decoration: none;
	position: relative;
	z-index: 1;
	outline: none;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-khtml-border-radius: 0;
	border: none;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.btn-primary::before{
	background: var(--primary-dark);
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 0;
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-khtml-border-radius: 0;
	z-index: -1;
	right: 0;
	transition: all 400ms ease-in-out;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
}
.btn-primary:hover::before, .btn-primary:active::before, .btn-primary:focus::before{
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	height: 100%;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:active:focus, .btn-primary.active, .open .dropdown-toggle.btn-primary, #button-login.btn.btn-primary:focus, .btn-primary:active, #button-account.btn.btn-primary:focus, #button-register.btn.btn-primary:focus, #button-shipping-method.btn.btn-primary:focus, #button-payment-method.btn.btn-primary:focus, #button-guest.btn.btn-primary:focus, #button-coupon.btn.btn-primary:focus, #button-voucher.btn.btn-primary:focus, #button-quote.btn.btn-primary:focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary.focus:active, .btn-primary:active:focus,  .open > .dropdown-toggle.btn-primary.focus, .open > .dropdown-toggle.btn-primary:focus, .open > .dropdown-toggle.btn-primary:hover {
	background: var(--primary-dark);
	color: #fff;
	border: none;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}
.btn-primary.disabled, .btn-primary.disabled.active, .btn-primary.disabled.focus, .btn-primary.disabled:active, .btn-primary.disabled:focus, .btn-primary.disabled:hover, .btn-primary[disabled], .btn-primary.active[disabled], .btn-primary.focus[disabled], .btn-primary[disabled]:active, .btn-primary[disabled]:focus, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary.active, fieldset[disabled] .btn-primary.focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:hover {
	background: var(--primary);
	color: #fff;
	border: none;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}
.btn-secondary {
	font: 400 15px/18px "Roboto", Helvetica, sans-serif;
	color: #111;
	padding: 15px 40px;
	background: var(--primary-dark);
    color: #fff;
	margin: 0;
	transition: all 400ms ease-in-out;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
	display: inline-block;
	text-decoration: none;
	position: relative;
	z-index: 1;
	outline: none;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-khtml-border-radius: 0;
	border: none;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.btn-secondary::before{
	background: #fff;
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 0;
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-khtml-border-radius: 0;
	z-index: -1;
	right: 0;
	transition: all 400ms ease-in-out;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
}
.btn-secondary:hover::before, .btn-secondary:active::before, .btn-secondary:focus::before{
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	height: 100%;
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active, .btn-secondary:active:focus, .btn-secondary.active, .open .dropdown-toggle.btn-secondary, #button-login.btn.btn-secondary:focus, .btn-secondary:active, #button-account.btn.btn-secondary:focus, #button-register.btn.btn-secondary:focus, #button-shipping-method.btn.btn-secondary:focus, #button-payment-method.btn.btn-secondary:focus, #button-guest.btn.btn-secondary:focus, #button-coupon.btn.btn-secondary:focus, #button-voucher.btn.btn-secondary:focus, #button-quote.btn.btn-secondary:focus, .btn-secondary.active:focus, .btn-secondary.active:hover, .btn-secondary.focus:active, .btn-secondary:active:focus,  .open > .dropdown-toggle.btn-secondary.focus, .open > .dropdown-toggle.btn-secondary:focus, .open > .dropdown-toggle.btn-secondary:hover {
	background: #fff;
	color: #111;
	border: none;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}
.btn-secondary.disabled, .btn-secondary.disabled.active, .btn-secondary.disabled.focus, .btn-secondary.disabled:active, .btn-secondary.disabled:focus, .btn-secondary.disabled:hover, .btn-secondary[disabled], .btn-secondary.active[disabled], .btn-secondary.focus[disabled], .btn-secondary[disabled]:active, .btn-secondary[disabled]:focus, .btn-secondary[disabled]:hover, fieldset[disabled] .btn-secondary, fieldset[disabled] .btn-secondary.active, fieldset[disabled] .btn-secondary.focus, fieldset[disabled] .btn-secondary:active, fieldset[disabled] .btn-secondary:focus, fieldset[disabled] .btn-secondary:hover {
	background: #fff;
	color: #111;
	border: none;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}
.btn-info {
    color: #fff;
    background: #111;
    border: none;
    padding: 10px 12px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -khtml-border-radius: 0;
    border-radius: 0;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    text-transform: uppercase;
    border: none;
    font-size: 14px;
    font-weight: 500;
}
.btn-info:hover, .btn-info.active, .btn-info:active, .open > .dropdown-toggle.btn-info, .btn-info:active:focus, .btn-info:active:hover, .btn-info.focus, .btn-info:focus {
	color: #FFF;
	background-color: var(--primary);
	border: none;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	outline: none;
}
.btn-info::before{
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary);
	transition: all 400ms ease;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
	height: 100%;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-khtml-border-radius: 0;
}
.btn-info:hover::before, .btn-info:focus::before, .btn-info.active::before  {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scaleX(1);
}



.dropdown-menu>li>a {
    white-space: normal;
}
#menu .category .category-title {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 17px 30px 18px;
    min-width: 270px;
    letter-spacing: .4px;
    font-weight: 500;
}
#menu .category .category-title svg {
    fill: #fff;
}
@media (min-width: 768px) {
    #menu .category .category-title {
        text-transform: uppercase;
        font-family: 'Oswald', sans-serif;
        font-weight: 500;
    }
}
#menu .fa-angle-up, #menu .fa-angle-down, #menu .fa-angle-left, #menu .fa-angle-right {
    font-size: 14px;
}

.brand-name {
    border: 1px solid #e8e9eb;
    transition: all linear 200ms;
}
.brand-name:hover {
    border-color: #000;
}
.brand-name a span {
    width: 100%;
    /* float: left; */
    background: #fafafa;
    padding: 5px 14px 6px;
    border-top: 1px solid #e8e9eb;
    display: block;
}
.dropdown-menu.brands .col-md-2 {
    padding: 0 6px;
}
@media (min-width: 768px) {
    #menu .nav > li > a {
        font-size: 16px; 
        text-transform: none;
        padding-top: 17px;
        padding-bottom: 18px;
    }
    #menu .nav > li.dropdown .dropdown-menu {
        padding: 0;
        border-top: none;
        border: 1px solid #e8e9eb;
        border-radius: 0;
        min-width: 270px;  
    }
    #menu .nav > li.category .dropdown-menu {
        /* min-width: 270px;     */
    }
    #menu .nav > li.dropdown .dropdown-menu li a {
        display: block;
        font-size: 14px;
        color: #000;
        border-bottom: 1px dashed #e8e9eb;
        padding: 13px 15px 13px 15px;
    }
    #menu .nav > li.category .dropdown-menu li a {
        padding: 13px 53px 13px 54px;
    }
    #menu .nav > li.dropdown .dropdown-menu li.dropdown-submenu > a:after {
        top: 50%;
        right: 20px;
        font-size: 16px;
        transform: translateY(-50%);
    }
    #menu .nav > li.dropdown .dropdown-menu li > a:before {
        content: "";
        position: absolute;
        top: 50%;
        left: 18px;
        transform: translateY(-50%);
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' width='512' height='512' x='0' y='0' viewBox='0 0 512 512' style='enable-background:new 0 0 512 512' xml:space='preserve' class=''%3E%3Cg%3E%3Cpath d='m506.134 241.843-.018-.019-104.504-104c-7.829-7.791-20.492-7.762-28.285.068-7.792 7.829-7.762 20.492.067 28.284L443.558 236H20c-11.046 0-20 8.954-20 20s8.954 20 20 20h423.557l-70.162 69.824c-7.829 7.792-7.859 20.455-.067 28.284 7.793 7.831 20.457 7.858 28.285.068l104.504-104 .018-.019c7.833-7.818 7.808-20.522-.001-28.314z' fill='%23555555' opacity='1' data-original='%23000000' class=''%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
        background-size: contain;
        width: 16px;
        height: 16px;
        background-position: center;
        background-repeat: no-repeat;
    }
    #menu .navbar-nav > li.dropdown .dropdown-menu li a:hover:before, 
    #menu .navbar-nav > li.dropdown .dropdown-menu li a:focus:before, 
    #menu .navbar-nav > li.dropdown .dropdown-menu li a:active:before {
        transform: translateY(-50%);
    }
    #menu .nav > li.dropdown:not(.category) .dropdown-menu li > a:before {
        display: none;
    }
    

    #menu .nav > li.dropdown .dropdown-menu.brands {
        padding: 15px 11px;
        display: flex;
        flex-wrap: wrap;
        gap: 15px 0;
    }
    #menu .dropdown-menu-full .brands a {
        display: block;
        padding: 0;
        font-size: 15px;
        text-align: center;
        text-transform: none;
        font-weight: 500;
    }
    #menu .dropdown-menu-full .brands a:hover {
        color: #000;
    }
    #menu .dropdown-menu-full .brands img {
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
        margin: 15px 0;
        transition: all linear 200ms;
    }
    #menu .dropdown-menu-full .brands .brand-name:hover img {
        -webkit-filter: grayscale(0);
        filter: grayscale(0);
    }
    #menu .category-title .fa-angle-down {
        margin-left: auto;
    }
}




#logo .img-responsive {
    max-height: 100px;
}
#search .input-lg {
    border: 2px solid var(--primary);
    border-radius: 0px;
}
#search .input-group-btn {
    top: 0;
    height: auto;
    bottom: 0;
    width: auto;
    padding: 0;
}
#search .btn-lg {
    min-width: 86px;
    border-radius: 0;
    height: 100%;
}


.header-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 15px 0;
}
.header-content {
    display: flex;
    align-items: center;
    flex: 1 1 0;
    gap: 30px;
}
.header-search {
    flex: 1;
}
.header-search #search {
    margin: 0 auto;
}
.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}
.header-contacts .phones {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-contacts .phones-wrap {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-family: 'Oswald', sans-serif;
}
.header-contacts .phones .phones-wrap a {
    padding: 0;
    border: none;
    font-weight: 500;
    transition: all ease-in-out 300ms;
}
.header-contacts .phones .phones-wrap a:hover {
    color: var(--primary-dark);
}
.schedule {
    padding-left: 46px;
    font-size: 12px;
}


#cart > .btn-cart {
    width: auto;
    height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent !important;
    border: none !important;
    line-height: 0;
}
#cart-total {
    padding: 0;
    width: 17px;
    height: 17px;
    top: -8px;
    right: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 17px;
    font-weight: 400;
}

.header-icons .wishlist {
    padding: 0;
    position: relative;
    line-height: 0;
    border: none;
}
.wishlist .wishlist-total-count {
    position: absolute;
    width: 17px;
    height: 17px;
    top: -8px;
    right: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 17px;
    font-weight: 400;
    background: #000;
    color: #fff;
    border-radius: 50%;
}

.header-icons .account {
    padding: 0;
    line-height: 0;
    border: none;
}
.header-icons-item .search-toggle {
    padding: 0;
    border: none;
    line-height: 0;
}
.header-icons-item svg {
        height: 35px;
        width: auto;
    }
.header-icons-item svg *{
    transition: all ease-in-out 200ms;
}
.header-icons-item .btn:hover svg * {
    fill: var(--primary);
}

.hamburger-menu {
    background: transparent;
    border: none;
    line-height: 0;
    padding: 0;
}

.compare-btn span {
    display: inline!important;
}
.full-menu {
    margin-bottom: 0px;
}
@media (max-width: 991px) {
    #logo {
        margin: 0;
    }

    .header-content {
        justify-content: flex-end;
    }

    .header-search {
        position: fixed;
        background: #fff;
        width: 100%;
        top: 0;
        left: 0;
        padding: 50px 30px;
        z-index: 999;
        border-bottom: 1px solid #f6f6f6;
        transform: translateY(-100%);
        transition: all linear 200ms;
    }
    .search-open .header-search {
        transform: translateY(0);
        z-index: 99999;
    }

    .search-close {
        position: absolute;
        top: 10px;
        right: 30px;
    }

    .header-search #search {
        width: 100%;
    }

    .header-icons {
        gap: 20px;
    }
}
@media (max-width: 767px) {
    #logo .img-responsive {
        max-height: 75px;
    }

    .header-inner {
        padding: 10px 0;
    }
    .header-icons {
        gap: 25px;
    } 
    #top {
        background: #F6F6F6! important;
        border: none;
    }

    body.menu-open, body.search-open, body.cart-open  {
        position: relative;
        width: 100%;
        overflow: hidden;
        height: 100%;
    }
    body:before {
        background: transparent;
        -webkit-transition: background 0.5s ease;
        -moz-transition: background 0.5s ease;
        -o-transition: background 0.5s ease;
        transition: background 0.5s ease;
    }
    body.menu-open:before, body.search-open:before {
        content: "";
        background: #000;
        opacity: 0.7;
        filter: alpha(opacity=70);
        position: absolute;
        left: 300px;
        height: 100%;
        /* width: calc(100% - 300px); */
        width: 100%;
        left: 0;
        top: 0;
        z-index: 99999;
        overflow: hidden;
        
    }

    .header-search {
        padding-left: 15px;
        padding-right: 15px;
    }
    .search-close {
        right: 15px;
    }

    .aside {
        position: fixed;
        z-index: 99999;
        display: block;
        margin-top: 0px;
        padding: 0px 10px 10px;
        width: 300px;
        height: 100%;
        max-height: initial;
        background-color: #ffffff;
        list-style: none;
        overflow: auto;
        left: -100%;
        top: 0;
        border: 1px solid #ededed;
        -webkit-box-shadow: 0 8px 15px 0 rgb(0 0 0 / 10%);
        box-shadow: 0 8px 15px 0 rgb(0 0 0 / 10%);
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
    }
    body.menu-open .aside {
        left: 0px;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .full-menu, #menu {
        background: transparent !important;
    }
    .navbar-header {
        display: none;
    }
    #menu .navbar-collapse {
        background: transparent;
        padding: 0;
        border: none;
        box-shadow: none;
        display: block;
    }
    #menu .navbar-nav {
        margin: 0;
        border: none;
    }
    .aside-body .container {
        padding: 0;
    }
    #menu .nav > li, #menu .dropdown-menu li {
        border-bottom: 1px dashed #efefef;
    }
    #menu .nav li.dropdown .dropdown-menu {
        margin: 0!important;
    }
    #menu .category .category-title svg {
        display: none;
    }
    #menu .nav > li > a {
        padding: 10px;
        font-size: 16px;
    }
    .aside-close.close {
        float: none;
        opacity: 1;
        text-shadow: none;
        font-size: 0;
        line-height: 0;
    }
    .aside-top {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 20px 0;
        border-bottom: 1px solid #efefef;
    }
    .aside-top> span {
        font-weight: bold;
        font-size: 18px;
    }
    #menu .category .category-title {
        padding: 10px;
    }
    #menu .nav li .dropdown-toggle,
    #menu .nav li .dropdown-submenu {
        padding-right: 40px;
    }

    .header-contacts {
        margin: 0;
        padding: 20px 10px;
        /* border-top: 1px solid #efefef; */
    }
    .header-contacts .phones-wrap {
        gap: 15px;
    }
    .header-contacts .phones a {
        font-size: 20px;
    }
    .schedule {
        text-align: left;
        margin-top: 10px;
    }
    #menu .nav li.dropdown .dropdown-menu {
        font-size: 16px;
    }

    .dropdown-menu.brands .col-md-2 {
        padding: 0;
    }
    .brand-name {
        border: none;
    }
    .brand-name a {
        padding: 10px 15px;
        display: block;
    }
    .brand-name a span {
        padding: 0;
        border: none;
        background: transparent;
        display: inline-block;
        width: auto;
    }
    .brand-name img {
        display: none;
    }

    .header {
        border-bottom: 1px solid #e8e9eb;
    }
    
}
@media (max-width: 576px) {
    .header-inner {
        /* flex-wrap: wrap; */
        gap: 10px 15px;
    } 
    .hamburger-menu svg {
        width: 30px;
        height: 30px;
    }
    .header-content {
        /* flex: 0 0 100%; */
    }  
    .header-icons {
        /* width: 100%; */
        /* justify-content: center; */
    }
    #logo .img-responsive {
        max-height: 60px;
    }
    .header-logo {
        /* margin: 0 auto; */
    }
    .header-logo #logo {
        /* margin-left: -35px; */
    } 
    .header-icons {
        gap: 15px;
    }
    .header-icons-item svg {
        height: 25px;
    }
    
}
@media (max-width: 450px) {
    
}


#top .costom-links ul {
    display: flex;
    flex-wrap: wrap;
    padding-top: 10px;
}
#top .costom-links > ul > li {
    float: none;
}
#top .costom-links > ul > li a{
    padding: 0 0 0 30px;
    position: relative;
}
#top .costom-links > ul > li a::before {
    content: "\\";
    position: absolute;
    left: 12px;
    top: -2px;
    color: #7a7a7a;
}
#top .costom-links > ul > li:first-child a {
    padding-left: 0px;
}
#top .costom-links > ul > li:first-child a::before{
    display: none;
}




.common-home .gallery-top img {
    width: 100%;
    border-radius: 0;
}
.common-home .gallery-thumbs {
    display: none;
}

.category-block .image {
    /* border: 1px solid #eaeaea; */
    transition: all linear 200ms;
}
.category-block:hover .image {
    border-color: var(--primary-dark);
}
.category-block:hover .image img {
    opacity: 1;
}
.category-block .title {
    position: static;
    background: transparent;
}
.category-block:hover .title {
    background: transparent;
}
.category-block .title p {
    font-size: 22px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    line-height: 1.2;
}
.category-block .title a {
    font-weight: 500;
    color: #222222;
    transition: all 0.4s linear;
}
.category-block .image img {
    transition: all 0.4s linear;
}
.category-block:hover .title a{
    color: var(--primary);
}
@mediA (max-width: 767px) {
    .category-block .title p{
        font-size: 18px;
    }
}


.mod-blog0 {
    overflow: visible;
}
.slider-module .swiper-pager {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 10px;
    margin-top: 20px;
}
.slider-module .swiper-button-next, .slider-module .swiper-button-prev {
    background-color: #fff;
    border: none;
    background-size: 8px;
    width: 35px;
    height: 35px;
    position: relative;
    top: auto;
    left: auto;
    right:auto;
    border: 1px solid #111;
}
.slider-module .swiper-button-prev:before{
    border-top: 1px solid #111;
    content: "";
    height: 1px;
    left: -61px;
    position: absolute;
    text-align: left;
    top: 14px;
    width: 60px;
}
.slider-module .swiper-button-prev:after {
    border-bottom: 1px solid #111;
    content: "";
    height: 1px;
    left: -41px;
    position: absolute;
    top: 18px;
    width: 40px;
}
.slider-module .swiper-button-next:before {
    border-top: 1px solid #111;
    content: "";
    height: 1px;
    position: absolute;
    right: -61px;
    top: 14px;
    width: 60px
}
.slider-module .swiper-button-next:after {
    border-bottom: 1px solid #111;
    content: "";
    height: 1px;
    position: absolute;
    right: -41px;
    top: 18px;
    width: 40px;
}
.slider-module .swiper-button-next:hover,
.slider-module .swiper-button-prev:hover {

}
.slider-module .swiper-button-next.swiper-button-disabled:hover, 
.slider-module .swiper-button-prev.swiper-button-disabled:hover {
    background-color: #fff;
    border-color: #111;
}
.slider-module .swiper-button-next.swiper-button-disabled, 
.slider-module .swiper-button-prev.swiper-button-disabled {
    opacity: .5;
    cursor: not-allowed;
}



#back-top a.backtotop {
    background: #3d3d3d;
    font-size: 0;
    cursor: pointer;
    width: 60px;
    height: 60px;
    text-align: center;
    color: #fff;
    clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
    right: 0;
    bottom: 0;
    border-radius: 0;
    border: none;
}
#back-top a.backtotop:hover {
    background-color: var(--primary-dark);
}
#back-top a.backtotop .fa {
    display: none;
}
#back-top a.backtotop::before {
    color: #fff;
    content: "\f0a6";
    font-family: "FontAwesome";
    font-size: 22px;
    padding: 2px 14px;
    position: relative;
    right: -13px;
    top: 23px;
    display: inline-block;
}



footer {
    margin-top: 0;
    border: none;
}
footer .soc-icon a {
    border-radius: 0;
}
.top-footer {
    background: var(--primary);
    padding-top: 30px;
    padding-bottom: 30px;
    color: #fff;
    margin-top: 50px;
}
.top-footer .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.top-footer #logo-footer .img-responsive {
    max-height: 100px;
}
#newsletter {
    margin-top: 0;
}
.top-footer .newsletter {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 30px;
}
.top-footer .newsletter-inner, 
.top-footer .newsletter-form {
    width: 50%;
}
.top-footer .newsletter-inner h5 {
    text-transform: uppercase;
    font-size: 25px;
    color: #fff;
    margin-top: 0;
    font-family: 'Oswald', sans-serif;
}
.top-footer .newsletter-inner h5 .fa {
    font-size: 30px;
}
.top-footer #newsletter .form-control {
    margin: 0;
    border-radius: 0;
}
.top-footer #newsletter .input-group-btn {
    top: 0;
    bottom: 0;
    padding: 0;
    width: auto;
    height: auto;
}
.top-footer #newsletter .input-group-btn .btn {
    width: 86px;
    height: 100%;
    border-radius: 0;
    background: #000;
}
.top-footer #newsletter .input-group-btn .btn:hover{
    background-color: var(--primary-dark);
}
@media (max-width: 991px) {
    .top-footer .newsletter {
        flex-direction: column;
        gap: 15px;
    }
    .top-footer .newsletter-inner, .top-footer .newsletter-form {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .top-footer #logo-footer .img-responsive {
        margin: 0 auto 20px;
    }
    .top-footer .newsletter-inner {
        text-align: center;
    }

    .top-footer .newsletter-inner h5 {
        font-size: 20px;
    }
    .top-footer .newsletter-inner h5 .fa {
        font-size: 24px;
    }
    .top-footer #logo-footer .img-responsive {
        max-height: 75px;
        margin: 0 auto 15px;
    }
}





footer h5 {
    font-size: 18px;
    margin: 0px 0 20px;
    position: relative;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
}
footer h5:before {
    display: none;
}
footer .footer-link > li > a {
    font-size: 14px;
    line-height: 26px;
}
@media (min-width: 768px) {
    footer h5 {
        font-size: 22px;
    }
}
@media (max-width: 991px) {
    footer .row {
        display: flex;
        flex-wrap: wrap;
        gap: 30px 0;
    }
}
@media (max-width: 576px) {
    footer .row {
        gap: 20px 0;
    }
    footer .col-xs-6 {
        width: 100%;
        border-bottom: 1px solid #ccc;
        padding-bottom: 20px;
    }
    footer .footer-link > li:last-child > a {
        margin-bottom: 0;
    }
    footer hr {
        display: none;
    }

    footer .row .col-xs-12 {
        float: none;
    }
    footer .row.footer-bottom {
        flex-direction: column-reverse;
        justify-content: center;
        text-align: center;
        margin: 0;
    }
    .payments-metods {
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    footer h5 {
        margin: 0;
    }
    footer .contacts-column h5 {
        margin-bottom: 20px;
    }

    .footer-link {
        margin: 0;
        padding-top: 20px;

        display: none;
    }
    footer h5:before {
        display: none;
    }
    footer .col-xs-6:not(.contacts-column) h5 {
        position: relative;
        cursor: pointer;
    }
    footer .col-xs-6:not(.contacts-column) h5:after {
        color: #fff;
        content: "\f107";
        font-family: "FontAwesome";
        font-size: 20px;
        font-weight: bold;
        height: 20px;
        margin: 0;
        position: absolute;
        right: 0px;
        text-align: center;
        top: 0;
        width: 20px;
    }
    footer .col-xs-6:not(.contacts-column) h5.active:after {
        content: "\f106";
    }
}


#slideshow0 img.img-responsive {
    width: 100%;
}
@media (max-width: 767px) {
    #slideshow0 img.img-responsive {
        height: 350px;
        object-fit: cover;
    }
    #slideshow0 .swiper-pager {
        display: none;
    }
}


.product-layout {
    flex-direction: column;
    height: auto;
    align-self: stretch;
    display: flex;
}


.product-thumb {
    margin-bottom: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-thumb h4 {
    margin: 0 0 20px;
    color: #161616;
    font: 400 16px/22px "Roboto", Helvetica, sans-serif;
}
.product-thumb h4 a {
    color: inherit;
}
.product-thumb h4 a:hover {
    color: var(--primary-dark);
}
.product-thumb .caption {
    /* text-align: left; */
    flex: 1;
    display: flex;
    flex-direction: column;
}
.caption-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-thumb .price {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 25px;
    margin-top: auto;
}
.product-thumb .button-group.sl > a {
    background-color: #000;
    border-color: #000;
    border-radius: 0;
}
.product-thumb .button-group.sl > a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    opacity: 1;
}
.product-thumb .button-group:not(.sl) {
    display: flex;
    gap: 5px;
    padding: 0 20px;
}
.product-thumb .fa-shopping-cart:before {
    content: '';
    width: 22px;
    height: 22px;
    background-image: url(/catalog/view/theme/grand/image/new-design/cart.svg);
    display: block;
    line-height: 0;
    background-size: contain;
}
.product-thumb .button-group:not(.sl) button {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    gap: 10px;
    padding: 12px 20px 12px;
}
.product-thumb .button-group:not(.sl) button:first-child {    
    font: 500 14px/20px "Roboto", Helvetica, sans-serif;
    flex: 1;
}
.product-thumb .button-group:not(.sl) button.btn-fastordercat {
    background-color: #111;
}
.product-thumb .button-group:not(.sl) button:hover, 
.product-thumb .button-group:not(.sl) button:focus, 
.product-thumb .button-group:not(.sl) button:active, 
.product-thumb .button-group:not(.sl) button:active:focus {
	background: var(--primary-dark);
    border-color: var(--primary-dark);
	color: #fff;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}
@media (max-width: 767px) {
    .product-thumb h4 {
        font-size: 14px;
        line-height: 1.2;
        margin-bottom: 10px;
    }
}
@media (max-width: 576px) {
    .product-thumb h4 {
        font-size: 12px;
    }
    .product-thumb .caption {
        padding: 0;
    }
    .product-thumb .button-group:not(.sl) {
        padding: 0;
    }
    .product-thumb .price {
        font-size: 16px;
        margin-bottom: 15px;
    }
    .product-grid .product-thumb .caption {
        padding: 0;
    }
}

.main-menu.aside+.slider-container {
    margin: 0;
}
.page>.slider-container {
    margin: 0;
}
.hero-slider .swiper-slide {
    position: relative;
}
.hero-slider .hero-overlay {
    position: absolute;
    top: 0;
    height: 100%;
    width: 60%;
}
.hero-slider .hero-overlay.position-left {
    background: linear-gradient(90deg, black, transparent);
    left: 0;
}
.hero-slider .hero-overlay.position-right {
    background: linear-gradient(270deg, black, transparent);
    right: 0;
}
.hero-slider .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-title {
    color: #fff;
    font-size: 90px;
    font-family: 'Oswald', sans-serif;
}
.hero-slider-content {
    color: #fff;
    font-size: 30px;
    line-height: 1.2;
    width: 60%;
}
.position-left .hero-slider-content {

}
.position-right .hero-slider-content {
    margin-left: auto;
}
.hero-description {
    margin-bottom: 60px;
}
.hero-btn {
    padding: 14px 45px;
    background: var(--primary);
    border-radius: 0px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    color: #fff;
    border: none;
    text-transform: uppercase;
    transition: all linear 300ms;
}
.hero-btn:hover {
    background-color: var(--primary-dark);
    color: #fff;
}
.swiper-slide .position-right,
.swiper-slide .position-left {
    padding: 0;
}
@media (max-width: 1200px){
    .hero-title {
        font-size: 80px;
    }
    .hero-slider-content {
        font-size: 20px;
    }
}
@media (max-width: 991px){
    .hero-title {
        font-size: 50px;
    }
    .hero-description {
        margin-bottom: 30px;
    }
    .hero-slider-content {
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    .hero-slider .container {
        width: 100%;
    }
    .hero-title {
        font-size: 40px;
    }
    .hero-slider-content {
        font-size: 16px;
    }
    .hero-btn {
        font-size: 14px;
    }
}
@media (max-width: 576px) {
    .hero-title {
        font-size: 30px;
    }
    .hero-slider-content {
        font-size: 14px;
        width: 80%;
    }
}


.mod-text-banner {
    border-radius: 0px;
    margin: 0 0 60px 0;
    padding: 50px 0;
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.mod-text-banner .row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 0;
}
.mod-text-banner a {
    height: 100%;
    display: block;
    background: #e8e9eb;
}

.mod-text-banner .tbanner-box .tbanner-content {
    padding-left: 20px;
}
.mod-text-banner .tbanner-box .tbanner-content h5 {
    color: #111;
    font-size: 22px;
    font-weight: 500;
    margin-top: 0;
    font-family: 'Oswald', sans-serif;
}
.mod-text-banner .tbanner-box .tbanner-content p {
    font-size: 15px;
}

.mod-text-banner .tbanner-box {
    display: flex;
    height: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}
.mod-text-banner .tbanner-box .tbanner-icon {
    float: none;
    margin: auto 0;
    flex: 0 0 50px;
}
@media (max-width: 991px) {
    .mod-text-banner {
        padding-top: 20px;
        padding-bottom: 20px;
    }

}
@media (max-width: 576px) {
    .mod-text-banner {
        padding-top: 10px;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }
    .mod-text-banner .row {
        gap: 10px 0
    }
    .mod-text-banner .col-xs-6 {
        width: 100%;
    }
    .mod-text-banner .tbanner-box .tbanner-content h5 {
        font-size: 18px;
    }
    .mod-text-banner .tbanner-box .tbanner-content p {
        font-size: 14px;
    }
}

.block-category0 {
    margin-bottom: 90px;
}


.title-module h3 {
    position: relative;
    font: 500 50px/52px "Oswald", Helvetica, sans-serif;
    color: #161616;
    padding: 0 0 55px 0;
    margin: 0 0 30px 0;
    text-align: center;
    text-transform: uppercase;
    display: block;
}

.title-module h3::after {
    background-image: url(/catalog/view/theme/grand/image/new-design/title-decor.svg);
    width: 167px;
    height: 30px;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    content: "";
    position: absolute;
}
.title-category, .title-module {
    margin-bottom: 0;
    border-bottom: none;
}
@media(max-width: 1024px) {
    .title-module h3 {
        font-size: 40px;
        line-height: 1.1;
    }
}
@media(max-width: 767px) {
    .title-module h3 {
        font-size: 35px;
    }
}
@media(max-width: 576px) {
    .title-module h3 {
        font-size: 30px;
    }
}


.mod-blog0 {
    margin-bottom: 90px;
}
.mod-blog0 .title-module {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mod-blog0 .title-module {
    margin-bottom: 30px;
}
.mod-blog0 .title-module h3 {
    padding-bottom: 0;
    margin-bottom: 0;
}
.mod-blog0 .title-module h3::after{
    display: none;
}
.blog-preview-btn {
    float: none;
	font: 400 15px/18px "Roboto", Helvetica, sans-serif;
	color: #fff;
	padding: 14px 30px;
	background: #111;
	margin: 0;
	transition: all 400ms ease-in-out;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
	display: inline-block;
	text-decoration: none;
	position: relative;
	z-index: 1;
	outline: none;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-khtml-border-radius: 0;
	border: 1px solid #111;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.blog-preview-btn::before{
	background: var(--primary-dark);
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 0;
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-khtml-border-radius: 0;
	z-index: -1;
	right: 0;
	transition: all 400ms ease-in-out;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
}
.blog-preview-btn:hover::before, .blog-preview-btn:active::before, .blog-preview-btn:focus::before{
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	height: 100%;
}
.blog-preview-btn:hover, .blog-preview-btn:focus, .blog-preview-btn:active, .blog-preview-btn:active:focus {
	background: var(--primary-dark);
    border-color: var(--primary-dark);
	color: #fff;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}
/* .blog-preview-btn:focus, .blog-preview-btn:hover {
    color: #fff;
    background: var(--primary-dark);
    border-color: var(--primary-dark);
} */
.blog-article {
    padding: 20px;
    text-align: left;
    background: #f9f9f9;
    border-bottom: 2px solid var(--primary);
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-article h4 {
    margin-top: 0;
}
.post-meta {
    text-align: left;
    margin-top: auto;
}
.blog-article h4 a.name {
    font-size: 20px;
    font-weight: 500;
    font-family: "Oswald",sans-serif;
    color: #111;
}
.blog-article .description {
    font-size: 14px;
}
.article-date {
    font: 500 14px/20px "Roboto", Helvetica, sans-serif;
    color: #111;
    text-transform: uppercase;
    position: static;
    background: transparent;
    margin: 0 0 10px;
    padding: 0;
}

.blog-thumb {
    flex-direction: column;
    height: auto;
    align-self: stretch;
    display: flex;
}
@media (max-width: 767px) {
    .blog-preview-btn{
        font-size: 14px;
    }
}


.slider-container, .slider-module {
    margin-bottom: 100px;
}
@media (max-width: 991px) {
    .slider-container, .slider-module {
        margin-bottom: 80px;
    }
}
@media (max-width: 576px) {
    .slider-container, .slider-module {
        margin-bottom: 60px;
    }
}


/* TB-banner-cms start*/
#tb-banner-cms {
    margin: 0 0 100px 0;
}
#tb-banner-cms .tb-banner-images {
	position: relative;
	overflow: hidden;
}
#tb-banner-cms .tb-banner-images .tb-banner-text {
	position: absolute;
	top: 40px;
	right: 40px;
	width: 48%;
	bottom: auto;
	left: auto;
	margin: auto 0;
	text-align: right;
}
#tb-banner-cms .tb-banner-images .tb-banner-text.tb-banner-images-1{
	text-align: left;
	left: 40px;
	right: auto;
}
#tb-banner-cms .tb-banner-text h2 {
	font: 600 44px/46px "Oswald", Helvetica, sans-serif;
	color: #fff;
	margin: 0;
	text-transform: uppercase;
}
#tb-banner-cms .tb-banner-text p {
	font: 400 16px/30px "Roboto", Helvetica, sans-serif;
	color: #fff;
	margin: 10px 0;
}
#tb-banner-cms .tb-banner-images a img{
	transition: all 400ms ease-in-out 0s;
	-webkit-transition: all 400ms ease-in-out 0s;
	-moz-transition: all 400ms ease-in-out 0s;
	-o-transition: all 400ms ease-in-out 0s;
	-ms-transition: all 400ms ease-in-out 0s;
}
#tb-banner-cms .tb-banner-images:hover a img{
	transform: scale(1.05);
}
@media screen and (max-width: 1300px) {
    #tb-banner-cms .tb-banner-text h2{
		font-size: 40px;
		line-height: 42px;
	}
	#tb-banner-cms .tb-banner-text p{
		font-size: 14px;
		line-height: 28px;
	}
}
@media screen and (max-width: 1199px) {
    #tb-banner-cms .tb-banner-text a {
        padding: 12px 25px;
        font-size: 14px;
        line-height: 16px;
    }
	#tb-banner-cms .tb-banner-text h2 {
		font-size: 34px;
		line-height: 36px;
	}
	#tb-banner-cms .tb-banner-text p {
		font-size: 13px;
		line-height: 26px;
	}
	#tb-banner-cms .tb-banner-images .tb-banner-text {
		top: 30px;
	}
	#tb-banner-cms .tb-banner-images .tb-banner-text {
		right: 30px;
	}
	#tb-banner-cms .tb-banner-images .tb-banner-text.tb-banner-images-1 {
		left: 30px;
	}
}
@media screen and (max-width: 991px) {
	#tb-banner-cms {
		margin: 0 0 60px 0;
	}
	#tb-banner-cms .tb-banner-text h2 {
		font-size: 28px;
		line-height: 30px;
	}
	#tb-banner-cms .tb-banner-text p {
		font-size: 11px;
		line-height: 22px;
		margin: 5px 0;
	}
	#tb-banner-cms .tb-banner-images .tb-banner-text {
		top: 14px;
        width: 55%;
	}
    
}
@media screen and (max-width: 767px) {
	#tb-banner-cms .tb-banner-images {
		display: inline-block;
	}
	#tb-banner-cms {
		text-align: center;
	}
	#tb-banner-cms .tb-banner-cms-col:first-child .tb-banner-images{
		margin: 0 auto 40px;
	}
    #tb-banner-cms .tb-banner-text a {
        padding: 12px 24px;
    }
	#tb-banner-cms .tb-banner-text h2 {
		font-size: 30px;
		line-height: 32px;
	}
	#tb-banner-cms .tb-banner-text p {
		font-size: 13px;
		line-height: 24px;
		margin: 10px 0;
	}
	#tb-banner-cms .tb-banner-images .tb-banner-text {
		top: 25px;
	}
}
@media screen and (max-width: 480px) {
	#tb-banner-cms .tb-banner-images .tb-banner-text h2 {
		font-size: 22px;
		line-height: 26px;
		margin: 0 0 10px 0;
	}
    #tb-banner-cms .tb-banner-images .tb-banner-text p {
        display: none;
    }
    #tb-banner-cms .tb-banner-text a {
        padding: 12px 19px;
    }
	#tb-banner-cms {
		margin: 0 0 20px 0;
	}
	#tb-banner-cms .tb-banner-cms-col:first-child .tb-banner-images {
		margin: 0 auto 20px;
	}
}
@media screen and (max-width: 360px) {
    #tb-banner-cms .tb-banner-text a {
        padding: 9px 19px;
        font-size: 11px;
        line-height: 13px;
    }
	#tb-banner-cms .tb-banner-images .tb-banner-text.tb-banner-images-1 {
		left: 20px;
	}
	#tb-banner-cms .tb-banner-images .tb-banner-text {
		top: 20px;
	}
	#tb-banner-cms .tb-banner-images .tb-banner-text {
		right: 20px;
	}
}
/* TB-banner-cms end*/



.swiper-pagination {
    position: static;
}
.swiper-pagination-bullet{
    background: #e8e9eb;
}
.swiper-pagination-bullet-active {
    background: var(--primary-dark);
}



.breadcrumb {
    padding: 16px 0;
    position: relative;
    margin-bottom: 30px;
    font: 400 14px/20px"Roboto", Helvetica, sans-serif;
    color: #111;
}
.breadcrumb::before{
    content: '';
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #f6f6f6;
}
.breadcrumb > li {
    display: inline;
}
@media (max-width: 576px) {
    .breadcrumb {
        font-size: 12px;
        line-height: 1.1;
    }
}


.product-filter {
    padding: 7px 15px;
    margin: 20px 0 30px;
    border: 1px solid #e5e5e5;
}
.product-filter .input-group-sm > .form-control {
    border-radius: 0;
    border: 1px solid #e5e5e5;
    box-shadow: none;
    height: 42px;
}
.input-group .input-group-addon {
    height: 42px;
    background: none;
    border: none;
    color: #666;
    font: 500 14px/22px"Roboto", Helvetica, sans-serif;
    padding-left: 0;
    padding-right: 3px;
}
.product-filter button {
    border: none;
    background: transparent !important;
    box-shadow: none !important;
    margin-top: 4px;

}
.product-filter button .fa {
    font-size: 30px;
}
.title-category h1,
.title-category .h1 {
    padding-bottom: 20px;
    color: #111;
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
}
.category-list-block .name {
    padding: 0; 
    background: transparent;   
}
.category-list-block .name a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    background: #e5e5e5;
}
.category-list-block .name a:hover{
    color: var(--primary);
}


.product-filter + .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 0;
    margin-bottom: 30px;
}


.ocf-content {
    border: 1px solid #e5e5e5;
    padding: 20px;
}
.ocf-header {
    color: #111111;
    font: 600 15px/22px"Roboto", Helvetica, sans-serif;
    position: relative;
    padding: 0 0 5px;
    background: none;
    margin: 0 0 5px 0;
    border-bottom: 1px solid #e5e5e5;
}
.ocf-filter .ocf-noUi-connect:before, .ocf-filter .ocf-noUi-handle {
    background-color: var(--primary-dark);
}
.ocf-filter .ocf-scroll-y::-webkit-scrollbar-thumb {
    background-color: #000;
}


.box {
    border: 1px solid #e5e5e5;
    padding: 20px;
}
.box .box-heading {
    color: #111111;
    font: 600 15px/22px"Roboto", Helvetica, sans-serif;
    position: relative;
    padding: 0 0 5px;
    background: none;
    margin: 0 0 5px 0;
    border-bottom: 1px solid #e5e5e5;
}
.box .box-heading:before {
    display: none;
}
.box .box-content {
    padding: 0;
    background: none;
    margin: 0;
}
.box .box-content .box-category li:last-child {
    border-bottom: none;
}


#product-category > .row {
    display: flex;
    /* flex-wrap: wrap; */
}
#product-category #column-left {
    min-width: 300px;
}
.pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}
.pagination > li > a, .pagination > li > span {
    margin-left: 0; 
}
@media (max-width: 991px) {
    .title-category h1,
    .title-category .h1 {
        font-size: 24px;
    }
    #product-category > .row {
        flex-wrap: wrap;
    }
    .ocf-btn-mobile-fixed {
        position: absolute;
        left: 100%;
        top: 50%;
        transform: rotate(-90deg) translate(-40%,50%);
        transform-origin: left center;
        transition: transform 200ms ease-in-out 400ms;
        z-index: 1;
    }
    .ocf-btn-mobile-fixed .ocf-btn {
        background-color: #111 !important;
    }
}
@media (max-width: 767px) {
    .pagination-wrap {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 20px 0;
    }
    .pagination-wrap .col-sm-6 {
        text-align: center;
    }
    .pagination {
        justify-content: center;
    }
}
@media (max-width: 576px) {
    .product-filter {
        padding: 0 10px; 
    }
    .product-filter .row {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 10px 0;
    }
    .product-filter .col-xs-6 {
        width: 100%;
    }
    .product-filter .input-group-sm > .form-control {
        width: auto;
    }
    .product-filter .input-group .input-group-addon {
        width: auto;
        margin-bottom: 0;
        height: auto;
    }

    .product-filter .form-group {
        margin-bottom: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}




/*
 *
 * Product page
 *
 */
#column-right .container {
    width: 100%;
    padding: 0;
}
#column-left .mod-text-banner .tbanner-icon img, 
#column-right .mod-text-banner .tbanner-icon img {
    width: 50px;
    height: 50px;
}
#column-left .mod-text-banner, #column-right .mod-text-banner {
    padding: 0;
}
#column-left .mod-text-banner .row, #column-right .mod-text-banner .row {
    gap: 0;
}
#price .price, #price .price-new {
    font-family: 'Oswald', sans-serif;
}
.product-view li {
    color: #666;
    font: 500 15px/20px "Roboto", Helvetica, sans-serif;
}
#button-cart {
    background: var(--primary);
    border: medium none;
    letter-spacing: 1px;
    margin: 0 10px;
    padding: 12px 20px 12px 45px;
    color: #fff;
    font: 500 14px/20px "Roboto", Helvetica, sans-serif;
    position: relative;
    transition: all 400ms ease-in-out 0s;
    -webkit-transition: all 400ms ease-in-out 0s;
    -moz-transition: all 400ms ease-in-out 0s;
    -o-transition: all 400ms ease-in-out 0s;
    -ms-transition: all 400ms ease-in-out 0s;
    text-transform: uppercase;
    border-radius: 0;
}
#button-cart:hover {
    background-color: var(--primary-dark);
}
#button-cart::after {
    content: '';
    width: 22px;
    height: 22px;
    background-image: url(/catalog/view/theme/grand/image/new-design/cart.svg);
    display: block;
    line-height: 0;
    background-size: contain; 
    position: absolute;
    left: 11px;
    top: 11px;
}
.btn-quantity span {
    width: 30px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    border-radius: 0;
    background: transparent;
    border-color: #e5e5e5;
}
.btn-quantity span:hover {
    color: var(--primary);
}
#input-quantity {
    border-color: #e5e5e5;
    box-shadow: none;
    height: 44px;
    margin: 0;
}
.btn-fastorder {
    background-color: #111 !important;
    border-radius: 0;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-fastorder:hover {
    background-color: var(--primary-dark) !important;
}
.wishlist-compare .wishlist, .wishlist-compare .compare {
    border-radius: 0;
}

#column-right .title-module h3::after {
    display: none;
}
#column-left .title-module h3, 
#column-right .title-module h3 {
    padding-bottom: 0;
    margin-bottom: 15px;
}
#column-left .product-thumb,
#column-right .product-thumb {
    flex-direction: row;
    align-items: flex-start;
}
#column-right .product-thumb .price, 
#column-left .product-thumb .price {
    text-align: left;
}


#column-left .mod-text-banner .tbanner-box .tbanner-content, #column-right .mod-text-banner .tbanner-box .tbanner-content {
    padding-left: 20px;
}


.nav-tabs {
    padding: 20px;
    border: 1px solid#e5e5e5;
    border-width: 1px 1px 0 1px;
}
.tab-content {
    padding: 0 20px 20px;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    border-top: none;
}
.tab-content .tab-pane {
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}
.nav-tabs>li>a {
    background: #f5f5f5;
    border: none;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    color: #111;
    font: 500 14px/16px "Roboto", Helvetica, sans-serif;
    margin: 0 5px;
    padding: 14px 40px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 400ms ease-in-out 0s;
    -webkit-transition: all 400ms ease-in-out 0s;
    -moz-transition: all 400ms ease-in-out 0s;
    -o-transition: all 400ms ease-in-out 0s;
    -ms-transition: all 400ms ease-in-out 0s;
    display: inline-block;
    vertical-align: top;
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
    color: #fff;
    background: var(--primary);
    border: medium none;
}
.nav-tabs>li>a::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary);
    transition: all 400ms ease;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    height: 100%;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
}
.nav-tabs > li > a:hover::before, .nav-tabs > li > a:active::before, .nav-tabs > li > a:focus::before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}



.form-control {
    color: #666;
    border: 1px solid #e5e5e5;
    margin: 0 0 5px;
    height: 42px;
    word-break: break-all;
}
textarea.form-control {
    height: auto;
    min-height: calc(1.5em + 0.75rem + 2px);
}
select.form-control, textarea.form-control, input[type="text"].form-control, input[type="password"].form-control, input[type="datetime"].form-control, input[type="datetime-local"].form-control, input[type="date"].form-control, input[type="month"].form-control, input[type="time"].form-control, input[type="week"].form-control, input[type="number"].form-control, input[type="email"].form-control, input[type="url"].form-control, input[type="search"].form-control, input[type="tel"].form-control, input[type="color"].form-control {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;
    outline: none;
    border-radius: 0;
    box-shadow: none !important;
    font-weight: 400;
}
.form-control:hover, .form-control:focus, .form-control:active {
    border: 1px solid #ccc !important;
}
.input-group-btn>.btn {
    height: 42px;
    border-radius: 0;
    border-color: #e5e5e5;
    background: #e5e5e5;
}
#tab-review label.control-label {
    font: 500 14px/20px"Roboto", Helvetica, sans-serif;
    color: #666;
    margin-bottom: 10px;
}
#form-review h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
}
.form-group-product {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.form-group-product .btn-quantity,
.form-group-product #button-cart,
.form-group-product .btn-fastorder {
    margin: 0;
}

a.cheaper:hover {
    color: var(--primary-dark);
    border-bottom: 1px dotted var(--primary-dark);
}
.product-info .slider-module .swiper-pager {
    top: auto;
}



/*
 *
 * Contact PGE
 *
 */
.panel-default {
    border: 1px solid #e5e5e5;
    border-radius: 0;
}
.panel-body {
    padding: 15px;
}
.store-map iframe {
    width: 100%;
    min-height: 300px;
    height: 100%;
}


.information-contact .contact-location .location-title {
  font-weight: 500;
  font-size: 14px;
  color: #111;
}
.information-contact .contact-location .location-detail {
  margin: 0 0 20px 0;
  color: #666;
}
.information-contact .contact-location .store-address a i {
	font-size: 18px;
	line-height: 20px;
}
.information-contact #content h3 {
  clear: both;
  color: #111;
  font-size: 18px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
}
.information-contact .contact-location .location-title i {
	background: var(--primary);
	border: 2px solid var(--primary);
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-khtml-border-radius: 0;
	color: #fff;
	font-size: 18px;
	height: 35px;
	margin: 10px 5px 10px 0;
	padding: 7px;
	text-align: center;
	width: 35px;
	display: inline-block;
}
.contact-page {
    padding-bottom: 10px;
    background: transparent;
    border-radius: 0;
}
label {
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 5px 0;
}
.contact-form {
    margin-top: 50px;
}
.contact-form h3 {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 15px;
    margin-bottom: 30px;
}
.contact-page > .row {
    display: flex;
    flex-wrap: wrap;
}
@media (max-width: 576px) {
    .form-horizontal .form-group {
        margin-right: -6px;
        margin-left: -6px;
    }
}



/*
 *
 * POPUP CART
 *
 */
#smca-modal-body {
    width: 100%;
    min-height: 50px;
}
#smca-modal-body * {
    box-sizing: border-box !important;
}
#smca-modal-body .alert {
    line-height: 1.2;
}
#smca-modal-body .modal-body {
    padding: 0;
    overflow: initial;
    /* margin-bottom: 16px; */
}
#smca-modal-body .modal-body .product-table-cart > .product-table-body .product-table-body-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
#smca-modal-body .modal-body .product-table-cart > .product-table-body .product-table-body-row > div{
    border:none;
}
#smca-modal-body .modal-body .product-table-cart>.product-table-body .product-table-body-row>.remove {
    flex: 0 0 24px;
    max-width: 24px;
}
#smca-modal-body .trash {
    background: transparent;
}
#smca-modal-body .modal-body .product-table-cart>.product-table-body .product-table-body-row>.remove:hover path {
    fill: var(--primary-dark);
}
#smca-modal-body .modal-body .product-table-cart > .product-table-body .product-table-body-row > .name {
    display: flex;
    align-items: center;
    /* flex: 1 1 auto; */
    flex: 1 0 0;
    border: none;
}
#smca-modal-body .modal-body .product-table-cart > .product-table-body .product-table-body-row > .name > .name-left {
    flex: 0 0 56px;
    max-width: 56px;
    padding-left: 8px;
    padding-right: 8px;
}
#smca-modal-body .modal-body .product-table-cart > .product-table-body .product-table-body-row > .name > .name-right {
    padding-left: 8px!important;
    width: auto;
    flex: 1 0 0;
}
#smca-modal-body .modal-body .product-table-cart > .product-table-body .product-table-body-row > .name > .name-right .options {
    justify-content: left;
    color: #000;
    padding-right: 0!important;
    margin-top: 8px;
    font-size: 12px;
    line-height: 22px;
}
#smca-modal-body .quantity {
    margin-top: 16px;
    height: 32px;
    padding: 0;
    border: 1px solid #000!important;
}
#smca-modal-body .quantity .quantity__btn {
    line-height: 0;
    padding: 8px 16px;
}
#smca-modal-body .quantity .quantity__input{
    /* flex: 1 0 0; */
    text-align: center;
    width: 54px;
}
.popup-cart-brand {
    /* font-family: '', sans-serif; */
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}
#smca-modal-body .modal-body .product-table-cart .name .name-right a {
    font-size: 14px;
}
#smca-modal-body .modal-body .product-table-cart > .product-table-body .product-table-body-row > .total {
    width: auto;
    display: flex;
    flex-direction: column;
    align-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
    text-wrap: nowrap;
    text-align: right;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    color: #111;
    font-family: 'Oswald', sans-serif;
}
#smca-modal-body .modal-body .totals {
    display: flex;
}
.mfp-content #smca-modal-body .modal-body .product-table-cart > .product-table-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* padding-right: 10px; */
}
#smca-modal-body .product-table-item {
    line-height: 1;
    border-bottom: 1px solid #ECEAEA;
    padding: 16px 0;
}
#smca-modal-body .modal-body .model {
    font-family: 'Oswald', sans-serif;
    margin-top: 8px;
}
#smca-modal-body .modal-body .model span {
    font-family: 'Roboto', sans-serif;
}


.quantity:not(td) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    border: 1px solid #1E1E1E;
    max-width: 150px;
    text-align: center;
}
.quantity__btn {
    background: transparent;
    border: none;
    padding: 7px 16px;
}
.quantity__btn:hover path {
    fill: var(--primary);
}
.mfp-content #smca-modal-body .modal-body .totals {
    font-family: 'Oswald', sans-serif;
    text-align: right;
    display: block;
}

.mfp-content #smca-modal-body .modal-body .totals > div {
    border: none;
    border-radius: 0;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    padding: 0;
}

.mfp-content #smca-modal-body > .modal-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 6px;
    background: transparent;
}
#smca-modal-body .go-checkout {
    padding: 14px 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
#smca-modal-body .cart-box__close {
    text-transform: uppercase;
    padding: 8px;
    color: #111;
    font-weight: 500;
}
.mfp-content #smca-modal-body .modal-heading {
    font-family: 'Oswald', sans-serif;
    background: transparent;
    border-color: #ECEAEA;
}
.mfp-content #smca-modal-body .modal-body {
    padding-top: 0;
}

.mfp-content #smca-modal-body .modal-heading .modal-close {
    background: transparent;
    width: auto;
    height: auto;
    top: 0;
}
.mfp-container {
    overflow: auto;
}
@media (min-width: 577px) {
    .show-mobile {
        display: none !important;
    }
}
@media (max-width: 576px) {
    .hide-mobile {
        display: none !important;
    }
    #smca-modal-body .modal-body .product-table-cart > .product-table-body .product-table-body-row {
        /* flex-wrap: wrap; */
    }
    .mfp-content #smca-modal-body .modal-body {
        padding: 0 10px 10px;
    }
    #smca-modal-body .product-table-item .show-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 8px;
    }
    #smca-modal-body .product-table-item .show-mobile .quantity {
        margin-top: 0;
    }
    #smca-modal-body .product-table-item .show-mobile .total {
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 160%;
        color: #111;
        font-family: 'Oswald', sans-serif;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    #smca-modal-body .modal-body .totals {
        margin-top: 10px;
    }
}



a.forgotten {
    display: inline-block;
    margin: 5px 0;
}
#modal-signin .btn-default {
    margin-bottom: 0px;
    outline: none;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    border: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: none;
    color: #111;
    padding: 14px 30px;
        font: 400 15px/18px "Roboto", Helvetica, sans-serif;
}
#modal-signin ul li .heading {
    text-transform: none;
    color: #222222;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 500;
}
#modal-signin .container-fluid {
    padding: 0;
}
#modal-signin .modal-body {
    padding: 30px;
}
.modal-content {
    border-radius: 0 !important;
    border: none !important;
}
#modal-signin .modal-title {
    font-size: 18px;
}
#modal-signin i {
    display: none;
}
#modal-signin .modal-header {
    padding: 20px 30px 0;
    text-align: center;
    border: none;
}
.modal-header .close {
    background: transparent;
    border: none;
        display: flex;
    align-items: center;
    justify-content: center;
    opacity: .5;
}
.modal-header .close:hover {
    opacity: 1;
}
.modal-header .close span {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill='%23000' width='20' height='20' version='1.1' id='Capa_1' x='0px' y='0px' viewBox='0 0 512.001 512.001' style='enable-background:new 0 0 512.001 512.001;' xml:space='preserve'%3E%3Cpath d='M284.286,256.002L506.143,34.144c7.811-7.811,7.811-20.475,0-28.285c-7.811-7.81-20.475-7.811-28.285,0L256,227.717 L34.143,5.859c-7.811-7.811-20.475-7.811-28.285,0c-7.81,7.811-7.811,20.475,0,28.285l221.857,221.857L5.858,477.859 c-7.811,7.811-7.811,20.475,0,28.285c3.905,3.905,9.024,5.857,14.143,5.857c5.119,0,10.237-1.952,14.143-5.857L256,284.287 l221.857,221.857c3.905,3.905,9.024,5.857,14.143,5.857s10.237-1.952,14.143-5.857c7.811-7.811,7.811-20.475,0-28.285 L284.286,256.002z'%3E%3C/path%3E%3C/svg%3E");
    background-size: 20px;
    background-repeat: no-repeat;
    font-size: 0;
    width: 20px;
    height: 20px;
    display: block;
}
@media (min-width: 768px) {
    .modal-sm {
        width: 400px;
    }
}



/*
 *
 * Account 
 *
 */
.account-register .page, .account-login .page {
    background: #f6f6f6;
}
.account-register #column-right,
.account-login #column-right {
    display: none;
}
.account-register #content,
.account-login #content {
    width: 100%;
    min-height: 100px;
}
.account-register .top-footer,
.account-login .top-footer {
    margin-top: 0;
}
.login-box {
    padding: 60px;
    background: #FFFFFF;
    max-width: 455px;
    margin: 0 auto;
}
#account-register, #account-login {
    padding-top: 60px;
    padding-bottom: 80px;
}
.login-box legend {
    display: none;
}
.login-box .col-sm-2 {
    width: 100%;
    text-align: left;
}
.login-box .col-sm-10 {
    width: 100%;
}
.login-box .buttons {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.login-box .buttons .pull-right {
    float: none !important;
}
.login-box .buttons .btn-primary {
    width: 100%;
}
.account-descr a {
    text-decoration: underline;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
}
.wrap-top {
    padding-bottom: 30px;
    border-bottom: 1px solid #000;
    margin-bottom: 30px;
}
.wrap .btn {
    width: 100%;
}
.wrap h2 {
    margin-top: 0;
    font-size: 22px;
}
@media (max-width: 767px) {
    #account-register, #account-login {
        padding-top: 0px; 
    }
}
@media (max-width: 576px) {
    #account-register, #account-login {
        padding-bottom: 60px; 
    }
    .login-box {
        padding: 30px 20px; 
    }
}

.checkbox, .radio {
    display: block;
    color: #555555;
    position: relative;
    padding-left: 26px;
}
.checkbox__input, .radio__input {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}
.checkbox__label {
    font-weight: 400;
}
.checkbox__label:before, .radio__label:before {
    content: '';
    border: 1px solid #B3B0B0;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);

    width: 16px;
    height: 16px;
}
.radio__label:before {
    border-radius: 50%;
}
.checkbox:hover .checkbox__label:before, .checkbox__input:checked~.checkbox__label:before, .radio:hover .radio__label:before, .radio__input:checked~.radio__label:before {
    border-color: #000;
}
.checkbox__input:checked~.checkbox__label, .radio__input:checked~.radio__label {
    color: #000;
}
.checkbox__input:checked~.checkbox__label:after, .radio__input:checked~.radio__label:after {
    content: url(/catalog/view/theme/grand/image/new-design/check.svg);
    position: absolute;
    top: 50%;
    left: 5px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    line-height: 0;
}
.radio__input:checked~.radio__label:after {
    content: '';
    width: 6px;
    height: 6px;
    left: 2px;
    background-color: #1E1E1E;
    border-radius: 50%;
}




/*
 *
 * Checkout page
 *
 */
.quickcheckout-cart .quantity .btn {
    padding: 0;
    width: 40px;
}
#payment-address .quickcheckout-content {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0;
    margin: 0 -15px;
}
.layout-2 .quickcheckoutleft, .layout-2 .quickcheckoutright {
    float: none;
    width: 100%;
    padding: 30px;
    background: #FFFFFF;
}
.layout-2 #quickcheckout-disable {
    display: flex;
    flex-wrap: wrap;
}
.layout-2 .quickcheckout-info {
    width: 60%;
    padding-right: 30px;
}
.layout-2 .quickcheckout-aside {
    width: 40%;
}
.layout-2 .quickcheckout-heading {
    margin: 0;
    color: #111;
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    background: transparent;
    padding: 0;
    margin: 0 0 20px;
}
.extension-quickcheckout-checkout .breadcrumb {
    display: none;
}
.extension-quickcheckout-checkout .page {
    background: #f6f6f6;
    padding-top: 60px;
    padding-bottom: 80px;
}
.layout-2 .quickcheckout-info .quickcheckoutleft {
    margin-bottom: 30px;
}
.layout-2 .quickcheckout-content {
    border: none;
    margin: 0;
    padding: 0;
}
.layout-2 .quickcheckout-heading .fa {
    display: none;
}
.layout-2 .quickcheckoutright #shipping-method {
    border-bottom: 1px solid #ccc;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.layout-2 #shipping-method .delivery-time {
    display: none;
}

.radio-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.radio-list-item input {
    margin: 0;
}
.radio-list-item label {
    margin: 0;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}
.radio-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.product-item {
    padding: 16px 0;
    border-bottom: 1px solid #ECEAEA;
    display: flex;
    flex-direction: column;
    gap: 10px 0;
}
.product-item-top, .product-item-bottom {
    display: flex;
    align-items: center;
    gap: 10px;
}
.product-item-bottom {
    justify-content: space-between;
}
.product-item .total {
    font-weight: 500;
    line-height: 160%;
    color: #111;
    font-family: 'Oswald', sans-serif;
}
.product-item-top .image {
    line-height: 0;
    flex: 0 0 50px;
    max-width: 50px;
}
.quick-cart__bottom td:last-child {
    color: #111;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 16px;
}
.product-item-bottom .btn {
    padding: 0;
    width: 40px;
    color: #000;
}
.quickcheckoutmid {
    margin-top: 40px;
}
.quickcheckoutmid .terms {
    text-align: center;
}
.quickcheckoutmid .terms #button-payment-method {
    min-width: 300px;
}
.extension-quickcheckout-checkout .top-footer {
    margin-top: 0;
}

@media (max-width: 991px) {
    .layout-2 .quickcheckout-info {
        width: 100%;
        padding-right: 0;
    }
    .layout-2 .quickcheckout-aside {
        width: 100%;
            margin-top: 30px;
    }
}
@media (max-width: 576px) {
    .layout-2 .quickcheckoutleft, .layout-2 .quickcheckoutright {
        padding: 20px;
    }
    .layout-2 .quickcheckout-heading {
        font-size: 18px;
    }
    #payment-address .quickcheckout-content {
        margin: 0 -6px;
    }
}

#form-language img {
        border: 1px solid #ccc;
    border-radius: 0;

}
