﻿
.dashboard-wrapper-container{
    width:100%;
    height:100%;
    margin-top: 115px;
}

.dashboard-main-container{
    width:100%;
    max-width: 960px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    display:grid;
    padding: 15px;
    gap: 15px;
}

.dashboard-top-card-cont{
    width:100%;
    height:100%;
    display:grid;
    gap: 15px;
}

.dashboard-card {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: 1fr 45px;
    padding: 15px;
    border: 1px groove #DCDCDC;
    border-radius: 10px;
    cursor: pointer;
   /* box-shadow: 0px 0px 19px -142px rgba(220,220,220,0.37);*/
}

.dashboard-top-cont{
    width:100%;
    height:100%;
    display:grid;
    grid-template-rows: 25px 1fr;
    align-items: center;
}

.dashboard-menu-btn{
    width:100%;
    height:100%;
    display:flex;
    align-items: center;
    justify-content: end;
}

.dashboard-menu-btn svg{
    height: 15px;
    fill: #808080;
}

.dashboard-top-icon-cont{
    width:100%;
    height:100%;
    display:grid;
    grid-template-columns: 45px 1fr;
    gap: 15px;
    align-items: center;
    padding: 0 15px;
}

.dashboard-top-icon-cont i{
    width:100%;
    height:45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    border-radius: 50%;
}

.dashboard-top-icon-cont i svg{
    height: 18px;
    fill: #000;
}

.dashboard-top-details{
    width:100%;
    height:100%;
    display:flex;
    flex-direction: column;
    justify-content: start;
}

.dashboard-top-details b{
    color: #000;
    font-weight: 600;
    font-size: 18px;
    margin-top: 5px;
}

.dashboard-top-details small{
    color: #808080;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
}

.dashboard-bottom-blue-border {
    border-bottom: 5px solid #00008B;
}

.dashboard-bottom-green-border {
    border-bottom: 5px solid #008000;
}

.dashboard-bottom-red-border {
    border-bottom: 5px solid #B22222;
}

.dashboard-bottom-yellow-border {
    border-bottom: 5px solid #FFB606;
}

.dashboard-bottom-cont{
    width:200px;
    display:flex;
    align-items: center;
}

.dashboard-bottom-cont span{
   font-size: 12px;
   color: #808080;
   font-weight: 500;
   text-transform: capitalize;
}

.dashboard-main-content{
    width:100%;
    height:100%;
    display:grid;
    gap: 10px;
}

.dashboard-graph-container{
    width:100%;
    height:500px;
    display:grid;
    grid-template-rows: 1fr 85px;
    border: 1px groove #DCDCDC;
    border-radius: 10px;
}

.dashboard-graph-wrapper{
    width:100%;
    height:100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: space-evenly;
}

.dashboard-graph-label{
    width:100%;
    height:100%;
    border-top: 1px groove #DCDCDC;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 25px;
    padding: 10px 25px;
    align-items: center;
}

.dashboard-graph-label-item {
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: column;
    border: 1px solid #d5d5d5;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
    .dashboard-graph-label-item.active {
        border: 3px solid #FFB606;
    }

.dashboard-graph-label-item span {
    font-size: 10px;
    color: #808080;
}

.dashboard-graph-label-item b{
    font-size: 11px;
    color: #808080;
    font-weight: 600;
}

.dashboard-bottom-right-container {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    border: 1px groove #DCDCDC;
    display: grid;
    grid-template-rows: 1fr 2fr;
    background-color: #FFB606;
    overflow: hidden;
}

.dashboard-bottom-right-top-cont {
    width: 100%;
    height: 100%;
    background-color: transparent;
    position: relative;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.dashboard-top-sales-absolute{
    width:150px;
    height:auto;
    top: 15%;
    left: 10%;
    z-index: 1;
    display:flex;
    flex-direction: column;
    /*position: absolute;*/
}

.dashboard-top-sales-absolute span{
    color: #fff;
    font-size: 25px;
    font-weight: 600;
}

.dashboard-top-sales-absolute small{
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.dashboard-bottom-right-bottom-cont{
    width:100%;
    height:100%;
    background-color: #fff;
    padding: 10px;
}

.dashboard-graph-wrapper canvas {
   /* width: 100% !important;
    height: 100% !important;*/
    padding: 15px;
}
.dashboard-bottom-right-bottom-cont-title {
    font-size: 18px;
}

.dashboard-bottom-right-bottom-cont ul {
    list-style-type: none;
}

.dashboard-bottom-right-bottom-cont ul li {
    font-size: 14px;
}

    .dashboard-bottom-right-bottom-cont ul li a {
        text-decoration: none;
        border-bottom: 1px solid #e7e7e7;
        display: block;
        padding: 7px 0;
    }

.dashboard-bottom-right-bottom-cont ul li a span {
    display: block;
    font-weight: 600;
}

.dashboard-graph-filter-container {
    display: flex;
    gap: 10px;
    width: 100%;
    padding: 10px;
}
.dashboard-graph-filter-input-group label {
    font-size: 13px;
    display: block;
    font-weight: 600;
}
.dashboard-graph-filter-input-group input {
    border: 1px solid #d5d5d5;
    padding: 7px;
    width: 100%;
    border-radius: 10px;
    outline: none;
}
.dashboard-graph-filter-input-group {
    width: 100%;
}


/*media query*/
/*desktop*/
@media only screen and (min-width: 1025px) {
    .dashboard-main-container {
        grid-template-rows: 150px 1fr;
    }

    .dashboard-top-card-cont {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .dashboard-main-content {
        grid-template-columns: 1fr 300px;
    }
}

/*mobile*/
@media only screen and (max-width: 767px){
    .dashboard-main-container {
        grid-template-rows: 1fr;
    }

    .dashboard-top-card-cont {
        grid-template-rows: 1fr 1fr 1fr;
    }

    .dashboard-main-content {
        grid-template-rows: 1fr 1fr;
    }
    .dashboard-graph-filter-container {
        flex-direction: column;
    }
    .dashboard-graph-label {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .dashboard-graph-container {
        height: auto;
        grid-template-rows: 1fr auto;
    }

}

/*ipad*/
@media only screen and (min-width: 768px) and (max-width: 1024px){

}