:root {
    --main-colour: #FFCC00;
    --main-colour-light: #FFE88A;
    --main-colour-extra-light: #fff5cc;
    --text-with-main-colour-bk: black;
    --text-with-main-colour-bk-light: black;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    color: black;
    scroll-behavior: smooth;
}

.ContentBoxUpis {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.FAQCntr {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 30px;
    /* width: 1600px; */
}

.FAQItem {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;

}

.ImgNr {
    display: flex;
    gap: 5px;
    margin-top: 14px;
}

.Nr {
    font-size: 48px;
}

img.QuestionIcon {
    width: 80px;
    height: 49px;
    margin-top: 30px;
}

.QuestionAnswer {
    display: flex;
    flex-direction: column;
    flex: 1;
    /* gap: 10px; */
}

.Question {
    border-bottom: 2px solid var(--main-colour);
    line-height: 80%;
    font-weight: normal;
    font-size: 28px;
}

.Question,
.Answer {
    padding-left: 20px;
}

.AnswerCntr {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.Answer {
    font-size: 16px;
    line-height: 180%;
    margin: 0 !important;
}

.HighlightedBackground {
    /* background-color: var(--main-colour-extra-light); */
    padding: 0 4px;
}

ul.AnswerBullets {
    list-style-type: none;
    margin-left: 20px;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

ul.AnswerBullets li {
    padding-left: 20px;
    font-size: 16px;
    line-height: 28px;
    margin-top: 12px;
    margin-bottom: 12px;
}

ul.AnswerBullets li::before {
    content: "\25A0";
    color: var(--main-colour);
    margin-left: -20px;
    margin-right: 12px;
    font-size: 12px;
}

#BrziKontakti {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.FAQKontaktContainer {
    max-width: 300px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.FAQKontaktiIcon {
    width: 40px;
    height: 40px;
}

.FAQKontaktiPodatak {
    display: flex;
    align-self: center;
    font-size: 18px;
    margin-left: 10px;
}


.Answer a:link,
.Answer a:visited,
.Answer a:hover,
.Answer a:active,

.AnswerBullets a:link,
.AnswerBullets a:visited,
.AnswerBullets a:hover,
.AnswerBullets a:active {
    text-decoration: underline;
    color: black;
    font-weight: bold;
    background-color: var(--main-colour);
    padding: 0 4px;
}

footer {
    display: flex;
    flex-direction: column;
    background-color: var(--main-colour);
    /* color: white; */
    text-align: center;
    padding: 20px 0;
    font-size: 12px;
    gap: 10px;
    margin-top: 40px;
}

footer p {
    margin: 0 !important;
}

p.Odgovor p {
    margin-left: 20px !important;
}

.FAQItem:last-of-type p.Answer:last-of-type {
    margin-bottom: 30px !important;
}

#QRCodeContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;

}

#QRCodeContent {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 20px;
    align-items: center;
    text-align: center;
    border-radius: 8px;
    width: 300px;
}

#QRCodeCloseBtn {
    align-self: flex-end;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 20px;
}

#QRCodeTitle {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.ShowQR {
    padding: 0px 4px;
    background-color: var(--main-colour-light);
    background-color: #ececec;
}

.QRCodeBtnCntr {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    cursor: pointer;
    width: fit-content;
}

.QRCodeBtnCntr span,
.QRCodeBtnCntr img {
    pointer-events: none
}

#QRImg {
    width: 100%;
    /* height: 200px; */
}

.FAQItemsWrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media screen and (max-width: 1599px) {
    .FAQItemsWrapper {
        gap: 30px;
    }
}

@media screen and (max-width: 1300px) {
    .FAQCntr {
        width: 1100px;
    }
}

@media screen and (max-width: 1100px) {

    .FAQItemsWrapper {
        gap: 30px;
    }

    .FAQCntr {
        width: 100%;
        gap: 30px;
    }

    .FAQItem {
        gap: 5px;
        padding-right: 20px;
        align-items: flex-start;
    }

    .ImgNr {
        flex-direction: column;
        padding-left: 10px;
        margin: 0;
    }

    img.QuestionIcon {
        width: 40px;
        height: 24px;
        margin-top: 0;
        align-self: center;
        order: 2;
        display: none;
    }

    .Nr {
        font-size: 22px;
        color: rgb(160, 160, 160) !important;
    }



    .Question {
        border-bottom: 2px solid var(--main-colour);
        line-height: 150%;
        font-weight: normal;
        font-size: 18px;
        margin-bottom: 20px !important;
        margin-top: 0 !important;
    }

    .Question,
    .Answer {
        padding-left: 10px;
    }

    .Answer {
        font-size: 16px;
        line-height: 180%;
        margin: 0 !important;
    }

    ul.AnswerBullets {
        list-style-type: none;
        margin-left: 0px;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    ul.AnswerBullets li {
        padding-left: 0px;
        font-size: 16px;
        /* line-height: 28px; */
        margin-top: 5px;
        margin-bottom: 5px;
    }

    ul.AnswerBullets li::before {
        content: "\25A0";
        color: var(--main-colour);
        margin-left: -20px;
        margin-right: 12px;
        font-size: 12px;
    }

}