.modal_open_image.cursor {
  cursor: pointer;
}

.modal_container__image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 5000;
}
.modal_container__image:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.modal_container__image.active {
  opacity: 1;
  visibility: visible;
}

.modal_body__image {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 85%;
}

.modal_close__image {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -30px;
  right: -30px;
  width: 20px;
  height: 20px;
  color: #004831;
  cursor: pointer;
  font-size: 28px;
  font-weight: 700;
  z-index: 1;
  display: none;
}
.modal_close__image:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50px;
  width: 38px;
  height: 38px;
  border: solid 1px rgba(0, 72, 49, 0.3);
  background: #fff;
  z-index: -1;
}
.modal_close__image:hover:before {
  background: rgba(0, 72, 49, 0.3);
}
@media screen and (max-width: 767px) {
  .modal_close__image {
    top: -40px;
    right: -10px;
  }
}

.modal_content__image {
  /*
  box-shadow: 0 0 20px #999;
  border-radius: 10px;

  .modal_movie {
  	position: relative;
  	width: 100%;
  	height: 0;
  	padding-top: 56.25%;
  }
  iframe {
  	position: absolute;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
  }
   */
}
.modal_content__image .modal_image img {
  display: inline-block;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  margin-right: 10%;
}
@media screen and (min-width: 768px) {
  .modal_content__image .modal_image img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .modal_content__image .modal_image img {
    min-width: 210vw;
  }
}/*# sourceMappingURL=modal_image.css.map */