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

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

@font-face {
    font-family: "Roboto Regular";
    font-display: swap;
    src: url(../fonts/Roboto/Roboto-Regular.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 SemiBold";
    font-display: swap;
    src: url(../fonts/Roboto/Roboto-SemiBold.ttf) format("truetype");
}

.hidden {display: none !important;}

body {
    font-family: "Roboto Regular";
}

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: #f00;
    border-color: #f00;
    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 {
    --carousel-height: 600px;
    --wide-img-height: 503px;
    --custom-maincolor: #EC2128;
}

.svg-white {
    fill: #fff;
}

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

.custom-checkbox p {
    margin-bottom: 0;
}

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

.custom-checkbox span {
	display: inline-block;
	width: 33px;
	height: 33px;
	aspect-ratio: 1 / 1;
	margin-right: .5em;
	position: relative;
	cursor: pointer;
	box-shadow: 0px 0px 4px 0px #00000033;
	border: 0.2px solid #ccc;
    border-radius: 1px;
}

.form-control{
    height: 55px;
    border: 1px solid #999999;
    background: #FCFCFC;
}

.custom-checkbox input:checked ~ span {
	background-color: #EC2128;
    border: 1px solid var(--custom-maincolor);
}

.custom-checkbox span::after {
    display: none;
    content: "";
    position: absolute;
    left: 8px;
    top: 5px;
}
.checkboxes{
    display: flex;
    gap: 5em;
    flex-wrap: wrap;
    margin-top: 2em;
}

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

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

.cart-user-group .dropdown a,
.profile-navigation a,
.nav-link {
    text-transform: uppercase;
}

.cart-user-group .dropdown a:hover{
    font-family: "Roboto Black";
    color: #f00;
}
.nav-item.current a{
    color: black;
}

.carousel-item img {
    display: block;
    width: 100%;
    height: var(--carousel-height);
    object-fit: cover;
}

.trapezoid {
    height: 0;
    opacity: 60%;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}

.carousel .trapezoid {
    border-bottom: var(--carousel-height) solid #f00;
    border-left: 375px solid transparent;
    width: 65%;
}

.carousel-caption {
    font-family: "Roboto Bold";
    text-transform: uppercase;
    text-align: left;
    left: 57%;
    right: 30px;
    bottom: 100px;
}

.carousel-caption h1 {
    font-size: 60px;
}

.carousel-caption p {
    font-size: 20px;
    margin-bottom: 1.5em;
}

.carousel-caption a {
    color: #fff;
    border: 2px solid #fff;
    font-size: 20px;
    padding: .4em 2.5em;
}

.logos,
.under-carousel {
    padding-top: 3em;
    padding-bottom: 3em;
}

.under-carousel h3 {
    font-family: "Roboto Black";
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: .2em;
}

.under-carousel p {
    font-size: 14px;
}

.product-block {
    width: 100%;
}

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

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: contain;
}

.discount-badge {
    text-transform: uppercase;
    font-family: "Roboto Medium";
    font-size: 13px;
    color: #fff;
    padding: .9em 1.2em;
    position: absolute;
    top: 0;
    right: 0;
}

.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%);
}


.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: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 4px;
    width: 155px;
}
.old-price {
    text-decoration: line-through;
    font-size: 14px;
}

.aktualis-text h3,
.section-title {
    font-family: 'Roboto Medium';
    font-size: 20px;
    line-height: 23.44px;
    letter-spacing: 0%;
}

.section-title span {
    font-family: "Roboto Medium";
}

.controls {
    display: flex;
}

.quantity-select .plus img,
.quantity-select .minus img {
    width: 20px;
    height: 20px;
}

.title-line {
    height: 1px;
    width: 100%;
    margin-left: 2em;
}

#lightSliderProducts {
    margin-bottom: 4em;
}

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

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

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

.category-toggler {
    background-color: #f00;
    color: #fff;
    font-family: "Roboto Black";
    text-transform: uppercase;
    border-radius: 20px;
    padding: .6em 1em;
    display: flex;
    justify-content: space-between;
}

.category-toggler:hover {
    color: #fff;
}


.category-link:hover,
.category-link .fa-chevron-right {
    color: #f00 !important;
}


.wide-img-container {
    background-image: url(../images/woodwork-bg.jpg);
    background-repeat: no-repeat;
    background-size: auto;
    display: flex;
    align-items: center;
    height: var(--wide-img-height);
    margin-top: 2em;
}

.wide-img-container .trapezoid {
    border-bottom: var(--wide-img-height) solid #f00;
    border-left: 275px solid transparent;
    width: 58%;
}

.saw-text {
    color: #fff;
    text-align: center;
    z-index: 10;
}

.saw-text h3 {
    font-family: "Roboto Black";
    text-transform: uppercase;
    font-size: 30px !important;
    padding: 0 2em;
}

.saw-text p {
    font-family: "Roboto Bold";
    font-size: 18px;
    margin-top: 1.5em;
    margin-bottom: 2.5em;
}

.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;
}

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

.logos {
    margin-top: 4em;
}

.allrightsreserved {
    font-family: "Roboto Regular";
    font-size: 12px;
}

.aktualis-img {
    width: 100%;
}

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

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

.form-group {
    margin-bottom: 1.5em;
}

textarea {
    resize: vertical;
}

.heading {
	display: flex;
	justify-content: center;
	align-items: end;
	min-height: 123px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
    margin-bottom: 2em;
}

.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,.order-bigtitle {
    font-family: "Roboto Medium";
    color: black;
    font-size: 32px;
    text-align: left;
    margin-bottom: 0;
}

.grey-block {
    padding: 3em 2.5em;
}

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

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

.contact-item,
.contact-item a {
    font-family: "Roboto Black";
}

.static-content h1,
.static-content h2,
.static-content h3,
.static-content h4,
.static-content h5,
.static-content h6 {
    font-family: "Roboto Medium";
    color: black;
    line-height: 100%;
    letter-spacing: 0%;
}
.static-content h1{
    font-size: 36px;
}
.static-content h2{
    font-size: 32px;
}
.static-content h3{
    font-size: 28px;
}
.static-content h4{
    font-size: 26px;
}
.static-content h5{
    font-size: 24px;
}
.static-content h6{
    font-size: 20px;
}


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

