﻿.sqlDialog_TextArea {
    padding: 12px;
    height: 200px;
    background: #ffffff00;
    width: 100%;
    color: white;
    border: 1px solid #ffffff78;
    text-wrap: nowrap;
    outline: none;
    border: 1px solid rgb(0, 52, 222);
    padding: 10px 15px;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid rgb(141, 141, 141);
    letter-spacing: 1px;
    width: 100%;
    color: black;
}

.dialog-grid-container {
    display: grid;
    grid-template-areas:
        "MenuTabs CardSelector FieldEditor LineBuilder	Submit"
        "Footer Footer Footer Footer Footer";
    grid-template-columns: min-content min-content auto auto auto;
   
    
}


.NoSelection {
    grid-template-rows: auto auto;
}

.dialog-grid-container > * {
    border-right: 1px solid rgb(255 255 255 / 0.5);
}

.dialog-grid-containers {
    display: grid;
    grid-template-areas:
        "tabs tabs tabs"
        "menu body linemenu";
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 25% 1fr auto;
    height: 85vh;
    width: 90vw;
    column-gap: 20px;
}

.dialog-grid-linemenu {
    grid-area: linemenu;
    /* background-color: #333; */
    padding: 5px 5px 5px 5px;
    display: flex;
    border-right: 1px solid #00fff559;
    border-top: 2px solid #00fff559;
    border-left: 1px solid #00fff559;
    border-radius: 10px;
    flex-direction: column;
    gap: 10px;
    color: white;
    
}


    .dialog-grid-linemenu  label {
        background: #80808063;
        padding-left: 5px;
        padding-right: 5px;
        border-radius: 5px;
        margin-top:10px;
        margin-bottom:5px;
    }
.dialog-grid-sidemenu {
    grid-area: FieldEditor;
    width: 80%;
    height:100%;
}

.dialog-body {
    padding: 0px !important;
}

.dialog-grid-header {
    grid-area: header;
    justify-items: center;
    border-bottom: 1px solid #00e6ffc2;
    width: 100%;
    height: 100%;
    overflow: auto;
    align-content: center;
}


.dialog-grid-tabs {
    grid-area: tabs;
    justify-items: center;
    width: 100%;
    padding-bottom: 10px;
    /* border: 1px solid #00c4ff8c; */
    border-radius: 10px;
    background: #009fff0d;
    padding: 10px;
}


.dialog-grid-body {
    grid-area: body;
    display: flex;
    gap: 25px;
    border: 1px solid #00c4ff8c;
    padding: 5px;
    flex-wrap: wrap;
    overflow: auto;
}

.dialog-grid-footer {
    grid-area: footer;
    background-color: #f1f1f11a;
    padding: 20px;
    text-align: center;
}

.input-group {
    display: flex;
    align-items: center;
}

.input {
  
    padding: .5em 1em;
    color: #fff;
    font-size: 13px;
    border: 1px solid #5e4dcd;
    border-radius: 6px 0 0 6px;
    background-color: transparent;
}

.button--submit {
    padding: .5em 1em;
    border: none;
    border-radius: 0 6px 6px 0;
    background-color: #5e4dcd;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    transition: background-color .3s ease-in-out;
}

    .button--submit:hover {
        background-color: #5e5dcd;
    }

.input:focus, .input:focus-visible {
    border-color: #3898EC;
    outline: none;
}

.image-container {
    position: relative;
    text-align: center;
    padding: 8px;
    cursor: pointer;
    transform: scale(.75);
    transition: .2s ease-in-out;
}

.image-container-selected {
    border: 1px solid goldenrod;

    background: #008aff24;
}

    

.card1 {
    --white: hsl(0, 0%, 100%);
    --black: hsl(240, 15%, 9%);
    --paragraph: hsl(0, 0%, 83%);
    --line: hsl(240, 9%, 17%);
    --primary: hsl(266, 92%, 58%);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: .5rem;
    width: max-content;
    background-color: hsla(240, 15%, 9%, 1);
    background-image: radial-gradient( at 88% 40%, hsla(240, 15%, 9%, 1) 0px, transparent 85% ), radial-gradient(at 49% 30%, hsla(240, 15%, 9%, 1) 0px, transparent 85%), radial-gradient(at 14% 26%, hsla(240, 15%, 9%, 1) 0px, transparent 85%), radial-gradient(at 0% 64%, hsla(263, 93%, 56%, 1) 0px, transparent 85%), radial-gradient(at 41% 94%, hsla(284, 100%, 84%, 1) 0px, transparent 85%), radial-gradient(at 100% 99%, hsla(306, 100%, 57%, 1) 0px, transparent 85%);
    border-radius: 1rem;
    box-shadow: 0px -16px 24px 0px rgba(255, 255, 255, 0.25) inset;
}

    .card1 .card1__border {
        overflow: hidden;
        pointer-events: none;
        position: absolute;
        z-index: -10;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: calc(100% + 2px);
        height: calc(100% + 2px);
        background-image: linear-gradient( 0deg, hsl(0, 0%, 100%) -50%, hsl(0, 0%, 40%) 100% );
        border-radius: 1rem;
    }

        .card1 .card1__border::before {
            content: "";
            pointer-events: none;
            position: fixed;
            z-index: 200;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%), rotate(0deg);
            transform-origin: left;
            width: 200%;
            height: 10rem;
            background-image: linear-gradient( 0deg, hsla(0, 0%, 100%, 0) 0%, hsl(277, 95%, 60%) 40%, hsl(277, 95%, 60%) 60%, hsla(0, 0%, 40%, 0) 100% );
            animation: rotate 8s linear infinite;
        }

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.card1 .card1_title__container .card1_title {
    font-size: 1rem;
    color: var(--white);
}

