:root {

    --primary: hsl(224, 66%, 36%);
    --dark-primary: hsl(224, 66%, 26%);
    --light-primary: hsl(224, 66%, 46%);
    --light-gray: #F3F3F3;
    --dark-text: #231F20;
    --mid-text: #707070;
    --light-text: #B6B6B6;
    --red: #B80C09;
    --purple: #7168ae;
    --white: #fff;

    --button-shadow: 1px 3px 6px 0px rgba(0, 0, 0, 0.15);
    --container-shadow: 1px 3px 6px 0px rgba(0, 0, 0, 0.15);

    --border: 1px solid #cccccc;
    --border-radius: 4px;

    --font-family: 'Poppins';

    --text-size: 14px;
    --headline-size: 18px;
    --button-font-size: 18px;

    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
}


@font-face {
    font-family: Magnolia;
    src: url('../fonts/Magnolia-script.woff');

}

body {
    background-color: var(--white);
    font-family: 'Poppins' !important;
    overflow-x: hidden;

}

#app {
    overflow-x: hidden;
}

.mt-0 {
    margin-top: 0;
}

.mb-15 {
    margin-bottom: 15px;
}

.mt-30 {
    margin-top: 30px;
}


.dark-bg {
    background-color: var(--primary);
}

.white-text {
    color: var(--white);
}

.small-span {
    font-size: 12px;
}


.big-span {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: bold;
}

a {

    text-decoration: none;
}

.container {
    max-width: 1440px;
}

