* {
  box-sizing: border-box;
}

html.modal-opened,
body.modal-opened {
  overflow-y: hidden !important;
}

.modal-opened .hammy-modal-wrapper {
  animation-name: fadeIn;
  animation-duration: 1s;
}

.hammy-modal-wrapper {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  user-select: none;
  z-index: 99999;
}
.hammy-modal-wrapper .hammy-modal-wrapper--controls {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.75);
}
.hammy-modal-wrapper .hammy-modal-wrapper--controls .hammy-modal-wrapper--title-wrapper {
  width: calc(100% - 80px);
  color: #ffffff;
  font-family: sans-serif;
  font-size: 18px;
  line-height: 1.2;
  text-shadow: 0 1px rgba(0, 0, 0, 0.75);
  /*flex: 1 1 auto;*/
  display: flex;
  align-items: center;
  justify-content: center;
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-delay: 1.25s;
  animation-fill-mode: backwards;
}
.hammy-modal-wrapper .hammy-modal-wrapper--controls .hammy-modal-wrapper--title-wrapper span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-left: 40px;
}
@media only screen and (max-width: 667px) {
  .hammy-modal-wrapper .hammy-modal-wrapper--controls .hammy-modal-wrapper--title-wrapper span {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 480px) {
  .hammy-modal-wrapper .hammy-modal-wrapper--controls .hammy-modal-wrapper--title-wrapper span {
    margin-left: 0;
  }
}
.hammy-modal-wrapper .hammy-modal-wrapper--controls .hammy-modal-wrapper--controls-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 80px;
}
.hammy-modal-wrapper .hammy-modal-wrapper--controls .hammy-modal-wrapper--controls-wrapper span {
  width: 40px;
  height: 100%;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: 0.5s color ease;
  -moz-transition: 0.5s color ease;
  -ms-transition: 0.5s color ease;
  -o-transition: 0.5s color ease;
  transition: 0.5s color ease;
}
.hammy-modal-wrapper .hammy-modal-wrapper--controls .hammy-modal-wrapper--controls-wrapper span:hover {
  color: #009bfa;
}
.hammy-modal-wrapper .hammy-modal-wrapper--controls .hammy-modal-wrapper--controls-wrapper span:first-of-type {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.hammy-modal-wrapper .hammy-modal-wrapper--inner {
  width: 100%;
  height: calc(100% - 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  padding: 40px;
}
.hammy-modal-wrapper .hammy-modal-wrapper--inner .hammy-modal-wrapper--html-modal {
  max-width: 1200px;
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
  padding: 40px;
  animation-delay: 0.5s;
  animation-name: slideDownTop;
  animation-duration: 1s;
  animation-fill-mode: backwards;
  position: relative;
}
.hammy-modal-wrapper .hammy-modal-wrapper--inner .hammy-image-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation-delay: 0.5s;
  animation-name: slideDownTop;
  animation-duration: 1s;
  animation-fill-mode: backwards;
  position: relative;
}
.hammy-modal-wrapper .hammy-modal-wrapper--inner .hammy-image-wrapper img {
  width: auto;
  max-width: 90%;
  max-height: calc(90vh - 80px);
  display: block;
  box-shadow: 0 4px 24px 8px rgba(0, 0, 0, 0.75);
}
.hammy-modal-wrapper .hammy-modal-wrapper--inner iframe {
  width: 100%;
  max-width: 640px;
  max-height: calc(90vh - 80px);
}
.hammy-modal-wrapper .hammy-modal-wrapper--inner .hammy-image-gallery-wrapper {
  animation-delay: 0.5s;
  animation-name: slideDownTop;
  animation-duration: 1s;
  animation-fill-mode: backwards;
  position: relative;
}
.hammy-modal-wrapper .hammy-modal-wrapper--inner .hammy-image-gallery-wrapper img {
  width: auto;
  max-width: 100%;
  max-height: calc(90vh - 80px);
  box-shadow: 0 4px 24px 8px rgba(0, 0, 0, 0.75);
  margin: 0 auto;
  display: none;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.hammy-modal-wrapper .hammy-modal-wrapper--inner .hammy-image-gallery-wrapper img.active {
  display: block;
}
.hammy-modal-wrapper .hammy-modal-wrapper--inner .hammy-image-gallery-wrapper:hover .gallery-images--controls {
  opacity: 1;
}
.hammy-modal-wrapper .hammy-modal-wrapper--inner .hammy-image-gallery-wrapper .gallery-images--controls {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.hammy-modal-wrapper .hammy-modal-wrapper--inner .hammy-image-gallery-wrapper .gallery-images--controls .gallery-image-control {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  cursor: pointer;
}
.hammy-modal-wrapper .hammy-modal-wrapper--inner .hammy-image-gallery-wrapper .gallery-images--controls .gallery-image-control::before {
  width: 25%;
  height: 100%;
  position: absolute;
  top: 0;
  color: #ffffff;
  font-size: 64px;
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: 900;
  text-decoration: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
}
.hammy-modal-wrapper .hammy-modal-wrapper--inner .hammy-image-gallery-wrapper .gallery-images--controls .gallery-image-control.previous {
  left: 0;
}
.hammy-modal-wrapper .hammy-modal-wrapper--inner .hammy-image-gallery-wrapper .gallery-images--controls .gallery-image-control.previous::before {
  content: "\f100";
  left: 0;
}
.hammy-modal-wrapper .hammy-modal-wrapper--inner .hammy-image-gallery-wrapper .gallery-images--controls .gallery-image-control.next {
  right: 0;
}
.hammy-modal-wrapper .hammy-modal-wrapper--inner .hammy-image-gallery-wrapper .gallery-images--controls .gallery-image-control.next::before {
  content: "\f101";
  right: 0;
}
@media only screen and (max-width: 736px) {
  .hammy-modal-wrapper .hammy-modal-wrapper--inner .hammy-modal-wrapper--html-modal {
    padding: 20px;
  }
}
.hammy-modal-wrapper.blue-theme {
  background: rgba(0, 114, 255, 0.75);
}
.hammy-modal-wrapper.blue-theme .hammy-modal-wrapper--controls {
  background: rgba(0, 0, 0, 0.25);
}

@keyframes slideDownTop {
  from {
    opacity: 0;
    top: -100vh;
  }
  to {
    opacity: 1;
    top: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*# sourceMappingURL=hammy-modal-1.0.css.map */