.cart-dot {
    width: 15px;
    height: 15px;
    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;
}

.quantity-select input {
	width: 111px;
	height: 55px;
	text-align: center;
	outline: none;
	background-color: transparent;
	border: 1px solid #999999;
	font-family: 'Roboto Medium';
	font-size: 24px;
	line-height: 100%;
	letter-spacing: 0%;
}


.cart-table-row {
    margin: 0;
    align-items: center;
    position: relative;
    font-family: "Roboto Regular";
    font-size: 16px;
    padding-bottom: 2em;
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 2em;
}

.cart-table-row svg:not(.arrow-svg) {
    fill: #f00;
    height: 20px;
    cursor: pointer;
    z-index: 5;
    position: absolute;
    top: 15px;
    right: 10px;
}

.section-title.grey {
    margin-bottom: 1.5em;
    padding-top: 1.5em;
}

.large-price {
    text-transform: none !important;
}

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

.order-title {
    text-transform: uppercase;
    font-family: "Roboto Medium";
    font-size: 24px;
    margin-bottom: 1em;
}

.order-summary-texts .order-title{
    text-transform: none;
}

.input-section {
    margin-top: 2em;
    padding-bottom: 2em;
}

.mobile-header {
    display: none;
}

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

.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;
}



.contact-title {
    font-family: "Roboto Bold";
    text-transform: uppercase;
    font-size: 30px;
    margin-bottom: 1em;
}

.arrow-svg {
    height: 14px;
}

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

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

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

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

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

.cart-link {
    position: relative;
}

.cart-link .product-count {
    width: 20px;
    height: 20px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color:var(--custom-maincolor);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -5px;
    right: -9px;
    font-size: 11px;
}

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

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

.pagination .page-link[aria-label=Previous],
.pagination .page-link[aria-label=Next] {
    border: none;
}


.pagination {
    margin: 2em 0;
}

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

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


.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;
}

.product-big-image {
    width: 100%;
    display: block;
}

.small-images {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.small-images img {
    object-position: center;
    height: 95px;
}

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

.desc-title {
    margin-top: 1.5em;
    font-family: 'Roboto Regular';
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #737373;
}
.desc-title.active{
    font-family: 'Roboto Medium';
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    color: black;
}

.desc-header{
    display: flex;
    gap: 1em;
    margin-bottom: 2em;
}

.product-view .old-price,
.product-view .actual-price {
    color: #f00;
}

.product-view .old-price {
    font-family: "Roboto Medium";
    font-size: 30px;
    margin-right: .5em;
}

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

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

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

.quantity-label {
    margin-bottom: 0;
}
.d-flex:has(.quantity-label){
    gap: 1em;
}
.hidden {
    display: none;
}

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

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

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


.reg-block input,
.login-block input,
.personal input::placeholder {
    font-family: "Roboto Regular";
}

.login-title,
.profilom-title {
    font-family: "Roboto Medium";
    margin-bottom: 1em;
    font-size: 20px;
    text-transform: uppercase;
}

.profilom-nav{
    font-family: 'Roboto Medium';
    font-size: 22px;
    line-height: 21.09px;
    color: black;
    padding-top: 0;
    padding-bottom: 0;
}
.profile-navigation a.active{
    color: var(--custom-maincolor);
}

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


.order-info {
    margin: 0;
}

.order-info p {
    font-size: 18px;
    margin-bottom: .5em;
}

.accordion button {
    border: none;
}

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

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

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

.accordion .status,
.accordion .full-price {
    font-family: "Roboto Black";
}

.dropdown-item:focus, .dropdown-item:hover {
    background-color: transparent;
}

.dropdown-item {
    width: 175px;
    padding: .5rem 1.5rem;
}

.dropdown-menu {
    text-align: center;
    border-radius: 0;
    left: -149px;
    top: 125%;
}

/*NEW CSS START*/
.standard-btn {
	box-shadow: 0px 4px 10px 0px #00000040;
	padding: 0.5em 2em;
    font-family: 'Roboto SemiBold';
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    width: 213px;
    height: 55px;
    align-content: center;
}
.standard-btn:hover{
    transition: .3s all ease;
}
.header-top {
    background-color: black;
    display: flex;
    align-items: center;
    padding-top: 1em;
    padding-bottom: 1em;
    font-size: 16px;
    line-height: 18.75px;
    text-align: left;
}
.header-top .d-flex:not(.gap){
    gap: 0 .3em;
}
.gap{
    gap: 0 23px;
}

.header-top a {
    color: #fff;
}
.logosvg{
    width: 233px;
    height: 66px;
    margin: 1.5em 0;
}
.respo-img{
    width: 100%;
    height: 100%;
}
.wof{
    object-fit: cover;
}
.woc{
    object-fit: contain;
}
.searchbar{
    height: 57px;
    width: 100%;
}
.searchbar .search_form{
    height: 100%;
    width: 100%;
    position: relative;
}
.searchbar .search_form input{
    width: 100%;
    height: 100%;
    border-radius: 0;
    border: 1px solid #DBDBDB;
    background: #EFEFEF1A;
    padding-left: 4em;
    font-size: 18px;
}
.searchbar .search_form input::placeholder{
    font-family: 'Roboto Regular';
    font-size: 20px;
    line-height: 23.44px;
    color: #0000004D;
}
span:has(.searchbtn) {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0,-50%);
	height: 100%;
	align-content: center;
	width: 70px;
	text-align: center;
}
.searchbtn{
    border: 0;
    background-color: transparent;
}
#dropdownMenuButton{
    background-color: transparent;
    border: 0;
}
.user-group{
    gap: 0 1em;
}
.flexgrp-item{
    font-size: 20px;
    line-height: 23.44px;
    text-transform: uppercase;
    color: black;
}
.flex-group .flexgrp-item:last-child{
    color: var(--custom-maincolor);
    font-size: 16px;
    line-height: 18.75px;
}
.flex-group .flexgrp-item:last-child:hover{
    color: black;
}

