/*
Template Name: HTML Construction Template
Author: yaminncco

Colors:
	Body 		: #64728A
	Headers 	: #004
	Primary 	: #FFD626
	Dark     	: #001232
	Grey 		: #F8F8F8 #EEE

Fonts: Poppins

Table OF Contents
------------------------------------
1 > General
2 > Logo
3 > Navigation
4 > Home
5 > About
5 > Numbers
6 > Services
7 > Pricing
8 > Testimonial
9 > 
10 > Blog
11 > Blog post
12 > Blog sidebar
13 > Footer
14 > Responsive
15 > 
16 > Preloader

------------------------------------*/
/*------------------------------------*\
	General
\*------------------------------------*/
/* --- typography --- */
body {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	line-height: 24px;
	color: #54627A;
	letter-spacing: 0.3px;
	overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
	color: #004;
	font-weight: 700;
	margin-top: 13px;
	margin-bottom: 13px;
}

h1 {
	font-size: 35px;
}

h2 {
	font-size: 28px;
}

h3 {
	font-size: 20px;
}

h4 {
	font-size: 16px;
}

a {
	color: #006;
    text-decoration: none;
}

a:hover,
a:focus{
	color: #006;
    text-decoration: none;
    outline: none
}
a.more-cas:hover{
cursor: pointer;
}

ul,ol{
    margin: 0;
    padding: 0;
    list-style: none
}

.white-text {
	color: #FFF;
}

/* --- Section --- */

.section {
	position: relative;
}

.md-section {
	padding-top: 5px;
	padding-bottom: 15px;
}

.sm-section {
	padding-top: 5px;
	padding-bottom: 5px;
}

.xs-section {
	padding-top: 13px;
	padding-bottom: 13px;
}

/* --- Background Section --- */

.bg-main {
	background-color: #FFD626;
}

.bg-grey {
	background-color: #F8F8F8;
}

.bg-dark {
	background-color: #001232;
}

/* --- Background Image Section --- */
.bg-img  {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-size: cover;
	background-position: center;
	background-attachment:fixed;
}

.bg-img.bg-half{
	width: 50%;
	background-attachment:scroll;
}

.bg-img.bg-half.bg-right {
	left: 50%;
}

.bg-img.overlay:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	opacity: 0.88;
}

.bg-img.overlay:after {
	background-color: #FFF;
}

.bg-img.bg-half.overlay:after {
	display: none;
}

@media only screen and (max-width: 991px) {
	.bg-img.bg-half.overlay:after {
		display: block;
	}
	.bg-img.bg-half {
		width: 100%;
	}
	.bg-img.bg-half.bg-right {
		left: 0%;
	}
}

/* --- Section Header --- */

.section-header {
	margin-bottom: 20px;
}

.title {
	position: relative;
	padding-left: 15px;
}

.text-center .title {
	display: inline-block;
}

.title:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 10px;
	background-color: #FFD626;
}

.sub-title {
	color: #64728A;
	margin-bottom: 0px;
}

/* --- Buttons --- */

.main-button , .secondary-button, .pages-button, .pages-button-now {
	display: inline-block;
	position: relative;
	border: 1px solid transparent;
	z-index: 1;
}

.pages-button {
	height: 30px;width:30px;
	background-color: #001232;
	text-align: center;
	padding: 3px 0;
	color: #FFF;
}
.pages-button-now {
	height: 30px;width:30px;
	background-color: #FFD626;
	text-align: center;
	text-decoration: underline;
	padding: 3px 0;
	color: #004;
}
.main-button  {
	background-color: #001232;
	color: #FFF;
	padding: 10px 30px;
}

.secondary-button {
	background-color: #FFD626;
	color: #004;
	padding: 10px 30px;
}

.main-button:after  , .secondary-button:after , .pages-button:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	height: 0%;
	-webkit-transition: 0.2s height;
	transition: 0.2s height;
	z-index: -1;
}

.main-button:after  {
	background-color:#FFD626;
}

.secondary-button:after  {
	background-color:#001232;
}

.main-button:hover:after , .secondary-button:hover:after {
	height: 100%;
}

.main-button:hover {
	color: #004;
}

.main-button:focus {
	color: #FFF;
}

.secondary-button:hover {
	color: #FFF;
}


/* --- Text Link --- */

.text-link > span,.text-link-cas > span,.text-link-ind > span {
	position: relative;
	z-index: 1;
}
.text-link-cas > span,.text-link-ind > span {
	font-weight:bold;
	font-style: italic;
}
.text-link:hover > span,.text-link-cas > span:hover,.text-link-ind > span:hover {
	color: #004;
}

