@font-face {
    font-family: "SourceSansPro-Bold";
    font-display: swap;
    src: url(../fonts/SourceSansPro/SourceSansPro-Bold.ttf) format("truetype");
}

@font-face {
    font-family: "SourceSansPro-Regular";
    font-display: swap;
    src: url(../fonts/SourceSansPro/SourceSansPro-Regular.ttf) format("truetype");
}

@font-face {
    font-family: "SourceSansPro-SemiBold";
    font-display: swap;
    src: url(../fonts/SourceSansPro/SourceSansPro-SemiBold.ttf) format("truetype");
}

@font-face {
    font-family: "Roboto Medium";
    font-display: swap;
    src: url(../fonts/Roboto/Roboto-Medium.ttf) format("truetype");
}

@font-face {
    font-family: "Roboto Bold";
    font-display: swap;
    src: url(../fonts/Roboto/Roboto-Bold.ttf) format("truetype");
}

@font-face {
    font-family: "Roboto Black";
    font-display: swap;
    src: url(../fonts/Roboto/Roboto-Black.ttf) format("truetype");
}

@font-face {
    font-family: "Raleway Black";
    font-display: swap;
    src: url(../fonts/Raleway-Black.ttf) format("truetype");
}

body {
    font-family: "SourceSansPro-Regular";
    color: #262626;
}

body.login-page {
    background-image: url("../images/background_admin.jpg") !important;
    background-repeat: no-repeat !important;
    background-size: cover;
    color: #606468;
    font: 87.5%/1.5em 'Open Sans', sans-serif;
    margin: 0;
    position: relative;
}

.login_title_cw {
    font-size: 32px;
    text-align: center;
    text-transform: uppercase;
    color: #1d97e2;
    font-weight: bold;
}

.login-box-msg {
    color: #1d97e2;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
}

.addedToCart_layer {
    display: none;
    position: fixed;
    width: 100%;
    padding: 0px;
    z-index: 100;
}

.addedToCart_layer .alert-success {
    background-color: #e6322f;
    border-color: #e6322f;
    color: #fff;
}

.addedToCart_layer .alert-success a {
    color: #fff;
}

.addedToCart_layer.act {
    display: block;
}

.light.cc_dialog {
    padding: 1em 1.5em !important;
    max-width: 90% !important;
}

:root {
    --szerszamshop-lightgrey: #f4f4f4;
    --szerszamshop-grey: #272727;
    --szerszamshop-red: #e6322f;
    --carousel-height: 600px;
    --wide-img-height: 503px;
}

svg {
    fill: var(--szerszamshop-grey);
}

.svg-red {
    fill: var(--szerszamshop-red);
}

.svg-white {
    fill: #fff;
}

a:hover {
    text-decoration: none;
}

.custom-checkbox {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
}

.custom-checkbox p a,
.custom-checkbox p {
    margin-bottom: 0;
    color: #262626;
}

.custom-checkbox p a {
    font-family: "SourceSansPro-Bold";
    text-decoration: underline;
}

.custom-checkbox input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

.custom-checkbox span {
    display: inline-block;
    width: 20px;
    height: 20px;
    aspect-ratio: 1 / 1;
    border: 1.5px solid #999999;
    background-color: #fff;
    margin-right: .5em;
    position: relative;
    cursor: pointer;
}

.custom-checkbox input:checked ~ span {
    background-color: #999999;
}

.custom-checkbox span::after {
    display: none;
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 7px;
    height: 11px;
    border: solid #c0c0c0;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg);
}

.custom-checkbox input:checked ~ span::after {
    display: block;
}


.navbar-toggler {
    border-color: rgba(0, 0, 0, 0.1);
}


.profile-navigation a {
    font-size: 22px;
}


.product-block {
    width: 100%;
}

.product-title {
    font-family: "Raleway Black";
    color: var(--szerszamshop-grey);
    text-transform: uppercase;
    font-size: 16px;
    height: 2.2em;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    -webkit-box-shadow: 0px 5px 13px -7px var(--szerszamshop-grey);
    -moz-box-shadow: 0px 5px 13px -7px var(--szerszamshop-grey);
    box-shadow: 0px 5px 13px -7px var(--szerszamshop-grey);
    display: block;
    object-fit: contain;
}


.hover-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-block a:hover .hover-overlay {
    opacity: 1;
}

