@charset "windows-1250";

/* GLOBAL */

* {
    box-sizing: border-box;
}
html {
    min-height: 100%;
}
body {
    margin: 0;
    padding: 0;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;
    font-size: 16px;
    line-height: 20px;
    color: #2f2f2f;
    background: #F1F0ED;
    -webkit-font-smoothing: antialiased;
}

/* HEADER */

#header {
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0px 0px 10px #00000015;
    padding: 0px 20px 5px 20px;
}
#header .header-inner{
    max-width: 1400px;
    height: 70px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
#header .logo {
    position: static;

    display: block;

    width: auto;
    height: auto;

    flex: 0 1 auto;
}
#header .logo img {
    display: block;

    width: auto;
    max-width: 350px;
    height: auto;

    border: 0;
}
#header .header-cta{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
#header .header-btn{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;

    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 5px 15px 7px 15px;
    border-radius: 0px;
    border: 1px solid transparent;

    background: linear-gradient(
        to right,
        #a70e13 50%,
        #2f2f2f 50%
    );

    background-size: 200% 100%;
    background-position: 100% 0;

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    transition: background-position 0.35s ease;
}
#header .header-btn:hover{
    background-position: 0 0;
}
#header .header-btn img{
    width: 15px;
    height: 15px;
    object-fit: contain;
    object-position: center;
    border: 0;
    vertical-align: middle;
}
#header .header-btn:last-of-type{
    border: 1px solid #a70e13;
    padding: 5px 15px 7px 20px;
}

/* WRAPPER */

#wrapper {
    width: 100%;
    min-height: 100vh;

    margin: 0 auto;
    padding: 150px 20px 150px 20px;
}

/* MAIN CONTENT */

#content {
    height: auto;
    min-height: 1px;
    margin: 0;

    border: none !important;
    background: transparent !important;
    
    clear: both;

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

    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* FOOTER */

#footer {
    width: 100%;
    height: 70px;
    position: relative;
    z-index: 999;
    background: linear-gradient(to top, #fff, #f1f0ed);
    padding: 10px 20px;
    border-top: 2px solid #a70e13;
}
#footer .footer-inner{
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
#footer a,
#footer span {
    color: #62666c;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}
#footer a {
    background: linear-gradient(
        to right,
        #a70e13 50%,
        #2f2f2f 50%
    );

    background-size: 200% 100%;
    background-position: 100% 0;

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    transition: background-position 0.35s ease;
}
#footer a:hover{
    background-position: 0 0;
}
.footer-separator {
    padding: 0 8px;
    color: #c4c6c9;
}


/* COOKIE BAR */

#cookiesInfo {
    position: fixed;
    z-index: 999999;
    left: 20px;
    bottom: 20px;
    width: 30%;
    background: #fff;
    border-top: 1px solid #e0e2e5;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}

.cookies-inner {
    max-width: 1180px;
    min-height: 54px;
    margin: 0 auto;
    padding: 12px 56px 12px 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookies-content {
    color: #555b61;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

.cookies-content a {
    margin-left: 4px;

    color: #a70e13;
    font-weight: 600;
    text-decoration: none;
}

.cookies-content a:hover {
    text-decoration: underline;
}

#closeCookie {
    position: absolute;

    right: 16px;
    top: 50%;

    width: 32px;
    height: 32px;

    padding: 0;

    transform: translateY(-50%);

    border: 0;
    border-radius: 4px;

    background: transparent;

    color: #555;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    line-height: 32px;

    cursor: pointer;

    transition:
        background-color 0.15s ease,
        color 0.15s ease;
}

#closeCookie:hover {
    background: #f1f2f3;
    color: #a70e13;
}

/* content default */

