#redirect-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#redirect-modal {
    background-color: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    /* text-align: center; */
    max-width: 720px;
    margin: 32px;
    width: 100%;
    position: relative;
}

#redirect-modal .close {
    position: absolute;
    right: 16px;
    top: 16px;
    height: 24px;
    width: 24px;
    cursor: pointer;
}

#redirect-modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 534px;
    margin: 0 auto;
    text-align: center;
}

#redirect-modal-body .cat {
    width: 158px;
    height: 163px;
    margin-bottom: 40px;
}

#redirect-modal-body .title {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 12px;
    line-height: 1.2;
}

#redirect-modal-body .text {
    margin-bottom: 12px;
    line-height: 1.4;
    font-size: 16px;
    font-weight: 400;
}

#redirect-modal-body .bottom-text {
    font-weight: 700;
    margin-bottom: 40px;
}

#redirect-modal-body .orange {
    color: #FF6622;
    background-color: transparent;
    margin-bottom: 12px;
}

#redirect-modal-body .btn {
    border-radius: 25px;
    background-color: #FF6622;
    color: #ffffff;
    height: 45px;
    width: 298px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    cursor: pointer;
}

#bottom-redirect-modal {
    display: none;
}

@media (max-width: 743px) {
    #redirect-modal {
        display: none;
    }

    #bottom-redirect-modal {
        display: flex;
        position: absolute;
        left: 0;
        bottom: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        width: 100%;
        z-index: 1100;
    }

    #bottom-redirect-modal #body-wrapper {
        background-color: #ffffff;
        width: 100%;
        padding: 0 24px 24px;
    }

    #bottom-redirect-modal #redirect-modal-body {
        width: 312px;
        gap: 24px;
        display: flex;
        flex-direction: column;
    }

    #bottom-redirect-modal #redirect-modal-body .cat {
        width: 106px;
        height: 110px;
        margin-bottom: 0;
    }

    #bottom-redirect-modal .top-panel {
        height: 36px;
        width: 100%;
        border-top-right-radius: 12px;
        border-top-left-radius: 12px;
        background-color: #ffffff;
    }

    #bottom-redirect-modal .top-panel #grey-bar {
        width: 44px;
        height: 4px;
        background-color: #DEDEDE;
        border-radius: 4px;
        margin: 8px auto 0;
        cursor: pointer;
    }

    #redirect-modal-body .title {
        font-size: 22px;
        margin-bottom: 0;
    }

    #redirect-modal-body .text {
        margin-bottom: 0;
        font-size: 14px;
        line-height: 1.2;
    }

    #redirect-modal-body .bottom-text {
        font-size: 16px;
        margin-bottom: 0;
    }
}