.flex-group .header-profile-link{
    color: black !important;
    margin-top: 8px;
}

a:hover {
    transition: all .3s ease;
    color: var(--custom-maincolor);
    text-decoration: none;
}
.header-usercol{
    display: flex;
    gap: 0 1em;
    align-items: center;
}
.cart-user-group {
	width: 130px;
	display: flex;
	justify-content: end;
	align-items: center;
	align-content: center;
	gap: .5em;
}
.cart-user-group span{
    font-size: 18px;
    line-height: 23.44px;
    text-align: right;
}
.cart-user-group svg {
    height: 30px;
    width: 30px;
}
.language-menu {
	width: 53px;
	height: 30px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
    gap: 0.5em;
    position: relative;
}
.language-menu a{
    height: 100%;
    flex-shrink: 0;
    order: 1;
}
.language-menu a.current {
	order: 0;
}
.header-bottom{
    background-color: var(--custom-maincolor);
}
#navbarSupportedContent{
    margin: 0.5em auto;
}
.navbar-nav {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	gap: 0 20px;
}
.nav-link{
    text-align: center;
    font-family: 'Roboto Medium';
    font-size: 18px;
    line-height: 21.09px;
    color: white;
    padding-top: 0;
    padding-bottom: 0;
}
.nav-link:hover{
    color: black;
}
.map{
    width: 100%;
    height: 309px;
}
.categories-box {
	background-color: black;
	padding: 0.5em 1em;
	margin-bottom: 0.2em;
    height: 45px;
    align-content: center;
}
.categories-box:has(.category-link.collapsed){
    background-color: var(--custom-maincolor);
}
.categories-box:has(.category-link:not(.collapsed)) .cats-arrow{
    display: none;
}
.category-link{
    display: flex;
	justify-content: space-between;
	align-items: center;
    transition: all .3s ease;

}
.cats-arrow{
    transition: .3s all ease-in;
}
.cats-name{
    font-family: 'Roboto Medium';
    font-size: 18px;
    line-height: 21.09px;
    text-align: left;
    color: white;
}
a:hover .categories-box  .cats-name{
    color: black;
    transition: .3s all ease;
}
.categories-box.black-box{
    background-color: black;
}
.subcats-name{
    font-family: 'Roboto Medium';
    font-size: 14px;
    line-height: 16.41px;
    text-align: left;
    margin-bottom: .3em;
    color: black;
    padding-left: 1em;
}
.arrow {
	height: 10px;
	width: 10px;
	background: var(--custom-maincolor);
	display: inline-block;
	clip-path: polygon(100% 50%, 0 0, 0 100%);
	margin-right: 0.5em;
}
.bigcategs-img{
    width: 100%;
    height: 197px;
}
.bigcats-name div{
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
}
.bigcats-name div > img{
    vertical-align: baseline;
}
.bigcategs-box {
	position: relative;
	margin-bottom: 1em;
}
.bigcats-name{
	display: flex;
	position: absolute;
    top: 15px;
    left: 10px;
    gap: 0 .5em;
}
.bigcats-name a{
	font-family: 'Roboto Bold';
	font-size: 15px;
	line-height: 17.58px;
	text-align: left;
	color: white;
	text-transform: uppercase;
}
.bigcats-name a:hover{
    color: var(--custom-maincolor);
}
.halfbig-box {
	width: 50%;
	height: 100%;
	position: absolute;
	background: #00000080;
	left: 0;
	top: 0;
}
.bigcats-button {
	bottom: 13px;
	position: absolute;
	left: 10px;
	background: var(--custom-maincolor);
	padding: 1em 2em;
    box-shadow: 0px 4px 10px 0px #00000040;
    color: white;
    font-family: 'Roboto SemiBold';
    font-size: 14px;
    line-height: 16.41px;
    text-align: center;
    text-transform: uppercase;

}
.bigcats-button:hover{
    color: black;
}
.onesection-fluid {
	margin-top: 2.5em;
	margin-bottom: 3.5em;
}
.medium-title{
    font-family: 'Roboto Medium';
    font-size: 32px;
    line-height: 37.5px;
    text-align: left;
}
.topproduct-img {
	width: 100%;
	height: 223px;
}
.topproduct-name, .topproduct-name a {
	font-family: 'Roboto Medium';
	font-size: 15px;
	line-height: 17.58px;
	text-align: center;
	margin-top: 1em;
	height: 50px;
	overflow: hidden;
	text-transform: uppercase;
	color: black;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.product-btn {
	background: #F26523;
	box-shadow: 0px 4px 10px 0px #00000040;
	color: white;
	width: 100%;
	height: 100%;
	display: block;
	text-align: center;
	align-content: center;
    text-transform: uppercase;
    transition: .3s all ease;
}
.topproduct-box {
	position: relative;
	overflow: hidden;
	height: 310px;
    margin-bottom: 1em;
}
.topproduct-button {
	height: 46px;
	padding: 0.2em;
	width: 100%;
}
.topproduct-price {
	font-family: 'Roboto SemiBold';
	font-size: 16px;
	line-height: 18.75px;
	text-align: center;
	margin-bottom: .5em;
	margin-top: 1em;
}
.hovereffect{
    position: relative;
    transition: .3s all ease;
    bottom: 20px;
}
.topproduct-box:hover .hovereffect,.topproduct-box.clickedhover .hovereffect {
	bottom: 75px;
	transition: .3s all ease;
	background: #FFFFFFB2;
}
.topproduct-box:hover, .topproduct-box.clickedhover{
    border: 1px solid #00000038;
    transition: all .3s ease;
}
.product-btn:hover{
    color: black;
    transform: scale(.98);
}
.blogimg{
    width: 100%;
    height: 206px;
    overflow: hidden;
}
.blogname a,.blogname{
	font-family: 'Roboto SemiBold';
	font-size: 24px;
	line-height: 28.13px;
	text-align: left;
	height: 100px;
	align-content: center;
    color: black;
    overflow: hidden;
}
.blogname a:hover{
    color: var(--custom-maincolor);
}
.blogdate{
    font-size: 24px;
    line-height: 28.13px;
    text-align: justify;
}
.blogbtn {
	font-family: 'Roboto SemiBold';
	font-size: 20px;
	line-height: 23.44px;
	text-align: center;
	border: 2px solid #000000;
    color: black;
    text-transform: uppercase;
    height: auto;
    padding: .5em 0;
    width: 240px;
}
.blogbtn:hover{
    transform: scale(.98);
}
.blog-button {
	display: flex;
}
.blog-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logosvg img {
	object-fit: contain;
}
.static-content p{
    font-size: 16px;
    line-height: 20.41px;
    text-align: center;
}
.benefitsbox {
	background-color: black;
	display: flex;
	padding: 1em;
    min-height: 134px;
    align-items: center;
}
.benefitsleft {
	width: 55px;
	height: 50px;
	flex-shrink: 0;
	align-self: center;
	margin-right: 1em;
}
.benefitstitle{
    font-family: 'Roboto Bold';
    font-size: 20px;
    line-height: 23.44px;
    text-align: left;
    color: white;
    text-transform: uppercase;
}
.benefitstext{
    font-family: 'Roboto Medium';
    font-size: 14px;
    line-height: 16.41px;
    text-align: left;
    color: white;
}
.benefits-fluid .static-content p{
    margin-bottom: 0;
}
footer .logo-block img {
	width: 100%;
	height: 149px;
}
.menutitle{
    font-family: 'Roboto SemiBold';
    font-size: 24px;
    line-height: 28.13px;
    text-align: left;
    color: black;
    text-transform: uppercase;
    margin-bottom: .5em;
}
.allrightsreserved{
    font-family: 'Roboto ExtraLight';
    font-size: 24px;
    font-weight: 200;
    line-height: 28.13px;
    text-transform: uppercase;
}

footer {
    padding-top: 4em;
    padding-bottom: 2em;
    color: black;
}

footer a,.footer-address {
    color: black;
    font-size: 20px;
    line-height: 23.44px;
    text-align: left;
}

footer .links a {
    display: inline-block;
    padding-bottom: 1em;
}
.home-toggler{
    display: none;
}
.bigtitle{
    margin-bottom: .5em;
}
.svg-container {
    width: 25px;
    height: 25px;
    text-align: center;
    margin-right: 25px;
}
.svg-container img{
    vertical-align: baseline;
}
.onmobile,.onmobile-fluid{
    display: none;
}
.category-link:hover{
    transform: scale(1.01);
    transition: all .3s ease;
}
.rolunk-container .row:nth-child(1){
    margin: 3.5em auto 0 auto;
}
.rolunk-container .row:nth-child(2){
    margin: 7.5em auto 2em auto;
}
.aboutimg{
    height: 100%;
    width: 100%;
}
.redarrow{
    width: 25px;
    height: 25px;
    flex-shrink: 0;
}
.redarrow img{
    vertical-align: baseline;
}
.rolunk-btn {
	background: var(--custom-maincolor);
	color: white;
	text-transform: uppercase;
	padding: 0.8em 2em;
}
.rolunk-btn:hover {
    background-color: black;
    color: var(--custom-maincolor);
}
.regular-text,.regular-text ul li{
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0%;
}

.sidepage-header {
	margin: 3.5em auto 2em auto;
}
.blogdesc {
	font-size: 20px;
	line-height: 26px;
	letter-spacing: 0%;
	height: 130px;
}
.blog-box{
    margin-bottom: 2em;
}
.blogimg img{
    transition: .8s all ease-out;
}
.blogimg:hover img {
	transform: scale(1.3);
	transition: 1s all ease;
}

.pagination .page-item {
    margin: 0 .3em;
}

.pagination .page-link {
    color: #404040;
    border: 0;
    width: 40px;
    height: 44px;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F5F5F5;
    box-shadow: 0px 4px 4px 0px #00000040;
    font-family: 'Roboto Medium';
    font-size: 20px;
    line-height: 23.44px;
    letter-spacing: 0%;
    text-align: center;
}
.pagination .page-link:has(.sr-only){
    box-shadow: unset;
    background-color: transparent;
    width: 21px;
}
.rotated{
    transform: rotate(180deg);
}
.page-item.active .page-link {
    color: var(--custom-maincolor);
    background-color: #F5F5F5;
}
.pagination .page-link:hover{
    color: var(--custom-maincolor);
}
.page-link:hover span img{
    filter: brightness(0) saturate(100%) invert(17%) sepia(99%) saturate(3335%) hue-rotate(348deg) brightness(96%) contrast(93%);
    transition: .3s all ease;
}
.blogv-header{
    margin: 4em auto 1.5em auto;
}
.blogv-img{
    width: 100%;
    height: 366px;
}
.blog-vsdesc{
    margin: 1em 0;
}
.blog-vdesc{
    margin: 3em auto;
}
.login-header{
    margin: 3.5em auto 2em auto;
}

.help-block{
    display: block;
}

.registration-second-step-fluid{
    margin-top: 2em;
}

.forgot_mail input,
form input[type="password"]:not(.login-box input),
form input[type="text"],
form input[type='email'],
form textarea {
    border-radius: 0;
    padding: .5em;
    border: 1px solid #999999;
    background-color: #FCFCFC;
}
input{
    height: 40px;
    padding: 1em;
}
.reg-block input,
.login-block input,
.personal input {
    padding: 1.3em 1em !important;
    font-family: "Roboto Medium";
}
form label{
    font-family: 'Roboto Medium';
    font-size: 24px;
    line-height: 28.13px;
    letter-spacing: 0%;
}
#contact_form_content_page label{
    font-family: 'Roboto Regular';
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
}
.pwd-reminder {
    line-height: 30px;
    color: #F26523;
}
.login-block .form-group{
    margin-bottom: .5em;
}
.login-btn {
	background-color: #F26523;
	border: 0;
	color: white;
	padding: 0.7em 1.5em;
}
.login-block {
	padding: 2em 2em;
	background: #F5F5F5;
}
.lp-regtext{
    font-family: 'Roboto Medium';
    font-size: 20px;
    line-height: 23.44px;
    letter-spacing: 0%;
}
.login-section {
	padding: 1em;
	border-top: 4px solid #000000;
	background: #F9F9F9;
	margin-top: 1em;
}
.login-section p{
    margin-bottom: 0 !important;
}
.lp-regtext a{
    color: var(--custom-maincolor);
}
.lp-regtext a:hover{
    color: #F26523;
}
.login-btn:hover{
    background-color: var(--custom-maincolor);
    color: black;
    transition: .3s all ease;
}
.onesection-row .login-section:nth-child(1){
    margin-top:2em;
}
.onesection-row .login-section:nth-child(2){
    margin-bottom: 3em;
}
.sidepage-content{
    gap: 1em;
}
.medium-text{
    font-family: 'Roboto Medium';
    font-size: 16px;
    line-height: 25.6px;
    letter-spacing: -0.9px;
}
.addproduct-title{
    margin-bottom: 1em;
}
.addproduct-row{
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
    padding-top: 2em;
    padding-bottom: 1em;
}
.selectedImg{
    width: 100%;
    height: 130px;
}
.selectedContainer{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}
.selectedContent {
	flex-grow: 1;
	gap: 1em;
	display: flex;
	flex-direction: column;
}
.selectedActions{
    gap: 2em;
    align-items: center;
}
.medium-subtitle{
    font-family: 'Roboto Medium';
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
}
#addProduct-block{
    display: block;
    border-bottom: 1px solid #e5e5e5;
}
.offerContent {
	display: flex;
	gap: 3em;
    margin-bottom: 2em;
}
.offerImg {
	width: 289px;
	height: 212px;
    flex-shrink: 0;
}
.offerRight {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	gap: 1em;
}
.offerText {
	flex-grow: 1;
    overflow: hidden;
}
.offerBottom {
	display: flex;
	justify-content: space-between;
}
.addto-btn,.cancelbtn,.bigaddto-btn{
    font-size: 20px;
    color: #EC2128;
    text-decoration: underline;
}
#addProductBtn{
    font-family: 'Roboto Medium';
    font-size: 20px;
    line-height: 25.6px;
}
.skipto-btn{
    color: #F26523;
    font-size: 18px !important;
    text-decoration: underline;
}
#offers {
	max-height: 480px;
	overflow-y: auto;
	padding: 1em;
	opacity: 0;
    transition: all .5s ease;
}
.search-title{
    margin: 1em auto;
}
span:has(.offerbtn) {
	width: 50px;
	right: 0;
	left: unset;
}