.text-link > span:after,.text-link-cas > span:after,.text-link-ind > span:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0%;
	background-color: #FFD626;
	z-index: -1;
	-webkit-transition: 0.2s height;
	transition: 0.2s height;
}

.text-link:hover > span:after,.text-link-cas:hover > span:after,.text-link-ind:hover > span:after {
	height: 100%;
}

/* --- */
.text-link-cas > span {
	background-color: #FED;
}



/* --  Input  -- */

input[type="text"], input[type="email"], input[type="password"], input[type="number"], input[type="date"], input[type="url"], input[type="tel"], textarea {
    height: 40px;
    width: 100%;
    border: 1px solid #64728A;
	background: transparent;
    padding-left: 15px;
	padding-right: 15px;
}

textarea {
    padding: 10px 15px;
    min-height: 90px;
    resize: vertical;
}

/*------------------------------------*\
	Logo
\*------------------------------------*/

.navbar-brand {
    padding: 0;
}

.navbar-brand .logo {
	display: inline-block;
	margin-top: 5px;
}

.navbar-brand .logo > img {
	max-height: 40px;
}

/*------------------------------------*\
	Navigation
\*------------------------------------*/

#header {
	position:relative;
	z-index:10;
}

#header .navbar {
	margin-bottom: 0px;
	border-radius: 0px;
	border: none;
}

#header .nav li a:hover , #header .nav li a:focus {
	background-color: transparent;
}

/* --- Top Navigation --- */
#top-navbar {
	background-color: #001232;
}

#top-navbar .nav li a {
	color: #FFF;
}
#top-navbar .nav li a i {
	height: 35px;
	width: 35px;
	text-align: center;
	line-height: 30px;
	color: #FFD626;
	border: 2px solid #FFD626;
	border-radius: 50%;
	margin-right: 5px;
	font-size: 14px;
	-webkit-transition: 0.2s all;
	transition: 0.2s all;
}

#top-navbar .nav li a:hover i {
	background-color: #FFD626;
	color: #004;
}

/* --- Main Navigation - иконки в меню --- */

#main-navbar {
	background-color: #004;
}
#main-navbar .nav li a {
	color: #FFF;
}
#main-navbar  .nav li a i {
	height: 30px;
	width: 30px;
	text-align: center;
	line-height: 25px;
	color: #FFD626;
	border: 2px solid #FFD626;
	border-radius: 50%;
	margin-right: 3px;
	font-size: 14px;
	-webkit-transition: 0.2s all;
	transition: 0.2s all;
}
#main-navbar.fixed-navbar {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	-webkit-box-shadow: 0px -2px 10px 0px rgba(0, 0, 0, 0.15);
	        box-shadow: 0px -2px 10px 0px rgba(0, 0, 0, 0.15);
	z-index: 10;
}

/* --- Default Dropdown --- */
@media only screen and (min-width: 768px) {
	.has-dropdown {
		position: relative;
	}
	.has-dropdown:after {
		font-family: 'FontAwesome';
		content: "\f0d7";
		-webkit-transition: 0.2s -webkit-transform;
		transition: 0.2s -webkit-transform;
		transition: 0.2s transform;
		transition: 0.2s transform, 0.2s -webkit-transform;
		position: absolute;
		right: 5px;
		font-size: 10px;
		color: #fff;
		top: 15px;
	}
	.dropdown {
		opacity: 0;
		visibility: hidden;
		-webkit-transform: translateX(-10px);
			-ms-transform: translateX(-10px);
				transform: translateX(-10px);
		position: absolute;
		width: 250px;
		background-color: #FFF;
		border: 1px solid #AAA;
		-webkit-transition: 0.2s all;
			transition: 0.2s all;
	}

	.main-navbar > .has-dropdown > .dropdown .dropdown {
		top: 0px;
		left: 100%;
	}
	.has-dropdown:hover > .dropdown {
		opacity:1;
		visibility:visible;
		-webkit-transform: translateX(0px);
			-ms-transform: translateX(0px);
				transform: translateX(0px);
	}

	.dropdown li {
		border-bottom: 1px solid #EEE;
	}

	.dropdown li:nth-last-child(1) {
		border-bottom: 0px;
	}

	.dropdown li a {
	color: #004!important;
		display: block;
		padding: 10px 10px;
		-webkit-transition: 0.2s -webkit-transform;
		transition: 0.2s -webkit-transform;
		transition: 0.2s transform;
		transition: 0.2s transform, 0.2s -webkit-transform;
	}

	.dropdown li a:hover {
		-webkit-transform: translateX(3px);
		    -ms-transform: translateX(3px);
		        transform: translateX(3px);
		-webkit-box-shadow: -4px 0px 0px 0px #FFD626;
			box-shadow: -4px 0px 0px 0px #FFD626;
	}

}

