#dialog-slide-share {
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
}
/* .dialog-slide-share-content:hover::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "+";
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  background: rgba(231, 231, 231, 0.25);
  backdrop-filter: blur(1.5px);
  cursor: pointer;
} */
.dialog-slide-share-content {
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  height: 13rem;
}
.image-list {
  max-height: 43vh;
  max-width: 680px;
  overflow: auto;
  line-height: 0;
  text-align: center;
  padding: 8px;
  border-radius: 2px;
  position: relative;
  white-space: normal;
  background-color: transparent;
  color: white;
}

.slide-thumbnail {
  position: relative;
  display: inline-block;
  width: 130px;
  height: 90px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: 4px;
  border-radius: 2px;
  /*background-color: black;*/
}

.image-list > img {
  display: block;
  width: 100%;
}

.slide-delete {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(231, 231, 231, 0.4);
  backdrop-filter: blur(4px);
  line-height: 90px;
  text-align: center;
  text-shadow: 1px 1px 1px black;
  color: white;
  cursor: pointer;
  border-radius: 2px;
}

.slide-thumbnail:hover .slide-delete {
  display: block;
}

.slides-loading {
  text-align: center;
  overflow: visible;
}

.spinner {
  display: inline-block;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 1s infinite linear;
  -moz-animation: spin 1s infinite linear;
  animation: spin infinite linear 1s;
}
.sel-slides-add {
  width: 100%;
  background-color: transparent;
  color: white;
}
.sel-slides-add span {
  width: 100%;
  background-color: transparent;
  color: white;
}
.sel-slides-clear span {
  color: white;
}
.sel-slides-clear:hover span {
  color: rgb(241, 41, 41);
}

@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
