/*body {
    color: #252525;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
}*/
.section-overlay-background {
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    background-color: #FFFFFF;
}
.section-overlay {
    position: absolute;
    top: 10%;
    left: 50%;
    z-index: 150;
    border: 3px solid #EBEDF1;
    width: 836px;
    background-color: #FFFFFF;
    margin-left: -378px;
}
.section-overlay .title {
    position: relative;
    height: 67px;
    background-color: #EBEDF1;
}
.section-overlay .title .header {
    display: inline-block;
    margin-left: 20px;
    height: 67px;
    line-height: 65px;
    color: #252525;
    font-size: 22px;
    font-weight: bold;
}
.header {
    background-color: #EDEEF2;
}
.conent p {
    display: block !important;
    margin-top: 1em !important;
    margin-bottom: 1em !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    font-family: Arial, Helvetica, sans-serif !important;
    line-height: 1.15 !important;
}
.gdpr-header {
    color: #252525 !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 16px !important;
}
.gdpr-header {
    font-weight: 600;
}
.conent ul {
    display: block !important;
    list-style-type: disc !important;
    margin-top: 1em !important;
    margin-bottom: 1 em !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 40px !important;
    font-family: Arial, Helvetica, sans-serif !important;
    line-height: 1.15 !important;
}
.conent ul li {
    display: list-item !important;
    font-family: Arial, Helvetica, sans-serif !important;
}
.conent ul li label {
    cursor: default !important;
    font-family: Arial, Helvetica, sans-serif !important;
}
.conent label {
    cursor: default !important;
    font-family: Arial, Helvetica, sans-serif !important;

}
.link-underline {
    text-decoration: underline;
}
a {
    color: #0067A3;
}
a {
    border: none;
}
a {
    text-decoration: none;
    outline: none;
}
.section-overlay .buttons {
    margin: 0 27px 27px 27px;
    width: 746px;
}
.section-overlay .buttons .button {
    margin-right: 20px;
}
.button.mediumPlainButton {
    padding-left: 40px;
    padding-right: 40px;
    height: 60px;
    line-height: 60px;
}
.button {
    background-color: #0071B3;
}
.button {
    cursor: pointer;
    display: inline-block;
    margin: 0;
        margin-right: 0px;
    border: 0;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    padding: 0;
        padding-right: 0px;
        padding-left: 0px;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: 100% 50%;
    color: #FFFFFF;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: bold;
    white-space: nowrap;
}

.processing-modal-container {
    display: none; /* do przełączania wyświetlenia */
    position: fixed;
    background: rgba(0, 0, 0, 0.2);
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.processing-modal-content {
    width: 250px;
    width: fit-content;
    margin: auto;
    margin-top: 300px;
}

.attempts-warning {
    margin-top: 5px;
    font-size: 14px;
    color: red;
}

/* Spiner */
.spiner {
    background-repeat: no-repeat;
    margin-top: 3px;
    margin-left: 3px;
    width: 14px;
    height: 14px;
    background-image: url("/dt/javax.faces.resource/images/spiner_u35.svg.xhtml");
    animation: rotation 1s infinite linear;
}

@keyframes rotation {
    from {
        bactransform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}