.form-buttons-container{
    display: flex;
    flex-direction: row;
    column-gap: 30px;
}
.form-navigate-prev, .form-navigate-next{
    background-color: #FFF;
    color: #333;
    font-size: 1.25rem;
    font-weight: 700;
    border: solid 3px #333;
    padding: 15px 30px;
    cursor: pointer;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-navigate-next{
    background-color: #333;
    color: #FFF;
}
.form-navigate-prev:hover, .form-navigate-next:hover{
    background-color: #FF8989;
    border-color: #FF8989;
    transition: 0.5s;
}
.error{
    position: absolute;
    top: 120%;
    left: 20px;
    color: rgba(255, 0, 0, 0.80);
    font-size: 0.95rem;
    font-weight: 700;
    
}

#krok1{
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 50px;
}
.form-input-container{
    display: flex;
    flex-direction: row;
    position: relative;
    border: solid 3px #000;
    box-shadow: 10px 10px #000;
    max-width: 600px;
    width: 100%;
}
.form-input-container.errored{
    box-shadow: 10px 10px red;
}
.form-input-inner-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 15px 15px 20px 10px;
    row-gap: 10px;
}
.custom-placeholder{
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(51, 51, 51, 0.80);
    text-transform: uppercase;
    text-align: left;
}
.custom-placeholder p{
    color: rgba(51, 51, 51, 0.80);
    font-size: 0.95rem;
    margin: 5px 0 0 0;
    text-transform: lowercase;
    font-style: italic;
}
.input-sidespace{
    width: 80px;
    border-left: solid 3px black;
    display: flex;
    align-items: center;
    color: red;
    font-size: 1.9rem;
    font-weight: 500;
    flex-direction: column;
}
.xcontent{
    color: red;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

#Steps{
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}
.step{
    width: 35px;
    height: 35px;
    background-color: #333;
    color: #FFF;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}
.step.done{
    width: 35px;
    height: 35px;
    background-color: #FF514B;
}
.steps-separator{
    background-color: #E7E7E7;
    height: 7px;
    width: 70px;
}
.steps-separator.done{
    background: #FF514B;
}


#krok2{
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 50px;
}
#radioContainer{
    display: grid;
    /* grid-template-columns: 30% 30% 30%; */
    grid-template-columns: 50% 50%;
    column-gap: 50px;
    position: relative;
    justify-content: center;
}
#errorForma{
    top: -10%;
}
#errorTytul{
    top: 110%;
}
.radio-choice{
    border: solid 4px #333;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 35px;
    box-shadow: 10px 10px #000;
    cursor: pointer;
    transition: 0.5s;
    height: 220px;
}
.radio-choice.choice3{
    display: none;
}
.radio-choice.radio-error{
    box-shadow: 10px 10px red;
}
.radio-choice:hover{
    box-shadow: 5px 5px #000;
    transform: translateX(5px) translateY(5px);
    transition: 0.5s;
}
.radio-choice.clicked{
    box-shadow: 0px 0px #000;
    transform: translateX(10px) translateY(10px);
    transition: 0.5s;
}
.radio-choice label{
    position: absolute;
    bottom: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(51, 51, 51, 0.80);
}
.krok2.radio{
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.number-field{
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: textfield;
}



#krok3{
    display: flex;
    flex-direction: column;
    row-gap: 80px;
    align-items: center;
    justify-content: center;
}
#krok3 .error{
    top: 107%;
}
.regulamin-container{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
#Regulamin, #Zgoda{
    opacity: 0;
    position: absolute;
    z-index: -1;
}
#krok3 label{
    position: relative;
    font-size: 1.1rem;
    
}
#Zgoda-container{
    width: 80%;
    transform: translateX(50px);
    margin-top: 20px;
}
#custom-regule-checkbox, #custom-zgoda-regule-checkbox{
    position: absolute;
    width: 35px;
    height: 35px;
    border: solid 2px black;
    right: 108%;
    top: 0;
    bottom: 0;
    margin: auto 0;
    cursor: pointer;
    box-shadow: 4px 4px black;
    color: #00000000;
    transition: 0.3s;
    transform: translateX(-4px) translateY(-4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-align: center;
    font-size: 1.5rem;
    user-select: none;
}
#custom-zgoda-regule-checkbox{
    right: 102%;
}
#custom-regule-checkbox span, #custom-zgoda-regule-checkbox span{
    transform: rotateY(180deg) rotate(-45deg);
    font-size: 1.5rem;
    transition: 0.3s;
    color: #00000000;
}
#custom-regule-checkbox.checkbox-error{
    box-shadow: 4px 4px red;
}
#custom-regule-checkbox:hover, #custom-zgoda-regule-checkbox:hover{
    box-shadow: 2px 2px black;
    transform: translateX(-2px) translateY(-2px);
    transition: 0.3s;
}
#custom-regule-checkbox.checked, #custom-zgoda-regule-checkbox.checked{
    box-shadow: 0px 0px black;
    transform: translateX(0px) translateY(0px);
    transition: 0.3s;
}
#custom-regule-checkbox.checked span, #custom-zgoda-regule-checkbox.checked span{
    color: #333;
    transition: 0.3s;
}
#errorRegulamin{
    left: -40px;
    top: 120%;
}
#krok3 #errorFilm{
    top: 125%;
}