.hover-overlay svg {
    fill: #fff;
    height: 36px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.price-block {
    margin-top: 1em;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.red-button,
.add-to-cart {
    background-color: #f00;
    font-family: "Roboto Medium";
    font-size: 17px;
    color: #fff;
    padding: .5em 1em;
    display: inline-block;
    cursor: pointer;
    text-align: center;
}

.red-button:hover {
    color: #fff;
}

.prices-underline {
    display: inline-block;
    position: relative;
    padding-bottom: 7px;
}

.prices-underline::after {
    content: "";
    background-color: var(--szerszamshop-red);
    position: absolute;
    bottom: 0;
    right: 0;
    height: 4px;
    width: 155px;
}

.title-line {
    height: 1px;
    background-color: var(--szerszamshop-red);
    width: 100%;
    margin-left: 2em;
}


.product-list .product-block,
.front-list .product-block {
    margin-bottom: 3em;
}

.accordion .collapse-arrow .arrow-svg {
    transition: all ease-out .4s;
    transform: rotateZ(-90deg);
}

.accordion button[aria-expanded="true"] .collapse-arrow .arrow-svg {
    transform: rotateZ(90deg);
}



.button-container {
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    z-index: 10;
    font-family: "Roboto Bold";
    font-size: 18px;
}

.button-container a {
    color: #fff;
    padding: .5em 3em;
}

.next-button:hover,
.button-container a:hover {
    color: #fff
}

.next-btn-1 {
    background-color: #f00;
}

.next-btn-2 {
    background-color: transparent;
    border: 1px solid #fff;
}

.next-button {
    font-family: "Roboto Medium";
    font-size: 18px;
    color: #fff;
    padding: .5em 3em;
    background-color: #f00;
    margin-top: 1em;
}

.aktualis-title {
    margin-bottom: .5rem;
}

.aktualis-text p {
    font-family: "Roboto Regular";
    font-size: 16px;
    color: var(--szerszamshop-grey);
}

.logos img {
    width: 100%;
    max-height: 70px;
    object-fit: contain;
}

.logos {
    margin-top: 4em;
}

.aktualis-img {
    width: 100%;
}

#lightSliderProducts .product-block {
    padding-left: 5px;
    padding-right: 5px;
}

.category-link ~ .dropdown-list {
    padding-left: 1em;
}


.heading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 192px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.heading.saw {
    background-image: url(../images/cart-bg.jpg);
}

.heading.static {
    background-image: url(../images/static-bg.jpg);
}

.heading.contactus {
    background-image: url(../images/contact-bg.jpg);
}

.heading h1 {
    font-family: "Roboto Bold";
    text-transform: uppercase;
    color: #fff;
    font-size: 48px;
    letter-spacing: 2px;
    text-align: center;
}

.grey-block {
    background-color: var(--szerszamshop-lightgrey);
    padding: 3em 2.5em;
}

.grey-block .logo-block {
    margin-bottom: 2.5em;
}

.static-content h1,
.static-content h2,
.static-content h3,
.static-content h4,
.static-content h5,
.static-content h6 {
    font-family: "SourceSansPro-SemiBold";
    text-transform: uppercase;
    color: #333333;
}

.general-padding {
    padding-top: 3em;
    padding-bottom: 3em;
}

.cart-dot {
    width: 15px;
    height: 15px;
    background-color: var(--szerszamshop-lightgrey);
    border: 1px solid #f00;
    border-radius: 50%;
}

.cart-dot.done {
    background-color: #f00;
}

.cart-long-line,
.cart-line {
    background-color: #f00;
    height: 1px;
}

.cart-line {
    width: 60px;
}

.cart-breadcumb {
    display: flex;
    align-items: center;
    margin-left: 2em;
}

.cart-long-line {
    width: 100%;
}

.quantity-select {
    display: flex;
}


.section-title.grey {
    color: var(--szerszamshop-grey);
}

.section-title.grey {
    margin-bottom: 1.5em;
    padding-top: 1.5em;
    border-top: 1px solid var(--szerszamshop-grey);
}

.red-button.invert {
    color: #f00;
    background-color: transparent;
    border: 1px solid #f00;
}


.mobile-header {
    display: none;
}

.order-title svg {
    fill: #f00;
    height: 20px;
}

.order-summary .input-section p {
    font-size: 18px;
}


.logo-block {
    display: flex;
}

.logo-block svg {
    height: 24px;
    width: 39px;
    padding-right: 10px;
}

.logo-block img {
    height: max-content;
}

.grey-block .static-content {
    font-size: 14px;
}

.arrow-svg {
    height: 14px;
}

.arrow-svg.back {
    transform: rotateZ(180deg);
}

footer .logo-block img {
    width: 210px;
}

footer .svg-container {
    margin-right: 15px;
}

.svg-container-home {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-user-group svg {
    height: 21px;
}

.cart-user-group .dropdown button {
    background: none;
    border: none;
    outline: none;
}

.cart-user-group {
    width: 70px;
    display: flex;
    justify-content: space-between;
}

.cart-user-group a {
    display: block;
}



.cart-warning,
form small {
    color: #f00;
}

.login-client,
.orders,
.base {
    min-height: 450px;
}


.sort-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 1px solid #f00;
    margin-right: 1em;
}



.search {
    position: relative;
    margin-bottom: 1.5em;
}

.search input[type="text"] {
    width: 100%;
    padding-left: 35px;
    padding-top: .7em;
    padding-bottom: .7em;
    background-color: #fff;
    border: 1px solid #f00;
}

.search input[type="text"],
.search input[type="text"]::placeholder {
    font-family: "Roboto Bold";
    font-size: 13px;
    text-transform: uppercase;
    opacity: 1;
}

.search button {
    background: transparent;
    border: 0;
    position: absolute;
    top: calc((100% - 26px) / 2);
    left: 5px;
}




.attribute {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-family: "Roboto Medium";
    padding: .5em;
}

.attribute:nth-child(2n+1) {
    border: 1px solid var(--szerszamshop-grey);
    background-color: var(--szerszamshop-lightgrey);
}

.attr-row {
    margin-bottom: 2em;
}

.product-view .red-button {
    border: none;
    padding-left: 3rem;
    padding-right: 3rem;
}

.hidden {
    display: none;
}

.go-to-cashier {
    color: #fff;
}

.thanks-order-title {
    min-height: 70vh;
    color: #f00;
    font-family: "Roboto Black";
    font-size: 30px !important;
    text-transform: uppercase;
}


/*LUST AND LACE START*/
.header-top {
    background-color: #282828;
    font-family: "SourceSansPro-Bold";
    font-size: 16px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.header-top a {
    color: #fff;
}

.navbar-expand-lg {
    justify-content: space-between;
    width: 100%;
}

.right-part {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: fit-content;
}

.divinder {
    padding-left: 10px;
    padding-right: 10px;
}

.navbar-expand-lg .navbar-nav {
    align-items: center;
}

.header-bottom {
    padding-top: 1em;
    padding-bottom: 1em;
}

.last-home-container {
    border-top: 1px solid #999999;
    border-bottom: 1px solid #999999;  
}

.left-category-block {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    position: relative;
}

.row.extra-p {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.left-category-block::after {
    content: "";
    display: flex;
    height: 1px;
    background-color: #343434;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 80px;
}

.left-category-block span,
.left-category-block a {
    margin-right: 15px;
    display: flex;
    color: #333333;
    align-items: center;
    font-size: 18px;
    text-transform: uppercase;
    font-family: "SourceSansPro-Regular";
    min-height: 50px;
}

.search-group {
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: row;
    height: 50px;
}

.search-control {
    background-color: transparent;
    border: 0px;
    border-radius: 0px;
    color: #333333;
    font-size: 18px;
    text-transform: uppercase;
    text-align: right;
    max-width: 100%;
    font-family: "SourceSansPro-Regular";
    width: 250px;
    height: 30px;
    outline: none !important;
    box-shadow: none !important;
    border-right: 1px solid #999999;
    margin-right: 12px;
    padding-right: 25px;
}

#carouselTop {
    position: relative;
    margin-top: 2em;
    margin-bottom: 2em;
}

#carouselTop::after {
    content: "";
    display: flex;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #00000080;
}

.slide-img {
    width: 100%;
    height: 630px;
    object-fit: cover;
}

.carousel-caption {
    height: 100%;
    align-items: center;
    justify-content: center;
    padding-top: 0px;
    display: flex;
    flex-direction: column;
    bottom: 0px;
}

.slider-title {
    text-transform: uppercase;
    color: #fff;
    font-size: 28px;
    font-family: "SourceSansPro-Regular";
    padding-top: 2.5em;
    padding-bottom: 2em;
}

.slider-main-title {
    font-family: "SourceSansPro-SemiBold";
    text-transform: uppercase;
    color: #fff;
    font-size: 88px;
    position: relative;
}

.slider-main-title::after {
    width: 524px;
    background-color: #fff;
    height: 10px;
    position: absolute;
    display: block;
    content: "";
    top: -14px;
    left: -12%;
}

.slider-main-title::before {
    width: 91px;
    background-color: #fff;
    height: 10px;
    position: absolute;
    display: block;
    content: "";
    left: 0px;
    right: 0px;
    margin: 0 auto;
    bottom: -15px;
}

.standard-btn {
    background-color: transparent;
    min-height: 44px;
    width: fit-content;
    min-width: 184px;
    border-radius: 10px;
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-family: "SourceSansPro-SemiBold";
    color: #fff;
    font-size: 26px;
    min-height: 35px;
}

.standard-btn:hover,
.standard-btn:focus {
    background-color: #fff;
    color: #282828;
}

.smaller-btn.smaller-btn {
    font-size: 18px;
    min-width: 120px;
    min-height: 40px;
    padding: 0px;
    border: 2px solid #fff;
}

.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
    background-color: transparent;
    opacity: 1;
    border: 0px;
}

