﻿.projectbox {
    margin-bottom: 20px;
}

    .projectbox .title {
        font-family: Poppins700;
        font-size: 12px;
        text-transform: uppercase;
        color: #000000;
        margin-top: 5px;
    }

    .projectbox .item-container {
        background-color: #fff;
        padding: 7px;
        cursor: pointer;
    }

        .projectbox .item-container .item {
            font-family: Poppins400;
            font-size: 11px;
            color: #11181C;
        }

.project-item-container {
    background-color: #F8F9FA;
    padding: 10px;
    padding-right: 10px;
    height: auto; /*calc(100vh - 900px);*/
    overflow-y: scroll;
    display: block;
}

    .project-item-container::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }

    .project-item-container::-webkit-scrollbar-track {
        background: transparent;
    }

    .project-item-container::-webkit-scrollbar-thumb {
        background-color: #ccc;
        border-radius: 20px;
        border: 1px solid transparent;
    }

    .project-item-container .project-item {
        border-bottom: solid 1px #ddd;
        padding: 5px;
        cursor: pointer;
        font-family: Poppins400;
        font-size: 11px;
        color: #11181C;
    }

/*@media (max-width: 1199px) {
    .project-item-container {
        height: auto;
    }
}
*/