*{
    direction: ltr;
    font-family: 'Roboto', sans-serif;
}
#statistics, #statistics *{
    box-sizing: border-box;
}

#statistics{
    margin: 20px calc(95% - 250px) 10px;
    height: 130px;
    box-shadow: 0 0.25rem 0.5rem #0003;
    background: #31373d;
    border-radius: 5px;
    width: 250px;
}

#statistics > div:first-child{
    background: white;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #31373d;
    font-size: 13px;
    font-weight: 900;
}

#statistics > div:last-child{
    font-size: 10px;
    font-weight: 500;
    padding: 10px;
    color: #ffffff;
}

#statistics > div .row{
    display: flex;
    line-height: 15px;
}

#statistics > div .row > div:first-child{
    font-weight: 600;
    width: 50%;
    padding-right: 10px;
    text-align: right;
}
#statistics > div .row > div:last-child{
    font-weight: 600;
    flex: 1;
    padding-left: 10px;
    text-align: left;
    border-left: 2px solid rgb(254 254 254 / 56%) !important;
}

#statistics > div .row.red {
    color: #ed6300;
}
#statistics > div .row.green {
    color: #3bc117;
}
#statistics > div .row.yellow {
    color: #f6c722;
}

.top, .top *{
    box-sizing: border-box;
}

.top{
    width: 90%;
    margin: 20px auto 10px;
    height: 60px;
    box-shadow: 0 0 0.5rem #0003;
    background: #fff;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 40px;
    padding-left: 40px;
}

button{
    background: #0D47A1;
    color: #fff;
    padding: 5px 20px;
    border: 0;
    border-radius: 3px;
    cursor: pointer;
    font-size: 15px;
    text-align: center;
}

 button:not(:disabled):hover{
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    opacity: 0.9;
}

 button:disabled{
    cursor: progress !important;
    background: rgb(45 48 53 / 69%);
}

button i{
    margin-right: 10px;
}

 button:is(:disabled) #ld{
    display: none !important;
}

 button:not(:disabled) i, button:not(:disabled) #nl{
    display: none;
}

.top label{
    cursor: pointer;
}

.top > div:first-child{
    display: flex;
    gap: 20px;
}



.trendBox {
    --7h9g04: #f5f6fa;
    --whdmoy: #31373d;
    z-index: 1;
    left: 0;
    top: 0;
    min-width: 12.5rem;
    min-height: 12.5rem;
    border-radius: 5px;
    background-color: var(--whdmoy);
    box-shadow: 0 0.25rem 0.5rem #0003;
    width: 90%;
    margin: 10px auto;
    position: relative;
    direction: rtl;
}
.tooltip{
    display: none;
    position: absolute;
    background: transparent;
    z-index: 30;
}
.tooltip > div:not(.div){
    position: absolute;
    z-index: 10;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 10px;
    color: rgb(255 255 255 / 58%);
}
.tooltip > div:not(.div) span:first-child{
    font-weight: bold;
}

.tooltip > div:not(.div) span:last-child{
    font-size: 8px;
}


.tooltip > .div{
    position: relative;
    background: #f07d7d;
    height: 30px;
    min-width: 100px;
    box-shadow: 0 0 10px 1px rgb(0 0 0 / 15%);
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tooltip > .div:before,
.tooltip > .div:after {
    content: "";
    position: absolute;
    height: 40px;
    width: 20px;
    bottom: -40px;
    background-color: transparent;
    box-shadow: 0 -20px 0 0 #f07d7d;
    z-index: 0;
}

.tooltip > .div:before {
    border-top-right-radius: 20px;
    left: 30px;
}

.tooltip > .div:after {
    border-top-left-radius: 20px;
    left: 50px;
}

@media screen and (max-width: 768px) {
    max-width: 100%;
}

.dots {
    background: #31373d;
    width: 100%;
    display: flex;
    margin-bottom: 1rem;
    height: 400px;
    direction: rtl;
}

.dots {
    --size: 2px;
    background-image: linear-gradient(#2d3035 var(--size), transparent var(--size)),
    linear-gradient(90deg, #2d3035 var(--size), transparent var(--size));
    background-size: 30px 30px;
}

.dots > div{
    display: flex;
    flex-direction: column;
    width: 30px;
    max-width: 30px;
    align-items: center;
}

.dot{
 /*   background: #2d3035;*/
    position: relative;
    /*border-right: .125rem;*/
    width: 28px;
    height: 28px;
    background: transparent;
    margin-top: 2px;
}


.dot:after {
    content: "";
    position: absolute;
    left: 15%;
    top: 15%;
    width: 70%;
    height: 70%;
    border-radius: 50%;
}

.dot:before {
    content: "";
    display: block;
    padding-top: 100%;
}

.dot.red:after {
    background-color: #ed6300;
}
.dot.green:after {
    background-color: #3bc117;
}
.dot.yellow:after {
    background-color: #f6c722;
}
