@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');


:root {
    --primaryRed: #c81526;
    --secondaryRed: #500000;
    --yellow: #ea9d07;
    --green: #448405;
    --grey: #bdbec0;

  /* Shades of Blue */
    --darkBlue: #0E1D35;
    --blue: #15253F;
    --lightBlue: #2B3D5B;
    --darkGray: #7C8594;
    --gray: #C3C3C3;
    --lightGray: #DDDEE5;
}

body {
    font-family: "Roboto", sans-serif;
    background: #fafafa;
    overflow: hidden;
}

span {
    font-weight: 300;
}

p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7em;
}

.marquee p {
    margin: 0;
}



span,
label,
input {
    font-size: 13px;
}

.not-found {
  margin-top: 25vh;
}

.notification-dot {
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--yellow);
}

.notif-bar {
    animation: blinking 1s infinite;
}

@keyframes blinking {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.fs-11 {
    font-size: 11px;
}

.fs-12 {
    font-size: 12px;
}

.fs-13 {
    font-size: 13px;
}

.fs-14 {
    font-size: 14px;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.fs-22 {
    font-size: 22px;
}

.fs-25 {
    font-size: 25px;
}

.fs-32 {
    font-size: 32px;
}

.fs-50 {
    font-size: 50px;
}

/* -------------------*/
/* TOAST NOTIFICATION */
/* -------------------*/
#toast-notification {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #2b3d5d;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 8px;
  position: fixed;
  z-index: 1;
  left: 50%;
  top: 30px;
}

#toast-notification.show {
  visibility: visible;
  -webkit-animation: toastNotifFadein 0.5s, toastNotifFadeout 0.5s 2.5s;
  animation: toastNotifFadein 0.5s, toastNotifFadeout 0.5s 2.5s;
}

@-webkit-keyframes toastNotifFadein {
  from {top: 0; opacity: 0;}
  to {top: 30px; opacity: 1;}
}

@keyframes toastNotifFadein {
  from {top: 0; opacity: 0;}
  to {top: 30px; opacity: 1;}
}

@-webkit-keyframes toastNotifFadeout {
  from {top: 30px; opacity: 1;}
  to {top: 0; opacity: 0;}
}

@keyframes toastNotifFadeout {
  from {top: 30px; opacity: 1;}
  to {top: 0; opacity: 0;}
}
/* --------------------------*/
/* END OF TOAST NOTIFICATION */
/* --------------------------*/

/* -------------------*/
/* TOAST ERROR NOTIFICATION */
/* -------------------*/
#toast-error-notification {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: var(--primaryRed);
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 8px;
  position: fixed;
  z-index: 99;
  right: 10px;
  bottom: 30px;
}

#toast-error-notification.show {
  visibility: visible;
  -webkit-animation: toastFadein 0.5s, toastFadeout 0.5s 4.5s;
  animation: toastFadein 0.5s, toastFadeout 0.5s 4.5s;
}

@-webkit-keyframes toastFadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes toastFadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes toastFadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes toastFadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}
/* --------------------------*/
/* END OF TOAST ERROR NOTIFICATION */
/* --------------------------*/
.restrict-ip {
    font-size: 14px;
}

.search-deposit input {
    border-radius: 25px;
    height: 30px;
    background-color: white;
}

.search-deposit {
    width: 200px;
}

.search-deposit .fa-search {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 7px;
    font-size: 13px;
    color: var(--primaryRed);
}

.btn {
    font-size: 13px;
    border-radius: 0;
}

.btn-yes {
    background: var(--green);
    color: white;
    height: auto;
}

.btn-no {
    background: var(--primaryRed);
    color: white;
    height: auto;
}

.btn-yes:hover {
    background-color: darkgreen;
    color: white;
}

.btn-no:hover {
    background-color: var(--secondaryRed);
    color: white;
}

.btn-sm {
    font-size: 10px;
}

.btn-blue {
    color: var(--lightGray);
    background: var(--blue);
}

.btn-green {
    color: white;
    background: var(--green);
}

.btn-gray {
    color: white;
    background: var(--grey);
}

.btn-plain {
    background: white;
    color: grey;
    border: 1px solid #C4C4C4;
}

.btn-white {
    color: #0E1D35;
    background: white;
    font-weight: 600;
    min-width: 280px;
    display: block;
    margin: auto;
}

.btn-active {
    color: white;
    background-color: var(--blue);
}

.btn-white:hover {
    background: #0E1D35;
    color: white;
}

.btn-blue:hover {
    background: var(--darkGray);
    color: var(--lightGray);
}

