/* css style */

html {
    display: block;
    width: 100%;
    height:100%;
}


@font-face {
	font-family: ThaiSarabun;
	src: url('../../fonts/THSarabunBold.ttf');
}

body {
    /*background: linear-gradient(180deg,#1D2D46 0%,#030A1C 100%) no-repeat;*/
    background: linear-gradient(0deg,#020516 45%,#1D283F 80%) no-repeat;
    background-size: 100% 200%;
    padding: 0;
    margin: 0;
}

body > div.container > * {
	transition: all 0.5s;
    font-family: Arial,'Mitr',sans-serif,Verdana,sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    color: #fff;
}

a {
    color: #fff;
}

/* Notification */
.notification {
  padding: 15px;
  background-color: #ffffff;
  position: fixed;
  top: -30%;
  width: 84%;
  max-width: 400px;
  margin: 0 auto;
  left: 0;
  right: 0;
  border-left-width: 3px;
  border-left-style: solid;
  z-index: 10;
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  -ms-transition: all ease 0.5s;
  border-radius: 10px;
  overflow: hidden;
}

.notification.active {
  top: 30px;
  opacity: 1;
}

.notification.bottom {
  bottom: -30%;
  opacity: 0;
  top: auto;
}

.notification.bottom.active {
  bottom: 30px;
  opacity: 1;
}

.loader-screen {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 99;
  background-color: blue;
}

.blue-theme .loader-screen {
  background: linear-gradient(to top, #000616, #1d2d45);
  height: 100%;
  margin: 0;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/*.loader-screen img {
  width:70%;
}*/

/* Loader css */
.laoderhorizontal {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}

.laoderhorizontal div {
  position: absolute;
  top: 27px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.laoderhorizontal div:nth-child(1) {
  left: 6px;
  animation: laoderhorizontal1 0.6s infinite;
}

.laoderhorizontal div:nth-child(2) {
  left: 6px;
  animation: laoderhorizontal2 0.6s infinite;
}

.laoderhorizontal div:nth-child(3) {
  left: 26px;
  animation: laoderhorizontal2 0.6s infinite;
}

.laoderhorizontal div:nth-child(4) {
  left: 45px;
  animation: laoderhorizontal3 0.6s infinite;
}

@keyframes laoderhorizontal1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes laoderhorizontal3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes laoderhorizontal2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(19px, 0);
  }
}

/* Bootstrap class definded */

.form-control {
  background: transparent;
  color: white;
  border-radius: 10px;
  font-family: inherit;
}

.form-control:focus, .form-control:active  {
  outline: none;
  box-shadow: none;
  border:none;
}

.form-control:place-holder {
  color:white;
  font-family: inherit;
}

.show > .dropdown-menu {
    display: block;
}

.btn {
    cursor:pointer;
}

.btn-danger {
    background: linear-gradient(180deg, #7F0E13 25%, #B60E22);
    border: 1px solid #B60E22;
    border-radius: 10px;
    box-shadow: 1px 1px 2px 1px rgba(0,0,0,0.4);
}

.btn-light {
    background:white;
}

.btn-round {
    border-radius: 30px;
}

/* Property class */

.overflow-x-scroll {
  overflow-x:scroll;
  transform: translateX(0px);
}

.ws-nowrap {
    white-space: nowrap !important;
}

.pos-fixed {
    position: fixed;
}

.cursor-pointer {
    cursor:pointer;
}

.cursor-pointer * {
    cursor:pointer;
}

.relative {
    position: relative;
}

.font-weight-light {
    font-weight: 200
}

.font-weight-normal {
    font-weight: 300
}

.font-weight-medium {
    font-weight: 400
}

.font-weight-bold {
    font-weight: 500
}

.text-gray {
    color:#b1b1b1;
}

.text-black {
    color:black !important;
}

.font-inherit {
    font-family: inherit;
}

.text-shadow {
    text-shadow: 2px 2px 1px rgba(0,0,0,0.3);
}

.text-gold {
    background: -webkit-linear-gradient(210deg,#f3d268 20%, #fbe1a7 );;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Specific class */

.table {
    color:white;
}

.footer {
    background:linear-gradient(180deg, #233B5D 0% , #0C2039 100%) !important;
    height: 95px !important;
    bottom:0 !important;
    left:0 !important;
    z-index: 999 !important;
}

.footer label {
    font-family: 'Mitr';
}

.footer .footer-icon {
    width: 45px;
    height: 50px;
}

.footer .footer-button {
    top:-40px;
    width: 95px;
    height: 95px;
    position: relative;
    border-radius: 100px;
/*    border:groove 2px #d6b068;
    border-image-source:linear-gradient(130deg, #E7D09C, #E7D09C) ;
    border-image-slice: 20;*/
    background:linear-gradient(180deg, #0E2038 0%,#213C5A 100%);
    margin:0 auto;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer .footer-button::after {
    position: absolute;
    top: -2px; bottom: -2px;
    left: -2px; right: -2px;
    background: linear-gradient(130deg,#d6b068 30%, #E7D09C 40%, #E7D09C 60%, #d6b068 70%);
    border-radius: 100px;
    content: '';
    z-index: -1;
    border-radius: 126px;
}

.footer .footer-button .icon-home {
    max-width: 60px;
}

.footer .footer-icon.member {
    background:url('../../img/member_white.png') no-repeat;
    background-size: contain;
    background-position: center;
}

.footer .footer-icon.income {
    background:url('../../img/income_white.png') no-repeat;
    background-size: contain;
    background-position: center;
}

.footer .footer-icon.share {
    background:url('../../img/share_white.png') no-repeat;
    background-size: contain;
    background-position: center;
}

.footer .footer-icon.help {
    background:url('../../img/help_white.png') no-repeat;
    background-size: contain;
    background-position: center;
}

.footer .nav .nav-link {
    padding: 0px;
}

.nav-logo {
    max-width: 200px;
}

.btn-shutdown {
    max-width: 33px;
    position: absolute;
    right: 10px;
    top: 18px;
    cursor: pointer;
}

.btn-gold {
    background:linear-gradient(180deg ,#CDAA68 0% ,#F7DEA5 50%, #CDAA68 100%);
    border: 1px solid #DFC182;
    border-radius: 10px;
    box-shadow: 1px 1px 2px 1px rgba(0,0,0,0.4);
    color:#d21313;
}

.icon-user {
    max-width: 50px;
}

.balance-circle {
    width: 90%;
    position: relative;
    border-radius: 15px;
/*    border:groove 2px #d6b068;
    border-image-source:linear-gradient(130deg, #E7D09C, #E7D09C) ;
    border-image-slice: 20;*/
    background: linear-gradient(90deg,#1A191E 0% ,#1A191E 100%) no-repeat;
    margin:0 auto;
}

.balance-circle::after {
    position: absolute;
    top: -2px; bottom: -2px;
    left: -2px; right: -2px;
    background: linear-gradient(130deg,#d6b068 30%, #E7D09C 40%, #E7D09C 60%, #d6b068 70%);
    border-radius: 15px;
    content: '';
    z-index: -1;
    /*border-radius: 126px;*/
}

.balance-circle > .btn-config {
    position: absolute;
    right: 7px;
    bottom: 9px;
    width: 40px;
    height: 40px;
    padding: 4px;
    display:flex;
    justify-content: center;
    align-items: center;
    background:linear-gradient(180deg, #111A2B 0%,#0A1322 100%);
    border:groove 2px #d6b068;
    border-radius: 50px;
}

.line-icon {
  max-width: 100px;
}
