/* CUSTOM UPLOAD BUTTON */

.upload-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
  }
  
  .btn {
    border: 1px solid gray;
    color: gray;
    background-color: white;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: regular;
  }
  
  .btn:hover {
    border: 1px solid gray;
    color: white;
    background-color: gray;
  }
  
  .upload-btn-wrapper input[type=file] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
  }

header.votingNotActive{
    height: 100vh;
    margin: 0px;
    padding: 0px;
}

.daterangepicker {
    z-index: 10000 !important;
}

.prodList .top button.scheduleVoting {
    padding: 10px 20px !important;
    height: auto !important;
    border-radius: 20px;
    margin-left: 15px;
    background-color: #FFE600;
    color: black;
}

#scheduleDateTime{
    display: block;
    width: 70%;
    height: 30px;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #ccc;
    outline: none;
    margin: 30px auto;
    font-size: 14px;
}

.prodList .top button.scheduleVoting img {
    height: 14px;
    vertical-align: bottom;
    margin-right: 3px
}

header.votingNotActive .bkgHolder{
    height: 80vh;
    margin: 0px;
    padding: 10vh 0;
}

/* CUSTOM UPLOAD BUTTON */
.csvUploadButtons{
    margin-top: 20px;
}

.csvUploadButtons button:first-of-type{
    border: none;
    color: black;
    background-color: #FFE600;
    padding: 8px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.csvUploadButtons button:last-of-type{
    border: none;
    color: black;
    background-color: #B0B0B0;
    padding: 8px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}
.upload-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 8px;
  }
  
  .btnUpload {
    border: none;
    color: white;
    background-color: #0077c8;
    padding: 8px 20px;
    font-size: 16px;
    border-radius: 5px;
  }
  
  .upload-btn-wrapper input[type=file] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
  }

  #editProduct select {
    width: 100%;
    border: 1px solid lightgrey;
    background-color: white;
    padding: 10px 10px;
    font-size: 14px;
    border-radius: 3px;
}

.boxUploadSelect {
    position: relative;
    width: 70%;
    margin: auto;
  }


  .boxUploadSelect select {
    background-color: #fafafa;
    color: #3F424F;
    padding: 12px;
    width: 100%;
    border: none;
    font-size: 18px;
    -webkit-appearance: button;
    appearance: button;
    outline: none;
    border: 1px solid #3F424F;
  }
  
  .boxUploadSelect::before {
    content: "";
    font-family: roboto;
    position: absolute;
    top: 0;
    right: 0px;
    width: 20%;
    height: 100%;
    text-align: center;
    font-size: 28px;
    line-height: 45px;
    background-image: url('../img/icon-arrow01.svg');
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
  }
  
  .boxUploadSelect:hover::before {
    color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.2);
  }
  
  .boxUploadSelect select option {
    padding: 30px;
  }

/* TOGGLE SWITCH */

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin-left: 15px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #62ff04;
}