.card1 .card1_title__container .card1_paragraph {
    margin-top: 0.25rem;
    width: 65%;
    font-size: 0.5rem;
    color: var(--paragraph);
}

.card1 .line {
    width: 100%;
    height: 0.1rem;
    background-color: var(--line);
    border: none;
}

.card1 .card1__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .card1 .card1__list .card1__list_item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

        .card1 .card1__list .card1__list_item .check {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 1rem;
            height: 1rem;
            background-color: var(--primary);
            border-radius: 50%;
        }

            .card1 .card1__list .card1__list_item .check .check_svg {
                width: 0.75rem;
                height: 0.75rem;
                fill: var(--black);
            }

        .card1 .card1__list .card1__list_item .list_text {
            font-size: 0.75rem;
            color: var(--white);
        }

.card1 .button {
    cursor: pointer;
    padding: 0.5rem;
    width: 100%;
    background-image: linear-gradient( 0deg, rgba(94, 58, 238, 1) 0%, rgba(197, 107, 240, 1) 100% );
    font-size: 0.75rem;
    color: var(--white);
    border: 0;
    border-radius: 9999px;
    box-shadow: inset 0 -2px 25px -4px var(--white);
}



















.card2 {
    width: max-content;
    background: linear-gradient(45deg, #00c1ff00, #00c1ff6b, #00c1ff6b, #006ab4);
    border-radius: 20px;
    display: flex;
    padding-right: 20px;
    align-items: center;
    justify-content: left;
}

  

.img2 {
    width: 40px;
    height: 40px;
    
    
    
}



.textBox2 {
    margin-left: 10px;
    color: white;
    text-wrap: nowrap;
    font-family: 'Poppins' sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
}

.textContent2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.span2 {
    font-size: 10px;
}

.h12 {
    font-size: 1.2rem;
    text-wrap:nowrap;
    font-weight: bold;
}

.p2 {
    font-size: 1rem;
    font-weight: lighter;
    text-wrap: wrap;
    max-width: 17vw;
}



.thumbnail {
    overflow: hidden;
    justify-self: center;
    
    height: 150px;
}

    .thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: contain !important;
    }


.card-image {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    background: #00aaff40;
    border-radius: 10px;
}

    .card-image:hover {
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    }

.container-image {
    padding: 2px 16px;
}








/* From Uiverse.io by MuhammadHasann */
.card-image1 {
    --bg-card: #27272a;
    --primary: #6d28d9;
    --primary-800: #4c1d95;
    --primary-shadow: #2e1065;
    --light: #d9d9d9;
    --zinc-800: #18181b;
    --bg-linear: linear-gradient(0deg, #6d28d938 50%, #d9d9d9a1 125%);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.6rem;
    min-width: 11rem;
    max-width: 19rem;
    background-color: #0085a445;
    border-radius: 1rem;
    border: 1px solid #8d770091;
}

.image_container-image1 {
    
    cursor: pointer;
    position: relative;
    z-index: 5;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    justify-self: center;
    
    border-radius: 0.5rem;
}

    .image_container-image1 .image-image1 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 3rem;
        fill: var(--light);
    }

.title-image1 {
    overflow: clip;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    color: var(--light);
    text-transform: capitalize;
    text-wrap: nowrap;
    text-overflow: ellipsis;
}

.size-image1 {
    font-size: 0.75rem;
    color: var(--light);
}

.list-size-image1 {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

    .list-size-image1 .item-list-image1 {
        list-style: none;
    }

    .list-size-image1 .item-list-button-image1 {
        cursor: pointer;
        padding: 0.5rem;
        background-color: var(--zinc-800);
        font-size: 0.75rem;
        color: var(--light);
        border: 2px solid var(--zinc-800);
        border-radius: 0.25rem;
        transition: all 0.3s ease-in-out;
    }

.item-list-button-image1:hover {
    border: 2px solid var(--light);
}

.item-list-button-image1:focus {
    background-color: var(--primary);
    border: 2px solid var(--primary-shadow);
    box-shadow: inset 0px 1px 4px var(--primary-shadow);
}

.action-image1 {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-image1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
}

.cart-button-image1 {
    /* cursor: pointer; */
    display: flex;
    /* justify-content: center; */
    /* align-items: center; */
    
    padding: .4rem;
    width: 100%;
    background-image: var(--bg-linear);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--light);
    text-wrap: wrap;
    border: 1px solid hsla(262, 83%, 58%, 0.3);
    border-radius: 0.5rem;
    
}

    .cart-button-image1 .cart-icon-image1 {
        width: 1rem;
    }








@charset "UTF-8";

