.modal-main-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  animation: slide-down 300ms;
}

.modal-content-wrapper {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  margin: 0 auto;
  transition: all 300ms;
}

.show-contact-modal {
  display: flex;
}

.hide-contact-modal {
  display: none;
}

.modal-header {
  display: flex;
  justify-content: space-between;
}

.modal-heading {
  font-size: 14px;
  color: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
}

.modal-body {
  display: flex;
  justify-content: space-between;
  padding: 0 20px 20px 20px;
  overflow-y: auto;
  animation: slide-down 600ms;
}

.modal-body-content {
  width: 100%;
}

.modal-button {
  border: none;
  background-color: transparent;
  padding: 20px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.resume-pdf object {
  height: 90vh;
}

.image-preview-container {
  overflow-x: auto;
  overflow-y: auto;
  margin: 20px 0;
}

.image-preview-container.max-size-limit .image-wrapper {
  max-width: 80%;
  margin: 0 auto;
}

.image-preview-container .image-wrapper {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #555;
}

.image-preview-container .image-wrapper:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 20px;
}

.image-preview-container .image-shot {
  padding: 10px;
  margin-bottom: 5px;
  text-align: center;
  border-radius: 6px;
}

.image-preview-container .image-shot.svg-shot {
  padding: 100px;
  max-width: 65%;
  margin: 0 auto;
  background-color: #fff;
}

.image-preview-container .image-shot:last-child {
  margin-bottom: 0;
}

.image-preview-container .image-shot img {
  max-width: 100%;
  border-radius: 6px;
}

.image-preview-container .image-description {
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
}

.image-preview-container .image-description h4 {
  font-weight: normal;
}

.image-preview-container .image-description p {
  font-size: 14px;
}

.art-bio {
  margin: 0 auto;
}

.art-bio p {
  margin-bottom: 10px;
}

@keyframes modal-animation {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
} 

/*# sourceMappingURL=modal.css.map */