input:focus+.slider {
    box-shadow: 0 0 1px #62ff04;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* TOGGLE END */

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

.votingHeadlineHolder button {
    background-color: lightcoral;
    color: white;
    padding: 0px 20px;
    height: 60px;
    border: none;
    font-weight: bold;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    display: block;
    border-radius: 10px;
    transition: 0.3s;
}

.votingHeadlineHolder button:hover {
    background-color: red;
}

.logOut {
    color: white;
    font-weight: bold;
    padding: 10px 0 0 20px;
}

body,
html {
    padding: 0 auto;
    margin: 0 auto;
    font-family: 'Noto Sans', sans-serif;
    background-color: white;
    width: 100%;
    overflow-x: hidden;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

button:disabled,
button[disabled] {
    cursor: not-allowed;
    background-color: #DCDCDC !important;
}

button:disabled:hover,
button[disabled]:hover {
    filter: brightness(1);
}

p {
    font-size: 12px;
}

a {
    color: inherit;
    text-decoration: none;
    outline: none;
    cursor: pointer;
}

input {
    outline: none;
    cursor: pointer;
}

button {
    outline: none;
    cursor: pointer;
    transition: 0.3s;
}

a:hover,
button:hover,
input[type=submit]:hover {
    filter: brightness(1.2);
}

.whiteTxt {
    color: white;
}

header {
    position: initial;
    width: 100%;
    margin: 0;
    color: white;
    font-family: 'Noto Sans', sans-serif;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: 100% auto;
    /*background-position: bottom;*/
    background-attachment: fixed;
    text-align: center;
    background-image: url("../img/PH153816_lowres.jpg");
   /* text-shadow: 2px 2px 8px black;*/
   /* text-shadow: 1px 1px 3px white;*/
  /* height: 100vh;*/
   background-size: cover;
   background-position: center;
}
@media screen and (min-width: 600px)
div header{
    background-position: bottom;
    
}
.bkgHolder {
    height: 100%;
    width: 100%;
    padding: 10vh 0 30px;
    margin: 0;
    color: white;
    font-family: 'Noto Sans', sans-serif;
    display: inline-block;

    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: bottom;
    background-attachment: fixed;
    text-shadow: 2px 2px 8px black;
}

∂ header.vote-sucess {
    position: initial;
    height: 100vh;
    width: 100%;
    padding: 0 0 30px;
    margin: 0;
    color: white;
    font-family: 'Noto Sans', sans-serif;
    display: inline-block;
    background-image: url("../img/PH153816_lowres.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 0;
    text-align: center;
    background-attachment: fixed;
}

.successBox {
    width: 80%;
    margin: auto;
    /*background-color: white;*/
    /*background-color: rgba(255,255,255,0.4)*/
     background-color: rgba(255,255,255,0.4);
    border-radius: 10px;
    max-width: 700px;
    margin-top: 20vh;
    color: black;
    padding: 5%;
}

.infoBox {
    max-width: 1200px;
    width: 80%;
    border: 1px #E1E1E1 solid;
    border-radius: 10px;
    margin: 50px auto 0;
    position: relative;
}

.infoBox p {
    text-align: center;
    padding: 30px 10%;
    font-weight: bold;
    font-size: 16px;
}

.closeInfoBox {
    border: none;
    background-color: transparent;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 35px;
    height: 35px;
}

.closeInfoBox img {
    width: 100%;
}

.triangle {
    position: absolute;
    z-index: 10000;
    bottom: -20px;
    left: 50%;
    margin-left: -10px;
    opacity: 0;
    width: 20px;
    transition: 0.3s;
}

.fixedTriangle {
    position: fixed;
    top: 0;
}

#top20 {
    height: 40vh;
    min-height: 510px;
}

#top20 h1 {
    position: relative;
   top: 30%;
}

#terms {
    height: 20vh;
}


#terms h1 {
    margin-top: 20%;
}

/*
header .parallax{
     background-image: url(../img/PH153816_lowres.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
    background-attachment: fixed;
    min-height: 500px;
}
*/

/* ADMIN MODALS */



#formModal {
    margin-top: 5%;
    max-width: 500px;
    margin-left: 50%;
    transform: translateX(-50%);
}

#editProduct {
    width: 90%;
    max-width: 500px;
    margin: 50px auto 10px;
    text-align: left;
}

#editProduct span {
    text-align: left;
    font-weight: bold;
    display: block;
    padding-left: 0px;
}

#editProduct input {
    display: block;
    width: 94%;
    padding: 10px 3%;
    border: 1px solid lightgrey;
    border-radius: 3px;
    text-align: left;
    font-size: 14px;
}

#editProduct label {
    display: block;
    text-align: left;
    padding: 14px 20px 5px;
}

#editProduct select {
    width: 100%;
    border: 1px solid lightgrey;
    background-color: white;
    padding: 10px 10px;
    font-size: 14px;
    border-radius: 3px;
}

#editProduct input {
    display: block;
    width: 94%;
    padding: 10px 3%;
    border: 1px solid lightgrey;
    border-radius: 3px;
    text-align: left;
    font-size: 14px;
}

.checkboxHolder {
    margin-top: 0px;
}

.checkboxHolder div {
    margin-top: 10px;
}

#editProduct .checkboxHolder label {
    display: inline;
    padding: 0px;
    margin-right: 20px;
    color: #828282;
}

#editProduct input[type="checkbox"] {
    display: inline;
    width: initial;
    padding: 10px 3%;
    border: 1px solid lightgrey;
    border-radius: 3px;
    text-align: left;
    font-size: 14px;
}


.glasHead {
    margin-top: 80px;
    text-align: center;
    font-weight: 300;
    color: grey;

}

nav {
    position: absolute;
    padding: 15px 5%;
    width: 90%;
    outline: none;
    background: #0077c8;
}

nav .menu {
    float: right;
}

nav .menu #menu {
    position: absolute;
    right: -100%;
    top: 0;
    padding: 0 90px 50px 50px;
    margin: 0;
    height: auto;
    transition: 0.5s;
    list-style-type: none;
    width: 20%;
}

nav .menu #menu li:first-child {
    margin-top: 60px;
}

nav .menu #menu li {
    margin-top: 30px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

nav .menu #menu li:hover {
    color: #FFE600;
}

nav .menu #menu li a.active {
    color: #FFE600;
}

