.wrapper-modal  {
    box-sizing: border-box;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    transition-property: opacity;
    transition-duration: 300ms;
    transition-timing-function: linear;
    opacity: 1;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
}
.modal-container {
    display: flex;
    -webkit-box-pack: center;
    justify-content: start;
    /* align-items: flex-start; */
    height: 100vh;
    overflow: visible;
    width: 100%;
    background: #fff;
    max-width: 700px;
    max-height: 700px;
    border-radius: 3px;
    flex-direction: column;
    min-height: 425px;
}
.modal-header {
    height: 50px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #cccc;
}
.back-button {
    /* background: #f00; */
    width: 50px;
    text-align: center;
    align-items: center;
    cursor: pointer;
}
.back-button svg{
    color: #000;
}
.modal-title {
    flex: 1;
    font-weight: 600;
    font-size: 24px;
    color: rgb(22, 24, 35);
    padding-left: 10px;
}
.close_button {
    width: 50px;
    text-align: center;
    cursor: pointer;
}
.close_button svg{
    transition: all .3s ease-in-out;
}
.close_button:hover svg{
    transform: scale(1.2) rotate(90deg);
}
.modal-content {
    flex: 1;
    max-height: 650px;
    overflow: hidden;
}

@media screen and (max-width: 480px) {
    .modal-container{
        width: 100%;
        height: 100dvh;
        max-height: unset !important;
        border-radius: 0 !important;
    }

    .modal-content {
        max-height:unset
    }
}
