/* ----------------------------------- minipopup-wrap ----------------------------------- */
.minipopup-wrap {
  position: relative;
}
/* ----------------------------------- minipopup ----------------------------------- */
.minipopup {
  background: #f2f2f2;
  padding: 35px 35px 20px 40px;
  border-radius: 5px;
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.35);
  width: 415px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1060;
  display: none;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: normal;
}
.minipopup.mf_-right {
  left: auto;
  right: 0;
}
@media (min-width: 770px) and (max-width: 999px) {
  .minipopup {
	padding: 25px 25px 10px 25px;
  }
}
@media (max-width: 769px) {
  .minipopup {
	padding: 25px 15px 10px 15px;
	width: auto;
	left: 10px !important;
	right: 10px !important;
  }
}
.minipopup__p {
  color: #4c4c4c;
  font-size: 15px;
  line-height: 30px;
  margin-bottom: 25px;
}
.minipopup__close {
  text-decoration: none;
  color: #6ec2b3;
  display: block;
  width: 13px;
  height: 13px;
  position: absolute;
  right: 18px;
  top: 18px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.minipopup__close:hover {
  color: #000;
}
@media (min-width: 770px) and (max-width: 999px) {
  .minipopup__close {
	right: 10px;
	top: 10px;
  }
}
@media (max-width: 769px) {
  .minipopup__close {
	right: 10px;
	top: 10px;
  }
}
.minipopup__cls {
  display: block;
  width: 13px;
  height: 13px;
}