.popup {
    position: fixed;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.75);
    width: 100vw;
    height: 100vh;
    display: none;
    z-index: 9;
}

/* Popup inner div */
.popup-content {
    width: 580px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 45px 20px 30px 20px;
    background: #fff;
    position: relative;
    /* display: flex;
    flex-direction: column;
    justify-content: center; */
    /* align-items: center; */
}

.popup-close {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 20px;
    height: 20px;
    opacity: 0.3;
}

.popup-close:hover {
    cursor: pointer;
    opacity: 1;
}

.popup-close:before, .popup-close:after {
    position: absolute;
    content: ' ';
    height: 20px;
    width: 2px;
    background-color: #333;
}

.popup-close:before {
    transform: rotate(45deg);
}

.popup-close:after {
    transform: rotate(-45deg);
}

.popup-content > p {
    font-size: 13px !important;
}

.popup-content > p .emphasis {
    font-size: 14px !important;
}

.popup-content > h2 {
    font-size: 18px !important;
    letter-spacing: normal !important;
}

.popup-content__strong {
    font-weight: bold;
}

.popup-content__strong--main-color {
    color: #2F5769;
}

.popup-content__datepicker {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 40px;
}

.popup-content__text {
    display: flex;
    flex-direction: column;
}


@media screen and (max-width: 720px) {
    .popup-content {
        width: 90%;
        padding: 40px;
    }
}

.popup-actions {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}


@media screen and (max-width: 720px) {
    .popup-actions {
        flex-direction: column;
        align-items: center;
    }
}

.popup-radio-container {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
    .popup-radio-container {
        justify-content: flex-start;
        margin-bottom: 0;
    }
}

.popup-radio-container-center {
    display: grid;
    place-content: center;
    gap: 1em;
    width: 50%;
    font-size: 13px !important;
}

@media screen and (max-width: 768px) {
    .popup-radio-container-center {
        width: 90%;
    }
}


.popup-radio-container-center input[type=radio] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    /* Remove most all native input styles */
    appearance: none;
    /* For iOS < 15 */
    background-color: var(--form-background);
    /* Not removed via appearance */
    margin: 0;

    font: inherit;
    color: currentColor;
    width: 15px;
    height: 15px;
    border: 1px solid #2F5769;
    border-radius: 100%;
    transform: translateY(0.2em);

    display: grid;
    place-content: center;
}

.popup-radio-container-center input[type=radio]::before {
    content: "";
    height: 5px;
    width: 5px;
    border-radius: 100%;
    background: #2F5769;
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
    /* Windows High Contrast Mode */
    background-color: CanvasText;
}

.popup-radio-container-center input[type=radio]:checked::before {
    transform: scale(1);
}

.popup-radio-container-center label {

    font-weight: 300;
    cursor: pointer;
    -webkit-transition: all 0.25s linear;
    display: grid;
    grid-template-columns: 2em auto;
    gap: 0.5em;
    text-align: left;
}

@media screen and (max-width: 768px) {
    .radio-container-item {
        margin-bottom: 10px;
    }
}



.hu-popup {
    position: fixed;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.75);
    width: 100vw;
    height: 100vh;
    display: none;
    z-index: 9;
}

/* Popup inner div */
.hu-popup-content {
    width: 700px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 75px 105px;
    background: #fff;
    border-radius: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.hu-popup-content__text {
    text-align: center;
    font-size: 14px !important;
}

.hu-popup-content__text--emphasis {
    font-weight: bold !important;
}

.hu-popup-content__title {
    font-size: 34px !important;
    letter-spacing: 0 !important;
    font-weight: bold;
    line-height: normal;
}

.hu-button {
    display: flex;
    width: 284.76px;
    padding: 14.464px 28.928px;
    justify-content: center;
    align-items: center;
    gap: 9.04px;

    border-radius: 45.2px;
    background: #B05F30;

    color: #ffffff !important;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21.696px */
    letter-spacing: -0.289px;
    text-transform: uppercase;
}


@media screen and (max-width: 720px) {
    .hu-popup-content {
        width: 90%;
        padding: 40px;
    }
}

.hu-popup-actions {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}


@media screen and (max-width: 720px) {
    .hu-popup-actions {
        flex-direction: column;
        align-items: center;
    }
}

.hu-popup-radio-container {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
    .hu-popup-radio-container {
        justify-content: flex-start;
        margin-bottom: 0;
    }
}

.hu-popup-radio-container-center {
    display: grid;
    place-content: center;
    gap: 1em;
    width: 50%;
    font-size: 13px !important;
}

@media screen and (max-width: 768px) {
    .hu-popup-radio-container-center {
        width: 90%;
    }
}