@import 'colors.css';
@import 'components/header/offer-bar.css';
@import 'components/header/primary.css';
@import 'components/header/secondary.css';
@import 'components/hero/hero.css';
@import 'components/module.css';
@import 'components/module/featured-categories.css';
@import 'components/module/featured-products.css';
@import 'components/module/featured-patterns.css';
@import 'components/module/reviews.css';
@import 'components/module/subscribe.css';
@import 'components/breadcrumb.css';
@import 'components/list.css';
@import 'components/pagination.css';
@import 'components/product-page/product-page.css';
@import 'components/product-designer/product-designer.css';
@import 'components/designers.css';
@import 'components/designer.css';
@import 'components/designers/account.css';
@import 'components/cart-page.css';
@import 'components/footer.css';
@import 'components/cookie.css';
body {
    font-family: 'DM Sans', sans-serif;
    background: #f5f5f5;
}

.button.has-icon-32 {
    position: relative;
    padding-left: 42px;
    transition: .2s all;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
}

.button.has-icon-32:hover {
    text-decoration: none;
}

.button.has-icon-32:before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 32px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
}

button {
    border: 0;
}

.button-pill {
    background: red;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    line-height: 21px;
    padding: 10px 20px;
    border-radius: 41px;
    
}

.button-pill.button-pill-orange {
    background: var(--orange);
    color: #fff;
    border: 2px solid transparent;
}
.button-pill.button-pill-orange:hover {
    background: #fff;
    border-color: var(--orange);
    color: var(--orange);
    text-decoration: none; 
}
.button-pill.button-pill-green {
    background: var(--green);
    border: 2px solid transparent;
    color: #fff;
    cursor: pointer;
}
.button-pill.button-pill-red {
    background: red;
    border: 2px solid transparent;
    color: #fff;
    cursor: pointer;
}
.button-pill.button-pill-red:hover {
    background: #fff;
    border-color: red;
    color: red;
    text-decoration: none; 
}
.single-product:hover .button-pill.button-pill-green,
.button-pill.button-pill-green:hover {
    background: #fff;
    border-color: var(--green);
    color: var(--green);
    text-decoration: none;
}

body.loading:after {
    z-index: 10000;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    width: 100vw;
    height: 100vh;
}

body.loading:before {
    z-index: 10001;
    content: "Várjon...";
    position: fixed;
    top: 10px;
    left: 15px;
    color: #fff;
}

body.dim:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 100;
    width: 100%;
    height: 100%;
}

div.half-size {
    width: 50%;
    margin: 0 auto;
}

@media (max-width: 767px) {
    div.half-size {
        width: 90%;
    }
}

body.noscroll {
    height: 100vh;
    overflow: hidden;
}


i.wishlist {
    z-index: 10;
    color: var(--orange);
    cursor: pointer;
    transition: .2s all;
    position: relative;
    display: inline-block;
    float: right;
}
i.wishlist:hover {
    transform: scale(1.3) rotate(6deg);
}


#design-it-bottom-banner {
    background-color: #55a0c1;
    position: relative;
    color: #fff;
}
#design-it-bottom-banner:before {
    content: "";
    position: absolute;
    border: 2px dashed #fff;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
#design-it-bottom-banner > * {
    max-width: 40%;
    padding: 60px;
}

#design-it-bottom-banner > div > div {
    position: relative;
    z-index: 1;
    cursor: pointer;
}
#design-it-bottom-banner > div > div:hover {
    
    
}
#design-it-bottom-banner > div:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url(https://i.imgur.com/I96LKgv.png);
    background-size: cover;
}
#design-it-bottom-banner p:nth-of-type(1) {
    display: block;
}
#design-it-bottom-banner p:nth-of-type(2) {
    display: none;
}
@media (max-width: 850px) {
    #design-it-bottom-banner p:nth-of-type(1) {
        display: none;
    }
    #design-it-bottom-banner p:nth-of-type(2) {
        display: block;
    }
    #design-it-bottom-banner > * {
        max-width: 60%;
        padding: 40px;
    }
    #design-it-bottom-banner > div:after {
        width: 40%;
        height: 100%;
    }
}

#express-info {
    background: rgba(0, 0, 0, .5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1200;
}
#express-info > div {
    width: 100%;
    max-width: 800px;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 15px 30px rgb(0 0 0 / 50%);
    overflow: scroll;
    height: 80%;
}
#express-info > div:after {
    content: "×";
    position: absolute;
    top: 5px;
    right: 15px;
    color: var(--orange);
    font-size: 31px;
    cursor: pointer;
}
#express-info h1 {
    color: var(--orange);
    border-bottom: 1px solid var(--orange);
    padding: 15px 30px;
    font-size: 22px;
    margin: 0;
}
#express-info p {
    padding: 15px 30px;
    margin: 0;
}

h2, h3 {
    font-size: 22px;
}

@media (max-width: 575px) {
    #information-contact label.text-right {
        text-align: left !important;
    }
}




#CybotCookiebotDialog {
    z-index: 10000000000 !important;
}
a.CybotCookiebotDialogBodyButton {
    border-radius: 15px;
    padding: 15px !important;
    line-height: 1em !important;
    padding-top: 10px !important;
    padding-bottom: 5px !important;
    margin-bottom: 15px;
    transition: .2s all;
    width: auto !important;
}
a.CybotCookiebotDialogBodyButton:hover {
    background: #fff !important;
    color: #000 !important;
}

#CybotCookiebotDialog * {
    font-family: "DM Sans" !important;
}
#CybotCookiebotDialogBodyContentText {
    font-size: 13px;
    line-height: 1.2em;
}
input[type=checkbox].CybotCookiebotDialogBodyLevelButton:checked+label {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAMAAAAolt3jAAAAAXNSR0IB2cksfwAAADlQTFRFAAAATLUATLUARbgATLUATLUATLUAULQA0NDQzs/ORbgASLYAULQATLUATLUAULQASLYAULQAxs3ENuIviQAAABN0Uk5TAECAEO//r9///yCPML/Pn2Bw/4vHPX8AAABgSURBVHicTc7bDoAgDAPQ4qhOlIv+/8e6oQT7QHagWQBmwiI/SWT8cSU36MhOMkC/txTJA87TmckCZ2UDLqv6tQYb2mnH7SWVYuNm1b5F0c2YPr6+MAipzJi078rgjOkBHY0DEwD3iJQAAAAASUVORK5CYII=") !important;
}


div.image svg, div.image object {
	position: absolute;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 100%;
}


body > div .CookieDeclaration {
	display: none;
}