.carousel-control-prev, 
.carousel-control-next {
    opacity: 1;
    border: 0px;
    background-color: transparent;
    width: 6%;
    height: auto;
    bottom: inherit;
    top: 46%;
}

.one-category-block {
    position: relative;
    display: flex;
    align-items: center;
}

.one-category-block > img {
    height: 467px;
    object-fit: cover;
    width: 100%;
}

.one-category-block.small > img {
    height: 220px;
}

.one-category-block::after {
    content: "";
    display: flex;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #00000030;
}

.cateogry-content-block {
    position: absolute;
    top: 0px;
    bottom: 0px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: flex;
    width: 100%;
    z-index: 100;
}

.category-title {
    text-transform: uppercase;
    font-family: "SourceSansPro-SemiBold";
    color: #fff;
    font-size: 32px;
    margin-bottom: .8em;
    padding-top: 4.5em;
}

.one-category-block.small .category-title{
    font-family: "SourceSansPro-SemiBold";
    font-size: 26px;
    text-align: left;
    padding-top: 2em;
    width: 100%;
    padding-left: 35px;
    padding-right: 35px;
}

.category-title span {
    font-family: "SourceSansPro-SemiBold";
}

.one-category-block.small::after {
    background-color: #00000080;
}

.one-category-block.small .cateogry-content-block {
    padding-right: 35px;
}

