html, body {
  height: 100%;
}

/* Validation messages */
.alert > ul {
  text-align: center;
  list-style: none;
  padding: 0;
}

/* Header user text paragraphs */
.user-text {
  line-height: 1.5em;
}

.center-flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 40px;
}

@media (max-width: 767px) {
  .center-form {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .center-form {
    width: 500px;
  }
}
@keyframes item-added-to-table {
  from {
    background-color: #1ca8dd;
  }
  to {
    background-color: rgba(0, 0, 0, 0);
  }
}
.table-item-added {
  background-color: #1ca8dd;
  animation-name: item-added-to-table;
  animation-duration: 2s;
  animation-delay: 3s;
  animation-fill-mode: forwards;
}

/* Thumbnails */
#imageList .imageContainer {
  position: relative;
  cursor: pointer;
  margin-bottom: 2px;
}

#imageList .imageContainer img {
  width: 100%;
  border-radius: 3px;
}

#deleteButton {
  display: none;
  position: absolute;
  left: 100%;
  transform: translate(-70%, -30%);
  background-color: #e33145;
  height: 24px;
  width: 24px;
  border-radius: 12px;
  border-style: solid;
  border-width: 1px;
  font-size: 18px;
  z-index: 100;
}

#deleteButton .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
}

#imageList .imageContainer #showText {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(150, 150, 150, 0.8);
  padding: 5px 10px;
  color: white;
  border-radius: 3px;
  font-size: 18px;
}

/* Paginator */
ul.pagination li {
  cursor: pointer;
}

/* The Modal (background) */
.full-modal {
  display: none;
  position: fixed;
  z-index: 5;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}

/* Modal Content */
.full-modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
}

/* The Close Button */
.full-modal-close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.full-modal-close:hover,
.full-modal-close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

/* Caption text */
.full-modal-caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

.modal .dz-preview {
  background-color: unset !important;
}
