/* Functionality */
input[type="checkbox"] {
    display: none;
}

label {
    display: block;
    cursor: pointer;
    border-bottom: none;
    margin-right: 10rem;
}


label:hover {
    font-weight: var(--font-weight-bold);
}

input[type="checkbox"]~ul {
    height: 0;
    transform: scaleY(0);
}

input[type="checkbox"]:checked~ul {
    height: 100%;
    transform-origin: top;
    transition: transform .2s ease-out;
    transform: scaleY(1);
}

/* fanciness */
ul {
    list-style: none;
}

ul ul {
    margin: 10px 0 10px 0;
}

ul ul li{
    margin: 5px 0 5px 0;
}


ul ul li:hover {
    font-weight: var(--font-weight-bold);
}

ul ul li:hover svg {
    display: inline-block;
}

ul ul li svg {
    display: none;
}

.triangle-label {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

/* .triangle {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid var(--black);
    border-radius: 3px;
} */

.triangle-label:hover .triangle {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;  
    border-top: 8px solid var(--black);
    border-radius: 3px;
}

.bottom-row {
    margin-top: 70px;
}

aside {
    width: 250px;
}

main {
    margin-left: 100px;
}

.column.margin-bottom {
    margin-bottom: 70px;
}

.label {

    background: rgba(217, 217, 217, 0.2);
    /* width: 75px;
    height: 27px;
    position: absolute;
    top: 0;
    left: 13px; */
    padding: 3px 14px 3px 14px;
    
}


.label p{

    font-family: var(--font-primary);
    font-style: normal;
    font-weight: var(--font-weight-regular);
    font-size: 12px;
    line-height: 18px;
    color: #1E1E1E;

}


/*Responsive*/
@media only screen and (max-width: 1290px) and (min-width: 900px){
    main {
        margin-top: 50px;
        margin-left: 0 !important;
    }
}

@media only screen and (max-width: 900px) {

    main {
        margin-top: 100px;
        margin-left: 0 !important;
    }

    .custom-width {
        width: 90% !important;
        height: 300px !important;
    }

    .column.margin-bottom {
        margin-bottom: 50px !important;
    }

    .custom-align {
        top: 10px !important;
        left: 10px !important;
    }

    
}

  
