* {
    padding: 0;
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
}

html,
body {
    height: 100%;
    background-color: black !important;
    color: white !important;
    background-image: url("../img/kitchen-7870212_1920.jpg");
    background-attachment: fixed;
    background-size: cover;
    overflow-x: hidden;
}

body {
    position: relative;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}


.navbar {
    background-color: rgba(0, 0, 0, 0.6) !important;
    padding: 0% 2rem !important;
}

.navbar-brand {
    box-sizing: border-box;
    padding-top: 2%;
}

.nav-link {
    color: white !important;
    font-size: 1.25rem;
    transition: 0.2s;
    @media (max-width: 64.375em) {
        font-size: 1rem;
    }
}

.nav-link:hover {
    color: orange !important;
    scale: 1.05;
    text-decoration: underline !important;
    text-decoration-color: orange !important;
}


.main {
    flex: 1 1 auto;
    margin-top: 2.7%;
    perspective: 43.75rem;
}

.slab_container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}


.slab {
    position: relative;
    min-width: 16.25rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: white;
    color: black;
    border: 0.0625rem solid black;
    font-size: 0.875rem;
    text-align: left !important;
    scale: 0.98;
    padding-top: 1%;
    border-radius: 1.125rem;
    font-family: 'Times New Roman', Times, serif;
}

.imgUps {
    overflow: hidden;
    width: 100%;
    height: 13.125rem;
}

.imgCss {
    width: 100%;
    height: 13.125rem;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
    object-fit: cover;
}

.imgCss:hover {
    scale: 1.06;
}

h6 {
    margin-top: 1rem;
    font-size: 1.375rem;
}

.status {
    position: absolute;
    top: 0.625rem;
    width: 7.5rem;
    height: 1.875rem;
    background-color: red;
    font-size: 1rem;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.25rem;
}

.statusNew {
    position: absolute;
    top: 0.625rem;
    width: 4.375rem;
    height: 1.875rem;
    background-color: blue;
    font-size: 1rem;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.25rem;
}

form {
    margin-bottom: 1.25rem;
}

select {
    width: 9.375rem;
    height: 2.1875rem;
    text-align: center;
    border-radius: 0.625rem;
    box-shadow:
        0px 0px 0.4375rem white,
        0px 0px 1.125rem white,
        0px 0px 1.5625rem white;
}

#btn1 {
    width: 5rem;
    height: 2.5rem;
    text-align: center;
    border-top-right-radius: 0.625rem;
    border-bottom-right-radius: 0.625rem;
    transition: all 0.2s ease-in-out;
    background: linear-gradient(45deg, green, blue);
    color: white;
    box-shadow:
        0px 0px 0.4375rem white,
        0px 0px 1.125rem white,
        0px 0px 1.5625rem white;
}

#btn1:hover {
    width: 5.625rem;
    transform: translateX(0.25rem) scale(1.05);
}


.footer {
    padding: 2% 0 1% 0;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Stylish", serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
}

.footer a {
    color: white;
    font-family: "Stylish", serif;
    font-weight: 600;
    font-style: normal;
    text-align: center;
}

.modal {
    display: none;
    position: fixed;
    z-index: 20;
    left: 0;
    top: 0%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.5);
    border-radius: 0.5rem;
    object-fit: cover;
}

.close-modal {
    position: absolute;
    top: 1.25rem;
    right: 1.875rem;
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    cursor: pointer;
}

.close-modal:hover {
    color: red;
}

.messag {
    position: fixed;
    right: 1.1%;
    bottom: .9%;
}

.messag a img {
    margin-left: 0.3125rem;
    width: 2.1875rem;
    height: 2.1875rem;
}

.messag a img:hover {
    scale: 1.2;
}

@media (max-width: 48em) {
    .navbar-brand {
        box-shadow: unset;
        background-color: unset;
    }

    .navbar-brand img {
        position: relative;
        width: 5.625rem;
        left: -1.875rem;
        top: 0.25rem;
    }
}

#log {
    animation-name: svgLogo;
    animation-duration: 1.6s;
    animation-iteration-count: 1;
    scale: 1.1;
}

#prom_disabled {
    pointer-events: none;
    color: grey !important;
    cursor: default;
}

@keyframes svgLogo {
    0% {
        transform: scale(0.4);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 30.625em) {
    .footer {
        padding: 2% 0 13% 0;
    }
}