﻿/*[1. IMPORT SOURCE]*/
@import url(fontawesome.css);
@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700,300);

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: #f8f9fa;
    padding: 10px 20px;
}


.menu-overlay {
    display: none; /* Alapértelmezésben rejtve */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5); /* 50%-os átlátszóságú szürke */
    z-index: 999; /* A menü alá kerül */
}
.menu {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    width: 60%;
    height: 400px; /* Fixed height */
    background-color: white;
    border: 1px solid #ccc;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow-y: auto; /* Enable scrolling */
}

    .menu.show {
        display: block;
    }

    .menu ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

        .menu ul li {
            padding: 10px 0;
            border-bottom: 1px solid #ddd;
        }

            .menu ul li a {
                text-decoration: none;
                /*color: #000;*/
            }

.menu-button {
    cursor: pointer;
    font-size: 1.5em;
    border: none;
    background: none;
    padding: 0;
}

.scroll-to-top {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: darkred;
    color: white;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    z-index: 1000; /* Ensure it is on top of other elements */
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s, visibility 0.3s;
}

    .scroll-to-top i {
        border: solid white;
        border-width: 0 3px 3px 0;
        display: inline-block;
        padding: 7px;
        transform: rotate(-135deg);
        -webkit-transform: rotate(-135deg);
    }

    .scroll-to-top.show {
        display: block; /* Show button */
    }


.footerLink {
    color: white;
    text-decoration:none;
}

    .footerLink:hover, .footerLink:focus {
        color: white;
        text-decoration: none;
    }

.wrapper {
    margin-top: -1em;
    margin-right: 1em;
    width: 6em;
}

.container {
    max-width: none;
    background-color: #dddddd;
    background-image: linear-gradient(#f5f5f5, #c5b6b6); 
}
.containerMin {
    min-height: 920px;
    max-width: none;
    background-color: #dddddd;
    background-image: linear-gradient(#f5f5f5, #c5b6b6);
}

.loginPageCard{
}

#themeSlider {
    height: 200px;
    width: 60%
}

#companyLogo {
    padding-top: 10px;
}

#companyLogoSmall {
    padding-top: 20px;
    width: 90%;
    height: auto;
    margin: auto;
    display: block;
}

#topFixed {
    background-color: darkred;
    height: auto;
    width:100%;
    position: fixed;
    z-index: 100;
}

#infoBar {
    padding-top: 60px;
}

#footerFixed {
    background-color: darkred;
}

#mainContent {
    padding-bottom: 100px;
}

footer {
    padding: 10px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: darkred;
    color: white;
    text-align: center;
    z-index:9998;
}

body {
    margin: 0;
    padding-bottom: 20px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    line-height: 16px;
    color: #333;
    background-color: darkgray;
    overflow-x: hidden;
    scrollbar-face-color: #121212;
}

.pdfobject-container {
    height: 100em;
    border: 1rem solid rgba(0,0,0,.1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto Condensed', sans-serif;
}


/*[3. LOGO]*/
.logo {
    margin-bottom: 40px;
}

    .logo h1,
    .logo h2 {
        margin: 5px 0 5px;
        text-align: left;
        font-size: 32px;
        line-height: 34px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: -1px;
    }

        .logo h1 span,
        .logo h2 span {
            font-weight: 300;
        }

        .logo h1 a,
        .logo h2 a {
            color: #333;
            text-decoration: none;
            -webkit-transition: color 0.3s ease-in-out, text-decoration 0.5s ease-in-out;
            -moz-transition: color 0.3s ease-in-out, text-decoration 0.5s ease-in-out;
            -o-transition: color 0.3s ease-in-out, text-decoration 0.5s ease-in-out;
            transition: color 0.3s ease-in-out, text-decoration 0.5s ease-in-out;
        }

            .logo h1 a:hover,
            .logo h2 a:hover {
                color: #888;
                text-decoration: underline;
            }


.account {
    text-align: right;
}

    .account a {
        color: #333;
        text-decoration: none;
    }

        .account a:hover {
            color: #333;
            text-decoration: underline;
        }

    .account h4 {
        font-weight: 600;
        text-transform: uppercase;
        line-height: 20px;
        margin-bottom: 10px;
    }

    .account ul {
        list-style-type: none;
        margin-left: -20px;
        float: right;
    }

        .account ul > li {
            float: left;
            margin: 0 0 0 10px;
        }

            .account ul > li:nth-child(1),
            .account ul > #your-account {
                border-right: 1px solid #333;
                padding-right: 12px;
            }