nav .menu.active #menu {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #0077C8;
    z-index: 9999;
}

#menuToggle {
    position: absolute;
    z-index: 999999;
    right: 5%;
    top: 15px;
    cursor: pointer;
}

#menuToggle span {
    width: 25px;
    height: 3px;
    margin-top: 6px;
    display: block;
    border-radius: 3px;
    background-color: white;
    transition: 0.3s;
}

#menuToggle span:nth-child(1) {
    margin-top: 3px;
}

.menu.active span:nth-child(1) {
    display: none;
    opacity: 0;
}

.menu.active span:nth-child(2) {
    transform: rotate(45deg);
    width: 28px !important;
}

.menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
    width: 28px !important;
}

header img {
    left: 40%;
    display: block;
    margin: 5% auto auto;
}

header h1 {
    margin: 2% 0 0;
    text-align: center;
    color: white;
}

header h3 {
    text-align: center;
    margin: 1% auto 0;
    color: white;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 100;
    width: 40%;
    font-size: 18px;
    line-height: 1.45;
    padding-top: 1rem;
    position: relative;
    top: 30%;
}

header .successBox h1 {
    text-align: center;
    color: black;
}

header .successBox h3 {
    color: black;
    width: 90%;
}

header .buttons {
    margin: 2% 0 0;
    text-shadow: none;
    position: relative;
   top: 30%;
}

.btn.orange {
    padding: 16px 30px;
    text-align: center;
    background: #FFE600;
    top: 35%;
    left: 25.5%;
    border-radius: 3px;
    border: none;
    color: black;
    font-family: 'Noto Sans', sans-serif;
    font-size: 13px;
    font-weight: bold;
    display: inline-block;
}

.btn.blue {
    padding: 16px 30px;
    text-align: center;
    background: #0077C8;
    top: 23.5%;
    left: 49.5%;
    border-radius: 3px;
    border: none;
    color: white;
    font-family: 'Noto Sans', sans-serif;
    font-size: 13px;
    font-weight: bold;
    display: inline-block;
    margin-top: 15px;
}

header p {
    text-align: center;
    font-size: 12px;

}

.navigation {
    background: #f5f5f5;
    height: 160px;
    width: 100%;
    display: inline-block;
    color: black;
    transition: 1s;
    border-top: 1px solid #E1E1E1;
    border-bottom: 1px solid #E1E1E1;
    box-sizing: border-box;
    z-index: 1000;
}

.navHolder {
    width: 80%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    height: 100%;
    justify-content: space-between;
}

.navigation .nav_icon {
    text-align: center;
    position: relative;
    height: 160px;
    width: inherit;
    border: 1px solid #E1E1E1;
    margin-left: -1px;
    margin-top: -1px;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.3s;
}

.navigation .nav_icon:hover>img {
    transform: scale(1);
    transition: 0.3s ease-in-out;
}

.navigation .nav_icon:hover {
    background-color: rgba(255, 255, 255, 1);
    transition: 0.3s ease-in-out;
}

.navigation .nav_icon:hover>img.catMainImg {
    transform: scale(1.15);
    transition: 0.3s ease-in-out;
}

.navigation .nav_icon.active {
    background-color: white;
    border: 3px #0077c8 solid;
    border-right: 4px solid #0077c8;
}

.navigation .nav_icon.active>.triangle {
    opacity: 1;
    bottom: -11px;
}

.navigation .nav_icon img.catMainImg {
    height: 65%;
    margin: 5% auto auto;
}

.navigation .nav_icon p {
    position: absolute;
    width: 80%;
    text-align: center;
    bottom: 10px;
    margin: 0;
    margin-left: 10%;

    font-weight: bold;
    font-size: 12px;
    line-height: 1.2;
    text-transform: uppercase;
}

#main {
    max-width: 1200px;
    width: 80%;
    margin: 8% auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* #main::after {
    content: "";
    flex: auto;
  } */

#termsMain {
    max-width: 800px;
    width: 80%;
    margin: 100px auto;
    table-layout: fixed;
}

#termsMain h3 {
    text-align: center;
}

#termsMain p {
    text-align: justify;
}

footer {
    background: #3F424F;
    display: inline-block;
    width: 100%;
    font-size: 14px;
    font-family: 'Noto Sans', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 10px;
    line-height: normal;
    text-align: center;
}

footer p {
    padding-bottom: 60px;
}

#normalFooter p {
    padding-bottom: 0px;
}

.insideHeadline {
    text-align: center;
    width: 80%;
    margin: auto;
    margin-top: 80px;
}

