.ktk-modal__wrapper {
    background: -webkit-linear-gradient(right, #0079C1, #004E90);
    background: -moz-linear-gradient(right, #0079C1, #004E90);
    background: -o-linear-gradient(right, #0079C1, #004E90);
    background: linear-gradient(right, #0079C1, #004E90);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    min-height: 680px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    color: #fff;
}

.ktk-modal__wrapper.open {
    display: flex;
}

.ktk-modal__item .title-tertiary {
    padding-top: 60px;
    text-align: center;
}

.ktk-modal__item .title-tertiary .title-tertiary__main {
    margin-bottom: 8px;
}

.ktk-modal__item .title-tertiary .title-tertiary__caption {
    margin-bottom: 40px;
}

.ktk-modal__close {
    font-size: 14px;
    display: flex;
    justify-content: flex-end;
    cursor: pointer;
}

@media (max-width: 768px) {
    .ktk-modal__wrapper {
        height: 100%;
        overflow: auto;
    }

    .ktk-modal__item .title-tertiary {
        padding-top: 60px;
        text-align: center;
    }

}