@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&family=Ubuntu:wght@300;400;500;700&display=swap');
:root{
    --body-color: #ffffff00;
    --sidenav-color:#212529;
    --sidenav-text-color:#b5b5b5;
    --primary-color: #fabb7d;
    --secondary-color: #000;
    --gradient-color : #e29242;
    --gradient-colors : linear-gradient(45deg, var(--primary-color), var(--gradient-color));
    --widget-color: #f2f2f2;
    --widget-blank-color: #696969;
    --success-color:#006400;
    --warning-color:#ffcc00;
    --danger-color:#cc0000;
    --primary-text-color:#000;
    --secondary-text-color:#898989;
    --light-text-color:#847d7d;
    /* scroll bar */
    /* --scroll-bar-thumb:#fabb7d;
    --scroll-bar-thumb-hover:rgba(33, 37, 41,0.33); */
    --scroll-bar-thumb:#212529;
    --scroll-bar-thumb-hover:rgba(33, 37, 41,0.33);
    /* scroll bar */
    --logo-background-color:#d69292;
}
:root{
    /* dark theme document.documentElement.style.setProperty('--primary-color', color); */
    /* --body-color :#171717;
    --widget-color: #333;
    --primary-text-color:#ccc;
    --widget-blank-color: #7f7d7d; */
}
:root{
    /* light theme document.documentElement.style.setProperty('--primary-color', color); */
    /* --sidenav-color : #c1c1c1;
    --sidenav-text-color :000 */
}
body{
    background-color: var(--body-color);
    font-family: 'Ubuntu', sans-serif;
}
h1,h2,h3,h4,h5,h6,p,span,div{
    color: var(--primary-text-color);
}
.bg-dark,.sb-sidenav-dark{
    background-color: var(--sidenav-color) !important;
}
nav,a.navbar-brand .navbarOrgName,.nav-link, .navbar-nav, .sb-sidenav-dark .sb-sidenav-menu .sb-sidenav-menu-heading, .sb-sidenav-dark .sb-sidenav-menu .nav-link, .sb-sidenav-dark .sb-sidenav-menu .nav-link .sb-nav-link-icon, .sb-sidenav-collapse-arrow svg{
    color: var(--sidenav-text-color) !important;
}
.text-secondary{
    color: var(--secondary-text-color) !important;
}
.font{
	font-family: 'Poppins', sans-serif !important;
}
.textColor{
    color: var(--primary-text-color);
}

body::-webkit-scrollbar-track {
    background: transparent;
}

body::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}

body::-webkit-scrollbar-thumb {
	background-color: var(--scroll-bar-thumb);
	/* border-radius: 6px; */
}

body::-webkit-scrollbar-thumb:hover {
	background-color: var(--scroll-bar-thumb-hover);
}

body::-webkit-scrollbar-corner {
	background: transparent;
}
.scrollBar::-webkit-scrollbar-track {
    background: transparent;
}

.scrollBar::-webkit-scrollbar {
	width: 3px;
	height: 0px;
}

.scrollBar::-webkit-scrollbar-thumb {
	background-color: var(--scroll-bar-thumb);
	/* border-radius: 6px; */
}

.scrollBar::-webkit-scrollbar-thumb:hover {
	background-color: var(--scroll-bar-thumb-hover);
}

.scrollBar::-webkit-scrollbar-corner {
	background: transparent;
}
/* .allFlex{
    display: flex;
    align-items: center;
    justify-content: center;
}
.flexBetween{
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
}

.flexAround{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.sFlex{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.sFlexInv{
    display: flex;
    align-items: flex-start;
    justify-content: center;
} */

.sb-sidenav-menu {
	-ms-overflow-style: none;  
	scrollbar-width: none;  
}
.sb-sidenav-menu::-webkit-scrollbar { 
	display: none; 
}
@keyframes blink {
	0% { opacity: 0.1; }
	50% { opacity: 1; }
	100% { opacity: 0.1; }
}