.btn-green:hover {
    background-color: darkgreen;
    color: white;
}

.btn-gray:hover {
    background: var(--blue);
    color: white;
}

.text-green {
    color: var(--green);
}

.text-red {
    color: var(--primaryRed);
}

.text-blue {
    color: var(--blue);
}

.text-grey {
    color: var(--grey);
}

.text-dark-red {
    color: var(--secondaryRed);
}

.bg-blue {
  background-color: var(--blue);
}

.bg-red {
  background-color: var(--primaryRed);
}

.bg-red-gradient {
    background: linear-gradient(270deg, #C81526 0%, #FF1E33 50%)
}

.bg-green {
    background-color: var(--green);
}

.bg-white {
  background-color: #FFFFFF;
}

.bg-white-smoke {
  background-color: #E7DFDF80;
}

.latest-member-container {
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
    min-height: 200px;
    max-height: 50px;
}

.statistic-col {
  flex: 0 0 72%;
  max-width: 72%;
}

.statistic-col-2 {
  flex: 0 0 27%;
  max-width: 27%;
}

.statistic-card .card-1 {
  background: #C3C3C3;
}

.statistic-card .card-2 {
  background: #7C8594;
}

.statistic-card .card-3 {
  background: #2B3D5B;
}

.statistic-card .card-4 {
  background: #15253F;
}

.statistic-card .card-5 {
  background: #0E1D35;
}

.statistic-card .card-1, .statistic-card .card-2, .statistic-card .card-3, .statistic-card .card-4, .statistic-card .card-5 {
  border-radius: 8px;
  margin-right: 0;
}

.statistic-card .card-body {
  padding: 12px;
}

#statisticGraph {
    width: 100%;
    height: 100%;
    max-height: 300px;
}

#agentProfitGraph {
    width: 100%;
    height: 100%;
    max-height: 300px;
}

.card-graph-container {
  width: 100%;
  height: 100%;
  max-height: 300px
}

.card {
    box-shadow: 0 0 2rem 0 rgba(136, 152, 170, .15);
}

.card:hover {
    cursor: pointer;
}

.announcement-container {
    overflow: hidden;
    width: 100%;
}