.logo-login {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.logo img {
    margin-left: auto;
    margin-right: auto;
    max-width: 200px;
}

.login-container,
.password-container {
    background-color: var(--light-gray);
    -webkit-box-shadow: var(--container-shadow);
    -moz-box-shadow: var(--container-shadow);
    box-shadow: var(--container-shadow);
    max-width: 360px;
    margin: 10px;
    margin-top: 25px;
    margin-left: auto;
    margin-right: auto;
    padding: 15px;
    border-radius: 20px;
}

.row {
    margin-top: 20px;
}

.margin-0 {
    margin: 0;
}

.margin-top {
    margin-top: 30px;
}

.margin-bottom-30 {
    margin-top: 30px;
}


.padding-left-0 {
    padding-left: 0px;
}

.padding-left-5 {
    padding-left: 5px;
}

.padding-right-0 {
    padding-right: 0px;
}

.padding-right-5 {
    padding-right: 5px;
}

.padding-top-5 {
    padding-top: 5px;
}

.padding-bottom-5 {
    padding-bottom: 5px;
}

.pt-10 {
    padding-top: 10px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pt-5 {
    padding-top: 5px !important;
}

.pb-5 {
    padding-bottom: 5px !important;
}

.no-padding,
.padding-0 {
    padding: 0;
}

.material-icons {
    font-family: 'Material Icons' !important;
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -moz-font-feature-settings: 'liga';
    -moz-osx-font-smoothing: grayscale;
}

.mb-30 {
    margin-bottom: 30px;
}

.headline {
    display: flex;
}

.headline h4 {
    font-size: var(--headline-size);
    color: var(--dark-text);
    font-family: 'Poppins';
    font-weight: 500;
    margin-bottom: 15px;
}

.text p {
    line-height: 21px;
    color: var(--light-text);
    font-size: 14px;
    margin-bottom: 30px;
    font-family: 'Poppins';
    font-weight: 300;
}

.text.text-blue p {
    line-height: 21px;
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 30px;
    font-family: 'Poppins';
    font-weight: 300;
}

.error {
    color: var(--red);
    font-size: 12px;
    font-family: 'Poppins';
}

label {
    position: relative;
    margin-bottom: 0;
    margin-left: 0;
    font-family: 'Poppins';
}

.outlined {
    width: 100%;
    margin-left: 0;
}

label>span::after,
label>span::before {
    position: absolute;
    transition: 200ms ease-in-out;
}

label>span::before {
    content: attr(data-label);
    left: 16px;
    top: 0;
    bottom: 0;
    margin: auto;
    pointer-events: none;
    height: 16px;
    font-size: 14px;
    color: var(--light-text);
    line-height: 1;
}

label>input:focus~span::before,
label>input:valid~span::before {
    font-size: 13px;
    color: var(--primary);
}

input {
    width: 100%;
    border: 0;
    height: 42px;
    padding: 10px 15px;
    font-size: 16px;
    font-family: 'Poppins';

}


.form-control {
    height: 42px;
    padding: 10px 15px;
    font-size: 16px;
    font-family: 'Poppins';
}



input:focus,
input:active {
    outline: 0;
    border: 0;
}

.outlined>input {
    border: none;
    border-radius: 4px;
}

.outlined>input:focus {
    box-shadow: 0 0 0 0px var(--primary);
    border-color: transparent;
}

.outlined>input:focus~span::before,
.outlined>input:valid~span::before {
    transform: translateY(-20px);
    background-color: transparent;
    padding: 2px 0px;
}

/* The container */
.checkbox-label {
    font-size: 14px;
    color: var(--dark-text);
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-family: 'Poppins';

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    border: var(--border);
    border-radius: var(--border-radius);
}


/* When the checkbox is checked, add a blue background */
.checkbox-label input:checked~.checkmark {
    background-color: var(--primary);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-label input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-label .checkmark:after {
    left: 6px;
    top: 2px;
    width: 8px;
    height: 14px;
    border: solid var(--white);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.button-primary,
.sidebarIconToggle {
    width: 100%;
    background-color: var(--primary);
    line-height: 30px;
    border: none;
    padding: 4px 10px;
    color: var(--white);
    font-weight: 600;
    transition: 0.3s;
    font-size: 15px;
    font-family: 'Poppins';
    font-weight: 400;

    text-align: center;
}

.nedostupan-proizvod {
    width: 100%;
    background-color: var(--red);
    line-height: 30px;
    border: none;
    padding: 4px 10px;
    color: var(--white);
    font-weight: 600;
    transition: 0.3s;
    font-size: 15px;
    font-family: 'Poppins';
    font-weight: 400;
    margin-top: 20px !important;
    text-align: center;
}

.button-secondary {
    width: 100%;
    background-color: var(--white);
    line-height: 30px;
    border: none;
    padding: 4px 10px;
    color: var(--primary);
    font-weight: 600;
    transition: 0.3s;
    font-size: 15px;
    font-family: 'Poppins';
    font-weight: 400;
    border: 1px solid var(--primary);
    text-align: center;
    border-radius: 4px;
}


.button-secondary:hover {

    background-color: var(--white);

    color: var(--primary);

}

.button-primary:hover,
.sidebarIconToggle:hover {
    color: var(--white);
    background-color: var(--dark-primary);
    box-shadow: var(--button-shadow);
}

.button-primary:focus,
.sidebarIconToggle:focus {

    background-color: var(--light-primary);
    box-shadow: var(--button-shadow);
}

.button-red {
    width: 100%;
    background-color: var(--red);
    border: none;
    padding: 4px 10px;
    color: var(--white);
    font-weight: 600;
    transition: 0.3s;
    font-size: 15px;
    font-family: 'Poppins';
    font-weight: 400;
    line-height: 30px;

}

.button-danger {
    background-color: transparent;
    line-height: 30px;
    border: none;
    padding: 4px 10px;
    color: var(--red);
    transition: 0.3s;
    font-size: 15px;
    font-family: 'Poppins';
    font-weight: 400;
}

.button-search {
    background-color: transparent;
    line-height: 30px;
    border: none;
    padding: 4px 10px;
    color: var(--primary);
    transition: 0.3s;
    font-size: 15px;
    font-family: 'Poppins';
    font-weight: 400;
}

.button-tertiary {
    width: 100%;
    background-color: transparent;
    line-height: 30px;
    border: none;
    padding: 4px 10px;
    color: var(--headline-color);
    transition: 0.3s;
    font-size: 15px;
    font-family: 'Poppins';
    font-weight: 400;

}

.half-width {
    width: 48%
}


.category-search-button {
    border-radius: 4px 0 0 4px;
    border: var(--border);
    border-right: none;
}




.button-tertiary:focus {
    width: 100%;
    color: var(--primary);
    background-color: var(--light-gray);
}

.login-container .button-tertiary {
    width: 100%;
    background-color: transparent;
    border-radius: var(--border-radius);
    border: none;
    padding: 10px;
    color: var(--headline-color);
    transition: 0.3s;
    font-size: 14px;
    font-family: 'Poppins';
    font-weight: 400;
    line-height: 30px;
}

.button-tertiary:hover {
    width: 100%;
    color: var(--primary);
}

.search-button {
    border-radius: 0 4px 4px 0;
}

.half-width:hover {
    width: 48%
}

.hr-small {
    width: 60%;
    color: var(--dark-text);
    text-align: center;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 10px;
}

.hr-big {
    width: 90%;
    color: var(--dark-text);
    text-align: center;
    margin: auto;
    margin-bottom: 10px;
    margin-top: 30px;
}

.form-control {
    border: var(--border);
    border-radius: var(--border-radius);
    background-color: var(--white);
    font-size: 14px;
    font-family: 'Poppins';
    font-weight: 400;

}

/* .wrapper{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  } */

.wrapper .search_box {
    max-width: 700px;
    width: 100%;
    background: #fff;
    border-radius: var(--border-radius);
    border: var(--border);
    height: 42px;
    display: flex;
    font-family: 'Poppins';
}

.wrapper .search_box .dropdown {
    width: 150px;
    border-right: var(--border);
    color: var(--light-text);
    position: relative;
    cursor: pointer;
    font-family: 'Poppins';
}

.wrapper .search_box .dropdown .default_option,
.wrapper .search_box .dropdown .default_option_2,
.wrapper .search_box .dropdown .default_option_3 {
    color: var(--light-text);
    padding: 9px 15px;
    font-size: 14px;
    font-family: 'Poppins';
    font-weight: 300;
    display: inline-flex;
}

.wrapper .search_box .dropdown ul {
    position: absolute;
    top: 41px;
    left: -2px;
    background: #fff;
    width: 150px;
    border-radius: 0 0 4px 4px;
    padding: 20px;
    display: none;
    box-shadow: none;
    border: var(--border);
    border-top: none;
}

.wrapper .search_box .dropdown ul.active {
    display: block;
}

.wrapper .search_box .dropdown ul li {
    padding-bottom: 20px;
    list-style: none;
    font-family: 'Poppins';
}

.wrapper .search_box .dropdown ul li:last-child {
    padding-bottom: 0;
}

.wrapper .search_box .dropdown ul li:hover {
    color: var(--primary);
}


.wrapper .search_box .search_field {
    width: 100%;
    height: 100%;
    position: relative;
}

.wrapper .search_box .search_field .input {
    width: 100%;
    height: 100%;
    border-radius: 0px 4px 4px 0px;
    font-size: 16px;
    padding-left: 20px;
    padding-right: 38px;
    color: var(--dark-text);

}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: var(--light-text);
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: var(--light-text);
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: var(--light-text);
}

.search_box .button-primary {
    position: absolute;
    top: -1px;
    right: 0;
    font-size: 22px;

    cursor: pointer;
    width: 42px;
    height: 42px;
    border-radius: 0px 4px 4px 0px;
    border: 1px solid var(--primary);
}

.wrapper .search_box .search_field .fas {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    color: white;
    cursor: pointer;
}

.navbar {
    padding: 13px;
    max-width: 1440px;
    margin: auto;
}

.wrapper-secondary-navbar {
    max-width: 1440px;
    margin: auto;
}

.user-nav {
    width: 25%;
    justify-content: flex-end;
}

.logo-nav {
    width: 25%;
}

.nav-link {
    padding: 4px 10px;
    color: var(--dark-text);
    font-size: 15px;
    font-family: 'Poppins';
    line-height: 30px;
    text-decoration: none;
    margin-left: 10px;
    margin-right: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: baseline;
}

.nav-link:hover {
    color: var(--primary);
}

.secondary-navbar {
    background-color: var(--light-gray);
    padding: 0px 13px;
    display: block;
}

.sidebarIconToggle,
.menu,
.kasa {
    display: inline-block;
}

.sidebarIconToggle {
    max-width: 250px;
    width: 100%;
}

.sidebarIconToggle {
    font-weight: 600;
    display: inline-flex;
    align-items: baseline;
}

.hamb-icon {
    margin-left: 5px;
    margin-right: 5px;
    height: 22px;
    width: 22px;
    transition: all 0.3s;
    box-sizing: border-box;
    cursor: pointer;
    align-self: center;
    margin-top: 5px;
}

.material-icons-outlined {
    align-self: center;
    margin-left: 5px;
    margin-right: 5px;
}

.menu {
    margin: auto;
    margin-left: auto;
    margin-left: calc(20% - 250px);
    width: 60%;
    text-align: center;
}

.menu .button-red {
    max-width: 100px;
    margin-left: 10px;
    margin-right: 10px;
    font-weight: 600;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
}

.menu .menu-link {
    padding: 4px 6px;
    color: var(--dark-text);
    font-size: 15px;
    font-family: 'Poppins';
    line-height: 30px;
    text-decoration: none;
    margin-left: 5px;
    margin-right: 5px;
    font-weight: 600;
}

.kasa {
    width: calc(17% + 10px);
    text-align: right;
}

.kasa a {
    padding: 4px 10px;
    padding-right: 0;
    color: var(--primary);
    font-size: 15px;
    font-family: 'Poppins';
    line-height: 30px;
    font-weight: 600;
    text-decoration: none;
    margin-left: 0;
    margin-right: 0;
    display: inline-flex;
    align-items: baseline;
}

.kategorije-treceg-reda {
    position: absolute;
    top: 0;
    left: 248px;
    background-color: var(--white);
    border: var(--border);
    margin-top: -40px;
    min-width: 800px;
    padding: 10px;
}

.kategorije-drugog-reda-link {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark-text);
}

.headline-link {
    font-weight: 600;
    font-size: 14px;
    border-bottom: 3px solid var(--primary);
    text-decoration: none;
    color: var(--dark-text);
    width: 100%;
    display: block;
}

.link {
    font-weight: 300;
    color: var(--light-text);
    font-size: 12px;
    width: 100%;
    display: block;
    text-decoration: none;
}

/* -- SIDEBAR KORPA -- */

#kasa-sidebar {
    height: calc(100% - 105px);
    position: absolute;
    left: 1375px;
    z-index: 2;
    width: 300px;
    display: none;
    background: var(--white);
    border: var(--border);

    flex-direction: column;
    margin-top: -2px;
}

#kasa-sidebar>div {
    align-self: stretch;
}

