.modal_wrapper {
    display: none;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    backdrop-filter: blur(14px);
    left: 0;
    z-index: 2;
    overflow: hidden;

}

.modal_content {
    background-color: #13151a;
    padding-block: 15px;
    padding-inline: 50px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal_content > img {
    width: 220px;
}

.modal_content > h4 {
    color: #ffffff;
    margin-top: 15px;
}

.modal_content > input {
    margin-top: 12px;
    width: 100%;
    border-radius: 8px;
    border: 1.5px solid #3046d0;
    padding: 4px;
    display: flex;
    z-index: 2;
    background-color: #13151a;
    outline: none;
    transition: all .3s;
    font-size: 16px;
    color: #fff;
}
.modal_content > input:focus {
    backdrop-filter: blur(4px);
    box-shadow: 0px 2px 25px 2px rgba(48,70,208,0.75);
    -webkit-box-shadow: 0px 2px 25px 2px rgba(48,70,208,0.75);
    -moz-box-shadow: 0px 2px 25px 2px rgba(48,70,208,0.75);
}

.modal_content > button {
    margin-top: 15px;
    width: 100%;
    max-width: 200px;
    min-width: 50%;
    padding: 4px;
    background-color: #3046d0;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    color: #fff;
    transition: all .3s;
}

.modal_content > ul {
    width: 100%;
    border: 1.5px solid #3046d0;
    margin-top: -10px;
    padding-top: 14px !important;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding-block: 4px;
    border-radius: 8px;
    border-top: none;
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.modal_content > ul > p {
    padding-block: 6px;
    padding-inline: 7px;
    font-size: 18px;
    color: #fff;
    text-align: center;
}

.modal_content > ul > li {
    padding-block: 4px;
    padding-inline: 7px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    transition: all .3s;
    display: none;
}
.modal_content > ul > li.selected {
    background-color: #3046d0;
}

.modal_content > ul > li:hover {
    background-color: #2739b1;
    color: #fff;
}

.modal_content > button:hover {
    background-color: #2739b1;
}