#DijalogBloker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(150,150,150,.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.Dijalog {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    width: 550px;
    border: 3px var(--zuta) solid;
    border-radius: 5px;
}

.Zatvori {
    align-self: flex-end;
    width: 20px;
    height: 20px;
    background-image: url("../images/zatvori.svg");
    background-size: cover;
    cursor: pointer;
    transition: all .3s;
    margin: 15px 15px 0 0;
}

.Zatvori:hover {
    transform: rotate(180deg);
}

.Naslov {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 30px;
    width: 100%;
}

.Naslov span:first-of-type {
    color: var(--sivaTamna);
    font-size: 20px;
    margin-bottom: 5px;
}

.Poruka {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
}

#DijalogPozovi .Poruka a {
    width: 85px;
    height: 85px;
    margin: 15px;
}

#DijalogPodeli .Poruka a {
    width: 60px;
    height: 60px;
    margin: 10px;
}

.Poruka a img {
    width: 100%;
    height: 100%;
    transition: all .3s;
}

.Poruka a img:hover {
    transform: scale(1.05,1.05);
}

.SakrivenDijalog {
    display: none !important;
}

#DijalogDrustveniMediji .Naslov span {
    text-align: center;
    width: 100%;
    color: black;
}

#DijalogDrustveniMediji .Poruka img {
    margin: 10px;
} 


@media screen and (max-width: 1023px) {
    .Dijalog {
        width: 90%;
        max-width: 550px;
    }

    .Poruka {
        padding: 0 20px;
        flex-wrap: wrap;
    }
}
