/* My Custom CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

/* Base */
:root {
    --color1: #ff4a1c;
    --color2: #ecd444;
    --colorw: #fff;
    --colorb: #000;
}
body#mytheme * {
    box-sizing: border-box;
}
#mytheme .row {
    margin: 0 auto;
    padding: 0;
}
#mytheme .row > * {
    padding: 0;
    margin: 0 auto;
}
#mytheme .box {
    display: block;
    width: 100%;
    max-width: 1700px;
    padding: 0 10px;
    margin: 0 auto;
}
#mytheme .box.full {
    max-width: 100%;
}
#mytheme .box.short {
    max-width: 1200px;
}  
#mytheme .hideme {
    display: none !important;
}
#mytheme {
    background-color: #e5e5e5;
}

/* Font */
body#mytheme * {
    font-family: "Manrope", "Open Sans", sans-serif;
    letter-spacing: 0.05em;
    text-rendering: optimizeLegibility;
}
body#mytheme {
    font-size: 16px;  
}
@supports (font-size-adjust: 1;) {
    body#mytheme * {
        font-size-adjust: 0.5;
    }
}
#mytheme .textbox h1 {
    font-size: 2.5em;
    line-height: calc(1ex / 0.42);
    margin: calc(1ex / 0.42) 0;
}
#mytheme .textbox h2 {
    font-size: 2em;
    line-height: calc(1ex / 0.42);
    margin: calc(1ex / 0.42) 0;
}
#mytheme .textbox h3 {
    font-size: 1.75em;
    line-height: calc(1ex / 0.38);
    margin: calc(1ex / 0.38) 0;
}
#mytheme .textbox h4 {
    font-size: 1.5em;
    line-height: calc(1ex / 0.37);
    margin: calc(1ex / 0.37) 0;
}
#mytheme .textbox p {
    font-size: 1em;
    line-height: calc(1ex / 0.32);
    margin: calc(1ex / 0.32) 0;
}
body#mytheme .fa, body#mytheme .fas, body#mytheme .fa-solid {
    font-family: "FontAwesome";
}
@media (max-width: 800px) {
    #mytheme .textbox h1 {
        font-size: 2em;
    }
    #mytheme .textbox h2 {
        font-size: 1.8em;
    }
    #mytheme .textbox h3 {
        font-size: 1.5em;
    }
    #mytheme .textbox h4 {
        font-size: 1.2em;
    }
    #mytheme .textbox p {
        font-size: 0.9em;
    }    
}


/* Mini Basket */
#mytheme .dropdown-menu.shoppingcart-box .table {
    font-size: 12px;
}
#mytheme .btn-shopping-cart .table > tbody > tr > td.text-right {
    white-space: nowrap;
}
#mytheme .btn-shopping-cart .table > tbody > tr > td.text-left a {
    line-height: 120%;
    display: block;
}
#mytheme .dropdown-menu.shoppingcart-box .size-img-cart {
    width: 60px;
}
#mytheme .dropdown-menu.shoppingcart-box .size-img-cart img {
    max-height: 60px;
}


/* Header */
#mytheme header {
    display: block;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 999;
    background-color: var(--color2);
    color: var(--colorb);
}
#mytheme header.navbar-compact {
    position: fixed;
}
#mytheme header .header-top {
    display: block;
    background-color: var(--color1);
    color: var(--colorw);
    font-size: 1em;
    min-height: 0;
    padding: 5px 0;
    background-color: #555;
} 
#mytheme header .box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#mytheme header .header-top .box {
    justify-content: flex-start;
}
#mytheme header .header-top .box > div:nth-of-type(1) {
    margin-right: auto;
}
#mytheme header .header-top .topmessage {
    display: block;
    font-size: 1em;
    color: var(--colorw);
    line-height: 165%;
}
#mytheme header .header-top .topmessage i {
    margin: 0 0.5em 0 0;
}
#mytheme header .header-top .phone {
    display: block;
    font-size: 1em;
    color: var(--colorw);
    line-height: 165%;
}
#mytheme header .header-top .phone a {
    color: var(--colorw);
}
#mytheme header .header-top .phone span {
    display: none;
}
#mytheme header .header-top .phone strong {
    font-weight: 400;
}
#mytheme header .header-top .phone i {
    margin: 0 0.5em 0 0;
}
#mytheme header .header-top .language {
    display: block;
    margin-left: 2em;
}
#mytheme header .header-top .language ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
#mytheme header .header-top .language ul li {
    display: block;
    font-size: 1em;
    color: var(--colorw);
    line-height: 165%;    
}
#mytheme header .header-top .language ul li a {
    display: block;
    color: var(--colorw);  
    padding: 0 0.3em;
    opacity: 0.6;
}
#mytheme header .header-top .language ul li img {
    display: none;
}
#mytheme[data-lang="en-gb"] header .header-top .language ul li a:has(img[title="English"]) {
    opacity: 1;
}
#mytheme[data-lang="el-gr"] header .header-top .language ul li a:has(img[title="Greek"]) {
    opacity: 1;
}
#mytheme header .main {
    display: block;
    padding: 10px 0;
    background-color: rgba(255,255,255,0.7);
}
#mytheme header .main .logo {
    display: block;
    margin: 0 1em;
    min-width: 125px;
}
#mytheme header .main .logo a {
    display: block;
}
#mytheme header .main .logo img {
    display: block;
    width: auto;
    height: auto;
    max-height: 80px;
    transition: all 500ms;
}
#mytheme header.navbar-compact .main .logo img {
    max-height: 60px;
}
#mytheme header .main .accountbox {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 1em;
}
#mytheme header .main .accountbox > div {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 0.2em;
    padding: 0;
    position: relative;
}
#mytheme header .main .accountbox > div.searchbutton {
    display: none;
}
#mytheme header .main .accountbox > div > a {
    display: block;
    width: 40px;
    height: 40px;
    text-indent: -9999px;
    overflow: hidden;
    border-radius: 3px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 30px auto;
}
#mytheme header .main .accountbox > div.wishlist > a {
    background-image: url(../images/icons/icon_wishlist.svg);    
}
#mytheme header .main .accountbox > div.userbox > a {
    background-image: url(../images/icons/icon_user.svg);
}
#mytheme header .main .accountbox > div .shopcart-inner {
    padding: 0;
    margin: 0;
}
#mytheme header .main .accountbox > div .shopcart-inner .items_cart2,
#mytheme header .main .accountbox > div .shopcart-inner .items_carts,
#mytheme header .main .accountbox > div .shopcart-inner p {
    display: none;
}
#mytheme header .main .accountbox > div #cart {
    margin-top: 0px;
}
#mytheme header .main .shopping_cart .icon-c {
    background-color: transparent;
    width: 40px;
    height: 40px;
    float: none;
    padding: 0;
    margin: 0;
}
#mytheme header .main .shopping_cart .icon-c i {
    display: block;
    width: 40px;
    height: 40px;
    background-image: url(../images/icons/icon_basket.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 30px auto;
}
#mytheme header .main .shopping_cart .icon-c i::before {
    display: none;
}
#mytheme header .main .accountbox > div .shopcart-inner .items_cart {
    background-color: var(--color1);
    color: var(--colorw);
    width: 20px;
    height: 20px;
    line-height: 20px;
    top: auto;
    bottom: 0px;
    left: auto;
    right: 0;
    font-size: 11px;
}
#mytheme header .main .accountbox > div.userbox .dropdown-menu {
    right: -5px;
}
#mytheme header .main .accountbox > div.userbox:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
}
#mytheme header .main .searchbox {
    flex: 1;
    max-width: 1000px;
    margin: 0 auto;
}
#mytheme header .main .searchbox a.close {
    display: none;
}
#mytheme header .main .searchbox .select_category {
    display: none;
}
#mytheme header .main .searchbox .icon-search {
    display: none;
}
#mytheme header .main .searchbox .chosen-drop {
    min-width: 350px;
}
#mytheme header .main .searchbox .search {
    border: none;
    background-color: rgba(0,0,0,0.1);
    border-radius: 30px;
    margin: 0;
    padding: 0;
}
#mytheme header .main .searchbox .search input.autosearch-input {
    border: none;
    background-color: transparent;
    padding: 20px 40px;
    line-height: 20px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.05em;
    height: 60px;
    color: var(--colorb);
}
#mytheme header .main .searchbox .search button {
    width: 80px;
    height: 60px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: transparent;
    color: var(--color1);
    padding: 20px;
    text-align: center;
    font-size: 20px;
    line-height: 20px;
    border: none;
}
#mytheme header .main .searchbox .search button i {
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    padding: 0;
    margin: 0;
    display: block;
    color: var(--color1);
}
#mytheme header.navbar-compact .header-top {
    display: none;
}