.reklamacje-content-main-box{
    max-width: 1400px;
    margin: 0 auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
}
.reklamacje-head {
    padding: 25px !important;
    margin: 0 !important;

    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 50px;

    background: linear-gradient(
        to right,
        #ffffff 65%,
        #F1F0ED 35%
    );

    border: 1px solid #e3e5e8;
    border-radius: 10px;

    box-shadow: 0px 0px 10px #ff000005;
}
.reklamacje-content {
    width: calc(65% - 25px);

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    gap: 20px;
}
.reklamacje-content h1{
    margin: 0;
    padding: 0;
    font-size: 27px;
    line-height: 1;
    font-weight: 600;
    color: #2f2f2f;
    padding-bottom: 10px;
}
.reklamacje-content p{
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #2f2f2f;
}
.reklamacje-button {
    width: calc(35% - 25px);

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;

    padding: 0 !important;
}
.reklamacje-button a{
    width: auto !important;
    height: auto !important;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    box-shadow: 0px 0px 10px #00000010;

    gap: 10px;

    transition: 0.3s all;

    border-radius: 10px;

    margin: 0 !important;
    padding: 15px !important;
}
.reklamacje-button a span{
    text-align: center;
    font-size: 18px;
    font-weight: 600 !important;
    line-height: 1.5;
    color: #2f2f2f;
}
.reklamacje-button a img{
    height: 90px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0px 0px 5px #00000000) !important;
    transition: 0.3s all;
}
.reklamacje-button a:first-of-type{
    color: #fff;
    background: #a70e13;
}
.reklamacje-button a:first-of-type span{
    color: #fff;
    filter: drop-shadow(0px 0px 5px #00000000) !important;
    transition: 0.3s all;
}
.reklamacje-button a:first-of-type:hover{
    background: #a70e1396;
}
.reklamacje-button a:nth-of-type(2):hover{
    background: #ffffff25;
}
.reklamacje-button a:nth-of-type(3):hover{
    background: #fff;
}
.reklamacje-button a:nth-of-type(4):hover{
    background: #fff;
}
.reklamacje-button a:first-of-type:hover span{
    filter: drop-shadow(0px 0px 5px #000000) !important;
}
.reklamacje-button a:first-of-type:hover img{
    filter: drop-shadow(0px 0px 5px #00000050) !important;
}
.reklamacje-button a:nth-of-type(2){
    background: #fff;
}
.reklamacje-button a:nth-of-type(3){
    background: #ffffff25;
}
.reklamacje-button a:nth-of-type(4){
    background: #ffffff25;
}

.additional-content{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 50px;
}
.additional-content h2{
    font-size: 22px;
    font-weight: 600;
    line-height: 25px;
    color: #2f2f2f;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: left;
}
.additional-content-items{
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: center;
    gap: 25px;
    width: 100%;
    height: auto;
}
.additional-content-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    border-radius: 10px;
    gap: 15px;
    width: 25%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        #ffffff 50%,
        #F1F0ED 100%
    );

    border: 1px solid #e3e5e8;

    box-shadow: 0px 0px 10px #ff000005;

    padding: 15px;
}
.additional-content-item h3{
    font-size: 18px;
    line-height: 22px !important;
    min-height: 44px;
    font-weight: 600;
    color: #2f2f2f;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
}
.additional-content-item ul{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.additional-content-item ul li{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 10px;
}
.additional-content-item ul li img{
    width: 20px;
    height: 20px;
    object-fit: contain;
    object-position: center;
}
.additional-content-item ul li a{
    text-decoration: none;
    color: #2f2f2f;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    background: linear-gradient(
        to right,
        #a70e13 50%,
        #2f2f2f 50%
    );

    background-size: 200% 100%;
    background-position: 100% 0;

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    transition: background-position 0.35s ease;
}
.additional-content-item ul li a:hover{
    background-position: 0 0;
}

/* forrmular */

#serwis-zgloszenia-form{
    padding: 25px !important;
    margin: 0 !important;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-between;
    gap: 50px;

    background: linear-gradient(
        to right,
        #ffffff 60%,
        #F1F0ED 40%
    );

    border: 1px solid #e3e5e8;
    border-radius: 10px;

    box-shadow: 0px 0px 10px #ff000005;
}
#serwis-zgloszenia-form h1{
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 27px;
    line-height: 1;
    font-weight: 600;
    color: #2f2f2f;
    text-align: left;
}
.forma{
    width: calc(60% - 40px);
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: start !important;
    justify-content: center !important;
    gap: 50px !important;
}
.item{
    width: calc(50% - 25px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0px;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
}
.itemspacer{
    margin: 0 !important;
    padding: 0 !important;
}
.forma .item label{
    position: absolute;
    z-index: 1;

    left: 20px;
    top: 50%;

    transform: translateY(-50%);

    width: auto;

    margin: 0 !important;
    padding: 0;

    font-size: 16px;
    line-height: 1;
    font-weight: 400;

    color: #2f2f2f;

    cursor: text;

    transition:
        top 0.2s ease,
        transform 0.2s ease,
        font-size 0.2s ease,
        color 0.2s ease;
}
.forma .item input,
.forma .item select,
.forma .item textarea{
    width: 100%;

    font-size: 16px;
    line-height: 20px;

    padding: 20px 20px 7px;

    border: 1px solid #a70e13;
    border-radius: 10px;

    background: #F1F0ED;
    color: #2f2f2f;

    font-weight: 400;

    min-height: 52px;

    box-sizing: border-box;
}
.forma .item:focus-within label,
.forma .item.is-filled label{
    top: 7px;

    transform: none;

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

    color: #0ea72f;
}
.forma .item:last-of-type{
    width: 100% !important;
}
.forma .item-static-label label {
    left: 20px;
    top: -25%;

    transform: translateY(-50%);
}
.forma .item-static-label:focus-within label,
.forma .item-static-label.is-filled label{
    left: 20px;
    top: -25%;
}
.forma .item input,
.forma .item select,
.forma .item textarea{
    padding: 13.5px 20px 13.5px;
}
.forma .item textarea{
    resize: none;
}
#SerwisZgloszenia_zgloszenia_zalacznik{
    padding: 7.5px 20px;
}
.zamianamodel{
    display: none !important;
}