.custom-fileupload {
	min-height: 219px;
}
.custom-fileupload input {
	height: 100%;
	width: 100%;
	color: transparent;
    cursor: pointer;

}
.orange-btn{
    background-color: #f26523;
}
.orange-btn:hover{
    background-color: var(--custom-maincolor);
}
.fileupload {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 2;
	left: 0;
	top: 0;
	pointer-events: none;
	border: 1px solid #999999;
	background: #EBEBEB;
	text-align: center;
	align-content: center;
}

.uploadicon {
	width: 67px;
	height: 67px;
	margin: 0 auto;
}

.uploadicon {
	width: 67px;
	height: 67px;
}

.fileupload p{
    color: #999999;

}
.subcats-name{
	margin: 1em 0;
}
.register-text p{
    color: #585858;
    line-height: normal;
    margin-bottom: 0;
}
.registration_types{
    display: flex;
    gap: 0 83px;
    margin-bottom: 2em;
    flex-wrap: wrap;
}
.reg-button{
    background-color: var(--custom-maincolor);
    color: white;
    text-transform: uppercase;
    width: 200px;
    padding: 0;
}
.button-block{
    display: flex;
    justify-content: flex-end;
}
.reg-button:hover{
    transition: .3s all ease;
    background-color: transparent;
    border: 1px solid var(--custom-maincolor) !important;
    color: black !important;
}
.custom-checkbox a{
    color: black;
}
.custom-checkbox a:hover{
    color: var(--custom-maincolor);
}
#registration .form-group:has(.custom-checkbox),.adatvedelem_btn .form-group{
    margin-bottom: 0 !important;
}
.adatvedelem_btn{
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
}
.map-fluid{
    margin-top: 80px;
}
.offer-btn{
    background-color: var(--custom-maincolor);
    color: white;
    text-transform: uppercase;
    width: 213px;
    height: 55px;
}
.offer-btn:hover{
    background-color: transparent;
    border: 1px solid var(--custom-maincolor) !important;
    color: black;
    transition: .3s all ease;
}
.registration_types p{
    font-family: 'Roboto Regular';
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    flex-wrap: wrap;
}
.already_selected{
    display: none;
}
.already_selected .selectedImg {
	width: 177px;
	height: 130px;
}
.already_selected .selectedImg img{
    object-fit: contain;
}
.firsttd{
    display: flex;
    align-items: center;
    gap: 2em;
    padding: .5em 0;
    flex-wrap: wrap;
}
.selectVariation {
	flex-basis: 100%;
	display: flex;
	gap: 1em;
}
.selectVariation .select-column select {
	width: 228px;
}
.variation-box {
	width: fit-content;
}
.selectedQuantity {
	width: 144px;
	height: 55px;
}
.selectedQuantity input {
	width: 100%;
	height: 100%;
	padding: 1em;
}
.quantity-td{
    display: flex;
    align-items: center;
    gap: 1em;
    justify-content: center;
}
td:has(.quantity-td){
    width: 250px;
}
.selectedPrice{
    font-size: 18px;
    line-height: 25.6px;
    width: 65px;
}

