:root {
    --white: #fff;
    --green: #68AC45;
    --light-green: #CEEBD4;
    --yellow: #FFCB31;
    --red: #DB2340;
    --blue: #00A0B0;
    --light-gray: #F8F8F8;
    --dark-gray: #7B7B7B;
    --border: 1px solid #CED4DA;
    --border-radius: 4px;
    --text-gray: #B6B6B6;
    --headline-color: #231F20;
    --button-shadow: 1px 3px 6px 0px rgba(0, 0, 0, 0.15);
    --shadow: 8px 6px 9px 0 #dadee8;
    --text-size: 13px;
    --headline-size: 18px;
    --button-font-size: 15px;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
}


/* FONTS */

@font-face {
    font-family: Axiforma-book;
    src: url('../fonts/AXIFORMA-BOOK.ttf');
}

@font-face {
    font-family: Axiforma-medium;
    src: url('../fonts/AXIFORMA-MEDIUM.TTF');
}

@font-face {
    font-family: Barlow-bold;
    src: url('../fonts/Barlow-Bold.ttf');
}

@font-face {
    font-family: Barlow-medium;
    src: url('../fonts/Barlow-Medium.ttf');
}

@font-face {
    font-family: Barlow-regular;
    src: url('../fonts/Barlow-Regular.ttf');
}

@font-face {
    font-family: Barlow-light;
    src: url('../fonts/Barlow-Light.ttf');
}


/* BODY HTML */

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: Barlow-regular;
    line-height: 30px;
    overflow-x: hidden;
}

#app,
#bodyGlobal {
    background-color: var(--light-gray);
}

#bodyLogin {
    background-color: var(--white);
}

main {
    padding: 0px;
    padding-bottom: 0px;
    max-width: 1240px;
    margin: 20px auto;
}

.full-width {
    width: 100%;
}

#app {
    position: relative;
    min-height: 100vh;
}

#reload {
    width: 15%;
    float: right;
}

.col-10 {
    margin: auto;
}

.border-top {
    border-top: var(--border);
}

/* LOGO */
.logo-login {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 150px;
}

.logo-login img {
    width: 100%;
}

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

/* IMAGES */

.border-image {
    border-radius: 10px;
}

img {
    vertical-align: middle;
    border-style: none;
    width: 100%;
}

.empty-image {
    max-width: 400px;
    text-align: center;
    border-radius: 10px;
    -webkit-box-shadow: var(--shadow);
    -moz-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
}

#img {
    width: 80%;
    margin-bottom: 10px;
    display: inline-flex;
}

.home-profile-img {
    max-height: 200px;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
}

.user-home-img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    align-content: center;
    align-items: center;
    display: flex;
    max-height: 200px;
    overflow: hidden;
}

.placeholder-image-product {
    text-align: center;
    margin-bottom: 10px;
}

.preview-image,
#preview-image-before-upload {
    max-height: 100px;
    height: auto;
    width: auto;
    margin-top: 10px;
}

#preview-images img {
    max-width: 150px;
    margin-right: 20px;
    margin-bottom: 20px;
}

iframe {
    width: 100% !important;
}