/*[4. NAV MENU]*/


.nav-menus {
    /*border-top: 2px solid #333;*/
    padding-top: 10px;
    padding-bottom: 20px;
}

/*    .nav-menus .nav-pills > li > a {
        background: transparent;
        color: #333;
    }*/

       /* .nav-menus .nav-pills > li > a:hover {
            background: #eaeaea;
            color: #333;
        }*/

/*    .nav-menus .nav-pills > .active > a,
    .nav-menus .nav-pills > .active > a:hover,
    .nav-menus .nav-pills > .active > a:focus {
        background: #333;
        color: #fff;
    }*/

/*CAROUSEL*/
.main-text {
    position: absolute;
    top: 100px;
    width: 96.66666666666666%;
    color: #FFF;
}

.carousel-btns {
    margin-top: 2em;
}

    .carousel-btns .btn {
        width: 150px;
    }

.carousel-inner .imgOverlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 28, 38, 0.5);
}

.carousel-inner img {
    width: 100%;
}

/*CONTROL*/
.carousel-control {
    width: auto;
}

    .carousel-control .icon-prev,
    .carousel-control .icon-next,
    .carousel-control .fa-chevron-left,
    .carousel-control .fa-chevron-right {
        position: absolute;
        top: 47%;
        right: 0;
        z-index: 5;
        display: inline-block;
        background-color: #000;
        width: 38px;
        height: 38px;
        line-height: 40px;
        font-size: 14px;
    }

    .carousel-control .icon-prev,
    .carousel-control .fa-chevron-left {
        left: 0;
    }

.carousel-indicators li {
    width: 12px;
    height: 12px;
    margin: 0 1px;
    border: 2px solid #fff;
    opacity: .8;
}

.carousel-indicators .active {
    background-color: #28ace2;
    border-color: #28ace2;
}

.carousel-control .icon-prev, .carousel-control .fa-chevron-left,
.carousel-control .icon-right, .carousel-control .fa-chevron-right {
    border-radius: 50px;
}

.copyright {
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
}

    .copyright .copyright-left {
        text-align: left;
    }

.carousel-control .icon-prev, .carousel-control .fa-chevron-left {
    left: 30px;
}

.carousel-control .icon-right, .carousel-control .fa-chevron-right {
    right: 30px;
}


.olContent {
    width: 100%;
}

    .olContent h2 {
        color: #fff;
        font-size: 19px;
        padding: 9px 0 0;
    }

.olSearch {
}

    .olSearch .inputComn {
        margin-bottom: 0;
    }

.inputComn {
    color: black;
    font-size: 14px;
    height: 44px;
    cursor: pointer;
    padding: 0 15px;
}

.searchIcon {
    position: absolute;
    top: 0;
    right: 0;
}

.searchBtn {
    background-color: darkred;
    border: 0 none;
    color: #fff;
    font-size: 16px;
    padding: 11px 16px;
    text-transform: uppercase;
    cursor: pointer;
    height: 44px;
}

    .searchBtn:hover {
        background-color: red;
    }

.olSearch {
    position: relative;
}

.content {
}

    .content .page-header {
        padding-bottom: 5px;
        margin: 20px 0 30px;
        border-bottom: 1px solid #eee;
    }

        .content .page-header h2 {
            font-weight: 700;
        }