.prodBox {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    background-color: white;
    width: 24%;
    box-shadow: 0 2px 4px rgba(119, 107, 130, 0.4);
    margin: 0.5% 0;
    padding-bottom: 20px;
    border-radius: 2px;
    cursor: pointer;
    border: 3px solid white;
    display: block;
    transition: 0.3s;
}

.prodBox:empty {
    height: 0;
    border: none;
    box-shadow: 0 0px 0px rgba(119, 107, 130, 0);
}

.prodBox:hover {
    filter: brightness(1);
    box-shadow: 0 2px 6px rgba(119, 107, 130, 0.6);
}

.prodBox.selected {
    border: 3px solid #0077c8;
    box-shadow: 0 0 0 rgba(119, 107, 130, 0.4);
}

.prodBox.selected .leftPart .heartIcon {
    background-image: url("../img/icon-heart-selected.svg");
}

.prodBox.top20 .leftPart .heartIcon {
    background-image: url(../img/icon-heart-selected.svg);
}

.prodBox.top20 .leftPart span.voteNum {
    color: black;
}

.prodBox.selected .leftPart span.voteNum {
    color: black;
}

.prodBox img.prodImg {
    width: 100%;
}

.prodBox h1 {
    font-size: 18px;
    margin: 20px 0 0 20px;
}

.prodBox p.txt {
    font-size: 12px;
    margin: 0 0 0 20px;
    width: 80%;
}

.prodBox .prodPrice {
    font-size: 24px;
    font-weight: bold;
    margin: 15px 0 0px 20px;
    width: auto;
}

.prodBox .leftPart {
    float: left;
    margin: 13px 0 0 13px;
    vertical-align: middle;
}

