/* *
 * *	LARGE IMAGE VIEW MODAL WINDOW */
.window {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3000;
  overflow: scroll;
  box-sizing: border-box;
  /* *top: -100px;
  * *padding-bottom: 100px;
  * *transform: translateY(100px); */
  /*pointer-events: none; */
}

.window-btn-close {
  position: absolute;
  right: 0;
  margin: 0px;
  padding: 11px 0px 12px 0px !important;
  width: 169px !important;
  height: 80px;
  text-align: center;
  z-index: 110;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .window-btn-close {
    padding: 6px 0px 7px 0px !important;
    font-size: 18px;
    width: 140px !important;
  }
}
@media screen and (max-width: 768px) {
  .window-btn-close {
    width: 80px !important;
    font-size: 13px;
  }
}
@media screen and (max-width: 576px) {
  .window-btn-close {
    width: 85.46%;
  }
}

.window-btn-info {
  position: absolute;
  /*   	bottom: 0;
  * *     right: 0;
  * * 	margin: 0 20px 20px 0; */
  z-index: 110;
  margin: 30px 0 0 30px;
  width: 60px;
  height: 60px;
  background: url(../img/btn-info.png);
  background-size: contain;
  cursor: pointer;
}

.window-preloader {
  position: fixed;
  top: calc(50vh - 32px);
  left: calc(50vw - 32px);
}

.window-description {
  position: absolute;
  box-sizing: border-box;
  /*opacity: 0.8; */
  background-color: #ddd;
  left: -40%;
  width: 45%;
  bottom: 70px;
  padding: 2% 2% 2% 4%;
  opacity: 0.9;
  transition: left 1s;
  box-shadow: 0.3em 0.3em 5px rgba(122, 122, 122, 0.5);
  border-radius: 0 5px 5px 0;
}

.window-description-item {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  box-sizing: border-box;
  width: 30%;
  padding: 2em;
  border-radius: 0 3px 3px 0;
  background-color: rgba(255, 255, 255, 0.95);
  visibility: hidden;
  transition: opacity 1s, visibility 1s;
  opacity: 0;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
}

.window-description-visible {
  left: 0;
}

.window-description-p {
  padding-bottom: 10px;
  font-size: 80%;
  /*text-shadow: 1px 1px 2px white, 0 0 1em white;
  * *text-shadow: 1px 1px 5px white, -2px -2px 5px white; */
}

.window-description-arrow {
  /*position:absolute; */
  float: right;
  width: 27px;
  height: 100px;
  top: calc(50% - 50px);
  cursor: pointer;
  background-size: contain;
  background-image: url(../img/arrow-right.png);
}

.window-description-visible .window-description-arrow {
  background-image: url(../img/arrow-left.png);
}

.window-description-text .img-desc {
  font-size: 22px;
}

#window-arrow-left {
  left: 0;
  background-image: url(../img/arrow-left.png);
}

#window-arrow-right {
  right: 0;
  background-image: url(../img/arrow-right.png);
}

.window-arrow {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  width: 54px;
  height: 130px;
  top: calc(50vh - 65px);
  cursor: pointer;
}

.window-opened-html {
  position: fixed;
  right: 0;
  left: 0;
  overflow: hidden;
}

.window-overlay {
  display: none;
  width: 100%;
  min-height: 100%;
  position: fixed;
  z-index: 2000;
  top: -9999px;
  bottom: -9999px;
  left: 0;
  background: #000;
  opacity: 0.9;
}

@media all and (max-width: 950px) {
  .window-description {
    width: 100%;
    bottom: 0;
    border-radius: 5px 5px 0 0;
    left: -90%;
  }
  .window-description-visible {
    left: 0;
  }
}
@media all and (max-width: 550px) {
  .window-btn-close {
    width: 40px;
    height: 40px;
  }
}
@media all and (max-width: 450px) {
  .window-description-p {
    font-size: 10pt;
  }
}
@media all and (max-height: 400px) {
  .window-btn-close {
    width: 40px;
    height: 40px;
  }
}
@media all and (max-height: 350px) {
  .window-description {
    width: 100%;
    bottom: 0;
    border-radius: 5px 5px 0 0;
  }
}
@media all and (max-height: 300px) {
  .window-description-p {
    font-size: 10pt;
  }
}/*# sourceMappingURL=mwindow.css.map */