html, body {
    overflow-x: hidden;
    background: var(--blue-lighter);
}

section {
    padding: 50px 0;
}

#mainNav {
    background: var(--blue-lighter);
}

#mainNav.bg {
    transition: .6s ease-in;
    padding: 0;
    box-shadow: 0 4px 15px rgb(0 0 0 / 6%);
}

.placeholder {
    min-height: 150px;
    border-radius: 20px;
}

#updatesList {
    padding-left: 40px;
    border-left: 1px solid #cfcfcf;
    margin-left: 15px;
}

#updatesList .item {
    text-decoration: none;
    color: var(--black-dark);
    display: block;
    margin-top: 30px;
    margin-bottom: 50px;
}

#updatesList .item .date {
    background: var(--blue);
    color: var(--white);
    padding: 7px 10px;
    border-radius: 6px;
    position: relative;
    z-index: 10;
}

#updatesList .item .date::before {
    content: ' ';
    width: 24px;
    height: 24px;
    background: var(--blue);
    border-radius: 3px;
    position: absolute;
    transform: rotate(45deg);
    left: -9px;
    top: 5px;
    z-index: -1;
}

#updatesList .item .date .icon {
    background: var(--blue) url(/assets/img/icons/calendar.png);
    width: 36px;
    height: 36px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 45%;
    border-radius: 100px;
    display: block;
    position: absolute;
    left: -60px;
    top: 0;
}

#updatesList .item .version {
    font-weight: bold;
    margin-left: 10px;
}

.changelog-single .content,
#updatesList .item .content {
    margin-top: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
}

#updatesList .item:hover .content {
    background: var(--green-lighter);
}

.changelog-single .badge,
#updatesList .item .content .badge {
    margin-right: 10px;
    height: 20px;
    min-width: 75px;
}

#updatesList .item .content p,
.changelog-single .content p
{
    display: flex;
}

footer a {
    color: var(--white);
    text-decoration: none;
}

#updatesList .item .content img,
.changelog-single .content img
{
    max-width: 100% !important;
    height: unset;
    border-radius: 10px;
}

.unpublished {
    background: var(--orange-light) !important;
}

/* RESPONSIVE */


/*Large Devices*/
@media (min-width: 991px) {


}

/*Desktop Devices*/
@media (min-width: 1200px) {

}

/*Extra extra large Devices*/
@media (min-width: 1400px) {

}