.regulamin{
    width: calc(40% - 50px);
    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: start !important;
    justify-content: start !important;
    gap: 20px !important;

    transform: translateY(-80px);
}
.regulamin h2{
    font-size: 22px;
    font-weight: 300;
    line-height: 25px;
    color: #2f2f2f;
    margin: 0;
    padding: 0;
}
.regulamin p{
    font-size: 14px;
    font-weight: 400;
    line-height: 1.32;
    color: #2f2f2f;
    margin: 0;
    padding: 0;
}

.submit{
    width: calc(60% - 40px);
    border: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: start !important;
    justify-content: start !important;
    gap: 20px !important;
}
.submit .item{
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: start !important;
    justify-content: start !important;
    gap: 10px !important;
}



/* status zgloszenia */

#serwis-stan-zgloszenia-form{
    display: flex;
    align-items: center;
    justify-content: center;
}
#serwis-stan-zgloszenia-form .inside{
    background: #fff;

    border: 1px solid #e3e5e8;
    border-radius: 10px;

    box-shadow: 0px 0px 10px #ff000005;
    padding: 25px !important;
    margin: 0 !important;

    max-width: 500px;
    height: auto;

    display: flex !important;
    flex-direction: column;
    align-items: start !important;
    justify-content: start !important;
}
#serwis-stan-zgloszenia-form .inside h1{
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 27px;
    line-height: 1;
    font-weight: 600;
    color: #2f2f2f;
    text-align: left;
    padding-bottom: 10px;
}
#serwis-stan-zgloszenia-form .inside i{
    font-size: 14px;
    font-weight: 400;
    line-height: 1.32;
    color: #2f2f2f;
    margin: 0;
    padding: 0;
    text-align: left;
    padding-bottom: 20px;
}
#serwis-stan-zgloszenia-form .inside .forma{
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: start !important;
    justify-content: start !important;
    gap: 15px !important;
}
#serwis-stan-zgloszenia-form .inside .forma .item{
    width: 100% !important;
}
#serwis-stan-zgloszenia-form .inside .forma .item input{
    padding: 20px 20px 7px !important;
}
#serwis-stan-zgloszenia-form .inside .forma .submit{
    width: 100% !important;
}



/* sprawdzanie statusu */