.product-item {
    position: relative;
}

    .product-item .caption h5 {
        font-weight: 600;
        font-size: 16px;
        line-height: 20px;
        border-top: 2px solid #333;
        margin-top: 10px;
        padding-top: 10px;
    }

    .product-item .caption .product-item-price {
        font-size: 14px;
        line-height: 16px;
        font-weight: 400;
    }


    .product-item .product-item-badge {
        position: absolute;
        top: 4px;
        left: 4px;
        padding: 5px 12px 6px;
        color: #fff;
        font-size: 12px;
        line-height: 14px;
        font-weight: 600;
        background: #333;
        -webkit-border-radius: 4px 0 4px 0;
        -moz-border-radius: 4px 0 4px 0;
        border-radius: 4px 0 4px 0;
    }

.copyright .copyright-right {
    text-align: right;
}

.copyright .list-social {
    float: right;
}

    .copyright .list-social > li {
        display: inline;
        float: left;
        margin: 2px 5px;
    }

        .copyright .list-social > li > a {
            display: block;
            width: 30px;
            height: 30px;
            position: relative;
            background: #ffffff;
            border: 1px solid #ccc;
            -webkit-border-radius: 100%;
            -moz-border-radius: 100%;
            border-radius: 100%;
            font-size: 20px;
            color: #333333;
        }

            .copyright .list-social > li > a:hover {
                background: #333333;
                border: 1px solid #333333;
                font-size: 20px;
                color: #ffffff;
            }

            .copyright .list-social > li > a .fa {
                position: absolute;
                left: 50%;
                top: 50%;
                margin-left: -8px;
                margin-top: -9px;
            }

#carouselContainer {
    background-color: lightgray;
}

#carouselHeader2 {
    /*width: 20%;*/
    background-color: darkred;
    margin: initial;
    padding: 10px;
    color: aliceblue;
}

.categoriesHeader2 {
    /*width: 20%;*/
    background-color: darkred;
    margin: initial;
    padding: 10px;
    color: aliceblue;
}

.MultiCarousel {
    float: left;
    overflow: hidden;
    padding: 15px;
    width: 100%;
    position: relative;
}

    .MultiCarousel .MultiCarousel-inner {
        transition: 1s ease all;
        float: left;
    }

        .MultiCarousel .MultiCarousel-inner .item {
            float: left;
        }

            .MultiCarousel .MultiCarousel-inner .item > div {
                text-align: center;
                padding: 10px;
                margin: 10px;
                background: #f1f1f1;
                color: #666;
                height: 19em;
            }
p.lead {
    height: 20%;
    font-size: 16px !important;
}

imgCont{
    height:40%;
}

.imgContImg{
    height: 10rem;
}

p.pCarouselBrutto {
    color: red;
}

p.pCarouselDiscounted {
    height:10%;
    font-size: 22px;
    margin: 10px 0 0 10px;
    color: green;
}

.pCarouselDetails {
    height: 10%;
    position: relative;
    bottom: -1em;
    left: 0;
    right: 0;
}

    .MultiCarousel .leftLst, .MultiCarousel .rightLst {
        position: absolute;
        border-radius: 50%;
        top: calc(50% - 20px);
    }

    .MultiCarousel .leftLst {
        left: 0;
    }

    .MultiCarousel .rightLst {
        right: 0;
    }

        .MultiCarousel .leftLst.over, .MultiCarousel .rightLst.over {
            pointer-events: none;
            background: #ccc;
        }

#pageCarouselLeft {
    background-color: darkred;
    color: aliceblue;
    border-color: darkred;
}

    #pageCarouselLeft:hover {
        background-color: red;
        color: aliceblue;
        border-color: darkred;
    }

#pageCarouselRight {
    background-color: darkred;
    color: aliceblue;
    border-color: darkred;
}

    #pageCarouselRight:hover {
        background-color: red;
        color: aliceblue;
        border-color: darkred;
    }

.over {
    background-color: lightgray;
}


.OnSaleCarousel {
    float: right;
    overflow: hidden;
    padding: 15px;
    width: 20%;
    position: relative;
}

    .OnSaleCarousel .OnSaleCarousel-inner {
        transition: 1s ease all;
        float: left;
    }

        .OnSaleCarousel .OnSaleCarousel-inner .item {
            float: left;
        }

            .OnSaleCarousel .OnSaleCarousel-inner .item > div {
                text-align: center;
                padding: 10px;
                margin: 10px;
                background: #f1f1f1;
                color: #666;
            }

