h2 {
    font-size: 50px;
    font-weight: normal;
    margin-bottom: 20px !important;
}

#NaVrhStranice {
    position: fixed;
    width: 40px;
    height: 40px;
    background-image: url("../images/opsti/vrh-stranice.svg");
    background-size: cover;
    cursor: pointer;
    transition: 0.3s;
    bottom: -50px;
    right: 10px;
    z-index: 300;
    padding: 3px;
    transition: .3s;
    opacity: 0.8;
    background-color: black;
}

#NaVrhStranice.PrikaziNaVrh {
    bottom: 10px !important;
}

#NaVrhStranice:hover {
    opacity: 1;
}

#GDPR {
    position: fixed;
    left: 0;
    bottom: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    align-items: center;
    background-color: var(--zutaSvetla);
    padding: 10px;
    font-size: 12px;
    width: 100%;
    box-shadow: -1px -5px 5px 0px rgba(90, 90, 90, 1);
    transition: all .3s;
    transform: translateY(250px);
    z-index: 99;
}

.GDPRVidljiv {
    transform: translateY(0px) !important;
}

#GDPR p {
    margin: 0 10px 0 0;
    text-align: center;
    line-height: 170%;
}

#GDPR img {
    width: 25px;
    height: 25px;
    margin-bottom: 5px;
}

#GDPR p span {
    font-size: 14px;
}

#GDPROK {
    color: black;
    padding: 8px 16px;
    text-align: center;
    margin-top: 10px;
    width: 150px;
    cursor: pointer;
    background-color: var(--zuta);
    transition: all .3s;
    padding: 10px 25px;
    border-radius: 3px;
    font-size: 14px;
}

#GDPROK:hover {
    opacity: .75;
}


/* MAIN MENU */


#SkriveniMeni {
    display: flex;
    flex-direction: column;
}

#MainMenuBloker {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
    background-color: rgb(0, 0, 0, .5);
    overflow: auto;
    z-index: 1000;
}

#MainMenuBloker.MainMenuVidljiv {
    display: flex;
}

#MainMenu {
    background-color: white;
    min-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateX(-100%);
    transition: all .2s;
}

#MainMenu.MainMenuVidljiv {
    transform: translateX(0%) !important;
}

#MainMenu img {
    width: 120px;
    align-self: center;
    margin: 25px 0;
}

#MainMenuZaglavlje {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: var(--sivaSvetla);
    height: 40px;
    padding: 30px 25px;
}

#MainMenuZaglavlje img {
    width: 15px;
    height: 15px;
    transition: all .3s;
    cursor: pointer;
}

#MainMenuZaglavlje img:hover {
    transform: rotate(180deg);
}

nav {
    display: flex;
    flex-direction: column;
    width: 100%;
}

nav a {
    width: 100%;
    padding: 25px;
    background-color: var(--zuta);
    text-decoration: none;
    color: black;
    text-transform: uppercase;
    border-bottom: 1px white solid;
    text-align: center;
    letter-spacing: 1px;
}

nav a:hover {
    background-color: var(--zutaSvetla);
}

#MainMenuJezici {
    background-color: var(--sivaSvetla);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}

#MainMenuJezici a {
    text-decoration: none;
    padding: 20px;
    color: black;
}

#MainMenuJezici a.MainMenuNeaktivanLink {
    color: gray;
    pointer-events: none;
}


#DTScrollTribar {
    position: fixed;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background-color: black;
    background-image: url("../images/opsti/tribar-beli.svg");
    background-size: 100% 100%;
    opacity: .7;
    transition: all .3s;
    transform: translateY(-60px);
    cursor: pointer;
}

#DTScrollTribar.Vidljiv {
    transform: translateY(0px) !important;
}

#DTScrollTribar:hover {
    opacity: 1;
}


@media screen and (max-width: 1023px) {
    #MainMenu {
        min-width: 100%;
    }

    #DTScrollTribar {
        left: unset;
        right: 0;
        width: 45px;
        height: 45px;
        opacity: 1;
    }
}