/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/*
@font-face {
	font-family: 'phet';
	src: url('../fonts/Phetsarath_OT.ttf');
	src: url('../fonts/Phetsarath_OT.ttf') format('truetype'),
		font-weight('normal'), font-style('normal');
}

@font-face {
	font-family: 'ebrima';
	src: url('../fonts/EBRIMA_1.TTF');
	src: url('../fonts/EBRIMA_1.TTF') format('truetype'),
		font-weight('normal'), font-style('normal');
}

@font-face {
	font-family: 'ebrimaB';
	src: url('../fonts/EBRIMABD_0.TTF');
	src: url('../fonts/EBRIMABD_0.TTF') format('truetype'),
		font-weight('normal'), font-style('normal');
}

@font-face {
	font-family: 'SaysetthaUnicode';
	src: url('../fonts/Saysettha_Unicode_Regular.ttf');
	src: url('../fonts/Saysettha_Unicode_Regular.ttf') format('truetype'),
		font-weight('normal'), font-style('normal');
}

@font-face {
	font-family: 'SaysetthaOT';
	src: url('../fonts/saysettha_ot.ttf');
	src: url('../fonts/saysettha_ot.ttf') format('truetype'),
		font-weight('normal'), font-style('normal');
}
*/
.fontlao {
	font-family: "Prompt","Open Sans", sans-serif;/*'phet';*/

}

.fontB {
	font-family:  "Prompt","Open Sans", sans-serif;/*'ebrimaB';*/


}

.fontE {
	font-family: "Prompt", "Open Sans", sans-serif;/*'ebrima';*/


}

body {
  font-family:  "Prompt","Open Sans", sans-serif;/* 'phet', "SaysetthaUnicode", "SaysetthaOT";*/
  color: #fff1da;
  background-color:#000000;/* #1f1502;*//* #0d0901;*//*#1c2437*/
  background: url("../img/bg.jpg") bottom center;
    background-size: cover;
    background-attachment: fixed;
}

a {
  color: #d5bb66;
}

a:hover {
  color: #d5bb66;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Prompt", "Open Sans", sans-serif;/* 'phet', "SaysetthaUnicode", "SaysetthaOT";*/
  color:#d5bb66;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #0c0c0ce6;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #d5bb66;
  border-top-color: #0c0c0ce6;
  border-bottom-color: #0c0c0ce6;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #d5bb66;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #000000;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {

  transition: all 0.5s;
  z-index: 9;

  height: 120px;
  border: 0;
  padding: 10px 0;
  background-color: #000000;
  background: radial-gradient(circle, #000000 0%,#252525 70%, #333333 100%);
  /*
  background: linear-gradient(to right,  #333333,#000000,#000000,#333333);*/
}
/* #333333 #252525*/
#header.header-scrolled, #header.header-inner-pages {
 /* background: rgba(40, 40, 40, 0.9);*/
 /* background: rgba(125, 11, 11, 0.9);*/
}

#header .logo {
  font-size: 28px;
  margin: auto;
  padding: 0px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 100px;
}
@media (max-width: 768px) {
  #header .logo img {
    max-height: 80px;
  }
}
.fbox{
  border-right: 1px solid #c6c6c6;
  min-height: 135px;

}
@media (max-width: 992px) {
  #header {
    border: 0;
    padding: 10px 0;
    height: 100px;
  }
  
  .fbox{
    border-right: 0px solid #c6c6c6;
    border-bottom: 1px solid #c6c6c6;
    min-height: 120px;
    padding-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  margin: 0 12px;
}

.nav-menu a {
  display: block;
  position: relative;
  color:#DFC780;/* rgba(255, 255, 255, 0.7);*/
  transition: 0.3s;
  font-size: 14px;
  padding: 25px 3px;
  font-weight: 600;
  font-family:  "Open Sans", sans-serif;/*'phet', "SaysetthaUnicode", "SaysetthaOT";*/
}

.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #f58400;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  width: 100%;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #fff;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-top: 2px solid #f58400;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #282828;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #f58400;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Get Startet Button */
.get-started-btn {
  margin-left: 25px;
    /* background: #009961; */
    color: #fff;
    border-radius: 20px;
    padding: 6px 15px 6px 15px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
    background-color: rgba(247, 132, 0, 1);
    border: solid rgba(209, 27, 34, 1) 0px;
    cursor: pointer !important;
    box-shadow: 0px 3px 0px 0px rgba(209,27,34,0.6);
    margin-bottom: 5px;
  }

.get-started-btn:hover {
  background:#000000;/* #00b371;*/
  color: #fff;
  border: 0px solid rgba(247, 132, 0, 1);
}
.get-started-btn:focus {
  background:#000000;/* #00b371;*/
  color: #fff;
  border: 2px solid rgba(247, 132, 0, 1);
}
.get-started-btn:active{
  background-color:  rgba(247, 132, 0, 1);;
}
@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
  .get-started-btn.fix-r{
    margin-right: 10px;
  }
}
@media (max-width: 700px) {
  .get-started-btn.fix-r{
    margin-bottom: 5px;
  }
  .top-lnk{
    padding-left: 10%;
  }
}
/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 18px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #282828;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #f58400;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(15, 15, 15, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
}
@media (max-width: 900px) {
  #hero {
    width: 100%;
    height: 50vh;
    margin-top: 5%;
  }
}
#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  padding-top: 72px;
  position: relative;
  text-align: center;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: #eee;
  margin-bottom: 40px;
  font-size: 24px;
}

#hero .play-btn {
  width: 94px;
  height: 94px;
  margin: 0 auto;
  background: radial-gradient(#009961 50%, rgba(0, 153, 97, 0.4) 52%);
  border-radius: 50%;
  display: block;
  overflow: hidden;
  position: relative;
}

#hero .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#hero .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 3s;
  animation: pulsate-btn 3s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(0, 153, 97, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#hero .play-btn:hover::after {
  border-left: 15px solid #009961;
  transform: scale(20);
}

#hero .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 0 0 5vh 0;/*10px 0;*/
  overflow: hidden;
  margin-top: 2.5rem;
}
.features{
  padding: 0px;
}
.section-bg {
  background-color: #8fffd6;
}

.section-title {
  padding-bottom: 15px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  padding-top: 7px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #d5bb66;
  bottom: 0;
  left: 0;
}
.section-title h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #d5bb66;
  bottom: 0;
  left: 0;
}
.section-title p {
  margin-bottom: 0;
  color: #777777;
  font-size: 15px;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li + li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #f58400;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family:  "Open Sans", sans-serif;/*'phet', "SaysetthaUnicode", "SaysetthaOT";*/
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #ffffff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #f58400;
}

.about .content .btn-learn-more:hover {
  background: #f58400;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  /*
  padding: 60px 30px;
  transition: all ease-in-out 0.3s;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  border-radius: 18px;
  border-bottom: 5px solid #fff;*/
    
      transition: all ease-in-out 0.3s;
      background: #000000;
      box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
      border-bottom: 5px solid #000;
}
.services .icon-box img {
  width: 100%;
}
.services .icon-box .icon {
  width: 64px;
  height: 64px;
  background: #f58400;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.services .icon-box .icon i {
  font-size: 28px;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #282828;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  transform: translateY(-10px);
  border-color: #f58400;
}

.services .icon-box:hover h4 a {
  color: #f58400;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/cta-bg.png") fixed center center;
  background-size: cover;
  padding: 100px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family:  "Open Sans", sans-serif;/*'phet', "SaysetthaUnicode", "SaysetthaOT";*/
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  background: #f58400;
  color: #fff;
  border-radius: 50px;
}

.cta .cta-btn:hover {
  background: #000000;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: rgba(247, 132, 0, 1);;
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding-top: 30px;
}

.clients .clients-wrap {
  border-top: 1px solid #e7e7e7;
  border-left: 1px solid #e7e7e7;
}

.clients .client-logo {
  padding: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  overflow: hidden;
  background: #fff;
  height: 140px;
}

.clients .client-logo:hover img {
  transform: scale(1.1);
}

.clients img {
  transition: all 0.4s ease-in-out;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: url("../img/counts-bg.jpg") center center no-repeat;
  background-size: cover;
  padding: 80px 0 60px 0;
  position: relative;
}

