/*
* checkout popup
*/
.overlay_checkout {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 99999;
  overflow: auto;
}
.overlay_checkout .close {
  margin: 35px auto 0;
  text-decoration: none;
  line-height: 0;
  display: block;
  border-radius: 26px;
  border: 3px solid transparent;
  padding: 5px;
  text-align: center;
}
.overlay_checkout .close:hover {
  border-color: #fff;
}
.checkout_box h2{
  font-family: Narziss;
  color: #988f86;
  font-size: 19px;
  line-height: 22px;
  margin: 20px 0;
}
.checkout_box p{
  color: #000;
  line-height: 16px;
}
#form-select-store a{
  font-size: 16px;
  text-decoration: underline;
  cursor: pointer;
}
.checkout_box img{
  width:120px;
}
.checkout_box h3{
  position: absolute;
  right: 0;
  top: 50%;
  width: 300px;
  transform: translateY(-50%);
  max-height: 100%;
  overflow: hidden;
}
.checkout_box h3 img{
  width:100%;
}
.close_btn {
  color: #333;
}

.close_btn {
  color: #000;
  position: absolute;
  top:-15px;
  right: -15px;
  padding-right: 0;
  width: 30px;
  opacity: 1;
  height: 30px;
  line-height: 1px;
  padding-left: 1px;
  border: 2px solid #000;
  background: #fff;
  display: inline-block;
  text-align: center;
  border-radius: 20px;
}
.close_btn span{
  font-size: 25px;
  line-height: 11px;
  position: relative;
  left: 0px;
}
.close_btn:hover {
  color: #fff;
  background: #000;
  border-color:#fff;
}
.overlay_checkout .overlay_content_checkout {
  background: #fff;
  display: inline-block;
  padding: 20px 20px 20px 20px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  max-width: 500px;
  transform: translate(-50%, -50%);
  color: white;
}

.overlay_checkout .overlay_content_checkout li {
  position: relative;
}

@media all and (max-width:620px){
  .overlay_checkout .overlay_content_checkout{
    padding-right:20px;
  }
  .checkout_box h3{
    position: relative;
    width:100%;
    transform: none;
  }
}