@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Merriweather';
    src: url('../fonts/Merriweather-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-roboto: 'Roboto', sans-serif;
    --font-merriweather: 'Merriweather', serif;

    --color-white: #ffffff;
    --color-night-rider: #2c2c2c;

    /*--color-rose-bud: #ffa0a0;*/
    /*--color-firebrick: #b22222;*/

    /*--color-rose-bud: #cbbde2;*/
    /*--color-firebrick: #563d7c;*/

    --color-rose-bud: #e1b8b5;
    --color-firebrick: #991108;
}

body {
    font-size: 1.1rem;
    font-family: var(--font-roboto);
}

.main-navbar {
    background-color: var(--color-firebrick);
    width: 100%;
}

.main-navbar .navbar-wrapper {
    height: 57px;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1000;
}

.navbar {
    background-color: var(--color-firebrick);
    margin: auto;
    max-width: 1200px;
    padding: 0;
}

.navbar .navbar-nav {
    flex: 1;
}

.navbar .nav-item {
    color: var(--color-rose-bud);
    font-weight: bold;
    margin-left: 1rem;
    text-shadow: 2px 2px 4px #000000;
}

.navbar .nav-item .dropdown-menu {
    background-color: var(--color-firebrick);
}

.navbar .nav-item .dropdown-menu .dropdown-item {
    color: var(--color-rose-bud);
    text-shadow: 2px 2px 4px #000000;
    font-weight: 600;
}

.navbar .nav-item .dropdown-menu .dropdown-item:hover {
    color: var(--color-firebrick);
    background-color: var(--color-rose-bud);
    text-shadow: 2px 2px 4px #666;
}

.navbar .nav-item .nav-link {
    color: var(--color-rose-bud) !important;
    font-weight: 600;
}

.navbar .nav-item.active {
    color: var(--color-rose-bud) !important;
    border-bottom: 2px solid var(--color-rose-bud);
}

.navbar .nav-item.last-nav-item {
    margin-left: auto;
}

.navbar .nav-item:hover {
    color: var(--color-white) !important;
}

.navbar .app-logo {
    display: block;
    margin-bottom: auto;
    margin-top: 6px;
    width: 120px;
}

#identityContainer {
    background-color: var(--color-white);
    display: flex;
    margin: auto;
    max-width: 1200px;
    padding: 5rem 0;
}

#identityContainer .identity-wrapper {
    display: flex;
    margin: auto;
    align-items: center;
}

#identityContainer .identity-logo {
    width: 300px;
}

#identityContainer .identity-title {
    font-family: var(--font-merriweather);
    font-size: 100px;
    font-weight: 500;
    line-height: 1.257;
}

#carouselCards {
    width: 100%;
    max-width: 100vw;
    color: var(--color-white);
    padding: 5rem 0;
    clip-path: polygon(0 0, 100% 3vw, 100% 100%, 0 calc(100% - 3vw));
    -webkit-clip-path: polygon(0 0, 100% 3vw, 100% 100%, 0 calc(100% - 3vw));
}

#carouselCards #carouselCaptions {
    margin: auto;
}

#carouselCards #carouselCaptions .carousel-caption {
    background-color: rgba(66, 66, 66, 0.5);
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border: 1px solid rgba(66, 66, 66, 0.2);
}

#carouselCards #carouselCaptions .carousel-caption h5 {
    color: var(--color-white);
    font-family: var(--font-roboto) !important;
}

#carouselCards #carouselCaptions .carousel-caption p {
    color: var(--color-white);
    font-family: var(--font-roboto) !important;
}

#carouselCards #carouselCaptions .carousel-image {
    height: 80%;
}

#fullHeader {
	display: block;
    background: var(--color-firebrick);
    color: var(--color-white);
    /*clip-path: polygon(0 0, 100% 3vw, 100% 100%, 0 100%);*/
    /*-webkit-clip-path: polygon(0 0, 100% 3vw, 100% 100%, 0 100%);*/
}

#fullHeader h2 {
    color: var(--color-rose-bud);
}