.status-zgloszenia{
    display: flex !important;
    flex-direction: column !important;
    align-items: start !important;
    justify-content: start !important;
    gap: 0px !important;

    background: #fff;

    border: 1px solid #e3e5e8;
    border-radius: 10px;

    box-shadow: 0px 0px 10px #ff000005;
    padding: 25px !important;
    margin: 0 !important;
}
.status-zgloszenia a{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin-bottom: 25px;

    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #2f2f2f;
    padding: 5px 15px 7px 15px;
    border-radius: 0px;
    border: 1px solid #a70e13;

    background: linear-gradient(
        to right,
        #a70e13 50%,
        #2f2f2f 50%
    );

    background-size: 200% 100%;
    background-position: 100% 0;

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    transition: background-position 0.35s ease;
}
.status-zgloszenia a:hover{
    background-position: 0 0;
}
.status-zgloszenia a img{
    width: 15px;
    height: 15px;
    object-fit: contain;
    object-position: center;
    transform: rotate(-180deg);
}
.status-zgloszenia h2{
    font-size: 22px;
    font-weight: 500;
    line-height: 25px;
    color: #2f2f2f;
    margin: 0;
    padding: 0;
    text-align: left;
    padding-bottom: 10px;
}
.status-zgloszenia h2 strong{
    color: #a70e13;
}
.statusdescr p span span,
.statusdescr p{
    font-size: 16px !important;
    font-weight: 400;
    line-height: 1.32;
    color: #2f2f2f;
    margin: 0;
    padding: 0;
    text-align: left;
    padding-top: 10px;
}
.status-zgloszenia .forma,
.status-zgloszenia em .forma .submit{
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: start !important;
    justify-content: start !important;
    gap: 15px !important;
}
.status-zgloszenia .forma .item,
.status-zgloszenia em .forma .submit .item{
    position: relative;

    width: 300px !important;

    margin-top: 25px !important;
    padding: 0 !important;
}
.status-zgloszenia .forma .item input,
.status-zgloszenia em .forma .submit .item input{
    width: 100% !important;

    margin: 0 !important;
    padding: 20px 20px 7px !important;

    min-height: 52px;

    box-sizing: border-box;
}
.status-zgloszenia .forma .item label,
.status-zgloszenia em .forma .submit .item label{
    position: absolute;
    z-index: 2;

    left: 20px;
    top: 50%;

    transform: translateY(-50%);

    width: auto;

    margin: 0 !important;
    padding: 0;

    font-size: 16px;
    line-height: 1;
    font-weight: 400;

    color: #2f2f2f;

    cursor: text;
    pointer-events: none;

    transition:
        top 0.2s ease,
        transform 0.2s ease,
        font-size 0.2s ease,
        color 0.2s ease;
}
.status-zgloszenia .forma .item:focus-within label,
.status-zgloszenia em .forma .submit .item:focus-within label,
.status-zgloszenia .forma .item.is-filled label,
.status-zgloszenia em .forma .submit .item.is-filled label{
    top: 7px;

    transform: none;

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

    color: #a70e13;
}

/* =========================================================
   BASIC LEGACY COMPATIBILITY
   Nie przebudowujemy jeszcze formularza.
   ========================================================= */

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.button {
    border: 0 !important;
    border-radius: 0px;

    background: #a70e13;

    color: #fff !important;

    cursor: pointer;

    font-size: 16px;
    font-weight: 600;

    padding: 15px 40px;

    text-decoration: none;

    transition: background-color 0.15s ease;
}

.button:hover {
    background: #b71016;
}


/* responsywnosc */

@media (max-width: 1274px){
    .reklamacje-button a span{
        font-size: 16px;
        line-height: 1.3;
    }
}

@media (max-width: 1200px){
    .reklamacje-button a span{
        font-size: 14px;
        line-height: 1.2;
    }
}

@media (max-width: 1140px){
    .additional-content-item h3{
        min-height: 66px !important;
    }
}

@media (max-width: 1000px){
    #serwis-zgloszenia-form{
        background: #fff !important;
    }
    .forma,
    .submit{
        width: 100% !important;
    }
    .regulamin{
        width: 100% !important;
        transform: translateY(0px);
    }
}