/* --- Mobile Nav --- */
@media only screen and (max-width: 767px) {
	#main-navbar  {
		padding-top: 0px;
		padding-bottom: 0px;
	}

	.main-navbar {
		margin: 0px -15px;
		border-top: 1px solid #EEE;
		max-height: 0;
		overflow-y: scroll;
		-webkit-transition: 0.3s max-height;
		transition: 0.3s max-height;
	}

	.main-navbar li {
		border-bottom: 1px solid #EEE;
	}

	.main-navbar.main-navbar-collapsed {
		max-height: 500px;
	}

	/* Mobile Dropdown */
	.has-dropdown {
		position: relative;
	}

	.has-dropdown:after {
		font-family: 'FontAwesome';
		content: "\f067";
		position: absolute;
		right: 10px;
		font-size: 10px;
		color: #FFF;
		top: 10px;
	}

	.has-dropdown.dropdown-collapsed:after {
		content: "\f068";
	}

	.has-dropdown.dropdown-collapsed  > .dropdown  {
		display:block;
	}

	.dropdown  {
		display: none;
		margin: 0px 15px 15px;
		border: 1px solid #EEE;
	}

	.dropdown li:nth-last-child(1) {
		border-bottom: 0px;
	}

	.dropdown li a {
		color: #FFF!important;
		display: block;
		padding: 10px 10px;
		-webkit-transition: 0.2s -webkit-transform;
		transition: 0.2s -webkit-transform;
		transition: 0.2s transform;
		transition: 0.2s transform, 0.2s -webkit-transform;
	}

	.dropdown li a:hover {
		-webkit-transform: translateX(3px);
		    -ms-transform: translateX(3px);
		        transform: translateX(3px);
		-webkit-box-shadow: -4px 0px 0px 0px #FFD626;
			box-shadow: -4px 0px 0px 0px #FFD626;
	}
}

/* --- Navbar Mobile Toggle --- */
@media only screen and (min-width: 768px) {
	.navbar-toggle-btn {
		display: none !important;
	}
}

.navbar-toggle-btn {
	position: relative;
	display: block;
	width: 50px;
	float: right;
	height: 50px;
	background: transparent;
	border: none;
}


.navbar-toggle-btn span {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	left: 10px;
	-webkit-transition: 0.2s background;
	transition: 0.2s background;
}

.navbar-toggle-btn span:after , .navbar-toggle-btn span:before {
	content: "";
	position: absolute;
	left: 0;
	-webkit-transition: 0.2s -webkit-transform;
	transition: 0.2s -webkit-transform;
	transition: 0.2s transform;
	transition: 0.2s transform, 0.2s -webkit-transform;
}

.navbar-toggle-btn span , .navbar-toggle-btn span:after , .navbar-toggle-btn span:before {
	height: 4px;
	width: 30px;
	background-color: #FFF;
}

.navbar-toggle-btn span:before {
	top: -10px;
}

.navbar-toggle-btn span:after {
	top: 10px;
}

.navbar-toggle-btn.toggle-btn-collapsed span {
	background: transparent;
}

.navbar-toggle-btn.toggle-btn-collapsed span:before {
	-webkit-transform: translateY(10px) rotate(45deg);
	    -ms-transform: translateY(10px) rotate(45deg);
	        transform: translateY(10px) rotate(45deg);
}

.navbar-toggle-btn.toggle-btn-collapsed span:after {
	-webkit-transform: translateY(-10px) rotate(-45deg);
	    -ms-transform: translateY(-10px) rotate(-45deg);
	        transform: translateY(-10px) rotate(-45deg);
}


/* --- Navbar Search --- */
.navbar-search {
	position: relative;
	float: right;
	margin-left: 15px;
}

.navbar-search .search-btn {
	border: none;
	background: transparent;
	padding: 15px 10px;
	line-height: 20px;
	color: #FFF;
}

.navbar-search .search-form {
	display: none;
	position: absolute;
	width: 250px;
	background: #FFF;
	right: 50%;
	-webkit-transform: translateX(50%);
	    -ms-transform: translateX(50%);
	        transform: translateX(50%);
	padding: 15px 10px;
	border: 1px solid #AAA;
}

.navbar-search .search-form form input {
	width: 100%;
}

.navbar-search:hover .search-form {
	display: block;
}