.blinking-text {
	animation: blink 1s infinite;
}
.nav-link{
    border-radius: 10px;
    cursor: pointer;
}
.nav-link:hover{
    background-color: #877e7e;
    color: #fff;
}
a.navbar-brand{
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px 0 0 10px;
}
.navbar .navbarOrgLogo {
    min-height: 48px;
    min-width: 48px;
    max-height: 48px;
    height: 48px;
    max-width: 48px;
    width: 48px;
    padding: 2px;
    border: 1px solid #fff;
    border-radius: 50%;
    background: var(--logo-background-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
a.navbar-brand .navbarOrgName {
    word-wrap: break-word;
    white-space: normal;
}
.notificationDropdownBox{
    min-width: 300px;
    max-height: 400px;
}
@media (max-width:480px) {
    .notificationDropdownBox{
        right: -120px !important;
    }
    .navbar .navbarOrgLogo{
        display: none;
    }
}
.bottomNotificationBox{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bottomNotificationBox .dizziCoins {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.inputField {
    color: #333;
    background: #fff;
    border: 1px solid rgb(183 184 186);
    outline: none;
    box-sizing: border-box;
    border-radius: 7px;
    margin-bottom: 3px;
    padding-left: 36px;
    padding-right: 36px;
    width: 96%;
}
.inputLabel {
    margin-bottom: 3px;
    margin-left: 3px;
    font-weight: 500;
    font-size: 15px;
}
.formInput{
    position: relative;
}
.inputIcon,.deleteIcon {
    position: absolute;
    top: 33px;
    left: 10px;
    color: #000;
    font-weight: 700;
}
.deleteIcon{
    left: auto;
    right: 0px;
    cursor: pointer;
}
.formInput .suggestions {
    color: var(--light-text-color);
    margin-left: 2px;
    margin-bottom: 5px;
    font-size: 11px;
}
.formAddInput{
    padding: 10px 0 5px 0;
    display: flex;
    justify-content: flex-end;
}
.sync{
    margin-left: -8px;
    cursor: pointer;
}
.widget-bg{
    background-color: var(--widget-color);
    border-radius: 20px;
    padding: 10px;
    color: var(--primary-text-color);
}
.widget-border-1{
    border-radius: 5px;
}
.widget-border-2{
    border-radius: 10px;
}
.widget-border-3{
    border-radius: 15px;
}
.widgetGap{
    margin: 10px;
}
.widget{
    color: var(--primary-text-color);
    margin: 0px 10px 10px 10px;
}
.widgetp{
    color: var(--primary-text-color);
    padding: 0px 10px 10px 10px;
}
.widgetGroupGroup{
    position: relative;
}
.widgetGroupGroup .widgetGroupChild{
    padding: 5px;
}
.widgetGroup{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    color: var(--primary-text-color);
    height: 275px;
    position: relative;
}
.widgetGroup .widgetSettings {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.widgetGroup .addWidgetEmptySpace {
    /* transform: rotate(-45deg); */
    height: 20px;
    width: 20px;
    color: var(--secondary-text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.widgetEmptySpace {
    height: 100%;
    width: 100%;
    background-color: var(--widget-blank-color);
    color: var(--primary-text-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: 0.3s ease-in;
}
.widgetEmptySpace:hover {
    opacity: 1;
}
.widgetEmptySpace .textMessage{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    transition: 0.3s ease-in;
}
.widgetEmptySpace .textMessage:hover {
    scale: 1.1;
}
.widgetEmptySpace .textMessage .icon {
    height: 35px;
    width: 35px;
}
@media(max-width :992px){
    .flexBetween{
        justify-content: center;
    }
}
@media(max-width :576px){
    .widget{
        margin: 0px 0px 10px 0px;
    }
    .flexBetween{
        justify-content: center;
    }
}

.btn-theme{
    padding: 5px 12px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 13px;
}
.btn-theme:hover{
    border: 1px solid var(--primary-color);
}
.gradientBackground {
    height: 50px;
    border-radius: 9px;
    background: var(--gradient-colors)
}
.gradientBackgroundSettle{
    margin-top: -38px;
}
.tabularUI{
    min-height: 125px;
}
.disabled{
    background-color: #d9d9d9;
    pointer-events: none;
}
.coin {
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reward {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
    min-width: 65px;
    max-width: 65px;
}