.price-block {
    display: flex;
    justify-content: center;
    align-items: center;
}
.new_price{
    font-family: 'Roboto Light';
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-decoration: line-through;
    color: var(--custom-maincolor);
}
.actual_price{
    font-family: 'Roboto SemiBold';
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.filter_form {
	width: 276px;
	height: 40px;
	display: flex;
    position: relative;
}

.filter_form select {
	width: 100%;
	height: 100%;
	font-family: 'Roboto Regular';
	font-size: 16px;
	line-height: 100%;
	letter-spacing: 0%;
	border: 1px solid #999999;
	background: #FCFCFC;
	padding: 0 1em;
	appearance: none;
}

.filter_arrow {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translate(0,-50%);
    pointer-events: none;
}

.filter_arrow img{
    transform: rotate(0);
    transition: all .3s ease;
}

.filter_form select:focus ~ .filter_arrow img,
.filter_form select:active ~ .filter_arrow img,
.filter_form select:focus-visible ~ .filter_arrow img,
.filter_form select:focus-within ~ .filter_arrow img{
    transform: rotate(-180deg);
    transition: all .3s ease;
}

.productl-row{
    margin-bottom: 3em;
}
#slider-form{
    margin-top: 2em;
}
#slider-range {
	height: 9px;
    margin: .5em auto;
}
.ui-slider-range.ui-corner-all.ui-widget-header {
	border-radius: 0 !important;
	background: black;
}
.ui-slider-range.ui-corner-all.ui-widget-header {
	border-radius: 0 !important;
	background: black;
	height: 9px;
}
.ui-slider-handle.ui-corner-all.ui-state-default {
	border-radius: 50%;
	background: var(--custom-maincolor);
	border: 1px solid var(--custom-maincolor);
	width: 15px;
	height: 15px;
    top: -0.20em;
    cursor: pointer !important;
}
.ui-slider-horizontal .ui-slider-handle:nth-child(2) {
	margin-left: -.1em !important;
}
.ui-slider-horizontal .ui-slider-handle:nth-child(3) {
	margin-left: -.75em !important;
}
#slider-range div:last-child {
	background: var(--custom-maincolor) !important;
	height: 5px;
	top: 0.16em;
}
#amount,.price{
	border: 0;
	background: transparent;
	font-size: 18px;
}
.filter-title {
	font-size: 18px;
	text-transform: uppercase;
	color: black;
	display: flex;
	align-items: center;
}
.filter-title svg{
    display: none;
}
.filter-btn {
	text-transform: uppercase;
	background: var(--custom-maincolor);
	color: white;
	border: 0;
    transition: all .3s ease;
}
.filter-btn:hover{
    transform: scale(.98);
    transition: all .3s ease;
}