.search-toggle-btn {
	display: none;
	float: right;
	width: 50px;
	line-height: 50px;
	font-size: 24px;
	background: transparent;
	border-left: 1px solid #EEE;
	border-right: 1px solid #EEE;
	border-bottom: 0px;
	border-top: 0px;
	color: #FFF;
}

@media only screen and (max-width: 767px) {
	.navbar-search  .search-btn {
		display: none;
	}

	.search-toggle-btn {
		display: block;
	}

	.navbar-search {
		float: none;
		margin: 0px -15px;
	}

	.navbar-search .search-form {
		position: static;
		-webkit-transform: none;
		    -ms-transform: none;
		        transform: none;
		width: 100%;
		border-top: 1px solid #EEE;
	}

	.navbar-search.navbar-search-collapsed .search-form {
		display: block;
	}
}

/*------------------------------------*\
	Home
\*------------------------------------*/

.banner-area {
	position: relative;
	max-height: 222px;
}

#home .home-wrapper {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

.page-wrapper {
	position: relative;
	z-index: 1;
}

.page-wrapper .breadcrumb {
    background: transparent;
    margin-bottom: 0px;
}

.page-wrapper .breadcrumb .breadcrumb-item.active {
	color: #64728A;
}

.page-wrapper .breadcrumb>li+li:before {
	color: #64728A;
}

#page-header .bg-img{
	background-attachment:scroll;
}

/*------------------------------------*\
	About
\*------------------------------------*/

.about {
	margin-top: 3px;
	margin-bottom: 3px;
}

.about > img, .about a:link > img {
	width: 100%;
	border-bottom: 4px solid #FFD626;
}
.about > img:hover , .about a:hover > img{
	border-bottom: 4px solid #004;
}


/*------------------------------------*\
	Numbers
\*------------------------------------*/

.number {
	position: relative;
	margin-top: 15px;
	margin-bottom: 15px;
	padding-left: 70px;
}

.number i {
	position: absolute;
	left:0;
	width: 60px;
	height: 60px;
	line-height: 60px;
	font-size: 35px;
	color: #004;
	text-align: center;
}

.number h3 {
	font-size: 28px;
	margin-bottom: 0px;
}

.number span {
	color: #004;
}

/*------------------------------------*\
	Services
\*------------------------------------*/

.service {
	position: relative;
	margin-top: 15px;
	margin-bottom: 15px;
	-webkit-transition: 0.2s -webkit-box-shadow;
	transition: 0.2s -webkit-box-shadow;
	transition: 0.2s box-shadow;
	transition: 0.2s box-shadow, 0.2s -webkit-box-shadow;
}

.service i {
	position: absolute;
	left: 0;
	top: 20px;
	width: 60px;
	height: 60px;
	line-height: 60px;
	font-size: 35px;
	color: #FFD626;
	text-align: center;
}

.service .service-content {
	padding: 15px 15px 15px 70px;
}

.service:hover {
	-webkit-box-shadow: 0px 0px 10px 3px #EEE;
	        box-shadow: 0px 0px 10px 3px #EEE;
}


/*------------------------------------*\
	Blog
\*------------------------------------*/

.blog {
	margin-top: 15px;
	margin-bottom: 15px;
	color: #14224A;
}

.blog .blog-img {
	position: relative;
	border-bottom: 4px solid #FFD626;
}
.blog .blog-img:hover {
	border-bottom: 4px solid #004;
}

.blog .blog-img > img, .blog .blog-img a:link > img {
	width: 100%;
}

.blog  img {
	padding: 2px 10px;
}

.blog .blog-meta {
	margin-top: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #EEE;
	padding-bottom: 10px;
}
.blog .blog-meta li {
	display: inline-block;
	font-size: 14px;
}

/*------------------------------------*\
	Blog post
\*------------------------------------*/