.sidebar-area-top {
    left: 100%;
    width: 100%;

    box-sizing: border-box;
    text-align: start;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    background-color: var(--primary);
    color: var(--white);
    padding: 5px 10px;
}

.sidebar-area-mid {
    flex-grow: 1;
    position: relative;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 5px 10px;
}

.sidebar-area-bottom {
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    align-items: stretch;
    padding: 5px 10px;
}

.sidebar-area-top span {
    font-size: 15px;
    font-family: 'Poppins';
    line-height: 30px;
    font-weight: 600;
}

.product-image-shopping-sidebar {
    width: 65px;
}

.product-info-shopping-sidebar .product-title p {
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
    color: var(--dark-text);
}

.product-info-shopping-sidebar .product-title {
    flex-grow: 1;
}

.product-info-shopping-sidebar .product-price {
    font-size: 18px;
    font-weight: 600;
    line-height: 18px;
    color: var(--primary);
}

.product-price-small {
    color: var(--mid-text);
    font-size: 12px;
    font-weight: normal;
    text-decoration: none;
    text-align: right;
}

.full-width {
    width: 100%;
}

.col-md-6 {
    flex: 0 0 auto;
    width: 50%;
    align-self: center;
}

/* -- quantity box -- */

.element {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.button {
    background-color: var(--white);
    border: var(--border);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 38px;
    width: 30px;
    position: relative;


}

.quantity-field {
    position: relative;
    height: 38px;
    text-align: center;
    width: 75px;
    display: inline-flex;
    font-size: 14px;
    resize: vertical;
    background: #fff;
    color: var(--dark-text);
    padding: 5px;
    border: var(--border);
    border-left: none;
    border-right: none;
}

.button-minus {
    border-right: none;
}

.button-plus {
    border-left: none;
}

.woofc-area-bot .woofc-total {

    display: flex;
    justify-content: space-between;
}

#kasa-sidebar * {
    box-sizing: border-box;
}