.one-category-block.small .btn {
    border: 0px;
}
.one-category-block.small .btn img {
    margin-left: 8px;
}

.one-category-block.small.noimage .category-title {
    color: #333333;
    margin-bottom: 10px;
    font-size: 25px;
    padding-top: 0px;
}
.one-category-block.small.noimage {
    height: 220px;
    margin-bottom: 26px;
    background-color: #eae7e7;
}

.one-category-block.small.noimage::after {
    display: none;
}

.one-category-block.small.noimage .btn {
    color: #333333; 
}

.category-standard-text {
    font-family: "SourceSansPro-Regular";
    font-size: 18px;
    color: #333333;
    padding-left: 35px;
    margin-bottom: 25px;
    width: 100%;
    line-height: 1;
}

.category-home-fluid {
    margin-bottom: 2em;
}

.slider-header-fluid .last-home-container{
    box-shadow: none;
    border-bottom: 0px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.slider-header-fluid .left-category-block span,
.slider-header-fluid .left-category-block a {
    color: #333333;
    font-family: "SourceSansPro-SemiBold";
    font-size: 20px;
    margin-right: 45px;
}

.slider-buttons {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}

.slider-buttons img {
    margin-left: 15px;
}

.one-product-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.product-row {
    margin-bottom: 5em;
    overflow: hidden;
    flex-direction: row;
    flex-wrap: nowrap;
}
.nobg{
    background:none;
    border: none;
    outline: none !important;
}
.one-product-img-link {
    position: relative;
    margin-bottom: 20px;
}

.one-product-img-link img {
    height: 371px;
    width: 100%;
    object-fit: cover;
}

.one-product-card-colors {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin-top: 5px;
    margin-bottom: 5px;
}

.one-product-card-colors span.green,.one-product-card-colors span.Zöld {
    background-color: #1e6864;
}

.one-product-card-colors span.red,.one-product-card-colors span.Piros {
    background-color: #ed2184;
}
.one-product-card-colors span.blue,.one-product-card-colors span.Kék {
    background-color: #3521ed;
}

.one-product-card-colors span {
    height: 12px;
    width: 25px;
    border: 1px solid #cccccc;
    background-color: #fff;
    margin-left: 5px;
    margin-right: 5px;
}

.one-product-title {
    display: flex;
    height: 40px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: #333333;
    font-size: 16px;
    font-family: "SourceSansPro-Regular";
    text-align: center;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-row span.old-price {
    color: #999999;
    text-decoration: line-through;
    font-family: "SourceSansPro-Bold";
    font-size: 16px;
    margin-right: 10px;
}

.price-row span.price {
    color: #333333;
    font-family: "SourceSansPro-Bold";
    font-size: 16px;
}

.discount-badge {
    height: 25px;
    width: 55px;
    border-radius: 5px;
    border: 2px solid #333333;
    z-index: 100;
    position: absolute;
    left: 15px;
    top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #333333;
    font-family: "SourceSansPro-SemiBold";
    font-size: 18px;
    text-transform: uppercase;
}

.discount-badge.red {
    color: #e6322f;
    border: 2px solid #e6322f;
}

.one-product-hover {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    color: #fff;
    font-family: "SourceSansPro-Regular";
    font-size: 16px;
    padding: 25px;
    text-align: center;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #00000080;
}

.one-product-hover .btn.smaller-btn.smaller-btn {
    margin-top: 1em;
    font-size: 16px;
    min-width: 100px;
    min-height: 30px;
    padding: 0px;
    border-radius: 5px;
    border: 1px solid #fff;
}

.one-product-img-link:hover .one-product-hover,
.one-product-img-link:focus .one-product-hover {
    display: flex;
}

.home-second-banner-block img {
    height: 450px;
    width: 100%;
    object-fit: cover;
}

.home-second-banner-block {
    position: relative;
}

.home-second-banner {
    margin-bottom: 6em;
}

.home-second-banner-block::after {
    content: "";
    display: flex;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #00000065;
    z-index: 10;
}

.home-second-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    left: 0px; right: 0px; top: 0px; bottom: 0px;
    z-index: 100;
    color: #fff;
    padding-left: 16em;
    padding-right: 16em;
}

.hsbc-title {
    font-family: "SourceSansPro-SemiBold";
    font-size: 38px;
    text-transform: uppercase;
    text-align: center;
}

.hsbc-content {
    font-family: "SourceSansPro-Regular";
    font-size: 20px; 
    margin-bottom: 1em;
    margin-top: .5em;
    text-align: center;
}

.standard-title {
    color: #333333;
    font-size: 24px;
    text-transform: uppercase;
    font-family: "SourceSansPro-SemiBold";
}

.static-content {
    color: #333333;
    font-size: 18px;
    font-family: "SourceSansPro-Regular"; 
}

.gray-btn.smaller-btn {
    border: 2px solid #333;
    color: #333;
}

.aboutusfluid {
    margin-bottom: 6em;
}


footer {
    background-color: #2a2a2a;
    padding-top: 3em;
    padding-bottom: .8em;
    color: #fff;
    font-size: 16px;
    font-family: "SourceSansPro-Regular"; 
}

.footer-smalltitle {
    text-transform: uppercase;
    font-size: 18px;
    font-family: "SourceSansPro-Bold";
}

.footer-text {
    color: #fff;
    font-size: 16px;
    font-family: "SourceSansPro-Regular"; 
}

.extra-left-p {
    padding-left: 4em;
    padding-top: 2em;
}

.footer-icons-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    margin-top: 1em;
}

