.modal-custom{
  position: fixed;
  z-index: 1080;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: rgba(0,0,0,0.4);
  display: none;
}
.modal-custom.is-show{
  display: block;
}
.modal-custom.is-fade{
  transition: opacity .15s linear;
}
.is-fade:not(.is-show){
  opacity: 0;
}
.modal-custom__ovelay{
  position: fixed;
  z-index: 1081;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.modal-custom-box{
  position: relative;
  z-index: 1082;
  margin: 15px;
  background-color: #fff;
  border-radius: 4px;
}
.modal-custom-box .modal-custom-box__head{
  padding: 12px 15px;
}
.modal-custom-box .modal-custom-box__title{
  font-size: 16px;
  font-weight: 700;
  font-family: Arial;
}
.modal-custom-box .modal-custom-box__close{
  position: absolute;
  top: 8px;
  right: 5px;
  font-family: Arial;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 22px;
}
.modal-custom-box .modal-custom-box__content{
  padding: 0 15px 15px;
  text-align: center;
}
.modal-custom-box .modal-custom-box__content img{
  width: auto;
  max-width: 100%;
}
body.has-modal{
	overflow-y: hidden;
}
@media (min-width: 768px){
  .modal-custom-box{
    width: 650px;
    margin: 20px auto;
  }
}
@media (min-width: 992px){
  .modal-custom-box{
    width: 850px;
  }
}
@media (min-width: 1200px){
  .modal-custom-box{
    width: 950px;
  }
}