.prodBox .leftPart .heartIcon {
    vertical-align: middle;
    width: 40px;
    height: 40px;
    display: inline-block;
    background-image: url("../img/icon-heart.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.prodBox .leftPart span.voteNum {
    margin-left: 8px;
    font-size: 16px;
    color: #d2d2d2;
}

.prodBox .rightPart {
    float: right;
    margin: 13px 13px 0 0;
    height: 25px;
    transition: 0.3s;
}

.prodBox .rightPart:hover {
    background-color: rgba(76, 133, 205, 0.38);
}

.prodBox .rightPart img {
    width: 25px;
}

/* -- Bottom bar -- */

.fixedTop {
    position: fixed;
    top: 0;
    box-shadow: 0 0 10px rgba(119, 107, 130, 0.3);
}

.fixedBot {
    position: fixed;
    bottom: 0;
    box-shadow: 0 0 10px rgba(119, 107, 130, 0.3);
}

.infoHolder {
    background-color: white;
    height: 60px;
    width: 100%;
    transition: 1s;
}

.infoBar {
    width: 80%;
    max-width: 1200px;
    margin: auto;
}

.infoBar div {
    width: 33.3%;
    display: block;
    float: left;
    padding-top: 20px;
}

.infoBar .bullet {
    text-align: left;
}

.infoBar span.bullet {
    width: 15px;
    height: 15px;
    background-color: #E0E0E0;
    display: inline-block;
    border-radius: 50%;
    margin: 0 6px;
}

.infoBar span.bullet.active {
    background-color: #0077c8;
}

.infoBar span.bulTxt {
    color: #0077c8;
    font-size: 17px;
    margin-left: 10px;
}

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

.infoBar .midNav .arrow {
    height: 22px;
    vertical-align: middle;
    cursor: pointer;
    width: 30px;
}

.infoBar .midNav span {
    padding: 0 30px;
    font-family: 'Noto Sans', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 13px;
    line-height: normal;
    text-align: center;
    color: #B0B0B0;
}

.infoBar .submit {
    text-align: right;
    padding-top: 12px;
}

.infoBar .submit button {
    text-align: right;
    background-color: #DCDCDC;
    border: none;
    border-radius: 5px;
    padding: 10px 40px;
    font-weight: bold;
    font-size: 12px;
    line-height: normal;
    text-align: center;
    color: #FFFFFF;
}

.infoBar .submit button.active {
    background-color: #FFE600;
    color: black;
}

/* -- MODAL -- */

.modalHolder {
    display: none;
}

.modal {
    display: none;
    text-align: center;
    padding: 40px;
}

.modalHolder.active {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    top: 0;
    left: 0px;
}

.modalHolder.active>.modal.active {
    display: block;
    width: 50%;
    min-height: 200px;
    position: absolute;
    margin-top: 15%;
    margin-left: 25%;
    background-color: white;
    border-radius: 10px;
}

.modal.active .close {
    width: 18px;
    height: 18px;
    display: block;
    position: absolute;
    right: 30px;
    top: 30px;
    cursor: pointer;
}

.modal h1 {
    font-size: 20px;
    font-weight: normal;
    color: #828282;
}

.modal p {
    font-size: 14px;
    font-weight: normal;
    color: #828282;
    margin-bottom: 40px;
}

.modal p.info {
    margin: 0px;
}

.modal .left {
    display: block;
    width: 50%;
    float: left;
    position: relative;
    padding-top: 32px;
}

.modal .right {
    display: block;
    width: 40%;
    float: left;
    position: relative;
    text-align: left;
    padding-top: 30px;
}

.modal .ifamInput {
    width: 100%;
    max-width: 285px;
    height: 48px;
    border-radius: 7px;
    border: 1px solid lightgrey;
    font-family: 'Noto Sans', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    outline: none;
    color: #939393;
    padding-left: 5%;
    margin-bottom: 10px;
}

.ifamInput.error {
    border: 1px solid red;
}

.ifamInput.error before {
    content: 'Krivi broj kartice';
    color: red;
}

.g-recaptcha {
    margin-bottom: 10px;
}

/*  -- ADMIN SUCELJE --  */
/*  ---- ADMIN SUCELJE ----  */
/*  ------ ADMIN SUCELJE ------  */
/*  -------- ADMIN SUCELJE --------  */
/*  ---------- ADMIN SUCELJE ----------  */
/*  -------- ADMIN SUCELJE --------  */
/*  ------ ADMIN SUCELJE ------  */
/*  ---- ADMIN SUCELJE ----  */
/*  -- ADMIN SUCELJE --  */

nav.admin {
    width: 90%;
    height: 40px;
    background-color: #0051BA;
    position: relative;
    z-index: 10;
}

nav.admin a img {
    padding-top: 8px;
}

nav.admin span {
    color: white;
    font-weight: bold;
    padding: 10px 0 0 20px;
}

.mainAdmin {
    position: absolute;
    top: 0;
    min-height: 100vh;
    width: 100%;
    background-image: url("../img/PH153816_lowres.jpg");
    background-size: cover;
    z-index: 0;
}

Footer.adminFooter {
    position: fixed;
    bottom: 0;
    margin-top: 100px;
}

.loginBox {
    width: 400px;
    min-height: 400px;
    background-color: white;
    border-radius: 8px;
    position: absolute;
    top: 20%;
    left: 50%;
    margin-left: -200px;
    box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.loginBox h1 {
    font-size: 22px;
    padding: 40px 0 5px;
    color: dimgray;
}

.loginBox form {
    width: 80%;
    margin: auto;
}

.loginBox form label {
    display: block;
    text-align: left;

    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: normal;

    color: grey;
    padding-left: 15px;
}

.loginBox form input[type="email"],
.loginBox form input[type="password"] {
    width: 95%;
    height: 40px;
    margin-top: 10px;
    border-radius: 8px;
    border: 1px solid lightgrey;
    padding-left: 5%;
    font-size: 13px;
    margin-bottom: 25px;
}

.monthAdmin {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto auto;
}

.boxHolder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.monthAdmin h1 {
    font-size: 28px;
    color: #3f424f;
}

a.monthBox {
    width: 49.5%;
    height: 100px;
    background-color: white;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    display: block;
    margin-bottom: 0.8%;
    transition: 0.5s;
}

a.monthBox:hover {
    filter: brightness(1);
    background-color: #0051BA;
    color: white;
}

a.monthBox:hover h1 {
    color: white;
}

.monthBox>div:first-child {
    width: 56%;
    padding: 4% 7%;
}

.monthBox div {
    width: 30%;
    float: left;
}

.prodValue {
    margin-top: 40px;
    display: block;
    text-align: right;
    margin-right: 40px;
    color: #C4C4C4;
}

span.circle {
    width: 11px;
    height: 11px;
    background-color: #C4C4C4;
    display: inline-block;
    border-radius: 50%;
}

span.circle::after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    display: inline-block;
    border: 2px solid #C4C4C4;
    border-radius: 50%;
    margin-left: -4px;
    margin-top: -4px;
}

span.circle.active {
    background-color: #62ff04;
}

span.circle.active::after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    display: inline-block;
    border: 2px solid #62ff04;
}

.monthBox h1 {
    font-size: 20px;
    display: inline-block;
    margin-left: 16px;
}

body.adminBody {
    background-color: #F9F9F9;
    min-height: 100vh;
}

header.vote-sucess .buttons .btn.orange {
    width: 180px;
    padding: 16px 0px;
}

header.vote-sucess .buttons .btn.blue {
    width: 180px;
    padding: 16px 0px;
}

@media screen and (max-width: 1100px) {
    .prodBox {
        width: 32%;
    }

    .navigation .nav_icon p {
        font-size: 10px;
    }
}