.woofc-action-inner {
    display: flex;
    align-items: center;
    width: 100%;
}

.woofc-action-inner>div {
    width: 50%;
    margin: 0 5px;
}

.text-right {
    text-align: right;
}

.price-total {
    font-size: 20px;
    font-weight: 600;
    line-height: 18px;
    color: var(--primary);
}

/* -- kategorije sidebar -- */

#sidebarMenu {
    height: calc(100vh - 90px);
    /* overflow-y: hidden;   */
    position: absolute;
    width: 250px;
    margin-top: 0;
    display: none;
    background: var(--white);
    border: var(--border);
    z-index: 2;
}

.sidebarMenuInner {
    margin: 0;
    padding: 0;
    border-top: var (--border);
}

.sidebarMenuInner li {
    list-style: none;
    background-color: transparent;
    line-height: 30px;
    border: none;
    padding: 4px 10px;
    color: var(--headline-color);
    transition: 0.3s;
    font-size: 15px;
    font-family: 'Poppins';
    font-weight: 400;
    display: inline-flex;
    width: 100%;
    cursor: pointer;
    border-bottom: var (--border);
}

.sidebarMenuInner li span {
    display: block;
    background-color: transparent;
    line-height: 30px;
    border: none;
    color: var(--headline-color);
    transition: 0.3s;
    font-size: 15px;
    font-family: 'Poppins';
    font-weight: 400;
    padding: 0;
    padding-top: 0px;
    padding-left: 0px;
    padding-left: 5px;
    padding-top: 1px;
}

.sidebarMenuInner li a {
    background-color: transparent;
    line-height: 30px;
    border: none;
    padding: 4px 10px;
    color: var(--headline-color);
    transition: 0.3s;
    font-size: 15px;
    font-family: 'Poppins';
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
}

input[type="checkbox"]:checked~#sidebarMenu {
    display: block
}

input[type=checkbox] {
    transition: all 0.3s;
    box-sizing: border-box;
    display: none;
}

.sidebarIconToggle {
    cursor: pointer;
}

.spinner {
    transition: all 0.3s;
    box-sizing: border-box;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: var(--white);
}

.horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
    width: 22px;

}

.diagonal.part-1 {
    position: relative;
    transition: all 0.3s;
    box-sizing: border-box;
    float: left;
    width: 22px;

}

.diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
    width: 22px;
}

input[type=checkbox]:checked~.sidebarIconToggle>.hamb-icon>.horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    opacity: 0;
}

input[type=checkbox]:checked~.sidebarIconToggle>.hamb-icon>.diagonal.part-1 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(135deg);
    margin-top: 8px;
}