#p-table {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
}
    /* Product items */
    #p-table td {
        width: 20%;
    }

div.p-cell {
    position:relative;
    margin: 5px;
    padding: 10px;
    border: 1px solid #ddd;
    background: white;
    height: 30em;
    width: 18.5em;
}

div.cardCartButton {
    margin: 1em;
    position: absolute;
    bottom: 0;
    right: 0;
}

div.cardDetailsButton {
    margin: 1em;
    position: absolute;
    bottom: 0;
    left: 0;
}
div.cardBruttoPrice {
    color: #8b0000;
    text-align: center;
    font-size: 20px;
    margin-top: 0.5em;
    font: bold;
}

div.cardProductName {
    text-align:center;
}

div.prodIMGrow {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 60%;
}

img.p-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    overflow: hidden;
}

div.p-name {
    font-weight: bold;
    font-size: 1.1em;
}

div.p-price {
    color: #f44242;
}

div.p-desc {
    color: #888;
    font-size: 0.9em;
}

button.p-add {
    background: #f46b41;
    color: #fff;
    border: none;
    width: 100%;
    padding: 10px;
    margin: 10px 5px 5px 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
}

/* [DOES NOT MATTER] */
html, body {
    padding: 0;
    margin: 0;
    font-family: arial, sans-serif;
}

ul:not(.nav-pills) {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #f1f1f1;
}

li a {
    display: block;
    color: #000;
    padding: 8px 16px;
    text-decoration: none;
}

    /* Change the link color on hover */
    li a:hover {
        background-color: #555;
        color: white;
        text-decoration: none;
    }

#subMenus {
    padding-left: 40px;
}
/*Category list*/
.sideBarHeader2 {
    padding: 10px;
    margin-bottom: 0px;
    background-color: darkred;
    color: aliceblue;
}

#searchTextBox {
    cursor: text;
}

#CategoryNameTag {
    background-color: darkred;
    width: 100%;
    margin-left: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    color: aliceblue;
}

.newsletterlabel {
    padding: 10px 0px 10px 0px;
}

#newsletterBox {
    background-color: floralwhite;
}

.newsletterControl {
    padding-top: 10px;
    padding-bottom: 10px;
}

.newsletterSubmit {
    text-align: center;
}

.ui-autocomplete {
    background: #4a4a4a;
    border-radius: 0px;
}

    .ui-autocomplete.source:hover {
        background: #000000;
    }

.ui-menu .ui-menu-item a {
    background: red;
    height: 10px;
    font-size: 8px;
}

.ui-autocomplete-category {
    font-weight: bold;
    padding: .2em .4em;
    margin: .8em 0 .2em;
    line-height: 1.5;
    background-color: darkred;
    color: aliceblue;
}

#searchRow {
    background: darkred;
    margin: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

a {
    color: darkred;
}

.center {
    width: 150px;
    align-content: center;
}

#prodImg {
    width: 70%;
}

.productDetailBox {
    background-color: azure;
}

.ProductEditImage {
    width: 20em;
}

.cseppValidation {
    margin: 3px;
    background: wheat;
    color: red;
}

.h3center {
    text-align: center;
}

.h4center {
    text-align: center;
}

.required::after {
    content: " *";
    font-weight: bold;
    color: red;
}

.detailsRow {
    padding-top: 20px;
}