@media screen and (max-width: 600px) {

    /*  ---------- ADMIN SUCELJE LOGIN----------  */

    nav.admin {
        width: 100%;
    }

    .mainAdmin {
        width: 100%;
    }

    .loginBox {
        width: 100%;
        width: 100%;
        margin-left: initial;
        left: initial;
        border-radius: 0;

    }

    /*  ---------- ADMIN SUCELJE MONTH---------  */

    .monthAdmin h1 {
        margin-top: 5%;
        margin-bottom: 3%;

    }

    .monthAdmin {
        margin-top: 0;
        margin-bottom: 5%;
        width: 90%;
    }

    .boxHolder {
        width: 100%;
        margin-bottom: 0;
    }

    .monthBox {
        margin: 2% 5%;
    }

    a.monthBox {
        width: 100%;
        height: 70%;

    }

    a.monthBox h1 {
        margin: 5%;
    }

    .prodValue {
        margin-top: 23%;
    }

    a.addNew {
        transform: scale(0.7);
        margin-top: 2%;

    }

    li.cateBox {
        width: 49%;
        height: 100%;

        margin: 1% 0;

    }

    li.cateBox .cateImage {
        margin-left: 5%;
        margin-bottom: 4%;
    }

    Footer.adminFooter {
        height: 40px;
        width: 100%;

    }

    nav .menu #menu {
        display: none;

    }

    nav .menu.active #menu {
        display: block;

    }

    header h1 {
        /* margin-top: 5%; */
    }

    header h3 {
        width: 80%;
        /* margin-top: 3%; */
    }

    #main .prodBox {
        min-width: 135px;
        width: 48%;
        margin: 2% 0;

    }

    .prodBox h1 {
        font-size: 14px;
    }

    .prodBox .txt {
        font-size: 10px;

    }

    .prodBox .prodPrice {
        font-size: 14px;
    }

    .fixedTop {
        bottom: 60px !important;
        top: initial;
        position: fixed;

    }

    .navHolder {
        width: 80%;

    }

    .navigation {
        height: 80px;
        position: fixed;
        bottom: 0;
        width: 100%;
    }

    .navigation .nav_icon {
        height: 103%;

    }

    .navigation .nav_icon p {
        font-size: 10px;

    }

    .navigation .nav_icon img {
        height: 50%;
    }

    .infoHolder {
        height: 60px;
        width: 768px;
    }

    .infoBar span.bullet {
        width: 11px;
        height: 11px;
        background-color: #E5E5E5;
        display: inline-block;
        border-radius: 50%;
        margin-top: 2%;

    }

    .infoBar .midNav {
        display: none;
    }

    .infoBar span.bulTxt {
        font-size: 12px;
        margin-left: 15%;

    }

    .infoBar .submit {

        padding: 8px 0;
        margin-top: 6px;
        margin-left: 40%;

    }

    .infoBar .submit button {
        padding: 8px 30px;
    }

    .infoBar div {
        width: 30%;
    }

}

.addNew {
    width: 100%;
    height: 100px;
    border: 2px dashed #0051BA;
    border-radius: 10px;
    display: block;
    margin-bottom: 0.8%;
    transition: 0.5s;
    text-align: center;
    margin-top: 15px;
}

.addNew h1 {
    font-weight: normal;
    margin-top: 40px;
    color: #0051BA;
    font-size: 22px;
}

.addNew:hover {
    background-color: #0051BA;
}

.addNew:hover h1 {
    color: white;
}

.cateImage {
    width: 20%;
    margin: 0;
    vertical-align: middle;
}

.cateBox {
    width: 49.5%;
    height: 100px;
    /* background-color: white; */
    /* box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3); */
    border-radius: 5px;
    display: block;
    margin-bottom: 0.8%;
    border: 1px solid lightgrey;
    transition: 0.5s;
}

.appHolder {
    margin-bottom: 100px;
}

.cateBox div {
    margin-top: 8px;
}

.cateBox div span {
    font-weight: bold;
    font-size: 20px;
    color: #3f424f;
}

/*  -- ADMIN PROD  --  */
/*  ---- ADMIN PROD  ----  */
/*  ------ ADMIN PROD  ------  */
/*  -------- ADMIN PROD  --------  */
/*  ---------- ADMIN PROD  ----------  */
/*  -------- ADMIN PROD  --------  */
/*  ------ ADMIN PROD  ------  */
/*  ---- ADMIN PROD  ----  */
/*  -- ADMIN PROD --  */

.prodList .top {
    display: flex;
    justify-content: space-between;
}

.prodList .top div {
    font-size: 24px;
}

