/** Custom Styles sincs 2022 **/
.overflow-hidden{
    overflow: hidden;
}

.popup-wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: rgba(9, 73, 127, 0.98);
    /* background-color: rgba(239, 56, 36, 0.9); */
}

.popup-container{
    width: 100%;
    height: 100%;
    margin-right: auto;
    margin-left: auto;

    justify-content: center !important;
    align-items: center !important;
    display: flex;

    font-family: "Open Sans", Helvetica, Arial, Verdana, sans-serif;
}

.popup-content {
    text-align: center;
    width: 100%;
}

.popup-headline {
    font-size: 1rem;
    font-style: bold;
    color: white;
    margin-bottom: 10px;
}

@media (min-width: 540px) {
    .popup-container {
        max-width: 540px;
    }
    .popup-headline {
        font-size: 1.2rem;
    }
}

@media (min-width: 720px) {
    .popup-container {
        max-width: 720px;
    }
    .popup-headline {
        font-size: 1.4rem;
    }
}


@media (min-width: 960px) {
    .popup-container {
        max-width: 960px;
    }
    .popup-headline {
        font-size: 1.6rem;
    }
}

.popup-button{
    padding: 10px;
    cursor: pointer;
    display: inline-flex !important;
    border: 1px solid white;
    color: white;
    margin: 5px;
}

.popup-button span {
    display: contents;
    font-size: 1.4rem;
    font-weight: 600;
}

.bg-secondary-600 {
    background-color: rgba(239, 56, 36, 1);
}

.bg-secondary-600:hover{
    background-color: rgb(214, 38, 18);
}

.bg-primary-400 {
    background-color: rgb(9, 73, 127);
}

.bg-primary-400:hover{
    background-color: rgb(5, 63, 110);
}

.hidden {
    display: none;
}
