* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 1rem;
    font-family: 'Arial';
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    min-height: 100dvh;
    min-height: 100svh;
    background-color: var(--white-grey) !important;
    color: var(--primary-color) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

main {
    width: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

h1 {
    font-size: 3rem !important;
}

h2 {
    font-size: 2.5rem !important;
}

.masifa {
    font-family: 'Masifa' !important;
}

.tusker {
    font-family: 'Tusker' !important;
}

.myriad {
    font-family: 'Myriad' !important;
}

.primary {
    color: var(--primary-color);
}

.primary-background {
    background-color: var(--primary-color);
}

.secondary {
    color: var(--secondary-color);
}

.secondary-background {
    background-color: var(--secondary-color);
}

.strong {
    font-weight: bold !important;
}

.red {
    color: var(--red) !important;
}
.red-background {
    background-color: var(--red) !important;
}
.green {
    color: var(--green) !important;
}
.green-background {
    background-color: var(--green) !important;
}
.orange {
    color: var(--orange) !important;
}
.orange-background {
    background-color: var(--orange) !important;
}

.opacity-0-3 {
    opacity: 0.3;
}

.opacity-0-5 {
    opacity: 0.5;
}

.opacity-0-7 {
    opacity: 0.7;
}

.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}

.text-size-1 {
    font-size: 1rem;
}

.text-size-1-25 {
    font-size: 1.25rem;
}

.text-size-1-5 {
    font-size: 1.5rem;
}

.text-size-2 {
    font-size: 2rem;
}

.text-size-2-25 {
    font-size: 2.25rem;
}

.text-size-2-5 {
    font-size: 2.5rem;
}

.text-size-5 {
    font-size: 5rem;
}

.row {
    display: flex;
    flex-direction: row !important;
    gap: 10px;
    align-items: center;
}

.column {
    display: flex;
    flex-direction: column !important;
}

.gap-5px {
    gap: 5px;
}
.gap-10px {
    gap: 10px;
}
.gap-15px {
    gap: 15px;
}
.gap-20px {
    gap: 20px;
}
.gap-25px {
    gap: 25px;
}
.gap-30px {
    gap: 30px;
}
.gap-35px {
    gap: 35px;
}
.gap-40px {
    gap: 40px;
}
.gap-45px {
    gap: 45px;
}
.gap-50px {
    gap: 50px;
}
.gap-100px {
    gap: 100px;
}

.space-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.full-width {
    width: 100%;
}

.fit-content {
    width: fit-content !important;
}

.max-width-300 {
    max-width: 300px;
}

.max-width-400 {
    max-width: 500px;
}

.max-width-500 {
    max-width: 500px;
}

.flex-grow {
    flex-grow: 1;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.overflow-auto {
    overflow: auto;
}

.overflow-hidden {
    overflow: hidden;
}

.strednik {
    width: 100%;
    border-bottom: 1px solid var(--grey-lighter);
    padding: 5px 0px 5px 0px;
}

.btn {
    all: unset;
    cursor: pointer;
    padding: 4px 15px 4px 15px !important;
    font-size: 0.9rem !important;
    text-align: center;
    border-radius: 4px;
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    box-shadow: var(--box-shadow);
}

.btn:hover {
    opacity: 0.7;
}

.btn.red {
    background-color: var(--red) !important;
}

.input {
    all: unset;
    padding: 3px 5px 3px 5px;
    border: 1px solid var(--grey);
    background-color: var(--white);
    border-radius: 4px;
}

/*NAVIGACE*/

.header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--white);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-shadow: var(--box-shadow);
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 999;
}