/* Navigation */
@media (min-width: 991px) {
    #mytheme header .navigation {
        display: block;
        width: 100%;
    }
    #mytheme header .navigation ul.megamenu {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
    #mytheme header .navigation ul.megamenu > li {
        display: block;
        margin: 0;
    }
    #mytheme header .navigation ul.megamenu > li > a {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 1em;
        margin: 0;
        font-size: 1em;
        line-height: 125%;
        letter-spacing: 0.05em;
        color: var(--colorb);
    }
    #mytheme header .navigation ul.megamenu > li > a b {
        margin: 0 0 0 0.5em;
    }
    #mytheme header .navigation ul.megamenu > li .sub-menu > .content {
        padding: 1.7em 1.7em 0.5em;
    }
    #mytheme ul.megamenu > li > .sub-menu > a.close,
    #mytheme ul.megamenu .menu > ul > li > ul > a.close {
        display: none;
    }
}


/* Footer */
#mytheme footer {
    margin: 2em 0 0;
    background-color: #333;
}
#mytheme footer .socialbox {
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
#mytheme footer .socialbox ul.socials {
    display: flex;
    justify-content: center;
    align-content: center;
    float: none;
}
#mytheme footer .footer-middle {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 2em auto;
}
#mytheme footer .footer-middle > div {
    flex-basis: 30%;
    padding: 0 10px;
    margin: 0;
    width: auto;
    min-width: 0;
}
#mytheme footer .footer-middle > div:nth-of-type(1) {
    flex-basis: 40%;
}
#mytheme footer .footer-middle ul {
    margin: 0;
}
#mytheme footer .footer-middle ul li, #mytheme footer .footer-middle ul li a {
    color: var(--colorw);
}
#mytheme footer .footer-middle h3 {
    color: var(--color1);
    margin: 0 0 0.5em !important;
    padding: 0;
}
#mytheme footer .infos-footer ul li {
    background-image: url(../images/icon/icon-contact-w.png); 
}
#mytheme footer .footer-middle h3::after {
    display: none;
}
#mytheme footer .newsletterbox {
    border: none;
    margin: 0;
    padding: 1em;
    background-color: #555;
}
#mytheme footer .newsletter-footer1 {
    border: none;
    margin: 0;
    padding: 0;
    
}
#mytheme footer .footer-bottom {
    border: none;
    background-color: var(--colorb);
    color: var(--colorw);
}
#mytheme footer .footer-bottom .row {
    max-width: 1700px;
    padding: 0 10px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    text-align: center;
}
#mytheme footer .footer-bottom .row .copyright-w {
    flex-basis: 100%;
    order: 1;
}
#mytheme footer .footer-bottom .row .payment-w {
    text-align: center;
}
#mytheme footer .footer-bottom .copyright,
#mytheme footer .footer-bottom .copyright a{
    color: var(--colorw);
}
#mytheme footer .footer-bottom .copyright a:hover {
    color: var(--color2);
}
#mytheme footer .newsletter-footer1 .newsletter .title-block .promotext {
    line-height: 120%;
    display: inline-block;
}


/* MainBanner */
#mytheme .slideshow-full {
    display: block;
    padding: 2em 0;
    margin: 0;
}
#mytheme .slideshow-full > div {
    float: none;
}
#mytheme .slideshow-full .sohomeslider-description {
    display: none;
}
#mytheme .slideshow-full img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 10px;
}
#mytheme .module.sohomepage-slider .owl2-controls .owl2-nav .owl2-next, 
#mytheme .module.sohomepage-slider .owl2-controls .owl2-nav .owl2-prev {
    background-color: rgba(0,0,0,0.1);
    width: 50px;
    height: 50px;
}
#mytheme .module.sohomepage-slider .owl2-controls .owl2-nav .owl2-next:hover, 
#mytheme .module.sohomepage-slider .owl2-controls .owl2-nav .owl2-prev:hover {
    background-color: rgba(0,0,0,0.6);
}
#mytheme .module.sohomepage-slider .owl2-controls .owl2-nav .owl2-next::before, 
#mytheme .module.sohomepage-slider .owl2-controls .owl2-nav .owl2-prev::before {
    width: 50px;
    height: 50px;
    line-height: 20px;
    padding: 15px 0;
}
#mytheme .slideshow-mobile {
    display: none;
}


/* Home Categories */
#mytheme #content .module h3.modtitle { 
    border: none;
    font-size: 2.2em;
    line-height: 100%;
    margin: 0.5em 0;
    color: var(--colorb);
    opacity: 0.8;
}
#mytheme #content .module h3.modtitle span {
    font-size: 1em;
    text-transform: capitalize;
}
#mytheme #content .module h3.modtitle span:after {
    display: none;
}
#mytheme .container {
    max-width: 100%;
    width: 100%;
}
#mytheme .home-categories {
    margin: 0 0 2em;
    padding: 1px 0;
}
#mytheme .home-categories .owl2-stage {
    display: block;
}
#mytheme .home-categories .owl2-stage .owl2-item {
    background-color: var(--colorw);
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.2);
    padding: 20px;
}
#mytheme .home-categories .owl2-stage .owl2-item .content-box {
    background-color: transparent;
    text-align: left;
}
#mytheme .home-categories .owl2-stage .owl2-item .image-cat {
    border-radius: 10px;
}
#mytheme .home-categories .owl2-stage .owl2-item .image-cat img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1.44;
    object-fit: cover;
}
#mytheme .home-categories .owl2-stage .owl2-item .cat-content {
    padding: 1.5em 0 0;
}
#mytheme .home-categories .owl2-stage .owl2-item .cat-title {
    display: block;
    padding: 0;
    margin: 0 0 0.5em;
}
#mytheme .home-categories .owl2-stage .owl2-item .cat-title a {
    display: block;
    padding: 0;
    margin: 0;
    font-size: 1.56em;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    color: var(--color1);
}
#mytheme .home-categories .owl2-stage .owl2-item .child-cat {
    display: block;
}
#mytheme .home-categories .owl2-stage .owl2-item .arrow {
    display: none;
}
#mytheme .home-categories .owl2-stage .owl2-item .child-cat-title {
    display: block;
    padding: 0;
    margin: 0;
}
#mytheme .home-categories .owl2-stage .owl2-item .child-cat-title a {
    display: block;
    padding: 0.3em 0;
    font-size: 1.125em;
    color: var(--colorb);
    font-weight: 700;
    line-height: 120%;
    transition: all 500ms;
}
#mytheme .home-categories .owl2-stage .owl2-item .child-cat-title a:hover {
    color: var(--color1);
    margin-left: 10px;
}
#mytheme .home-categories .owl2-stage .owl2-item .child-cat-title a::before {
    display: none;
}
#mytheme .home-categories .owl2-stage .owl2-item .child-cat p {
    display: none;
}