#main .blog .blog-content {
	margin-bottom:60px;
}
.blog .blog-content p a:link,
.blog .blog-content blockquote a:link,
.blog .blog-content li a:link {
    background-color: #def1ff; /* #bed1ff;*/ 
    text-decoration: underline;
}
.blog .blog-content blockquote li a:link {
    background-color: #fff;
    text-decoration: none;
}
.blog .blog-content a:hover,
.blog .blog-content a:focus{	
    background-color: #ffb!important;
    text-decoration: none!important;
}
.blog .blog-content blockquote li a:hover ,
.blog .blog-content blockquote li a:focus {
    background-color: #ffb;
    text-decoration: underline!important;
}
.blog .blog-content .horo:hover {
-webkit-box-shadow: 3px 3px 3px 3px #999;
-moz-box-shadow: 3px 3px 3px 3px #999;
}
.blog .blog-content .horo img {
	padding: 10px 0;
}
/*******************************************************************************************************************/
.blog .blog-content h2,.blog .blog-content h3,.blog .blog-content h4,.blog .blog-content h5 {
	position: relative;
	padding-left: 44px;
	padding-top: 14px;
}
.blog .blog-content h2:after,.blog .blog-content h3:after,.blog .blog-content h4:after,.blog .blog-content h5:after {
	content: "";
	position: absolute;
	left: 0;
	top: 14px;
	bottom: 0;
	width: 10px;
	background-color: #FFD626;
}
.blog .blog-content .korot_casino h4, .blog .blog-content .sub-title{
	position: relative;
	padding: 0;
}
.blog .blog-content .korot_casino h4:after, .blog .blog-content .sub-title:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 0;
}
/********************************************************************************************************************/
/* --
/* -- blog tags & share -- */

.blog-tags-share .share {
	float: right;
}

.blog-tags-share .share .share-list {
	display: inline-block;
}

.blog-tags-share .share .share-list li {
	display: inline-block;
	margin-left: 15px;
}

/* -- blog comments -- */

.blog-comments {
	margin-top: 30px;
	margin-bottom: 30px;
}

.blog-comments .media .media-object {
	width: 60px;
}

.blog-comments  .media {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #EEE;
}

.blog-comments > .media:last-child {
    border-bottom: 1px solid #EEE;
	padding-bottom: 30px;
}

.blog-comments .media .media-body .time {
    font-size: 12px;
    font-weight: 400;
}

.blog-comments .media .media-body .reply-btn {
	padding: 0px 10px;
	font-size: 12px;
}


/* -- blog reply form -- */

.reply-form form {
	margin-top: 30px;
}

.reply-form .input, .reply-form .input , .reply-form textarea {
	margin-bottom: 15px;
}

.reply-form .input, .reply-form .input {
    width: calc(50% - 8px);
}

.reply-form .input:nth-child(2) {
    margin-left: 11px;
}


/*------------------------------------*\
	Blog sidebar
\*------------------------------------*/

#aside .widget {
	margin-top: 30px;
    margin-bottom: 30px;
}

#aside  .widget:nth-child(1){
	margin-top: 15px;
}
#aside  .widget:nth-last-child(1){
	margin-bottom: 15px;
}

/* -- category sidebar -- */

.widget-category a {
	display: block;
	padding: 5px 10px;
	border: 1px solid #EEE;
	margin: 12px 0px;
	color: #64728A;
	font-size: 14px;
	-webkit-transition: 0.2s color , 0.2s -webkit-transform;
	transition: 0.2s color , 0.2s -webkit-transform;
	transition: 0.2s transform , 0.2s color;
	transition: 0.2s transform , 0.2s color , 0.2s -webkit-transform;
}

.widget-category a span {
	float: right;
}

.widget-category a:hover {
	-webkit-transform: translateX(3px);
	    -ms-transform: translateX(3px);
	        transform: translateX(3px);
	color: #004;
	-webkit-box-shadow: -4px 0px 0px 0px #FFD626;
	box-shadow: -4px 0px 0px 0px #FFD626;
	border-left: #FFD626;
}


/* -- posts sidebar -- */

.widget-post {
	margin-bottom: 30px;
	padding-bottom: 5px;
	border-bottom: 1px solid #EEE;
}

.widget-post:nth-last-child(1) {
	border-bottom: 0px;
}

.widget-post  > a {
	position: relative;
	padding-left: 100px;
	display: block;
	min-height: 60px;
	margin-bottom: 5px;
}

.widget-post  > a  > span {
	display: inline-block;
}

.widget-post img {
	position:absolute;
	top:0;
	left:0;
}

.widget-post .blog-meta li {
    display: inline-block;
    font-size: 12px;
}


#aside .topor {
	margin-top: 3px;
    margin-bottom: 3px;
}
.widget-top {
	margin-bottom: 3px;
	padding-bottom: 5px;
	border-bottom: 1px solid #AAF;
}

.widget-top:nth-last-child(1) {
	border-bottom: 0px;
}

.widget-top  > a {
	position: relative;
	padding-left: 100px;
	display: block;
/*	min-height: 70px;*/
	margin-bottom: 5px;
}