.live {
    
    overflow: hidden;
    gap: 3px !important;
    /* padding: 10px; */
    display: flex;
    flex-direction: column;
}

    .live > li {
        list-style: none;
        position: relative;
        padding: 0 0 0 1em;
        margin: 0 0 0 2px 10px;
        transition: 0.12s;
    }

        .live > li::before {
            position: absolute;
            content: "•";
            font-family: Arial;
            color: #ffd800;
            top: 0;
            left: 0;
            text-align: center;
            font-size: 2em;
            opacity: 0.5;
            line-height: .50;
            transition: 0.5s;
        }

        .live > li:hover {
            color: #FFF;
        }

            .live > li:hover::before {
                transform: scale(2);
                opacity: 1;
                text-shadow: 0 0 4px;
                transition: 0.1s;
            }

    .live.type2 > li::before {
        content: "";
        width: 10px;
        height: 10px;
        background: #FFF;
        border-radius: 3px;
        line-height: 0;
        top: 0.27em;
        left: 5px;
    }

    .live.type2 > li:hover::before {
        transform: none;
        border-radius: 5px;
        width: 25px;
        left: -10px;
        background: #BA5353;
    }

    .live.numbers {
        counter-reset: numbers 0;
    }

        .live.numbers > li::before {
            content: counter(numbers, decimal) ".";
            counter-increment: numbers 1;
            font-size: 1em;
            opacity: 0.5;
            line-height: 1.2;
            transition: 0.5s;
        }

        .live.numbers > li:hover:before {
            opacity: 1;
            left: -10px;
            transform: none;
            text-shadow: none;
            transition: 0.12s;
        }

@font-face {
    font-family: "Roboto Condensed";
    font-style: normal;
    font-weight: 400;
    src: local("Roboto Condensed Regular"), local("RobotoCondensed-Regular"), url(httsp://themes.googleusercontent.com/static/fonts/robotocondensed/v7/Zd2E9abXLFGSr9G3YK2MsFzqCfRpIA3W6ypxnPISCPA.woff) format("woff");
}


.live > ol, .live > ul {
    background: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    padding: 1.5em;
    margin: 1vw;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}










.notification3 {
    display: flex;
    flex-direction: column;
    isolation: isolate;
    position: relative;
    width: 18rem;
    /* height: 8rem; */
    padding-bottom: 1rem;
    background: #29292c;
    border-radius: 1rem;
    overflow: hidden;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 16px;
    --gradient: linear-gradient(to bottom, #2eadff, #3d83ff, #7e61ff);
    --color: #32a6ff;
}

    .notification3:before {
        position: absolute;
        content: "";
        inset: 0.0625rem;
        border-radius: 0.9375rem;
        background: #18181b;
        z-index: 2
    }

    .notification3:after {
        position: absolute;
        content: "";
        width: 0.25rem;
        inset: 0.65rem auto 0.65rem 0.5rem;
        border-radius: 0.125rem;
        background: var(--gradient);
        transition: transform 300ms ease;
        z-index: 4;
    }

    .notification3:hover:after {
        transform: translateX(0.15rem)
    }

.notititle3 {
    color: var(--color);
    padding: 0.65rem 0.25rem 0.4rem 1.25rem;
    font-weight: 500;
    font-size: 1.1rem;
    transition: transform 300ms ease;
    z-index: 5;
}

.notification3:hover .notititle {
    transform: translateX(0.15rem)
}

.notibody3 {
    color: #99999d;
    padding: 0 1.25rem;
    transition: transform 300ms ease;
    z-index: 5;
}

.notification3:hover .notibody {
    transform: translateX(0.25rem)
}

.notiglow3,
.notiborderglow3 {
    position: absolute;
    width: 20rem;
    height: 20rem;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle closest-side at center, white, transparent);
    opacity: 0;
    transition: opacity 300ms ease;
}

.notiglow3 {
    z-index: 3;
}

.notiborderglow3 {
    z-index: 1;
}

.notification3:hover .notiglow3 {
    opacity: 0.1
}

.notification3:hover .notiborderglow3 {
    opacity: 0.1
}

.note3 {
    color: var(--color);
    position: fixed;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 0.9rem;
    width: 75%;
}



.sideborder {
    --b: 1px; /* thickness of the border */
    --c: goldenrod; /* color of the border */
    --w: 50%; /* width of border */


    border: var(--b) solid #0000; /* space for the border */
    --_g: #0000 90deg,var(--c) 0;
    --_p: var(--w) var(--w) border-box no-repeat;
    background: conic-gradient(from 90deg at top var(--b) left var(--b),var(--_g)) 0 0 / var(--_p), conic-gradient(from 0deg at bottom var(--b) left var(--b),var(--_g)) 0 100% / var(--_p);
}







.card4 {
    width: max-content;
    
    
    position: relative;
    height: max-content;
    padding: 5px 5px 5px 5px;
    
    overflow: visible;
}

.card4-details {
    color: goldenrod;

    height: 100%;
    gap: .1em;
    font-size:.8em;
    display: grid;
    place-content: center;
}

.card4-button {
    width: max-content;
    border-radius: 1rem;
    border: none;
    background-color: rgb(0, 139, 248);
    color: rgb(255, 255, 255);
    padding: 0.1rem .4rem;
    position: absolute;
    left: 50%;
    bottom: 0px;
    opacity: 0;
}

.text-body4 {
    color: white;
    font-size: 1em;
}

/*Text*/
.text-title4 {
    font-size: 1em;
    font-weight: bold;
}

/*Hover*/
.card4 {
    
    box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.25);
}

    .card4 .card4-button {
        transform: translate(-50%, 50%);
        opacity: 1;
    }











.svg5 {
    color: #fffce5;
    width: 27px;
    height: 27px;
    padding: 3px;
    border: 2px solid #dabe2066;
    border-radius: 50%;
}