input[type=checkbox]:checked~.sidebarIconToggle>.hamb-icon>.diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(-135deg);
    margin-top: -9px;
}

.kategorije-drugog-reda,
.kategorije-treceg-reda {
    display: none;
}

/* -- home ponude -- */

.card-ponuda {
    background-color: var(--white);
    box-shadow: var(--container-shadow);
    padding: 50px;
    min-height: 270px;
    transition: 0.5s;
}

.card-ponuda:hover {
    cursor: pointer;
}

.card-ponuda-red::before,
.card-ponuda-red::after {
    position: absolute;
    content: ' ';
    width: 30px;
    height: 30px;
    border-color: var(--red);
    border-style: solid;
}

.card-ponuda-blue::before,
.card-ponuda-blue::after {
    position: absolute;
    content: ' ';
    width: 30px;
    height: 30px;
    border-color: var(--primary);
    border-style: solid;
    transition: 0.5s;
}

.card-ponuda-green::before,
.card-ponuda-green::after {
    position: absolute;
    content: ' ';
    width: 30px;
    height: 30px;
    border-color: var(--purple);
    border-style: solid;
    transition: 0.5s;
}

.card-ponuda-green:hover::before,
.card-ponuda-green:hover::after {
    position: absolute;
    content: ' ';
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border-color: var(--purple);
    border-style: solid;
    transition: 0.5s;
}


.card-ponuda-red:hover::before,
.card-ponuda-red:hover::after {
    position: absolute;
    content: ' ';
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border-color: var(--red);
    border-style: solid;
    transition: 0.5s;
}

.card-ponuda-blue:hover::before,
.card-ponuda-blue:hover::after {
    position: absolute;
    content: ' ';
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border-color: var(--primary);
    border-style: solid;
    transition: 0.5s;
}

.card-ponuda::before {
    top: 20px;
    left: 20px;
    border-width: 3px 0 0 3px
}

.card-ponuda::after {
    bottom: 20px;
    right: 20px;
    border-width: 0px 3px 3px 0px
}

.card-ponuda .headline-card-ponuda {
    font-size: 25px;
    font-family: Magnolia;
}

.card-ponuda-red .headline-card-ponuda {
    color: var(--red);
}

.card-ponuda-blue .headline-card-ponuda {
    color: var(--primary);
}

.card-ponuda-green .headline-card-ponuda {
    color: var(--purple);
}

.description-card-ponuda {
    color: var(--mid-text);
    font-size: 14px;
}

.button-card-ponuda {
    color: var(--mid-text);
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
}

.box-link:hover {
    text-decoration: none;
}

.card-ponuda-red:hover .red-button {
    color: var(--red)
}

.card-ponuda-blue:hover .blue-button {
    color: var(--primary)
}

.card-ponuda-green:hover .green-button {
    color: var(--purple)
}

/* -- home proizvodi -- */

.badge {
    color: var(--dark-text);
    background-repeat: no-repeat;
    display: table;
    height: 30px;
    position: absolute;
    width: 140px;
    border: none;
    border-radius: 0;
    left: -31px !important;
    margin: 0 !important;
    top: 23px !important;
    z-index: 1;
    transform: rotate(-45deg);
    background-size: cover;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

.badge-periodicna {
    background-color: var(--purple);
    color: var(--white);
}

.badge-novo {
    background-color: var(--red);
    color: var(--white);
}

.badge-najbolja {
    background-color: var(--primary);
    color: var(--white);
}

.product-favorites {
    top: 0;
    right: 0;
    position: absolute;
}

.product-favorites a .material-icons.notfav::before {
    content: "favorite_border";
}

@media (hover: hover) {
    .product-favorites a .material-icons.notfav:hover::before {
        content: "favorite";
    }
}

.product-favorites a .material-icons.fav::before {
    content: "favorite";
}

.product-favorites-list {
    padding-right: 5px;
}

.product-favorites-list a .material-icons.notfav::before {
    content: "favorite_border";
}

@media (hover: hover) {
    .product-favorites a .material-icons.notfav:hover::before {
        content: "favorite";
    }
}

.product-favorites-list a .material-icons.fav::before {
    content: "favorite";
}

.product-percentage {
    background-color: var(--purple);
    color: var(--white);
    bottom: 70%;
    width: 20%;
    right: 0;
    position: absolute;
}

.controls-top,
.slick-arrow {
    position: absolute;
    top: -32px;
    right: -12px;
}

.carousel-inner {
    margin-left: -10px;
}

.btn-floating,
.slick-arrow {
    color: white;
    background: var(--purple);
    padding: 3px 10px;
    border: none;
}


.headline {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-text);
}

.headline-time {
    font-size: 15px;
    font-weight: 400;
    color: var(--mid-text);
    text-align: center;
}

.border-bottom-green {
    border-bottom: 3px solid var(--purple)
}

