/* Styles for iframe content and modal */

/* Modal styles */
.iframe-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    overflow: auto;
}

.iframe-modal__content {
    position: relative;
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    width: 80%;
    max-width: 900px;
    height: 80%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    animation: modalopen 0.4s;
}

.iframe-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    background-color: #333;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    z-index: 10001;
}

.iframe-modal__close:hover {
    background-color: #555;
}

.iframe-modal__iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes modalopen {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 768px) {
    .iframe-modal__content {
        width: 95%;
        height: 90%;
        margin: 5% auto;
    }
}

/* Content styles */
.block_more_info{
	max-width: 800px;
	margin: 0px auto;
	background: #fff;
	font-family: Arial;
	padding: 20px 40px 40px 40px;
	border: 1px solid #DADADA;
	line-height: 20px;
}
.block_more_info h1{
	color: #3B6A7C;
	margin-bottom: 30px;
	text-align: center;
}
.s1{
	font-style: italic;
	text-align: center;
	margin: 40px 0 0 0;
	font-weight: bold;
}

.back-to-store{
	position: fixed;
	bottom: 50px;
	right: 2em;
	text-decoration: none;
	color: white;
	background-color: rgba(0, 0, 0, 0.7);
	font-size: 14px;
	padding: 1em;
	cursor:pointer;
}
a.back-to-store:hover{text-decoration:none;color:white;background-color: rgba(0, 0, 0, 0.8);}
ol li{margin-bottom:7px;padding-left:5px;}
h2{margin-top:30px;margin-bottom:30px;}
.t-and-c-text{font-weight:bold;font-style:italic;padding-left:43px;margin-bottom:30px;font-size:14px;}
.sub-h2-text{text-align:center;font-size:16px;}
@media screen and (max-width: 540px){
	.block_more_info{
		padding:0 10px;
	}
	body{
		/*padding-bottom:40px;*/
		font-size: inherit;
	}
	h2{font-size: 18px;}
	.block_more_info h1{
		font-size: 20px;
	}
}
@media(max-width: 1190px){
	.back-to-store{
		bottom:4px;
		padding: 10px;
	}
}