.gridcontainer5 {
    display: grid;
    grid-template-areas:
        "title title title title"
        ". splitdate date date"
        ". splittime time time";
    grid-template-rows: 1fr 40px 1fr;
    grid-template-columns: .5fr 50px 2fr 2fr;
    /* grid-row-gap: 10px; */
    /* grid-column-gap: 10px; */
    height: 100%;
    margin: 0;
    width: max-content;
    padding: 20px;
}


#title5 {
    grid-area: title;
    display: grid;
    grid-template-rows: 30px;
    grid-template-columns: .5fr 50px 2fr 2fr;
    position: relative;
}

#date5 {
    grid-area: date;
    /* border: 1px solid red; */
    display: grid;
    align-items: center;
}

#time5 {
    grid-area: time;
    /* border: 1px solid red; */
    display: grid;
    align-items: center;
}

#splitdate5 {
    grid-template-rows: 1fr;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "upper bottom";
    grid-area: splitdate;
    border-left: 1px solid #dabe2066;
    margin-left: 24px;
}

#upper5 {
    height: 50%;
    border-bottom: 1px solid #dabe2066;
    border-left: 1px solid #dabe2066;
}

#bottom5 {
    height: 50%;
    border-bottom: 1px solid #dabe2066;
}

#splittime5 {
    display: grid;
    grid-area: splittime;
    grid-template-rows: 1fr;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "upper bottom";
    margin-left: 24px;
}



