body {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 300;
	margin: 0;
}	
.main {
	display: block;
	width: 100%;
	height: 100%;
}
iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	border: none;
}	
.iospopup_overlay {
	position: absolute;
	background: rgba(0,0,0,0.9);
	height: 100%;
	width: 100%;	
}
.iospopup_bottom {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
}
.iospopup_center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: 0;
}
#iospopup_box {
	height: auto;
	padding: 10px;
	color: #333333;
	background: #F5F5F4;
	border-radius: 10px;
	width: 280px;
	border: 1px solid #333333;
	line-height: 25px;
	font-size: 16px;
	text-align: center;
}
#share { vertical-align: top; }
#iospopup_arrow { display: none; }
#iospopup_arrow1 {
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-top: 20px solid #333333;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
#iospopup_arrow2 {
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-top: 20px solid #F5F5F4;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -19px;
}
#close_iospopup {
	position: absolute;
	display: inline-block;
	width: 16px;
	height: 16px;
	top:-10px;
	right:-10px;
	cursor:pointer;
	border: 1px solid #333333;
	border-radius: 50%;
	background: #F5F5F4;
	font-size: 25px;
	text-align: center;
	line-height: 16px;
	padding: 5px;       
} 
input[type=checkbox]{ display: none; }
.pwaicon1 { display: none; }
.pwaicon {
	display: block; 
	margin: 0 auto;	
	padding-bottom: 5px;
}
.pwa_title { margin: 0; }
.pwa_title1 { display: none; }
.fbpopup_overlay {
	position: absolute;
	background: rgba(0,0,0,0.9);
	height: 100%;
	width: 100%;	
}
.fbpopup {
	position: absolute;
	top: 30px;
	left: 50%;
	transform: translateX(-50%);
}
#fbpopup_box {
	position: relative;	
	height: auto;
	padding: 10px;
	color: #333333;
	background: #F5F5F4;
	border-radius: 10px;
	width: 300px;
	border: 1px solid #333333;
	line-height: 25px;
	font-size: 16px;
	text-align: center;
}
#fbpopup_box:before {
	position: absolute;
	content: " ";
	height: 0;
	width: 0;
	border: solid transparent;
	pointer-events: none;
	bottom: 100%;
	right: 40px;
	border-bottom-color: #333333;
	border-width: 21px;
	margin-right: -21px;
}
#fbpopup_box:after {
	position: absolute;
	content: " ";
	height: 0;
	width: 0;
	border: solid transparent;
	pointer-events: none;
	bottom: 100%;
	right: 40px;
	border-bottom-color: #F5F5F4;
	border-width: 20px;
	margin-right: -20px;
}
#close_fbpopup {
	position: absolute;
	display: inline-block;
	width: 16px;
	height: 16px;
	top:  -10px;
	left:-10px;
	cursor: pointer;
	border: 1px solid #333333;
	border-radius: 50%;
	background: #F5F5F4;
	font-size: 25px;
	text-align: center;
	line-height: 16px;
	padding: 5px;       
}
.optinPopup {
    position: fixed;
    display: none;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 20px;
    width: 80%;
    max-width: 400px;
    border-radius: 5px;
    border-style: solid;
    border-width: 1px;
    transform: translateY(-100%);
  	animation: slide-down 0.3s ease forwards;
}
.optinFlex {
    display: flex;
    margin-bottom: 20px;
}
.optinLogo {
    width: 70px;
    height: 70px;
    margin-right: 10px;
}
.optinLogo img { height: 70px; }
.optinText {
    display: block;
    min-height: 70px;
}
.optinTitle {
    font-weight: 700;
    margin: 0;
}
.optinDescription {
    margin: 10px 0 0 0;
}
.optinBtns {
    display: flex;
    justify-content: right;
    margin-top: 20px;
}
.optinBtn {
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 20px;
    margin: 0 10px;
}
#toast {
	visibility: hidden;
	max-width: 300px;
	height: auto;
	margin: auto;
	text-align: center;
	border-radius: 2px;
	position: fixed;
	z-index: 1;
	left: 0;
	right:0;
	top: 30px;
	font-size: 17px;
	line-height: 1.2;
	padding: 10px;
	white-space: normal;
}
#toast.show {
	visibility: visible;
	-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
	animation: fadein 0.5s, fadeout 0.5s 4.5s;
}
@-webkit-keyframes fadein {
	from {top: 0; opacity: 0;} 
	to {top: 30px; opacity: 1;}
}
@keyframes fadein {
	from {top: 0; opacity: 0;}
	to {top: 30px; opacity: 1;}
}
@-webkit-keyframes fadeout {
	from {top: 30px; opacity: 1;} 
	to {top: 60px; opacity: 0;}
}
@keyframes fadeout {
	from {top: 30px; opacity: 1;}
	to {top: 60px; opacity: 0;}
}
@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}