.filters{
    margin-top: 2em;
}

.product_filter_form .filter_filters{
    display: flex;
    flex-direction: column;
    gap: .5em;
    margin-top: 1em;
}
.product_filter_form .filter_checkbox{
    font-family: 'Roboto Light';
    font-size: 18px;
    line-height: 100%;
}
.product_filter_form .filter_checkbox input {
	border: 0;
	background: transparent;
	opacity: 1; 
    width: 0;
    height: 0;
}
.product_filter_form .filter_checkbox:has(input:checked){
    font-family: 'Roboto Medium';
}
:not(.navbar-collapse).collapse:not(.show) {
	display: none !important;
}
.stock-item-row {
    width: fit-content;
}
.variant-item-row{
    width: fit-content;
}
.productl-info{
    font-size: 18px;
    text-transform: uppercase;
}

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

.product-view .price-block{
    justify-content: flex-start;
    gap: .5em;
}
.new_price-text{
    display: none;
}
.product-view .price-block .actual_price,
.product-view .price-block .new_price{
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0%;
}

.select-column{
    display: flex;
    align-items: center;
    gap: 1em;
    margin-bottom: 1em;
}
.select-column select{
    width: 328px;
    height: 55px;
    border: 1px solid #999999;
    background: #FCFCFC;
    appearance: none;
    border-radius: 0;
}
.productv-label{
    font-family: 'Roboto Medium';
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    width: 140px;
}
.plus_minus{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin-left: .5em;
}
.mennyiseg{
    width: 51px;
    height: 25px;
    border: 1px solid #999999;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.quantity-select .plus img{
    transform: rotate(180deg);
}
.product-view .button-block{
    justify-content: flex-start;
    gap: 1em;
    margin-top: 2em;
}
.productv-title{
    margin: .5em 0;
}
.productv-shortdesc{
    margin-bottom: 1em;
}
.item_view_to_cart{
    background: #F26523;
    border: 0;
    color: white;
    text-transform: uppercase;
    height: 55px;
    width: 213px;
}
.item_view_to_offer{
    border: 2px solid #585858;
    color: #202020;
    background-color: white;
    text-transform: uppercase;
    width: 213px;
    height: 55px;
}
.item_view_to_cart,.item_view_to_offer{
    font-family: 'Roboto SemiBold';
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
}
.item_view_to_offer:hover,.item_view_to_cart:hover{
    background-color: var(--custom-maincolor);
    color: white;
    transition: .3s all ease;
    border: 2px solid var(--custom-maincolor);
}
.custom-leftpadding{
    padding-left: 3.5em;
}
.productview-content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.desc-col{
    border-top: 1px solid #D6D6D6;
    margin-top: 4em;
}

.desc-div{
    margin-top: 1em;
    margin-bottom: 2em;
}

.review-title {
	display: flex;
	align-items: center;
	gap: 1em;
}