.cseppButton {
    background-color: #8a1e1e;
    color: #8a1e1e;
    border-color: #8a1e1e;
}
.btnCsepp {
    color: #FFFFFF;
    background-color: #911313;
    border-color: #000000;
    
}
.btnCsepp.btnHB {
    color: #FFFFFF;
    background-color: #911313;
    border-color: #000000;
    padding: 10px 13px;
}

    .btnCsepp:hover,
    .btnCsepp:focus,
    .btnCsepp:active,
    .btnCsepp.active,
    .open .dropdown-toggle.btnCsepp {
        color: #FFFFFF;
        background-color: #AD6A6A;
        border-color: #000000;
    }

    .btnCsepp:active,
    .btnCsepp.active,
    .open .dropdown-toggle.btnCsepp {
        background-image: none;
    }

    .btnCsepp.disabled,
    .btnCsepp[disabled],
    fieldset[disabled] .btnCsepp,
    .btnCsepp.disabled:hover,
    .btnCsepp[disabled]:hover,
    fieldset[disabled] .btnCsepp:hover,
    .btnCsepp.disabled:focus,
    .btnCsepp[disabled]:focus,
    fieldset[disabled] .btnCsepp:focus,
    .btnCsepp.disabled:active,
    .btnCsepp[disabled]:active,
    fieldset[disabled] .btnCsepp:active,
    .btnCsepp.disabled.active,
    .btnCsepp[disabled].active,
    fieldset[disabled] .btnCsepp.active {
        background-color: #911313;
        border-color: #000000;
    }

    .btnCsepp .badge {
        color: #911313;
        background-color: #FFFFFF;
    }







.btnCseppProf {
    color: #FFFFFF;
    background-color: #7A7A7A;
    border-color: #000000;
    margin-bottom: 20px;
    width: 100%;
}

    .btnCseppProf:hover,
    .btnCseppProf:focus,
    .btnCseppProf:active,
    .btnCseppProf.active,
    .open .dropdown-toggle.btnCseppProf {
        color: #FFFFFF;
        background-color: #050202;
        border-color: #000000;
    }

    .btnCseppProf:active,
    .btnCseppProf.active,
    .open .dropdown-toggle.btnCseppProf {
        background-image: none;
    }

    .btnCseppProf.disabled,
    .btnCseppProf[disabled],
    fieldset[disabled] .btnCseppProf,
    .btnCseppProf.disabled:hover,
    .btnCseppProf[disabled]:hover,
    fieldset[disabled] .btnCseppProf:hover,
    .btnCseppProf.disabled:focus,
    .btnCseppProf[disabled]:focus,
    fieldset[disabled] .btnCseppProf:focus,
    .btnCseppProf.disabled:active,
    .btnCseppProf[disabled]:active,
    fieldset[disabled] .btnCseppProf:active,
    .btnCseppProf.disabled.active,
    .btnCseppProf[disabled].active,
    fieldset[disabled] .btnCseppProf.active {
        background-color: #7A7A7A;
        border-color: #000000;
    }

    .btnCseppProf .badge {
        color: #7A7A7A;
        background-color: #FFFFFF;
    }




.pCarouselDetailsButton {
    text-decoration: none;
    text-align: center;
    padding: 11px 32px;
    border: solid 1px #004F72;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    font: 13px Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: #E5FFFF;
    background: #8b0000;
    -webkit-box-shadow: 0px 0px 2px #bababa, inset 0px 0px 1px #ffffff;
    -moz-box-shadow: 0px 0px 2px #bababa, inset 0px 0px 1px #ffffff;
    box-shadow: 0px 0px 2px #bababa, inset 0px 0px 1px #ffffff;
}

    .pCarouselDetailsButton:hover {
        text-decoration: none;
        padding: 11px 32px;
        border: solid 1px #004F72;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        font: 13px Arial, Helvetica, sans-serif;
        font-weight: bold;
        color: #E5FFFF;
        background: #ad6a6a;
        -webkit-box-shadow: 0px 0px 2px #bababa, inset 0px 0px 1px #ffffff;
        -moz-box-shadow: 0px 0px 2px #bababa, inset 0px 0px 1px #ffffff;
        box-shadow: 0px 0px 2px #bababa, inset 0px 0px 1px #ffffff;
    }

    .pCarouselDetailsButton:active {
        text-decoration:none;
        padding: 11px 32px;
        border: solid 1px #004F72;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        font: 18px Arial, Helvetica, sans-serif;
        font-weight: bold;
        color: #E5FFFF;
        background-color: #3BA4C7;
        background-image: -moz-linear-gradient(top, #3BA4C7 0%, #1982A5 100%);
        background-image: -webkit-linear-gradient(top, #3BA4C7 0%, #1982A5 100%);
        background-image: -o-linear-gradient(top, #3BA4C7 0%, #1982A5 100%);
        background-image: -ms-linear-gradient(top, #3BA4C7 0%,#1982A5 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1982A5', endColorstr='#1982A5',GradientType=0 );
        background-image: linear-gradient(top, #3BA4C7 0%,#1982A5 100%);
        -webkit-box-shadow: 0px 0px 2px #bababa, inset 0px 0px 1px #ffffff;
        -moz-box-shadow: 0px 0px 2px #bababa, inset 0px 0px 1px #ffffff;
        box-shadow: 0px 0px 2px #bababa, inset 0px 0px 1px #ffffff;
    }
/*Cookie Consent Begin*/
#cookieConsent {
    background-color: rgba(20,20,20,0.8);
    min-height: 50px;
    font-size: 14px;
    color: #ccc;
    line-height: 26px;
    padding: 8px 0 8px 30px;
    font-family: "Trebuchet MS",Helvetica,sans-serif;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 9999;
}

    #cookieConsent a {
        color: #4B8EE7;
        text-decoration: none;
    }

#closeCookieConsent {
    float: right;
    display: inline-block;
    cursor: pointer;
    height: 20px;
    width: 20px;
    margin: -15px 0 0 0;
    font-weight: bold;
}

    #closeCookieConsent:hover {
        color: #FFF;
    }

#cookieConsent a.cookieConsentOK {
    background-color: #F1D600;
    color: #000;
    display: inline-block;
    border-radius: 5px;
    padding: 0 20px;
    cursor: pointer;
    float: right;
    margin: 0 60px 0 10px;
}

    #cookieConsent a.cookieConsentOK:hover {
        background-color: #E0C91F;
    }
