.informations {
    width: 70%;
    display: flex;
    flex-direction: column;
    margin: 0 auto 20px auto;
}

.informationCont {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 10px;
    border-right: 3px solid #f93839;
}

.information {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-bottom: 25px;
    border-left: 3px solid #f93839;
    padding: 0px 20px 0 15px;
}

.informationLeft {
    width: 70%;
}

.informationRight {
    position: relative;
    width: 30%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.circle {
    position: absolute;
    right: -29px;
    width: 15px;
    height: 15px;
    border: 3px solid #f93839;
    background-color: #fff;
    border-radius: 50%;
    z-index: 2;
}

.informationTitle {
    /* text-decoration: underline; */
    color: #000;
}

.informationTitle h3 {
    font-size: calc(0.8rem + 0.8vw);
    font-weight: 500;
    margin-bottom: 5px;
}

.informationDate {
    font-size: 14px;
    font-weight: 500;
    color: #000000a6;
}

.infomationDetails {
    padding-left: 5px;
    color: #000000a6;
    text-decoration: underline;
}

.arhivaObavestenja{
    font-size: 16px;
    text-decoration: underline;
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

/* ---------- admin panel vertical-------------- */

.vertical.informationCont {
    flex-direction: column;
    border-right: none;
}

.vertical .informations {
    width: 90%;
}

.vertical .informationTitle h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.vertical .information {
    flex-direction: column;
}

.vertical .informationLeft {
    width: 100%;
}

.vertical .informationRight {
    justify-content: flex-start;
}

.vertical .circle {
    display: none;
}

/* Extra large devices (large laptops and desktops, 1200px) */
@media only screen and (max-width: 1200px) {
    .informations {
        width: 80%;
    }
}

/* Large devices (laptops/desktops, 992px) */
@media only screen and (max-width: 992px) {
    .informations {
        width: 90%;
    }
}

/* Medium devices (landscape tablets, 768pxp) */
@media only screen and (max-width: 768px) {
    .informationCont {
        flex-direction: column;
        border-right: 0px solid #f93839;
    }

    .information {
        flex-direction: column;
    }

    .informationLeft {
        width: 100%;
    }

    .informationRight {
        justify-content: flex-start;
    }

    .circle {
        display: none;
    }
}

/* Small devices (portrait tablets and large phones, 600px) */
@media only screen and (max-width: 600px) {}