@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900;1000&display=swap');

.cardBestellung {
    overflow: hidden;
    position: relative;
    text-align: left;
    border-radius: 0.5rem;
    max-width: 290px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    background-color: #fff;
    display: block !important;
}

.cardBestellung .dismiss {
    position: absolute;
    right: 10px;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background-color: #fff;
    color: black;
    border: 2px solid #D1D5DB;
    font-size: 1rem;
    font-weight: 300;
    width: 30px;
    height: 30px;
    border-radius: 7px;
    transition: .3s ease;
}

.cardBestellung .dismiss:hover {
    background-color: #ee0d0d;
    border: 2px solid #ee0d0d;
    color: #fff;
}

.cardBestellung .header {
    padding: 1.25rem 1rem 1rem 1rem;
}

.cardBestellung .image {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    background-color: #e2feee;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    animation: animate .6s linear alternate-reverse infinite;
    transition: .6s ease;
}

.cardBestellung .image svg {
    color: #0afa2a;
    width: 2rem;
    height: 2rem;
}

.cardBestellung .content {
    margin-top: 0.75rem;
    text-align: center;
}

.cardBestellung .title {
    color: #066e29;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
}

.cardBestellung .message {
    margin-top: 0.5rem;
    color: #595b5f;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.cardBestellung .actions {
    margin: 0.75rem 1rem;
}

.cardBestellung .history {
    display: inline-flex;
    padding: 0.5rem 1rem;
    background-color: #1aa06d;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 500;
    justify-content: center;
    width: 100%;
    border-radius: 0.375rem;
    border: none;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.cardBestellung .track {
    display: inline-flex;
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    color: #242525;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 500;
    justify-content: center;
    width: 100%;
    border-radius: 0.375rem;
    border: 1px solid #D1D5DB;
    background-color: #fff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

@keyframes animate {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.09);
    }
}