.counts::before {
  content: "";
  position: absolute;
  background: rgba(17, 17, 17, 0.9);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.counts .title {
  position: relative;
  color: #fff;
  margin-bottom: 40px;
}

.counts .title h3 {
  font-size: 36px;
  font-weight: 700;
}

.counts .counters span {
  font-size: 48px;
  display: block;
  font-weight: 700;
  color: #009961;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family:  "Open Sans", sans-serif;/*'phet', "SaysetthaUnicode", "SaysetthaOT";*/
  font-size: 14px;
  color: #fff;
}

@media (min-width: 1200px) {
  .counts {
    background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 16px 10px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #f4f4f4;
  border-radius: 50px;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #009961;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
  overflow: hidden;
}

.portfolio .portfolio-item img {
  position: relative;
  top: 0;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: -50px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: #009961;
  padding: 15px 20px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: white;
  transition: ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #33ffb4;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 15px;
}

.portfolio .portfolio-item:hover img {
  top: -30px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing {
  background-color: #f9f9f9;
}

.pricing .box {
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
}

.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #282828;
}

.pricing .box h4 {
  font-size: 42px;
  color: #009961;
  font-weight: 500;
  font-family:  "Open Sans", sans-serif;/*'phet', "SaysetthaUnicode", "SaysetthaOT";*/
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 20px 0;
  list-style: none;
  color: #282828;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #009961;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 50px;
  border: 2px solid #f58400;
  color: #f58400;
  font-size: 14px;
  font-weight: 400;
  font-family:"Open Sans", sans-serif;/*  'phet', "SaysetthaUnicode", "SaysetthaOT";*/
  font-weight: 600;
  transition: 0.3s;
}

.pricing .box .btn-buy:hover {
  background: #000000;
  color: #fff;
}

.pricing .recommended {
  border-color: #f58400;
}

.pricing .recommended .btn-buy {
  background: #f58400;
  color: #fff;
}

.pricing .recommended .btn-buy:hover {
  background: #000000;
  border-color: #000000;
}

.pricing .recommended-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 13px;
  padding: 3px 25px 6px 25px;
  background: #edfbf0;
  color: #f58400;
  border-radius: 50px;
}

/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/
.faq {
  padding: 0;
}

.faq .content {
  padding: 60px 100px 0 100px;
}

.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.faq .content p {
  font-size: 15px;
  color: #848484;
}

.faq .img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
}

.faq .accordion-list {
  padding: 0 100px 60px 100px;
}

.faq .accordion-list ul {
  padding: 0;
  list-style: none;
}

.faq .accordion-list li + li {
  margin-top: 15px;
}

.faq .accordion-list li {
  padding: 20px;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  border-radius: 4px;
}

.faq .accordion-list a {
  display: block;
  position: relative;
  font-family: "Open Sans", sans-serif; /*'phet', "SaysetthaUnicode", "SaysetthaOT";*/
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
}

.faq .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .accordion-list .icon-show {
  display: none;
}

.faq .accordion-list a.collapsed {
  color: #343a40;
}

.faq .accordion-list a.collapsed:hover {
  color: #f08d1c;
}

.faq .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {
  .faq .content, .faq .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .faq {
    /* img {
      padding-top: 30px;
    } */
  }
  .faq .content {
    padding-top: 30px;
  }
  .faq .accordion-list {
    padding-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 32px;
  color: #f58400;
  float: left;
  line-height: 1;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #282828;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #5b5b5b;
}

.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #f58400;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #f58400;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #f58400;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #f08d1c;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f9f9f9;
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 63px;
  }
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 500;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #424242;
  content: "/";
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #f58400 !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

@media (max-width: 992px) {
  .portfolio-details .portfolio-description h3 {
    width: 100%;
  }
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff1da;
  font-size: 14px;
  text-align: center;
  padding: 10px 0;
  position: inherit;
  width: 100%;
  bottom: 0%;
  margin-top: 0rem;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #d5bb66;
  position: relative;
  font-family:"Open Sans", sans-serif;/* 'phet', "SaysetthaUnicode", "SaysetthaOT";*/
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #f58400;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #000000;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}

#footer .credits a {
  color: #f58400;
  transition: 0.3s;
}

#footer .credits a:hover {
  color: #000000;
}

#main{
  padding-top: 80px;
}
.fix-main{
  padding-top: 60px!important;
}
@media (max-width: 900px) {
  #main{
    padding-top: 60px;
  }
  .fix-main{
    padding-top: 110px!important;
  }
}
@media (max-width: 650px) {
  #main{
    padding-top: 65px;
  }
  .fix-main{
    padding-top: 135px!important;
  }
}
.sec-register{
  max-width: 750px;
  margin: auto;
  margin-top: 20%;
  }
  .sec-register .btn   
  {
    min-width: 250px;
    font-size: 24px;
  margin: auto;
  }
  .sec-login{
    max-width: 750px;
    margin: auto;
    margin-top: 0%;
    }
  @media (max-width: 768px) {
    .sec-login{
      padding: 1vh 0 0vh 0;
      max-width: 750px;
      margin: auto;
      margin-top: 0%;
      }
    .sec-register{
      padding: 2vh 0 0vh 0;
      max-width: 750px;
      margin: auto;
      margin-top: 10%;
      }
    .sec-register .btn   
    {
      min-width: 140px;
      font-size: 20px;
    margin: auto;
    }
  }


/*
 * Component: Form
 * ---------------
 */
 .form-control {
  border-radius: 0;
  box-shadow: none;
  border-color: #d2d6de;
}
.form-control:focus {
  border-color: #3c8dbc;
  box-shadow: none;
}
.form-control::-moz-placeholder,
.form-control:-ms-input-placeholder,
.form-control::-webkit-input-placeholder {
  color: #bbb;
  opacity: 1;
}
.form-control:not(select) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-group.has-success label {
  color: #00a65a;
}
.form-group.has-success .form-control,
.form-group.has-success .input-group-addon {
  border-color: #00a65a;
  box-shadow: none;
}
.form-group.has-success .help-block {
  color: #00a65a;
}
.form-group.has-warning label {
  color: #f39c12;
}
.form-group.has-warning .form-control,
.form-group.has-warning .input-group-addon {
  border-color: #f39c12;
  box-shadow: none;
}
.form-group.has-warning .help-block {
  color: #f39c12;
}
.form-group.has-error label {
  color: #e81f06;;
}
.form-group.has-error .form-control,
.form-group.has-error .input-group-addon {
  border-color: #e81f06;;
  box-shadow: none;
}
.form-group.has-error .help-block {
  color: #e81f06;;
}
/* Input group */
.input-group .input-group-addon {
  border-radius: 0;
  border-color: #d2d6de;
  background-color: #fff;
}
/* button groups */
.btn-group-vertical .btn.btn-flat:first-of-type,
.btn-group-vertical .btn.btn-flat:last-of-type {
  border-radius: 0;
}
.icheck > label {
  padding-left: 0;
}
/* support Font Awesome icons in form-control */
.form-control-feedback.fa {
  line-height: 34px;
}
.input-lg + .form-control-feedback.fa,
.input-group-lg + .form-control-feedback.fa,
.form-group-lg .form-control + .form-control-feedback.fa {
  line-height: 46px;
}
.input-sm + .form-control-feedback.fa,
.input-group-sm + .form-control-feedback.fa,
.form-group-sm .form-control + .form-control-feedback.fa {
  line-height: 30px;
}


.form-control {
  display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 8px);
    padding: .375rem 1.2rem;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    color: #000000;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 2px solid #cccccc;
    border-radius: 3rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.form-control:focus{
  background-color: #ffffff;
  border: 2px solid #999999 /*#f58400*/;
  color: #000000;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  box-shadow: 0px 2px 12px #999999;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #403f3d;
  opacity: 0.8;
  color: #777575;
}
ul{
  list-style: none;
    padding: 0;
    font-size: 18px;
}

.lbl-1{
  color: #c59f31;
}
.lbl-2{
  color: #d5bb66;
}
.sec-register.step-information{
  margin-top: 3rem;
}
/*
select{
  border-radius: 30px!important;
  background: url(http://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/br_down.png) no-repeat right #ffffff;
  -webkit-appearance: none;
  background-position-x: 80%!important;
}
select option {
  
  margin: 40px;
  background: #403f3d;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}

*/


select {
  display: block;
  width: 100%;
  height: calc(1.5em + .75rem + 8px);
  padding: .375rem 1.2rem;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  color: #ffffff;
  background-color: transparent;
  background-clip: padding-box;
  border: 1.5px solid #c59f31;
  border-radius: 30rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;

	width: 100%;


	/* Here's the code we need */
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	 -o-appearance: none;
		appearance: none;
}
select option {
  text-align: center;
  margin: 40px;
  background: #403f3d;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
  max-width: 150px!important;
}
.select-wrapper {
	position: relative;	
}

.select-wrapper:after {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #c59f31;
  position: absolute;
  top: 40%;
  right: 20px;
  content: "";
  z-index: 98;
}

select::-ms-expand {
  display: none;
}
select:focus{
  border: 0px;
}