.slika-prijatelja {
    border-radius: 100px;
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.slika-partner {
    border-radius: 100px;
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* FOOTER */
.footer-row {
    max-width: 1240px;
    margin: auto;
}

.footer {
    background-color: var(--white);
    padding: 10px;
    min-height: 60px;
    position: relative;
    bottom: 0;
    width: 100%;
    box-shadow: var(--shadow);
    left: 0;
    z-index: 99;
}

.footer-login {
    text-align: center;
    max-width: 360px;
    margin: 10px;
    margin-top: 25px;
    margin-left: auto;
    margin-right: auto;
}

.footer-login span {
    width: 100%;
    background-color: transparent;
    border-radius: var(--border-radius);
    border: none;
    padding: 0px;
    color: var(--text-gray);
    font-family: Barlow-regular;
    transition: 0.3s;
    font-size: 12px;
}

.footer-text {
    color: var(--dark-gray);
    font-size: 12px;
    font-family: Barlow-regular;
    width: 100%;
    display: inline-block;
}

.footer img {
    width: 20px;
}

.footer-link.active {
    color: var(--red)
}

.red-icon-container {
    background-color: var(--red);
    border-radius: 100px;
    box-shadow: var(--shadow);
    margin-top: -40px;
    height: 65px;
    width: 65px;
    color: var(--white) !important;
}

.red-icon-container img {
    color: var(--white) !important;
    position: absolute;
    top: 17px;
    left: 32px;
    width: 30px;
}

/* TEXT */

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}

.h2 {
    color: var(--red);
    font-family: Barlow-bold;
}

.h5 {
    margin-top: 20px;
    color: var(--headline-color);
    font-family: Barlow-bold;
}

b,
strong {
    font-weight: bold;
}

.bold {
    font-weight: bold;
}

p {
    margin-top: 0;
    margin-bottom: 0;
    color: var(--text-gray);
    font-size: 14px;
    font-family: Barlow-regular;
    line-height: 20px;
}

span {
    font-size: 14px;
    font-weight: 300;
    font-family: Barlow-regular;
    color: var(--text-gray);
}

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

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

.text {
    font-size: 12px !important;
}

.text p {
    font-family: Barlow-regular;
    line-height: 21px;
    color: var(--text-gray);
    font-size: var(--text-size);
    margin-bottom: 00px;
}

.headline {
    display: flex;
}

.headline h4 {
    font-size: var(--headline-size);
    color: var(--headline-color);
    font-family: Barlow-medium;
    font-weight: 500;
    margin-bottom: 10px;
}

.headline h4::after {
    content: url(/images/Srce@1X2.png);
    display: inline-block;
    margin-left: 10px;
}

.headline img {
    margin-left: 10px;
    max-width: 20px;
    width: 100%
}

.big-heading {
    font-family: Axiforma-medium;
    font-size: 26px;
    font-weight: 600;
    text-transform: none;
    line-height: 1.6em;
    color: var(--headline-color);
}

.big-heading::after {
    content: '';
    background: url('/images/cvetic.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
    position: absolute;
    margin-left: 0;
}

.text-heading {
    color: var(--dark-gray);
    font-size: 15px;
    font-family: Barlow-regular;
    text-align: center;
}

.big-naslov {
    color: var(--white);
    font-size: 45px;
    font-family: Axiforma-medium;
    text-transform: uppercase;
    width: 100%;
    display: block;
}

.small-heading {
    font-size: 14px;
    font-weight: 300;
    font-family: Barlow-regular;
    color: var(--text-gray);
}

.pozdrav-ime {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 0;
    position: relative;
    font-family: Barlow-medium;
}

.pozdrav-ime::after {
    content: '';
    background: url('/images/cvetic.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-repeat: no-repeat;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 0;
    margin-left: 0;
}

.pozdrav-text {
    color: var(--dark);
    margin-top: 5px;
    font-size: 16px;
}

#swal2-title {
    font-size: 28px;
    color: var(--headline-color);
    font-family: Axiforma-medium;
    font-weight: 800;
    margin-bottom: 10px;
}

.status {
    display: block;
    width: 100%;
    font-size: 15px;
    font-family: Barlow-medium;
    text-align: center;
    color: var(--dark-gray);
    line-height: 0;
}

.user-name {
    font-size: 17px;
    font-family: Barlow-medium;
    color: var(--dark-gray);
    width: 100%;
    display: block;
}

.text-container-heading {
    color: var(--dark-gray);
    font-size: 15px;
    font-family: Barlow-regular;
    text-align: center;
}

.wallet-status {
    font-size: 28px;
    line-height: 30px;
    font-family: Barlow-medium;
    text-align: center;
    color: var(--red);
}

.wallet-status-small {
    font-size: 16px;
    line-height: 22px;
    font-family: Barlow-medium;
    text-align: center;
    color: var(--red);
}
.wallet-status-payments {
    color: var(--yellow);
}

.form-helper {
    font-size: 12px;
}

.reset-email-text {
    font-size: 14px;
    font-weight: bold;
    color: var(--dark-gray);
    margin-top: 16px;
}

.big-th.single-th {
    padding-bottom: 10px;
}

.status {
    font-size: 18px;
    font-family: Barlow-medium;
    text-align: center;
    color: var(--red);
}

.info-status {
    color: var(--dark-gray);
    font-size: 13px;
    font-family: Barlow-regular;
    text-align: center;

}

.broj {
    font-size: 30px;
    font-family: Barlow-medium;
    text-align: center;
    color: var(--red);
}

.stanje-broj {
    font-family: Barlow-medium;
    font-size: 14px;
    color: var(--headline-color);
    line-height: 0px;
    width: 100%;
    display: block;
    margin-top: 10px;
}

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

.red {
    color: var(--red);
}

.danger {
    border-radius: var(--border-radius);
    border: 1px solid var(--red);
    color: var(--red);
    font-family: Barlow-medium;
}

.green {
    color: var(--green);
    margin-top: 5px;
}

/* BREADCRUMBS */

.breadcrumb {
    padding: 0;
    margin-bottom: 10px;
    background-color: transparent !important;
}

.breadcrumbs {
    font-family: Axiforma-medium;
    font-size: 26px;
    font-weight: 600;
    text-transform: none;
    line-height: 1.6em;
    color: var(--dark-gray);
    margin: 0px;
}

.breadcrumbs .breadcrumbs-link {
    color: var(--dark-gray);

}

.breadcrumbs .breadcrumbs-link:hover {
    color: var(--dark-gray);

}

.breadcrumbs .breadcrubms-current {
    color: var(--dark-gray);

}

.breadcrumbs .breadcrubms-current:hover,
.breadcrumbs .breadcrubms-current:focus,
.breadcrumbs .breadcrubms-current:active {
    color: var(--green);
    font-size: 15px;
    font-family: Barlow-medium;
}

.breadcrumb-item.active::after {
    content: '';
    background: url('/images/srce.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 5px;
    margin-left: 10px;
}


/* PADDINGS */

.small-padding .col-md-3,
.small-padding .col-md-2,
.small-padding .col-md-6,
.small-padding .col-md-4 {
    padding-left: 10px;
    padding-right: 10px;
}

.pb-4,
.py-4 {
    padding-bottom: 5rem !important;
}

.p-5 {
    padding: 5px !important;
}

.p-10 {
    padding: 10px !important;
}

.p-15 {
    padding: 15px !important;
}

.p-20 {
    padding: 20px !important;
}

.pl-0 {
    padding-left: 0 !important;
}

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

.pl-60 {
    padding-left: 60px !important;
}

.pr-0 {
    padding-right: 0 !important;
}

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

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

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

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

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

/* MARGINS*/

.m-0 {
    margin: 0;
}

.m-auto {
    margin: auto
}

.mt-n-10 {
    margin-top: -10px;
}

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

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

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

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

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

.mb-0 {
    margin-bottom: 0px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

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

.ms-me-0 {
    margin: auto 0 10px 0;
}

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

.dmt-20 {
    margin-top: 20px;
}


/* TABS */

.tab {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.tab-button {
    width: auto !important;
}

.tab button {
    background-color: var(--white);
    -webkit-box-shadow: var(--shadow);
    -moz-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    border-radius: 10px;
    border-color: transparent;
    padding: 7px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    margin-bottom: 10px;
    font-family: Axiforma-medium;
 
    text-transform: uppercase;
    font-size: 15px;
 
    line-height: 20px;
}

.tab button.active {
    background-color: var(--red);
    color: var(--white);
}

.tabcontent {
    display: none;
    padding: 6px 12px;
    border: none;
    border-top: none;
}

/* MODAL */

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-header {
    padding: 16px;
    background-color: var(--red);
    color: white;
}

.modal-body {
    padding: 16px;
}

.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    border-radius: 10px;
}

.modal-footer {
    padding: 2px 16px;
    background-color: var(--red);
    color: white;
}

.modal h2 {
    color: var(--white);
    font-size: 15px;
    font-family: Barlow-regular;
    text-align: center;
}

.close {
    color: white;
    float: left;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* PROIZVODI */

.default-akcija-slika {
    width: 450px;
    margin: 0 auto;
    max-width: 100%;
    padding: 10px;
    height: auto;
}

.slika-proizvoda {
    margin: 10px;
    margin-top: 0px;
    margin-bottom: 0px;
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.naziv-proizvoda {
    font-size: 14px;
    font-family: Barlow-medium;
    color: var(--dark-gray);
    width: 100%;
    display: block;
    line-height: 22px;
    max-height: 45px;
    overflow: hidden;
}

.price-container {
    display: flex;
    justify-content: space-between;
}

.price-left {
    text-align: left;
}

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

.left {
    display: flex;
    text-align: left;
    width: 100%;
    justify-content: space-between;
    flex-direction: column;
}

.right {
    display: flex;
    text-align: right;
    justify-content: center;
    flex-direction: column;
    width: 30%;
    align-items: flex-end;
}

.trajanje-akcije {
    font-size: 12px;
    font-family: Barlow-regular;
    color: var(--text-gray);
    line-height: 15px;
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
}

.neto,
.kol-po-jm,
.stara-cena,
.nova-cena {
    font-size: 11px;
    font-family: Barlow-regular;
    color: var(--text-gray);
    display: block;
    line-height: 15px;
}

.opsirnije-persu-akcija .naslov {
    color: var(--white);
    font-size: 16px;
    font-family: Axiforma-book;
    text-transform: lowercase;
    position: relative;
}

.opsirnije-persu-akcija .naslov::after {
    content: '';
    background: url('/images/cvetic-zuti.png');
    background-repeat: repeat;
    background-size: auto;
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    margin-left: 5px;
    top: -30px;
    right: -20px;
}

.badge-procenat {
    font-size: 15px;
    font-family: Barlow-medium;
    color: var(--white);
    background-color: var(--red);
    width: 45px;
    height: 45px;
    border-radius: 100px;
    display: block;
    line-height: 43px;
    text-align: center;
    position: absolute;
    top: 10px;
    right: 10px;
}

.nova-cena {
    font-size: 14px;
    font-family: Barlow-medium;
    color: var(--red);
}

/* PONUDA */
.ponuda-naziv {
    font-family: Barlow-bold;
    font-size: 14px;
    text-transform: uppercase;
}

.ponuda-naziv::after {
    content: '';
    background: url('/images/cvetic.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 10px;
    height: 10px;
    position: absolute;
    margin-left: 5px;
}

.ponude-slika {
    border-radius: 10px;
}

/* GREB GREB */

.naslov-ogrebi {
    color: var(--red);
    font-family: Axiforma-medium;
    font-size: 45px;
    position: relative;
    line-height: 45px;
    text-transform: uppercase;
}

.naslov-ogrebi::after {
    content: '';
    background: url('/images/srce.png');
    background-repeat: repeat;
    background-size: auto;
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    margin-left: 5px;
    top: -30px;
    right: -20px;
}

/* MARKICE */

.markice {
    width: 100%;
}

.markice-home-img {
    max-width: 100px;
}

.markice-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.markice-ponuda-img {
    max-width: 300px;
    max-height: 100px;
    object-fit: contain;
}

.opis-markica {
    color: var(--text-gray);
    font-size: 14px;
    font-family: Barlow-regular;
    line-height: 20px;
}

.markice-naslov {
    color: var(--dark-gray);
    font-size: 16px;
    font-family: Barlow-bold;
    text-align: center;
    text-transform: uppercase;
    overflow: hidden;
    overflow: hidden;
}

.markice-naslov-card {
    color: var(--dark-gray);
    font-size: 12px;
    font-family: Barlow-regular;
    text-align: center;
    text-transform: uppercase;
}

.broj-markica-home {
    color: var(--red);
    font-size: 24px;
    font-family: Barlow-Medium;
    text-align: center;
    text-transform: uppercase;
    margin-left: 25px;
    position: relative;
}

.broj-markica-home::after {
    content: '';
    background: url('/images/markice.svg');
    background-repeat: repeat;
    background-size: auto;
    background-repeat: repeat;
    background-size: auto;
    background-repeat: no-repeat;
    background-size: contain;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    position: absolute;
    left: -30px;
    bottom: -2px;
    margin-left: 0;
    filter: brightness(0) saturate(100%) invert(19%) sepia(48%) saturate(5218%) hue-rotate(338deg) brightness(98%) contrast(92%);
}

.broj-markica {
    color: var(--red);
    font-size: 24px;
    font-family: Barlow-Medium;
    text-align: center;
    text-transform: uppercase;
    margin-left: 25px;
    position: relative;
}

.broj-markica::after {
    content: '';
    background: url('/images/markice.svg');
    background-repeat: repeat;
    background-size: auto;
    background-repeat: repeat;
    background-size: auto;
    background-repeat: no-repeat;
    background-size: contain;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    position: absolute;
    left: -30px;
    bottom: 2px;
    margin-left: 0;
    filter: brightness(0) saturate(100%) invert(19%) sepia(48%) saturate(5218%) hue-rotate(338deg) brightness(98%) contrast(92%);
}
.markice-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; 
    row-gap: 7px;
 }
 

.potrebno-markica {
    color: var(--green);
    background-color: var(--light-green);
    padding: 5px 30px;
    border-radius: 50px;
}

.prazna-markica {
    height: 40px;
    max-width: 20%;
    padding: 7px 5px;
    opacity: 0.3;
  border: var(--border);
  border-radius: 10px;
  width: 61px;
  box-sizing: border-box;
  margin: 0;
}

.popunjena-markica {
    opacity: 1;
    border: 1px solid var(--red);
    border-radius: 10px;
    filter: brightness(0) saturate(100%) invert(19%) sepia(48%) saturate(5218%) hue-rotate(338deg) brightness(98%) contrast(92%);
    height: 40px;
    max-width: 20%;
    padding: 7px 5px;
    width: 61px;
  box-sizing: border-box;
  margin: 0;
  
}

.markica {
    width: 100%;
    max-width: 40px;
}

.badge-procenat-markice {
    font-size: 15px;
    font-family: Barlow-medium;
    color: var(--white);
    background-color: var(--red);
    width: 45px;
    height: 45px;
    border-radius: 100px;
    display: block;
    line-height: 15px;
    text-align: center;
    position: absolute;
    top: 10px;
    right: 20px;
    width: auto;
    height: auto;
    padding: 5px;
    font-size: 10px;
}

.markice-header {
    width: 100%;
    max-height: 300px;
    height: auto;
}

.markice-img-small {
    width: 100px;
    max-height: 100px;
    height: auto;
}


/* VESTI */

.vesti-slika-placeholder {
    max-width: 360px;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-top: 0px;
    overflow: hidden;
}

.vesti-slika {
    width: 100%;
}

.naslov-vesti {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    color: var(--red);
}

/* POKLON */

.naslov-poklon {
    color: var(--white);
    font-family: Axiforma-medium;
    font-size: 45px;
    position: relative;
    line-height: 45px;
    text-transform: uppercase;
}

.naslov-poklon::after {
    content: '';
    background: url('/images/srce.png');
    background-repeat: repeat;
    background-size: auto;
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    margin-left: 5px;
    top: -30px;
    right: -20px;
    filter: brightness(100%) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(172deg) brightness(120%) contrast(81%);
}


/* MAPA */

#map {
    z-index: 0;
    height: 500px;
    border: 1px solid #ccc;
    max-width: 1240px;
    width: 100%;
    border-radius: 10px;
}

.mapa {
    border-radius: 10px;
    max-height: 400px;
    text-align: center;
    height: 100%;
    overflow: hidden;
}

.marker-cluster-small {
    background-color: var(--red);
}

.marker-cluster-small div {
    background-color: var(--red);
    color: var(--white);
}

.marker-cluster-small div span {
    font-weight: 400;
    color: var(--white);
}

.naziv {
    font-family: Barlow-medium;
    font-size: 14px;
    color: var(--red);
}

.adresa {
    font-family: Barlow-regular;
    font-size: 14px;
    color: var(--headline-color);
    line-height: 0px;
}

.radno-vreme {
    font-family: Barlow-light;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 0px;
}

.radno-vreme b {
    font-family: Barlow-medium;
    font-size: 14px;
}

/* SHOPPING LIST */

#shopping-list {
    padding: 0;
    margin-top: 20px;
    list-style: none;
}

#shopping-list-unos {
    padding: 0;
    margin-top: 20px;
    list-style: none;
}

.inline {
    display: inline !important;
}

.inline .add-item {
    width: auto !important;
    padding: 6px 10px;
}

.inline .add-item .material-icons-outlined {
    vertical-align: middle;
    color: var(--dark-text)
}

.inline .add-item-unos {
    width: auto !important;
    padding: 6px 10px;
}

.inline .add-item-unos .material-icons-outlined {
    vertical-align: middle;
    color: var(--dark-text)
}

.item-check {
    display: inline-block;
    position: absolute;
    width: 22px;
    height: 22px;
    cursor: pointer;
    background-image: url("/images/input.png");
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 5px;
}

.item-check-unos  {
    display: inline-block;
    position: absolute;
    width: 22px;
    height: 22px;
    cursor: pointer;
    background-image: url("/images/input.png");
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 5px;
}

.complete {
    background-image: url("/images/input-checked.png");
}

.item-text {
    margin-left: 30px;
}

.item-remove {
    float: right;
    cursor: pointer;
    width: 22px;
    height: 22px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("/images/close.png");
    margin-top: 5px;
}

.item-remove-unos  {
    float: right;
    cursor: pointer;
    width: 22px;
    height: 22px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("/images/close.png");
    margin-top: 5px;
}

/* FLIPBOOK */

.flipbook {
    margin: auto;
    margin-bottom: 30px;

}

.katalog-slike {
    max-width: 500px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.preview-slike {
    width: 100px;
    height: 100px;
    margin: 10px 15px 0 0;
    object-fit: contain;
}

.prevBtn {
    position: absolute;
    top: 40%;
    left: 0;
    z-index: 999;
}

.nextBtn {
    position: absolute;
    top: 40%;
    right: 15px;
    z-index: 999;
}


/* OSTALO */

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

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

hr {
    color: var(--headline-color);
}

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

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

.vertical-mid {
    vertical-align: middle;
}

.error-container {
    text-align: center;
}

.error-image {
    width: 150px;
}

.qr-code-friend svg,
.qr-code-greb svg {
    height: 150px;
    width: 150px;
}

.cookie-consent {
    padding: 25px;
}

.cookie-consent .cookie-consent__message {
    font-size: 18px;
    color: var(--dark-gray);
}

#pbic_error .alert-danger {
    border: none;
    color: var(--red);
    font-size: 14px;
}

#pbic_success .alert-success {
    border: none;
    color: var(--green);
    font-size: 14px;
}

#pbic_error .alert {
    margin-bottom: 0;
}

.povrat,
.potrosnja {
    width: 100%;
    display: flex;
    line-height: 0px;
}

.border-green {
    border: 2px solid var(--green);
}

.border-red {
    border: 2px solid var(--red);
}

.pozovi-prijatelja {
    align-items: center;
    display: flex;
    justify-content: center;
}

.leaflet-routing-container {
    display: none !important;
}

.qr-code-friend img,
.qr-code-greb {
    max-width: 240px;
    max-height: 240px;
}

.nav-icon img {
    width: 20px;
}

/* BADGE */

.badge-table {
    position: relative;
}

.status.badge {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border: none;
    display: block;
    line-height: 0;
    position: absolute;
    left: -15px;
    top: -12px;
    padding: 0;
}

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

.badge-overlay {
    position: absolute;
    z-index: 9;
}

/* ANIMATION */
@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

.disabled-link {
    pointer-events: none;
    opacity: 0.6;         
    cursor: not-allowed;   
}