.fade_rule5 {
    height: 100px;
    width: 100%;
    margin: 0 auto;
    display: block;
    border: none;
    color: white;
    height: 1px;
    background: linear-gradient(90deg, rgb(198 194 205 / 66%) 0%, rgb(198 194 205 / 66%) 14%, rgb(198 194 205 / 66%) 30%, rgb(198 194 205 / 66%) 40%, rgb(198 194 205 / 66%) 60%, rgba(255, 255, 255, 0.5) 70%, rgb(255 255 255 / 31%) 86%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
}

.fadetop5 {
    top: 3px;
    z-index: 2;
}

.fadebottom5 {
    bottom: 3px;
    z-index: 2;
}

.backdrop5 {
    z-index: 0; /* Lower than other elements */
}

.title5 {
    position: absolute;
    mask-clip: stroke-box;
    display: flex;
    letter-spacing: 2px;
    text-shadow: -1px 1px 0 #000000, 1px 1px 0 #000000, 1px -1px 0 #be010199, -1px -1px 0 #3b2cff00;
    background-image: url(subtle-white-feathers.png) !important;
    background-blend-mode: color;
    background-color: #00508785;
    color: white;
    position: relative;
}

.backdrop5 {
    /* top: 0; */
    position: relative;
    width: 100%;
    height: 100%;
    mask-image: linear-gradient(90deg, rgb(254 255 69) 0%, rgb(255 255 255) 14%, rgb(255 255 255) 30%, rgba(255, 255, 255, 1) 40%, rgb(255 255 255 / 60%) 60%, rgb(255 255 255 / 40%) 70%, rgb(255 255 255 / 20%) 86%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(90deg, #0053658f, #0053658c, #bba2ad00);
    display: grid;
    grid-area: title;
}



.contain5 {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1; /* Ensure this is on top */
}

.rhombusBorder5, .alignment5 {
    z-index: 2; /* Higher than backdrop */
}


.rhombusBorder5 {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background: #ffe70094;
    position: absolute;
    top: -8px;
    height: 50px;
    width: 50px;
    background: #CFB47E;
    box-sizing: border-box;
    display: grid;
    grid-area: 1 / 2;
}


.rhombus5 {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    border: 2px solid #CFB47E;
    position: absolute;
    height: 44px;
    width: 44px;
    background: linear-gradient(117deg, #83a5d5, #004273, #476e99, #718394);
    margin: 3px;
    .text

{
    position: relative;
    font-size: 23px;
    margin-top: 2px;
    display: flex;
    justify-content: center;
}

.blur5 {
    font-size: 150px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(20px) opacity(0.4);
}

}



.alignment5 {
    position: relative;
    z-index: 3;
    align-items: center;
    height: 100%;
    letter-spacing: .6px;
    font-size: 1rem;
    padding-top: .3rem;
    padding-bottom: .3rem;
    color: white;
    text-shadow: -1px 1px 0 #000000, 1px 1px 0 #000000, 1px -1px 0 #be010199, -1px -1px 0 #3b2cff00;
    display: grid;
    grid-area: 1 / 3;
    text-wrap: nowrap;
    left: 10px;
}


.lineone5 {
    left: calc(5rem + 24px);
    height: 25px;
    background: goldenrod;
    position: absolute;
    width: 2px;
}

    .lineone5::after {
        content: ' ';
        width: 29px;
        margin-left: 2px;
        height: 20px;
        background: #ff000000;
        border-bottom: 2px solid #daa52085;
        display: inline-block;
    }











.half-left-border-half6 {
    position: relative;
    /* space for the pseudo-border */
}

    .half-left-border-half6::before {
        content: '';
        position: absolute;
        left: 0;
        top: -0px;
        height: 57%;
        width: 2px;
        background-color: #008fff;
        /* or whatever border color you want */
    }

.half-left-border-full6 {
    position: relative;
    /* space for the pseudo-border */
}

    .half-left-border-full6::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 2px;
        background-color: #008fff;
        /* or whatever border color you want */
    }

.icon-hover6 {
    transition: all 0.3s ease;
    cursor: pointer;
}




.pointer6 {
    transition: all 0.3s ease;
}

    .pointer6:hover {
        transform: scale(1.05) rotate(5deg);
        box-shadow: 0 0 5px white;
    }















.card7 {
    width: max-content;
    border-radius: 8px;
    box-sizing: border-box;
    padding: 5px 8px;
    background-color: #ffffff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 12px
}

.wave7 {
    position: absolute;
    transform: rotate(90deg);
    left: -31px;
    top: 32px;
    width: 80px;
    fill: #04e4003a;
}

.icon-container7 {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #04e400;
    border-radius: 50%;
    margin-left: 8px;
}

.icon7 {
    width: 17px;
    height: 17px;
    color: #269b24;
}

.message-text-container7 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex-grow: 1;
}

.message-text7,
.sub-text7 {
    margin: 0;
    cursor: default;
}

.message-text7 {
    color: #269b24;
    font-size: 17px;
    font-weight: 700;
}

.sub-text7 {
    font-size: 14px;
    color: #555;
}

.cross-icon7 {
    width: 18px;
    height: 18px;
    color: #555;
    cursor: pointer;
}












.card8 {
    width: 342px;
    height: 184px;
    position: relative;
    padding: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.background8 {
    fill: linear-gradient(90deg, #5936B4 0%, #362A84 100%);
    position: absolute;
    inset: 0;
    z-index: -1;
}

.cloud8 {
    position: absolute;
    right: 0;
    top: -12px;
}

    .cloud8 svg {
        height: 150px;
    }

.card8 .main-text8 {
    font-size: 48px;
    z-index: 2;
}

.card8 .info8 {
    display: flex;
    justify-content: space-between;
}

    .card8 .info8 .text-gray8 {
        color: rgba(235, 235, 245, 0.60);
    }

    .card8 .info8 .info-right8 {
        align-self: flex-end;
    }



















/***
* CSS3 FLIP CARDS
* Markup for an element that a user can hover to reveal content on the back, like a card
* Browser Support: Safari, Firefox, Chrome, IE8+, and Touch Devices; (IE9 and below will not have any flip effect but will just change on hover)
***/
.flip-card9 {
    display: block;
    position: relative;
    z-index: 1000;
    width: max-content;
    height: max-content;
}

    .flip-card9 .card-front9,
    .flip-card9 .card-back9 {
        -moz-backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -moz-transition: -moz-transform 500ms;
        -o-transition: -o-transform 500ms;
        -webkit-transition: -webkit-transform 500ms;
        transition: transform 500ms;
        display: block;
        height: 100%;
        position: absolute;
        width: 100%;
    }

    .flip-card9 .card-front9 {
        -moz-transform: perspective(300) rotateY(0);
        -webkit-transform: perspective(300) rotateY(0);
        transform: perspective(300) rotateY(0);
        z-index: 900;
    }

    .flip-card9 .card-back9 {
        -moz-transform: rotateY(-180deg);
        -webkit-transform: rotateY(-180deg);
        transform: rotateY(-180deg);
        z-index: 800;
    }

    .flip-card9:hover .card-front9 {
        -moz-transform: rotateY(180deg);
        -ms-transform: rotateY(180deg);
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
        -moz-transform: perspective(300) rotateY(180deg);
        -webkit-transform: perspective(300) rotateY(180deg);
        transform: perspective(300) rotateY(180deg);
    }

    .flip-card9:hover .card-back9 {
        z-index: 950;
        -moz-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
        -moz-transform: perspective(300) rotateY(0deg);
        -webkit-transform: perspective(300) rotateY(0deg);
        transform: perspective(300) rotateY(0deg);
    }

/*** Just for show... ***/
.flip-card9 {
    text-shadow: 1px 1px 0 rgba(14, 85, 143, 0.8);
    color: #fff;
    cursor: pointer;
    float: left;
    font-weight: bold;
    font-size:.8em;
    margin: 10px;
    text-align: center;
    text-transform: uppercase;
    min-width: 500px;
    max-width: 700px;
}

    .flip-card9 .card-front9,
    .flip-card9 .card-back9 {
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        border-radius: 5px;
        -moz-box-shadow: 1px 1px 2px rgba(14, 85, 143, 0.8);
        -webkit-box-shadow: 1px 1px 2px rgba(14, 85, 143, 0.8);
        box-shadow: 1px 1px 2px rgba(14, 85, 143, 0.8);
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border: 1px solid #051e32;
        height: fit-content;
        padding: 5px;
    }

    .flip-card9 .card-front9 {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        background-color: #499bea;
        *zoom: 1;

    }

    .flip-card9 .card-back9 {
        -moz-box-shadow: 0 0 20px rgba(19, 113, 189, 0.8) inset;
        -webkit-box-shadow: 0 0 20px rgba(19, 113, 189, 0.8) inset;
        box-shadow: 0 0 20px rgba(19, 113, 189, 0.8) inset;
    
    }





.flip-card {
    background-color: transparent;
    width: max-content;
    height: max-content;
    perspective: 1000px;
    
}

.flip-card-inner {
    position: relative;
    width: max-content;
    height: max-content;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    
    width: max-content;
    height: max-content;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius:5px;
    width:300px;
    max-width:300px;
}

.flip-card-front {
    
    
    
    background-color: rgb(241 217 217 / 0%);
    color: white;
    border: 1px solid #ffe1008c;
    padding: 5px;
}

.flip-card-back {
    background-color: #2980b9;
    color: white;
    top: 0px;
    right: 0px;
    transform: rotateY(180deg);
    position: absolute;
    padding: 5px;
}














/* From Uiverse.io by ilkhoeri */
.dropdown10 {
    border: 1px solid #c1c2c5;
    border-radius: 12px;
    transition: all 300ms;
    display: flex;
    flex-direction: column;
    min-height: 35px;
    background: #243137;
    border: 1px solid #bd9f67;
    overflow: hidden;
    position: relative;
    inset-inline: auto;
    font-size:12px;
 
}

    .dropdown10 input:where(:checked) ~ .list10 {
        opacity: 1;
        transform: translateY(-3rem) scale(1);
        transition: all 500ms ease;
        margin-top: 32px;
        padding-top: 4px;
        margin-bottom: -32px;
    }

    .dropdown10 input:where(:not(:checked)) ~ .list10 {
        opacity: 0;
        transform: translateY(3rem);
        margin-top: -100%;
        user-select: none;
        height: 0px;
        max-height: 0px;
        min-height: 0px;
        pointer-events: none;
        transition: all 500ms ease-out;
    }

.trigger10 {
    cursor: pointer;
    list-style: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    font-weight: 600;
    color: inherit;
    width: 100%;
    display: flex;
    align-items: center;
    flex-flow: row;
    gap: 1rem;
    padding: .5rem;
    height: max-content;
    position: relative;
    z-index: 99;
    border-radius: inherit;
    background: #243137;
    border: 1px solid #bd9f67;
}

.sr-only10 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.dropdown10 input:where(:checked) + .trigger10 {
    margin-bottom: 1rem;
}

    .dropdown10 input:where(:checked) + .trigger10:before {
        rotate: 90deg;
        transition-delay: 0ms;
    }

    .dropdown10 input:where(:checked) + .trigger10::after {
        content: var(--closingtext);
    }

.trigger10:before,
.trigger10::after {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trigger10:before {
    content: "›";
    rotate: -90deg;
    width: 17px;
    height: 17px;
    color: white;
    border-radius: 2px;
    font-size: 26px;
    transition: all 350ms ease;
    transition-delay: 85ms;
}

.trigger10::after {
    content: var(--openingtext);
    color:white;
}

.list10 {
    height: 100%;
    max-height: 20rem;
    width: calc(100% - calc(var(--w-scrollbar) / 2));
    display: grid;
    grid-auto-flow: row;
    overflow: hidden auto;
    gap: 1rem;
    gap: .5rem;
    padding: 0 1rem;
    margin-right: -8px;
color:white;
    --w-scrollbar: 8px;
}

.listitem10 {
    height: 100%;
    width: calc(100% + calc(calc(var(--w-scrollbar) / 2) + var(--w-scrollbar)));
    list-style: none;
}

.article10 {
    padding: .3rem;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    text-align: justify;
    width: 100%;
    border: 1px solid #c1c2c5;
    display: inline-block;
    background: #243137;
    border: 1px solid #bd9f67;
}

.webkit-scrollbar::-webkit-scrollbar {
    width: var(--w-scrollbar);
    height: var(--w-scrollbar);
    border-radius: 9999px;
}

.webkit-scrollbar::-webkit-scrollbar-track {
    background: #0000;
}

.webkit-scrollbar::-webkit-scrollbar-thumb {
    background: #0000;
    border-radius: 9999px;
}

.webkit-scrollbar:hover::-webkit-scrollbar-thumb {
    background: #c1c2c5;
}




/* From Uiverse.io by andrew-demchenk0 */
.error12 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    width: 320px;
    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__icon12 {
    width: 20px;
    height: 20px;
    transform: translateY(-2px);
    margin-right: 8px;
}

    .error__icon12 path {
        fill: #fff;
    }

.error__title12 {
    font-weight: 500;
    font-size: 14px;
    color: #fff;
}

.error__close12 {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-left: auto;
}

    .error__close12 path {
        fill: #fff;
    }








/* From Uiverse.io by andrew-demchenk0 */
.info13 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    width: 320px;
    padding: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    background: #509AF8;
    border-radius: 8px;
    box-shadow: 0px 0px 5px -3px #111;
}

.info__icon13 {
    width: 20px;
    height: 20px;
    transform: translateY(-2px);
    margin-right: 8px;
}

    .info__icon13 path {
        fill: #fff;
    }

.info__title13 {
    font-weight: 500;
    font-size: 14px;
    color: #fff;
}

.info__close13 {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-left: auto;
}

    .info__close13 path {
        fill: #fff;
    }











@import url("https://fonts.googleapis.com/css2?family=Grape+Nuts&family=Norican&display=swap");
.todo-component
{
    max-width: 500px;
}
.todo-component input[type="checkbox"]:checked + span {
    text-decoration: line-through;
    opacity: 0.6;
}

.todo-component label {
    cursor: pointer;
}

.todo-component ul,
.todo-component ol {
    list-style: none;
    font-family: "Grape Nuts", cursive;
    font-size: 1.3rem;
    color: midnightblue;
}




.todo-component h1 {
    
    font-family: "Norican", cursive;
    color: saddlebrown;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 4rem;
}

    .todo-component h1::before, .todo-component h1::after {
        content: "";
        display: block;
        width: 5rem;
        height: 2px;
        background-color: currentColor;
        margin: 0 1rem;
    }

.todo-component ul:not(ul, ul) {
    
    font-family:cursive;
    display: grid;
    grid-template-columns: max-content;
    z-index: 1;
    position: relative;
    perspective: 50vw;
    transform-style: preserve-3d;
}

    .todo-component ul:not(ul ul) .done {
        text-decoration: line-through;
    }

    .todo-component ul:not(ul ul) > li {
        --levitate: 0;
        padding: 1.2rem 2rem;
        background-color: pink;
        position: relative;
        transform-style: preserve-3d;
        cursor: pointer;
        position: relative;
        transition: transform 0.3s;
    }

        .todo-component ul:not(ul ul) > li::after {
            content: "";
            pointer-events: none;
            display: block;
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 1;
            mix-blend-mode: overlay;
            background-image: linear-gradient(to left, #ffe4b2, #c8b188);
        }

        .todo-component ul:not(ul ul) > li:hover {
            --levitate: 1;
        }

            .todo-component ul:not(ul ul) > li:hover::before {
                transform: translate3d(6rem, 1rem, -1px) scale(calc(1 - var(--levitate) * 0.1)) rotate(1.5deg);
                filter: blur(8px);
            }

            .todo-component ul:not(ul ul) > li:hover::after {
                opacity: 0.6;
            }

        .todo-component ul:not(ul ul) > li.big {
            background-color: lightgreen;
            padding: .8rem 1rem;
            padding-bottom: 1.5rem;
        }

        .todo-component ul:not(ul ul) > li ul {
            margin-top: 0.5em;
            margin-left: 1em;
            font-size: 0.8em;
        }

            .todo-component ul:not(ul ul) > li ul li {
                z-index: 1;
            }

                .todo-component ul:not(ul ul) > li ul li:first-letter {
                    font-size: 1.4em;
                }

        .todo-component ul:not(ul ul) > li:not(:first-of-type) {
            margin-top: 3rem;
        }

        .todo-component ul:not(ul, ul) > li:nth-child(3n) {
            transform: translate3d(-5px, calc(var(--levitate) * -5px), calc(var(--levitate) * 3rem)) rotate(-0.6deg) rotateX(calc(var(--levitate) * 6deg)) rotateY(calc(var(--levitate) * -3deg));
        }

        .todo-component ul:not(ul ul) > li:nth-child(3n-1) {
            transform: translate3d(7px, calc(var(--levitate) * -5px), calc(var(--levitate) * 3rem)) rotate(-0.5deg) rotateX(calc(var(--levitate) * 6deg)) rotateY(calc(var(--levitate) * -3deg));
        }

        .todo-component ul:not(ul ul) > li:nth-child(3n-2) {
            transform: translate3d(0px, calc(var(--levitate) * -5px), calc(var(--levitate) * 3rem)) rotate(0.5deg) rotateX(calc(var(--levitate) * 6deg)) rotateY(calc(var(--levitate) * -3deg));
        }

        .todo-component ul:not(ul ul) > li::before {
            content: "";
            display: block;
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            transition: all 0.3s;
            height: calc(100% - 2px);
            background-color: rgba(0, 0, 0, 0.4);
            z-index: -1;
            transform-origin: bottom left;
            transform: translate3d(8px, 2px, -1px) rotate(1deg);
            filter: blur(2px);
        }


.todo-component input[type="checkbox"] {
    appearance: none;
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid #1C274C;
    border-radius: 3px;
    margin-right: 1rem;
    position: relative;
    top: 0.2rem;
    cursor: pointer;
}

    .todo-component input[type="checkbox"]:checked {
        background-color: #1C274C;
    }

        .todo-component input[type="checkbox"]:checked::after {
            content: "✓";
            color: white;
            font-size: 1rem;
            position: absolute;
            left: 0.2rem;
            top: -0.1rem;
        }

        .todo-component input[type="checkbox"]:checked + span {
            text-decoration: line-through;
            opacity: 0.6;
        }

.todo-component label {
    display: flex;
    align-items: center;
    cursor: pointer;
}




.alert-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    
}

.alert {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-left: 4px solid;
    border-radius: 0.5rem;
    
    max-width: 500px;
}

    

    .alert svg {
        width: 20px;
        height: 20px;
        margin-right: 0.5rem;
        flex-shrink: 0;
    }

    .alert p {
        font-size: 1rem;
        font-weight: 300;
        margin: 0;
    }

/* Alert types */
.alert-success {
    background-color: #d1fae5;
    border-color: #10b981;
    color: #065f46;
}

    .alert-success:hover {
        background-color: #a7f3d0;
    }

.alert-info {
    background-color: #dbeafe;
    border-color: #3b82f6;
    color: #1e3a8a;
}

    .alert-info:hover {
        background-color: #bfdbfe;
    }

.alert-warning {
    background-color: #fef9c3;
    border-color: #facc15;
    color: #92400e;
}

    .alert-warning:hover {
        background-color: #fef08a;
    }

.alert-error {
    background-color: #fee2e2;
    border-color: #ef4444;
    color: #991b1b;
}

    .alert-error:hover {
        background-color: #fecaca;
    }










/* From Uiverse.io by gharsh11032000 */
.card21 {
    width: 350px;
    padding: 20px;
    color: white;
    background: linear-gradient(#212121, #212121) padding-box, linear-gradient(288deg, transparent 35%, #e81cff, #40c9ff) border-box;
    border: 2px solid transparent;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transform-origin: right bottom;
}

    .card21 .main-content21 {
        flex: 1;
    }

    .card21 .header21 span:first-child {
        font-weight: 600;
        color: #ffb800;
        font-size:1.1rem;
        margin-right: 4px;
    }

    .card21 .heading21 {
        font-size: .9rem;
        margin: 12px 0 8px;
        font-weight: 400;
    }

    .card21 .categories21 {
        display: flex;
        gap: 8px;
        flex-direction: column;
    }

        .card21 .categories21 span {
            background-color: rgb(232, 28, 255);
            padding: 4px 8px;
            /* font-weight: 600; */
            text-transform: uppercase;
            font-size: .76rem;
            border-radius: 8px;
        }

    .card21 .footer21 {
        font-weight: 600;
        color: #717171;
        margin-right: 4px;
    }












/* From Uiverse.io by marwam112010 */
.card22pack-container {
    position: relative;
    display: flex;
    max-width: 350px;
    flex-direction: column;
    border-radius: 12px;
    background-color: #212121;
    border: 1px solid #fff;
    padding: 1.6rem;
    color: #fff;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.card22header {
    position: relative;
    margin: 0;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 0;
    border-bottom: 1px solid #fff;
    background: transparent;
    padding-bottom: 1rem;
    text-align: center;
}

.card22title {
    display: block;
    font-family: sans-serif;
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-transform: uppercase;
    color: #fff
}

.card22price-container {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    font-family: sans-serif;
    font-size: 1rem;
    line-height: 1;
}

    .card22price-container span:first-child {
        margin-top: 2px;
        font-size: 1.2rem;
        line-height: 2.5rem;
    }

    .card22price-container span:last-child {
        align-self: flex-end;
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

.card22lists {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: .9em;
}

.card22list {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .card22list span {
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.24);
        background-color: rgba(255, 255, 255, 0.185);
        height: 25px;
        width: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .card22list span svg {
            height: 12px;
            width: 12px;
        }

    .card22list p {
        display: block;
        font-family: sans-serif;
    }

.card22button-container {
    margin-top: 20px;
    padding: 0;
}

    .card22button-container button {
        display: block;
        width: 100%;
        background-color: #fff;
        padding: 10px 20px;
        text-transform: uppercase;
        color: #000;
        outline: 0;
        border: 0;
        border-radius: 10px;
    }










/* From Uiverse.io by pablofernz */
.card23foodCard {
    
    width: 250px;
    height: 150px;
    max-height: 500px;
    border-radius: 20px;
    background-color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    position: relative;
    outline: 2px solid rgb(48, 48, 48);
    user-select: none;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.card23Discount {
    position: absolute;
    left: 0;
    font-size: 15px;
    padding: 5px 10px 5px 10px;
    font-weight: 600;
    color: rgb(189, 189, 189);
    background-color: rgb(46, 46, 46);
    border-radius: 15px 0px 15px 0px;
    width: auto;
    height: auto;
    font-style: italic;
}

.card23Like {
    border: none;
    align-items: center;
    justify-content: center;
    display: flex;
    position: absolute;
    right: 0%;
    font-size: 15px;
    padding: 8px;
    color: rgb(210, 210, 210);
    background-color: rgb(48, 48, 48);
    border-radius: 0px 20px 0px 15px;
    width: 40px;
    height: 35px;
    cursor: pointer;
}

    .card23Like > svg {
        transition: all 0.3s ease;
    }

    .card23Like:hover > svg {
        fill: rgb(190, 0, 0);
    }

    .card23Like:focus {
        outline: none;
    }

.card23imageContainer {
    padding: 5px;
    height: 60%;
    width: 100%;
    padding-top: 35px;
    border-radius: 15px;
    display: flex;
    align-content: center;
    justify-content: center;
}

    .card23imageContainer > img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        border-radius: 15px;
    }

.card23foodTitle {
    color: rgb(32, 32, 32);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 200px;
    font-weight: 800;
    padding-top: 5px;
}

.card23priceAndButton {
    position: absolute;
    bottom: 0;
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 15px;
}

.card23Price {
    font-weight: 600;
    padding-left: 5px;
    color: rgb(0, 0, 0);
    font-variant-numeric: tabular-nums;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.card23button {
    padding: 0px 15px;
    height: 25px;
    border: none;
    background-color: rgb(116, 219, 160);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.4s ease;
    opacity: 100%;
    font-size: 15px;
}

    .card23button:hover {
        box-shadow: rgb(116, 219, 160) 0px 0px 15px;
    }

    .card23button:active {
        transform: scale(0.95);
    }












/* From Uiverse.io by SujitAdroja */
.card24columns {
    width: 10em;
    position: relative;
    border-radius: 20px;
    padding: 35px;
    border: 2px solid black;
    transition: all 0.4s;
}

    .card24columns:hover {
        box-shadow: 4px 4px 0 1px rgba(0, 0, 0);
    }

.card24dots {
    position: absolute;
    right: 15px;
    top: 15px;
}

.card24columns .card24button-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.card24offer {
    font-size: 17px;
    font-weight: 900;
    border-bottom: 2px solid black;
    cursor: pointer;
    transition: all 0.4s;
}

.card24btn {
    padding: 7px 15px;
    border: 1px solid black;
    background-color: orange;
    border-radius: 10px;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s;
}

.card24columns:hover .btn {
    box-shadow: 2px 2px 0 1px rgba(0, 0, 0);
}

.card24btn:focus {
    background: transparent;
}

.card24secondary-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.card24card-description {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
}
