.modal_18 {
    position: fixed;
    z-index: 9999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #000000ba;
    display: none;
    flex-direction: column;
    justify-content: center;
}

.pop18 {
    background-color: #FCFCFC;
    margin: auto;
    width: 600px;
    border-radius: 20px;
    padding: 25px 35px 30px 35px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.modal-18-content{
    display: flex;
    height: 100dvh;
}

.pop18 header {
    display: flex;
    justify-content: space-between;
}

.pop18 h3 {
    color: var(--color-01);
    font-size: 28px;
    line-height: 31px;
    font-family: "Taz-Bold";
}

.pop18 .close_pop {
    font-size: 30px;
    color: var(--color-01);
    cursor: pointer;
}

.pop18 ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.pop18 ul li {
    font-size: 16px;
    line-height: 19px;
    color: #707070;
    font-family: "Lato-Regular";
    display: flex;
    gap: 15px;
}

.pop18 footer {
    display: flex;
    justify-content: end;
    gap: 15px;
}

.pop18 footer>button {
    cursor: pointer;
    font-size: 14px;
    line-height: 16px;
    font-family: "Taz-SemiBold";
    padding: 12px 36px;
    border: 1px solid var(--color-01);
    border-radius: 20px;
    color: var(--color-01);
    transition: .5s;
}

.pop18 footer>button:nth-child(1) {
    background-color: var(--color-01);
    color: #fff;
}

.pop18 footer>button:nth-child(1):hover {
    background-color: transparent;
    color: var(--color-01);
}

.pop18 footer>button:nth-child(2):hover {
    background-color: var(--color-01);
    color: #fff;
}