.prodList .top div span {
    font-weight: bold;
}

.prodList .top button {
    background-color: #0051BA;
    padding: 8px 20px;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    height: 50px;
}

.categoryBtn {
    padding: 10px 25px;
    font-size: 14px;
    background-color: #E5E5E5;
    border: none;
    border-radius: 5px;
    color: #909090;
}

.categoryBtn.active {
    background-color: white;
    color: #0051BA;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/*  ---------- PROD LIST ----------  */
/*  ---------- PROD LIST ----------  */
/*  ---------- PROD LIST ----------  */
/*  ---------- PROD LIST ----------  */
/*  ---------- PROD LIST ----------  */
/*  ---------- PROD LIST ----------  */
/*  ---------- PROD LIST ----------  */

.prodHolder {
    margin-top: 20px;
    margin-bottom: 150px;
}

.prodHolder ul {
    list-style-type: none;
    padding: 0;
}

.prodHolder ul li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid lightgray;
}

.prodHolder ul li {
    margin: 0;
}

#prodId {
    width: 30px;
    margin-top: 20px;
    padding-left: 5px;
}

.prodInfo {
    margin-top: 13px;
    width: 250px;
    margin-bottom: 13px;
}

.prodPrice {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    width: 120px;
}

.prodLink {
    margin-top: 20px;
    font-size: 14px;
    transition: 0.3s;
    width: 450px;
}

.prodLink:hover {
    color: #0051BA;
}

.prodVote {
    margin-top: 20px;
}

.prodVote img {
    vertical-align: middle;
}

.prodVote span {
    color: #0077c8;
    font-weight: bold;
    vertical-align: middle;
}

.prodIcons {
    margin-top: 20px;
}

.prodIcons>* {
    vertical-align: middle;
    margin: 0 10px;
    padding-right: 5px;
}

.prodImg {
    width: 65px;
    vertical-align: middle;
    margin-top: 0 !important;
}

.imgLink {
    position: relative;
}

.imgLink:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background-image: url("https://svgur.com/i/CAP.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 40%;
    background-color: rgba(0, 81, 186, 0.8);
    opacity: 0;
    transition: 0.3s;
}

.imgLink:hover:after {
    opacity: 0.95;
}

.prodInfo h3,
.prodInfo p {
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

/* For mobile phones */
@media screen and (max-width: 1000px) and (min-width: 600px) {
    #vueApp #top20 h1{
        /* margin-top: 16%; */
        /* margin-top: 20%; */
    }
    #vueApp #top20 h3{
        width:70%;
        /* padding-top: 1rem; */
        /* margin-top: 10%; */
        position: relative;
        top: 30%;
    }
    
  }

  @media screen and (max-width: 1000px) and (min-width: 600px) {
    #vueApp #top20 h1{
        /* margin-top: 16%; */
        /* margin-top: 20%; */
    }
    #vueApp #top20 h3{
        width:70%;
        /* padding-top: 1rem; */
        /* margin-top: 10%; */
        position: relative;
        top: 30%;
    }
    
  }
  