.all-form-objects-container{
    justify-content: space-between;
}
.tip{
    border-bottom: solid 3px black;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    font-size: 2.2rem;
    cursor: pointer;
    transition: 0.3s;
}
.tip:hover{
    color: #2678E2;
    transition: 0.3s;
}
#KilkaZ.tiped, #Oczym.tiped{
    color: #2678E2;
    font-style: italic;
    font-weight: 500;
}



#krok5{
    justify-content: center;
}



/* RESPONSIVENESS START */
@media screen and (max-width: 1024px){
    .all-form-objects-container .banner{
        display: none;
    }
    .form-container{
        width: 100%;
    }
    #Steps{
        margin-bottom: 40px;
    }
    #krok1, #krok2, #krok3{
        row-gap: 40px;
    }
    #krok3{
        row-gap: 60px;
    }
    #Regulamin-container{
        margin-top: 20px;
    }
    #radioContainer{
        column-gap: 30px;
    }
    .radio-choice{
        padding: 0 30px;
    }
}
@media screen and (max-width: 800px){
    .all-form-objects-container input{
        font-size: 1rem;
    }
    .custom-placeholder{
        font-size: 0.8rem;
    }
    .error{
        font-size: 0.8rem;
        top: 125%;
    }
    .form-input-container{
        width: 80%;
        box-shadow: 7px 7px black;
    }
    .form-input-inner-container{
        padding: 10px 10px 15px 10px;
        row-gap: 5px;
    }
    .radio-choice{
        padding: 0 30px;
        height: 160px;
        box-shadow: 7px 7px black;
    }
    .choice-img{
        height: 50%;
    }
    #radioContainer{
        column-gap: 20px;
        max-width: 90%;
    }
    #errorForma{
        top: -15%;
    }
    #Zgoda-container{
        width: 60%;
        text-align: left;
        transform: translateX(30px);
    }
    #custom-zgoda-regule-checkbox{
        right: 105%;
        transform: translateY(8px);
    }
}
@media screen and (max-width: 500px){
    #custom-zgoda-regule-checkbox{
        right: 108%;
    }
}
@media screen and (max-width: 400px){
    .form-input-container{
        width: 90%;
    }
    .input-sidespace{
        width: 60px;
        font-size: 1.6rem;
    }
    .tip{
        font-size: 1.9rem;
    }
    .radio-choice{
        height: 120px;
    }
    .radio-choice label{
        font-size: 0.7rem;
    }
    .choice-img{
        height: 50%;
    }
    #radioContainer{
        display: flex;
        flex-wrap: wrap;
        row-gap: 20px;
    }
    .steps-separator{
        width: 40px;
    }
    #Regulamin-container{
        transform: translateX(30px);
    }
    #Regulamin-container label{
        font-size: 1rem;
    }
    .form-buttons-container{
        column-gap: 20px;
    }
    .form-buttons-container div{
        padding: 10px 20px;
    }
    #custom-zgoda-regule-checkbox{
        right: 110%;
        transform: translateY(15px);
    }
}
@media screen and (max-width: 300px){
}





/* RESPONSIVENESS END */