.custom-modal.hide{
    display: none;
}

.custom-modal{
    z-index: 10;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

.custom-modal .custom-modal-background{
    width: 100%;
    height: 100%;
    background: var(--colorTransparent);
}

.custom-modal .custom-modal-content{
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
}

.custom-modal .custom-modal-body{
    width: 350px;
    margin: auto;
    background: var(--colorPrimary);
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}

.custom-modal .custom-modal-main{
    padding: 16px;
}

.custom-modal .custom-modal-footer{
    padding: 16px;
    background: white;
}

.content-input{
    margin-bottom: 16px;
    width: 100%;
    
}

.content-input .content-input-title{
    width: 100%;
    
}

.content-input input{
    background: white !important;
    width: 100%;
    border: 2px solid var(--green);
    height: 48px;
    padding-left: 8px;
    font-size: 24px;
    font-weight: 500;
    border-radius: 4px;
    color: var(--green);
}

.custom-modal-main button{
    height: 48px;
}