.widget-top  > a  > span {
	display: inline-block;
}
.widget-top  > a  > img {
	border: 1px solid #004;
}
.widget-top  > a:hover  > img {
	border: 1px solid #ff8;
}
.widget-top img {
	position:absolute;
	top:0;
	left:0;
}
.widget-top .top-meta li {
	padding-top: 77px;
    display: inline-block;
    font-size: 17px;
}
.widget-top .top-meta li a:hover{
	color: #004;
	text-decoration: underline;
    background-color: #ff8;
}

/* -- tags sidebar -- */

.widget-tags a {
	display: inline-block;
	padding: 3px 10px;
	font-size: 14px;
	margin: 2px 0px;
	border: 1px solid #EEE;
	color: #64728A;
	-webkit-transition: 0.2s all;
	transition: 0.2s all;
}

.widget-tags a:hover {
	color: #004;
	background-color: #FFD626;
	border: 1px solid #004;
}


/*------------------------------------*\
	Footer
\*------------------------------------*/

.footer-widget {
	margin-top: 15px;
	margin-bottom: 15px;
}

/* -- footer logo -- */
.footer-logo .logo {
	display: inline-block;
	margin-bottom: 30px;
}

.footer-logo .logo > img{
	max-height: 50px;
}

.footer-contact li {
	margin-top: 10px;
}

/* -- footer contact -- */
.footer-contact li a {
	color: #64728A;
}

.footer-contact li a i {
	color: #FFD626;
	margin-right: 15px;
}

/* -- footer links -- */
.footer-links li {
	margin-top: 10px;
}

.footer-links li a {
	display: inline-block;
	font-size: 14px;
	color: #64728A;
	-webkit-transition: 0.2s color, 0.2s -webkit-transform;
	transition: 0.2s color, 0.2s -webkit-transform;
	transition: 0.2s transform, 0.2s color;
	transition: 0.2s transform, 0.2s color, 0.2s -webkit-transform;
}

.footer-links li a:hover {
	-webkit-transform: translateX(3px);
	    -ms-transform: translateX(3px);
	        transform: translateX(3px);
	color: #FFF;
}

/* -- footer subscribe -- */
.footer-subscribe {
	position: relative;
	margin-top: 30px;
}

.footer-subscribe .input {
	padding-right: 125px;
}

.footer-subscribe button {
	position: absolute;
	top: 3px;
	right: 3px;
	bottom: 3px;
	padding: 0px 20px;
	background: #FFD626;
	border: none;
	color: #004;
	font-size: 14px;
}

/* -- footer social -- */
.footer-social {
	margin-top: 30px;
}

.footer-social li {
	display:inline-block;
}

.footer-social li a {
	display: inline-block;
	height: 35px;
	width: 35px;
	text-align: center;
	line-height: 30px;
	color: #FFD626;
	border: 2px solid #FFD626;
	border-radius: 50%;
	margin-right: 10px;
	font-size: 14px;
	-webkit-transition: 0.2s all;
	transition: 0.2s all;
}

.footer-social li a:hover {
	background-color: #FFD626;
	color: #004;
}

/* -- Bottom Footer -- */
#footer #bottom-footer {
	background-color: rgba(0, 0, 0, 0.15);
}
#footer #bottom-footer a {
	color: #FFD626;
}



/*------------------------------------*\
	Responsive
\*------------------------------------*/

@media only screen and (max-width: 991px) {

	#cta-2 {
		text-align:center;
	}

	#main {
		margin-bottom:30px;
	}


	.widget-post {
		min-height: 90px;
		padding-bottom: 30px;
	}

	.widget-post  > a {
		min-height: auto;
	}

	.widget-post .blog-meta {
		padding-left:100px;
	}
}

@media only screen and (max-width: 767px) {
	.section-header {
		margin-bottom:15px;
	}

	.home-wrapper h1 {
		font-size:28px;
	}


	.blog-tags-share .share {
		float:none;
		margin-top:15px;
	}

}

@media only screen and (max-width: 480px) {
	#numbers [class*='col-xs'] {
		width:100%;
	}
	.number {
		text-align: center;
		padding: 0;
	}
	.number i {
		position: static;
	}

	.widget-post {
		min-height: auto;
		padding-bottom: 5px;
	}
	.widget-post  > a {
		min-height: 60px;
	}
	.widget-post .blog-meta {
		padding-left: 0px;
		margin-top: 15px;
	}
	.stoproc, .blog .blog-content p img{width: 100%;height: auto;}
}
@media only screen and (min-width: 768px) {
.stoproc, .blog .blog-content p img {width: auto;}
}
@media only screen and (max-width: 767px) {
.stoproc, .blog .blog-content p img {width: 100%;}
}


/*------------------------------------*\
	Preloader
\*------------------------------------*/

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #FFF;
    z-index: 99999;
}