.announcement-text {
    display: block;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translatex(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.announcement-page ul li p {
    color: black;
    font-size: 16px;
    font-weight: 500;
}

.announcement-page ul li i {
    float: right;
    color: var(--grey);
    font-size: 13px;
}

.announcement-page .badge {
    font-weight: 500;
}

.cms-language {
    border: 1px solid var(--grey);
    padding: 5px 10px;
}

.cms-language label,
select {
    font-size: 12px;
    vertical-align: baseline;
}

.table tr td {
    vertical-align: middle;
    font-weight: 300;
}

.table-thumbnail {
    width: 100%;
    max-width: 50px;
    height: auto;
}

table thead {
    background: #15253F;
}

table thead th {
    color: white;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.table thead th {
    vertical-align: middle;
}

tbody tr, tbody tr td > span {
    font-size: 13px;
    text-align: center;
}

.col-form-label {
  line-height: 0;
  font-size: 13px;
}

.form-control {
  font-size: 13px;
}

.table-striped>tbody>tr:nth-child(2n + 1)>td,
.table-striped>tbody>tr:nth-child(2n + 1)>th {
    background: #C3C3C3;
}

.table td, .table th {
  padding: 4px 8px;
}

.progressive-payout img {
  width: 100px;
  height: auto;
}

.process-container {
    border: 2px solid #C4C4C4;
    padding: 5px 10px;
    border-radius: 5px;
}

.rotate { display: none; color: #ffffff; position: absolute; left: 50%; top: 50%; text-align: center; width: 400px; height: 50px; margin-left: -200px; margin-top: -25px; }

.keypadwrapper { text-align: center; width: 100%; color: black;

	.inputwrapper { margin: 2em; line-height: 0.61em;   vertical-align: middle; }

	.numberinput { display: inline-block; height: 15px; width: 15px; border-radius: 50px; border: 1px solid #FFFFFF; margin-right: 2%; margin-left: 2%; font-size: 2em; }

	.keypad {
		.numberline { width: 100%; }

		/* #linefour { position: absolute; bottom: 10%; }

		#linethree { position: absolute; bottom: 30%; }

		#linetwo { position: absolute; bottom: 50%; }

		#lineone { position: absolute; bottom: 70%; } */

		.keypad-content { display: inline-block; margin: 0 5% 2% 0;

			div { width: 4em; height: 4em; text-align: center; border: 1px solid #000; border-radius: 70px; display: inline-block; cursor: pointer; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;

				span:nth-child(1) { display: block; font-size: 1.8em; height: 1em; margin-top: 0.2em; }

				span:nth-child(2) { font-size: 0.6em; }
			}

			div:hover { background-color: #ffffff; color: #000000; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
		}
	}
}

.nocircle { width: auto !important; border: none !important; height: auto !important; }

@media all and (max-width: 470px) {
	.keypad-content { margin: 0 5% !important; }
}

@media all and (max-width: 350px) {
	.keypad-content { margin: 0 2% !important; }
}

@media all and (max-height: 470px) {
	#linefour { bottom: 2% !important; }

	#linethree { bottom: 23% !important; }

	#linetwo { bottom: 43% !important; }

	#lineone { bottom: 63% !important; }
}

.user-filter {
    background: white;
    cursor: pointer;
    padding: .375rem .75rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    font-size: 1rem;
}

.player-filter {
    padding: 5px;
}

.process-container label,
.process-container select,
.process-container input,
.player-filter label,
.player-filter select,
.player-filter input {
    font-size: 11px;
}

.process-container .amount-input {
    width: 50%;
}

.process-container .form-group,
.player-filter .form-group {
    margin: auto 0;
}

.process-container .input1,
.input2,
.input4 {
    margin-left: 2px;
}

.process-container .input3 {
    margin-left: 8px;
}

.player-filter input {
    width: 175px;
}

.player-filter .form-check-input {
    width: auto;
}

.player-filter .input-bank {
    width: 79px;
}

.player-filter .contains-data {
    padding-left: 14px;
}

.player-filter .btn-red {
    height: 30px;
    font-size: 10px;
}

ul li a span {
    font-size: 14px;
    font-weight: 500;
}

.navbar {
    background: #c81526;
    border: none;
    border-radius: 0;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

/* CONSTRUCTION */
.construction {
    text-align: center;
    display: block;
}

.construction .img-container {
    width: 800px;
    height: auto;
    display: block;
    margin: auto;
}

.fa-filter {
    font-size: 12px;
}

.percent-symbol {
    position: absolute;
    right: 15px;
    top: 10px;
    font-weight: 500;
}

.wrapper {
    overflow-x: hidden;
    display: flex;
    width: 100%;
    align-items: stretch;
}

.dropdown {
    cursor: pointer;
}

.dropdown:hover {
    color: var(--secondaryRed);
}

.html-header .input-html {
    width: 100%;
}

.btn-white-wide {
    color: var(--secondaryRed);
    font-weight: 600;
    background: white;
    border-color: none;
    border-radius: 50px;
    width: 100%;
}

.btn-confirmed-wide {
    font-weight: 600;
    background: var(--green);
    color: white;
    border-radius: 50px;
    width: 100%;
}


/* SECTION - LOGIN */

.login {
    background: linear-gradient(180deg, #2B3D5B 0%, #0E1D35 100%);
    height: 100vh;
    overflow: hidden;
}

.login .forgot-password,
.register {
    color: white;
}

.login .forgot-password:hover,
.register:hover {
    color: lightblue;
}

.login .container {
    width: 500px;
    padding: 25px;
    margin: 25vh auto;
    border-radius: 15px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
    background: #2B3D5B;
}

.login img {
    display: block;
    margin: auto;
    width: 175px;
}

.login input {
    padding-left: 25px;
    margin: auto;
    border-radius: 100px;
    width: 280px;
    height: 48px;
    color: #0E1D35;
    border: 0;
}

.login .icon-inside {
    position: absolute;
    right: 100px;
    top: 15px;
    cursor: pointer;
}

.login .fas {
    color: #0E1D35;
    font-size: 16px;
}


/* SECTION - SIDEBAR */

#sidebar {
    min-height: 100vh;
    background-color: #0E1D35;
    min-width: 250px;
    max-width: 250px;
    color: #fff;
    transition: all 0.3s;
}

#sidebar .user-info {
    padding: 4px;
    background-color: #2B3D5D;
    border: 1px solid #7C8594;
    border-radius: 4px;
    text-align: center;
}

#sidebar .scroll {
    height: 75vh;
    overflow-y: auto;
}

#sidebar.active {
    margin-left: -250px;
}

#sidebar .highlight {
    /* border-left: 5px solid #7C8594; */
    background: rgba(255, 255, 255, 0.15);
}


#sidebar .sidebar-header {
    /* padding: 20px; */
    background: #c81526;
}

#sidebar ul.components {
    padding: 20px 0px;
    border-bottom: 1px solid #2B3D5D;
}

#sidebar ul li img {
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

#sidebar ul p {
    padding: 10px;
    font-size: 15px;
    display: block;
    color: #fff;
}