.footer-icons-row a {
    margin-right: 15px;
}
.footer-icons-row a img {
    max-height: 35px;
}

.footer-title {
    text-transform: uppercase;
    font-family: "SourceSansPro-SemiBold";
    font-size: 20px;
}

.links a {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.footer-design {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    margin-top: 2em;
    margin-bottom: 2em;
    position: relative;
}

.footer-design::after {
    content: "";
    display: flex;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 0px;
    top: 2px;
    width: 80px;
}

.cw-brdcmb {
    min-height: 50px;
    background-color: #f0f0f0;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    display: flex;
    padding: 0px 10px;
}

.cw-brdcmb a,
.cw-brdcmb span {
    color: #666666;
    text-transform: uppercase;
    font-family: "SourceSansPro-Regular";
    font-size: 16px;
}

.cw-brdcmb img {
    margin-left: 10px;
    margin-right: 10px;
}

.contact-title {
    text-transform: uppercase;
    color: #222222;
    line-height: 1.2;
    font-size: 36px;
    font-family: "SourceSansPro-SemiBold";
}

.contact-fluid {
    margin-top: 3em;
    margin-bottom: 7em;
}

.contact-title-design {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #787878;
    margin-top: 0em;
    margin-bottom: 1em;
    position: relative;
    max-width: 300px;
}

.contact-title-design::after {
    content: "";
    display: flex;
    height: 2px;
    background-color: #333333;
    position: absolute;
    left: 0px;
    top: 2px;
    width: 80px;
}

.cw-control {
    border: 1px solid #a5a6a8;
    min-height: 48px;
    border-radius: 0px;
    color: #333333;
    font-size: 16px;
    font-family: "SourceSansPro-SemiBold";
    padding-left: 38px;
    background-image: url('../images/icon-placeholder-profile.png');
    background-repeat: no-repeat;
    background-position: 16px 15px;
    background-size: auto;
}

.cw-control[name="message"] {background-image: url('../images/icon-placeholder-message.png');background-position: 16px 10px;}
.cw-control[name="email"] {background-image: url('../images/icon-placeholder-mail.png');background-position: 16px 20px;}
.cw-control[name="password"] {background-image: url('../images/icon-placeholder-pwd.png');background-position: 16px 17px;}
.cw-control[name="repassword"] {background-image: url('../images/icon-placeholder-pwd.png');background-position: 16px 17px;}

.cw-control::placeholder {
    color: #a5a6a8;
    font-size: 16px;
    text-transform: uppercase;
    font-family: "SourceSansPro-SemiBold";
}

.contact-item {
    margin-top: 2em;
    display: flex;
}

.contact-item,
.contact-item a {
    color: #333333;
    font-size: 20px;
}

.svg-container {
    width: 26px;
    text-align: center;
    margin-right: 25px;
}

.login-fluid {
    margin-top: 5em;
    margin-bottom: 8em;
}

.standard-btn.login-btn {
    padding: 0px 35px;
    background-color: #f0f0f0;
    border-color: #c0c0c0 !important;
    border-radius: 5px;
    margin-top: 1em;
    margin-bottom: 2em;
}

.standard-btn.reg-btn {
    padding: 0px 35px;
    border-radius: 5px;
}

.pwd-reminder {
    font-family: "SourceSansPro-SemiBold";
}

.category-image {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    margin-top: 2em;
    margin-bottom: 2em;
}

.product-list-top-filter {
    height: 50px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter_form {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    padding-left: 15px;
}

.filter_form span {
    margin-right: 15px;
    text-transform: uppercase;
    color: #666666;
    font-size: 16px;
}

.select-column select,
.filter_form select {
    appearance: none;
    background: none;
    border: none;
    font-size: 14px;
    padding-left: 5px;
    background-color: #fff;
    color: #666666;
    border: 1px solid #c0c0c0;
    background-image: url("../images/select-arrow.png");
    background-position: right top;
    background-size: auto;
    background-repeat: no-repeat;
}

.filter_form select option {
    font-size: initial;
}


.pagination .page-link[aria-label=Previous],
.pagination .page-link[aria-label=Next] {
    border: none;
    color: var(--szerszamshop-grey);
}

.pagination .page-link span {
    margin-right: 0px !important;
}

.pagination .page-link {
    font-size: 12pt;
    color: #666666;
    border: 1px solid #c0c0c0;
    width: 30px;
    height: 30px;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination .page-link:hover {
    background-color: var(--szerszamshop-lightgrey);
}

.pagination .page-item {
    margin-left:3px;
    margin-right:3px;
}

.page-item.active .page-link {
    color: #666666;
    background-color: #fff;
    border: 1px solid #c0c0c0;
}

.pagination {
    margin: 0;
}

.page-item:first-child .page-link {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background-color: transparent;
}

.page-item:last-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background-color: transparent;
}

.category-toggler {
    color: #222222;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 15px;
}

.category-link {
    color: #222222;
    text-transform: uppercase;
    font-family: "SourceSansPro-SemiBold";
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    cursor: pointer;
    border-bottom: 1px solid #c0c0c0;
}

.dropdown-list .category-link {
    border-bottom: 0px;
    text-transform: inherit;
    padding-bottom: 0px;
    font-family: "SourceSansPro-Regular";
    font-size: 18px;
}

.category-link[aria-expanded="true"] .plus,
.category-link[aria-expanded="false"] .minus {
    display: none;
}

.category-link[aria-expanded="true"] .minus {
    display: block;
}

.pagination-row {
    margin-top: 3em;
    margin-bottom: 6em;
}

.cw-brdcmb > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    flex-direction: row;
}

.cw-brdcmb-divinder {
    background-color: #999999;
    width: 20px !important;
    height: 2px;
    margin-left: 15px;
    margin-right: 15px;
    display: flex;
}

.cw-brdcmb .nr-block {
    background-color: #fff;
    border: 1px solid #dddcdc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    color: #333333;
    font-size: 16px;
    height: 25px;
    width: 25px;
    margin-right: 7px;
}

.cw-brdcmb .nr-block.act {
    background-color: #666666;
    color: #fff;
}

.cart-link {
    position: relative;
}

.cart-link .product-count {
    width: 18px;
    height: 18px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: #666666;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -4px;
    right: -8px;
    font-size: 11px;
}

.cart-table-head {
    padding: 1em 0;
    margin: 0;
    text-transform: uppercase;
    background-color: transparent;
    border-top: 1px solid #999999;
    border-bottom: 1px solid #999999;
    font-size: 16px;
    color: #666666;
}

.cart-table-row {
    border-bottom: 1px solid #999999; 
}

.cart-table-row:nth-child(2n + 1) {
    background-color: transparent;
}

.cart-table-row img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    padding: 1.25em 0em;
}

