
.modal-overlay {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 98;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
 }
 
 .modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  
  width: 100%;
  max-width: 400px;
  background-color: #FFF;
  border-radius: 16px;
  box-shadow: 5px 10px 3px #888888;
  
  padding: 25px;
 }
 
 .fade-enter-active,
 .fade-leave-active {
  transition: opacity .5s;
 }
 
 .fade-enter,
 .fade-leave-to {
  opacity: 0;
 }
 
 .slide-enter-active,
 .slide-leave-active {
  transition: transform .5s;
 }
 
 .slide-enter,
 .slide-leave-to {
  transform: translateX(50%) translateX(100vw);
 }

.modal-split{
  display: flex;
  justify-content: center;
}

.modal-button{
  margin-top: 5px;
  display: flex;
  flex-direction: row;
}

.left-holder{
  display: flex;
  flex-direction: column;
  align-content: center;
  margin-left: 5%;
}

.input-number{
  font-size: 26px;
  height: 30px;
  width: 180px;
}