/*---Notification---*/
.jq-icon-info { background-color: #398bf7; color: #d9edf7; border-color: #2e7de5; }
.jq-icon-warning { background-color: #ffb22b; color: #333333; border-color: #df9e1b; }
.jq-icon-error { background-color: #fc4b6c; color: #f2dede; border-color: #e73f3c; }
.jq-icon-success { color: #dff0d8; background-color: #0fc491; border-color: #0fc491; }

.myadmin-alert {
    border-radius: 0;
    color: #fff;
    padding: 12px 30px 12px 12px;
    position: relative;
    text-align: left
}

.myadmin-alert a {
    color: inherit;
    font-weight: 600;
    text-decoration: underline
}

.myadmin-alert h4 {
    color: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    margin: 0
}

.myadmin-alert .img {
    border-radius: 3px;
    height: 40px;
    left: 12px;
    position: absolute;
    top: 12px;
    width: 40px
}

.myadmin-alert-img {
    min-height: 64px;
    padding-left: 65px
}

.myadmin-alert-icon {
    padding-left: 20px
}

.myadmin-alert-icon i {
    padding-right: 10px
}

.myadmin-alert .closed {
    color: rgba(255, 255, 255, .5);
    font-size: 20px;
    font-weight: 500;
    padding: 4px;
    position: absolute;
    right: 3px;
    text-decoration: none;
    top: 0
}

.myadmin-alert .closed:hover {
    color: #fff
}

.myadmin-alert-click {
    cursor: pointer;
    padding-right: 12px
}

.myadmin-alert .primary {
    background: rgba(0, 0, 0, .4);
    border: none;
    border-radius: 3px;
    color: inherit;
    outline: 0;
    padding: 4px 10px
}

.myadmin-alert .cancel {
    background: rgba(255, 255, 255, .4);
    border: none;
    border-radius: 3px;
    color: rgba(0, 0, 0, .8);
    outline: 0;
    padding: 4px 10px
}

.myadmin-alert .cancel:hover,
.myadmin-alert .primary:hover {
    opacity: .9
}

.myadmin-alert-bottom,
.myadmin-alert-bottom-left,
.myadmin-alert-bottom-right,
.myadmin-alert-fullscreen,
.myadmin-alert-top,
.myadmin-alert-top-left,
.myadmin-alert-top-right {
    box-shadow: 2px 2px 2px rgba(0, 0, 0, .1);
    display: none;
    position: fixed;
    z-index: 9999999;
}

.myadmin-alert-top {
    left: 0;
    right: 0;
    top: 0
}

.myadmin-alert-bottom {
    bottom: 0;
    left: 0;
    right: 0
}

.myadmin-alert-top-left {
    left: 20px;
    top: 80px
}

.myadmin-alert-top-right {
    right: 20px;
    top: 80px
}

.myadmin-alert-bottom-left {
    bottom: 20px;
    left: 20px
}

.myadmin-alert-bottom-right {
    bottom: 20px;
    right: 20px
}

.myadmin-alert-fullsize {
    left: 50%;
    margin: -20px;
    top: 50%
}

.alert-custom {
    background: #2cabe3;
    color: #fff;
    border-color: #2cabe3
}

.alert-inverse {
    background: #4c5667;
    color: #fff;
    border-color: #4c5667
}

.alert-success {
  background: #44ab04;
  color: #fff;
  border-color: #44ab04;
}

.alert-dark {
    background: #313131;
    color: #fff;
    border-color: #313131
}

.alert-warning {
  background: #fb9708;
  color: #fff;
  border-color: #fb9708;
}

.alert-danger {
    background: #ea0631;
    color: #fff;
    border-color: #ea0631
}

.alert-primary {
    background: #707cd2;
    color: #fff;
    border-color: #707cd2
}

.alert-info {
    background: #1e88e5;
    color: #fff;
    border-color: #1e88e5
}

.alert-info .closed,
.alert-info a.closed:hover {
    color: inherit
}
.menu-wrapper .row{
  width: 90%;
  text-align: center;
  margin: auto;
}

.menu-wrapper .menu-box {
  border: 0px solid #d5bb66;
  border-radius: 10px;
  min-height: 50%;
  background-color: #1f1f1f;
  transition: transform .5s ease;
}
.menu-wrapper .menu-box:hover{
 /* background-color:#cac00c ;*/
    -moz-box-shadow:    inset 0 0 10px #ffcc00;
   -webkit-box-shadow: inset 0 0 10px #ffcc00;
   box-shadow:         inset 0 0 10px #ffcc00;
    transition: transform .5s ease;

} 

.menu-wrapper .menu-box:hover img{
  transform: scale(0.8);
  transition: transform .5s ease;
 } 
 .menu-wrapper .menu-box a{
  height: 100px;
  display: block;
 }

.menu-wrapper .menu-box img {
  max-width: 125px;
  max-height: 100px;
  transition: transform .5s ease;
}
.menu-wrapper .menu-box .menu-text {
  font-size: 16px!important;
  margin-top: 5px;
}

.menu-wrapper .menu-box:hover .menu-text{
  color: #d5bb66!important;
  transition: transform .5s ease;
 } 
@media (max-width: 600px) {
  .menu-wrapper .row{
    width: 99%;
    text-align: center;
    margin: auto;
  }
  .menu-wrapper .menu-box{
    padding-left: 0px!important;
    padding-right: 0px!important;
  }
  .menu-wrapper .menu-box img {
    max-width: 100px;
    max-height: 70px;
    margin-top: 1rem;
  }
  .menu-wrapper .menu-box .menu-text {
    font-size: 14px!important;
  }
}

@media (max-width: 450px) {
  .menu-wrapper .menu-box{
    font-size: 14px!important;
  }
  .menu-wrapper .menu-box img {
    max-width: 80px;
    max-height: 60px;
  }
  .menu-wrapper .menu-box .menu-text {
    font-size: 14px!important;
  }
 
}
@media (max-width: 350px) {
  .menu-wrapper .menu-box{
    font-size: 12px!important;
  }
  .menu-wrapper .menu-box img {
    max-width: 70px;
    max-height: 50px;
  }
  .menu-wrapper .menu-box .menu-text {
    font-size: 12px!important;
  }
  


}

.balance-circle {
  width: 250px;
  height: 250px;
  border-radius: 130px;
  background: #211601;
  box-shadow: 0px 0px 14px #eacd4a;
  border: 2px solid #f9bb09;
}

.circle1 {
  bottom: 8%;
  right: 8%;
  background: linear-gradient(#ffce43, #e9c261 ,#967318);
  padding: 1px 8px !important;
  padding-top: 4px !important;
  border: solid .08em #e6c05f!important;
}

@media (max-width: 768px) {
.balance-circle {
  width: 185px;
  height: 185px;
  border-radius: 100px;
  background: #211601;
  box-shadow: 0px 0px 14px #eacd4a;
  border: 2px solid #f9bb09;

  
}
.circle1 {
  bottom: 4%;
  right: 4%;
  background: linear-gradient(#ffce43, #e9c261 ,#967318);
  padding: 1px 8px !important;
  padding-top: 4px !important;
  border: solid .08em #e6c05f!important;
}

}

.absolute {
  position: absolute;
}
.fa-round {
  border-radius: 1em !important;
}
.relative {
  position: relative;
}

.custom-nav {
  background:linear-gradient(to bottom,#412a06,#5c410c);
/*  background: linear-gradient(0deg, rgba(242,12,12,1) 0%, rgba(0,0,0,1) 100%);*/
}
.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}
.box-button {
  margin-top: auto;
  margin-bottom: auto;
}
.nav-button {
  color: #fff;
  font-size: 14px;
  font-weight: 100;
}
.nav-link {
  display: block;
  padding: .5rem 1rem;
}

.menu-box {
  border: 1px solid #d5bb66;
  border-radius: 10px;

}

.icon-bank1{
  max-width: 100px;
}
#bankhistory .link-menu{
width: 100%;

}

.nav-tabs {
  border-bottom: 1px solid #b7954c;
}
.nav-tabs .nav-link {
  font-size: 24px;
  color: #bec0c1;
}
.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color: #b7954c;}
.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  /* color: #495057;*/
   background-color: #b7954c;
   /*border-color: #dee2e6 #dee2e6 #fff;*/
   border: 0;
   color: #ffffff;
 }
 
.history-content{
  border-bottom: 1px dashed #e8c684;
}
@media (max-width: 600px) {
.datepicker,
.table-condensed {
  width: 95%;
  height:400px;
}
}

.btn-fb {
  cursor: pointer !important;
  color: white;
  padding: 2px 6px;
  background: rgb(24, 119, 242);
  font-weight: bold;
  border-radius: 4px;
  box-shadow: 1px 1px 1px 0.2px rgba(0,0,0,0.4);
}


/* Layout css ends */
/* ====================================================================================================================*/
/* Customized flexislider css for Adminuz template start here */
/* ====================================================================================================================*/
/*
 * jQuery FlexSlider v2.6.3
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 and later license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 *
 */
/* ====================================================================================================================
 * FONT-FACE
 * ====================================================================================================================*/
 .flex-container a:hover, .flex-slider a:hover {
  outline: none;
}

.slides, .slides > li, .flex-control-nav li, .flex-direction-nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flex-pauseplay span {
  text-transform: capitalize;
}

.flexslider {
  padding: 0;
  margin: 15px 0;
  zoom: 1;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
  -o-box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
  border: 0;
  position: relative;
  display: inline-block;
  width: 100%;
}

.flexslider .slides {
  height: 1%;
  display: block;
  zoom: 1;
  background: none;
}

.flexslider .slides img {
  width: 100%;
  display: block;
  height: auto;
  -moz-user-select: none;
}

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
  background: transparent;
}

.flexslider .slides > li:first-child {
  display: block;
}

.flexslider .slides :after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.flexslider :hover .flex-direction-nav .flex-prev {
  opacity: 0.7;
  left: 10px;
}

.flexslider :hover .flex-direction-nav .flex-prev:hover {
  opacity: 1;
}

.flexslider :hover .flex-direction-nav .flex-next {
  opacity: 0.7;
  right: 10px;
}

.flexslider .activity-block {
  margin: 0;
}

.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.no-js .flexslider .slides > li:first-child {
  display: block;
}

.loading .flex-viewport {
  max-height: 300px;
}

.carousel li {
  margin-right: 5px;
}

.flex-direction-nav {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  /*text-align: right;*/
  padding: 10px 15px;
  background: transparent;
  /*background: -moz-linear-gradient(left, transparent 0%, rgba(249, 251, 252, 0.8) 30%, #f2f6f9 100%);*/
  /*background: -webkit-linear-gradient(left, transparent 0%, rgba(249, 251, 252, 0.8) 30%, #f2f6f9 100%);*/
  /*background: linear-gradient(to right, transparent 0%, rgba(249, 251, 252, 0.8) 30%, #f2f6f9 100%);*/
  color: gray;
  width: 100%;
}

.flex-direction-nav .progress-bar {
  background: rgba(26, 26, 26, 0);
}

.flex-direction-nav a {
  text-decoration: none;
  display: inline-block;
  width: 40px;
  height: 40px;
  top: 40%;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #b9a975eb !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /*border: 1px solid black;*/
  color: black;
  text-shadow: none;
  font-size: 42px;
  text-align: center;
  vertical-align: middle;
  line-height: 40px;
}

.flex-direction-nav a:before {
  display: inline-block;
  content: "\f104";
  display: block;
}

.flex-direction-nav a.flex-next:before {
  content: "\f105";
}

.flex-direction-nav li {
  display: inline-block;
  top: 42%;
  position: relative;
}

.flex-direction-nav .flex-nav-next {
	position: relative;
	text-align: right;
	vertical-align: middle;
	width: 50%;
	height: 50%;
	/*right: 10%;*/
	top: 42%;
}

.flex-direction-nav .flex-nav-prev {
	position: relative;
	text-align: left;
	vertical-align: middle;
	width: 50%;
	height: 50%;
	/*left: -80%;*/
	/*right: 50%;*/
	top: 42%;
}

.flex-direction-nav .flex-next {
  /*border-radius: 0 50px 50px 0;
  -ms-border-radius: 0 50px 50px 0;
  -moz-border-radius: 0 50px 50px 0;
  -webkit-border-radius: 0 50px 50px 0;*/
}

.flex-direction-nav .flex-prev {
 /* border-radius: 50px 0 0 50px;
  -ms-border-radius: 50px 0 0 50px;
  -moz-border-radius: 50px 0 0 50px;
  -webkit-border-radius: 50px 0 0 50px;*/
}

.flexslider:hover .flex-direction-nav .flex-disabled {
  cursor: default;
  z-index: -1;
}

.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}

.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: '\f004';
}

.flex-pauseplay a :hover {
  opacity: 1;
}

.flex-pauseplay a .flex-pauseplay a:hover {
  opacity: 1;
}

.flex-pauseplay a.flex-play:before {
  content: '\f003';
}

.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -25px;
  text-align: center;
}

