@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

html,
body {
  min-height: 100%;
}
body {
  font-family: 'Barlow Semi Condensed', Arial, Helvetica, sans-serif;
  font-size: 18px;
//  background: url("../img/bg.png") no-repeat center 20%;
  background-size: 100%;
  padding-top: 88px;

}

.nav-link {
    color: #ffffff;
	  font-weight: 500;
  }
.nav-link:hover {
    color: #FBB327;
	  font-weight: 500;
  }
.navbar-nav .nav-link.active {
  color: #ffffff;
  font-weight: 500;
}
body#empty {
  background: none;
  padding-top: 0;
}
.input-group-text,
.form-control {
  border-radius: 0;
  padding: 10px;
}
.form-check-input[type=checkbox] {
  border-radius: 0;
  border-color: #337ABE;
  border-width: 2px;
}
.errorHandler .invalid-feedback {
  font-size: 1.6em;
  text-align: center;
}
fieldset {
  margin-bottom: 30px;
}
fieldset legend {
  font-size: 18px;
  font-weight: 700;
}
.pink {
  color: #337ABE;
}
.aspect-container {
  width: 100%;
  padding-top: 56.25%;
  /* 1:1 Aspect Ratio */
  position: relative;
  /* If you want text inside of it */
}
/* If you want text inside of the container */
.aspect-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.aspect-content iframe {
  width: 100%;
  height: 100%;
  border: 0 none;
}
.stream-content {
  margin-bottom: 20px;
}
.chat-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.chat-wrapper {
  border: 1px solid #FBB327;
  overflow-y: scroll;
  flex-grow: 1;
}
.chat-wrapper .chatScreen ul {
  list-style: none;
  padding: 5px;
}
.chat-wrapper .chatScreen ul li {
  font-weight: 400;
  font-size: 0.85em;
  color: #090808;
}
.chat-wrapper .chatScreen ul li span {
  color: #337ABE;
}
.chat-wrapper .chatScreen .showQuestion {
  padding: 10px;
}
.chat-wrapper .chatScreen .showQuestion .questionText,
.chat-wrapper .chatScreen .showResult > span {
  font-weight: 700;
  color: #090808;
  font-size: 1.4em;
}
.chat-wrapper .chatScreen .showQuestion ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.chat-wrapper .chatScreen .showQuestion ul li input {
  margin-top: 4px;
}
.chat-wrapper .chatScreen .showQuestion ul li.checked {
  font-size: 1.1em;
  font-weight: 700;
  color: #B90066;
}
.chat-wrapper .chatScreen .showResult {
  padding: 10px;
}
.chat-wrapper .chatScreen .showResult .letter {
  font-size: 1.2em;
}
.chat-wrapper .chatScreen .showResult .progress {
  height: 20px;
  margin-bottom: 20px;
}
.chat-wrapper .chatScreen .showResult .progress .progress-bar {
  background-color: #B90066;
}
.chat-wrapper .chatScreen .showResult .progress span {
  color: #090808;
  font-weight: 700;
  padding-left: 5px;
  padding-right: 5px;
  align-self: center;
}
.chat-controls {
  background-color: #F2F3F4;
  margin-top: 5px;
  display: flex;
  align-items: center;
}
.chat-controls .form-control {
  border: 0 none;
  background: none;
}
.chat-controls .chat-nick {
  flex-basis: 120px;
  flex-grow: 5;
}
.chat-controls .chat-message {
  border-left: 5px solid #FFFFFF;
  flex-grow: 2;
}
.chat-controls .chat-message textarea {
  resize: vertical;
  overflow-y: hidden;
}
.chat-controls .chat-send .sendChat {
  padding: 0;
  margin-right: 10px;
}
.chat-controls .picker {
  position: absolute;
  top: 30%;
  right: 10px;
}
@media (max-width: 991px) {
  .chat-col {
    min-height: 400px;
  }
}
.chat-content {
  container-type: inline-size;
  width: 100%;
}
@media (max-width: 1400px) {
  .chat-controls {
    flex-wrap: wrap;
  }
  .chat-controls .chat-nick {
    flex-basis: 100%;
    flex-grow: 1;
    border-bottom: 5px solid #FFFFFF;
  }
  .chat-controls .chat-message {
    border-left: 0 none;
    flex-grow: 1;
  }
}
.helpdesk {
  height: 50vh;
}
#menu-container {
  position: fixed;
  width: 100%;
  top: 0;
  background-color: #004DB5;
  z-index: 999;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#menu-container .menu-logo {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 767px) {
  #menu-container {
    height: auto;
    align-items: flex-start;
  }
  #menu-container .menu-logo {
    position: relative;
  }
  #menu-container .navbar-nav {
    align-items: center;
  }
}
#main-navbar {
  font-size: 14px;
  font-weight: 700;
}
#main-navbar .container {
  justify-content: flex-end;
}
#main-navbar .nav-item {
  display: flex;
  align-items: center;
}
#main-navbar #main-navbar-collapse {
  justify-content: flex-end;
}
#header {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
  align-items: flex-end;
}
#header .img-fluid {
  align-self: normal;
  width: 100%;
}
.event-timer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  background-color: #FBB327;
  color: #4D4C4E;
  font-size: 16px;
  margin-top: -50px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.event-timer > div {
  padding-left: 50px;
  padding-right: 50px;
  border-right: 1px solid #DBDEDF;
}
.event-timer > div:last-of-type {
  border-right: 0 none;
}
.event-timer .date {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
}
.event-timer .date .day {
  font-size: 48px;
}
.event-timer .timer {
  display: flex;
  text-transform: uppercase;
  align-items: center;
  gap: 20px;
}
.event-timer .timer .label {
  text-align: center;
}
.event-timer .timer .label.short {
  display: none;
}
.event-timer .timer .value {
  text-align: center;
  font-weight: 700;
  font-size: 40px;
}
.event-timer .button .btn {
  background-color: #FFFFFF;
  color: #337ABE;
  border-radius: 0;
  font-size: 18px;
  font-weight: 700;
  padding: 12px 32px;
}
@media (max-width: 1038px) {
  .event-timer > div {
    border: 0 none;
  }
  .event-timer .button {
    margin-top: 20px;
    flex-grow: 1;
  }
  .event-timer .button .btn {
    display: block;
  }
}
@media (max-width: 767px) {
  .event-timer > div {
    padding-left: 10px;
    padding-right: 10px;
  }
  .event-timer .date {
    gap: 5px;
  }
  .event-timer .date .year,
  .event-timer .date .month {
    font-size: 16px;
  }
  .event-timer .timer {
    gap: 5px;
  }
  .event-timer .timer .value {
    font-size: 24px;
  }
  .event-timer .timer .label {
    display: none;
  }
  .event-timer .timer .label.short {
    display: block;
  }
}
section {
  margin-bottom: 50px;
}
section h1 {
  text-align: center;
}
@media (max-width: 767px) {
  .accordion-slider {
    margin-bottom: 20px;
  }
}
#agenda .accordion-item {
  border-radius: 0;
}
#agenda .accordion-button {
  font-size: 18px;
  color: #656666;
  background-color: #DFEBF8;
  border-radius: 0;
  gap: 24px;
}
#agenda .accordion-button .number {
  font-size: 40px;
  font-weight: 700;
  min-width: 40px;
}
#agenda .accordion-button .title {
  flex-grow: 1;
}
#agenda .accordion-button .roll {
  flex-grow: 1;
  font-size: 24px;
  font-weight: 500;
  color: #337ABE;
}
#agenda .accordion-button:not(.collapsed) .roll {
  display: none !important;
}
#agenda .accordion-button:not(.collapsed) {
  background-color: #FBB327;
  color: #FFFFFF;
  font-weight: 700;
}
#agenda .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
#agenda .accordion-button.collapsed::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23090808'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
#agenda .accordion-button:focus {
  box-shadow: none;
}
#agenda .event-item .time {
  height: 16px;
  color: #337ABE;