@media screen and (max-width: 600px) {
    .prodHolder ul li{
        display: flex;
        flex-direction: column;
    }
    div#menuHamburger {
        width: 100%;
        margin: 0px;
        position: absolute;
        top: 0;
        padding: 0;
        background-color: #0077C8;
    }

    #menuToggle {
        right: 8%;
    }



    footer {
        width: 96%;
        padding: 0 2%;
    }

    #top20 {
        height: 40vh;
        min-height: auto;
        background-position: bottom;
    }

    #top20 h1 {
        /* margin-top: 22%; */
        position: relative;
   top: 30%;
    }

    nav {
        height: 25px;
        position: absolute;
        z-index: 100;
        width: 100%;
        padding: 15px 0px;
    }

    nav #home {
        margin-left: 10%;
    }

    nav .menu #menu {
        display: none;
        width: 100%;

    }

    nav .menu.active #menu {
        display: block;
        position: relative;
        height: auto;
        padding: 0;
        margin: auto;
        width: 80%;
        text-align: center;
        text-decoration: none;

    }

    nav .menu.active #menu li {
        margin-bottom: 25px;
    }

    nav .menu.active #menu li a.active {
        color: #FFE600;
    }

    body {
        width: 100%;
        overflow-x: hidden;
        height: 100%;

    }

    /* header */

    header {
        /*height: 250px;*/
        background-size: cover;

    }

    .bkgHolder {
        padding: 0;
        margin-top: 30px;
    }

    header img {
        display: none;
    }

    header h1 {
         margin-top: 11%; 
        font-size: 140%;
    }

    header .successBox h1 {
        margin-top: 5%;
        font-size: 140%;
    }

    header h3 {
        width: 85%;
        font-size: 80%;
        /* margin-top: 6%; */
    }

    header p {
        font-size: 60%;
    }

    header .buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 90%;
        margin: 15px auto;

    }

    header.vote-sucess .buttons {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: center;
        width: 100%;
        margin: 15px auto;
    }

    .btn.orange {
        font-size: 10px;
        padding: 12px 0;
        width: 200px;
        margin: 0px 10px 0px 0px;
    }

    .btn.blue {
        font-size: 10px;
        padding: 12px 0;
        width: 120px;
        margin: initial
    }

    /* navigation */

    .fixedTop {
        bottom: 46px !important;
        top: initial;
        position: fixed;

    }

    .navigation {
        height: 59px;
        position: fixed;
        bottom: 0;
        width: 100%;
    }

    .navigation .nav_icon {
        height: 103%;
    }

    .navHolder {
        width: 100%;

    }

    .navigation .nav_icon p {
        font-size: 8px;
        margin-bottom: 2px;
        width: 90%;
        margin-left: 5%;
    }

    .navigation .nav_icon img.catMainImg {
        height: 73%;
        margin: 5% auto auto;
        opacity: 0.4;
    }

    .navigation .nav_icon img {
        height: 50%;
        margin-top: 15%;
    }

    .navigation .nav_icon img.triangle {
        position: absolute;
        z-index: 10000;
        bottom: -18px;
        left: 50%;
        margin-left: -7.5px;
        opacity: 0;
        width: 15px;
        transition: 0.3s;
    }

    .fixedBot {
        position: fixed;
        bottom: 0;
        box-shadow: 0 0 10px rgba(119, 107, 130, 0.3);

    }

    /* main */

    .prodBox .leftPart .heartIcon {
        vertical-align: middle;
        width: 30px;
        height: 30px;
        display: inline-block;
        background-image: url(../img/icon-heart.svg);
        background-size: contain;
        background-repeat: no-repeat;
    }

    #main {
        flex-wrap: wrap;
        width: 90%;
        margin: 10px auto;

    }

    #main .prodBox {
        min-width: 135px;
        width: 48%;
        margin: 2% 0;
        position: relative;
        padding-bottom: 10px;
    }

    .prodBox h1 {
        font-size: 14px;
        margin: 5px 0 0 15px;
        padding-bottom: 0px;
    }

    .prodBox p.txt {
        font-size: 10px;
        margin: 0px 0 0 15px;
        line-height: 1.2;
        padding-bottom: 5;
    }

    .prodBox .prodPrice {
        font-size: 14px;
        bottom: 0px;
        margin-left: 15px;
        margin: 5px 15px 0px;
    }

    /* .prodBox .leftPart 
     */

    .prodBox .leftPart span.voteNum {
        font-size: 14px;
        margin-left: 5px;
    }

    /* infoBar */

    .infoHolder {
        height: 46px;
        width: 100%;
    }

    .infoBar span.bullet {
        width: 9px;
        height: 9px;
        background-color: #E5E5E5;
        display: inline-block;
        border-radius: 50%;
        margin: 4px 2px;

    }

    .infoBar {
        width: 90%;

    }

    .infoBar .midNav {
        display: none;
    }

    .infoBar span.bulTxt {
        font-size: 12px;
        margin-left: 10%;
        vertical-align: text-top;

    }

    .infoBar .submit {
        margin: 0;
    }

    .infoBar .submit button {
        padding: 8px 30px;
    }

    .infoBar div {
        padding-top: 15px;
        width: 50%;
    }

    /* Modal */

    .modal {
        display: none;
        text-align: center;
        padding: 10%;
    }

    .modal p {
        margin-bottom: 30px;
        margin-top: 20%;
    }

    .modal h1 {
        margin-top: 20%;
    }

    .modalHolder.active>.modal.active {
        width: 60%;
        margin-left: 10%;
    }

    .modal .btn.orange {
        transform: scale(1.2);
    }

    .modal .btn.blue {
        transform: scale(1.2);
    }

    .modal h1 {
        font-size: 12px;
    }

    .modal .left {
        float: none;
        width: 100%;
    }

    .modal .left img {
        width: 60%;

    }

    #votingModal .btn.blue {
        display: block;
        margin: 10% auto;
    }

    .modal .right {
        width: 95%;
    }

    .modal .right input {
        font-size: 12px;
    }

    .g-recaptcha div {
        width: 100%;

    }

    footer p {
        margin-bottom: 16%;
        font-size: 8px;

    }
}
.prodPrice sup {
    font-size: 0.8rem;
}
