/* ==========================================================================
Remodal's default mobile first theme
========================================================================== */

/* Default theme styles for the background */

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
filter: blur(3px);
}

/* Default theme styles of the overlay */

.remodal-overlay {
background: rgba(255, 255, 255, 0.8);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
animation-duration: 0.3s;
animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */

.remodal-wrapper {
padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */

.remodal {
box-sizing: border-box;
width: 100%;
margin-bottom: 10px;
padding: 1px;

transform: translate3d(0, 0, 0);
box-shadow: 0px 0px 3px 2px rgba(0,0,0,0.1);

color: #333;
background: #fff;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
animation-duration: 0.3s;
animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */

.remodal,
.remodal-wrapper:after {
vertical-align: middle;
}

/* Close button */
.remodal-close {
position: absolute;
top: 12px;
right: 17px;

background: url(../images/common/close.png) no-repeat center center;
background-size: 36px auto;

display: block;
overflow: visible;

width: 36px;
height: 36px;
margin: 0;
padding: 0;

cursor: pointer;
transition: color 0.2s;
text-decoration: none;

border: 0;
outline: 0;
}

/* layout */
.remodal h3 {
background-color:  #8fc320;
margin-bottom: 27px;
font-size:  20px;
font-weight:  bold;
line-height:  59px;
color:  #fff;
}
.remodal .image {
padding: 30px 20px 30px 20px;
}
.remodal h4 {
margin: 0 20px 0 20px;
font-size: 12px;
font-weight: bold;
line-height: 1.5;
text-align: left;
color: #333;
}
.remodal p {
margin: 0 20px 18px 20px;
font-size: 12px;
line-height: 1.5;
text-align: left;
color: #333;
}
.remodal p.catch {
margin: 0 20px 18px 20px;
font-size: 18px;
font-weight: bold;
line-height: 1.29;
text-align: center;
color: #333;
}
@media screen and (min-width: 769px){
	.remodal {
	padding-bottom: 10px;
	}
	.remodal .image {
	padding: 50px 50px 40px 50px;
	}
	.remodal h4 {
	margin: 0 20px 0 20px;
	font-size: 12px;
	font-weight: bold;
	line-height: 1.5;
	text-align: left;
	color: #333;
	}
	.remodal p {
	margin: 0 50px 18px 50px;
	font-size: 12px;
	line-height: 1.5;
	text-align: left;
	color: #333;
	}
	.remodal p.catch {
	margin: 0 50px 28px 50px;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.29;
	text-align: center;
	color: #333;
	}
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-close::-moz-focus-inner {
padding: 0;

border: 0;
}

/* Keyframes
========================================================================== */

@keyframes remodal-opening-keyframes {
from {
transform: scale(1.05);

opacity: 0;
}
to {
transform: none;

opacity: 1;

filter: blur(0);
}
}

@keyframes remodal-closing-keyframes {
from {
transform: scale(1);

opacity: 1;
}
to {
transform: scale(0.95);

opacity: 0;

filter: blur(0);
}
}

@keyframes remodal-overlay-opening-keyframes {
from {
opacity: 0;
}
to {
opacity: 1;
}
}

@keyframes remodal-overlay-closing-keyframes {
from {
opacity: 1;
}
to {
opacity: 0;
}
}

/* Media queries
========================================================================== */

@media screen and (min-width: 769px){
.remodal {
max-width: 700px;
}
}

/* IE8
========================================================================== */

.lt-ie9 .remodal-overlay {
background: #2b2e38;
}

.lt-ie9 .remodal {
width: 700px;
}