.border-bottom-blue {
    border-bottom: 3px solid var(--primary)
}

.card {
    max-width: 280px;
    border: var(--border);
    border-radius: 0;
    overflow: hidden;
    margin: auto;
}

.product {

    padding: 5px;
}

.product .product-image-placeholder {
    height: 150px;
    width: 150px;
    align-content: center;
    align-items: center;
    display: flex;
    margin: auto;
}

.product .product-image-placeholder .product-image {
    max-width: 150px;
    max-height: 150px;
    text-align: center;
    margin: auto;
}

.product .product-category {
    color: var(--mid-text);
    font-size: 12px;
    font-weight: normal;
    text-decoration: none;
}

.product .product-category:hover {
    color: var(--primary);
    font-size: 12px;
    font-weight: normal;
    text-decoration: none;
}

.product .product-title {
    font-size: 15px;
    color: var(--dark-text);
    font-weight: 600;
    text-decoration: none;
    height: 72px;
    overflow: hidden;
}

.product .product-title:hover {
    font-size: 15px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.product .product-package {
    color: var(--mid-text);
    font-size: 12px;
    font-weight: normal;
    margin-bottom: 10px;
    margin-top: 10px;
}

.product .product-price-description {

    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px !important;
}

.product .product-weight {
    color: var(--mid-text);
    font-size: 12px;
    font-weight: normal;
    width: 100%;
    display: flex;
    margin-bottom: 10px;
}

.product .product-price-per-unit {
    color: var(--mid-text);
    font-size: 12px;
    font-weight: normal;
    width: 50%;
    display: flex;
}

.product .price {
    color: var(--primary);
    font-size: 15px;
    font-weight: 600;
    width: 50%;
    text-align: right;
}


.buttons-group {
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
    margin: 5px;
    margin-top: 20px !important;
}

.quantity {
    width: 30%;
    display: flex;

}

.button-primary {
    border-radius: 4px;
}

.buttons-group .button-primary {
    width: 40%;
}

.category-box {
    padding: 5px;
    border: var(--border);
    text-align: center;
    border-collapse: collapse;
}

.category-image {
    max-width: 115px;
}

.category-title {
    font-size: 14px;
    color: var(--light-text);
    text-decoration: none !important;
    cursor: pointer;
}

.category-title:hover {
    font-size: 14px;
    color: var(--primary);
    text-decoration: none !important;
}


.cd-accordion__input {
    position: absolute;
    opacity: 0;
}

.cd-accordion__label {
    position: relative;
    display: flex;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    background: var(--cd-color-1);
    box-shadow: inset 0 -1px lightness(var(--cd-color-1), 1.2);
    color: var(--color-white);
}

.cd-accordion__sub {
    display: none;
}

.cd-accordion__input:checked~.cd-accordion__sub {
    display: block;
}

hr:not([size]) {
    height: 2px;
}

.footer {
    background-color: #20409a;
    color: var(--white);
    padding-top: 20px;
}

.logo-footer {
    margin: 0 auto;
    max-width: 160px;
}

.footer-flex-items {
    display: flex;
}

.footer-img {
    margin-right: 20px;
    justify-content: center;
}

.footer-section-title {
    font-size: 15px;
}

.footer-section-text {
    font-size: 12px;
}

.newsletter-text {
    font-size: 18px;
}

.input-group-text {
    color: #20409a;
}

.breadcrumb {
    background-color: var(--white);
}

.breadcrumb-item a {
    font-size: 16px;
    color: #b6b6b6;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #B80C09;
}

.order-img {
    max-height: 26px;
    width: auto;
}

.prikaz-text {
    font-size: 16px;
    color: #b6b6b6;
}


table {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
}

table .product-image-placeholder {
    align-content: center;
    align-items: center;
    display: flex;
    margin: auto;
    height: 70px;
    width: 70px;
    display: table-cell;
    text-align: center;
}

table .product-image-placeholder img {
    overflow: hidden;
    height: 100%;
    max-width: 70px;
    max-height: 70px;
    text-align: center;
    margin: auto;
}


table .product-image-placeholder .product-percentage {
    background-color: var(--purple);
    color: var(--white);
    width: 5%;
    left: 0;
    position: absolute;
    bottom: 75px;
}

.carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;

}

.carousel {
    display: flex;
    align-items: center;
    width: 1440px;
    border-radius: 0;
    position: relative;
}

.carousel-images {
    display: flex;
    overflow: hidden;
    border-radius: 0px;
}

.carousel-image {
    transition: all .9s;
    width: 1440px;
    transform: translateX(0);
}


.btn-left,
.btn-right {

    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    background-color: white;
    border: none;
    position: absolute;
    cursor: pointer;
    opacity: .75;
    transition: all .25s;
    z-index: 1;
}

.btn-left:hover,
.btn-right:hover {
    opacity: 1;
}

