@import url("common/variables.css");
@import url("common/common.css");
@import url("admin-panel/responsive.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.8.2/css/all.css");
@import url("https://fonts.googleapis.com/css?family=Material+Icons|Gochi+Hand|Comfortaa|Product+Sans|Material+Icons+Outlined|Material+Icons+Two+Tone|Material+Icons+Round|Material+Icons+Sharp");
/**
* Spinym official admin panel css script
* Build date : 19/06/2019
 © Franz Nkemaka, Spinym, Rigle™ */
html body {
    margin: 0px;   
    padding: 0px;
    background-color: var(--primary-dark);
    font-family: 'comfortaa';
}
p {
    color: white;
}
a {
    text-decoration: none;
}

h3 {
    font-weight: 200;
    font-size: 18px;
    color: white;
    opacity: 0.8;
}

/** Header */
.header {
    display: flex;
    margin-left: 200px;
    align-items: center;
}
.admin-avatar {   
    display: flex;
    flex-direction: row;
    margin-right: 40px;
    align-items: center;
}
.admin-avatar img {
    width: 25px;
    height: 25px;
    border-radius: 30px;
    border: 2px solid white;
    margin-right: 10px;
    display: inline-block;
}
.admin-avatar p {
    font-size: 14px;
    color: 	#A9A9A9;
}
.header-menu {
    display: none;
    position: absolute;
    background-color: var(--primary-dark);
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    z-index: 1;
}
.header a {
    color: white;
    padding: 10px;
    text-decoration: none;
}

/** Sidebar */
.sidebar  {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0; 
    padding: 0px;
    width: 200px;
    height: 100%;
    background-color: var(--secondary-dark);
}
.logo {
    margin: 30px auto 0px auto;
    display: block;
    width: 40px;
    height: 40px;
}
.sidebar-menu {
    padding: 50px 0px 0px 0px;
}
.sidebar-menu a {
    display: flex;
    align-items: center;
    margin-top: 25px;
    padding-left: 30px;
    color: white;
    opacity: 0.4;
    font-size: 16px;
}
.sidebar-menu .active {
    opacity: 1;
}
.material-icons-outlined.md-36 { 
    font-size: 28px;
    padding: 0px;
}
.sidebar-menu a i {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 17px;
}
.sidebar-menu :first-child i {
    font-size: 22px;
}
.sidebar-menu :hover {
    opacity: 1;
}
.sidebar .footer {
    display: block;
    position: absolute;
    bottom: 0;
    margin-left: 30px;
    opacity: 0.4;
    text-align: center;    
    font-family: 'Gochi Hand';
}
.sidebar .footer a { text-decoration: none; color: white; } 

/* SEARCH BAR */
.search-box {
    z-index: 1;
    position: absolute;
    margin: 3px;
    bottom: 0;
    right: 0;
    transform: translate(-5%, -5%);
    background: #222437;
    height: 40px;
    border-radius: 40px;
    padding: 10px;
}
.search-box:hover > .search-txt {
    width: 300px;
    padding: 0 6px;
}
.search-box:hover > .search-btn {
    background: white;
    color: #2f3640;
}
.search-btn {
    float: right;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2f3640;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    color: white;
    cursor: pointer;
}
.search-btn > i {
    font-size: 30px;
}
.search-txt {
    border: none;
    background: none;
    outline: none;
    float: left;
    padding: 0;
    color: white;
    font-size: 16px;
    transition: 0.4s;
    line-height: 40px;
    width: 0px;
}
.card .list-text {
    padding: 125px 50px 125px 50px;
    text-align: center;
    line-height: 30px;
    opacity: 0.6;
}
/** Content */
.main {
    margin-left: 220px; /* sidebar's width*/
}

/** Cards */
.card-style {
    background-color: var(--secondary-dark);
    border-radius: 15px;
}
.card {
    background-color: var(--secondary-dark);
    display: inline-block;
    border-radius: 15px;
    padding: 10px;
}
.card-item {
    display: flex;
    padding: 10px;
}

.card.stats {
    padding-left: 25px;
    margin: 10px;
    width: 300px;
}
.stats .title {
    margin: 0px;
    font-size: 15px;
    padding: 10px 0px 10px 0px;
}
.stats .value {
    margin: 0px;
    font-size: 35px;
    font-weight: bold;
}
.stats > i {
    display: flex; 
    justify-content: center;
    align-items: center;
    float: right;
    width: 35px;
    height: 35px;
    border-radius: 35px;
    color: white;    
}

/* DASHBOARD PAGE */
.dashboard > h3 {
    margin-left: 10px;
}
.dashboard .charts {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.chart-area {
    background-color: var(--secondary-dark);
    border-radius: 15px;
    margin-left: 10px;
    padding: 50px;
}

/* LIVE PAGE : */
.live-page {
    display: flex;
    flex: 1;
    flex-direction: row;
    justify-content: space-around;
}
.card-item .ask {
    border-left: 3px solid white;
    padding-left: 10px;
    margin-left: 25px;
    border-radius: 5px 0px 0px 5px;
}
.card-item .action {    
    padding-left: 10px;
    line-height: 0px;
}

/* USERS PAGE : */
.main .container {
    display: flex;
    flex-direction: column;
    margin: 25px;    
    margin-right: 0px;
}

.card.chart-area {
    margin: 0px;
    padding: 30px;
}
.users-page .tag {
    font-size: 13px;
    color: var(--green-color);
}
/* INSIGHTS PAGE */
.insights .grid {
    display: grid;
    padding: 10px;
}
/* APP PAGE */
.app-page {
    justify-content: center;
    align-items: center;
    padding-top: 50px;
}
.app-page .card {
    width: 40%;
    padding: 30px 35px 30px 35px;
}
.app-page .content p { text-align: center; }
.app-page h2 {
    text-align: center;
    opacity: 1;
    color: white;
    font-size: 40px;
}
p.chip-tag {
    margin-left: 10px;
    height: 20px;
    padding: 5px 10px 5px 10px;
    background-color: var(--primary-color);
    color: white;
    font-size: 18px;
    border-radius: 15px;
    display: inline;
}
.app-page .description {
    line-height: 25px;
    opacity: 0.8;
}
.app-page .stats {
    opacity: 0.9;
    line-height: 15px;
}
.app-page .stats span {
    color: var(--green-color);
}
.app-page .copyright {
    padding-top: 10px;
    opacity: 0.7;
    font-size: 12px;
    font-family: 'Gochi Hand';
}

/** USER PROFILE PAGE */
.user-large-container {
    display: flex;
    flex: 1;
    margin: 0px 20px 0px 20px; 
    flex-direction: column;
    background-color: var(--secondary-dark);
    width: 30%;
    padding: 40px 20px 15px 20px;
    border-radius: 20px;
    justify-content: space-around;
}
.user-info-container {    
    flex: 2;
    margin: 0px 20px 0px 20px; 
}
.user-info-container p.label {    
    text-align: left;
}
.user-info-container span.label {
    
    opacity: 0.7;
}

.actions-container {
    flex: 1;
    margin: 30px 20px 25px 20px;
    padding: 15px;
}

.actions-container i {
    display: flex; 
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    color: white;    
}
.actions-container span p { text-align: center; }

.user-profile .count {
    padding: 0px 15px 0px 15px;
}