.modal {
  display: none;
  max-width: 460px;
  background: #fff;
  padding: 15px 30px;
  border: 1px solid #c6c6c6;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 30px rgba(0,0,0,.32);
  -moz-box-shadow: 0 0 30px rgba(0,0,0,.32);
  -o-box-shadow: 0 0 30px rgba(0,0,0,.32);
  -ms-box-shadow: 0 0 30px rgba(0,0,0,.32);
  box-shadow: 0 0 30px rgba(0,0,0,.32);
}

.modal a.close-modal {
  position: absolute;
  top: -12.5px;
  right: -12.5px;
  display: block;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
  background: url(../images/close.png) no-repeat 0 0;
}

.modal-spinner {
  display: none;
  width: 64px;
  height: 64px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-right: -32px;
  margin-top: -32px;
  background: url(../images/spinner.gif) #111 no-repeat center center;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
}
.modal-content ul li {
  background: url(../images/banner-list-style-ybs.png) left top no-repeat;
  padding-left: 50px;
  font-size: 16px;
  line-height: 26px;
  padding-bottom: 12px;
  color: #2f2f2f;
  font-family: gotham_bookregular;
}
.modal-content h1 {
	font-size: 40px;
}

.modal-content ul li a:hover {
  color: #8b78ba;
}

@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2) {
.modal {
  max-width: 300px;
  max-height: 400px;
  overflow: scroll;
  padding: 30px;
  margin: 20px;
  text-align:center;
}
.modal img {
	max-width: 150px;
}
.modal-content h1 {
	display: none;
}
.modal-content ul li {
	display: none;
}
.modal a.close-modal {
  position: absolute;
  top: 0px;
  right: 0px;
}
  }