#PodnozjeKontejner {
    background-color: #888888;
    padding: 20px 0;
    border-top: 3px solid #595959;
}

#PodnozjeSadrzaj {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    color: whitesmoke;
}

#PodnozjeSadrzaj img {
    transition: all .3s;
}

#PodnozjeSadrzaj img:hover {
    transform: scale(1.1,1.1);
    filter: grayscale(0%);
}

/* Copyright */

#PodnozjeCopyright {
    display: flex;
    align-items: flex-start;
    text-align: left;
    font-size: 14px;
    width: 500px;
    color: white;
    order: 1;
}

#PodnozjeCopyright img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

#PodnozjeCopyright div {
    display: flex;
    flex-direction: column;
}

#PodnozjeCopyright div span:last-of-type {
    font-size: 12px;
    margin-top: 10px;
}


/* Drustvene mreze */

#PodnozjeDM {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
    order: 2;
    font-size: 13px;
    justify-content: flex-start;
}

#PodnozjeDM div {
    display: flex;
    width: 100%;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 5px;
}

#PodnozjeDM img {
    width: 25px;
    height: 25px;
}


/* Share */

#PodnozjePodela {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    order: 3;
    font-size: 13px;
    justify-content: flex-start;
    cursor: pointer;
}

#PodnozjePodela img {
    width: 35px;
    height: 35px;
}

/* Kontakt */

#PodnozjeKontakt {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    order: 4;    
    font-size: 13px;
    justify-content: flex-start;
}

#PodnozjeKontakt img {
    width: 50px;
    height: 50px;
}


@media screen and  (max-width: 1000px) { /* Pametni telefoni */

    #PodnozjeKontejner {
        padding: 0;
        border-top-width: 0;
    }

    /* Copyright */

    #PodnozjeCopyright {
        width: 100%;
        order: 4;
        justify-content: center;
        padding: 10px 0;
        background-color: #404040;
        font-size: 12px;
    }


    /* Drustvene mreze */

    #PodnozjeDM {
        width: 100%;
        order: 2;
        flex-direction: row;
        border-bottom: 1px solid #b2b2b2;
        height: 50px;
    }

    #PodnozjeDM img {
        width: 25px;
        height: 25px;
    }

    #PodnozjeDM span {
        width: 50%;
        padding-right: 30px;
        text-align: right;
        font-size: 14px;
    }

    #PodnozjeDM div {
        width: 50%;
        justify-content: space-between;
        padding-right: 30px;
        padding-left: 5px;
    }

    /* Share*/

    #PodnozjePodela {
        width: 100%;
        order: 3;
        flex-direction: row;
        height: 50px;
    }

    #PodnozjePodela span {
        width: 50%;
        text-align: right;
        padding-right: 30px;
        font-size: 14px;
    }

    #PodnozjePodela img {
        width: 35px;
        height: 35px;
    }


    /* Kontakt */

    #PodnozjeKontakt {
        width: 100%;
        order: 1;
        flex-direction: row;
        border-bottom: 1px solid #b2b2b2;
        height: 50px;
    }

    #PodnozjeKontakt span {
        width: 50%;
        padding-right: 30px;
        font-size: 14px;
        text-align: right;
    }

    #PodnozjeKontakt img {
        width: 45px;
        height: 45px;
    }

}


@media screen and  (max-width: 1000px) and (orientation: landscape) { /* Pametni telefoni */
    #PodnozjeDM div {
        padding-right: 100px;
    }   
}