.cart-table-row {
    margin: 0;
    align-items: center;
    position: relative;
}

.cart-table-row .product-name {
    font-family: "SourceSansPro-SemiBold";
    font-size: 20px;
    color: #333333;
}

.stock-data {
    text-transform: none;
    color: #666666;
    font-size: 20px;
    margin-top: 15px;
} 

.cart-price {
    color: #222222;
    font-family: "SourceSansPro-SemiBold";
    font-size: 20px;
}


.quantity-select .plus,
.quantity-select .minus,
.controls>div {
    border: 1px solid transparent;
    width: 25px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c0c0c0;
}

.quantity-select .minus{
    background-color: #f1f1f1;
}

.quantity-select .plus {
    background-color: #f1f1f1;
}

.quantity-select input {
    width: 85px;
    height: 30px;
    border: 1px solid #c0c0c0;
    text-align: center;
    outline: none;
    color: #666666;
    background-color: transparent;
    font-family: "SourceSansPro-SemiBold";
}

.quantity-select .minus {
    border-right: none;
}

.quantity-select .plus {
    border-left: none;
}

.cart-table-row .cart_delete_prod_in_cart {
    cursor: pointer;
    height: auto;
    width: auto;
    z-index: 5;
    position: absolute;
    top: 15px;
    right: 10px;
}