//  background: url("../img/clock.png") no-repeat left center;
//  padding-left: 24px;
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
#agenda .event-item .title {
  font-weight: 500;
  color: #090808;
  font-size: 18px;
  margin-bottom: 16px;
}
#agenda .event-item .title.title-small-margin {   
	margin-bottom: -14px !important; 
}
#agenda .event-item .lector {
  color: #656666;
  font-weight: 700;
}
#agenda .buttons {
  margin-top: 32px;
  margin-bottom: 24px;
}
#invitation {
  font-size: 144px;
  font-weight: 700;
  color: #5489A3;
  opacity: 0.1;
  overflow: hidden;
}
@media (max-width: 767px) {
  #invitation {
    font-size: 3rem;
  }
.event-timer {
  margin-top: -20px;
}
}
.btn {
  border-radius: 0;
}
.btn-pink {
  background-color: #FBB327 !important;
  color: #FFFFFF;
  font-weight: 700;
  border: 3px solid #FBB327;
}
.btn-white {
  background-color: #FFFFFF;
  color: #337ABE;
  font-weight: 700;
  border: 3px solid #337ABE;
}
.btn-pink:hover {
  background-color: #FBB327 !important;
  color: #004DB5;
  font-weight: 700;
  border: 3px solid #FBB327;
}
footer {
  margin-top: 50px;
  background-color: #B90066;
  padding-top: 50px;
  padding-bottom: 50px;
}
footer .event-timer {
    position: initial;
    padding-left: 0 !important;
//  position: absolute;
//  left: 0;
//  z-index: 5;
  color: #000000;
  background-color: #FFFFFF;
  margin-top: 50px;
}
footer .event-timer > div {
  padding-left: 24px;
  padding-right: 24px;
}
footer .event-timer .date {
  padding-left: 12px;
}
footer .event-timer .timer .value {
  font-size: 24px;
}
footer .event-timer .button .btn {
  background-color: #B90066;
  color: #FFFFFF;
  font-size: 14px;
}
footer .contact-widget .form-control {
  border-radius: 0;
}
footer .contact-widget textarea.form-control {
  height: 90px;
}
footer .contact-widget button {
  position: absolute;
  bottom: -1px;
  right: -1px;
  padding: 0;
}
footer p {
  color: #FFFFFF;
}
footer .footer-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  color: #FFFFFF;
}
footer .footer-menu p {
  margin: 0;
}
footer .footer-menu a {
  color: #FFFFFF;
  text-decoration: none;
}
footer .invalid-feedback {
  color: #F2F3F4;
}
@media (max-width: 1560px) {
  footer .footer-menu {
    justify-content: space-evenly;
  }
  footer .event-timer {
    position: initial;
    padding-left: 0 !important;
  }
  footer .event-timer > div {
    border: 0 none;
  }
  footer .event-timer .button {
    flex-grow: 1;
  }
  footer .event-timer .button .btn {
    display: block;
  }
}
.lecturers .lecturer-description {
  padding: 10px;
  bottom: 0;
  top: auto !important;
  text-align: center;
  width: 100%;
}
.lecturers .lecturer-description h6 {
  font-weight: 700;
}
.login-form a {
  color: #337ABE;
  text-decoration: none;
}
.login-form .header {
  text-align: center;
  margin-bottom: 60px;
}
.login-form .header h1 {
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 24px;
}
.login-form .header .register-row {
  font-size: 1.5em;
}
.login-form.login-select {
  margin-bottom: 40px;
}
.login-form.login-select .item {
  border: 1px solid #A4A4A4;
  padding: 12px 10px;
  text-align: center;
  margin-bottom: 20px;
  color: #000000;
}
@media (min-width: 992px) {
  .login-form.login-select .item {
    height: 100%;
  }
#agenda .accordion-button .roll {
  margin-right: 56px;
}
}
.login-form.login-select .item .item-content {
  position: relative;
  height: 100%;
}
.login-form.login-select .item.active {
  border-color: #B90066;
  border-width: 2px;
}
.login-form.login-select .item .title {
  font-weight: 700;
  font-size: 18px;
  color: #B90066;
  margin-bottom: 10px;
}
.login-form.login-select .item .text {
  color: #000000;
  font-weight: 400;
  font-size: 18px;
}
.separator {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.separator hr {
  flex-grow: 1;
}
.form-buttons .btn img {
  margin-left: 20px;
}
#form-login .form-buttons {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#form-login .form-buttons .btn {
  flex-grow: 1;
}
#form-register .accordion .accordion-button {
  font-weight: 700;
}
#form-register .separator {
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}
#form-register .login-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
#form-register .login-row a {
  color: #B90066;
  text-decoration: none;
}
#form-register .register-row a {
  color: #090808;
  text-decoration: none;
}
#form-register .form-buttons {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
#form-register .form-buttons.subscribe button {
  width: 100%;
}
.modal .modal-content {
  border-radius: 0;
}
.modal .modal-content .modal-header {
  font-size: 24px;
  font-weight: 700;
}
#modal-question .title {
  font-weight: 700;
  font-size: 1.1em;
  margin-bottom: 10px;
}
#modal-question .modal-form {
  margin-top: 20px;
}
.streaming-top {
  padding: 20px;
  display: flex;
  justify-content: flex-start;
}
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
}

.reveal-on-scroll.is-visible {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.highlight {
  display: inline-block;
  color: #1960B5; /* startowy kolor */
  animation: pulseColor 1s ease-in-out infinite alternate;
  animation-delay: 0.8s; /* startuje zaraz po fadeInUp */
}

@keyframes pulseColor {
  from {
    color: #000000;
    transform: scale(1);
  }
  to {
    color: #FBB327;
    transform: scale(1.1);
  }
}

.btn-sub {
  border-radius: 10px;
  padding: 20px;
  background-color: #337ABE;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  border: 3px solid #337ABE;
}
/*# sourceMappingURL=default.css.map */