.preloader {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
	-webkit-animation: preload-rotate 10s linear infinite;
	        animation: preload-rotate 10s linear infinite;
}
.preloader span {
	display: inline-block;
	width: 30px;
	height: 30px;
	background-color: #004;
	position: absolute;
	-webkit-transform: scale(0);
	    -ms-transform: scale(0);
	        transform: scale(0);
}

.preloader span:nth-child(1) {
	top: 0;
	left: 0;
	-webkit-animation: 1s preload-scale ease-in-out infinite;
	        animation: 1s preload-scale ease-in-out infinite;
}
.preloader span:nth-child(2) {
	top: 0;
	right: 0;
	-webkit-animation: 1s preload-scale 0.06s ease-in-out infinite;
	        animation: 1s preload-scale 0.06s ease-in-out infinite;
}
.preloader span:nth-child(3) {
	bottom: 0;
	-webkit-animation: 1s preload-scale 0.11s ease-in-out infinite;
	        animation: 1s preload-scale 0.11s ease-in-out infinite;
}
.preloader span:nth-child(4) {
	bottom: 0;
	right: 0;
	-webkit-animation: 1s preload-scale 0.17s ease-in-out infinite;
	        animation: 1s preload-scale 0.17s ease-in-out infinite;
}

@-webkit-keyframes preload-rotate {
	0% {
		-webkit-transform:translate(-50%, -50%) rotate(0deg);
		        transform:translate(-50%, -50%) rotate(0deg);
	}
	100% {
		-webkit-transform:translate(-50%, -50%) rotate(360deg);
		        transform:translate(-50%, -50%) rotate(360deg);
	}
}

@keyframes preload-rotate {
	0% {
		-webkit-transform:translate(-50%, -50%) rotate(0deg);
		        transform:translate(-50%, -50%) rotate(0deg);
	}
	100% {
		-webkit-transform:translate(-50%, -50%) rotate(360deg);
		        transform:translate(-50%, -50%) rotate(360deg);
	}
}

@-webkit-keyframes preload-scale {
	0% {
		-webkit-transform: scale(0);
		        transform: scale(0);
	}
	40% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
	80% {
		-webkit-transform: scale(0);
		        transform: scale(0);
	}
	100% {
		-webkit-transform: scale(0);
		        transform: scale(0);
	}
}

@keyframes preload-scale {
	0% {
		-webkit-transform: scale(0);
		        transform: scale(0);
	}
	40% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
	80% {
		-webkit-transform: scale(0);
		        transform: scale(0);
	}
	100% {
		-webkit-transform: scale(0);
		        transform: scale(0);
	}
}
.float-l{
    float: left;
}

.float-r{
    float: right;
}

.clear{
    clear: both;
}
.r-10{
margin-right: 10px;
}
.errors{
	font-size:15px;
	font-weight:bold;
	color:#FF5555;
}
.casinos {
border-left: 2px solid #fff;
border-top: 2px solid #fff;
border-bottom: 2px solid #fff;
box-shadow: 0;
}
.casinos:hover {
border-left: 1px solid #AAA;
border-top: 1px solid #AAA;
border-bottom: 3px solid #AAA;
box-shadow: 4px 4px 2px 2px rgba(0, 0, 0, 0.3);
}
.casinos img {
	width: 100%;
}
.casinos .opis {
	height: 188px;
}
.casinos .secondary-button, .casinos .main-button {
font-size: 16px;
padding: 5px 15px;
}
.alone_casino {
margin: 15px!important;
text-align: center;
}
.alone_casino .secondary-button {
font-size: 25px;
font-weight: bold;
padding: 10px 77px;
}
.casinos a, .casinos a:hover, .alone_casino a:hover, .alone_casino a {
	text-decoration: none!important;
}
.casinos .rattt {
height: 25px;
width: 70px;
text-align: left;
color: #001232;
font-weight: bold;
font-size: 16px;
padding: 1px 3px;
margin-top: 5px;
border-radius: 7px;
background-color: #FFD626;
	}
hr .cas-hr {
color: #001232;
}
/*************************************/
.korot_casino {
width: 100%;
height: 144px!important;
overflow: hidden;
}
.korot_casino img {
width: 100px;
height: 33px;
}
.korot_dices {
width: 128px!important;
min-height: 128px!important;
background-position: top left;
}
.korot_casino .good li {
font-size: 19px;
color: #090;
display: block;
}
.korot_casino .bad li {
font-size: 19px;
color: #900;
display: block;
}

/*************************************/
/* rating */
div.wrap{
    margin: auto;
 /*   width: 292px;*/
}