.btn-left {
    top: 50%;
    left: -1.5rem;
    transform: translateY(-50%);
}

.btn-right {
    top: 50%;
    right: -1.5rem;
    transform: translateY(-50%);
}

.single-product-image-placeholder {
    border: var(--border);
    width: 450px;
    height: 450px;
    align-content: center;
    align-items: center;
    align-self: center;
    display: flex;
}

.single-product-image-placeholder .product-image {
    max-width: 400px;
    align-self: center;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    display: flex;
    max-height: 400px;
}

.single-product-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 44px;
    color: var(--dark-text);
}

.card-sidebar {
    border: var(--border);
    margin-bottom: 30px;
}

.card-sidebar .card-header {
    background-color: var(--light-gray);
    border: none;

}

ol,
ul {
    padding-left: 0rem;
}

.card-body .link,
.cd-accordion__item {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: var(--border);


}

.card-body .link a,
.cd-accordion__item {
    font-size: 14px;
    font-weight: 400;
    color: var(--dark-text);
    list-style: none;
    text-decoration: none;

}

.card-body .link a:hover,
.cd-accordion__item:hover {
    font-size: 14px;
    font-weight: 400;
    color: var(--primary);
    text-decoration: none;
}

.sub-menu {
    padding-left: 10px;
}

.sub2-menu {
    padding-left: 20px;
}

.single-desc {
    align-self: flex-start;
}

.single-product-title {
    margin-bottom: 30px;
}

.single-product-sku {
    margin-top: 30px;
}

.single-desc .buttons-group {
    margin-top: 20px !important;
}

.icon-button {
    width: 30% !important;
}

#grid-view,
#list-view {
    width: 3%;
    display: inline;
}

.wrapper .search_box .dropdown ul.active {
    display: block;
    width: 300px;
    z-index: 99;
    overflow-x: hidden;
    max-height: 300px;
    overflow-y: scroll;
}

.link-href .notfav {
    color: var(--mid-text);
}

.link-href .fav {
    color: var(--red);
}

.lista-kategorija {
    height: calc(100vh - 90px);
    overflow: scroll;
}

.page-link {
    z-index: 3;
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}

#message {
    position: absolute;
    min-width: 360px;
    width: 100%;
    margin: auto;
    margin-bottom: auto;
    z-index: 100;
}

@media only screen and (max-width: 1920px) {
    #kasa-sidebar {
        right: 0;
        left: auto
    }
}

.single-price {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary)
}

.mid {
    margin-top: 40px;
    padding-bottom: 20px;
}


.dropbtn {
    background-color: var(--white);
    font-size: 14px;
    font-family: 'Poppins';
    color: var(--mid-text);
    border: var(--border);
    box-shadow: none;
    padding: 5px;
    padding-left: 10px;
    padding-right: 50px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    right: 0;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #f1f1f1
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

.width-auto {
    width: auto;
}

a.button-secondary {
    padding: 8px 10px;
}

a.button-tertiary {
    padding: 8px 10px;
}


table.table-nalog,
table.table-nalog td {
    border: var(--border);
    border-collapse: collapse;
}

table.table-nalog th {
    background-color: var(--light-gray);
    padding: 5px;
}

.form-control:focus {
    color: var(--mid-text);
    background-color: var(--white);
    border: var(--border);
    outline: 0;
    box-shadow: none;
}

.footer-link {
    color: var(--white)
}

.footer-link:hover {
    color: var(--white);
    text-decoration: underline;
}


.list.nedostupan-proizvod {
    width: 100%;
    background-color: var(--red);
    line-height: 15px;
    border: none;
    padding: 7px;
    color: var(--white);
    font-weight: 600;
    transition: 0.3s;
    font-size: 12px;
    font-family: 'Poppins';
    font-weight: 400;
    margin-top: 0 !important;
    text-align: center;
}

.naziv__tabela {
    max-width: 150px;
}

th,
td {
    padding: 5px;
}

#btnClearSearch {
    position: absolute;
    top: 16px;
    left: 23%;
    color: var(--red);
}

.dt-right {
    text-align: right;
}

td {
    font-size: 12px;
}

.map-container {
    margin-top: 30px;
}

.breadcrumb {
    background-color: var(--white);
    margin-bottom: 0;
}

tr {
    border: solid;
    border-top-width: medium;
    border-right-width: medium;
    border-bottom-width: medium;
    border-left-width: medium;
    border-width: 1px 0;
}

.placeholder-logo-img {
    max-width: 170px;
    width: 100%;
}

.placeholder-logo-img img {

    width: 100%;
}