.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.flex-control-nav li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
}

.flex-control-nav li a :hover {
  background: #d4be74;
}

.flex-control-nav li a.flex-active {
 
  background: #d5bb66;
  cursor: default;
}

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
  padding: 0;
}

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}

.flex-control-thumbs img {
  width: 100%;
  height: auto;
  display: block;
  opacity: .7;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.flex-control-thumbs img :hover {
  opacity: 1;
}

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}

@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;/*1030;*/
  background: #1f1f1f;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  max-width: 800px;
  margin: auto;
}
.navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.bottom-nav {
  width: 100% !important;
}
.bottom-menu {
  width: 20% !important;
  display: inline;
}
@media screen and (max-width: 600px) {
.footer-aff a{
  font-size: 12px;
}

}
.footer-aff a.active{
  color: #eacd4a!important;
}
.centerTest {
  width:100%;
  text-align:center;
  display: block;
}

.border-gold {
  border-color: #bea80c !important;
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.text-warning {
  color: #ffcc00 !important;
}

.text-center {
  text-align: center !important;
}
.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #282828;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.card-body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.25rem;
}
.aff-block {
  padding: 10px;
  background: url(../img/bg-button.png) bottom center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top center;
  text-align: center;
  max-width: 32%;
  margin-bottom: 5px;
}
.aff-block.ll{
  border: 1px solid #ffcc66;
  border-top-left-radius: 20px;
}
.aff-block.cc{
  border: 1px solid #ffcc66;
  margin-left: 5px;
  margin-right: 5px;
 
}
.aff-block.rr{
  border: 1px solid #ffcc66;
  border-top-right-radius:20px;
}

.aff-block-bl {
  padding: 10px;
  background: url(../img/bg-button.png) bottom center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top center;
  text-align: center;
  max-width: 48.3%;
  margin-bottom: 5px;
  border: 1px solid #ffcc66;
  margin-right: 2px;
}

.aff-block-br {
  padding: 10px;
  background: url(../img/bg-red.png) bottom center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top center;
  text-align: center;
  max-width: 48.3%;
  margin-bottom: 5px;
  border: 1px solid #ffcc66;
  margin-left: 2px;
}
.aff-block-bbb{
  background: url(../img/bg-button.png) bottom center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top center;
  text-align: center;
  border: 1px solid #ffcc66;
  height: 10px;
  max-width: 97.2%;
}
.aff-block h6{
font-size: 0.8rem!important;
font-weight: 300!important;
}
.aff-block h4{
  font-size: 2rem!important;
font-weight: 500!important;
}
.aff-block-bl h6, .aff-block-br h6{
  font-size: 0.8rem!important;
  font-weight: 300!important;
  }
  .aff-block-bl h4, .aff-block-br h4{
    font-size: 2rem!important;
font-weight: 500!important;
    }
.aff-tb-bg1{
 
    background: url(../img/bg-tbh1.png) bottom center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: top center;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    padding: 3px 3px!important;
    height: 45px!important;

}



.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate {
  color: #f1eaea!important;
}
.table-dark {
  color: #464646;
  background-color: #343a40;
}
select[name=dataTable_length] {
  display: inline-block;
    /* width: 100%; */
    /* height: calc(1.5em + .75rem + 8px); */
    padding: .375rem .5rem;
    font-size: 1rem;
    /* font-weight: 400; */
    /* line-height: 1.5; */
    /* text-align: center; */
    /* color: #ffffff; */
    /* background-color: transparent; */
    /* background-clip: padding-box; */
    /* border: 1.5px solid #c59f31; */
    border-radius: 0rem;
    /* transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; */
    width: 100px;
    /* -webkit-appearance: none; */
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  background-color: #ffcc00!important;
  color: #ffffff !important;
  height: 40px;
  font-size: 1.2rem;
  padding-top: 7px;
  font-weight: 500;
 }

.responsive-img {
  width: 100%;
  max-width: 100%;
  display: block;
  text-align: center;
  margin-bottom: 0;
}
.box-1{
  border: 2px solid #cac00c;
}


/*=========img==========*/
/* Quick-zoom Container */
.img-hover-zoom {
  background: transparent;
  height:150px;
  overflow: hidden;
  border-radius: 1em;
  border: 0px solid #cac00c;
  display: inline-table;

}
.img-hover-zoom:hover{
  /*box-shadow: 0px 0px 14px #cac00c;
     border: 2px solid #d0c502;
     */
}

.img-hover-zoom--empty {
  background-color: rgba(255, 255, 255, .1);
  border-width: 0;
}

.img-hover-zoom:not(.img-hover-zoom--empty):hover {
  filter: drop-shadow(0 0 10px rgba(0,0,0,.3));
}

.img-hover-zoom-title {
  text-align: center;    font-size: 14px;
}
@media screen and (max-width: 680px) {
  .img-hover-zoom-title {
    text-align: center;    font-size: 12px;
  }
}
.img-hover-zoom--basic img {
  transition: transform .5s ease;
}

.img-hover-zoom--basic:hover img {
  transform: scale(1.5);
}

.img-hover-zoom--quick-zoom img {
  transform-origin: 0 0;
  transition: transform .25s, visibility .25s ease-in;
}

.img-hover-zoom--quick-zoom:hover img {
  transform: scale(2);
}

.img-hover-zoom--point-zoom img {
  transform-origin: 65% 75%;
  transition: transform 1s, filter .5s ease-out;
}

.img-hover-zoom--point-zoom:hover img {
  transform: scale(5);
}

.img-hover-zoom--zoom-n-rotate img {
  transition: transform .5s ease-in-out;
}

.img-hover-zoom--zoom-n-rotate:hover img {
  transform: scale(2) rotate(25deg);
}

.img-hover-zoom--slowmo img {
  transform-origin: 50% 65%;
  transition: transform 5s, filter 3s ease-in-out;
  filter: brightness(150%);
}

.img-hover-zoom--slowmo:hover img {
  filter: brightness(100%);
  transform: scale(3);
}

.img-hover-zoom--brightness img {
  transition: transform 2s, filter 1.5s ease-in-out;
  transform-origin: center center;
  filter: brightness(50%);
}

.img-hover-zoom--brightness:hover img {
  filter: brightness(100%);
  transform: scale(1.3);
}

.img-hover-zoom--zoom-n-pan-h img {
  transition: transform .5s ease-in-out;
  transform: scale(1.4);
  transform-origin: 100% 0;
}

.img-hover-zoom--zoom-n-pan-h:hover img {
  transform: scale(1.5) translateX(30%);
}

.img-hover-zoom--zoom-n-pan-v img {
  transition: transform .5s ease-in-out;
  transform: scale(1.4);
  transform-origin: 0 0;
}

.img-hover-zoom--zoom-n-pan-v:hover img {
  transform: scale(1.25) translateY(-30%);
}

.img-hover-zoom--blur img {
  transition: transform 1s, filter 2s ease-in-out;
  filter: blur(2px);
  transform: scale(1.2);
}

