p {
    font-size: 16px;
    line-height: 30px;
}

form label {
    font-size: 20px!important;
    font-weight: bold;
    color: #fff8e3!important;
}

.end-form-file {
    height: 41px!important;
    font-size: 18px!important;
}

html {
    scroll-behavior: smooth;
}

body {
    background: rgba(20, 19, 19, 1);
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 0.2rem rgba(217, 220, 172, 0.25) !important;
}

@media (max-width: 768px) {
    form label {
        font-size: 18px!important;
    }
}
@media (max-width: 576px) {
    .main-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/*button*/

.btn-help, form button[type="submit"] {
    padding: 13px 35px;
    background-color: #3c3b37;
    border-color: #3c3b37;
    font-size: 16px;

}

.btn-help:hover, .btn:disabled, .btn-help:active, .btn-help:visited, .btn-help:focus-visible, form button[type="submit"]:hover, form button[type="submit"]:active, form button[type="submit"]:visited, form button[type="submit"]:focus-visible {
    background-color: #1F1E1DFF;
    border-color: #3c3b37;
}

/*select*/
form label {
    font-size: 24px;
}

.custom-select {
    appearance: none; /* Ukrywa domyślny styl przeglądarki */
    -webkit-appearance: none; /* Dla Safari */
    -moz-appearance: none; /* Dla Firefox */
    background-color: #1a1a1a;
    color: white;
    width: 100%;
    height: 50px;
    border: 1px solid #575757;
    border-radius: 0.5rem;
    padding: 10px;
    font-size: 18px;
    position: relative;
}

.custom-select::after {
    content: '▼'; /* Symbol strzałki */
    font-size: 16px;
    color: white;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* Zapobiega interakcji ze strzałką */
}

.custom-select option {
    background-color: #1a1a1a;
    color: white;
}

/*input*/
input.form-control {
    background-color: #1a1a1a;
    color: white;
    height: 50px;
    border: 1px solid #575757;
    border-radius: 0.5rem;
    font-size: 20px;
}

textarea.form-control {
    background-color: #1a1a1a;
    color: white;
    border: 1px solid #575757;
    border-radius: 0.5rem;
    font-size: 20px;
}

input.form-control:focus, textarea.form-control:focus {
    background-color: #1a1a1a;
    color: white;
}

input.form-control:focus-visible, textarea.form-control:focus-visible {
    border: 1px solid #575757;
}

.end-form-tip {
    display: block;
    margin-bottom: 5px;
    color: #bababa;
}

.end-form-tip p {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.end-form-tip ul {
    font-size: 14px;
}

.form-check {
    padding-left: 0px;
}

.custom-checkbox .form-check-input {
    cursor: pointer;
    background-color: #1a1a1a;
    border-color: #575757;
    width: 40px;
    height: 40px;
    margin-right: 20px;
    margin-left: 0px;
}

.custom-checkbox .form-check-input:checked {
    background-color: #1a1a1a;
    border-color: #575757;
    box-shadow: none;
}

.custom-checkbox .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(60, 59, 55, 0.25);
}

.custom-checkbox .form-check-label {
    display: block;
    font-weight: normal;
    font-size: 18px !important;
    cursor: pointer;
}

/*background*/

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}


.background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

.background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 19, 19, 0.65);
    z-index: 2;
}

/*banner*/

.main-banner {
    position: relative;
    width: 100%;
    height: 260px;
}