@media only screen and (max-width: 840px) {
    .badge {

        background-repeat: no-repeat;
        display: table;
        height: 30px;
        position: absolute;
        width: 30px !important;
        border: none;
        border-radius: 0;
        left: 0 !important;
        margin: 0 !important;
        top: -30px !important;
        z-index: 1;
        transform: rotate(-0deg);
        background-size: cover;
        text-align: center;
        font-weight: 600;
        font-size: 16px;
    }

    .remove-from-cart,
    .remove-from-favorites,
    .btnAddToFav {
        position: absolute;
        right: 10px;
    }

    .full-width a {
        width: auto;
        display: inline-block;
    }

    .pl-15 {
        padding-left: 15px;
    }

    .pt-30 {
        padding-top: 30px;
    }

    .navbar-nav.ml-auto.mr-auto.search-nav {
        padding: 12px;
    }

    .single-product-image-placeholder {
        border: var(--border);
        width: 300px;
        height: 300px;
        align-content: center;
        align-items: center;
        align-self: center;
        display: flex;
        margin: auto;
    }
}

.code {
    font-family: 'Concert One', cursive;
    font-size: 6vw;
    text-align: center;
    color: var(--primary);
    border-right: 2px solid var(--primary);
    padding: 0 15px 0 15px;
}

.button-auto,
.button-auto:hover,
.button-auto:focus {
    width: auto;
    background: transparent;

}

.button-auto span,
.button-auto:hover span,
.button-auto span:hover,
.button-auto:focus span,
.button-auto span:focus {
    color: var(--white);
    background: transparent;
    color: var(--white);
}

.upload-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn {
    border: 2px solid gray;
    color: gray;
    background-color: white;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
}

.upload-btn-wrapper input[type=file] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

label.custom-file-button {
    position: relative;
}

label.custom-file-button:before {
    content: "Uvezi porudžbinu";
    position: absolute;
    left: 0;
    padding: 10px;
    background: var(--white);
    color: var(--primary);
    width: auto;
    text-align: left;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Poppins';
    font-weight: 600;
    transition: 0.3s;
    font-size: 15px;

}


label.custom-file-button:hover:before {
    background: var(--white);
}

.custom-file-input {
    visibility: hidden;
}

.limit-to-view {
    display: flex;
}

.limit-to-view span {
    text-align: left;
    height: 30px;
    vertical-align: middle;
    margin: auto;
    margin-left: auto;
    margin-left: 0;
    color: var(--white);
}

label.custom-file-button {
    width: 55%;
    float: left;
}

#upload-button:disabled,
#upload-button[disabled] {
    display: none;
}

.file-name {
    position: absolute;
    left: 25%;
    top: 10px;
    max-width: 230px;
    overflow: hidden;
    max-height: 20px;
}

#upload-button {
    position: absolute;
    left: 50%;
}

.fajl-error {
    color: var(--white) !important;
    background-color: var(--red);
    position: absolute;
    left: 25%;
    top: 15px;
    max-width: 230px;
    overflow: hidden;
    max-height: 20px;
    padding: 3px;
    line-height: 15px;
}

#poruciModal {
    display: none;
}

.product-image.porudzbenica {
    max-width: 100px;

    width: 100%;
    margin: auto;
}

.full-width {
    width: 100%;
    display: block;
}

span.full-width {
    font-size: 12px;
}

.mobile-product-porudzbenica {
    margin-top: 10px;
    margin-bottom: 10px;
    border-bottom: var(--border);
    padding-top: 10px;
    padding-bottom: 10px;
}

.mobile-product-grid {
    margin-top: 10px;
    margin-bottom: 10px;
    border-bottom: var(--border);
    padding-top: 10px;
    padding-bottom: 10px;
}

.pr-10 {
    padding-right: 10px;
}

.pl-10 {
    padding-left: 10px;
}

.modal {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1055;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    max-width: 360px;
    margin: auto;
    right: 0;
}

.container {
    overflow-x: hidden;
}

.preview-image {
    max-height: 300px;
}

.news-link,
.news-title {
    color: var(--dark-text);
    font-size: 15px;
    font-family: 'Poppins';
    line-height: 30px;
    text-decoration: none;
    font-weight: 600;
}

.news-link:hover {
    color: var(--primary);
}

.news-description {}

.placeholder-date {
    position: absolute;
    bottom: 0;
    z-index: 999;
    background-color: var(--primary);
    width: auto;
    color: white;
    padding: 5px 10px;
}

.news-card {
    background-color: white;
    box-shadow: var(--container-shadow);
}

a.button-primary {
    padding: 8px 10px;
}

.hero-news-image {
    width: 100%;
}

.news-image-placeholder {
    max-height: 170px;
    overflow: hidden;
    object-fit: contain;
}

.news-image {
    height: 100%;
    max-height: 170px;
    object-fit: contain;
}
.carousel-img {
    height: auto !important;
}

#sidebar {
    max-width: 280px;
    margin-left: 28px;
}
#sidebar .carousel-inner {
    margin-left: 0px;
  }


  #sidebar .carousel-img {
    width: 100%;
    height: auto !important;
  }