.img-hover-zoom--blur:hover img {
  filter: blur(0);
  transform: scale(1);
}

.img-hover-zoom--colorize img {
  transition: transform .5s, filter 1.5s ease-in-out;
  filter: grayscale(100%);
}

.img-hover-zoom--colorize:hover img {
  filter: grayscale(0);
  transform: scale(1.1);
}

.kslnk:hover{
  /* background-color:#cac00c ;*/
  /* box-shadow: 0px 0px 14px #eacd4a;*/
     color: #f9bb09;
     transition: transform .5s ease;
 } 
 
.btn-ks {
  
  position: relative;
  padding: 1rem 1rem;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, .2);
  color: #000;
  display: inline-block;
  outline: none;
  border: none;
  background-size: 200% auto;
  transition: all .3s ease-in-out;
  font-weight: 500;
  -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, .16);
  -moz-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, .16);
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, .16);
  cursor: pointer;
  max-width: 100%
  
  }
  
  .btn-ks2 {
      color: #e1e1e1;
      position: relative;
      border: 2px solid #d70911;
      min-width: 120px;
      border-radius: 30px;
      transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1) 0s;
      overflow: hidden;
  }
  
  .btn-gradient {
      background: #e9c36b;
     background: -webkit-linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #AA771C , #BF953F);
      background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #AA771C, #BF953F);
  
  
  /*   background-image: linear-gradient(90deg, #a57a26 0, #f1c666 51%, #a57a26);*/
  background-size: 200% auto;
  background-repeat: no-repeat;
  height: 45px;
  padding-top: 0.1rem;
  padding-bottom: 0rem;
      font-size: 1.6rem;
      color: #0a0a0a !important;
      text-shadow: 0 0 black;
      transition: all .5s ease-in-out;
     
      border: 1px solid #ffcc66;
      
  }
  
  .btn-gradient:hover, .btn-gradient:focus  {
      color: #e1e1e1 !important;
      background-position: 100%; 
     /* font-weight: 700;*/
      /*background:red;*/
  }
  

 .btn-gradient2 {
  border: 2px solid #e9c36b;
  background: #000000;
  background: linear-gradient(to right, #000000 50%, #e9c36b 50%);
  background-size: 200% 100%;
  background-position:left bottom;
  height: 50px;
  padding-top: 0.6rem;
  padding-bottom: 0rem;
  font-size: 1.8rem;
  color: #e9c36b !important;
  text-shadow: 0 0 #e9c36b;
  transition: all .3s ease-in-out;
 

  
}


  .btn-gradient2:hover {
      color: #000000!important;
      background-position:right bottom;
  }



  .btn-red {
    background: #990000;
    background: -webkit-linear-gradient(to right, #990000, #cc0033, #990000, #cc0033, #990000);
    background: linear-gradient(to right, #990000, #cc0033, #990000, #cc0033, #990000);
    background-size: 200% auto;
    background-repeat: no-repeat;
    height: 45px;
    padding-top: 0rem;
    padding-bottom: 0rem;
    font-size: 1.6rem;
    color: #0a0a0a !important;
    text-shadow: 0 0 black;
    transition: all .5s ease-in-out;
    text-shadow: -1px 1px 0 #e9c36b,
                          1px 1px 0 #e9c36b,
                         1px -1px 0 #e9c36b,
                        -1px -1px 0 #e9c36b;
                        border: 1px solid #ffffff;
    
}

.btn-red:hover, .btn-gradient:focus  {
    color: #996633 !important;
    background-position: 100%; 
   /* font-weight: 700;*/
    /*background:red;*/
}



.btn-green {
  background: #66cc33;
  
  height: 45px;
  padding-top: 0rem;
  padding-bottom: 0rem;
  font-size: 1.6rem;
  color: #ffffff !important;
  text-shadow: 0 0 black;
  transition: all .5s ease-in-out;

  border: 1px solid #ffffff;
  
}




  .text-gar {
    background: -webkit-linear-gradient(#ca962e, #fff, #e6ac08, #a78233);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.bg-border-gar {
    background: linear-gradient(to top left, #f8ecdb, #7f663c, #ae8f71, #f8ecdb, #7f663c, #f8ecdb, #7f663c, #ae8f71, #f8ecdb, #7f663c, #f8ecdb)
}
.ks-border-s1{
  border: 1px solid #9a7838;
  box-shadow: 0 0px 2px 0 #9a7838, 0 1px 7px 0 #9a7838;
}
.ks-border-s2{
  border: 1px solid #e6ac08;
  box-shadow: 0 0px 2px 0 #e6ac08, 0 1px 17px 0 #e6ac08;
}
.fix-secmt{
  margin-top: 45px;
}
.btn-s1{
  font-size: 1.2rem!important;
  padding: 0.5rem 1.2rem!important;
 
}

@media (max-width: 768px) {
  .fix-secmt{
    margin-top: 45px;
  }
}

.bt-circle {
  width: 35px;
  height: 35px;
  border-radius: 40px;
  background: #000000;
  box-shadow: 0px 0px 14px #eacd4a;
  border: 2px solid #f9bb09;
}

.modal {
  text-align: center;
  padding: 0!important;
}

.modal:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -2px;
}

.modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}


.modal-content.announcement {
  /*8position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: .3rem;
  outline: 0;*/
  background-color: #000000;
}
.announcement-img{
  margin: auto;
    width: 100%;
}
.announcement-des{


}
#myAnnouncement{
  background: rgb(2 2 2);
  background: radial-gradient(circle, rgb(2 2 2) 0%, rgb(27 24 14 / 50%) 100%);
}
#myAnnouncement .modal-footer{
  border: none;
  padding: 5px;
}

.btn-announcement{
  font-size: 1.2rem;
  min-width: 80px;
  height: 42px;
  border-radius: 1.5rem;
}

.luckywheel-noti{
  background-color: #000000;
  text-align: center;
}

.luckywheel-noti h1, .luckywheel-noti h2, .luckywheel-noti h3, .luckywheel-noti h4, .luckywheel-noti h5, .luckywheel-noti h6{
  font-weight: 300;
}
.luckywheel-noti .btn-ks{
  font-size: 1.2rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;

}
@media (max-width: 700px) {

  .modal:before {
    content: '';
    display: inline-block;
    height: 20%;
    vertical-align: middle;
    margin-right: -2px;
  }
}

.text-white {
  color: #ffffff!important;
}
.text-gold {
  color: #ffcc00!important;
}
#box-gamelist p{

  font-family: open sans,sans-serif!important;
}
.lbl-linecontact{
  font-family: "Open Sans", sans-serif;/*'SaysetthaOT';*/
  font-weight: 700;
  font-size: 1.5rem;
}