@media (max-width: 900px) {
    #header .header-inner{
        max-width: 100%;
    }
    #header .logo img {
        max-width: 180px;
    }
    .reklamacje-head {
        flex-direction: column !important;
        background: #fff !important;
    }
    #header .header-cta a:first-of-type{
        display: none;
    }
    .reklamacje-content,
    .reklamacje-button{
        width: 100% !important;
    }
    #cookiesInfo {
        width: calc(100% - 40px) !important;
    }
    .additional-content-items{
        flex-wrap: wrap;
    }
    .additional-content-item{
        width: calc(50% - 12.5px);
    }
    .additional-content-item h3{
        min-height: 44px !important;
    }
    .forma .item{
        width: 100% !important;
    }
}

@media (max-width: 575px){
    .additional-content-item h3{
        min-height: 66px !important;
    }
}




/* LEGACY FLOAT FIX
   Stare widoki ADAX opieraja layout na float:left/right. */
#content,
#content .inside,
.reklamacje-typ,
.forma,
.form,
.regulamin,
.submit {
    display: flow-root;
}   
#content .inside::after,
.reklamacje-typ::after,
.submit::after {
    content: "";
    display: block;
    clear: both;
}   
#footer {
    clear: both;
}

/* DATEPICKER */
.ui-datepicker {
    width: 320px !important;
    padding: 15px !important;

    background: #fff !important;

    border: 1px solid #d9d9d9 !important;
    border-radius: 0 !important;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;

    font-family: inherit !important;
    font-size: 14px !important;

    z-index: 99999 !important;
}

/* HEADER */
.ui-datepicker .ui-datepicker-header {
    position: relative;

    padding: 12px 40px !important;
    margin: 0 0 12px 0;

    background: #f1f0ed !important;

    border: 0 !important;
    border-radius: 0 !important;

    color: #2f2f2f !important;
}
.ui-datepicker .ui-datepicker-title {
    margin: 0 !important;

    text-align: center;

    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
}

/* STRZAŁKI */
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    position: absolute;
    top: 50% !important;

    width: 32px !important;
    height: 32px !important;

    transform: translateY(-50%);

    border: 0 !important;
    border-radius: 0 !important;

    background: transparent !important;

    cursor: pointer;
}
.ui-datepicker .ui-datepicker-prev {
    left: 5px !important;
}
.ui-datepicker .ui-datepicker-next {
    right: 5px !important;
}
.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
    background: #fff !important;
}

/* TABELA */
.ui-datepicker table {
    width: 100% !important;
    margin: 0 !important;

    border-collapse: separate !important;
    border-spacing: 4px !important;
}
.ui-datepicker th {
    padding: 6px 0 !important;

    font-size: 12px !important;
    font-weight: 600 !important;

    color: #777 !important;
}
.ui-datepicker td {
    padding: 0 !important;

    border: 0 !important;
}

/* DNI */
.ui-datepicker td a,
.ui-datepicker td span {
    display: flex !important;

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

    width: 100% !important;
    height: 34px !important;

    padding: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;

    background: #f1f0ed !important;

    color: #2f2f2f !important;

    text-align: center !important;
    text-decoration: none !important;

    font-weight: 400 !important;
}

/* HOVER */
.ui-datepicker td a:hover {
    background: #dddcd9 !important;

    color: #a70e13 !important;
}

/* DZISIAJ */
.ui-datepicker .ui-datepicker-today a {
    outline: 1px solid #a70e13 !important;

    background: #fff !important;

    color: #a70e13 !important;
}

/* WYBRANA DATA */
.ui-datepicker .ui-state-active {
    background: #a70e13 !important;

    color: #fff !important;

    outline: none !important;
}

/* USUWAMY STARY JQUERY UI LOOK */
.ui-datepicker .ui-state-default,
.ui-datepicker .ui-widget-content .ui-state-default,
.ui-datepicker .ui-widget-header .ui-state-default {
    box-shadow: none !important;
    text-shadow: none !important;
}