/* Listing Tabs */
#mytheme .container:has(.featuredproducts) {
    background-color: #858ae3;
    margin: 3em 0 0;
    padding: 2em 0;
    position: relative;
}
#mytheme .container:has(.featuredproducts)::after {
    content: "";
    display: block;
    width: 100%;
    height: 200px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #e5e5e5;
    z-index: 0;
}
#mytheme .featuredproducts {
    position: relative;
    z-index: 1;
}
@media (min-width: 991px) {
    #mytheme .featuredproducts ul.ltabs-tabs {
        display: flex;
        justify-content: center;
        align-content: center;
        border: none;
        padding: 1em 0;
    }
    #mytheme .featuredproducts ul.ltabs-tabs li::after {
        display: none;
    }
    #mytheme .featuredproducts ul.ltabs-tabs li {
        display: block;
        padding: 0;
        margin: 0 1em;
    }
    #mytheme .featuredproducts ul.ltabs-tabs li span {
        display: block;
        background-color: transparent;
        color: var(--colorw);
        border: 2px solid var(--colorw);
        font-size: 1em;
        line-height: 20px;
        padding: 20px 30px;
        border-radius: 35px;
    }
    #mytheme .featuredproducts ul.ltabs-tabs li.tab-sel span {
        background-color: var(--colorw);
        color: var(--colorb);
    }    
}
#mytheme .label-new, #mytheme .label-sale {
    top: -10px;
    left: -10px; 
    margin: 0;
}
#mytheme .product-layout {
    background-color: var(--colorw);
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.2);
    padding: 20px;
}
#mytheme .product-layout .product-item-container,
#mytheme .product-layout .right-block {
    background-color: transparent;
    padding: 0;
    margin: 0;
}
#mytheme .product-layout .product-item-container,
#mytheme .product-layout .left-block {
    overflow: visible;
}
#mytheme .product-layout .left-block,
#mytheme .product-layout .left-block > div,
#mytheme .product-layout .left-block > div > a ,
#mytheme .product-layout .left-block > div > a > img {
    display: block;
    margin: 0 auto;
    padding: 0;
}
#mytheme .product-layout .left-block > div > a > img {
    width: 100%;
    height: auto;
    aspect-ratio: 0.85;
    object-fit: contain;
}
#mytheme .product-layout .right-block {
    padding: 1em 0 0;
    margin: 0;
    text-align: left;
}
#mytheme .product-layout .right-block h4 {
    font-size: 0.9em;
    line-height: 18px;
    font-weight: 600;
    color: var(--colorb);
    margin: 0 0 1em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
    height: 54px;
}
#mytheme .product-layout .right-block h4 a {
    display: block;
    font-size: 1em;
}
#mytheme .product-layout .right-block .price {
    font-size: 1.125em;
    font-weight: 700;
    color: var(--color1);
    line-height: 20px;
    letter-spacing: 0.05em;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
#mytheme .product-layout .right-block .price .price-new {
    color: var(--color1);
    order: 1;
}
#mytheme .product-layout .right-block .price .price-old {
    font-size: 0.9em;
    margin-right: 0.5em;
}
#mytheme .product-layout a.quickview {
    display: none !important;
}

/* Banners */
#mytheme .sliderimages.box {
    max-width: 1650px;
    margin-bottom: 3em;
}

/* Breadcrumbs */
#mytheme .breadcrumbs {
    background-color: var(--colorw);
    border-bottom: 1px solid rgba(0,0,0,0.2);
    margin: 0 0 1em;
}
#mytheme .breadcrumb {
    margin: 0;
    padding: 10px;
}

/* Categories Page */
#mytheme .refine-search {
    display: block;
    margin: 3em 0;
    padding: 0;
}
#mytheme .refine-search .title-category {
    display: none;
}
#mytheme ul.refine-search__content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}
#mytheme ul.refine-search__content > li {
    display: block !important;
    float: none;
    width: auto;
    flex-basis: 24%;
    margin: 0.5%;
    padding: 0;
    min-width: 0;
}
#mytheme ul.refine-search__content .refine-loadmore {
    display: none !important;
}
#mytheme ul.refine-search__content > li a.thumbnail {
    display: none;
}
#mytheme ul.refine-search__content > li a.text-center {
    display: block;
    background-color: transparent;
    color: var(--color1);
    border: 2px solid var(--color1);
    font-size: 1em;
    font-weight: 600;
    line-height: 20px;
    padding: 20px 30px;
    border-radius: 35px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    width: 100%;
}
#mytheme ul.refine-search__content > li a.text-center:hover {
    background-color: var(--color1);
    color: var(--colorw);
}

/* Products Listing Page */
#mytheme .products-category .title-category {
    border: none;
    font-size: 2.2em;
    line-height: 100%;
    margin: 0.5em 0;
    color: var(--colorb);
    opacity: 0.8;    
    text-transform: capitalize;
}
#mytheme .products-category .title-category::after {
    display: none;
}
#mytheme .products-category .products-list {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}
#mytheme .products-category .products-list .product-layout {
    display: block;
    width: auto;
    min-width: 0;
    float: none;
    flex-basis: 16%;
    margin: 0 0.33% 2%;
}
#mytheme .products-category .products-list .product-layout .right-block .pricebox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 -10px 0 0;
}
#mytheme .products-category .products-list .product-layout .right-block .pricebox button.addToCart {
    width: 60px;
    height: 40px;
    background-color: var(--color1);
    color: var(--colorw);
    border-radius: 20px;
    border: none;
    text-indent: -9999px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background-image: url(../images/icons/icon_basket_white.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 30px auto;
    transition: all 500ms;
    position: relative;
    top: 0;
}
#mytheme .products-category .products-list .product-layout .right-block .pricebox button.addToCart:hover {
    top: -5px;
}
#mytheme .products-category .products-list .product-layout .left-block .button-group {
    position: static;
}
#mytheme .products-category .products-list .product-layout .left-block .button-group button {
    display: none;
}
#mytheme .products-category .products-list .product-layout .left-block .button-group button.wishlist {
    display: block;
    position: absolute;
    top: -10px;
    right: -10px;
    opacity: 0.2;
    background-color: rgba(255,255,255,0.3);
    background-image: url(../images/icons/icon_wishlist.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    border-radius: 50%;
}
#mytheme.is-touch .products-category .products-list .product-layout .left-block .button-group button.wishlist {
    opacity: 1;
}
#mytheme .products-category .products-list .product-layout:hover .left-block .button-group button.wishlist {
    opacity: 1;
}
#mytheme .products-category .products-list .product-layout .left-block .button-group button.wishlist * {
    display: none;
}
#mytheme .product-filter .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#mytheme .product-filter .row > div {
    float: none;
    width: auto;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
#mytheme .product-filter .open-sidebar {
    display: block;
    background-color: var(--color1);
    color: var(--colorw);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 15px;
    border: none;
    padding: 10px 20px;
    margin: 0 2em 0 0;
    border-radius: 20px;
    white-space: nowrap;
}
#mytheme .product-filter .open-sidebar i {
    margin: 0 0.5em 0 0;
}
#mytheme .product-filter .text-right {
    font-size: 14px;
    line-height: 150%;
    font-weight: 700;
    color: var(--color1);
}
#mytheme .product-filter .short-by-show > div {
    margin: 0 0 0 1em;
}
#mytheme .product-filter .short-by-show select {
    border: 2px solid var(--color1);
    border-radius: 20px;
    height: 35px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color1);
    line-height: 15px;
    padding: 0px 20px;
    background-color: transparent;
}
#mytheme .product-filter .short-by-show label {
    font-size: 13px;
    line-height: 150%;
    font-weight: 700;
    margin: 0 0.5em 0 0;
    color: var(--color1);
}
#mytheme ul.pagination {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
#mytheme ul.pagination li {
    display: block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    padding: 0;
    margin: 0 2px;
    background-color: transparent;
}
#mytheme ul.pagination li a, #mytheme ul.pagination li span {
    display: block;
    width: 35px;
    height: 35px;
    border: 2px solid var(--color1);
    color: var(--color1);
    background-color: transparent;
    line-height: 30px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    padding: 0;
    margin: 0;
}
#mytheme ul.pagination li a:hover, #mytheme ul.pagination li span {
    background-color: var(--color1);
    color: var(--colorw);
}
#mytheme .buttons .pull-right a {
    background-color: var(--color1);
    color: var(--colorw);
    font-size: 14px;
    line-height: 20px;
    font-weight: 700px;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
}


