/* =========================================================
   STUDIO MOON – NAROČANJE
   ========================================================= */

   

/* =========================================================
   OSNOVNO
   ========================================================= */

.narocanje-body {
    background:
        radial-gradient(
            circle at 82% 8%,
            rgba(195, 151, 75, 0.12),
            transparent 30%
        ),
        #f3ede3;

    color: #191713;
}


.narocanje-stran {
    min-height: 100vh;

    padding:
        165px
        40px
        90px;
}


.narocanje-ovoj {
    width: min(1450px, 100%);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(300px, 0.78fr)
        minmax(620px, 1.35fr);

    gap: clamp(60px, 7vw, 120px);

    align-items: start;
}


/* =========================================================
   LEVA STRAN
   ========================================================= */

.narocanje-uvod {
    position: sticky;

    top: 155px;

    padding:
        48px
        10px
        40px
        0;
}


.narocanje-oznaka {
    margin:
        0
        0
        25px;

    color: #ad8135;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2.3px;

    text-transform: uppercase;
}


.narocanje-uvod h1 {
    max-width: 600px;

    margin:
        0
        0
        28px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(58px, 5.5vw, 88px);
    font-weight: normal;

    line-height: 0.96;
    letter-spacing: -3px;
}


.narocanje-uvod h1 span {
    display: block;

    color: #b88735;

    font-style: italic;
}


.narocanje-opis {
    max-width: 540px;

    margin:
        0
        0
        48px;

    color: #6a6258;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   TRI INFORMACIJSKE VRSTICE
   ========================================================= */

.narocanje-info {
    max-width: 540px;

    border-top:
        1px solid rgba(25, 23, 19, 0.14);
}


.narocanje-info > div {
    display: grid;

    grid-template-columns:
        46px
        1fr;

    gap: 18px;

    padding: 20px 0;

    border-bottom:
        1px solid rgba(25, 23, 19, 0.14);
}


.narocanje-info > div > span {
    color: #b88735;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.4px;
}


.narocanje-info p {
    margin: 0;

    color: #766e63;

    font-size: 13px;
    line-height: 1.6;
}


.narocanje-info strong {
    display: block;

    margin-bottom: 3px;

    color: #25211c;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 17px;
    font-weight: normal;
}


/* =========================================================
   KONTAKT NA LEVI
   ========================================================= */

.narocanje-kontakt {
    max-width: 540px;

    margin-top: 34px;

    padding:
        20px
        22px;

    background: rgba(255, 255, 255, 0.45);

    border:
        1px solid rgba(120, 91, 43, 0.13);

    border-radius: 18px;
}


.narocanje-kontakt > p {
    margin:
        0
        0
        12px;

    color: #8d8376;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.narocanje-kontakt > div {
    display: flex;
    flex-direction: column;

    gap: 7px;
}


.narocanje-kontakt a {
    width: fit-content;

    color: #29251f;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 16px;

    text-decoration: none;
}


.narocanje-kontakt a:hover {
    color: #b88735;
}


/* =========================================================
   GLAVNA KARTICA
   ========================================================= */

.narocanje-kartica {
    min-height: 720px;

    padding:
        34px
        clamp(34px, 4vw, 60px)
        48px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.97),
            rgba(250, 247, 241, 0.94)
        );

    border:
        1px solid rgba(117, 91, 51, 0.13);

    border-radius: 30px;

    box-shadow:
        0 30px 80px rgba(58, 43, 22, 0.10),
        0 4px 12px rgba(58, 43, 22, 0.05);
}


/* =========================================================
   NAPREDEK
   ========================================================= */

.koraki {
    display: grid;

    grid-template-columns:
        auto
        1fr
        auto
        1fr
        auto;

    align-items: center;

    gap: 14px;

    margin-bottom: 55px;

    padding-bottom: 25px;

    border-bottom:
        1px solid rgba(25, 23, 19, 0.10);
}


.korak {
    padding: 0;

    display: flex;
    align-items: center;

    gap: 9px;

    appearance: none;

    background: transparent;
    border: 0;

    color: #aaa195;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.25px;

    text-transform: uppercase;

    cursor: default;
}


.korak span {
    width: 31px;
    height: 31px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(25, 23, 19, 0.14);

    border-radius: 50%;

    color: #9d9589;

    font-size: 8px;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}


.korak.aktivni {
    color: #191713;
}