#fullHeader h3 {
    color: var(--color-rose-bud);
}

#fullHeader p {
    color: var(--color-rose-bud);
}

#header {
    max-width: 1200px;
    margin: auto;
    padding: 0 0 0 0;
}

#aboutUs {
    background-color: var(--color-white);
    color: var(--color-firebrick);
    width: 100%;
    max-width: 100vw;
    padding: 4rem 2rem;
    clip-path: polygon(0 0, 100% 3vw, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 3vw, 100% 100%, 0 100%);
}

.menu-element-large {
    border-bottom: 2px solid rgba(255, 255, 255, 0);
    font-family: 'Roboto', sans-serif;
    transition: border-bottom 0.4s;
}

.menu-element-large:hover {
    /* border-bottom: 2px solid #2c2c2c;*/
    border-bottom: 2px solid #da314b;
    cursor: pointer;
}

#menu-small {
    background: none;
}

#menu-small-ul li {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: border-bottom 0.4s;
}

#menu-small-ul li:hover {
    background-color: transparent;
    border-bottom: 1px solid white;
}

#menu-small-ul a {
    background-color: transparent;
    color: white;
}

.menu-element-small:hover {
    background-color: red;
}

.header-part-1 {
    color: white;
    padding-right: 20px;
    padding-left: 40px;
    /*padding-top: 30px;*/
    padding-top: 10px;
}

.header-part-1 h2, h3, p {
    color: white;
}

.header-part-2 {
    height: 490px;
    padding-left: 10px;
    padding-right: 10px;
}

#slideshow {
    position: relative;
    height: 490px;
}

#slideshow img {
    height: 570px;
}

#slideshow > div {
    position: absolute;
}

.front-panel {
    -webkit-border-image: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(44, 44, 44, 0.2)), to(rgba(0, 0, 0, 0))) 1 100%;
    -webkit-border-image: -webkit-linear-gradient(rgba(44, 44, 44, 0.2), rgba(0, 0, 0, 0)) 1 100%;
    -moz-border-image: -moz-linear-gradient(rgba(44, 44, 44, 0.2), rgba(0, 0, 0, 0)) 1 100%;
    -o-border-image: -o-linear-gradient(rgba(44, 44, 44, 0.2), rgba(0, 0, 0, 0)) 1 100%;
    border-image: linear-gradient(to bottom, rgba(44, 44, 44, 0.2), rgba(0, 0, 0, 0)) 1 100%;

    border-color: rgba(44, 44, 44, 0.2);
    border-style: solid;
    border-right: none;
    border-top: none;
    border-width: 1px;

    margin-right: 5px;
    margin-top: 20px;
}

.front-panel h3 {
    text-align: center;
}

.front-panel img {
    max-height: 150px;
    margin-left: 10px;
}

.front-panel p {
    color: black;
}

.hr-left {
    border: 0;
    height: 1px;
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 1), rgba(88, 88, 88, 1), rgba(255, 255, 255, 0.8));
    background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 1), rgba(88, 88, 88, 1), rgba(255, 255, 255, 0.8));
    background-image: -ms-linear-gradient(left, rgba(0, 0, 0, 1), rgba(88, 88, 88, 1), rgba(255, 255, 255, 0.8));
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 1), rgba(88, 88, 88, 1), rgba(255, 255, 255, 0.8));
    text-align: center;
}

.section {
    padding-top: 30px;
    padding-bottom: 15px;
}

.section h1 {
    color: black;
    padding-top: 10px;
}

.section h1, h2, h3, p {
    color: black;
}

.step {
    /*border-right: 1px solid rgba(44,44,44,0.2);*/
    margin-top: 20px;
    padding-top: 5px;
    padding-bottom: 10px;
}

#Kako-poceti {
    padding-bottom: 30px;
}

#Kontakt {
    text-align: center;
    background-color: var(--color-white);
    color: var(--color-firebrick);
    width: 100%;
    max-width: 100vw;
    padding: 4rem 2rem;
    clip-path: polygon(0 0, 100% 3vw, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 3vw, 100% 100%, 0 100%);
}

