
/* css for pop up close button */
.button-30 {
 margin-top: 20px;
  align-items: center;
  appearance: none;
  background-color: #FCFCFD;
  border-radius: 4px;
  border-width: 0;
  box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px,rgba(45, 35, 66, 0.3) 0 7px 13px -3px,#D6D6E7 0 -3px 0 inset;
  box-sizing: border-box;
  /*color: #36395A;*/
  cursor: pointer;
  display: inline-flex;

  height: 48px;
  justify-content: center;
  line-height: 1;
  list-style: none;
  overflow: hidden;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: box-shadow .15s,transform .15s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  will-change: box-shadow,transform;
  font-size: 18px;
}

.button-30:focus {
  box-shadow: #D6D6E7 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
}

.button-30:hover {
  box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
  transform: translateY(-2px);
}

.button-30:active {
  box-shadow: #D6D6E7 0 3px 7px inset;
  transform: translateY(2px);
}
/* end button  */

.checkoutdiv{
    position: absolute;
    top: 40%;
    left: 30vw;
    height: 300px;
    width: 700px;
    background-color: #fff;
    min-height: 10em;
    -webkit-box-shadow: 0px 5px 11px 0px rgba(50, 50, 50, 0.8);
    -moz-box-shadow:    0px 5px 11px 0px rgba(50, 50, 50, 0.8);
    box-shadow:         0px 5px 11px 0px rgba(50, 50, 50, 0.8);
    border-radius:5px;
    animation: animationDropCenter 1s;
}
.checkout-popup{
    font-size: 20px;
    color: #000;
    display:table-cell;
    vertical-align:middle;
    text-align: center;
    padding-top:80px;
    padding-left:20px;
    padding-right: 20px;
    padding-bottom: 20px;
}
@keyframes animationDropCenter {
    0% {
        left:0%;
    }
}
.transparent-bg{
    position: fixed; 
    top: 0%; 
    left: 0%; 
    width: 100%; 
    height: 100%; 
    background:#000;
    -moz-opacity: 0.30; 
    opacity: .30; 
    filter: alpha(opacity=30);
    z-index: 1; 
    -webkit-animation: animateBackground 1s;
    animation: animateBackground 1s ;
}

@keyframes animateBackground {
    from {opacity: 0.8;}
    to {opacity: 0.30;}
}

@media only screen and (max-width: 380px) {
    .checkoutdiv{
        width: 300px;
        left: 10vw;
        height: 450px;
    }
}
@media only screen and (max-width: 480px) and (min-width: 381px){
    .checkoutdiv{
        width: 300px;
        left: 15vw;
        height: 450px;
    }
}
@media only screen and (max-device-width: 780px) and (min-width: 481px)  {...} {
    .checkoutdiv{
        width: 300px;
        left: 19vw;
        height: 450px;
    }
}
@media only screen and (max-device-width: 1050px) and (min-width: 781px)  {...} {
    .checkoutdiv{
        width: 300px;
        left: 20vw;
        height: 450px;
    }
}