/* popup */
.popup-inner a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.popup {
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.75);
  text-align: center;
  z-index: 999;
  overflow: hidden;
  overflow-y: auto;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}

.popup::-webkit-scrollbar {
  width: 0 !important;
}

.popup:before {
  content: "";
  display: inline-block;
  height: 100%;
  margin-right: -4px;
  vertical-align: middle;
}

.popup-inner {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
  position: relative;
  /* max-width: 500px; */
  width: 50%;
  padding: 40px;
  -webkit-box-shadow: 0px 2px 6px #000;
  box-shadow: 0px 2px 6px #000;
  /* border-radius: 10px; */
  /* background: radial-gradient(circle farthest-corner at left,#751daf,#451494); */
  text-align: center;
  margin: 50px 0;
  word-wrap: break-word;
  color: #000;
  font-family: 'DINPro-Regular', "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  .popup-inner {
      padding: 40px 20px;
      width: 80%;
  }
}

.modal-title {
  color: #000;
}

.popup-inner h2 {
  font-family: 'din_pro_bold', "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 3em;
  font-weight: 700;
  text-transform: uppercase;
  margin: 20px auto;
}
@media screen and (max-width: 1024px) {
  .popup-inner h2 {
      font-size: 2em;
  }
}

.popup-inner p {
  font-size: 30px;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .popup-inner p {
      font-size: 24px;
  }
}

.popup-close {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 15px;
  font-size: 35px;
  color: #000;
  
}

@media (max-width: 950px) {
  .popup-inner {
      max-width: 900px;
      width: 90%;
  }
}


/* content */
.pet-modal {
  display: flex;
  align-items: center;
  background: #ececec;
  border: 1px solid #ff7bac;
  position: relative;
}

.pet-modal figure {
  width: 50%;
}

.pet-modal figure img {
  display: block;
}

.pet-modal figcaption {
  font-size: 20px;
  line-height: 1.4;
  padding: 20px;
  width: 50%;
}

.pet-modal figcaption .imgbox {
  width: 25%;
  margin: 0 auto;
  padding: 10px 0 5px 0;
}

.pet-modal figcaption .imgbox img {
  width: 100%;
}

@media screen and ( max-width: 480px ) {
  .pet-modal {
      display: block;
  }

  .pet-modal figure {
      width: 100%;
  }

  .pet-modal figcaption {
      font-size: 16px;
      width: 100%;
  }

  .pet-modal figcaption .imgbox {
      width: 18%;
  }   
  
  .pet-modal figcaption p {
      padding-bottom: 10px;
  }
}


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