.notifications-container {
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.flex {
    display: flex;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.success {
    padding: 1rem;
    border-radius: 0.375rem;
    background-color: rgb(240 253 244);
}

.succes-svg {
    color: rgb(74 222 128);
    width: 1.25rem;
    height: 1.25rem;
}

.success-prompt-wrap {
    margin-left: 0.75rem;
}

.success-prompt-heading {
    font-weight: bold;
    color: rgb(22 101 52);
}

.success-prompt-prompt {
    margin-top: 0.5rem;
    color: rgb(21 128 61);
}

.success-button-container {
    display: flex;
    margin-top: 0.875rem;
    margin-bottom: -0.375rem;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.success-button-main {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    background-color: #ECFDF5;
    color: rgb(22 101 52);
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: bold;
    border-radius: 0.375rem;
    border: none
}

.success-button-main:hover {
    background-color: #D1FAE5;
}

.success-button-secondary {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-left: 0.75rem;
    background-color: #ECFDF5;
    color: #065F46;
    font-size: 0.875rem;
    line-height: 1.25rem;
    border-radius: 0.375rem;
    border: none;
}

.delivery-address,
.billing-address {
    border: #0045a4 1px solid;
    border-radius: 10px;
    padding: 20px;
}

.cta2 {
    border: none;
    background: none;
    outline: none !important;

}

.cta2 span {
    padding-bottom: 7px;
    letter-spacing: 4px;
    font-size: 14px;
    padding-right: 15px;
    text-transform: uppercase;
}

.cta2 svg {
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.cta2:hover svg {
    transform: translateX(0);
}

.cta2:active svg {
    transform: scale(0.9);
}

.hover-underline-animation {
    position: relative;
    color: black;
    padding-bottom: 20px;
}

.hover-underline-animation:after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #000000;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.cta2:hover .hover-underline-animation:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}


.items-header {
    display: flex;
    justify-content: space-around;
}

.add-to-wishlist:hover {
    color: #EF4444;
    cursor: pointer;
}

/* CSS */
.productFit {
    position: absolute;
    top: -5px;
    right: -5px;
}

.fform {
    position: relative;
}

.line {
    background-color: #FFF;
    width: 2px;
    height: 100%;
}

.user-log::after {
    display: none !important;
}

.user-log {
    background-color: #ef4444 !important;

}

.svgInDark {
    fill: #343A40;
}

#searchResults {
    top: 45px;
    left: -200px;
    position: absolute;
    background-color: #FFF;
    padding: 20px;
    max-height: 450px;
    width: 500px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    border: 1px solid #8A2BE2;
    border-radius: 7px;
    overflow-x: hidden;
    overflow-y: scroll;
    z-index: 44444;
    display: none;
}

/* .hed{
    background-color:  #0a1a24 !important;
} */
.searchResultschip {
    display: block !important;
    margin-bottom: 5px;
    overflow: hidden;
}

.loader {
    display: block;
    --height-of-loader: 4px;
    --loader-color: #8A2BE2;
    /* width: 130px; */
    height: var(--height-of-loader);
    border-radius: 30px;
    background-color: rgba(0, 0, 0, 0.2);
    position: relative;
}

.loader::before {
    content: "";
    position: absolute;
    background: var(--loader-color);
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    border-radius: 30px;
    animation: moving 1s ease-in-out infinite;
    ;
}

@keyframes moving {
    50% {
        width: 100%;
    }

    100% {
        width: 0;
        right: 0;
        left: unset;
    }
}

/* /////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////// */
.error {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    width: 100%;
    padding: 12px;
    display: flex;
    flex-direction: row;
    /* align-items: center; */
    justify-content: start;
    background: #EF665B;
    border-radius: 8px;
    box-shadow: 0px 0px 5px -3px #111;
}

.error__icon {
    width: 20px;
    height: 20px;
    transform: translateY(-2px);
    margin-right: 8px;
}

.error__icon path {
    fill: #fff;
}

.error__title {
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.link00 {
    color: #FFF;
    margin-left: 10px;
}


/* /////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////// */

/* /////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////// */
.button-82-pushable {
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    transition: filter 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-82-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: hsl(0deg 0% 0% / 0.25);
    will-change: transform;
    transform: translateY(2px);
    transition:
        transform 600ms cubic-bezier(.3, .7, .4, 1);
}

.button-82-edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(to left,
            hsl(340deg 100% 16%) 0%,
            hsl(340deg 100% 32%) 8%,
            hsl(340deg 100% 32%) 92%,
            hsl(340deg 100% 16%) 100%);
}

.button-82-front {
    display: block;
    position: relative;
    padding: 12px 27px;
    border-radius: 12px;
    font-size: 1.1rem;
    color: white;
    background: hsl(345deg 100% 47%);
    will-change: transform;
    transform: translateY(-4px);
    transition:
        transform 600ms cubic-bezier(.3, .7, .4, 1);
}

@media (min-width: 768px) {
    .button-82-front {
        font-size: 1.25rem;
        padding: 12px 42px;
    }
}

.button-82-pushable:hover {
    filter: brightness(110%);
    -webkit-filter: brightness(110%);
}

.button-82-pushable:hover .button-82-front {
    transform: translateY(-6px);
    transition:
        transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.button-82-pushable:active .button-82-front {
    transform: translateY(-2px);
    transition: transform 34ms;
}

.button-82-pushable:hover .button-82-shadow {
    transform: translateY(4px);
    transition:
        transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.button-82-pushable:active .button-82-shadow {
    transform: translateY(1px);
    transition: transform 34ms;
}

.button-82-pushable:focus:not(:focus-visible) {
    outline: none;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif !important;
}

li {
    list-style: none;
}

body {
    font-family: 'Cairo', sans-serif !important;
    /* font-family: 'Yuji Hentaigana Akari', cursive; */

}

a {
    text-decoration: none !important;
}

.red-svg {
    fill: #ef4444;
}


.dot-spinner {
    --uib-size: 2.8rem;
    --uib-speed: .9s;
    --uib-color: #183153;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: var(--uib-size);
    width: var(--uib-size);
}

.dot-spinner__dot {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
}

.dot-spinner__dot::before {
    content: '';
    height: 20%;
    width: 20%;
    border-radius: 50%;
    background-color: var(--uib-color);
    transform: scale(0);
    opacity: 0.5;
    animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
    box-shadow: 0 0 20px rgba(18, 31, 53, 0.3);
}

.dot-spinner__dot:nth-child(2) {
    transform: rotate(45deg);
}

.dot-spinner__dot:nth-child(2)::before {
    animation-delay: calc(var(--uib-speed) * -0.875);
}

.dot-spinner__dot:nth-child(3) {
    transform: rotate(90deg);
}

.dot-spinner__dot:nth-child(3)::before {
    animation-delay: calc(var(--uib-speed) * -0.75);
}

.dot-spinner__dot:nth-child(4) {
    transform: rotate(135deg);
}

.dot-spinner__dot:nth-child(4)::before {
    animation-delay: calc(var(--uib-speed) * -0.625);
}

.dot-spinner__dot:nth-child(5) {
    transform: rotate(180deg);
}

.dot-spinner__dot:nth-child(5)::before {
    animation-delay: calc(var(--uib-speed) * -0.5);
}

.dot-spinner__dot:nth-child(6) {
    transform: rotate(225deg);
}

.dot-spinner__dot:nth-child(6)::before {
    animation-delay: calc(var(--uib-speed) * -0.375);
}

.dot-spinner__dot:nth-child(7) {
    transform: rotate(270deg);
}

.dot-spinner__dot:nth-child(7)::before {
    animation-delay: calc(var(--uib-speed) * -0.25);
}

.dot-spinner__dot:nth-child(8) {
    transform: rotate(315deg);
}

.dot-spinner__dot:nth-child(8)::before {
    animation-delay: calc(var(--uib-speed) * -0.125);
}

@keyframes pulse0112 {

    0%,
    100% {
        transform: scale(0);
        opacity: 0.5;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }
}





/* ======================================= */
/* ======================================= */
/* ======================================= */
/* ======================================= */
/* .side-menu .xx-item{
    display: flex;
} */
/* .side-menu .xx-item img{
    width: 30px;
    height: 30px;
    border-radius: 50%;
}  */
.slider {
    width: 100% !important;
    margin: 0 auto;
    height: 400px;
    background-color: #0a1a24;
    position: relative;
}

.hoveref:hover {
    background-color: #0a1a24;
}

.search-area {
    background-color: #123144;
    width: 80%;
    margin: 0 auto;
    /* padding: 10px; */
    /* height: 100px; */
    position: absolute;
    right: 0;
    left: 0;
    bottom: -100px;
    z-index: 33;
    border-radius: 6px;
}

.search-area .content {
    margin: 3px;
    border: 2px solid #ef4444;
    border-radius: 6px;
    padding: 10px;

}

.pagination .page-item .page-link {
    background-color: #364261 !important;
    color: #FFF;
    padding: 0.5rem 0.75rem;
    border: 1px solid #cdd7ef;
    width: max-content;
}

.page-item:not(:first-child) .page-link {
    margin-left: calc(1 * -1)px;
}

.footer-content {
    width: 1200px;
    margin: 0 auto;
    justify-content: space-evenly;

}

.footer-content .left {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.footer-content .center {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.footer-content .reight {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.footer-content a {
    color: #364261;
    font-weight: 600;
    margin: -10px;
    transition: all 0.6s;
}

.footer-content a:hover {
    color: #ef4444;
}

/* ======================================= */
/* ======================================= */
/* ======================================= */
/* ======================================= */

.products-product-images {
    width: 25%;
}

.fdgr {
    background-color: #0a1a24;
    margin-bottom: 10px;
    border-radius: 5px;
}

.products-product-img {
    width: 100%;
    height: 100%;
    border: 1px solid #7b7f83;
    border-radius: 5px;

}

.products-manufacturer-img {
    width: 140px;
    height: 70px;
}

.products-manufacturer-chip:hover {
    color: #FFF !important;
}

.products-product-details {
    width: 75%;
    height: 100%;
}

.products-product-title {
    font-size: 17px;
    font-weight: 600;
}

.psps {
    color: #EF4444;
}

.specifics {
    width: 75%;
    overflow-y: scroll;
}

.add-wish {
    color: #123144;
}

.add-wish a {
    color: #123144;
    transition: all 0.6s;
}

.add-wish a svg {
    transition: all 0.6s;
}

.add-wish a:hover {
    color: #EF4444;
}

.add-wish a:hover svg {
    fill: #EF4444;
}

.products-login {
    color: #EF4444;
    background-color: #123144;
    padding: 10px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.6s;
}

.products-login svg {
    fill: #ef4444;
    margin-right: 5px;
}

.products-login:hover {
    color: #EF4444;
    /* transform: scale(1.06); */
}

.products-login-alert {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    /* align-items: center; */
}

.nav-dropdown-x button {
    border: 0;
    background-color: inherit;
    color: #081F51;
}

.main-header-center ul {
    display: flex;
    flex-direction: row;
}

.main-header-center ul li {
    list-style: none;
    color: #081F51;
    margin-right: 20px;
}

.main-header-center ul li a {
    color: #081F51;
    text-decoration: none;
}

.cart-counter {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: blueviolet;
    display: flex;
    justify-content: center;
    align-items: baseline;
    top: -1px;
    right: 0;
    z-index: 99;
    border-radius: 50%;
    color: #FFF;
    font-weight: bold;
}

.menu-header-content {
    background-color: #364261;
    color: #FFF;
}

.cart-footer {
    background-color: #364261 !important;
    color: #FFF !important;
}

.cart-footer a {
    color: #FFF;
}

.cart-footer a:hover {
    color: #EF4444;
}

.message {
    width: fit-content;
    background-color: #0a1a24;
    color: #FFF;
    position: fixed;
    top: 100px;
    right: 17px;
    z-index: 44;
    padding: 20px;
    border-radius: 5px;
    /* display: flex; */
    display: none;
}

.message-btn {

    border: 1px solid #FFF;
    margin-left: 10px;
    line-height: 10px;
}

.item-delivery-time.green {
    color: #33ad38;
}

.item-delivery-time.green svg {
    fill: #33ad38;
}

.item-delivery-time.yellow {
    color: #dacf6a;
}

.item-delivery-time.yellow svg {
    fill: #dacf6a;
}

.item-delivery-time.orange {
    color: #FF9800;
}

.item-delivery-time.orange svg {
    fill: #FF9800;
}

.item-delivery-time.red {
    color: #d82663;
}

.item-delivery-time.red svg {
    fill: #d82663;
}

.counter-btn {
    width: 50px !important;
}

.counter-btn-stock {
    width: 30px !important;
}

.counter-value {
    width: 50px !important;
    display: inline !important;
}

.counter-value-stock {
    width: 30px !important;
    height: 30px !important;
}

.details .action .addToCart {
    width: max-content;
}

.stock-cart-img {
    width: 40px;
    height: 40px;
}

/* ======================================= */
/* ======================================= */
/* ======================================= */
/* ======================================= */
.svgInWhite {
    fill: #FFF;
}

.dt-buttons.btn-group button {
    background-color: #364261 !important;
}

.dataTables_paginate .page-item.active .page-link {
    background-color: #364261 !important;
}

.dataTables_wrapper .dataTables_info {
    color: #364261 !important;
}

.btn.btn-primary.buttons-collection.dropdown-toggle.buttons-colvis {
    display: none;
}

/* .pagination .page-item .page-link{
    background-color: #364261 !important;
    margin: 10px;
} */
/* .pagination .page-item.active .page-link{
    background-color: #364261 !important;
} */
/* ======================================= */
/* ======================================= */
/* ======================================= */
/* ======================================= */
/* Media queries for responsiveness */
@media only screen and (max-width: 768px) {

    /* Adjustments for medium-sized screens (tablets, small laptops) */
    #main-header {
        height: max-content;
    }


    .sec {
        margin: 15px auto;
    }

    .cart-total {
        justify-content: flex-end;
    }

    /* Add more styles as needed */
}

@media only screen and (max-width: 576px) {

    /* Adjustments for small screens (larger smartphones) */
    #main-header .logo {

        font-size: 20px;
    }

    #main-header .container .logo h1 {
        font-size: 20px;
        margin-top: 30px;
        display: block;
    }

    .first-bar {
        flex-direction: column;
    }

    .sm-mrf {
        margin: 5px;
    }

    .products-product {
        flex-direction: column !important;
    }

    .fdgr {
        text-align: center;
    }

    .products-product-images {
        width: 100%;
        margin-bottom: 10px;
        /* display: block; */
    }



    /* Add more styles as needed */
}

@media only screen and (max-width: 360px) {
    /* Mobile-specific adjustments (smaller smartphones) */
    /* Add specific styles for very small screens */
}