.write-review{
    margin-top: 2em;
    margin-bottom: 1em;
}
.your_rating_stars{
    display: flex;
    gap: .5em;
}
.write-review label,.your_rating{
    font-family: 'Roboto Regular';
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
}
.review-btn{
    color: white;
    background: #F26523;
    border: 0;
}
.review-btn:hover{
    background: var(--custom-maincolor);
    transform: scale(.98);
}
.write-review .button-block{
    margin-top: 0;
}
.write-review .consent-text{
    font-size: 16px;
    line-height: 150%;
}
.write-review .custom-checkbox span {
	width: 22px;
	height: 22px;
}
.your_rating_stars .star{
    cursor: pointer;
}
.star.filled img{
    background-image: url(../images/rating_star_filled.svg);
    background-size: contain;
    background-position: center;
}
.review-name{
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
}
.review-comment{
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
}
.review_rate{
    display: flex;
    gap: .5em;
    margin-top: 1em;
}
.current-reviewbox {
	display: flex;
	gap: 2em;
	flex-wrap: wrap;
	padding-bottom: 2em;
	border-bottom: 1px solid #D6D6D6;
	margin-bottom: 2em;
}
.reviewbox-body {
	flex-grow: 1;
}
.reviewbox-bottom {
	flex-basis: 100%;
}
.cart-table-head{
    font-family: 'Roboto Medium';
    font-size: 16px;
    line-height: 25.6px;
    letter-spacing: -0.9px;
    border-bottom: 1px solid #E5E5E5;
    padding-bottom: 1em;
    margin-bottom: 1em;
}


.cart-table-row img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    height: 130px;
}

.cart-table-row .product-name{
    font-size: 24px;
    line-height: 100%;
}
.cart_delete_prod_in_cart,
.cart_price{
    line-height: 100%;
    font-size: 18px;
}
.quantity-select .item_cart_piece_input_cart_new {
	width: 73px;
    margin-left: .5em;
    padding: 0;
}

.order-btn{
    width: 386px;
    align-content: center;
    color: white;
    background-color: #F26523;
    padding: 0;
}
.order-btn:hover{
    color: white;
    background-color: var(--custom-maincolor);
}
.orderloginblock{
    display: none;
    margin-top: 1em;
}

.registered_user,.register_worder{
	border: 0;
	padding: 0;
	background-color: transparent;
	box-shadow: none;
	vertical-align: baseline;
    text-transform: none;
    color: var(--custom-maincolor) !important;
    cursor: pointer;
}

.order-regblock{
    padding: 2em;
    background: #F5F5F5;
}
.order-regblocktitle{
    font-size: 20px;
}
.regblock-content p:last-child{
    margin-bottom: 0;
}
.order-types{
    display: flex;
    gap: 83px;
}
.shipping-datas{display: none;}
div:has(#shipping_datas_inp:checked) .shipping-datas{
    display: block;
}
.method-box {
	padding: 2em;
	background: #F5F5F5;
	display: flex;
	flex-direction: column;
	align-items: start;
}
.method-title{
    font-family: 'Roboto SemiBold';
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
}
.method-firstblock {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
}
.method-content {
	display: flex;
	flex-wrap: wrap;
}
.method-desc {
	flex-basis: 100%;
    margin-top: .5em;
}
.method-box .custom-checkbox span{
    width: 20px;
    height: 20px;
    border-radius: 100%;
    border: 0.8px solid #000000;
}
.method-box .custom-checkbox input:checked ~ span {
	background-color: #EC2128;
    border: 0.8px solid #000000;
}
.method-box .form-group:last-child{
    margin-bottom: 0;
}
.orderfluid .registration_box{
    display: none;
    margin-bottom: 2em;
}
.go-to-cashier{
    width: 287px;
    background: #F26523;
    align-content: center;
    padding: 0;
}
.go-to-cashier:hover{
    color: white;
    background-color: var(--custom-maincolor);
}
.custom-rpadding{
    padding-right: 5em;
}
.cart-content{
    display: flex;
    align-items: center;
    gap: 2em;
}
.cart-pimage{
    width: 100%;
    height: 130px;
}
.personal .cart-pimage{
    padding-left: 15px;
}
.cart-table-row:has(.cart-content):first-child{
    border-top: 1px solid #e5e5e5;
    padding-top: 2.5em;
}
.cart-body {
	display: flex;
	flex-direction: column;
	gap: 1em;
}
.cart-price{
    font-family: 'Roboto SemiBold';
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
}
.product-sname{
    font-size: 20px;
}
.personal .product-sname {
	font-size: 18px;
}
.order-bigtitle{
    font-family: 'Roboto SemiBold';
    font-size: 28px;
    line-height: 25.6px;
    letter-spacing: -0.9px;
}
.order-submit-btn{
    background-color: var(--custom-maincolor);
    border: none;
    color: white;
    width: 247px;
    padding: 0;
}
.services_box {
	display: flex;
	align-items: center;
    gap: 2em;
    margin-bottom: 2em;
}
.services_content {
	display: flex;
	flex-direction: column;
    gap: 1em;
}
.services_img {
	width: 397px;
	height: 172px;
    flex-shrink: 0;
}
.regular-title{
    font-family: 'Roboto Regular';
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
}
.whyus-content h2{
    text-transform: uppercase;
}
.whyus-content p{
    font-family: 'Roboto Regular';
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: left;
    margin-top: 1em;
}

.whyus-img {
	width: 70px;
	height: 70px;
    flex-shrink: 0;
}
.whyus-title{
    text-transform: uppercase;
    margin-bottom: .2em;
    color: white;
}
.whyus-text{
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: white;
}
.whyus-box {
	display: flex;
	background: black;
	padding: 2em 1em;
    align-items: center;
    gap: 1em;
    min-height: 183px;
}
.whyus-fluid{
    margin-bottom: 3em;
}
.whyus-content{
    margin-bottom: 2em;
    margin-top: 1em;
}
.whyusc-title{
    font-size: 36px;
}
.services_title{
    color: black;
}
.services_title:hover{
    color: var(--custom-maincolor);
    transition: .3s all ease;
}
.service_viewimg{
    width: 100%;
    height: 100%;
}
.service-view-text p{
    font-family: 'Roboto Regular';
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0%;    
}
.service-view-text strong{
    font-family: 'Roboto Medium';
}
.contact-btn{
    background-color: var(--custom-maincolor);
    color: white;
    align-content: center;
}
.contact-btn:hover{
    color: black;
}
.service-view-fluid{
    margin-bottom: 6em;
}
.contacts-contact{
    margin-top: 1em;
}
.contacts-contact .contact-item{
    margin-top: 1em;
}
.contacts-contact .contact-item .svg-container{
    margin-right: 1em;
}
.opening_hour{
    color: var(--custom-maincolor);
    margin-top: .5em;
}
.contact-mapcol .container-fluid,.contact-mapcol .map{
    height: 100%;
}
.contact-fluid{
    margin-top: 6em;
}
#addMoreProduct-block{
    display: none;
    padding: 2em 15px;
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
}
#withoutProduct-row{
    display: none;
}
#sh_shipping_type {
	height: 55px;
	background: white;
	border: 1px solid #999999;
}