.form-control.fix1{
  display: block;
  width: 100%;
  height: calc(1.5em + .75rem + 0px);
  padding: .375rem 1.2rem;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  color: #000000;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 2px solid #999999;
  border-radius: 0.5rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.form-control.fix1:focus{
  background-color: #ffffff;
  border: 2px solid #999999 /*#f58400*/;
  color: #000000;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  box-shadow: 0px 2px 12px #999999;
}
.form-control.fix1:disabled, .form-control[readonly] {
  background-color: #403f3d;
  opacity: 0.8;
  color: #777575;
}



.form-control.fix2{
  display: block;
  width: 100%;
  height: calc(1.5em + .75rem + 0px);
  padding: .375rem 1.2rem;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  color: #ffffff;
  background-color: #000000;
  background-clip: padding-box;
  border: 2px solid #ffffff;
  border-radius: 0rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.form-control.fix2:focus{
  background-color: #000000;
  border: 2px solid #999999 /*#f58400*/;
  color: #ffffff;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  box-shadow: 0px 2px 12px #999999;
}
.form-control.fix2:disabled, .form-control[readonly] {
  background-color: #403f3d;
  opacity: 0.8;
  color: #777575;
}

/*============icon===============*/
.i-account{
  background: url("../img/main-icon.png");
  background-position: -84px -7px;
  width: 36px;
  height: 36px;
  display: block;
}
.i-lock{
  background: url("../img/main-icon.png");
  background-position: 84px -7px;
  width: 36px;
  height: 36px;
  display: block;
}
.i-gif{
  background: url("../img/main-icon.png");
  background-position: -3px 50px;
  width: 34px;
  height: 37px;
  display: block;

}
.i-menu{
  background: url("../img/main-icon.png");
  background-position: -44px 39px;
  width: 37px;
  height: 25px;
  display: block;
}
.i-home{
  background: url("../img/main-icon.png");
  background-position: -231px 136px;
  width: 54px;
  height: 54px;
  display: block;

}
.i-aff{
  background: url("../img/main-icon.png");
  background-position: -4px 115px;
  width: 34px;
  height: 26px;
  display: block;

}
/*============end icon===============*/
.icon-viewpass{
  float: right;right: 11%;top: 0.3rem;color: #504f4e;position: absolute;font-size: 24px;
}
.site-logo-img {
  max-height: 250px;
}
.ks-border-bt1{
  height: 2px;
  width: 100%;
  display: block;
  background: linear-gradient(to right, #996633,#ffff99, #cc9966);
  position: absolute;
  bottom: 0;
}
.ks-border-bt2{
  height: 1px;
  width: 100%;
  display: block;
  background: linear-gradient(to right, #996633,#ffff99, #cc9966);
  bottom: 0;
}
.home-link{
  background: #1f1f1f;
    border: 5px #0e0e0e solid;
    border-radius: 50px;
    width: 75px;
    height: 75px;
    position: relative;
    bottom: 35px;
}
.img-home{
  width: 60px;
    margin-left: 0px;
    margin-top: -5px;
}
.img-aff{
  width: 50px;
  display: block;
    margin: auto;
}
.img-autobank{
  width: 42px;
  display: block;
  margin: auto;
}
.img-slot{
  width: 42px;
  display: block;
  margin: auto;
  padding-top: 5px;
}
.img-casino{
  width: 42px;
  display: block;
  margin: auto;
  padding-top: 7px;
}
.icon-account{
  width: 32px;
  display: block;
}
a.nav-button{
  width: 100px;
    margin: auto;
    text-align: center;
} 
.nav-button span {
  color: #fff;
  font-size: 12px;
  font-weight: 100;
}
#main .container{
  max-width: 800px!important;
}
.home-link span {
  color: #fff;
  font-size: 12px;
  font-weight: 100;
  margin-top: 2rem;
  display: block;
}
.link-ft{
  height: 40px;
  display: block;
}
.fullname{
  color: #ffffff;
  margin-left: 5px;
  margin-top: 3px;
}
.lnk-gif{
  display:block;margin-top: 3.8rem;
}
.lnk-menu{
  display:block;margin-top: 4.5rem;right: 1rem;position: absolute;}
.ft-cel1{
width: 20%!important;
  }
.ft-cel2{
  width: 20%!important;
}
.profile-box{
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 3.5rem;
}
.section-info{
  background: url(../img/bg-info.png) bottom center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top center;
  width: 685px;/*90%;*/
  height: 120px;
  position: relative;
}
.bg-info-aff{
  background: url(../img/bg-button-aff.png) bottom center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top center;
  width: 27%;
  height: 48px;
  position: absolute;
  right: 0%;
  top: 0px;
  /*
  margin-left: 27.2%;
  margin-top: -82px;*/
}

@media (max-width: 2400px) {
  .section-info{
    width: 685px;/*90%;*/
    height: 120px;
  }
  .bg-info-aff{
    width: 27%;
    height: 48px;
    position: absolute;
    right: 0%;
    top: 0px;
  }

}




.section-info h1{
  font-size:3.4em;
}
.bg-button1{
  background: url(../img/bg-button.png) bottom center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top center;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  border: 2px solid #ffcc66;
  border-radius: 5px;
}
.bg-button2{
  background-color: #222020;
  font-size: 14px;
  font-weight: 500;
  border: 0px solid #ffcc66;
  border-radius: 5px;
  padding: 3px;
  color: #ffffff;
}
.bg-button2.active, .bg-button2:hover{
  background-color: #999999;
  color: #ffcc00;
}
.btn-txt-green{
  color: #00ff00!important;
  cursor: pointer;
}
.btn-txt-red{
  color: #ff0000!important;
  cursor: pointer;
}
.btn-txt-gold{
  color: #ffcc00!important;
  cursor: pointer;
}
.lbl-tile{
  color: #ffffff;
  margin-left: 5.5%;
  margin-top: 5px;
  font-size: 16px;
}
.login_pocker{
  margin-top: 10px;
}
.login_pocker{
  margin-top: 10px;
}
.icon-gif{
  width: 34px;
}
.icon-menu{
  width: 37px;
}

.icon-history{
  content:url("../img/mini/history.png");
  width: 24px;
}
li.active .icon-history{
  content:url("../img/mini/history-active.png");
  width: 24px;
}

.icon-acc{
  content:url("../img/mini/acc.png");
  width: 24px;
}
li.active .icon-acc{
  content:url("../img/mini/acc-avtive.png");
  width: 24px;
}

.icon-aff{
  content:url("../img/mini/aff.png");
  width: 26px;
}
li.active .icon-aff{
  content:url("../img/mini/aff-active.png");
  width: 26px;
}

.icon-announce{
  content:url("../img/mini/announce.png");
  width: 24px;
}
li.active .icon-announce{
  content:url("../img/mini/announce-active.png");
  width: 24px;
}

.icon-casino{
  content:url("../img/mini/casino.png");
  width: 26px;
}
li.active .icon-casino{
  content:url("../img/mini/casino-active.png");
  width: 26px;
}

.icon-deposit{
  content:url("../img/mini/deposit.png");
  width: 26px;
}
li.active .icon-deposit{
  content:url("../img/mini/deposit-active.png");
  width: 26px;
}

.icon-home{
  content:url("../img/mini/home.png");
  width: 24px;
}
li.active .icon-home{
  content:url("../img/mini/home-active.png");
  width: 24px;
}

.icon-key{
  content:url("../img/mini/key.png");
  width: 24px;
}
li.active .icon-key{
  content:url("../img/mini/key-active.png");
  width: 24px;
}

.icon-lock{
  content:url("../img/mini/lock.png");
  width: 20px;
}
li.active .icon-lock{
  content:url("../img/mini/lock-active.png");
  width: 20px;
}

.icon-lotto{
  content:url("../img/mini/lotto.png");
  width: 24px;
}
li.active .icon-lotto{
  content:url("../img/mini/lotto-active.png");
  width: 24px;
}

.icon-luckywheel{
  content:url("../img/mini/luckywheel.png");
  width: 24px;
}
li.active .icon-luckywheel{
  content:url("../img/mini/luckywheel-active.png");
  width: 24px;
}

.icon-poker{
  content:url("../img/mini/poker.png");
  width: 26px;
}
li.active .icon-poker{
  content:url("../img/mini/poker-active.png");
  width: 26px;
}

.icon-slot{
  content:url("../img/mini/slot.png");
  width: 24px;
}
li.active .icon-slot{
  content:url("../img/mini/slot-active.png");
  width: 24px;
}

.icon-sport{
  content:url("../img/mini/sport.png");
  width: 24px;
}
li.active .icon-sport{
  content:url("../img/mini/sport-active.png");
  width: 24px;
}

.icon-withdraw{
  content:url("../img/mini/withdraw.png");
  width: 24px;
}
li.active .icon-withdraw{
  content:url("../img/mini/withdraw-active.png");
  width: 24px;
}

.icon-logout{
  content:url("../img/mini/logout.png");
  width: 24px;
}
li.active .icon-logout{
  content:url("../img/mini/logout-active.png");
  width: 24px;
}

.icon-acc1{
  content:url("../img/mini/acc.png");
  width: 34px;
}
.icon-lock1{
  content:url("../img/mini/lock.png");
  width: 29px;
  margin-top: -1px;
}

.box-c{

}
.box-d{
  max-width: 20%!important;
    width: 20%!important;
    flex: 0 0 20%;
}
@media (max-width: 768px) {
  section {
    margin-top: 2.5rem;
  }

  .section-info {
    width: 89%;
    height: 120px;
}




.ft-cel1{
    width: 18%!important;
      }
.ft-cel2{
      width: 18%!important;
      margin-left: -10px;
    }
  .lnk-gif{
    display:block;margin-top: 2.8rem;
  }
  .lnk-menu{
    display:block;margin-top: 3.2rem;right: 1rem;position: absolute;
  }
  .icon-viewpass{
    right: 11%;
  }
  .site-logo-img {
    max-height: 150px;
  }
  .img-aff{
    width: 42px;
    display: block;
      margin: auto;
      padding-top: 5px;
  }
  .img-autobank{
    width: 40px;
    display: block;
    margin: auto;
  }
  .img-slot{
    width: 40px;
    display: block;
    margin: auto;
    padding-top: 5px;
  }
  .img-casino{
    width: 40px;
    display: block;
    margin: auto;
  }

.nav-link {
    display: block;
    padding: .5rem .1rem;
}

.bg-button1{
  border: 1px solid #ffcc66;
  border-radius: 5px;

}

.icon-gif{
  width: 30px;
}
.icon-menu{
  width: 34px;
}



}
@media (max-width: 700px) {
  
 
}

/*==============================*/
/*==============================*/

#menuToggle
{
  display: block;
  position: relative;
  top: 76px;
  left: 50px;
  
  z-index: 1;
  
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color: #ffffff;
  
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: #ffff00;
}


#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #cdcdcd;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
  background: transparent;
  color: #ffffff;
    margin: auto;
    padding: 47px 0px 50px 0px;
    font-size: 2.5rem;
    /*margin-left: 70px;*/
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #cccccc;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  width: 300px;
  margin: -100px 0 0 -50px;
  padding: 0px 0px 0px 0px;
  background: #000000;
  border: 1px solid #ffcc66;
  border-bottom: 0px;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(1000%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 5px 10px 0px 10px;
  /*font-size: 22px;*/
  border-bottom: 1px solid #ffcc66;
  background-color: #990000;
  text-align: left;
}
#menu li:first-child{
  border-top: 1px solid #ffcc66;
}
#menu li.active{
 /* background-color: #333333;*/
  color: #ffff00;
  background-color: #000000;
  background: radial-gradient(circle, #333333 0%,#000000 50%, #000000 100%);
  
}
#menu li img{
  margin-right: 30px;
  margin-left: 20px;
  margin-top: -5px;
}
#menu li label{
 
  font-size: 1.2rem;
  font-weight: 400;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: translate(-60%, 0);
}

