@import url("https://fonts.googleapis.com/css?family=Titillium+Web:400,300,700,600italic,400italic,600,200");

.backgroundFull {
    display: none;
}
.site-wrapper {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.pricing {
	background: #fff;
	color: black;
	display: block;
    padding-top: 4px;
    margin-bottom: 20px;
    font-size: 1.2em;
    line-height: 1.42857143;
    border-radius: 10px;
    box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.65);
    -webkit-transition: border .2s ease-in-out;
    -o-transition: border .2s ease-in-out;
    transition: border .2s ease-in-out;
}
.btn-full {
	width: 100%;
	height: 100%;
    border-radius: 10px;
    padding: 15px !important;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    font-family: 'Titillium Web', sans-serif !important;
    font-size: 1.3em;
}
.btn-full:focus {
	outline:0 !important;
}
button:focus {outline:0 !important;}
.row {
	margin-top: 19px;
}
.h2caption{
	padding-bottom: 20px;
    border-bottom: #cccccc 1px solid;
    font-weight: bold;
    color: #348a34;
    font-family: 'Titillium Web', sans-serif  !important;
}
.p-success{
	color: #348a34;
}
.captionGreen{
	color: #1d69ab;
	font-size: 1.1em;
}
h1, h3, h2, .masthead-nav > li > a {
	font-family: 'Titillium Web', sans-serif !important;
}
.align-left{
	text-align: left;
}
@media (min-width: 768px){
	.backgroundFull {
		background-color: #202020;
		content: ' ';
	    display: table-cell;
	    position: fixed;
	    left: 0;
	    top: 0;
	    width: 100%;
	    height: 100%;
	    z-index: -1;
	    opacity: .3;
	    background-image: url(../images/back2.jpg);
	    background-repeat: no-repeat;
	    -ms-background-size: cover;
	    -o-background-size: cover;
	    -moz-background-size: cover;
	    -webkit-background-size: cover;
	    background-size: cover;
	    background-attachment: fixed;
	}
    .site-wrapper {
        webkit-box-shadow: inset 0 0 200px rgba(0,0,0,1);
        box-shadow: inset 0 0 200px rgba(0,0,0,1);
    }
	
}
.footer_pay {
	max-height: 42px;
}
@media (min-width: 768px) and (min-height: 768px) {
	
}

.icn {
	height: 18px;
}
.icn-lg {
	height: 30px;
}



.btn-spinner {
    position: relative;
    padding-left: 2.5rem !important;
}
.btn-spinner i {
	display: none;
}
.btn-spinner::before{
	content: '';
	height: 1em;
	width: 1em;
	top: 50%;
	margin-left: -1.5em;
	margin-top: -0.5em;
	position: absolute;
	background: transparent;
	box-sizing: border-box;
	border-top: 0.15em solid;
	border-left: 0.15em solid;
	border-right: 0.15em solid transparent;
	border-bottom: 0.15em solid transparent;
	border-radius: 100%;
	-webkit-animation: spin 1s infinite;
	animation: spin 1s infinite;
}
.btn-pulse{
	cursor: initial;
	position: relative;
	animation: pulse 1.5s ease-out ;
	transition: 200ms;
}
.shake{
	animation: shake 0.3s ease-out ;
}
@keyframes spin {
	100% {transform: rotate(360deg)}
}
@keyframes shake {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
	25% {
		-webkit-transform: translateX(-1rem);
		transform: translateX(-1rem)
	}
	50% {
		-webkit-transform: translateX(1rem);
		transform: translateX(1rem)
	}
	75% {
		-webkit-transform: translateX(-1rem);
		transform: translateX(-1rem)
	}
	100% {transform: translateX(0)}
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 var(--primary)
	}

	100%,30% {
		box-shadow: 0 0 0 36px transparent
	}
}