.offer-row .checkboxes label{
    font-family: 'Roboto Regular';
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
}

.contact-item-bigtitle{
    font-family: 'Roboto Regular';
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
}

.desc-header-div{
    cursor: pointer;
}

.searchbtn.offerbtn:active,.searchbtn.offerbtn:focus,.searchbtn.offerbtn:focus-visible{
    outline: 0 !important;
    border: none !important;
}

.namebox {
	display: flex;
	flex-direction: column;
	gap: .5em;
}

.message-bubble {
	padding: .5em;
	background-color: #c6c6c6;
	border-radius: 10px;
	width: 350px;
    margin-top: .5em;
}
.message-bubble.from_admin{
    margin: .5em 0 0 auto;
}
.message-bubble-footer{
    margin-top: .5em;
}
.offer_link:hover {
	color: black;
	transition: .3s all ease;
}
.offer_link {
	color: red;
}
.comment-box {
	max-height: 600px;
	overflow-x: hidden;
	overflow-y: auto;
    margin-bottom: 1em;
}
.offer_file input{
    height: auto;
}
/* Personal Offers Improvements */
.offer-status .badge {
    font-size: 12px;
    padding: 0.4em 0.8em;
    border-radius: 15px;
    font-weight: 500;
}

.offer-status .badge-success {
    background-color: #28a745;
    color: white;
}

.offer-status .badge-primary {
    background-color: #007bff;
    color: white;
}

.offer-totals {
    font-size: 14px;
    line-height: 1.2;
}

.offer-totals .total-net {
    color: #666;
    font-weight: 500;
}

.offer-totals .total-gross {
    color: #333;
    font-weight: 600;
}

.product-pricing {
    margin-top: 1em;
    padding: 1em;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.product-pricing .unit-prices {
    display: flex;
    flex-direction: column;
    gap: 0.3em;
    margin-bottom: 0.8em;
    font-size: 14px;
}

.product-pricing .unit-prices .vat-rate {
    color: #666;
    font-style: italic;
}

.product-pricing .total-prices {
    display: flex;
    flex-direction: column;
    gap: 0.3em;
    border-top: 1px solid #dee2e6;
    padding-top: 0.8em;
}

.product-pricing .total-net {
    color: #28a745;
    font-size: 16px;
}

.product-pricing .total-gross {
    color: #dc3545;
    font-size: 16px;
    font-weight: 600;
}

/* Message Bubbles Improvements */
.comment-box {
    max-height: 500px;
    overflow-y: auto;
    padding: 1em;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 1.5em;
}

.no-messages {
    text-align: center;
    padding: 2em;
    color: #6c757d;
}

.message-bubble {
    max-width: 70%;
    margin-bottom: 1em;
    padding: 1em;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
}

.message-bubble.from-user {
    background-color: #007bff;
    color: white;
    margin-left: auto;
    margin-right: 0;
}

.message-bubble.from-admin {
    background-color: #e9ecef;
    color: #333;
    margin-left: 0;
    margin-right: auto;
}

.message-content {
    margin-bottom: 0.5em;
    line-height: 1.4;
}

.message-attachment {
    margin-top: 0.8em;
    padding-top: 0.8em;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.message-bubble.from-admin .message-attachment {
    border-top-color: rgba(0,0,0,0.1);
}

.attachment-link {
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
}

.attachment-link:hover {
    text-decoration: underline;
}

.message-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    opacity: 0.8;
    margin-top: 0.5em;
}

.message-author {
    font-weight: 600;
}

.message-date {
    font-style: italic;
}

/* Form Improvements */
.offer_file {
    margin-top: 1em;
}

.file-label {
    display: inline-block;
    padding: 0.5em 1em;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    color: #495057;
    transition: all 0.3s ease;
}

.file-label:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

.offer_file input[type="file"] {
    display: none;
}

/* Alert Improvements */
.alert {
    border-radius: 8px;
    padding: 1em 1.5em;
    margin-bottom: 1em;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
}

.alert-info .fas {
    margin-right: 0.5em;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .offer-totals {
        text-align: left;
        margin-top: 1em;
    }
    
    .message-bubble {
        max-width: 85%;
    }
    
    .product-pricing .unit-prices,
    .product-pricing .total-prices {
        font-size: 13px;
    }
}

/* File Upload Display Styles */
.file-display {
    margin-top: 0.5em;
    padding: 0.5em;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    display: none;
}

.selected-file {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5em;
}

.selected-file .fas {
    color: #28a745;
    margin-right: 0.3em;
}

.file-name {
    flex-grow: 1;
    font-size: 14px;
    color: #495057;
    word-break: break-all;
}

.remove-file {
    padding: 0.2em 0.4em;
    font-size: 12px;
    line-height: 1;
    border: none;
    background: none;
    color: #dc3545;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.2s ease;
}

.remove-file:hover {
    background-color: #f5c6cb;
    color: #721c24;
}

.remove-file .fas {
    font-size: 10px;
}

/* Enhanced file label styles */
.offer_file .file-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.6em 1.2em;
    background-color: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    color: #495057;
    transition: all 0.3s ease;
    text-decoration: none;
}

.offer_file .file-label:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
    border-style: solid;
    color: #495057;
    text-decoration: none;
}

.offer_file .file-label .fas {
    color: #6c757d;
    font-size: 16px;
}

/* File input improvements */
.offer_file input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/*NEW CSS END*/