/* Product Page */
#mytheme .product-detail {
    display: block;
    margin: 3em 0;
}
#mytheme .content-product-mainheader > .row { 
    display: flex;
    justify-content: space-between;
    align-items: flex-start
}
#mytheme .content-product-mainheader > .row > div {
    display: block;
    min-width: 0;
    width: auto;
    float: none;
    margin: 0;
}
#mytheme .content-product-mainheader > .row > div.content-product-left {
    flex-basis: 35%;
}
#mytheme .content-product-mainheader > .row > div.content-product-left .large-image {
    background-color: var(--colorw);
    border: 2px solid rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 20px;
}
#mytheme .content-product-mainheader > .row > div.content-product-left .large-image img {
    display: block;
    width: auto;
    height: auto;
    max-width: 90%;
    max-height: 500px;
    margin: 0 auto;
}
#mytheme .content-product-mainheader > .row > div.content-product-left #thumb-slider {
    display: none;
}
#mytheme .content-product-mainheader > .row > div.content-product-right {
    flex-basis: 63%;
}
#mytheme .content-product-mainheader > .row > div.content-product-right .productinfobox {
    background-color: var(--colorw);
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 20px 2em;
}
#mytheme .content-product-mainheader > .row > div.content-product-right .productinfobox .price {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
#mytheme .content-product-mainheader > .row > div.content-product-right .productinfobox .price .price-old {
    font-size: 25px;
    margin: 0 1em;
}
#mytheme .content-product-mainheader > .row > div.content-product-right .product-box-desc {
    float: none;
    margin: 0 0 10px;
}
#mytheme .content-product-mainheader > .row > div.content-product-right #product {
    margin: 0;
}
#mytheme .content-product-mainheader > .row > div.content-product-right #product .box-cart {
    border-top: 1px solid rgba(0,0,0,0.2);
    padding: 20px 0 0;
    margin: 20px 0 0;
}
#mytheme .content-product-mainheader > .row > div.content-product-right .box-info-product .inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
#mytheme .content-product-mainheader > .row > div.content-product-right .option.quantity {
    display: block;
    margin: 0 2em 0 0;
}
#mytheme .content-product-mainheader > .row > div.content-product-right .option.quantity label {
    display: none;
}
#mytheme .content-product-mainheader > .row > div.content-product-right .option.quantity .input-group {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: 2px solid var(--color1);
    padding: 2px;
    border-radius: 30px;
    background-color: var(--colorw);
    height: 40px;
}
#mytheme .content-product-mainheader > .row > div.content-product-right .option.quantity .input-group span {
    width: 32px;
    height: 32px;
    background-color: var(--color1);
    color: var(--colorw);
    text-align: center;
    line-height: 32px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
}
#mytheme .content-product-mainheader > .row > div.content-product-right .option.quantity .input-group span::before {
    display: block;
    width: 32px;
    height: 32px;
}
#mytheme .content-product-mainheader > .row > div.content-product-right .option.quantity .input-group input[type="text"] {
    border: none;
    width: 60px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color1);
    background-color: transparent;
}

#mytheme .content-product-mainheader > .row > div.content-product-right .detail-action {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
#mytheme .content-product-mainheader > .row > div.content-product-right .detail-action .cart {
    margin: 0 2em 0 0;
}
#mytheme .content-product-mainheader > .row > div.content-product-right .detail-action .cart input {
    border-radius: 30px;
    background-color: var(--color1);
    color: var(--colorw);
    font-size: 1em;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 10px 20px;
    border: none;
    margin: 0;
    min-width: 250px;
}
#mytheme .content-product-mainheader > .row > div.content-product-right .detail-action .add-to-links,
#mytheme .content-product-mainheader > .row > div.content-product-right .detail-action .add-to-links * {
    display: block;
    padding: 0;
    margin: 0;
}
#mytheme .content-product-mainheader > .row > div.content-product-right .detail-action .add-to-links a {
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color1);
    background-color: var(--colorw);
    text-indent: -9999px;
    overflow: hidden;
    border-radius: 50%;
    position: relative;
    opacity: 0.5;
}
#mytheme .content-product-mainheader > .row > div.content-product-right .detail-action .add-to-links a i {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 38px;
    height: 38px;
    background-image: url(../images/icons/icon_wishlist.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 30px auto;
    transition: all 500ms;
    background-color: transparent;
}
#mytheme .content-product-mainheader > .row > div.content-product-right .detail-action .add-to-links a:hover {
    opacity: 1;
}
#mytheme .content-product-mainheader > .row > div.content-product-right .detail-action .add-to-links a i::before {
    display: none;
}

#mytheme .content-product-mainheader > .row > div.content-product-right .attributesbox {
    background-color: var(--colorw);
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 20px 2em;
    margin: 2em 0 0
}
#mytheme .content-product-mainheader > .row > div.content-product-right .attributesbox h3.product-property-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--colorb);
    margin: 0.5 0 1em;
}
#mytheme .content-product-mainheader > .row > div.content-product-right .attributesbox ul.product-property-list {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-left: 1px solid rgba(0,0,0,0.1);
}
#mytheme .content-product-mainheader > .row > div.content-product-right .attributesbox ul.product-property-list li {
    display: block;
    flex-basis: 50%;
    padding: 0.5em 1.5em;
    border-right: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
#mytheme .content-product-mainheader > .row > div.content-product-right .attributesbox ul.product-property-list li span {
    font-size: 14px;
    font-weight: 700;
    color: var(--colorb);
}
#mytheme .content-product-mainheader > .row > div.content-product-right .attributesbox ul.product-property-list li span.propery-des {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.8;
}
#mytheme .content-product-mainheader > .row > div.content-product-right .attributesbox ul.product-property-list li span.propery-title {
    width: 100px;
    padding: 0 1em 0 0;
    display: inline-block;
}

#mytheme .zoomContainer {
    position: absolute;
}
#mytheme .zoomContainer .zoomLens {
    position: absolute;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 0.875;
    cursor: pointer;
}

#mytheme .content-product-maintop {
    display: none;
}
#mytheme .content-product-mainbody .content-product-midde {
    margin: 2em 0;
}
#mytheme .content-product-mainbody .content-product-midde .tab-content {
    background-color: var(--colorw);
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 30px;
}


/* Info Pages*/
#mytheme.information-information .breadcrumb {
    background-color: var(--colorw);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    margin: 0 0 1em;
}
#mytheme.information-contact .info-contact.row {
    justify-content: space-between;
    gap: 2%;
}
#mytheme.information-contact .info-contact.row > div {
    flex-basis: 49%;
    min-width: 0;
    background-color: var(--colorw);
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 15px;
}


/* Authors - Brands */
#mytheme.product-manufacturer #content > .row {
    justify-content: flex-start;
}
#mytheme.product-manufacturer #content > .row > div {
    margin: 0;
}
#mytheme.product-manufacturer #content > .row > div a {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 1em 0 0;
}
#mytheme.product-manufacturer .textbox h2 {
    margin: calc(1ex / 0.42) 0 0.5em 0;
}


/* Checkout */
#mytheme.full_other_pages #content:not(:has(.textbox)) h1, #mytheme.full_other_pages #content h2:not(:has(.textbox)) {
  font-size: 1.6em;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.05em;
  font-style: normal;
  padding: 0;
  margin: 0.5em 0;
  color: #000;
  display: block;
}
#mytheme.full_other_pages #accordion h2 {
    margin: 0;
}
/*
#mytheme.full_other_pages .container > .row {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 1650px;
}
#mytheme.full_other_pages .container > .row > #content + aside {
  margin-left: 1em;
}
#mytheme.full_other_pages .container > .row > #content .col {
  margin: 0 10px 2em;
}
*/
#mytheme #shopping-cart .input-group {
    flex-wrap: nowrap;
}
#mytheme #shopping-cart .input-group button {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.4);
  padding: 8px 9px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 25px auto;
  min-width: 60px;
  opacity: 0.5;
  box-sizing: border-box;
}
#mytheme #shopping-cart .input-group button:nth-of-type(1) {
  background-image: url(../images/icons/icon_refresh.svg);
}
#mytheme #shopping-cart .input-group button:nth-of-type(2) {
  background-image: url(../images/icons/icon_trash.svg);
}
#mytheme #shopping-cart .input-group button * {
  display: none;
}
#mytheme #shopping-cart .input-group button:hover {
  background-color: #eee;
  opacity: 1;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
#mytheme.full_other_pages .row:has(a.btn) {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  flex-wrap: nowrap !important;
}
#mytheme.full_other_pages .row:has(a.btn) > .col {
  min-width: 0;
  width: auto !important;
  flex-basis: auto !important;
}

