.modal-container {
  z-index: 1;
  display: flex;
  position: fixed;
  overflow: hidden;
  inset: 0;
}
.modal {
  background-color: rgba(0, 0, 0, 0.6);
  overflow: auto;
  position: absolute;
  display: flex;
  inset: 0;
  justify-content: center;
  align-items: center;
}
.modal-login {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-width-400 {
  min-width: 400px;
}
.login-header {
  width: 100%;
}
.login-header-logo {
  display: block;
  margin: 0 auto;
}
.modal .v-list > div:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.modal .v-list > div .delete {
  border-radius: 50%;
  width: 2em;
  height: 2em;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  display: none;
}

.modal .v-list > div .delete:hover {
  background: gray;
}
.modal .v-list > div:hover .delete {
  display: flex;
}
.modal .itemtitle:hover {
  text-decoration: underline;
  cursor: pointer;
}
.modal *[role="listitem"].disabled {
  opacity: 0.3;
  pointer-events: none;
}
.modal .progress-center-icon {
  display: block;
  margin: 0 auto;
}
.modal .buttons-list{
  display: grid;
  grid-template-columns: 150px 150px;
  flex-wrap: wrap;
  max-width: 600px;
  box-sizing: border-box;
  padding: 40px;
}
.modal .buttons-list .v-btn{
  height: auto;
  padding: 1em;
}
.modal .buttons-list .v-btn__content{
  display: flex;
  justify-content: flex-start;
}
.modal .buttons-list .button-list-icon{
  display: flex;
  margin-right:5px;
}
.modal .button-list-title{
  text-transform: capitalize
}