/*@font-face{font-family:PT-Bold;src:url('/fonts/PTSerif/PTSerif-Bold.woff2') format('woff2');font-display:swap;}
@font-face{font-family:Poppins-SemiBold;src:url('/fonts/Poppins/Poppins-SemiBold.woff2') format('woff2');font-display:swap;}
@font-face{font-family:Poppins-Regular;src:url('/fonts/Poppins/Poppins-Regular.woff2') format('woff2');font-display:swap;}
@font-face{font-family:Poppins-Medium;src:url('/fonts/Poppins/Poppins-Medium.woff2') format('woff2');font-display:swap;}
@font-face{font-family:Poppins-Light;src:url('/fonts/Poppins/Poppins-Light.woff2') format('woff2');font-display:swap;}*/


* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial';
    font-weight: 400;
    line-height: 1.5;
    font-size: 1rem;
    color: #212529;
    background-color: #fff;
    user-select: none;
    overscroll-behavior-y: contain;
}


.container { 
    margin: 0 auto;
    padding: 30px 15px;
    height: 100%;
}
@media (max-width: 767px) {.container { width: 95% }}
@media (max-width: 575px) {.container { width: 100% }}
@media (min-width: 768px) {.container { width: 750px }}

.logo-sum {
    display: block;
    width: 170px;
    margin: auto;
}
@media (max-width: 767px) {.logo-sum { width: 140px }}
.logo-sum * {
    fill: #11395c;
}

h1 { font-size: 1.2rem; margin-top: 30px }
@media (max-width: 767px) {h1 { font-size: 1.2rem }}
@media (min-width: 768px) {h1 { font-size: 1.3rem }}

h2 { font-size: 1rem }
@media (max-width: 767px) {h2 { font-size: 1rem }}
@media (min-width: 768px) {h2 { font-size: 1rem }}

h1, h2 { color: #11395c; text-align: center; }

p { text-align: justify }

#page {
    color: #11395c;
    padding: 13px 20px;
    margin: 30px 0;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
#page .title {
    font-weight: 700;
    font-size: 1.1rem;
}
#page .subtitle {
    font-weight: 400;
    font-style: italic;
    font-size: .95rem;
}
#page .group-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 10px;
}
#group { 
    font-size: .8rem;
    margin-bottom: 30px;
}

.q-package {}
.q-package.hide { display: none }

.question, .sub { 
    color: #333;
    padding-bottom: 10px;
}
.choices > div:not(:last-child) { margin-bottom: 8px }
/* .choices { padding: 10px 0 0 20px !important } */
/*.taq { 
    padding: 10px 0 0 25px !important;
    font-size: .95rem;
    font-style: italic;
    color: #11395c;
}*/
.tbq {
    /*font-size: .95rem;
    font-style: italic;
    color: #11395c;*/
}
.q-number,
.q-title {
    display: inline;
    font-weight: 700;
    font-size: 1rem;
    font-style: italic;
}
.q-number { padding-right: 5px !important }

.w0-0 { width: 0 !important; height: 0 !important; margin: 0 !important}
.w20 { width: 20px !important }
.w200 { width: 200px !important }
.w300 { width: 300px !important }
.ml-10 { margin-left: 10px !important }
@media (max-width: 575px) {.ml-10 {margin-left: 0 !important}}
.mr-10 { margin-right: 10px !important }
.mr-5 { margin-right: 5px !important }

input[type=number].validate-error {
    border-color: #822a1e40;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(130, 42, 30, .25);
}

.navi {
    padding: 20px 0 50px 0;
}
.navi a {
    display: flex;
    align-items: center;
    background-color: #11395c;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    padding: 10px 10px;
    font-size: .9rem;
    border-radius: 5px;
    border: 1px solid #11395c;
    transition: background-color, color .4s;
}
.navi a:hover {
    background-color: #fff;
    color: #11395c;
}

.navi a svg { height: 14px }
.navi a svg * { fill: #fff; transition: fill .4s }
.navi a:hover svg * { fill: #11395c }

#prev-btn svg { margin-right: 8px }
#next-btn svg { margin-left: 8px }

.navi a:focus {
    outline: 3px solid #ff6600; /* pomarańczowa ramka */
    outline-offset: 2px;        /* odstęp od elementu */
}