#mytheme .qc .ve-btn--primary, #mytheme .qc a.ve-btn--primary, #mytheme .qc-btn.ve-btn--primary {
  background: #000 !important;
}
#mytheme .qc .ve-btn--primary:active, #mytheme .qc .ve-btn--primary.active, #mytheme .qc a.ve-btn--primary:active, #mytheme .qc a.ve-btn--primary.active, #mytheme .qc-btn.ve-btn--primary:active, #mytheme .qc-btn.ve-btn--primary.active {
  background: #333 !important;
}
#mytheme .qc .ve-radio [type=radio]:checked + i:before {
  border-color: #000 !important;
}
#mytheme .qc .ve-radio [type=radio]:checked + i:after {
  background-color: #000 !important;
}
#mytheme .qc .ve-radio--selected {
  color: #000 !important;
}
#mytheme .qc .qc-name a, #mytheme .qc label a {
  color: #000 !important;
}
#mytheme .qc .ve-checkbox [type=checkbox]:checked + i:before {
  border: 1px solid #000 !important;
  background-color: #000 !important;
}
#mytheme.checkout-cart #shopping-cart {
    background-color: var(--colorw);
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 15px;
}

#mytheme.checkout-checkout #container {
    max-width: 1700px;
    padding: 0 10px;
    margin: 0 auto;
}



/* Account Pages */
#mytheme.account-login #content,
#mytheme.account-register #content {
    flex: 1;
}
#mytheme.account-login #content + aside,
#mytheme.account-register #content + aside {
    flex-basis: 300px;
    margin-left: 2%;
}
#mytheme.account-login #content > .row {
    justify-content: space-between;
    gap: 2%;
}
#mytheme.account-login #content > .row > div {
    flex-basis: 48% !important;
    background-color: var(--colorw);
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 15px;
    min-width: 0;
    box-sizing: border-box;
} 
#mytheme.account-login #content > .row > div > div {
    border: none !important;
    padding: 0 !important;
}
#mytheme.account-register #content {
    background-color: var(--colorw);
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 15px;
    min-width: 0;
    box-sizing: border-box;
}
#mytheme.account-account #content,
#mytheme.account-edit #content,
#mytheme.account-password #content,
#mytheme.account-address #content,
#mytheme.account-wishlist #content,
#mytheme.account-order #content,
#mytheme.account-download #content,
#mytheme.account-subscription #content,
#mytheme.account-reward #content,
#mytheme.account-returns #content,
#mytheme.account-transaction #content,
#mytheme.account-newsletter #content,
#mytheme.account-logout #content,
#mytheme.account-forgotten #content {
    margin-right: 2%;
    background-color: var(--colorw);
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 15px;
    min-width: 0;
    flex: 1 !important;
}




/* ---------- Responsive ---------- */
/* Header */
@media (max-width: 991px) {
    #mytheme header .header-top .topmessage,
    #mytheme header .header-top .phone,
    #mytheme header .header-top .language ul li {
        font-size: 0.85em;
    }
    #mytheme header .main {
        padding: 5px 0;
    }
    #mytheme header .main .shopping_cart {
        top: 0;
    }
    #mytheme header .main .logo {
        min-width: 80px;
        padding: 5px 0;
        position: absolute;
        left: 50%;
        top: 0;
        transform: translate(-50%,0);
        margin: 0;
    }
    #mytheme header .main .logo img {
        max-height: 50px;
    }  
    #mytheme header .main .box {
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center;
        position: relative;
    }
    #mytheme header .main .accountbox {
        padding: 10px 0;
    }
    #mytheme header .main .searchbox {
        order: 1;
        margin: 0;
        flex-basis: 100%;
        position: absolute;
        left: 0; 
        width: 100%;
        top: 65px;
        background-color: var(--color2);
        padding: 10px;
        display: none;
    }
    #mytheme header .main .accountbox > div.wishlist {
        display: none;
    }
    #mytheme header .main .accountbox > div.searchbutton {
        display: block;
    }
    #mytheme header .main .accountbox > div.searchbutton a {
        background-image: url("../images/icons/icon_search.svg");        
    }
    #mytheme header .main .searchbox .search {
        background-color: rgba(255, 255, 255, 0.5);
    } 
    #mytheme header.navbar-compact .main .logo img {
        max-height: 50px;
    }    
}
@media (max-width: 750px) {
    #mytheme header .header-top .topmessage,
    #mytheme header .header-top .phone,
    #mytheme header .header-top .language ul li {
        font-size: 0.75em;
    }
    #mytheme header .header-top .language {
        margin-left: 0.5em;
    }
    #mytheme header .header-top .topmessage span {
        display: none;
    }
    #mytheme header .header-top .topmessage::before {
        display: inline-block;
        content: "\f48b";
        width: 18px;
        height: 18px;
        margin: 0 0.2em 0 0;
        font-family: "FontAwesome";
    }
    #mytheme header .header-top .language ul li a {
        opacity: 1;
    }
    #mytheme[data-lang="en-gb"] header .header-top .language ul li:has(img[title="English"]) {
        display: none;
    }
    #mytheme[data-lang="el-gr"] header .header-top .language ul li:has(img[title="Greek"]) {
        display: none;
    }  

}
@media (max-width: 700px) {
    #mytheme header .main .accountbox > div.wishlist {
        display: none;
    }
    #mytheme header {
        position: fixed;
        left: 0;
        top: 0 !important;
        width: 100%;        
    }
    #mytheme #wrapper {
        margin-top: 100px;
    }
} 
@media (max-width: 600px) {
    #mytheme header .header-top .topmessage {
        display: none;
    }
    #mytheme header .header-top .phone {
        margin-right: auto;
    }
    #mytheme header .main .accountbox > div {
        margin: 0;
    }
    
    #mytheme header .main .accountbox > div,
    #mytheme header .main .accountbox > div > a,
    #mytheme header .main .shopping_cart .icon-c i {
        width: 30px;
    }
}

