.v_show {
  display: block !important;
}

.v_modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
  background-color: rgba(128, 128, 128, 0.7);
  /* Grey color with 50% transparency */
}

.v_modal-dialog {
  background: white;
  max-width: 40%;
  
  padding: 10px;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 25px;
}

.v_modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
}


.close{
    border: none;
    font-size: 29px;
    color: #7a7a7a;
    background: white;
    cursor: pointer;
    transition: 0.1s;
    margin-top: -30px;
}

.close:hover{
    color: black;
    transform: scale(1.1);
}

.v_modal-body{
    height: auto;
    min-height: 50px;
    font-family: sans-serif;
}

.v_modal-footer{
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.v_btn{
    border: none;
    padding: 10px;
    color: white;
    margin: 0px 10px;
    cursor: pointer;
    transition: 0.3s;
    padding: 10px 20px;
}

.v_btn:hover{
    transform: scale(1.1);
}

.v_btn_red{
    background: rgb(249, 17, 118);
}

.v_btn_blue{
    background: rgb(26, 86, 251);
}

.v_modal-content{
    border: none;
}

.v_modal-title{
    font-size: 18px;
    font-family: sans-serif;
    font-weight: 700;
}