:root {
    --color-white: #fff;
    --color-nero: #212121;
}

.scroll-lock-ios {
  position: fixed;
  overflow: hidden;
}

.scroll-lock {
  overflow: hidden;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.6s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.6s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), transform 0.6s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), transform 0.6s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.6s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    pointer-events: none;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.modal::-webkit-scrollbar {
    display: none;
}

.modal__wrapper {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    background-color: rgba(33, 33, 33, 0.6);
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    min-height: 100%;
    padding: 60px 40px;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.modal__content {
    position: relative;
    width: 620px;
    padding: 40px;
    border-radius: 30px;
    background-color: #ffffff;
}

.modal__close-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    padding: 0;
    border: none;
    cursor: pointer;
    min-width: auto;
    padding: 20px;
    background-color: transparent;
}

.modal__close-btn svg {
    display: block;
}

.modal--preload {
    -webkit-transition: none;
    transition: none;
}

.modal.is-active {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), transform 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), transform 0.6s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    pointer-events: auto;
}

.modal iframe {
    max-width: 100%;
    border: none;
}

.modal__content--text-styling

.modal__content--text-styling {
    font-size: 18px;
    line-height: 135%;
    color: var(--color-nero);
}

.modal__content--text-styling h3 {
    font-weight: 600;
    font-size: 30px;
    line-height: 120%;
    color: var(--color-nero);
    margin-top: 40px;
    margin-bottom: 40px;
}

.modal__content--text-styling h3:first-child {
    margin-top: 0;
}

.modal__content--text-styling > p {
    margin-bottom: 20px;
}

.modal__content--text-styling > p:last-child {
    margin-bottom: 0;
}

.modal__content--text-styling ul {
    margin-bottom: 20px;
}

.modal__content--text-styling blockquote {
    font-style: italic;
}

.modal__content--text-styling ul.modal__list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .modal__close-btn {
        top: 10px;
        right: 10px;
        padding: 13px;
    }

    .modal__close-btn svg {
        width: 14px;
        height: 14px;
    }

    .modal__content {
        width: 400px;
        padding: 20px;
        border-radius: 20px;
    }

    .modal__content--text-styling {
        font-size: 15px;
        color: var(--color-nero);
    }

    .modal__content--text-styling h3 {
        font-size: 26px;
        margin-bottom: 30px;
    }
}