/* Navigarion */
@media (max-width: 1100px) {
    #mytheme header .navigation ul.megamenu > li > a {
        padding: 1em 0.5em;
        font-size: 0.95em;
    }
}
@media (max-width: 991px) {
    #mytheme .megamenu-style-dev .navbar-default .horizontal .navbar-toggle {
        position: absolute;
        top: -55px;
        left: 0;
        width: 40px;
        height: 40px;
        padding: 0 10px;
    }
    #mytheme .megamenu-style-dev .navbar-default .horizontal .navbar-toggle span {
        background-color: var(--colorb);
    }
    #mytheme .megamenu-style-dev .navbar-default .horizontal .megamenu-wrapper {
        background: var(--colorw) !important;
        padding: 20px 0 !important;
        max-height: 100vh;
    }
    #mytheme .megamenu-style-dev.responsive .so-megamenu-active #remove-megamenu {
        color: var(--colorb);
        padding: 0 20px 10px;
    }
    #mytheme .megamenu-style-dev.responsive ul.megamenu > li {
        border-top: 1px solid rgba(0, 0, 0, 0.2);
        padding: 0;
        margin: 0;
    }
    #mytheme .megamenu-style-dev.responsive ul.megamenu > li > a {
        padding: 0.5em 1.5em !important;
        margin: 0;
        font-size: 0.9em;
        line-height: 120% !important;
        font-weight: 500;
        color: var(--colorb) !important;
    }
    #mytheme .megamenu-style-dev.responsive ul.megamenu > li.click:before, 
    #mytheme .megamenu-style-dev.responsive ul.megamenu > li.hover:before {
        font-size: 14px;
        background: transparent;
        color: var(--colorb);
        border: none;
    }
    #mytheme .megamenu-style-dev.responsive ul.megamenu > li.active > a {
        background: transparent !important;
        color: var(--colorb);
    }
    #mytheme .megamenu-style-dev.responsive ul.megamenu > li.active .close-menu {
        padding: 0;
        margin: 0;
        background: var(--colorw);
        color: var(--colorb);
    }
    #mytheme .megamenu-style-dev.responsive ul.megamenu > li.active .close-menu:before {
        color: var(--colorb);
    }
    #mytheme:has(.so-megamenu-active) {
        overflow: hidden;
    }
    #mytheme .megamenu-style-dev.responsive .navbar-default .horizontal:has(.so-megamenu-active)::before {
        content: "";
        display: block;
        position: fixed;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        top: 0;
        left: 0;
    }
    #mytheme .megamenu-style-dev.responsive .navbar-default .horizontal .megamenu-wrapper ul.megamenu li .sub-menu .content {
        box-shadow: none;
        border: 1px solid rgba(0,0,0,0.2);
        padding: 0px;
    }
    #mytheme .megamenu-style-dev.responsive .navbar-default .horizontal .megamenu-wrapper ul.megamenu li .sub-menu .content .menu ul {
        padding: 0;
        display: block;
        float: none;
    }
    #mytheme .megamenu-style-dev.responsive .navbar-default .horizontal .megamenu-wrapper ul.megamenu li .sub-menu .content .menu ul li {
        border-top: 1px solid rgba(0,0,0,0.2);
        padding: 0;
        margin: 0;
        display: block;
        float: none;
        background-color: rgba(0,0,0,0.05);
    }
    #mytheme .megamenu-style-dev.responsive .navbar-default .horizontal .megamenu-wrapper ul.megamenu li .sub-menu .content .menu ul li a {
        font-size: 13px;
        line-height: 15px;
        font-weight: 700;
        color: var(--colorb);
        padding: 0.5em 1.5em;
        margin: 0;
        display: block;
        float: none;
    }
    #mytheme .megamenu-style-dev.responsive .navbar-default .horizontal .megamenu-wrapper ul.megamenu li .sub-menu .content .menu ul li ul li a {
        font-weight: 500;
    }
}
/* Slide Menu */
@media (max-width: 991px) {
    #mytheme .megamenu-style-dev .navbar-default .horizontal .megamenu-wrapper {
        overflow: visible1;
    }
    #mytheme ul.megamenu > li {
        position: static;
    }
    #mytheme ul.megamenu {
        position: relative;
        top: 0;
        left: 0;
        transition: all 200ms;
    }
    #mytheme ul.megamenu:has(>li.active) {
        left: -100%;
    }
    #mytheme ul.megamenu > li {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    #mytheme ul.megamenu > li.with-sub-menu::before {
        order: 1;
        position: static;
        display: none;
    }
    #mytheme ul.megamenu > li > .sub-menu {
        position: absolute;
        top: 0px;
        left: 100%;
        display: block;
        width: 100%;
        transition: all 300ms;
    }
    #mytheme ul.megamenu > li > .sub-menu:has(li.active) {
        left: 0;
    }
    #mytheme ul.megamenu > li > .sub-menu > .content {
        border: none !important;
    }
    #mytheme ul.megamenu > li > .sub-menu > .content,
    #mytheme ul.megamenu > li > .sub-menu > .content * {
        display: block;
        position: static;
    }
    #mytheme ul.megamenu > li > .sub-menu .menu > ul > li > ul {
        position: absolute;
        top: 0;
        left: 100%;
        display: block;
        width: 100%;
    }
    #mytheme .megamenu-style-dev.responsive ul.megamenu li > a {
        display: block;
        font-size: 14px !important;
        line-height: 20px !important;
        font-weight: 500 !important;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        padding: 10px 10px !important;
        flex: 1;
        background-color: var(--colorw) !important;
        color: var(--colorb) !important;
        border: none !important;
    }
    #mytheme .megamenu-style-dev.responsive ul.megamenu li {
        background-color: var(--colorw) !important;
        color: var(--colorb) !important;
        border-top: 1px solid rgba(0,0,0,0.2) !important;
    }
    #mytheme .megamenu-style-dev.responsive ul.megamenu .subcategory > li {
        border: none !important;
    }
    #mytheme .megamenu-style-dev.responsive ul.megamenu li > a:hover {
        background-color: rgba(0,0,0,0.05) !important;
    }
    #mytheme .megamenu-style-dev.responsive ul.megamenu > li .close-menu {
        display: none !important;
    }
    
    #mytheme ul.megamenu > li > .sub-menu,
    #mytheme ul.megamenu > li > .sub-menu .menu > ul > li > ul {
        display: none !important;
    }
    #mytheme ul.megamenu > li.active > .sub-menu,
    #mytheme ul.megamenu > li.active > .sub-menu .menu > ul > li.active > ul {
        display: block !important;
    }
    
    #mytheme ul.megamenu > li > .sub-menu > a.close,
    #mytheme ul.megamenu .menu > ul > li > ul > a.close {
        display: block;
        position: absolute;
        top: -35px;
        right: 10px;
        width: 30px;
        height: 30px;
        background-color: var(--colorw);
        text-indent: -9999px;
        overflow: hidden;
    }
    #mytheme ul.megamenu > li > .sub-menu > a.close::before,
    #mytheme ul.megamenu .menu > ul > li > ul > a.close::before {
        display: block;
        width: 10px;
        height: 10px;
        content: "";
        transform: rotate(45deg);
        border-bottom: 2px solid var(--colorb);
        border-left: 2px solid var(--colorb);
        position: absolute;
        top: 10px;
        left: 15px;
    }
}

/* Home Categories */
@media (max-width: 991px) {
    #mytheme #content .module h3.modtitle {
        font-size: 1.8em;
    }
    #mytheme .home-categories .owl2-stage .owl2-item {
        padding: 10px;
    }
    #mytheme .home-categories .owl2-stage .owl2-item .cat-content {
        padding: 0.5em 0 0;
    }
    #mytheme .home-categories .owl2-stage .owl2-item .cat-title a {
        font-size: 1.2em;
        letter-spacing: 0em;
    }
    #mytheme .home-categories .owl2-stage .owl2-item .child-cat-title a {
        font-size: 1em;
    }
}
@media (max-width: 650px) {
    #mytheme #content .module h3.modtitle {
        font-size: 1.4em;
    }   
    #mytheme .home-categories .owl2-stage .owl2-item {
        padding: 5px;
    }
    #mytheme .home-categories .owl2-stage .owl2-item .cat-title a {
        font-size: 0.9em;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    #mytheme .home-categories .owl2-stage .owl2-item .child-cat-title a {
        font-size: 0.8em;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }    
}

/* Listing Tabs */
@media (max-width: 1100px) {
    #mytheme .product-layout {
        padding: 10px;
        margin: 0 5px 20px;
    }    
}
@media (max-width: 991px) {
    #mytheme .so-listing-tabs .ltabs-tabs-container .ltabs-tabs-wrap.ltabs-selectbox {
        margin: 1em auto;
    }
    #mytheme .layout2-listingtab2 .so-listing-tabs .wap-listing-tabs {
        margin-top: 0px;
    }
    #mytheme .container:has(.featuredproducts)::after {
        height: 100px;
    }
}
@media (max-width: 600px) {
    #mytheme .product-layout {
        padding: 5px;
    }    
    #mytheme .product-layout .right-block {
        padding: 1em 5px 0;
    }
    #mytheme .product-layout .right-block h4 {
        font-size: 0.8em;
        line-height: 15px;
        height: 45px;
    }
    #mytheme .row_7qar.box {
        padding: 0;
    }
}

/* Banners */
@media (max-width: 600px) {
    #mytheme .slideshow-full {
        padding: 1em 0;
    }
    #mytheme.common-home.layout-2 .custom-slidercates.so-categories {
        margin-top: 0px;
    }
    #mytheme .sliderimages.box {
        margin-bottom: 1em;
    }
    #mytheme .banners2 {
        margin: 1em 0;
    }
    #mytheme .home-categories {
        margin: 0;
    }
    #mytheme .container:has(.featuredproducts) {
        margin: 1em 0 0;
    }
}