.header-content {
    width: 1500px;
    height: 70px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.header-content .logo {
    cursor: pointer;
    width: 175px;
}

.header-content .logo:hover {
    opacity: 0.8;
}

.navigace {
    font-weight: bold;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    
}

.nav-btn {
    all: unset;
    height: 50px;
    padding: 0px 10px 0px 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;  
    text-align: center;  
}

.nav-btn span {
    cursor: pointer;
    font-size: 1.25rem;
}

.nav-btn span:hover {
    color: var(--secondary-color);
}

.submenu {
    cursor: pointer;
    display: none;
    height: 50px;
    position: absolute;
    bottom: -50px;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-left: 1px solid;
    border-right: 1px solid;
    border-bottom: 1px solid;
    border-radius: 4px;
    border-color: var(--white-grey);
    padding: 0px 10px 0px 10px;
    white-space: nowrap;
    font-size: 1rem;
    z-index: 100;
}

.submenu:hover {
    color: var(--secondary-color);
}

.submenu a {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.nav-btn:hover .submenu {
    display: flex;
}

.navigace-hamburger {
    display: none;
    margin-right: 15px;
    z-index: 9999;
}

@media screen and (max-width:900px) {
    .header {
        position: unset;
        top: unset;
    }

    .navigace {
        display: none;
        position: absolute;
        top: 70px;
        width: 100vw;
        background-color: var(--white);
        flex-direction: column;
        gap: 5px;
    }

    .navigace.active {
        display: flex;
    }

    .navigace-hamburger {
        display: flex;
    }

    .submenu {
        all: unset;
        font-size: 0.9rem;
    }

    .header-content:hover .navigace {
        display: flex;
    }

    .header-content:hover .navigace-hamburger {
        display: none;
    }

}

/*FOOTER*/
footer {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 0px 5px 0px;
    display: flex;
    justify-content: center;
}

footer .zadavatel {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    white-space: none;
}

footer .zadavatel span {
    font-size: 0.8rem;
}

footer a {
    all: unset;
    cursor: pointer;
    font-size: 0.8rem;
}
footer a:hover {
    opacity: 0.7;
}

@media screen and (max-width: 500px) {
    footer .zadavatel {
        flex-direction: column;
        gap: 5px;
    }

    footer .zadavatel .slash {
        display: none;
    }
}

/*HOME*/

.banner {
    width: 100%;
    padding: 100px 0px 0px 0px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner img {
    width: 100%;
    max-width: 1500px;
    content:url("/img/header_pc.jpg");
}

@media screen and (max-width:900px) {
    .banner img {
        content:url("/img/header_mobile.jpg");
    }
}

.about {
    width: 100%;
    display: flex;
    background: var(--primary-color);
    color: var(--white);
    justify-content: center;
    align-items: center;
    padding: 50px 10px 100px 10px;
}

.about-content {
    width: 100%;
    max-width: 1500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-content .wrapper {
    margin-top: 70px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.about-content .wrapper img {
    width: 600px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

.about-content .wrapper ul {
    width: 600px;
}

.about-content .wrapper ul h2 {
    margin-bottom: 30px;
}

.about-content .wrapper ul {
    line-height: 1.8;
}

.about-content .wrapper ul li {
    margin-left: 18px;
    font-size: 1.25rem;
}

@media screen and (max-width:600px) {
    .about-content .wrapper img {
        width: 95%;
    }

    .about-content .wrapper ul {
        width: 95%;
    }
}

.kraj {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 70px 25px 70px 25px;
}

.kraj-content {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
}

.kraj-content h2 {
    align-self: center;
    margin-bottom: 50px;
}

.kraj-content .signature {
    width: 150px;
}

.priority {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 70px 10px 70px 10px;
}

.priority-content {
    width: 100%;
    max-width: 1600px;
    display: flex;
    flex-direction: column;
}

.priority-content h2 {
    align-self: center;
    margin-bottom: 50px;
}

.priority-content .wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.priorita {
    position: relative;
    cursor: default;
    width: 300px;
    height: 350px;
    border-radius: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    transition: 0.2s;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.priorita:hover {
    transform: scale(1.03);
}

.priorita i {
    font-size: 4rem;
}

.priorita .title {
    font-size: 1.35rem;
}

.priorita .text {
    font-size: 1rem;
}

.priority-content .proklik {
    all: unset;
    margin-top: 70px;
    width: fit-content;
    cursor: pointer;
    font-family: 'Masifa';
    padding: 15px 25px 12px 25px;
    background-color: var(--secondary-color);
    color: var(--white);
    color: var(--white);
    border-radius: 7px;
    box-shadow: var(--box-shadow);
    font-size: 1.4rem;
    align-self: center;
}

.priority-content .proklik:hover {
    opacity: 0.7;
}


.team {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 70px 10px 70px 10px;
}

.team-content {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
}

.team-content h2 {
    align-self: center;
    margin-bottom: 50px;
}

.team-content .wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.politik {
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.politik img {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 25px;
}

.politik h3 {
    all: unset;
    font-size: 1.2rem;
    font-family: 'Masifa';
}

.politik .info {
    margin-bottom: 15px;
    color: var(--black);
}

.politik .job {
    font-size: 0.8rem;
    color: var(--black);
    line-height: 1.2;
}

.team-content .proklik {
    all: unset;
    margin-top: 70px;
    width: fit-content;
    cursor: pointer;
    font-family: 'Masifa';
    padding: 15px 25px 12px 25px;
    background-color: var(--secondary-color);
    color: var(--white);
    color: var(--white);
    border-radius: 7px;
    box-shadow: var(--box-shadow);
    font-size: 1.4rem;
    align-self: center;
}

.team-content .proklik:hover {
    opacity: 0.7;
}


.news {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 70px 10px 70px 10px;
}

.news-content {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news-content h2 {
    align-self: center;
    margin-bottom: 50px;
}

.karticka {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.karticka img {
    width: 100%;
    border-bottom: 2px solid var(--primary-color);
}

.karticka .date {
    font-size: 0.8rem;
    color: grey;
    margin-left: 15px;
}

.karticka .title {
    font-family: 'Masifa';
    font-size: 1.5rem;
    text-align: center;
}

.karticka pre {
    font-family: 'Arial';
    font-size: 1.2rem;
    white-space: pre-wrap;
    padding: 0px 15px 0px 15px;
}

.karticka .link {
    text-align: center;
    margin-bottom: 10px;
}

.news-content .proklik {
    all: unset;
    margin-top: 70px;
    width: fit-content;
    cursor: pointer;
    font-family: 'Masifa';
    padding: 15px 25px 12px 25px;
    background-color: var(--secondary-color);
    color: var(--white);
    color: var(--white);
    border-radius: 7px;
    box-shadow: var(--box-shadow);
    font-size: 1.4rem;
    align-self: center;
}

.news-content .proklik:hover {
    opacity: 0.7;
}

.kontakt {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 70px 10px 70px 10px;
    background-color: var(--primary-color);
    color: var(--white);
}

.kontakt-content {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kontakt-content h2 {
    align-self: center;
    margin-bottom: 50px;
}

.kontakt-content .wrapper {
    width: 100%;
    max-width: 1500px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 100px;
    flex-wrap: wrap;
}

.kontakt-content .vizitka {
    display: flex;
    flex-direction: column;
}

.kontakt-content .vizitka .job {
    font-size: 1.25rem;
    text-align: center;
}

.kontakt-content .vizitka .name {
    font-size: 2rem;
    font-family: 'Masifa';
    margin-top: 15px;
    text-align: center;
}

.kontakt-content .vizitka .small {
    margin-top: -10px;
    font-size: 0.8rem;
    height: 30px;
    text-align: center;
}

.kontakt-content .vizitka .icon {
    width: 35px;
}

.kontakt-content .vizitka .socials {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.kontakt-content .vizitka .socials a {
    all: unset;
    cursor: pointer;
}

.kontakt-content .vizitka .socials a:hover {
    color: var(--secondary-color);
}

.kontakt-content .vizitka .socials a i {
    font-size: 2.5rem;
}

@media screen and (max-width:800px) {
    .kontakt-content .wrapper {
        flex-direction: column;
        justify-content: unset;
        align-items: center;
    }
}


/*CELA KANDIDATKA*/

.cela-kandidatka h1 {
    margin-top: 50px;
    text-align: center;
}

.cela-kandidatka .wrapper {
    margin-top: 50px;
    margin-bottom: 100px;
    width: 100%;
    max-width: 1500px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
}

.cela-kandidatka .medailonek {
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cela-kandidatka .medailonek .name,
.cela-kandidatka .medailonek .secondary {
    font-family: 'Masifa';
    font-size: 1.75rem;
}

.cela-kandidatka .medailonek .info {
    font-weight: bold;
}

.cela-kandidatka .medailonek .job {
    margin-top: 5px;
    font-weight: bold;
    font-size: 0.8rem;
    text-align: center;
}

.cela-kandidatka .medailonek .text {
    margin-top: 15px;
    text-align: left;
}

.cela-kandidatka .medailonek .text i {
    cursor: pointer;
}

.cela-kandidatka .medailonek .text i:hover {
    color: var(--secondary-color);
}

.cela-kandidatka img {
    width: 100%;
}

/*KOMPELTNI PROGRAM*/

.program h1 {
    margin-top: 50px;
    text-align: center;
}

.program-section {
    width: 90%;
    max-width: 1500px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.program-section h2 {
    font-family: 'Masifa';
    color: var(--secondary-color);
}

.program-section ul {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.program-section li {
    font-size: 1.25rem;
}

/*ARCHIV*/

.archiv h1 {
    margin-top: 50px;
}

.archiv .wrapper {
    width: 95%;
    max-width: 1500px;
    margin-top: 50px;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
}


/*SOUHLAS*/

.souhlas h1 {
    margin-top: 50px;
}




/*ADMIN PANEL*/

.admin {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.adminPanel {
    width: 250px;
    min-width: 250px;
    height: 100vh;
    height: 100dvh;
    height: 100svh;
    display: flex;
    flex-direction: column;
    background-color: white;
    box-shadow: var(--box-shadow);
    transition: 0.2s;
}

.adminNav {
    width: 100%;
    flex-grow: 1;
    padding: 15px 0px 15px 0px;
    display: flex;
    flex-direction: column;
    background-color: var(--grey-lighter);
    box-shadow: var(--box-shadow);
}

.adminNav .bars {
    cursor: pointer;
    text-align: right;
    margin-right: 5px;
    margin-bottom: 8px;
}
.adminNav .bars:hover {
    opacity: 0.7;
}

.adminBtn {
    all: unset;
    cursor: pointer;
    border: 1px solid transparent;
    border-left: 6px solid transparent;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    padding: 5px 10px 5px 10px;
    transition: 0.2s;
}

.adminBtn:hover {
    border-color: var(--primary-color);
    border-right: 1px solid transparent;
}

.adminBtn:focus {
    background-color: var(--primary-color);
    color: var(--white);
}

.adminBtn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.appNav {
    width: 100%;
    padding: 10px 0px 10px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    box-shadow: var(--box-shadow);
}

.appNav small {
    text-align: center;
}

.adminContent {
    flex-grow: 1;
    height: 100vh;
    height: 100dvh;
    height: 100svh;
    background-color: whitesmoke;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: auto;
}

.dashboard {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;

}

.container-box {
    width: 100%;
    max-width: 400px;
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    text-align: center;
    gap: 20px;
}

.container-box .icon {
    font-size: 2rem;
}

.container-box small {
    font-size: 0.9rem;
}

.adminAktuality {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
}

.adminAktuality .aktualita {
    all: unset;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--grey);
    border-radius: 4px;
    background-color: var(--white);
    padding: 10px;
    transition: 0.2s;
    gap: 10px;
}

.adminAktuality .aktualita:hover {
    opacity: 0.7;
    transform: scale(1.003);
}

.addAktualita {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.imgAktualita {
    cursor: pointer;
    width: 100%;
    max-width: 500px;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

#adminModal {
    position: fixed;
    bottom: 15px;
    left: 12px;
    padding: 25px 40px 25px 40px;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 999;
}

#adminModal .close {
    cursor: pointer;
    position: absolute;
    top: 7px;
    right: 7px;
}

#adminModal a {
    all: unset;
    cursor: pointer;
    width: 100%;
    padding: 5px 10px 5px 5px;
    border-radius: 4px;
    font-size: 0.8rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

#adminModal a:hover {
    opacity: 0.7;
}

@media screen and (max-width:500px) {
    .adminPanel {
        width: 25px;
        min-width: 25px;
    }

    .adminBtn {
        font-size: 0px;
    }

    .appNav {
        font-size: 0px;
    }
}



/*MAINTENANCE*/

.maintenance {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.maintenance i {
    font-size: 5rem;
    color: var(--secondary-color);
}

/* FLASH */
.flash-message {
    position: fixed;
    top: 100px;
    width: 90%;
    max-width: 450px;
    align-self: center;
    padding: 10px 20px 10px 20px;
    border: 2px solid;
    border-radius: 4px;
    color: var(--white);
    text-align: center;
    font-weight: bold;
    z-index: 999;
}

.flash-message.primary {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.flash-message.red {
    border-color: var(--red);
    background-color: var(--red);
}

/*netteForms*/

.netteFormsModal {
    border: 2px solid var(--primary-color) !important;
    border-radius: 6px !important;
    font-size: 1rem !important;
}

.netteFormsModal button {
    all: unset;
    padding: 5px 20px 5px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    color: var(--primary-color);
    font-weight: bold;
}

.netteFormsModal button:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/*back-to-top*/
#backToTop {
    all: unset;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 100%;
    background-color: var(--white);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
    z-index: 999;
}

#backToTop:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

@media screen and (max-width: 500px) {
    #backToTop {
        right: 12px;
        bottom: 12px;
    }
}

/*LOGIN*/

.login {
    height: 100vh;
    height: 100dvh;
    height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-form {
    width: 300px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.login-form .msg {
    text-align: center;
}

.login-form input {
    all: unset;
    padding: 5px 10px 5px 10px;
    border-radius: 4px;
    border: 2px solid var(--primary-color);
    background-color: var(--white);
}

.login-form button {
    all: unset;
    cursor: pointer;
    padding: 5px 10px 5px 10px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: 0.2s;
}

.login-form button:hover {
    opacity: 0.7;
}

/*FLASH POPUP*/
.flashPopups {
    position: fixed;
    top: 10px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
    max-width: 500px;
    z-index: 999;
}

.flashPopups .flash {
    width: 100%;
    padding: 10px;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    text-align: center;
    border: 2px solid;
    border-radius: 5px;
}