.main-banner-logo {
    position: absolute;
    height: 169px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main-banner-logo img {
    width: auto;
    height: 100%;
}

@media (max-width: 992px) {
    .end-form-tip {
        font-size: 14px;
        margin-bottom: 11px;
    }
    .main-banner {
        position: relative;
        width: 100%;
        height: 135px;
        background: rgba(20, 19, 19, 0.5);
    }
    .main-banner-logo {
        position: absolute;
        height: 80px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

/*form-title*/

.form-title {
    width: 100%;
    padding-left: 200px;
    margin-bottom: 30px;
}

@media (max-width: 1400px) {
    .form-title {
        padding-left: 0px;
        text-align: center;
    }
}

@media (max-width: 992px) {
    .form-title {
        margin-bottom: 10px;
    }

    .form-title h2 {
        padding-top: 25px!important;
    }
}


@media (max-width: 768px) {
    .start-message {
        text-align: center;
    }
}

/*form container*/

.form-container {
    background: rgba(20, 19, 19, 0.99);
    min-height: calc(100vh - 260px);
}

@media (max-width: 992px) {
    .form-container {
        min-height: calc(100vh - 135px);
    }
}

/*options menu */

.options-menu {
    color: #ffffff;
    margin-bottom: 45px;
    cursor: pointer;
}

.options-menu .options-menu-item:not(:last-child)::before {
    content: '';
    position: absolute;
    background-size: contain;
    width: 20px;
    height: 100%;
    top: 5%;
    left: 98%;
}

.options-menu img {
    max-height: 150px;
    width: auto;
    margin-left: 28px;
    margin-right: 28px !important;
    margin-bottom: 10px;
}

.options-menu p {
    font-size: 19px;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
}

@media (max-width: 992px) {
    .options-menu img {
        height: 100%;
        width: auto;
        margin-left: 18px;
        margin-right: 18px !important;
        margin-bottom: 10px;
    }
    .options-menu .options-menu-item:not(:last-child)::before {
        width: 10px;
        left: 100%;
    }
    .options-menu p {
        font-size: 14px;
    }
}

@media (max-width: 812px) {
    .options-menu p {
        font-size: 10px;
    }
    .options-menu img {
        max-height: 100px;
        margin-bottom: 0px;
    }
}

@media (max-width: 685px) {
    .options-menu img {
        max-height: 85px;
        margin-bottom: 0px;
    }
}

@media (max-width: 576px) {
    .options-menu p {
        font-size: 14px;
        white-space: nowrap;
    }
}

@media (max-width: 379px) {
    .options-menu p {
        font-size: 12px;
    }
}

@media (max-width: 30px) {
    .options-menu p {
        font-size: 9px;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .options-menu .options-menu-item::before {
        content: '';
        position: absolute;
        background-size: contain;
        width: 20px;
        height: 100%;
        top: 5%;
        left: 98%;
    }
    .options-menu .options-menu-item:nth-child(2)::before {
        transform: rotate(90deg);
        top: 46px;
        left: 88px;
        bottom: 0;
        height: 188px;

    }
    .options-menu .options-menu-item:nth-child(3), .options-menu .options-menu-item:nth-child(4) {
        padding-top: 30px;
    }
    .options-menu .options-menu-item:nth-child(4)::before {
        transform: rotate(90deg);
        top: -64px;
        left: -88px;
        bottom: 0;
        height: 188px;

    }
}

@media (max-width: 414px) {
    .options-menu .options-menu-item:nth-child(2)::before {
        top: 60px;
        left: 77px;
        height: 160px;
    }
    .options-menu .options-menu-item:nth-child(4)::before {
        top: -50px;
        left: -85px;
        height: 160px;
    }
}

@media (max-width: 375px) {
    .options-menu .options-menu-item:nth-child(1)::before {
        top: 16px;
    }
    .options-menu .options-menu-item:nth-child(2)::before {
        top: 67px;
        left: 69px;
        height: 145px;
    }
    .options-menu .options-menu-item:nth-child(3)::before {
        top: -29px;
    }
    .options-menu .options-menu-item:nth-child(4)::before {
        top: -43px;
        left: -78px;
        height: 145px;
    }
}

/*wizard*/
.wizard-container {
    width: 69%;
}

.wizard-step {
    position: relative;
}

@media (max-width: 992px) {
    .wizard-container {
        width: 90%;
    }
}

@media (max-width: 576px) {
    .wizard-container {
        width: 100%;
    }
}