/* Footer */
@media (max-width: 991px) {
    #mytheme .button-toggle {
        display: none;
    }
    #mytheme .desc-collapse.showdown {
        max-height: inherit;
        overflow: visible;
        position: static;
    }
    #mytheme footer .footer-bottom .copyright {
        font-size: 0.8em;
    }
    #mytheme .desc-collapse.showdown:before {
        display: none;
    }
}
@media (max-width: 650px) {
    #mytheme footer .footer-middle {
        display: block;
        margin: 1em 0;
    }
    #mytheme footer .footer-middle > div + div {
        border-top: 1px solid rgba(255,255,255,0.2);
    }
    #mytheme footer .footer-middle > div > div {
        margin: 0;
        padding: 10px;
    }
    #mytheme footer .footer-middle h3 {
        cursor: pointer;
    }
    #mytheme footer .footer-middle h3 + ul, 
    #mytheme footer .footer-middle h3 + div {
        display: none;
    }
    #mytheme footer .footer-middle h3.open + ul,
    #mytheme footer .footer-middle h3.open + div {
        display: block;
    }
}

/* Mainbanner */
@media (max-width: 800px) {
    #mytheme .slideshow-full {
        display: none;
    }
    #mytheme .slideshow-mobile {
        display: block;
        padding: 1em 0;
        margin: 0 0 1em;;
    }
    #mytheme .slideshow-mobile .sohomeslider-description {
        display: none;
    }
    #mytheme .slideshow-mobile img {
        display: block;
        width: 100%;
        height: auto;
        margin: 0 auto;
        border-radius: 10px;
    }
}

/* Categories Page */
@media (max-width: 1300px) {
    #mytheme ul.refine-search__content > li {
        flex-basis: 32%;
        margin: 0.5%;
    }
}
@media (max-width: 991px) {
    #mytheme ul.refine-search__content > li {
        flex-basis: 49%;
        margin: 0.5%;
    }
}
@media (max-width: 700px) {
    #mytheme ul.refine-search__content > li a.text-center {
        font-size: 0.8em;
        line-height: 15px;
        padding: 10px;
    }
}

/* Products Listing Page */
@media (max-width: 1400px) {
    #mytheme .products-category .products-list .product-layout {
        flex-basis: 19%;
        margin: 0 0.5% 2%;
    }
}
@media (max-width: 1100px) {
    #mytheme .products-category .products-list .product-layout {
        flex-basis: 24%;
    }
}
@media (max-width: 850px) {
    #mytheme .products-category .products-list .product-layout {
        flex-basis: 32%;
    }
    #mytheme .products-category .products-list .product-layout .right-block .pricebox {
        margin: 0;
    }
    #mytheme .products-category .products-list .product-layout .right-block .pricebox button.addToCart {
        width: 30px;
        height: 30px;
        background-size: 20px auto;
    }
    #mytheme ul.breadcrumb li {
        padding: 0 10px 0 5px;
        margin: 0;
    }
    #mytheme ul.breadcrumb li a {
        font-size: 11px;
    }
    #mytheme .products-category .products-list .product-layout .left-block .button-group button.wishlist {
        top: 0px;
        right: 0px;
    }
}
@media (max-width: 650px) {
    #mytheme .product-filter .short-by-show > div.short-by + div {
        display: none;
    }
    #mytheme .product-filter .row {
        flex-wrap: wrap;
        align-items: flex-end;
    }
    #mytheme .product-filter-top .row > .view-mode {
        display: block;
    }
    #mytheme .product-filter .open-sidebar {
        margin: 0 0 5px;
        display: inline-block;
    }
    #mytheme .product-filter .short-by-show > div.short-by {
        display: block;
        margin: 0;
    }
    #mytheme .product-filter .short-by-show > div.short-by label {
        display: block;
        text-align: left;
        margin: 0 0 5px;
    }
    #mytheme .product-filter-bottom > .row {
        display: block;
    }
    #mytheme .product-filter-bottom > .row > div {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 5px 0;
    }
    #mytheme .product-filter .short-by-show select {
        max-width: 140px;
        padding: 0 20px 0 10px
    }
}
@media (max-width: 600px) {
    #mytheme .products-category .products-list .product-layout {
        flex-basis: 49%;
    }
}

/* Product Page */
@media (max-width: 1500px) {
    #mytheme .content-product-mainheader > .row > div.content-product-left {
        flex-basis: 42%;
    }
    #mytheme .content-product-mainheader > .row > div.content-product-right {
        flex-basis: 56%;
    }
    #mytheme .content-product-mainheader > .row > div.content-product-right .attributesbox ul.product-property-list li span {
        font-size: 12px;
        vertical-align: middle;
    }
    #mytheme .content-product-mainheader > .row > div.content-product-right .attributesbox ul.product-property-list li span.propery-des {
        font-size: 14px;
        vertical-align: middle;
    }
    #mytheme .content-product-mainheader > .row > div.content-product-right .attributesbox ul.product-property-list li span.propery-title {
        width: 70px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
@media (max-width: 1200px) {
    #mytheme .content-product-mainheader > .row > div.content-product-left {
        flex-basis: 49%;
    }
    #mytheme .content-product-mainheader > .row > div.content-product-right {
        flex-basis: 49%;
    }
    #mytheme .content-product-mainheader > .row > div.content-product-right .attributesbox ul.product-property-list li {
        flex-basis: 100%;
    }
    #mytheme .content-product-mainheader > .row > div.content-product-right .detail-action .cart input {
        min-width: 170px;
        padding: 10px;
    }
    #mytheme .content-product-mainheader > .row > div.content-product-right .option.quantity,
    #mytheme .content-product-mainheader > .row > div.content-product-right .detail-action .cart {
        margin: 0 1em 0 0;
    }
}
@media (max-width: 991px) {
    #mytheme .content-product-mainheader > .row > div.content-product-right,
    #mytheme .content-product-mainheader > .row > div.content-product-left {
        flex-basis: 100%;
    }
    #mytheme .content-product-mainheader > .row > div.content-product-left {
        margin-bottom: 1em;
    }
    #mytheme .content-product-mainheader > .row > div.content-product-right .attributesbox {
        margin: 1em 0 0;
    }
    #mytheme .content-product-mainheader > .row > div.content-product-left .large-image img {
        max-height: 400px;
    }
}
@media (max-width: 600px) {
    #mytheme .content-product-mainheader > .row > div.content-product-left .large-image,
    #mytheme .content-product-mainheader > .row > div.content-product-right .productinfobox,
    #mytheme .content-product-mainheader > .row > div.content-product-right .attributesbox,
    #mytheme .content-product-mainbody .content-product-midde .tab-content {
        padding: 20px 20px;
    }
    #mytheme .content-product-mainheader > .row > div.content-product-right .box-info-product .inner {
        display: block;
    }
    #mytheme .content-product-mainheader > .row > div.content-product-right .option.quantity {
        margin: 0 0 10px;
        display: inline-block;
    }
    #mytheme .content-product-mainheader > .row > div.content-product-right .attributesbox ul.product-property-list li {
        padding: 0.5em 0.5em;
    }
    
    #mytheme.product-product #content .title-product h1 {
        font-size: 1.3em;
    }
}

/* Authors - Brands */
@media (max-width: 991px) {
    #mytheme.product-manufacturer #content > .row > div {
        flex-basis: 50%;
        width: auto;
        min-width: 0;
    }
}
@media (max-width: 600px) {
    #mytheme.product-manufacturer #content > .row > div {
        padding: 5px 10px 5px 0;
    }
    #mytheme.product-manufacturer #content > .row > div a {
        font-size: 0.8em;
        line-height: 120%;
        padding: 0;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

/* Info Pages */
@media (max-width: 1000px) {
    #mytheme.information-contact .info-contact.row {
        flex-wrap: wrap;
    }
    #mytheme.information-contact .info-contact.row > div {
        flex-basis: 100%;
        margin: 0 0 1em;
    }
}