.info-menu{
  background: url(../img/bg-infomenu.png) bottom center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top center;
  width: 225px;
  height: 150px;
  border: 0px solid #ffcc66;
}
.info-menu span{
  font-size: 2rem;
}
.content-menu {
  max-height: 85vh;
  display: block;
  overflow: auto;
}
.casino-list{
  max-width: 500px;
  margin: auto;
  padding-bottom: 0px;
  margin-bottom: 5rem!important;
}
.item-a1{
  background: transparent;
  overflow: hidden;
  /*
  height:150px;
  border-radius: .5em;
  border: 0px solid #cac00c;*/
  height:auto;
  border-radius: 1.35em;
  border: 1.2px solid #000000;
  display: inline-table;
}
.shine-hover {
  position: relative;
  overflow: hidden;
  transition: all ease-in-out .6s;
  cursor: pointer;
  
}

.shine-hover:hover {
  filter: grayscale(.7)
}

.shine-hover:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #ffffffd1, transparent);
  transition: .6s;
  z-index: 9999;
  opacity: .8
}

.shine-hover:hover:before {
  transition-delay: .3s;
  left: 100%
}

.page-game-title{
  font-size: 1.5rem;
}
.bor-white-ks {
  border: 1px solid #fff;
  background: unset;
  border-radius: 0 15px 15px 15px;
}
.nav-tabs .nav-white-ks{
	background:rgba(42,42,42,0.4);
	color:#fff;
	border-radius: 5px 5px 0 0;
}

.nav-tabs .nav-white-ks.active{
	background:#fff;
	color:#000;
	border-radius: 5px 5px 0 0;
  padding-left: 5px;
  padding-right: 5px;
}

.nav-gold-ks{
  color: #000000!important;
  background: rgb(204,153,51);
  background: linear-gradient(180deg, rgba(204,153,51,1) 0%, rgba(255,204,102,1) 43%, rgba(255,255,153,1) 100%);
}
.bor-gold-ks{
  border: 1px solid #f0df8e;
  background: unset;
  border-radius: 0 15px 15px 15px;
}
.bor-white-top{
  border-top: 2px solid #999999;
  
}
.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
.bookbank{
  margin: auto;
  padding: 10px 50px!important;
  max-width: 90%;
}
.icon-bookbank{
  max-width: 75px;
}
.font-1-0 {
  font-size: 1rem!important;
  font-weight: 500;
}
.ks-btn-coppy{
  width: 100%;
    height: 40px;
    font-size: 1.2rem;
    padding-top: 0.5rem;
}
.btn-arrw{
  max-width: 50px !important;
}
.filter-bankhistory{
  width: 80%!important;
  max-width: 500px!important;
  margin: auto;
}


.bg-tb-hl {
  background: url(../img/tb-celL.png) bottom center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top center;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
 color: #000000;
 border-right: 2px solid #000000!important;
 border-bottom: 0px solid #dee2e6!important;
 border-top: 0px solid #dee2e6!important;
 padding: 3px 3px!important;
 height: 45px!important;
}
.bg-tb-hr {
  background: url(../img/tb-celR.png) bottom center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top center;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
 color: #000000;
 border-left: 2px solid #000000!important;
 border-bottom: 0px solid #dee2e6!important;
 border-top: 0px solid #dee2e6!important;
 padding: 3px 3px!important;
 height: 45px!important;
}
.bg-tb-hc {
  background: url(../img/tb-celC.png) bottom center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top center;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
 color: #000000;
 border-right: 2px solid #000000!important;
 border-left: 2px solid #000000!important;
 border-bottom: 0px solid #dee2e6!important;
 border-top: 0px solid #dee2e6!important;
 padding: 3px 3px!important;
 height: 45px!important;
}

.table td, .table th {
  padding: .5rem!important;
  vertical-align: top!important;
  border-top: 2px solid #000000!important;
  background-color: #212020!important;
  border-left: 2px solid #000000!important;
}

.dataTables_paginate.paging_simple_numbers{
 
  height: 40px;
  float: right;
}

.ks-pg-default{
  background-color: #ffcc00!important;
  color: #ffffff!important;
  height: 40px;
  width: 35px;
  font-size: 1.5rem;
  display: block;
  float: left;
  border-right: 2px solid #000000;
  border-left: 2px solid #000000;
  margin-top: -7px;
  padding-top: 2px;
}
.ks-pg-n,.ks-pg-p{
  background-color: #ffcc00!important;
  color: #ffffff!important;
  height: 40px;
  width: 35px;
  font-size: 1.5rem;
  display: block;
  float: left;
  border-right: 2px solid #000000;
  border-left: 2px solid #000000;
  margin-top: -7px;
  padding-top: 2px;
}
.paginate_button{
  color: #ffffff!important;
  width: 35px!important;
  float: left;
  border-right: 2px solid #000000;
  border-left: 2px solid #000000;
  text-align: center!important;
}
.paginate_button.previous{
  width: 74px!important;
  float: left;
  border-right: 2px solid #000000;
  border-left: 2px solid #000000;
}
.paginate_button.next{
  width: 74px!important;
  float: left;
  border-right: 2px solid #000000;
  border-left: 2px solid #000000;
}

.aff-overview{
  background: url(../img/aff-bginfo.png) bottom center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top center;
  width: 100%;
  min-height: 200px;
  position: relative;
  
}
.aff-img-title{
  width: 250px;
}
.aff-overview .aff-mylink{
  width: 100%;
  margin-left: 10px;
}
.btn-aff-share{
  width: 130px;
  color: #ffffff;
  border-radius: 10px;
  margin: 0px 5px!important;
  float: left;
  padding: 2px 5px!important;
}
.btn-aff-share.fix-w{
  width: 250px;
}

.aff-icon-share{
  width: 40px;
  margin-top: -12px;
}
.aff-lbl-share{
  font-size: 2rem;
}
.aff-icon-share.coppy{
width: 35px;
}
.btn-aff-share:hover{
  color: #ffcc00!important;
}
/*ffcc00*/
.aff-tb-h1{
  min-height: 50px;
  width: 100%;
  display: flex;
  padding: 10px 10px;
  margin-left: 10px;
  margin-right: 10px;
  border: 1px solid #ffcc66;
}
.aff-tb-trbg,.aff-tb-h1{
  background: rgb(153,102,51);
  background: linear-gradient(90deg, rgba(153,102,51,1) 0%, rgba(255,204,102,1) 6%, rgba(153,102,51,1) 17%, rgba(255,255,153,1) 52%, rgba(204,153,51,1) 85%, rgba(255,204,102,1) 94%, rgba(204,153,51,1) 100%, rgba(204,153,51,1) 100%, rgba(204,153,51,1) 100%);
  
}
.aff-tb-h1 .title
{
  color: #000000;
  font-size: 1.2rem;
  font-weight: 500;
}
.aff-tb-body1{
  background: url(../img/bg3.png) bottom center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: top center;
    text-align: center;
    width: 100%;
    min-height: 150px;
    margin-left: 10px;
    margin-right: 10px;
    border-left: 1px solid #ffcc66;
    border-right: 1px solid #ffcc66;
    border-bottom: 1px solid #ffcc66;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding-top: 5px;
}
.aff-tb-body1.fix-scrollbar{
  max-height: 500px;
  overflow:auto;
}
.aff-tb-body1 .r-items{
  min-height: 45px;
  padding: 5px 5px;
}
.aff-tb-body1 .lbl1{
  color: #ffffff;
  font-size: 1.2rem;
}
.aff-tb1 td, .aff-tb1 th{
  padding: .5rem!important;
    vertical-align: top!important;
    border-top: 0px solid #000000!important;
    background-color: transparent!important;
    border-left: 0px solid #000000!important;
}
.aff-tb1 th{
  font-weight: 500;
  font-size: 1.2rem;
}
.trbg-2{
  background: rgb(153,102,51);
  background: linear-gradient(90deg, rgba(153,102,51,1) 0%, rgba(255,204,102,1) 6%, rgba(153,102,51,1) 17%, rgba(255,255,153,1) 52%, rgba(204,153,51,1) 85%, rgba(255,204,102,1) 94%, rgba(204,153,51,1) 100%, rgba(204,153,51,1) 100%, rgba(204,153,51,1) 100%);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  

}
.tb-2{
  border-radius: 20px;
  border: 1px solid #ffcc66!important;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 10px 5px 10px 5px;
}
.tb-2 th {
  padding: .5rem!important;
  vertical-align: top!important;
  border-top: 0px solid #000000!important;
  background-color: transparent!important;
  border-left: 0px solid #000000!important;
  color: #000000;
}
.tb-2 td {
  padding: .5rem!important;
  vertical-align: top!important;
  border-top: 0px solid #000000!important;
  border-left: 0px solid #000000!important;

}
.tb-2 .even{
  color: #ffcc00!important;
}

.ks-pagination{
  width: 100%;
  padding: 0px 10px;
}

.border-radius-r{
 
    border-bottom-right-radius: 15px;
    border-top-right-radius: 15px;

}
.border-radius-l{
 
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;

}
.aff-tb-body1 .fix-pp .btn{
  border-radius: 10px;
  padding: 5px 7px;
}

.sec-luckywheel{
  background-color: #000000;
  background: url(../img/luckywheel/bg-sportlight.png) center center no-repeat;
  background-size: contain;
  height: 600px;
  width: 100%;
  border: 0px solid green;

}




