.l-modal {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.l-terminate {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 25%;
    min-width: 24rem;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0px 0px 18px 0px #0000001F;
    position: fixed;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 12px 18px 12px;
    font-size: 12px;
    max-width: 420px;
}

.l-modal-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.l-terminate__header {
    position: relative;
}

.l-terminate-img {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 50%;
    width: 112px;
    height: 112px;
    transform: translateX(-50%) translateY(-38%);
    border-radius: 100em;
    background-color: #FFF8DE;
}

.l-terminate-img img {
    width: auto;
    height: auto;
    margin-top: -12px;
}

.l-terminate__main {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    padding: 70px 12px 24px 12px;
}

.l-terminate__title {
    font-weight: 700;
    color: #616161;
}

.l-terminate__text {
    color: #616161;
}

.l-terminate__footer {
    text-align: center;
}

.l-terminate-btn {
    padding: 6px 12px;
    border-radius: 3px;
    font-weight: 700;
    background-color: #FECB42;
    color: #fff;
    transition: .2s;
    border: none;
    cursor: pointer;
}

.l-terminate-btn:hover {
    background-color: #FFE293;
}