/*Cookie Consent End*/
.customchkbox {
    width: 25px;
    height: 25px;
    background-color: #8b0000;
}
input:checked ~ .customchkbox {
    background-color: #8b0000;
}

@media only screen and (max-width: 640px) {
    /*
				SCREEN MINIMIZED – MOBILE VIEW
			*/

    .cs-menu {
        display: none;
    }

        .cs-menu > li > .d-menu {
            top: 0%;
        }

    #ToggleButton {
        display: inline;
    }
}

@media only screen and (min-width: 640px) {
    /*
				SCREEN MAXIMIZED – DESKTOP VIEW
			*/

    .cs-menu {
        //display: flex;
        visibility: visible;
    }

    #ToggleButton {
        display: none;
    }
}



body {
    font-family: 'lato', sans-serif;
}

.Tcontainer {
  /*  max-width: 1000px;*/
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
    padding-top:30px;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 0.5 opacity gray color */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
#vacationMessage {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    width: 50%; /* Set the width of the vacation message container */
}

#messageContent {
    margin-bottom: 10px;
}

#closeButton {
    background-color: #f44336; /* Red color */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
}


.prodCODEOverlay {
    float: right;
    max-width: 50%;
    z-index: 5;
    position: absolute;
    right: 1em;
    background-color: darkred;
    color: aliceblue;
    font-size: 20px;
    padding:3px 5px 3px 5px;
}

.responsive-table  li
{
    border-radius: 3px;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.table-header {
    background-color: #8b0000;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color:white;
}

.table-row {
    background-color: #ffffff;
    box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.1);
}

.col-1 {
    flex-basis: 10%;
}

.col-2 {
    flex-basis: 40%;
}

.col-3 {
    flex-basis: 25%;
}

.col-4 {
    flex-basis: 25%;
}

#page-mask {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(0,0,0,0.6);
}

#window {
    position: fixed;
    left: 20%;
    right: 20%;
    bottom: 20%;
    top: 20%;
    background-color: white;
    border: solid 2px gray;
}

@media all and (max-width: 1400px) {
    .table-header {
        display: none;
    }

    .table-row {
    }

    li {
        display: block;
    }

    .col {
        flex-basis: 100%;
    }

    .col {
        display: flex;
        padding: 10px 0;
        &:before
    }
}
{
    color: #6C7A89;
    padding-right: 10px;
    content: attr(data-label);
    flex-basis: 50%;
    text-align: right;
}

}
}