.korak.aktivni span,
.korak.opravljen span {
    background: #c99b47;
    border-color: #c99b47;

    color: #191713;
}


.korak.opravljen {
    color: #837a6e;
}


.koraki-crta {
    height: 1px;

    background:
        rgba(25, 23, 19, 0.12);
}


/* =========================================================
   POSAMEZNI KORAK
   ========================================================= */

.narocanje-korak {
    animation:
        prikaziKorak
        0.35s
        ease;
}


@keyframes prikaziKorak {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.korak-glava {
    margin-bottom: 38px;
}


.korak-glava > p {
    margin:
        0
        0
        13px;

    color: #b88735;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.korak-glava h2 {
    margin:
        0
        0
        14px;

    color: #191713;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(38px, 3.8vw, 55px);
    font-weight: normal;

    line-height: 1;

    letter-spacing: -1.6px;
}


.korak-glava > span {
    display: block;

    max-width: 650px;

    color: #766e64;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   POLJA
   ========================================================= */

.polje {
    margin-bottom: 25px;
}


.polje > label,
.izvajalke-polje legend {
    margin:
        0
        0
        10px;

    display: flex;

    gap: 8px;

    color: #4b453d;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}


.polje > label span {
    color: #9f978b;

    font-weight: 600;

    letter-spacing: 0.6px;

    text-transform: none;
}


.polje input,
.polje select,
.polje textarea {
    width: 100%;

    appearance: none;

    padding:
        17px
        18px;

    background:
        rgba(245, 240, 232, 0.76);

    border:
        1px solid rgba(74, 59, 38, 0.15);

    border-radius: 14px;

    outline: none;

    color: #211e19;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 15px;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}


.polje textarea {
    min-height: 125px;

    resize: vertical;

    line-height: 1.6;
}


.polje input:focus,
.polje select:focus,
.polje textarea:focus {
    background: #ffffff;

    border-color:
        rgba(184, 135, 53, 0.65);

    box-shadow:
        0 0 0 4px
        rgba(184, 135, 53, 0.08);
}


.polje input::placeholder,
.polje textarea::placeholder {
    color: #aaa195;
}


.polje select:disabled {
    opacity: 0.55;

    cursor: not-allowed;
}


.select-okvir {
    position: relative;
}


.select-okvir::after {
    content: "⌄";

    position: absolute;

    top: 50%;
    right: 18px;

    color: #9d742e;

    font-size: 19px;

    pointer-events: none;

    transform: translateY(-58%);
}


.select-okvir select {
    padding-right: 48px;
}


.polja-dva {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 18px;
}


.polje-pomoc {
    margin:
        9px
        2px
        0;

    color: #958c80;

    font-size: 11px;
    line-height: 1.55;
}


/* =========================================================
   NAPAKE
   ========================================================= */

.napaka {
    min-height: 17px;

    margin:
        7px
        2px
        0;

    display: block;

    color: #a54d3e;

    font-size: 11px;
    line-height: 1.4;
}


.polje.napacno input,
.polje.napacno select,
.polje.napacno textarea {
    border-color:
        rgba(165, 77, 62, 0.55);
}


/* =========================================================
   IZBRANA STORITEV
   ========================================================= */

.izbrana-storitev {
    margin-top: 10px;

    padding:
        18px
        20px;

    display: grid;

    grid-template-columns:
        auto
        1fr;

    gap: 18px;

    align-items: center;

    background: #1b1915;

    border-radius: 17px;

    color: #f7f2e9;
}


.izbrana-storitev > span {
    color: #d3a64f;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.6px;

    text-transform: uppercase;
}


.izbrana-storitev strong {
    display: block;

    margin-bottom: 4px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;
    font-weight: normal;
}


.izbrana-storitev small {
    color: #aaa297;

    font-size: 11px;
}


/* =========================================================
   IZVAJALKE
   ========================================================= */

.izvajalke-polje {
    margin:
        0
        0
        27px;

    padding: 0;

    border: 0;
}


.izvajalke {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 14px;
}


.izvajalka {
    position: relative;

    min-height: 115px;

    padding:
        20px
        20px
        18px;

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    background:
        #f5f0e8;

    border:
        1px solid rgba(82, 64, 40, 0.14);

    border-radius: 17px;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}


.izvajalka:hover {
    transform: translateY(-2px);

    border-color:
        rgba(184, 135, 53, 0.40);
}


.izvajalka input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}


.izvajalka-vrh {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 14px;
}


.izvajalka-stevilka {
    color: #b88735;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.3px;
}


.izvajalka-krog {
    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(69, 53, 33, 0.20);

    border-radius: 50%;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease;
}


.izvajalka-krog::after {
    content: "";

    width: 8px;
    height: 8px;

    background: transparent;

    border-radius: 50%;
}


.izvajalka strong {
    margin-top: 17px;

    display: block;

    color: #29251f;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 23px;
    font-weight: normal;
}


.izvajalka small {
    margin-top: 4px;

    display: block;

    color: #91887c;

    font-size: 10px;
}


.izvajalka:has(input:checked) {
    background:
        #201e19;

    border-color:
        #201e19;

    box-shadow:
        0 12px 35px rgba(38, 30, 19, 0.12);

    transform: translateY(-2px);
}


.izvajalka:has(input:checked) strong {
    color: #ffffff;
}


.izvajalka:has(input:checked) small {
    color: #aaa398;
}


.izvajalka:has(input:checked) .izvajalka-krog {
    background: #c99b47;
    border-color: #c99b47;
}


.izvajalka:has(input:checked) .izvajalka-krog::after {
    background: #191713;
}


.izvajalka.samodejno {
    cursor: default;
}


/* =========================================================
   POVZETEK
   ========================================================= */

.povzetek {
    margin:
        12px
        0
        24px;

    padding:
        22px;

    background: #211f1a;

    border-radius: 18px;

    color: #ffffff;
}


.povzetek-glava {
    margin-bottom: 18px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;
}


.povzetek-glava p {
    margin: 0;

    color: #d2a64e;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.6px;

    text-transform: uppercase;
}


.povzetek-glava span {
    color: #8f887e;

    font-size: 10px;
}


.povzetek dl {
    margin: 0;
}


.povzetek dl > div {
    padding: 12px 0;

    display: grid;

    grid-template-columns:
        125px
        1fr;

    gap: 20px;

    border-top:
        1px solid rgba(255, 255, 255, 0.09);
}


.povzetek dt {
    color: #8f887f;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


.povzetek dd {
    margin: 0;

    color: #f6f1e9;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 16px;

    text-align: right;
}


/* =========================================================
   SOGLASJE
   ========================================================= */

.soglasje {
    position: relative;

    display: grid;

    grid-template-columns:
        22px
        1fr;

    gap: 12px;

    align-items: start;

    cursor: pointer;
}


.soglasje input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}


.soglasje-kvadrat {
    width: 20px;
    height: 20px;

    margin-top: 1px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f6f1e9;

    border:
        1px solid rgba(64, 50, 31, 0.22);

    border-radius: 6px;
}


.soglasje-kvadrat::after {
    content: "✓";

    color: #191713;

    font-size: 12px;
    font-weight: 800;

    opacity: 0;
}


.soglasje input:checked + .soglasje-kvadrat {
    background: #c99b47;
    border-color: #c99b47;
}


.soglasje input:checked + .soglasje-kvadrat::after {
    opacity: 1;
}


.soglasje > span:last-child {
    color: #766e64;

    font-size: 12px;
    line-height: 1.6;
}


.soglasje a {
    color: #9b702a;

    text-underline-offset: 3px;
}


.soglasje-napaka {
    margin-left: 34px;
}


/* =========================================================
   GUMBI
   ========================================================= */

.korak-gumbi {
    margin-top: 35px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.korak-gumbi-desno {
    justify-content: flex-end;
}


.gumb-naprej,
.gumb-oddaj {
    min-height: 55px;

    padding:
        7px
        8px
        7px
        22px;

    display: inline-flex;
    align-items: center;

    gap: 20px;

    background: #191713;

    border: 0;
    border-radius: 999px;

    color: #ffffff;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}


.gumb-naprej span,
.gumb-oddaj-puscica {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #c99b47;

    border-radius: 50%;

    color: #191713;

    font-size: 17px;
}


.gumb-naprej:hover,
.gumb-oddaj:hover {
    background: #2b2822;

    box-shadow:
        0 12px 28px
        rgba(25, 23, 19, 0.15);

    transform: translateY(-2px);
}


.gumb-nazaj {
    padding:
        12px
        0;

    background: transparent;

    border: 0;

    color: #736b60;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    cursor: pointer;
}


.gumb-nazaj:hover {
    color: #191713;
}


.gumb-oddaj:disabled {
    opacity: 0.55;

    cursor: wait;

    transform: none;
}


.oddaja-opomba {
    margin:
        18px
        0
        0;

    color: #999085;

    font-size: 10px;
    line-height: 1.55;

    text-align: right;
}


/* =========================================================
   USPEH
   ========================================================= */

.narocanje-uspeh {
    min-height: 620px;

    padding:
        35px
        20px;

    display: flex;
    flex-direction: column;

    align-items: flex-start;
    justify-content: center;

    animation:
        prikaziKorak
        0.4s
        ease;
}


.uspeh-ikona {
    width: 54px;
    height: 54px;

    margin-bottom: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #c99b47;

    border-radius: 50%;

    color: #191713;

    font-size: 22px;
}


.narocanje-uspeh > p:first-of-type {
    margin:
        0
        0
        16px;

    color: #b88735;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.6px;

    text-transform: uppercase;
}


.narocanje-uspeh h2 {
    margin:
        0
        0
        22px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(48px, 5vw, 72px);
    font-weight: normal;

    line-height: 0.98;
    letter-spacing: -2px;
}


.narocanje-uspeh h2 em {
    display: block;

    color: #b88735;

    font-weight: normal;
}


.uspeh-opis {
    max-width: 590px;

    margin:
        0
        0
        30px;

    color: #70685e;

    font-size: 15px;
    line-height: 1.75;
}


.uspeh-povzetek {
    width: 100%;

    max-width: 620px;

    margin-bottom: 35px;

    padding:
        18px
        20px;

    background: #f3eee6;

    border:
        1px solid rgba(71, 54, 31, 0.11);

    border-radius: 16px;

    color: #5f584f;

    font-size: 13px;
    line-height: 1.7;
}


.uspeh-domov {
    display: inline-flex;
    align-items: center;

    gap: 17px;

    color: #191713;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.2px;

    text-decoration: none;
    text-transform: uppercase;
}


.uspeh-domov span {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #c99b47;

    border-radius: 50%;

    font-size: 16px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.narocanje-footer {
    width: min(1450px, calc(100% - 80px));

    margin: 0 auto;

    padding:
        27px
        0
        32px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 35px;

    border-top:
        1px solid rgba(25, 23, 19, 0.14);
}


.narocanje-footer > div {
    display: flex;
    flex-direction: column;

    gap: 5px;
}


.narocanje-footer > div span {
    color: #b88735;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.narocanje-footer > div strong {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 17px;
    font-weight: normal;
}


.narocanje-footer nav {
    display: flex;
    align-items: center;

    gap: 24px;
}


.narocanje-footer nav a,
.narocanje-footer nav span {
    color: #8f867b;

    font-size: 10px;

    text-decoration: none;
}


.narocanje-footer nav a:hover {
    color: #b88735;
}


/* =========================================================
   TABLICA / iPAD – 701px do 1100px
   ========================================================= */

@media (min-width: 701px) and (max-width: 1100px) {

    .narocanje-stran {
        padding:
            145px
            34px
            70px;
    }


    .narocanje-ovoj {
        width: min(850px, 100%);

        grid-template-columns: 1fr;

        gap: 42px;
    }


    .narocanje-uvod {
        position: static;

        padding:
            20px
            8px
            0;
    }


    .narocanje-uvod h1 {
        max-width: 760px;

        font-size: clamp(60px, 8vw, 76px);
    }


    .narocanje-opis {
        max-width: 690px;

        margin-bottom: 32px;
    }


    .narocanje-info {
        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

        max-width: none;

        border-top: 0;

        gap: 10px;
    }


    .narocanje-info > div {
        grid-template-columns: 1fr;

        gap: 10px;

        padding:
            18px
            16px;

        background:
            rgba(255, 255, 255, 0.38);

        border:
            1px solid rgba(25, 23, 19, 0.10);

        border-radius: 15px;
    }


    .narocanje-kontakt {
        max-width: none;
    }


    .narocanje-kartica {
        min-height: 680px;

        padding:
            32px
            40px
            45px;
    }


    .korak-glava h2 {
        font-size: 48px;
    }


    .narocanje-footer {
        width: calc(100% - 68px);
    }

}


/* =========================================================
   iPAD PRO – 1024 × 1366 POKONČNO
   ========================================================= */

@media
    (min-width: 950px)
    and (max-width: 1100px)
    and (min-height: 1200px) {

    .narocanje-stran {
        padding-top: 165px;
    }


    .narocanje-ovoj {
        width: min(900px, 100%);
    }


    .narocanje-uvod h1 {
        font-size: 78px;
    }


    .narocanje-kartica {
        padding:
            38px
            52px
            52px;
    }

}


/* =========================================================
   TELEFON / iPHONE
   ========================================================= */

@media (max-width: 700px) {

    .narocanje-stran {
        padding:
            112px
            16px
            55px;
    }


    .narocanje-ovoj {
        grid-template-columns: 1fr;

        gap: 34px;
    }


    .narocanje-uvod {
        position: static;

        padding:
            20px
            6px
            0;
    }


    .narocanje-oznaka {
        margin-bottom: 18px;

        font-size: 9px;
    }


    .narocanje-uvod h1 {
        margin-bottom: 21px;

        font-size: clamp(44px, 13vw, 58px);

        line-height: 1;
        letter-spacing: -2px;
    }


    .narocanje-opis {
        margin-bottom: 30px;

        font-size: 14px;
        line-height: 1.7;
    }


    .narocanje-info {
        display: none;
    }


    .narocanje-kontakt {
        margin-top: 0;
    }


    .narocanje-kartica {
        min-height: 0;

        padding:
            24px
            18px
            30px;

        border-radius: 23px;
    }


    /* NAPREDEK */

    .koraki {
        gap: 7px;

        margin-bottom: 38px;

        padding-bottom: 18px;
    }


    .korak {
        gap: 0;

        font-size: 0;
    }


    .korak span {
        width: 29px;
        height: 29px;

        font-size: 7px;
    }


    .koraki-crta {
        min-width: 12px;
    }


    /* NASLOVI */

    .korak-glava {
        margin-bottom: 30px;
    }


    .korak-glava h2 {
        font-size: clamp(35px, 10vw, 44px);

        line-height: 1.02;
    }


    .korak-glava > span {
        font-size: 13px;
    }


    /* POLJA */

    .polja-dva {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .polje {
        margin-bottom: 21px;
    }


    .polje input,
    .polje select,
    .polje textarea {
        padding:
            15px
            15px;

        border-radius: 12px;

        font-size: 16px;
    }


    /* IZVAJALKE */

    .izvajalke {
        grid-template-columns: 1fr;
    }


    .izvajalka {
        min-height: 100px;
    }


    /* POVZETEK */

    .povzetek {
        padding:
            19px
            17px;
    }


    .povzetek-glava {
        align-items: flex-start;
        flex-direction: column;

        gap: 4px;
    }


    .povzetek dl > div {
        grid-template-columns: 1fr;

        gap: 5px;
    }


    .povzetek dd {
        text-align: left;
    }


    /* GUMBI */

    .korak-gumbi {
        margin-top: 27px;
    }


    .gumb-naprej,
    .gumb-oddaj {
        min-height: 52px;

        padding-left: 18px;

        gap: 13px;
    }


    .gumb-naprej span,
    .gumb-oddaj-puscica {
        width: 37px;
        height: 37px;
    }


    .oddaja-gumbi {
        align-items: flex-start;
        flex-direction: column-reverse;
    }


    .gumb-oddaj {
        width: 100%;

        justify-content: space-between;
    }


    .oddaja-opomba {
        text-align: left;
    }


    /* USPEH */

    .narocanje-uspeh {
        min-height: 540px;

        padding:
            20px
            4px;
    }


    .narocanje-uspeh h2 {
        font-size: 48px;
    }


    /* FOOTER */

    .narocanje-footer {
        width: calc(100% - 38px);

        padding-bottom: 25px;

        align-items: flex-start;
        flex-direction: column;
    }


    .narocanje-footer nav {
        align-items: flex-start;
        flex-direction: column;

        gap: 9px;
    }

}


/* =========================================================
   ZELO MAJHEN TELEFON
   ========================================================= */

@media (max-width: 390px) {

    .narocanje-stran {
        padding-right: 12px;
        padding-left: 12px;
    }


    .narocanje-kartica {
        padding-right: 15px;
        padding-left: 15px;
    }


    .narocanje-uspeh h2 {
        font-size: 43px;
    }

}
/* SUCCESS JE SKRIT, DOKLER JS NE ODSTRANI hidden */


.narocanje-stran [hidden] {
    display: none !important;
}