.project-boxes {
    width: 100%;
    height: 100%;
}
.chart-container{
    min-height: 40vh;
    width: 100%;
}
.project-boxes.jsGridView .project-box-wrapper {
    width: 50%;
    min-width: 280px;
}
.help-active {
    font-size: 17px;
    cursor: pointer;
    position: relative;
}

.help-active::after {
    font-size: 14px;
    content: "Login within 7 days";
    position: absolute;
    background-color: rgba(25, 25, 25, 0.1);
    width: max-content;
    display: inline-block;
    opacity: 0;
    transition: .5s;
    padding: 10px;
    border-radius: 5px;
    transition-delay: .1s;
    transform: translate(-30px, 20px);
}
.help-active:hover:after,
.help-active:active:after,
.help-active:focus:after {
    opacity: 1;
}
