/*
 Font Name: Kanit
 Weights: 300, 400, 500
*/

@font-face {
    font-family: 'kanit';
    src: url('../vendor/kanit/kanit-light-webfont.eot');
    src: url('../vendor/kanit/kanit-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('../vendor/kanit/kanit-light-webfont.woff2') format('woff2'),
         url('../vendor/kanit/kanit-light-webfont.woff') format('woff'),
         url('../vendor/kanit/kanit-light-webfont.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'kanit';
    src: url('../vendor/kanit/kanit-medium-webfont.eot');
    src: url('../vendor/kanit/kanit-medium-webfont.eot?#iefix') format('embedded-opentype'),
         url('../vendor/kanit/kanit-medium-webfont.woff2') format('woff2'),
         url('../vendor/kanit/kanit-medium-webfont.woff') format('woff'),
         url('../vendor/kanit/kanit-medium-webfont.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'kanit';
    src: url('../vendor/kanit/kanit-regular-webfont.eot');
    src: url('../vendor/kanit/kanit-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../vendor/kanit/kanit-regular-webfont.woff2') format('woff2'),
         url('../vendor/kanit/kanit-regular-webfont.woff') format('woff'),
         url('../vendor/kanit/kanit-regular-webfont.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

h1, h2, h3, h4, h5, h6, nav, .nav, .menu, button, .button, .btn, .price, ._heading, blockquote, label, legend, .top-header a, .navbar a, .footer, .fix_footer a, .page-content, .textwidget {
  font-family: "kanit", san-serif !important;
  font-weight: 400 !important;
}
h1, h2, h3 {
    margin-top: 10px;
    margin-bottom: 10px;
}
body { /*background-image: linear-gradient(to top, #050505, #0c0c0c, #111111, #141414, #181818);*/ background-color: #000; } /* #232323*/
body,a,.btn-default { color: #fff;}
.btn { border-radius: 0;}
a:hover { color: #f9d400; }

.row { margin-left: -7px; margin-right: -7px; }
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    padding-left: 7px;
    padding-right: 7px;
}
.container { padding-left: 14px; padding-right: 14px; }

img {border:none;}
img.alignleft,img.alignright{padding:3px; margin-top:6px; margin-bottom:6px; border-radius:4px;}
.alignleft{float:left;margin-right:8px;}
.alignright{float:right;margin-left:8px;}
.aligncenter{display:block;margin-left:auto;margin-right:auto;text-align:center;margin-top:15px;margin-bottom:15px;}
.alignmcenter{display:block;margin-left:auto;margin-right:auto;text-align:center;margin-top:2px;margin-bottom:2px;}

figure {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	/*background: #fff;*/
	overflow: hidden;
	/*margin-bottom: 15px;*/
}
figure:hover+span {
	bottom: -36px;
	opacity: 1;
}
/* Zoom In #1 */
.hover01 figure img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.hover01 figure:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
/* Gray Scale */
.hover08 figure img {
	-webkit-filter: grayscale(30%);
	filter: grayscale(30%);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.hover08 figure:hover img {
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
}

/* Flashing */
.hover13 figure:hover img {
	opacity: 1;
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
}
@-webkit-keyframes flash {
	0% {
		opacity: .4;
	}
	100% {
		opacity: 1;
	}
}
@keyframes flash {
	0% {
		opacity: .4;
	}
	100% {
		opacity: 1;
	}
}

/* Shine */
.hover_shine figure {
	position: relative;
}
.hover_shine figure::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
.hover_shine figure:hover::before {
	-webkit-animation: shine .75s;
	animation: shine .75s;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}
/* Shine */

.wrapper { width: 1060px !important; margin: 15px auto; background-color: #000;	padding: 0 0 15px;}
.wrapper-full { background-color: #000; /*background-image: linear-gradient(to right, #000000, #090909, #111111, #171717, #1c1c1c);*/ }

.top-header { background-color: #000; position: relative; z-index: 1002; }
.top-header ul.list-inline { margin-bottom: 0; }
.top-header ul.list-inline > li { float: left; margin: 0; padding: 0;}
.top-header ul.list-inline > li > a { display: block; padding: 7px 7px; }
.top-header ul.list-inline > li > a { color: #343434; font-family: 'kanit'; font-size: 1.05em; font-weight: 400; }
.top-header ul.list-inline > li > a:hover, .top-header ul.list-inline > li > a:active { text-decoration: underline;}

.middle-header { background-color:#000 /*transparent; position: relative; z-index: 1001; border-top: 3px solid #ffd356; */}
.middle-header > .container > .row { padding: 15px 0; }
.navbar { min-height: inherit; border: 0; background-image: linear-gradient(to top, #000000, #080808, #0e0e0e, #141414, #181818);}
.navbar {  border-radius: 0 !important;}
.navbar .navbar-nav > li > a { padding-top:14px; padding-bottom: 14px; font-family: 'kanit'; font-size : 1.15em; color: #fff; text-shadow: 0 0 1px #000;}
.navbar .navbar-toggle { float: right; margin-right: 15px; margin-left: 15px; padding: 5px 7px; border-radius: 0; background-color: #DCDCDC; }
.navbar .navbar-nav > .active > a,
.navbar .navbar-nav > .active > a:focus,
.navbar .navbar-nav > .active > a:hover,
.navbar .navbar-nav > li > a:focus,
.navbar .navbar-nav > li > a:hover,
.navbar .navbar-nav > .open > a,
.navbar .navbar-nav > .open > a:focus,
.navbar .navbar-nav > .open > a:hover { color: #fff !important; background-color: #f9d400;}
.shadow-navbar { position: relative; z-index: 1000; margin-bottom: 0; -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2); box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2); }
.dropdown-menu { border-radius: 0; border-color: #ccc; -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2); box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2); font-size: 17px; }
.dropdown-menu > li > a { color: #666;}
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { background-color: #eee; }
.dropdown-submenu { position: relative;}
.dropdown-submenu > .dropdown-menu { top: 0; left: 100%;}
.breadcrumb-container { background-color: #f5f5f5;}
.breadcrumb-container .breadcrumb { padding-top: 10px; background-color: transparent; margin-bottom: 0; border-radius: 0;}
.breadcrumb-container .breadcrumb > li + li:before { font-family: 'fontAwesome'; content: '\f101'; }
.breadcrumb-container .breadcrumb > li > a { color: #f9d400; }

@media (max-width: 991px) {
  .wrapper { width: 100% !important; }
  .logo { text-align: center; margin-bottom: 15px !important; }
  .logo img { display: inherit; }
}
@media (min-width: 768px) {
	.mtop-header { display: none; }
  /*.navbar .navbar-collapse { position: relative; padding-right: 0; padding-left: 0; }
  .dropdown-submenu > a:after { display: block; font-family: 'fontAwesome'; content: "\f0da"; float: right; margin-right: -10px; } */
}
@media (max-width: 767px) {
	.mtop-header { background-color: #DCDCDC; }
	.mtop-header img { padding:10px 0; }
 /* .dropdown-submenu > .dropdown-menu { padding-right: 15px; }
  .dropdown-submenu > a:after { display: inline-block; font-family: 'fontAwesome'; content: "\f0d7"; margin-left: 10px; } */
}

.header-social a:hover { text-decoration: none; }
.content { padding: 15px; }
.page-title { padding: 0; color:#ffdd80; }
.page-title h1{ font-size: 30px; line-height:1.5; margin-top:0; padding: 0; font-family: 'kanit'; color:#fff;}
h1.page-title { font-size: 30px; line-height:1.5; font-family: 'kanit';  margin-top: 0;}
h2.page-title { font-size: 27px; line-height:1.5; font-family: 'kanit';  margin-top: 0;}
.page-title h2{ line-height:24px; font-size: 1.4em;}
.page-detail { color:#efefef; font-size:12px; padding: 0 0 0 4px; } 
.page-detail i{ margin-bottom:2px; } 
.page-content { color:#fff; font-size:15px; padding:5px 0 3px; line-height:1.6; }
.page-content strong{ font-weight: 700; }
.page-content p{ margin-top:10px; color:#fff !important; }
.page-content img{ max-width: 100%; height: auto;}
.page-content a { color: #f9d400; }
.page-content a:hover{ text-decoration:underline; }
.page-content ul li{ list-style:circle; margin:2px 5px 2px 0; line-height:27px;}
.page-content ol li{ list-style:decimal; margin:2px 5px 2px 0; }
.page-content h1{ font-size:36px; color:#fff;}
.page-content h2{ font-size:30px; color:#fff;}
.page-content h3{ font-size:27px; color:#fff;}
.page-content h4{ font-size:20px; color:#fff;}
.page-content h5{ font-size:16px; }
.page-content h6{ font-size:14px; }
.page-content blockquote p { font-size: 0.9em !important; }
.content-item { margin-bottom: 10px; padding-bottom: 15px; border-bottom: 1px solid #e4e4e4; min-height:140px; }
.content-item .pic { float: left; max-width:20%; margin-right: 18px; line-height: 0; }
.content-item .pic  img{ width: 100%; height:auto; max-height:120px; border: 1px solid #dfdfdf; padding: 2px;}
.content-item .entry-title { margin: 0 0 7px; font-size: 1.3em; line-height: 1.3; }
.content-item  h2.entry-title a{ color:#fff; }
.content-item  h2.entry-title a:hover{ color:#f9d400; }
.content-item .entry-meta  a{ color:#343434; }
.content-item .entry-meta { margin-bottom: 3px; font-size: 13px; color:#ababab;}
.content-item .entry-meta .tags-links { display: none; }
.content-item .entry-footer { display: none; }
.content-item .entry-summary  { color:#cdcdcd; }
.content-item .entry-summary p { margin-bottom: 0; font-size: 14px; line-height:24px; }
.content-item .entry-summary ul li{ list-style: none !important;}
.content-item.-post { margin-bottom: 15px; padding-bottom: 5px; border-bottom: 1px solid #e4e4e4; min-height:100px !important; }
.content-item.-post .pic { float: left; max-width:25%; margin-right: 15px; line-height: 0; }
.content-item.-post .pic  img{ width: 100%; height:auto; max-height:90px; border: 1px solid #dfdfdf; padding: 2px;}
.content-item.-post .entry-title { margin: 0 0 7px; font-size: 1.1em; line-height: 1.2; }
.content-item.-post .entry-meta { font-size: 11px; color:#ababab;}
.content-item.-grid  { border-bottom: none; padding-bottom: 0; }
.content-item.-grid .pic { max-width:100% !important; margin-right: 0; }
.content-item.-grid .pic  img{ width: 100%; height:auto; max-height:250px; margin-bottom: 5px; border: none; border: 1px solid #f9d400; padding:1px; }
.content-item.-grid  .entry-title { float: left;  margin: 0 0 7px; font-size: 1em; line-height: 1.2; padding:3px 2px; height:48px; overflow: hidden; }
.content-item.-grid  h2.entry-title a{ color:#fff; }
article.news-list { line-height:1.5em; border-bottom:1px dotted #999; padding:3px 0;}
article.news-list a{ color:#fff; margin-left:10px; font-size: 0.9em;}
.nlist { background-color: #f9d400; color: #fff; font-size: 0.8em; width:80px;}
.nlist:hover { color: #fff;}

.content-pagination { margin:20px 0; }
.content-pagination a,
.content-pagination span{	display: inline-block;	border: 1px solid #ddd;	padding: 4px 8px;	min-width: 36px;	text-align: center;	line-height: 24px; }
.content-pagination a , .content-pagination a i { vertical-align: -1px;	color:#676767; }
.content-pagination span { font-weight: 500; padding-top:3px; padding-bottom:5px; }
.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {	background-color: #F3F3F3;	color: #f9d400;}
.bg_zone_blue { background-color:#f9d400; padding: 15px 7px; margin: 0 0 15px; }
.bg_zone_gray { background-color:#efefef; padding: 15px 7px; margin: 0 0 15px; }
.bg_step_register { background-color:#171A23; padding: 15px 7px; margin: 0 0 15px; }
.bg_content1 { background-image: linear-gradient(to top, #000000, #080808, #0e0e0e, #141414, #181818); padding:0px; border: 1px solid #ababab; padding: 8px; margin: 15px 0 15px; }
.bg_home_banner2 { margin-bottom: 0px; }

.grid-col { float: left; position: relative; margin-left: -8px; margin-right: -7px; }
.grid-col h3.widget-title { margin-left: 10px; margin-right: 10px; }

@media screen and (min-width: 992px) {
	.col-2 { width:50% }
	.col-2:nth-of-type(2n+1) {clear: left;}
	.col-3 { width:33.3333% }
	.col-3:nth-of-type(3n+1) {clear: left;}
	.col-4 { width:25% }
	.col-4:nth-of-type(4n+1) {clear: left;}
	.col-5 { width:20% }
	.col-5:nth-of-type(5n+1) {clear: left;}
}

@media screen and (max-width: 767px) {
	.col-2 { width:50%}
	.col-3 { width:50%}
	.col-4 { width:50%}
	.col-5 { width:50%}
	.col-5:nth-of-type(2n+1) {clear: left;} 
	.content-item.-a2 { min-height:125px; margin-bottom:5px;}
	.content-item.-a2 .pic { max-width:36%; margin-right: 10px; }
	.content-item.-a2 .entry-title { font-size: 1em; }
	.content-item.-a2 .entry-meta { display: none; }
	.content-item.-a2 .entry-summary { display: none; }
}

@media screen and (max-width: 480px) {
	.-a2 .pic img{ min-width:60px; max-height:90px; }
	.content-item.-a2 { min-height:105px; margin-bottom:5px;}
	.content-item.-a2 .entry-title { font-size: 0.85em; }
}

.widget ul, .widget_recent-posts ul { margin:0; padding-left: 0;}
.widget ul li, .widget_recent-posts ul li { list-style: none; line-height: 1.5em; padding: 2px 5px 2px 10px; color:#efefef;}
.widget ul li::before, .widget_recent-posts ul li::before { /*font-family: "FontAwesome"; content: "\f101"; margin-right:5px;*/ }
.widget ul li a:hover, .widget_recent-posts ul li a:hover { text-decoration: underline; }
.widget ul li ul, .widget_recent-posts ul li ul{ border:none; padding-bottom:0; }
.widget ul li ul li::before, .widget_recent-posts ul li ul li::before { /*font-family: "FontAwesome"; content: "\f101"; margin-right:5px;*/ }
.widget img{ margin-bottom: 5px; }

/* Widget Title Color */
h3.widget-title { padding:10px 0; font-family: 'kanit'; font-size: 1.5em; border-bottom: 1px dotted #bababa; margin: 0 auto 15px; position: relative; z-index:3; color: #f9d400; }
.yellow h3.widget-title { padding:9px 10px 6px; margin: 0 8px 15px; position: relative; z-index:3; border-left: 5px solid #D2AA46; background-color: #D2AA46;}
.red h3.widget-title { padding:9px 10px 6px;  margin: 0 8px 15px; position: relative; z-index:3;  border-left: 5px solid #770000; background-color: #FF0000;}
.green h3.widget-title { padding:9px 10px 6px;  margin: 0 8px 15px; position: relative; z-index:3;  border-left: 5px solid #005826; background-color: #00a651;}
.purple h3.widget-title { padding:9px 10px 6px;  margin: 0 8px 15px; position: relative; z-index:3;  border-left: 5px solid #630460; background-color: #92278f;}
.blue h3.widget-title { padding:9px 10px 6px;  margin: 0 8px 15px; position: relative; z-index:3;  border-left: 5px solid #00386f; background-color: #0054a6;}
.orange h3.widget-title { padding:9px 10px 6px;  margin: 0 8px 15px; position: relative; z-index:3;  border-left: 5px solid #f05a00; background-color: #ff8a00;}
.brown h3.widget-title { padding:9px 10px 6px;  margin: 0 8px 15px; position: relative; z-index:3;  border-left: 5px solid #653302; background-color: #9a4b00;}
.black h3.widget-title { padding:9px 10px 6px;  margin: 0 8px 15px; position: relative; z-index:3;  border-left: 5px solid #4a4a4a; background-color: #282828;}
/* Widget Title Color */

.title { font-size: 1.5em; font-family: 'kanit'; line-height: 1; margin: 0 0 15px; padding: 0; }
.title > span { display: inline-block; margin-bottom: -3px; padding: 5px 15px 9px; color: #111; }
.title > span > a { color: #efefef; }
.title { /*border-bottom: 3px solid #898989;*/ background-color: #f9d400; }
.title span { color:#111 !important; font-weight: normal; /*border-bottom: 3px solid #f9d400;*/}

.so-panel ul li { padding: 1px 5px 1px; }
.so-panel h1, .so-panel h2 , .so-panel h3, .so-panel h4{ font-family: 'kanit'; }
.so-widget-sow-editor .title span { color:#131313; }
.so-widget-sow-editor .siteorigin-widget-tinymce  { color:#EFEFEF; font-size: 0.97em; line-height: 1.5em; margin:0; padding: 0;}
.so-widget-sow-editor .siteorigin-widget-tinymce  ul{ margin:0; padding-left: 20px;}
.so-widget-sow-editor .siteorigin-widget-tinymce  ul li { list-style: disc; border: none; line-height: 1.5em; padding: 2px 0 2px 5px;}
.siteorigin-widget-tinymce p { line-height: 1.6em; font-size: 15px;}

/* Footer */
.footer .siteorigin-widget-tinymce p { line-height: 0; }
.footer { font-family: 'kanit'; font-size: 1.05em; margin-top: 15px; margin-bottom: 50px; color: #FFF; background-color: #090909; }
.footer .copyright { padding: 15px 15px 10px; color: #FFF; background-color: #000;}
.footer .title { border-bottom: 1px dotted #898989 !important; }
.footer .title span{ color: #fff !important; border-bottom: none !important; }
.footer .sub-menu { margin-bottom: 30px; padding-top: 15px; }
.footer h3.footer-title { font-size: 1.2em; color: #FADA19;}
.footer ul.sub-footer { padding-top: 5px; } 
.footer ul.sub-footer li::before { color:#efefef; font-family: "FontAwesome"; content: "\f101"; margin-right:5px; }
.footer ul.sub-footer li{ display: inline-block !important; padding: 0 7px; width: 200px; font-size: 1em; list-style-type: disc !important; } 
.footer ul.sub-footer2 { padding-top: 5px; } 
.footer ul.sub-footer2 li::before { color:#efefef; font-family: "FontAwesome"; content: "\f101"; margin-right:5px; }
.footer ul.sub-footer2 li{ display: inline-block !important; padding: 0 7px; width: 150px; font-size: 1em; list-style-type: disc !important; } 
.footer ul.footer-menu { padding-top: 5px; } 
.footer ul.footer-menu li{ display: inline-block !important; padding: 0 7px;} 
.footer ul.footer-menu li a:hover { text-decoration: none; } 
.footer ul { line-height: 1.7; padding: 0; list-style: none; }
.footer ul li a { color: #FFF; }
/*.footer ul li a:hover { color: #f9d400;}
.footer a:hover { color: #f9d400; }*/
.footer .footer-icon span i { line-height: 2; width: 30px; height: 30px; margin-right: 5px; margin-bottom: 5px; text-align: center; border: 1px solid #a3a3a3; border-radius: 100%; }
.title-footer { font-size: 27px; line-height: 1; margin: 10px 0; padding: 10px 0; border-bottom: 1px solid #bababa;}
.title-footer > span { display: inline-block; color: #FFF;}
/* Footer */

#bsadsheadlineBottom{ height:auto; width:auto; position:fixed; bottom: 50px; right: 1%; /*transform: translate(-50%, 0);*/ z-index:9999; }
#bsadsheadlineLeft{ height:auto; width:auto; position:fixed; top: 30px; left: 5px; z-index:9999;}
#bsadsheadlineRight{ height:auto; width:auto; position:fixed; top: 30px; right: 5px; z-index:9999;}
#bloggerspicesflotads { height: 30px; width: auto; text-align: left;  }
#bsadsbase{ margin: 0 auto; text-align: center; }
.bclose { color:#fff;font-size:13px;float:right;padding-top:20px;padding-right:10px; }
#bloggerspicesflotads span a{ color:#ff0000; cursor: pointer; }

@media (max-width: 767px) {	
	/*#bsadsheadlineBottom{ display: none; }*/
	#bsadsheadlineBottom{ display: none; }
	#bsadsheadlineLeft{ display: none; }
	#bsadsheadlineRight{ display: none; }
	.mh-title{text-align:center;background-color: #232323; padding:15px;}
	.mh-description { display: none; }
}

.fix_footer {
	position:fixed;bottom: 0px;z-index: 99999999;width: 100%;min-height: 50px;text-align: center;
	color:#fff !important;border-top: 1px solid #d49792;
	background: #f46d22;
}

.fix_footer a {display: inline-block;color:#fff;margin-left: -3px;font-family: kanit;font-size: 16px;line-height: 28px;padding: 20px 50px 10px 50px;border-right: 1px solid #d49792;}
.fix_footer a:last-child {border-right: 0;}
.link_ico {display: inline-block;height: 28px;margin-right: -3px;width: 28px;background-image: url(../images/icon-s.png?v=1.2);overflow: hidden;background-repeat: no-repeat;}
.fix_footer strong {display: inline-block;top: -5px;position: relative; font-weight: 300;}
.ico_1 {background-position: -50px 6px;}
.ico_2 {background-position: -93px 6px;}
.ico_3 {background-position: -152px 6px;}
.ico_4 {background-position: -180px 6px;}
.ico_5 {background-position: -204px 6px;}

.fix_footer a:hover{
	background: #F58921;
	color: #fff;
}

@media screen and (max-width:980px){
	.fix_footer a {float: left;width: 20%;font-family: kanit;font-size: 15px;line-height: 18px;padding: 8px 0px 10px 0px;text-align: center;margin-left: 0px;}
}
@media screen and (max-width:620px){
	.fix_footer a strong {width: 100%;margin: 5px 0px 5px 0px;}
	.fix_footer a.last {display: none;}
	.fix_footer a {padding: 15px 0px 10px 0px;width: 25%;}
	.footer {padding: 0px 0px 5px 0px;}
}

.wp-sub-content { font-size: 1.2em;	line-height: 1.2; }
.bet_wraper { padding-top: 15px;}
.betLogin { border: 1px solid #e1e1e1; padding: 13px; }
.hbetLogin { margin-top:5px; }
.mh-description { margin-top: -5px; }
.d-block { display: block !important; }
.d-inline-block { display: inline-block !important; }
.d-inline { display: inline !important; }
.w-100 {  width: 100% !important; }
.m-t-0 { margin-top: 0 !important;}
.m-b-0 { margin-bottom: 0 !important;}
.m-t-1 { margin-top: 1rem !important;}
.m-b-1 { margin-bottom: 1rem !important;}
.m-t-2 { margin-top: 1.5rem !important;}
.m-b-2 { margin-bottom: 1.5rem !important;}
.m-t-3 { margin-top: 3rem !important;}
.m-b-3 { margin-bottom: 3rem !important;}