#Kontakt h2 {
    color: var(--color-firebrick);
}

#Kontakt p {
    color: var(--color-firebrick);
}

#log-in-modal div {

}

#log-in-modal input {
    margin-top: 10px;
}

#log-in-modal button {
    margin-top: 10px;
}

#log-in-modal .uk-modal-dialog {
    margin-top: 100px;
} 

.password-tip {
    cursor: pointer;
}

.password-tip:hover {
    cursor: pointer;
}


@media screen and (max-width: 767px) {
    .front-panel {
        border: none;
    }
}

@media screen and (max-width: 959px) {
    #fullHeader {
        background-image: url(../images/newLogo/logo_black.png);
        background-size: cover;
    }
}


/* USER CSS */

.activeMenuItem {
    border-bottom: 2px solid rgba(255, 0, 0, 0.3);
}

.referal-li {
    padding-left: 5px;
    padding-right: 5px;
}

.level {
    margin-bottom: 20px;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Chrome/Safari/Opera */
    -khtml-user-select: none; /* Konqueror */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently */
}

.noselect:hover {
    cursor: default;
}

.close {
    color: #da314b;
    transition: color 0.3s;
    float: right;
}

.close:hover {
    cursor: pointer;
    color: red;
}

.pageArrow {
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    transition: font-size 0.1s;
}

.pageArrow:hover {
    cursor: pointer;
    font-size: 120%;
}

#voucher {
    min-height: 200px;
    background-color: #da314b;
    color: white;
}

#voucher span {
    padding-top: 5px;
    min-height: 35px;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.2);

    vertical-align: middle;
}

.regLogAccordion {
    background-color: #da314b;
    color: white;
}

.regLogAccordion:hover {
    background-color: #e4354f;
    cursor: pointer;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Chrome/Safari/Opera */
    -khtml-user-select: none; /* Konqueror */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
}

#profile div {
    padding-bottom: 5px;
    padding-top: 5px;
}

.hr-profile {
    border: 0;
    height: 1px;
    background-image: -webkit-linear-gradient(left, #e4354f, #e4354f, rgba(255, 255, 255, 0.8));
    background-image: -moz-linear-gradient(left, #e4354f, #e4354f, rgba(255, 255, 255, 0.8));
    background-image: -ms-linear-gradient(left, #e4354f, #e4354f, rgba(255, 255, 255, 0.8));
    background-image: -o-linear-gradient(left, #e4354f, #e4354f, rgba(255, 255, 255, 0.8));
    text-align: center;
}

#changeDiv {
    margin-top: 20px;
    /*border: 1px solid #e4354f;*/
}

#changeDiv input {
    margin-top: 5px;
    margin-bottom: 5px;
}

.changeUserInfo {
    color: #da314b;
}

.changeUserInfo:hover {
    cursor: pointer;
}

#proizvodi, #plan_nagradjivanja {
    margin: auto;
    max-width: 1200px;
}

#proizvodi img {
    display: block;
    margin: 20px auto;
}

#proizvodi p {
    color: #FEF2CD;
    background-color: #2A2C29;
    padding: 2rem;
    text-align: center;
    font-size: 30px;
    line-height: 30px;
}

#plan_nagradjivanja img {
    display: block;
    margin: 20px auto;
}

#plan_nagradjivanja p {
    color: #FEF2CD;
    background-color: #2A2C29;
    padding: 2rem;
    margin: 0;
    text-align: center;
    font-size: 40px;
    line-height: 40px;
    text-transform: uppercase;
}

#plan_nagradjivanja strong {
    color: #FEF2CD;
    background-color: #2A2C29;
    padding: 1rem;
    text-align: center;
    font-size: 20px;
    line-height: 20px;
}

#proizvodi .hidden {
    display: none;
}

#proizvodi .active {
    display: block;
}

@media (max-width: 375px) {
    #identityContainer .identity-logo {
        width: 50px;
    }

    #identityContainer .identity-title {
        font-size: 40px;
    }

    #carouselCards {
        padding-bottom: 1rem;
        padding-top: 1rem;
    }
}
