
.productPopup {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 20;
	overflow: auto;
}
.productPopup .insideContainer{width: 600px;}
.productPopup .productPopupWrapper {
	position: relative;
	background: #fff;
    width: 600px;
    height: 250px;
	margin-top: 30px;
	padding: 20px 25px;
	margin-bottom: 30px;
}
.productPopup .closeBtn {
	position: absolute;
	background: #000;
	color: #fff;
	padding: 8px 10px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	top: -13px;
	right: -13px;
	text-transform: uppercase;
	font-weight: 600;
	cursor: pointer;
}
.productPopup .storeLogo img{height: 150px;}
.deliveryTitle {  font-size: 20px; font-style: normal; font-weight: 400; font-variant: normal; font-family: inherit; padding-bottom: 10px;}
.deliveryAlternativesTitle{ font-size: 16px;   padding-bottom: 20px;}
.deliveryInfoButtonRow{position: relative; float: right;}
.deliveryInfoCancelBtn{position: relative; float: left; padding: 10px 40px; margin-right: 20px;   border: 1px solid #79b5be; color: #79b5be; border-radius: 3px; }
.deliveryInfoSelectBtn{position: relative; float: left; padding: 10px 40px;   border: 1px solid #79b5be; background-color: #79b5be; color: #FFF; border-radius: 3px;  }

.deliveryRadioLabel {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 22px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.deliveryRadioLabel input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.deliveryRadioLabel:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.deliveryRadioLabel input:checked ~ .checkmark {
  background-color: #79b5be;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.deliveryRadioLabel input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.deliveryRadioLabel .checkmark:after {
 	top: 7px;
	left: 7px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: white;
}
@media screen and (max-width: 600px){
    .productPopup .insideContainer{width: 90%;}
    .productPopup .productPopupWrapper {
	position: relative;
	background: #fff;
    width: 90%;
    height: 250px;
	margin-top: 30px;
	padding: 20px 15px;
	margin-bottom: 30px;
}
}
 