﻿.dashboard {
    position: relative;
    display: flex;
    border-radius: 5px;
    margin: 5px 10px 5px 5px;
    cursor: pointer;
    width: 270px;
    align-items: center;
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),0 10px 10px -5px rgba(0, 0, 0, 0.04);
    box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);
    border-bottom-style: solid;
    border-bottom-width: 3px;
    user-select: none;
    transition: bottom 0.2s ease 0s;
    bottom: 0;
    min-width: 225px;
}

.dashboard.active {
    bottom: 10px;
}

.dashboard:hover {
    bottom: 10px;
}

.dashboard:hover .dashboard-icon div.commands {
    height: 25px;
}

.dashboard-icon {
    flex: 0 0 60px;
    height: 100%;
    place-items: center;
    display: flex;
    flex-direction: column;
    background-color: #0000000d;
    position: relative;
    overflow: hidden;
}

.dashboard-icon div.icon {
    flex: 1 1 auto;
    display: grid;
    place-items: center;
}

.dashboard-icon div.commands {
    position: absolute;
    bottom: 0;
    font-size: 15px;
    height: 0;
    transition: height 0.2s ease 0s;
}

.dashboard-icon div.commands span:first-child {
    margin-right: 6px;
}

.dashboard-icon div.icon i {
    width: 45px;
    height: 45px;
    text-align: center;
    display: grid;
    place-items: center;
    font-size: 20px;
    border-radius: 50%;
}

.dashboard-bookmark {
    position: absolute;
    top: 0;
    left: 20px;
    font-size: 24px;
}

.dashboard-data {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.dashboard-data .title {
    font-weight: bold;
    font-size: 13px;
}

.dashboard-data .description {
    font-weight: normal;
    font-size: 11px;
    padding-top: 3px;
}

.dashboard-count-container {
    display: inline-flex;
    padding-bottom: 5px;
}

.dashboard-count {
    width: 50%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.dashboard-count .count {
    font-size: 30px;
    color: white;
    text-shadow: -1px 0 1px #000, 0 1px 1px #000, 1px 0 1px #000, 0 -1px 1px #000;
}

.dashboard-count label {
    font-size: 13px;
}