#sidebar ul li a {
    padding: 2px 0;
    font-size: 16px;
    display: block;
    font-weight: 300;
    text-decoration: none;
}

#sidebar .menu {
    font-weight: 500;
    margin-left: 2px;
}

#sidebar .logout-menu {
  padding: 0 8px 8px 8px;
  display: block;
  align-items: center;
  justify-content: center;
}

#sidebar .logout-menu a {
  background: #2B3D5B;
  border-radius: 4px;
  border: 1px solid #15253F;
  color: white;
}

#sidebar .logout-menu a:hover {
    background: var(--gray);
    border-radius: 4px;
    border: 1px solid var(--darkGray);
    color: var(--darkBlue);
  }


#sidebar .setting-button {
  display: block;
  background: #2B3D5B;
  width: 100%;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: #fff;
    background: #0E1D35;
}

a[data-toggle="collapse"] {
    position: relative;
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 28px !important;
}

ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

.loading-screen {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 99;
}

.loading-state {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5rem;
    height: 5rem;
    background-color: #0E1D35;
}

a.download,
a.download:hover {
    background: #318fb5;
    color: #fff;
}

.content {
    /* overflow: auto; */
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    /* height: 100%; */
    height: 91vh;
    background-color: #F5F5F5;
}

.content-wrapper {
    padding: 15px;
}

.content-wrapper-organization {
    padding: 0;
}

/* Select2 */

.select2 {
    width: 100% !important;
}

.select2-container--default .select2-selection--multiple {
    border: 1px solid #ced4da;
}

/* End select2 */


@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
    }
    #sidebar.active {
        margin-left: 0px;
    }
    #sidebarCollapse span {
        display: none;
    }
}

/* SECTION - NAVIGATION BAR*/

#navigationBar .dropdown-toggle::after {
    content: none;
}

#navigationBar img {
    width: 100%;
    height: auto;
    display: block;
    margin: auto;
}

#navigationBar {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
    background-color: #0E1D35;
}

#navigationBar .input-group {
    position: relative;
    width: 400px;
}

#navigationBar .fa {
    color: #fff;
}

#navigationBar .fas {
    color: #fff;
    font-size: 20px;
}

#navigationBar .fa-bars {
    cursor: pointer;
}

#navigationBar .fa-bell {
    cursor: pointer;
}

#navigationBar .fa-user-circle {
    cursor: pointer;
}

#navigationBar .fa-check-circle {
    color: inherit;
    font-size: 20px;
}

#navigationBar .fa-exclamation-triangle {
    color: inherit;
    font-size: 20px;
}

#navigationBar .fa-sign-out-alt {
    color: inherit;
    font-size: 20px;
}

#navigationBar .fa-search {
    position: relative;
    top: 7px;
    right: 28px;
    font-size: 16px;
    color: var(--primaryRed);
}

#navigationBar .dropdown-menu {
    left: -150px;
}

#navigationBar .user-dropdown {
    left: -110px;
}

#cms-banner-edit-modal .container {
    padding: 30px 50px;
}

#cms-banner-edit-modal .round-close {
    font-size: 25px;
    position: absolute;
    top: 25px;
    right: 25px;
}

.background-container {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 12px;
}

.dropdown-item {
    color: var(--primaryRed);
    font-size: 16px;
    font-weight: 600;
}

.dropdown-item .fas {
    color: var(--primaryRed);
}

.dropdown-item:hover {
    color: white;
    background-color: var(--primaryRed);
}

.switch.ios, .switch-on.ios, .switch-off.ios { border-radius: 20rem; }
.switch.ios .switch-handle { border-radius: 20rem; }

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;}

.rp-background {
    background-color: var(--primaryRed);
    width: 35px;
    height: 35px;
    border-radius: 5px;
}

#menuTable > tr > td > span.dot {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    display: block;
    background-color: white;
}

.disable-bank-rotation {
    pointer-events: none;
    opacity: 0.5;
}

.enable-bank-rotation {
    pointer-events: all;
    opacity: 1;
}

@media screen and (max-width: 720px) {
  #sidebar .scroll {
    height: 75vh;
  }
}

@media screen and (max-width: 1400px) {
  #sidebar .scroll {
    height: 70vh;
  }
}