@media (max-width: 1900px) {
  .casino-list {
    margin-bottom: 5rem!important;
}

}

@media (max-width: 768px) {
  .ks-pagination {
    width: 95%;
    padding: 0px 10px;
}
  .aff-block {
    max-width: 30%;
    padding: 10px 10px 3px 10px;
 }
 .aff-block-bl,.aff-block-br  {
  padding: 10px 10px 3px 10px;
  max-width: 45.5%;
}
.aff-block-bbb {
  max-width: 91.5%;
}
.aff-tb-h1 {
  min-height: 45px;
  width: 91.5%;
  min-height: 45px;
}
.aff-tb-body1 {
  width: 91.5%;
  margin-left: 4%;
  margin-right: 4%;
}
.aff-tb-h1 .title {
  color: #000000;
  font-size: 1rem;
  font-weight: 500;
}
.aff-tb-body1 .lbl1 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 300;
}
.aff-tb-body1 .r-items {
  min-height: 42px;
  padding: 5px 5px;
}

  .content-menu {
    max-height: 80vh;
    display: block;
    overflow: auto;
}
  .btn-aff-share{
    width: auto;
    margin: 0px 5px!important;
    padding: 2px 10px 2px 5px!important;
    border: 2px solid #ffcc66;
  }
  .btn-aff-share.fix-w{
    width: auto;
  }
  
  .aff-icon-share{
    width: 35px;
    margin-top: -7px;
  }
  .aff-lbl-share{
    font-size: 1.5rem;
  }
  .aff-icon-share.coppy{
  width: 27px;
  }

  .bookbank {
    margin: auto;
    padding: 10px 35px!important;
    max-width: 85%;
}

  .page-game-title {
    font-size: 1.3rem;
    margin-left: 10px;
}
  #menuToggle{
    left: 57px;
    top: 55px;
  }
  #menuToggle span:first-child {
    padding: 56px 0px 50px 0px;
    font-size: 2rem;
 
 }
 
 
  .info-menu {
    width: 225px;
    height: 106px;
    background-position: 10px 25px;
 }
 #menu li label {
  font-size: 1rem;
  font-weight: 400;
}
 .icon-casino {
  width: 32px;
}
.icon-casino+label {
  margin-left: -7px;
}
.icon-slot {
  width: 30px;
}
.icon-slot+label {
  margin-left: -7px;
}
.icon-sport {
  width: 26px;
}
.icon-logout {
  width: 24px;
  margin-top: 0px!important;
}
 /*
 #menuToggle span:first-child {
  padding: 30px 0px 50px 0px;
 }
*/

.bg-button2 {
  font-size: 14px;
  font-weight: 300;
}

.filter-lbl{
  font-size: 1.2rem;
} 
.filter-txt{
  height: calc(1.2em + .75rem + 8px);
}
.ksbox-filter .form-group {
  margin-bottom: 0.8rem;
}
.ks-i1{
  max-width: 150px;
}
}


@media (max-width: 500px) {
  .aff-tb-body1 .fix-pp .btn{
    border-radius: 10px;
    padding: 3px 5px;
  }
  .icon-viewpass{
    right: 8%;
  }
  .bg-tb-hl,.bg-tb-hr,.bg-tb-hc {
    font-size: 16px;
    font-weight: 500;
    height: 35px!important;
}
.table td, .table th {
  padding: .5rem .35rem!important;
}
.fix-lbl-tb{
  font-weight: 300!important;
}
  .box-content-history{
  margin-bottom: 5rem!important;
  }
  .btn-arrw{
    max-width: 35px !important;
  }
  .bookbank {
    margin: auto;
    padding: 10px 0px!important;
    max-width: 100%;
}
.icon-bookbank {
  max-width: 60px;
}
.bookbank .h3, .bookbank h3 {
  font-size: 1.2rem;
}
  .page-game-title {
    font-size: 1.1rem;
  }
  .profile-box {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 1rem;
}

.section-info {
    width: 100%;
    height: 110px;
}
.bg-info-aff {
  width: 27%;
  height: 45px;
  position: absolute;
  right: 0%;
  top: 0px;

}
.bg-info-aff label{
  font-size: 0.7rem;
}
.ks-tabmenu{
  width: 100%;
  margin: auto;
  padding-left: 0px!important;
  padding-right: 0px!important;
}
.box-a{
  width: 30%;
  max-width: 28%;
  flex: none;
  padding-left: 0px;
  margin-left: -5px;
}
.box-b{
  width: 45%;
  max-width: 45%;
  flex: none;
  padding-left: 0px;
  margin-left: -5px;
}
.box-b .bg-button1{
  width: 112%;
}
.menu-wrapper .menu-box a {
  height: 85px;
 
}
.lbl-tile {
  margin-left: 0px;
}

.bg-button2 {
  font-size: 12px;
  font-weight: 200;
 }

 #menuToggle {
  left: 10px;
}
#menuToggle span {
  width: 30px;
}
#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(2px, -1.5px);
}

.item-a1 {
background: transparent;
height: 125px;
}
.aff-tb-h1 .fix-pp{
  padding: 0px 0px!important;
}
.aff-tb-body1 .fix-pp{
  padding: 5px 0px!important;
}

.ks-i1 {
  max-width: 135px;
}


}




@media (max-width: 450px) {
  .aff-block {
    margin-bottom: 3px;
}
  .aff-block.cc {
    border: 1px solid #ffcc66;
    margin-left: 3px;
    margin-right: 3px;
}
  .aff-block h4 {
    font-size: 1.5rem!important;
    font-weight: 500!important;
}
.aff-block-bl{
  margin-bottom: 3px;
  border: 1px solid #ffcc66;
  margin-right: 1.5px;
}
.aff-block-br{
  margin-bottom: 3px;
  border: 1px solid #ffcc66;
  margin-left: 1.5px;
}
.aff-block-bbb{
  height: 7px;
}
.aff-tb-h1 {
  margin-top: 5px!important;
}
.aff-overview {
    background: url(../img/aff-bginfo-mini.png) bottom center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: top center;
    width: 100%;
    min-height: 100px;
    position: relative;
    max-height: 200px;
    border: 2px solid #ffcc66;
    border-radius: 15px;
}
  .aff-img-title {
    width: 200px;
}
.aff-lbl-share {
  font-size: 1rem;
}
.aff-icon-share {
  width: 24px;
  margin-top: 0px;
}
.aff-icon-share.coppy {
  width: 20px;
}
  .icon-gif {
    width: 24px;
    margin-top: 5px;
}
.icon-menu{
  width: 30px;
  margin-top: 5px;
}

  .bg-info-aff {
  max-width: 103px;
  }
  .bg-info-aff h5 {
    font-size: 1rem;
}
  .ks-tabmenu{
    width: 100%;
    margin: auto;
    padding-left: 0px!important;
    padding-right: 0px!important;
  }

  .ks-tabmenu .box-c:first-child{
    padding-left: 0px;
  }
  .ks-tabmenu .box-c{
    max-width: 55px;
  }
  .ks-tabmenu .box-c2{
    min-width: 100px;
  }
  .box-a{
    width: 30%;
    max-width: 28%;
    flex: none;
    padding-left: 0px;
    margin-left: -5px;
  }
  .box-b{
    width: 45%;
    max-width: 45%;
    flex: none;
    padding-left: 0px;
    margin-left: -5px;
  }
  .box-b .bg-button1{
    width: 112%;
  }
  .icon-account {
    width: 28px;
    display: block;
}

.lbl-tile {
 font-size: 14px;
}

#menuToggle {
  left: 12px;
}
#menuToggle span {
  width: 27px;
}
#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(4px, -3px);
}
.item-a1 {
background: transparent;
height: 110px;
}

.aff-tb-h1 .fix-pp .title {
  font-size: .8rem;

}
.aff-tb-body1 .fix-pp .lbl1 {
  color: #ffffff;
  font-size: .8rem;
  font-weight: 300;
}
.ks-i1 {
  max-width: 125px;
}

}
@media (max-width: 375px) {
  .aff-tb-h1 .col-4{
    padding-left: .1rem!important;
    padding-right: .1rem!important;
  }
  .aff-tb-body1 .lbl1 {
    color: #ffffff;
    font-size: .9rem;
    font-weight: 300;
}
  .aff-overview {
    padding-left: .3rem!important;
    padding-right: .3rem!important;
}
  .ft-cel1 {
    width: 16%!important;
}
.ft-cel2 {
  width: 19%!important;
 }
  #btn-refresh-credit{
    font-size: 0.8rem!important;
  }
  .bg-info-aff label {
    font-size: 0.6rem;
}
.img-aff {
  width: 40px;
  display: block;
  margin: auto;
  padding-top: 5px;
}
.img-autobank {
  width: 38px;
  display: block;
  margin: auto;
}
.link-ft-last{
  margin-left: -10px;
}

.ks-tabmenu .box-c {
  max-width: 48px;
}


}

@media (max-width: 320px) {
.bg-button2 {
  font-size: 0.7rem;
  font-weight: 200;
}
.aff-lbl-share {
  font-size: 0.7rem;
}
.aff-icon-share {
  width: 20px;
  margin-top: 0px;
}
.aff-icon-share.coppy {
  width: 18px;
}
.aff-img-title {
  width: 180px;
}

}
.modal {
  background-color: #272727;
  opacity: 0.9;
}