:root {
  --my-light: white;
  --my-dark: #35512f;
  --my-dark-hover: #44683c;
  --text-light: #ccc;
  --text-dark: #41515D;
  --text-very-dark: #212529;
  --text-on-hover: black;
  --progress-green: #056005;
  --my-yellow-light: #ffc107;
  --my-yellow-dark: #e0a800;
  --wrong-ans: #e83333;
  --right-ans: #31b316;
  --neutral-ans: #9b9b9b;
  --viewed-green: #75e35e;
  --viewed-red: #ee8787;
}

html,body{
    overflow-x: hidden;
}

body {
    background-color: var(--my-light);
    color: var(--text-dark);
}
nav {
    margin-bottom: 32px;
    background-color: var(--my-light)!important;
}
a {
    text-decoration: none!important;
}
ul { padding-left: 16px; }

.headNav {
    width: 100%;
    display: inline-block;
}
.leftHeader, .rightHeader {
    padding: 20px;
}
.leftHeader {
    float: left;
    width: calc(100% - 56px);
}
.rightHeader {
    float: right;
}
.rightHeader>i {
    cursor: pointer;
}
.rightHeader>i:hover {
    color: var(--my-yellow-dark);
}

.flexDiv {
    height: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.flexDivAll {
    height: calc(100vh - 74px)!important;
}
.column {
    width: auto;
}
.full-column {
    width: 100%;
}
.themaColumn { width: auto; }
.my-btn {
    width: 600px;
    max-width: 96%;
    background-color: var(--my-dark);
    color: var(--text-light);
    margin: 48px;
    border-radius: 10px;
    text-align: center;
    font-size: 64px;
    cursor: pointer;
}

.my-btn:hover {
    background-color: var(--text-light);
    color: var(--my-dark);
}

.themaColumn>ul>li>a {
    color: #212529!important;
}
.themaColumn>ul>li>a:hover {
    color: var(--text-light)!important;
}

.progressBarDiv {
    width: 100%;
    border:2px solid var(--my-light)!important;
    /* height: 24px; */
    margin: auto;
    background-color: var(--text-light)!important;
    margin-top: 16px;
    font-weight: bold!important;
}
.progressBar {
    /* width: 33%; */
    height: 100%;
    background-color: var(--progress-green)!important;
    text-align: center;
    color: var(--text-light);
}

.allQuestions {
    display: block;
    width: 100%;
    position: relative;
    margin: auto;
    margin-top: 40px;
    margin-bottom: 40px;
}
.questionBox {
    display: inline-block;
    position: relative;
    /*width: 56px;*/
    width: 72px;
    background-color: var(--text-light);
    border-radius: 4px;
    border: 3px solid var(--text-light);
    margin: 3px;
    text-align: center;
    cursor: pointer;
}
.questionBoxActive {
    border: 3px solid var(--my-dark)!important;
}

.blink-text{
    color: #000;
    font-weight: bold;
    animation: blinkingText 2s infinite;
}
@keyframes blinkingText{
    0%		{ color: #000;}
    50%	{ color: green;}
    100%	{ color: #000;}
}

.questionGrey { opacity: 0.6; }
.questionBox:hover {
    /*
    background-color: var(--my-dark);
    color: var(--text-light);
    */
    /*
    background-color: var(--my-yellow-light);
    color: var(--text-very-dark);
    */
    opacity: 0.8;
}

.contentBox {
    width: 100%;
    margin: auto;
    margin-bottom: 40px;
}
.themaTitle {
    width: 100%;
    text-align: center;
    font-size: 20px;
    /* margin-bottom: 24px; */
    margin-top: 40px;
}
.question, .answer {
    margin: 16px 0px;
    font-size: calc(15px + 0.3vw);
}
.answer {
    padding: 0px 8px;
    border-radius: 6px;
}
.question { font-weight: bold; }
.answerOnHover:hover {
    cursor: pointer;
    background-color: #eee;
}
.answer:hover {
    cursor: pointer;
    background-color: #eee;
}

.buttonsBar {
    width: 100%;
    margin: auto;
    text-align: center
}
.buttonsBar>button {
    margin-left: 20px;
    margin-right: 20px;
}
button>i {
    transform: rotate(90deg);
}
.inactiveBtn {
    opacity: 0.4;
    background-color: #ffc107!important;
}

.hintDiv {
    width: auto;
    cursor: pointer;
    display: inline-block;
    margin-top: 12px;
    margin-bottom: 24px;
}
.hintDiv>i {
    color: var(--my-yellow-dark);
}
.hint {
    width: 100%;
    border: 2px solid var(--my-yellow-dark);
    margin-top: 8px;
    margin-bottom: 32px;
    padding: 8px 16px;
    display: none;
}

.menuBar { display: flex; justify-content: space-between; margin-top: 20px; }
.themaIcons {
    /*text-align: right;*/
    font-size: 24px;
    color: var(--text-dark);
    /*margin-top: 24px;*/
}
.themaIcons>i {
    cursor: pointer;
}
.themaIcons>i:hover {
    opacity: 0.5;
}
.trashNearStar { margin-left: 16px; }
/*
.trashNearStar:hover {
    color: #d00606;
    opacity: 1!important;
}
*/

.questionStar {
    font-size: 8px;
    position: absolute;
    top: 0;
    /*left: 40px;*/
    left: 56px;
}

.questionSet {
    display: none;
}
.currentQuestion {
    display: block;
}

.wrongAns { color: var(--wrong-ans)!important; }
.rightAns { color: var(--right-ans)!important; }
.neutralAns { color: var(--neutral-ans)!important; }

.questionStarActive { color: var(--my-yellow-light); }

.divForTable {
    width: 100%;
    margin: auto;
    margin-top: 32px;
}

.containerChart { width: 32px; }
.spinner {
  height: 0px;
  width: 100%;
  padding-bottom: 100%;
  margin: 0;
  /* background: conic-gradient(black 0% 0.5%, var(--right-ans) 0.5% 20%, var(--wrong-ans) 20% 60%, white 60% 100%); */
  clip-path: circle(46% at center);
  -webkit-mask-image: radial-gradient(circle at center, transparent 24%, black 24.8%);
  mask-image: radial-gradient(circle at center, transparent 24%, black 24.8%);
}

.myLink {
    color: var(--text-dark)!important;
}

.viewed-green {
    background-color: var(--viewed-green)!important;
    border: 3px solid var(--viewed-green);
}
.viewed-red {
    background-color: var(--viewed-red)!important;
    border: 3px solid var(--viewed-red);
}

.modal {
    background-color: rgba(64, 64, 64, 0.8);
}
.modal-dialog { margin-top: calc(50vh - 130px)!important; }

.del-btn-div {
    margin-top: 12px;
    margin-bottom: 12px;
    width: 100%;
    text-align: center;
}
.del-btn-div>button {
    width: 75%;
}

#topicId, #topicIds, #progressBar, #progressBarAll, .seconds { display: none; }
.dn { display: none!important; }

.fa-kiwi-bird {
    margin-right: 12px;
}
.navbar-brand {
    color: var(--my-dark)!important;
}

.centerSection {
    /*height: calc(100vh - 90px);*/
}
.examButtons {
    text-align: center;
    /*
    top: 30vh;
    position: relative;
    */
    margin-top: 64px;
}
.examButtons>div>button {
    width: 300px;
    max-width: 90%;
}
.continueExam {
    margin-top: 20px;
}
.examProgressSpan {
    display: block;
    background-color: white;
    margin-top: 12px;
    width: 100%;
    border-radius: 10px;
}
.examProgress {
    display: block;
    background-color: var(--text-light);
    /* width: 60%; */
    border-radius: 10px;
}
.examValue {
    position: relative;
    top: -30px;
}

.checkedQuestionBox {
    background-color: #eee;
    border: 3px solid #eee;;
    color: #666;
}
.activeAnswer { background-color: #ddd; }


.finishDiv { text-align: right; }
.timeToEnd {
    display: inline-block;
    padding: 6px 12px;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid var(--text-very-dark);
    text-align: center;
    line-height: 1.5;
    vertical-align: middle;
}
.endBtn { margin-left: 6px; }
.resume {
    text-align: center;
    font-weight: bold;
    margin: 8px;
    font-size: 24px;
}
.topIcon { margin-right: 4px; }


.buy-btn {
    color: #fff!important;
    background-color: var(--my-dark)!important;
    border-color: var(--my-dark)!important;
}

.buy-btn:hover {
    background-color: var(--my-dark-hover)!important;
    border-color: var(--my-dark-hover)!important;
}
.lawyer { text-align: center; }
h1, h2 { text-align: center; }
h1 { font-size: 1rem + 1.5vw }
.buy-btns { justify-content: center; }
.buy-btns>a { margin: 12px; }
.whyWeElem {
    /*font-size: 24px;*/
    font-size: calc(8px + 0.8vw);
    display: flex;
    margin-top: 12px!important;
}
.whyWeIcon {
    width: 56px;
    color: #138496;
    font-size: calc(20px + 0.8vw);
    /*margin: auto;*/
}
.whyWeText { width: calc(100% - 56px); }

.first-column, .second-column {
    /* height: calc(100vh - 88px); */
    height: calc(100vh - 136px);
    /*margin-bottom: 0px !important; */
    display: flex;
    align-items: center;
}
.title {
    margin-top: 32px;
    margin-bottom: 12px;
}

.form-toggle-w { }
@media only screen and (max-width: 575px) {
    .form-toggle-w { margin-bottom: 48px;!important }
}

@media only screen and (max-width: 991px) {
    .whyMedia {
        height: auto;
        margin-bottom: 48px;
    }
    .paymentButton {
        width: 100%!important;
    }
    #sendForm { width: 100%!important; }
    .lastContainer { margin-top: 120px!important; }
    /*.loginBox { width: 90vv!important; }*/
    /*.divForTable { font-size: 16px!important; }*/
    .whyWeElem { font-size: 18px!important; }

    .endPaymentMain { font-size: 24px!important; }
    .noFiszka { font-size: 18px!important; }
}

.whyH1 { margin-bottom: 20px; /*font-size: calc(1.375rem + 1.5vw); text-align: center;*/ }

.payDiv {
    text-align: center;
    margin: auto;
}
.payBtnDiv {
    text-align: center;
}
.payInfo {
    font-size: 16px;
    margin-bottom: 40px;
}

.paymentImg { }

.form-center {
	display:flex;
	justify-content: center;
	/*margin-top: 40px;*/
}
.form-center>* { margin: 12px; }

.incorrect {
    color: red;
    text-align: center;
    display: none;
}
.correctInfo {
    color: green;
    text-align: center;
    display: none;
}

.footer {
    background-color: #282d32;
    color: #ddd;
    text-align: center;
    padding-top: 32px;
    padding-bottom: 32px;
    margin-top: 80px;
}
.reg>a {
    color: #ddd;
    padding-left: 8px;
    padding-right: 8px;
}
.reg>a:hover {
    color: #f0f9ff;
}
.copyright { margin-top: 24px; }

#sendForm {
    width: 66%;
    max-width: 480px;
}
#sendForm>.form-group {
    margin-bottom: 20px;
}
#errorInfo { color: red; }
.lastContainer {
    margin-top: 40px;
    margin-bottom: 80px;
}
.checkboxPadding { padding-left: 24px; }
.formTitle { margin-bottom: 24px; /*font-size: calc(1.375rem + 1.5vw); text-align: center;*/ }

.login {
    width: 90%;
    max-width: 500px;
    margin: auto;
}
.loginBox {
    width: 100%;
    padding: 32px;
    box-shadow: 0 0 4px 4px var(--my-dark);
    text-align: center;
    border-radius: 16px;
}
.brand {
    text-align: center;
    color: var(--my-dark);
    font-weight: bold;
    margin-bottom: 20px;
}
.loginBtn { margin: 16px; }
.wrongLogin {
    color: red;
    display: none;
}
.resetBtn { margin: 16px; }
.wrongReset, .wrongResetHaslo {
    color: red;
    display: none;
}
.resetComplete, .resetHasloComplete {
    color: green;
    display: none;
}

.pageErrorDiv {
    text-align: center;
    margin: auto;
}
.errorNumber {
    font-size: 128px;
    font-weight: bold;
    color: var(--my-dark);
}
.errorNumberDesc {
    font-size: 32px;
    color: var(--my-dark);
}

.endPaymentDiv {
    text-align: center;
    margin: auto;
}
/*
.endPaymentMain {
    font-size: 48px;
    font-weight: bold;
}
*/
.endPaymentMain {
    font-size: 32px;
    font-weight: bold;
}
.noFiszka {
    font-size: 24px;
    font-weight: bold;
}

.newExam {
    text-align: center;
    margin-bottom: 32px;
}

.settingsH {
    margin-top: 32px;
    margin-bottom: 32px;
}
.settingsHSmall { font-size: 18px!important; }
.errorChangePassword {
    color: red;
    margin-bottom: 16px;
    display: none;
}
.successChangePassword {
    color: green;
    margin-bottom: 16px;
    display: none;
}
.wrongRedirect {
    color: red;
    margin-bottom: 16px;
}
.reset_k { display: none; }
.resetRedirect { display: none; }

.tdText { vertical-align: middle!important; }
.greyTest { color: #aaa; }
.amd { margin: auto; }

.lawyer>img {
    width: 60%;
    max-width: 360px;
}
.paymentImg {
    margin: auto;
}
.paymentImg>img {
    width: 500px;
    max-width: 66%;
}

.examRules {
    margin-top: 20px;
    text-align: center;
}
.examRulesUl {
    text-align: left;
    margin: auto;
    border: 1px solid #343434;
    border-radius: 16px 0px;
    padding: 16px 16px;
    padding-bottom: 8px;
    display: none;
    margin-top: 20px;
}
.ddup { display: none; }
.dddown, .ddup { cursor: pointer; }

.usInfo {
    max-width: 100%;
    width: 500px;
}

.sendUsInfoInfo {
    display: none;
}


#waitModal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(255, 255, 255, 0.6);
}
.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid var(--my-dark);
    border-radius: 50%;
    width: 240px;
    height: 240px;
    animation: spin 2s linear infinite;
    margin: auto;
    position: relative;
    top: 40vh;
    opacity: 1;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#examModal { display: block; }
.examModalDiv {
    font-size: 18px;
    text-align: center;
}

#cookieModal {
    position: fixed;
    z-index: 99998;
    right: 0px;
    bottom: 0px;
    padding: 16px;
    background-color: hsl(210,8%,20%);;
    color: white;
    margin: 16px;
    border-radius: 8px;
}

.darkA {
    color: #3cf058;
}
.darkA:hover {
    color: #89ea98!important;
}

.accountHr {
    width: 100%;
    margin-top: 64px;
    margin-bottom: 64px;
}

.buyList {
    text-align: left;
    list-style-type: none;
    font-size: calc(15px + 0.3vw);
    margin-top: 24px;
    display: inline-block;
}
.buyList>li:before { content: '\f14a'; margin-right: 12px; font-family: "Font Awesome 5 Free"; color: #05a33c; }

.tac { text-align: center; }

.navLogo {
    width: 200px;
    max-width: calc(100vw - 116px);
}
.navLogo.small { width: 200px; }

.buyForm {
    /*
    max-width: 90%;
    width: 800px;
    margin: auto;
    border: 1px solid var(--my-dark);
    padding: 16px;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 20px;
    */
    display: none;
}
.ddf {
    font-weight: bold;
    color: var(--my-dark);
    margin-bottom: 16px;
    text-align: center;
}
.grecaptcha-badge { display: none; }

.documentHeader { margin-top: 32px; }
.documentHeader>img { width: 360px; }
.documentContent { margin-top: 64px; margin-bottom: 64px; color: #283137; }
.documentContent > h1 { margin-top: 32px; margin-bottom: 32px;}
.documentContent > h2 { margin-top: 32px; margin-bottom: 32px;}


.paymentSection {
    color: var(--my-dark-hover);
    text-align: center;
    margin-top: 24px;
    margin-bottom: 24px;
    box-shadow: 0 6px 3px -3px var(--my-dark-hover);
    font-weight: bold;
}

.buyFormDiv {
    /*display: table;*/
    text-align: left;
    margin: auto;
    max-width: 550px;
}

#kanaly { text-align: center; }

#kanaly div {
    background-color: white;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    border: 1px solid #b2b2b2;
    border-radius: 0.2em;
    cursor: pointer;
    display: inline-block;
    width: 120px;
    height:70px;
    margin: 6px 8px;
}

#kanaly div p.label {
    display:none;
}

.selectedChannel {
    border-color: var(--my-dark-hover)!important;
    box-shadow: 0 0 1em var(--my-dark-hover);
}

.finalTable > tr > td {
    padding-top: 4px;
    padding-bottom: 4px;
}

.priceDiv {
    width: 100%;
    max-width: 840px;
    text-align: center;
    margin: auto;
    margin-top: 64px;
    margin-bottom: 32px;
}
.priceBox {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 12px;
    height: 100%;
    max-width: 234px;
    width: 80%;
    cursor: pointer;
}
.priceBoxMonth {
    background-color: var(--my-dark-hover);;
    color: white;
    font-size: 18px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.priceBoxValue {
    font-size: 24px;
    font-weight: bold;
}
.priceMsPrice {
    font-size: 18px;
}
.priceCircleBox {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    margin-bottom: 8px;
}
/*.priceCircle {
    border-radius: 50%;
    width: 24px;
    height: 24px;
    border: 1px solid black;
    margin: 8px;
}*/
.priceCircle {
    font-size: 28px;
    color: #8a9d90;
}
.priceCircleSelected {
    font-size: 28px;
    background-color: #c4e3ce;
    color: white;
}
.insidePrice {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 27px);
}
.priceRowSm {
    margin-bottom: 32px;
    align-items: center;
    display: flex;
    justify-content: center;
}
.selectedPrice {
    background-color: #c4e3ce!important;
    box-shadow: rgba(0,0,0,0.35) 0px 25px 35px;
    width: 100%;
    max-width: 264px;
}
.selectedPrice > .insidePrice > .priceCircleBox > .priceCircle {
    background-color: white;
}
.checkmark {
    display: inline-block;
    transform: rotate(45deg);
    height: 25px;
    width: 12px;
    margin-left: 60%;
    border-bottom: 7px solid #78b13f;
    border-right: 7px solid #78b13f;
}
.priceBox:hover {
    box-shadow: rgba(0,0,0,0.35) 0px 25px 35px;
}
.promoShowTr {
    display: none;
}

#mainPromotionTopDiv {
    text-align: center;
    background-color: #2d3e03;
    color: white;
    font-size: calc(10px + 0.8vw);
}

.activeNote { color: var(--my-yellow-light); }