/* Account Pages */
@media (max-width: 900px) {
    #mytheme.account-account #account-account .box > .row,
    #mytheme.account-edit #account-edit .box > .row,
    #mytheme.account-password #account-password .box > .row,
    #mytheme.account-address #account-address .box > .row,
    #mytheme.account-wishlist #account-wishlist .box > .row,
    #mytheme.account-order #account-order .box > .row,
    #mytheme.account-download #account-download .box > .row,
    #mytheme.account-subscription #account-subscription .box > .row,
    #mytheme.account-reward #account-reward .box > .row,
    #mytheme.account-returns #account-return .box > .row,
    #mytheme.account-transaction #account-transaction .box > .row,
    #mytheme.account-newsletter #account-newsletter .box > .row,
    #mytheme.account-logout #common-success .box > .row,
    #mytheme.account-forgotten #account-forgotten .box > .row {
        flex-wrap: wrap !important;
    }
    
    #mytheme.account-account .box > .row > #content,
    #mytheme.account-edit .box > .row > #content,
    #mytheme.account-password .box > .row > #content,
    #mytheme.account-address .box > .row > #content,
    #mytheme.account-wishlist .box > .row > #content,
    #mytheme.account-order .box > .row > #content,
    #mytheme.account-download .box > .row > #content,
    #mytheme.account-subscription .box > .row > #content,
    #mytheme.account-reward .box > .row > #content,
    #mytheme.account-returns .box > .row > #content,
    #mytheme.account-transaction .box > .row > #content,
    #mytheme.account-newsletter .box > .row > #content,
    #mytheme.account-logout .box > .row > #content,
    #mytheme.account-forgotten .box > .row > #content {
        flex-basis: 100% !important;
        margin: 0 0 1em;
    }
    
    #mytheme.account-account .box > .row > #content + aside ,
    #mytheme.account-edit .box > .row > #content + aside,
    #mytheme.account-password .box > .row > #content + aside,
    #mytheme.account-address .box > .row > #content + aside,
    #mytheme.account-wishlist .box > .row > #content + aside,
    #mytheme.account-order .box > .row > #content + aside,
    #mytheme.account-download .box > .row > #content + aside,
    #mytheme.account-subscription .box > .row > #content + aside,
    #mytheme.account-reward .box > .row > #content + aside,
    #mytheme.account-returns .box > .row > #content + aside,
    #mytheme.account-transaction .box > .row > #content + aside,
    #mytheme.account-newsletter .box > .row > #content + aside,
    #mytheme.account-logout .box > .row > #content + aside,
    #mytheme.account-forgotten .box > .row > #content + aside {
        flex-basis: 100% !important;
        margin: 0 0 1em;
    }
}


/* Checkout */
@media (max-width: 1100px) {
    #mytheme.account-login #content > .row {
        flex-wrap: wrap !important;
    }
    #mytheme.account-login #content > .row > div {
        flex-basis: 100% !important;
    }
    #mytheme.account-login #content + aside,
    #mytheme.account-register #content + aside {
        flex-basis: 250px;
        margin-left: 2%;
    }
}
@media (max-width: 1000px) {
  #mytheme #shopping-cart .table-responsive .table thead > * {
    font-size: 0.8em;
    line-height: 100%;
  }
  #mytheme #shopping-cart .input-group button {
    padding: 8px 9px;
    min-width: 40px;
  }
  #mytheme #shopping-cart form input {
    padding: 9px 0px;
  }
  #mytheme #shopping-cart .input-group {
    flex-wrap: nowrap;
  }
}
@media (max-width: 990px) {
  #mytheme.full_other_pages .container > .row > #content {
    margin-bottom: 2em;
  }
  #mytheme.full_other_pages .container > .row > #content > .row {
    flex-wrap: wrap;
  }
  #mytheme.full_other_pages .container > .row > #content > .row > .col {
    flex-basis: 100%;
    float: none;
    margin: 0 0 2em;
  }
}
@media (max-width: 800px) {
    #mytheme.account-login #account-login .box > .row {
        flex-wrap: wrap !important;
    }
    #mytheme.account-login #content,
    #mytheme.account-login #content + aside,
    #mytheme.account-register #content,
    #mytheme.account-register #content + aside {
        flex-basis: 100% !important;
        margin: 0 0 1em;
    }
}
@media (max-width: 700px) {
  #mytheme #shopping-cart .table-responsive .table tr td:nth-of-type(5) { 
    width: 0px !important;
    visibility: hidden;
    padding: 0;
    font-size: 0em;
    border: none;
  }
  #mytheme #shopping-cart .table-responsive .table tbody tr td:nth-of-type(2) {
    line-height: 110%;
    font-size: 0.9em;
  }
}
@media (max-width: 575px) {
    #mytheme.full_other_pages .container > .row > #content + aside {
    margin-left: 0em;
  }
    #mytheme #shopping-cart .table-responsive .table tbody tr td:nth-of-type(2) {
        font-size: 0.7em;
    }
}
@media (max-width: 500px) {
    #mytheme #shopping-cart .table-responsive .table tbody tr td:nth-of-type(2) {
        max-width: 100px;
        overflow: hidden;
    }
  #mytheme #shopping-cart .table-responsive .table tr td:nth-of-type(3) {
    width: 0px !important;
    visibility: hidden;
    padding: 0;
    font-size: 0em;
    border: none;
  }
  #mytheme #shopping-cart .input-group {
    flex-wrap: wrap;
    max-width: 70px;
  }
  #mytheme #shopping-cart .input-group button {
    flex-basis: 50%;
    min-width: 0;
    padding: 8px 4px;
    min-height: 30px;
    background-size: 20px auto;
  }
  #mytheme #shopping-cart .input-group input {
    flex-basis: 100%;
    min-width: 0;
    margin-bottom: 0.5em;
  }
}


/* Changes 2024-05-20 */
#mytheme.product-manufacturer #content .letter-content .row {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
#mytheme.product-manufacturer #content .letter-content .row > div {
    padding: 0 15px 0 0;
    margin: 0;
}
#mytheme.product-manufacturer #content .letter-content .row > div a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 5px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}
#mytheme.product-manufacturer #content .letter-content .row > div a img.img-thumbnail {
    width: 40px !important;
    height: 40px !important;
    border: none;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 10px 0 0;
    display: block;
    min-width: 40px !important;
    padding: 0;
}
#mytheme.product-manufacturer #content .letter-content .row > div a:not(:has(img))::before {
    content: "\f007";
    font-family: "FontAwesome";
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 10px 0 0; 
    background-color: rgba(0,0,0,0.2);
    min-width: 40px !important;
    text-align: center;
    font-size: 20px;
    line-height: 40px;
    color: rgba(0,0,0,0.2);
}
#mytheme.product-manufacturer #content > p.letterlist > strong {
    display: none;
}
#mytheme.product-manufacturer #content > p.letterlist {
    text-align: center;
}
#mytheme.product-manufacturer #content > p.letterlist > a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 18px;
    margin: 5px;
    padding: 5px;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 50%;
}
#mytheme.product-manufacturer #content > p.letterlist > a:hover {
    border: 1px solid rgba(0,0,0,0.6);
}
#mytheme.product-manufacturer #content > p.letterlist > a:nth-of-type(1) {
    display: none;
}
#mytheme.product-manufacturer #content > p.letterlist .seperator {
    display: block;
    width: 100%;
    margin: 5px 0;
}
#mytheme.product-manufacturer #content > p.letterlist > a.active {
    border: 1px solid rgba(0,0,0,0.2);
    background-color: var(--color2);
    color: var(--colorb);
}
#mytheme.product-manufacturer #content > p.description {
    text-align: center;
    padding: 0 10px;
}

#mytheme.product-manufacturer #content h2 {
    float: left;
    opacity: 0;
    visibility: hidden;
}
#mytheme.product-manufacturer #content .letter-content {
    display: none;
}
#mytheme.product-manufacturer #content h2.active + .letter-content {
    display: block;
    clear: both;
}

#mytheme.full_other_pages .author-info div:has(.img-thumbnail) {
    display: block;
    float: left;
}



@media (max-width: 991px) {
    #mytheme.product-manufacturer #content .letter-content .row > div {
        flex-basis: 50%;
        width: auto;
        min-width: 0;
    }
}
@media (max-width: 600px) {
    #mytheme.product-manufacturer #content .letter-content .row > div {
        padding: 5px 10px 5px 0;
    }
    #mytheme.product-manufacturer #content .letter-content .row > div a {
        font-size: 0.8em;
        line-height: 120%;
        padding: 0;
        white-space: normal;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        1display: -webkit-box;
    }
    #mytheme.product-manufacturer #content > p.letterlist > a {
        margin: 5px 2px;
    }
}
@media (max-width: 450px) {
    #mytheme.product-manufacturer #content .letter-content .row > div {
        flex-basis: 100%;
    }
}









