.urloppopup {
    position: fixed;
    z-index: 999999;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.urloppopup.is-visible {
    display: flex;
}

.urloppopup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
}

.urloppopup__dialog {
    position: relative;
    width: 100%;
    max-width: 560px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    box-sizing: border-box;
    padding: 34px 34px 30px;
    border-radius: 10px;
    background: #fff;
    color: #232323;
    text-align: center;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
}

.urloppopup__close {
    position: absolute;
    top: 8px;
    right: 12px;
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
    color: #555;
    font-size: 32px;
    line-height: 34px;
    cursor: pointer;
}

.urloppopup__icon {
    margin-bottom: 8px;
    font-size: 38px;
    line-height: 1;
}

.urloppopup__title {
    margin: 0 35px 16px;
    font-size: 26px;
    line-height: 1.2;
}

.urloppopup__content {
    font-size: 16px;
    line-height: 1.55;
}

.urloppopup__content p:last-child {
    margin-bottom: 0;
}

.urloppopup__button {
    display: inline-block;
    margin-top: 22px;
    padding: 11px 24px;
    border: 0;
    border-radius: 4px;
    background: #2fb5d2;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.urloppopup__button:hover,
.urloppopup__button:focus {
    opacity: 0.9;
}

body.urloppopup-open {
    overflow: hidden;
}

@media (max-width: 575px) {
    .urloppopup {
        padding: 12px;
    }

    .urloppopup__dialog {
        max-height: calc(100vh - 24px);
        padding: 28px 20px 24px;
    }

    .urloppopup__title {
        margin-left: 25px;
        margin-right: 25px;
        font-size: 23px;
    }
}