div.border-wrap{
    background-clip: border-box;
    background-color: rgb(255, 255, 255);
    background-origin: padding-box;
    background-size: auto;
    border: 0;
/*    border: 1px solid rgb(155, 200, 155);
    border-radius: 9px;*/
    margin: 5px auto;
    overflow: hidden;
    padding: 2px 4px 0 0;
    position: relative;
}
div.vote-wrap{
    overflow: hidden;
}

div.vote-block{
	position: relative;
}

div.vote-hover{
    float: left;
    cursor:  pointer;
}


div.vote-stars{
	position: absolute;
	left: 0;
	top: 0;
}

div.vote-active{
	position: absolute;
	left: 0;
	top: 0;
}

div.vote-result{
    color: #797;
    font-size: 14px;
    padding-left: 169px;
	padding-top: 6px;
}

div.vote-success{
    clear: both;
    color: #787;
    font-size: 13px;
    margin: 10px 0 0 10px;
}
   iframe { display: block; margin: 25px auto; }

    .jq-toast-wrap,.jq-toast-wrap *{margin:0;padding:0}.jq-toast-wrap{display:block;position:fixed;width:333px;pointer-events:none!important;letter-spacing:normal;z-index:9000!important}.jq-toast-wrap.bottom-left{bottom:20px;left:20px}.jq-toast-wrap.bottom-right{bottom:20px;right:40px}.jq-toast-wrap.top-left{top:20px;left:20px}.jq-toast-wrap.top-right{top:20px;right:40px}.jq-toast-single{display:block;width:100%;padding:10px;margin:0 0 5px;border-radius:4px;font-size:14px;font-family:arial,sans-serif;line-height:17px;position:relative;pointer-events:all!important;background-color:#444;color:#fff}.jq-toast-single h2{font-family:arial,sans-serif;font-size:14px;margin:0 0 7px;background:0 0;color:inherit;line-height:inherit;letter-spacing:normal}.jq-toast-single a{color:#eee;text-decoration:none;font-weight:700;border-bottom:1px solid #fff;padding-bottom:3px;font-size:14px}.jq-toast-single ul{margin:0 0 0 15px;background:0 0;padding:0}.jq-toast-single ul li{list-style-type:disc!important;line-height:17px;background:0 0;margin:0;padding:0;letter-spacing:normal}.close-jq-toast-single{position:absolute;top:3px;right:7px;font-size:14px;cursor:pointer}.jq-toast-loader{display:block;position:absolute;top:-2px;height:5px;width:0;left:0;border-radius:5px;background:red}.jq-toast-loaded{width:100%}.jq-has-icon{padding:10px 10px 10px 50px;background-repeat:no-repeat;background-position:10px}.jq-icon-info{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=);background-color:/*#31708f*/#004;color:#d9edf7;border-color:#bce8f1}.jq-icon-warning{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=);background-color:#8a6d3b;color:#fcf8e3;border-color:#faebcc}.jq-icon-error{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=);background-color:#a94442;color:#f2dede;border-color:#ebccd1}.jq-icon-success{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==);color:#dff0d8;background-color:#3c763d;border-color:#d6e9c6}
    
    /** { font-family: 'Roboto Slab', serif; margin: 0; padding: 0; }
    hr { border: 1px solid #ccc; margin-bottom: 20px; }
    h1, h2 { margin: 20px 0px 10px; }
    .container { display: block; width: 1200px; margin: auto; }
    strong { padding-bottom: 1px; border-bottom: 1px dotted; }
    p { margin: 10px 0px; }*/
    code { font-family: monospace; color: #2d2d2d; background: whitesmoke; display: block; padding: 10px; border: 1px solid #ccc; overflow: scroll;}
    a.eval-js { color: whitesmoke; padding: 5px 10px; display: inline-block; margin-bottom: 10px; background: #2d2d2d; border-radius: 2px; }
    span.muted { font-size: 17px; color: #8B7373; }
    span.code { font-family: monospace; color: #2d2d2d; background: whitesmoke; padding: 5px; border: 1px solid #ccc; }
    div.code-runner { margin: 20px 20px;}
    span.k { display: inline-block; width: 175px; }
    span.c { color: #F7BCBC; padding-left: 30px; }
    .plugin-options label { display: inline-block; width: 265px; }
    span.toast-position span.k { display: inline; } 
    .toast-index .muted { display: block; color: #AD9D9D; }
    .toast-index .muted:hover { color: #333; }
    .latest-update { padding: 0px 30px; border: 1px dashed; margin: 30px 0; box-sizing: border-box; }