.contact-title-design.w-100 {
    max-width: 100%;
    height: 1px;
    background-color: #999999;
}

.contact-title-design.w-100::after {
    top: 1px
}

.summary-title {
    color: #666666;
    text-transform: uppercase;
    margin-right: 3em;
    font-size: 26px;
    font-family: "SourceSansPro-SemiBold";
}

.large-price {
    color: #222222;
    font-size: 26px;
    font-family: "SourceSansPro-SemiBold";
}

.cart-offer-row.slider-header-fluid .last-home-container {
    border-bottom: 1px solid #999999;
    margin-bottom: 40px;
}

.cart-offer-row .left-category-block::after {
    top: initial;
    bottom: 0px;
}

.forgot-fluid {
    min-height: 50vh;
}

.order-with-login {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    color: #262626;
    font-size: 20px;
}

.order-title {
    color: #222222;
    font-family: "SourceSansPro-SemiBold";
    font-size: 30px !important;
    margin-bottom: 1em;
    padding-bottom: .6rem;
    border-bottom: 1px solid #999999;
}

.input-section {
    padding-bottom: 6em;
}

.input-section label {
    text-transform: uppercase;
    font-size: 14px;
    color: #999999;
}

.input-section input {
    border: 0px;
    border-bottom: 1px solid #666666;
    color: #333333;
    font-size: 18px;
    box-shadow: 0px !important;
    outline: 0px !important;
    border-radius: 0px;
}

.extra-order-padding {
    padding-left: 4em;
}

.input-section .custom-checkbox p {
    text-transform: initial !important;
    color: #262626;
    font-size: 18px;
}

.order-cart-body .cart-table-row img {
    width: 120px;
    height: 120px;
}

.order-cart-body .cart-price{
    font-size: 16px;
}

.order-cart-body .stock-data{
    font-size: 16px;
}

.gray-price {
    color: #999999;
}

.order-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    color: #262626;
    font-size: 20px;
    text-transform: uppercase;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #999999;
}

.price-sum-row {
    font-size: 26px;
    text-transform: initial;
}

.image-part {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: flex-start;
}

.image-part .small-images {
    width: 92px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.small-image {
    display: flex;
    border: 1px solid #c7c7c7;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 90px;
    height: 120px;
    margin-bottom: 20px;
}

.small-image img {
    height: 70%;
    width: 95%;
    object-fit: cover;
}

.product_view_pic {
    height: 550px;
    margin-left: 2em;
    width: calc(100% - 90px - 2em);
    object-fit: cover;
}

.small-images img,
#dynamic {
    cursor: pointer;
}

.product-view-title {
    text-transform: uppercase;
    font-size: 28px;
    color: #333333;
}

.one-prod-info {
    font-size: 18px;
    color: #333333;
}

.product-view .old-price,
.product-view .actual-price {
    color: #222222;
    font-family: "SourceSansPro-SemiBold";
}

.product-view .old-price {
    font-size: 20px;
    margin-right: .5em;
    color: #999999;
    text-decoration: line-through;
}

.product-view .actual-price {
    font-size: 26px;
}

.product-view .actual-price.choose-text {
    color: #222222;
    font-size: 23px;
}

.select-blocks {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
}

.stock-item-row {
    width: 180px;
    margin-right: 25px;
}

.stock-item-row select {
    width: 180px;
    height: 30px;
    background-size: auto 100%;
}

.item_view_to_cart.m-0 {
    margin-left: 25px !important;
    min-height: 33px;
    height: 33px;
}

.desc-title {
    font-family: "Roboto Medium";
    font-size: 20px;
    border-top: 1px solid #999999;
    padding-top: .5em;
    margin-top: 2em;
    text-transform: uppercase;
    color: #666666;
    font-family: "SourceSansPro-SemiBold";
}

.profile-navigation a {
    text-transform: uppercase;
    color: #666666;
    font-family: "SourceSansPro-SemiBold";
    border-bottom: 1px solid #666;
    padding: 10px 0px 5px 0px;
    margin: 0px 30px 10px 0px;
}
.profile-navigation a:hover,
.profile-navigation a.active {
    color: #222;
}


.profilom-title {
    color: #666;
    font-family: "SourceSansPro-SemiBold";
    margin-bottom: 1em;
    font-size: 20px;
    text-transform: uppercase;
}

.category-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.accordion h3 {
    font-size: 17px;
}

.order-info {
    margin: 0;
}

.order-info p {
    font-size: 14px;
    margin-bottom: .7em;
}

.order-info h3 {
    font-family: "SourceSansPro-SemiBold";
    color: #333;
    text-transform: uppercase;
}

.accordion button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: none !important;
}

.accordion .collapse-arrow svg {
    height: 20px;
}

.accordion .card-header {
    background-color: #f0f0f0;
}

.accordion .collapse-arrow {
    position: absolute;
    right: 10px;
    top: 32px;
}

.accordion .card-header p {
    color: #333;
    text-decoration: none;
}

.accordion .status,
.accordion .full-price {
    font-family: "SourceSansPro-SemiBold";
}

.summary-data {
    border-bottom: 1px solid #666666;
    color: #333333;
    font-size: 18px;
}

.nonnedsummary {
    display: none;
}

.order-sum-cart .stock-data {
    font-size: 16px;
}

.col-sm-2.col-summary {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
    text-align: right;
}

.small-info {
    text-transform: uppercase;
    margin-top: 1.5em;
    margin-bottom: 0px;
    color: #262626;
    font-size: 20px;
}

.small-content-info {
    color: #262626;
    font-size: 18px;
}


.range-slider {
    height: 5px;
    position: relative;
    background-color: #B2B2B2;
    border-radius: 2px;
}
.range-selected {
    height: 100%;
    left: 0%;
    right: 0%;
    z-index: 100;
    top: -1px;
    position: absolute;
    border-radius: 5px;
    background-color: #282828;
}

.range-input {
    position: relative;
}
.range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -7px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.range-input input::-webkit-slider-thumb {
    z-index: 5;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 3px solid #282828;
    background-color: #fff;
    pointer-events: auto;
    -webkit-appearance: none;
    position: relative;
    top: -2px;
    z-index: 100;
}
.range-input input::-moz-range-thumb {
    z-index: 5;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    border: 3px solid #1b53c0;
    background-color: #fff;
    pointer-events: auto;
    -moz-appearance: none;
}

.range-input input {
    box-shadow: none !important;
}

input[type="range"]:focus::-webkit-slider-runnable-track {
    background-color: transparent !important;
}

.range-price {
    margin: 30px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.range-price label {
    margin-right: 5px;
}
.range-price input {
    width: 40px;
    padding: 5px;
}
.range-price input:first-of-type {
    margin-right: 15px;
}

.range-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.range-price input {
    width: fit-content;
    max-width: 100px;
    border: 0px;
    outline: none !important;
    box-shadow: none !important;
    display: none;
}

.range-price div:first-of-type span {
    text-align: left;
}

.range-price {
    color: #282828;
    font-size: 16px;
    font-weight: 300;
    line-height: 17.06px;
}

.range-price div:last-of-type span{
    text-align: right;
}

.range-price input::-webkit-inner-spin-button {
    display: none;
}

.custom-checkbox.red span {
    background-color: red !important;
}
.custom-checkbox.black span {
    background-color: black !important;
}
.custom-checkbox.green span {
    background-color: green !important;
}

.color-collapse-div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
}

.color-collapse-div label {
    margin-right: 25px;
}

.prod-list-one-offer-product {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    margin-bottom: 15px;
}

.prod-list-one-offer-product .img-block {
    position: relative;
}

.prod-list-one-offer-product .img-block .discount-badge {
    height: 20px;
    width: 50px;
    left: 9px;
    top: 10px;
    font-size: 14px;
}

.prod-list-one-offer-product .img-block img {
    height: 110px;
    width: 142px;
    object-fit: cover;
    margin-right: 10px;
}

.prod-list-one-offer-product-title {
    color: #222222;
    font-size: 16px;
}

.nav-item a:hover,
.nav-item a:focus,
.nav-item.current a {
    color: #e6322f;
}

.category-link.active,
.category-link:hover,
.category-link:focus,
.category-toggler:hover,
.category-toggler:focus {
    color: #e6322f;
}
.product-shortdesc {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	line-clamp: 4;
}
.incart-btn{
    border: 2px solid #333;
    color: #333;
    margin: 0 auto;
}

.btn {
    cursor: pointer;
}

.kupon-form-group input {
    border: 1px solid #666666;
}

.success_message_kupon {
    display: none;
}

.search-icon {
    cursor: pointer;
}

.success_message_kupon {
    color: green;
}

.postapontvalasztoapi-row {
    display: none;
}

.postapontvalasztoapi-row.act {
    display: block;
}

#valasztott_postapont {
    opacity: 0;
    height: 0px;
}

.filter-container {
    display: flex;
    flex-direction: column;
    row-gap: 1.5em;
}
/*LUST AND LACE END*/
