@font-face {
    font-family: 'Artifakt Element Black';
    src: url('/assets/fonts/Artifakt Element Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Artifakt Legend Black';
    src: url('/assets/fonts/Artifakt Legend Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
:root {
    interpolate-size: allow-keywords;
}

body, p, div {
  font-family: 'Artifakt Element Black';
  font-size: 13pt;
}
h1 { font-family: 'Artifakt Legend Black'; font-weight: bold; }
.bg-black {
  background: #000;
}
.bg-grey {
  background: #131313;
}
.bg-white {
  background: #FFF;
}
.text-white {
  color: #FFFFFF;
}
.text-yellow {
  color: #FFFF00;
}
.page-header {
  color: #000000;
  background: transparent;
}
.page-header .page-header__title {
  font-weight: bold;
}
.banner-btn-container {
  position: absolute;
  bottom: 90px;
  padding-left: 20px;
}
@media (min-width: 768px) {
    .page-header__content-wrapper {
        height: 170px;
    }
}
.y-border {
  border: 1px solid #FFFF00;
  border-radius: 20px;
}
.counter__number {
  color: #FFFF00;
  font-family: 'Artifakt Legend Black';
  font-weight: bold;
} 
.counter__title {
  color: #FFFF00;
  text-transform: uppercase;
}
.bg-img {
  background-image: url('/conf-data/BIMDAYS2026/images/header_main_v2.png');
  min-height: 447px;
}
.btn-container {
  position: relative;
  min-height: 447px;
}
.navbar-inverse {
  background: #131313;
}
/* Styl dla aktywnego elementu w menu */
.navbar-nav > li.active > a, 
.navbar-nav > li.active > a:hover, 
.navbar-nav > li.active > a:focus {
    color: #FFD700 !important; /* Złoty/Żółty kolor tekstu */
    background-color: transparent !important; /* Usuwamy domyślne tło Bootstrapa */
    border-bottom: 1px solid #FFD700; /* Żółte podkreślenie */
    padding-bottom: 12px; /* Lekka korekta, żeby podkreślenie nie dotykało tekstu */
}

/* Opcjonalnie: efekt po najechaniu na inne linki, żeby pasowały stylem */
.navbar-nav > li > a:hover {
    color: #FFD700;
    transition: all 0.3s ease;
}
.main-dates {
  color: #FFF;
  border-radius: 20px;
  padding: 30px 18%;
  margin: 40px 20px;
}

.v-center {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.container:has(> .row > .col-xs-12:empty) {
    display: none !important;
}
/* PANEL */
.panel {
  margin: 20px 100px;
  background: #3a3a3a;
  border-radius: 2px;
  color: white;
  font-family: sans-serif;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}

/* Pasek tytułu */
.panel summary {
  padding: 20px;
  list-style: none;
  color: #ffe400; /* żółty tekst */
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Usuwamy domyślną strzałkę */
.panel summary::-webkit-details-marker {
  display: none;
}

/* Własna strzałka */
.panel summary::after {
  content: "⌄"; /* strzałka w dół */
  color: #cccccc;
  font-size: 16px;
  transition: transform 0.2s ease;
}

/* Po rozwinięciu – strzałka obraca się */
.panel[open] summary::after {
  transform: rotate(-180deg);
}

/* Ukryta zawartość */
.panel .content {
  padding: 20px;
  color: #e0e0e0;
  background: #2a2a2a;
}

/* Stan początkowy (zwinięty) */
details.panel::details-content {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: height 0.3s ease-out, opacity 0.3s ease-out;
}

/* Stan po rozwinięciu */
details.panel[open]::details-content {
    height: auto;
    opacity: 1;
}

/* Drobna poprawka UX – zmiana kursora na łapkę na nagłówku */
details.panel summary {
    cursor: pointer;
    font-weight: bold; /* opcjonalnie */
}
  
  
/* InfoBOXy */
  /* --- Stylizacja sekcji i siatki --- */
.info-boxes-section {
    padding: 40px 0;
    font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
}

/* Flexbox naprawiający problem nierównych kolumn w Bootstrap 3 */
.row-flex {
    display: flex;
    flex-wrap: wrap;
}
.row.row-flex {
   margin-left: 0px;
  margin-right: 0px;
  }
.row-flex > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

/* --- Stylizacja pojedynczego boksu --- */
.info-box:not(.alert-info) {
    background-color: #000000;
    border-radius: 8px; /* Delikatne zaokrąglenie rogów */
    padding: 55px 20px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06); /* Miękki cień widoczny na screenie */
    margin-bottom: 25px;
    width: 100%;
    flex-grow: 1; /* Wypełnia całą dostępną wysokość kolumny */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efekt najechania myszką (opcjonalny, ale dodaje dynamiki) */
.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* --- Stylizacja zawartości --- */
.icon-custom {
    font-size: 34px;
    color: #333333;
    margin-bottom: 15px;
}

.info-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffe400;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    min-height: 50px;
}

.info-value {
    font-size: 15px;
    font-weight: normal;
    color: #FFFFFF;
    line-height: 1.4;
}
  
.container.flex {
  display: flex;
  justify-content: center; /* Wyśrodkowuje wszystkie przyciski */
  gap: 50px;               /* Tworzy równe odstępy (20px) między przyciskami */
  flex-wrap: wrap;
  padding: 50px 0;
}
.y-button, .t-button {
  display: inline-block;
    padding: 12px 30px;
    font-weight: normal;
    text-transform: uppercase;
    text-align: center;
    border-radius: 10px;      /* Delikatnie zaokrąglone rogi */
    transition: all 0.3s ease; /* Płynne przejścia dla hovera */
    border: 1px solid transparent;
}
.y-button:hover {
    background-color: transparent;
    border-color: #FFFF00;
    color: #FFF;
}
.t-button {
    background-color: transparent; /* Przezroczyste tło */
    color: #FFFFFF;                /* Biały tekst */
    border-color: #FFFFFF;         /* Biała ramka */
}

.t-button:hover {
    background-color: #FFFFFF;     /* Wypełnia się na biało */
    color: #2c3e50;                /* Zmienia kolor tekstu na ciemny */
}
  
  
/* GALLERY HOMEPAGE */
/* Kontener główny dla odstępów */
.gallery-section {
    padding: 40px 15px;
    font-family: Arial, Helvetica, sans-serif;
}

/* Główny boks ze zdjęciem */
.photo-card {
    display: block; /* Pozwala linkowi zająć całą przestrzeń */
    position: relative;
    height: 280px; /* Wysokość boksa - możesz dostosować */
    border-radius: 10px; /* Zaokrąglone rogi (wg wytycznych) */
    overflow: hidden; /* Przycina zawartość do zaokrągleń */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 30px;
    text-decoration: none !important; /* Blokuje podkreślanie linków z Bootstrapa */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Lekki cień pod boksem */
    transition: transform 0.3s ease;
}

/* Delikatne podniesienie boksa po najechaniu (opcjonalne, ale dodaje dynamiki) */
.photo-card:hover {
    transform: translateY(-5px);
}

/* Ciemny gradient na dole - niezbędny, aby biały tekst był widoczny na jasnych zdjęciach */
.card-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
    display: flex;
    align-items: flex-end; /* Ściąga zawartość (tekst) na sam dół */
    padding: 25px 20px;
}

/* Stylizacja tekstu wewnątrz boksa */
.card-text {
    color: #ffffff; /* Domyślny biały tekst */
    width: 100%;
    transition: color 0.3s ease; /* Płynna zmiana koloru */
}

/* EFEKT HOVER: Zmiana koloru na żółty przy najechaniu */
.photo-card:hover .card-text {
    color: #FFD700; /* Kolor żółty */
}

/* Poszczególne linijki tekstu */
.text-line-1 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.text-line-2 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 6px;
}

.text-line-3 {
    font-size: 13px;
    font-weight: 400;
}
  
/* --- Główny kontener --- */
.pricing-section {
    padding: 50px 15px;
    font-family: 'Arial', sans-serif;
}

/* Wyrównanie wysokości kolumn w Bootstrapie 3 */
.pricing-section .row-flex {
    display: flex;
    flex-wrap: wrap;
}

.pricing-section .row-flex > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

/* --- Stylizacja Boksa --- */
.pricing-box {
    
    padding: 40px;
    border-radius: 8px; /* Delikatne zaokrąglenie całego boksa (opcjonalnie) */
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Wypełnia całą wysokość kolumny */
    margin-bottom: 30px;
}

/* --- Nagłówki --- */
.pricing-header {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.2;
}

.pricing-subheader {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

/* --- Lista z niestandardowymi punktatorami --- */
.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1; /* Wypycha cenę i przycisk na sam dół boksa */
}

.pricing-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.5;
}

/* Kółko z żółtą ramką i ptaszkiem */
.pricing-list li::before {
    content: '\2713'; /* Kod Unicode dla znaku ptaszka (✓) */
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    border: 2px solid #FFFF00;
    border-radius: 50%; /* Tworzy kółko */
    color: #FFFF00;
    font-size: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Cena i Przycisk --- */
.pricing-price {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}
  
  
/*============= AGENDA =============*/
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus{
 color: #fff;
}
.blue1{
 background: rgb(155,213,239) !important;
 color: #fff;
}
.blue2{
 background: rgb(106,192,231) !important;
 color: #fff;
}
.blue3{
 background: rgb(56,171,223) !important;
 color: #fff;
}
.blue4{
 background: rgb(5,113,161) !important;
 color: #fff;
}
.blue5{
 background: rgb(3,75,108) !important;
 color: #fff;
}
.paths .tab-content .tab-pane:first-child .schedule .schedule__time{
 color: rgb(155,213,239);
}
.paths .tab-content .tab-pane:nth-child(2) .schedule .schedule__time{
 color: rgb(106,192,231);
}
.paths .tab-content .tab-pane:nth-child(3) .schedule .schedule__time{
 color: rgb(56,171,223);
}
.paths .tab-content .tab-pane:nth-child(4) .schedule .schedule__time{
 color: rgb(5,113,161);
}
.paths .tab-content .tab-pane:nth-child(5) .schedule .schedule__time{
 color: rgb(3,75,108);
}
.paths ul li:first-child a{
 background: rgb(155,213,239) !important;
 color: #fff;
}
.paths ul li:nth-child(2) a{
 background: rgb(106,192,231) !important;
 color: #fff;
}
.paths ul li:nth-child(3) a{
 background: rgb(56,171,223) !important;
 color: #fff;
}
.paths ul li:nth-child(4) a{
 background: rgb(5,113,161) !important;
 color: #fff;
}
.paths ul li:nth-child(5) a{
 background: rgb(3,75,108) !important;
 color: #fff;
}
/*.blue1 .schedule__desc, .blue2 .schedule__desc, .blue3 .schedule__desc, .blue4 .schedule__desc, .blue5 .schedule__desc{
 width: 100% !important;
 left: -120px;
 position: relative;
 border-left: none;
}*/

.blue1 .schedule__desc, .blue2 .schedule__desc, .blue3 .schedule__desc, .blue4 .schedule__desc, .blue5 .schedule__desc, .yellow-tabs .schedule__desc{
    left: -120px;
    position: relative;
    display: block;
    border-left: none;
}

/*.blue1 .schedule__time, .blue2 .schedule__time, .blue3 .schedule__time, .blue4 .schedule__time, .blue5 .schedule__time{
 width: 0px !important;
 white-space: normal !important;
 padding: 0 !important;
 display: block;
}*/
.paths ul li a{
   width: 379px;
   text-align: center;
}
.paths ul li:last-child a {
  width: 380px;
}
//.schedule__item--major, .nav-tabs { background: #F2F2F2; }
//.schedule__desc>span { color: #0696D7; }  
//.schedule__desc .border-r { border-right: 1px solid #9BD5EF;}
//.schedule__desc .row.b0:before,
//.schedule__desc .row.b0:after { content: ''; display: inline-block; }
.autodesk_blue { color: #0696D7; }
li.program-tab.active a {
  color: #000 !important;
}
.program-table-subblock-desc {
    display: none;
    margin-top: 15px;
    padding: 10px;
    border-top: 1px solid #eee; /* Opcjonalnie: oddzielenie opisu od góry */  
}
.program-bio-small-cell {
  font-size: 12px;
}
  
.program-bio-small-desc {
    display: none;
    margin-top: 15px;
    padding: 10px;
    border-top: 1px solid #eee; /* Opcjonalnie: oddzielenie opisu od góry */
}

/* Wskazówka dla użytkownika, że element jest interaktywny */
.program-bio-small-cell,
.program-table-subblock-name {
    cursor: pointer;
    transition: background-color 0.2s;
}

/* Opcjonalnie: delikatne podświetlenie przy najechaniu */
.program-bio-small-cell:hover {
    background-color: #fcfcfc;
}
.program-aside-section.program-theme,
.program-filter-session,
.program-filter-location,
.program-aside-section.program-settings,
.program-export {
  display: none;
  }
  
/* Styl dla elementu, który ma treść do rozwinięcia */
.has-content {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Rozsuwa tytuł i strzałkę */
}

/* Dodanie strzałki (używając standardowego znaku V lub ikony) */
.has-content::after {
    content: '▼'; 
    font-size: 10px;
    margin-left: 10px;
    transition: transform 0.3s ease;
    display: inline-block;
    color: #666; /* Kolor strzałki */
}

/* Obrót strzałki po kliknięciu */
.has-content.is-open::after {
    transform: rotate(180deg);
}
  
/****** FORMULARZ *******/
#typ_131130_passwordBox { margin-left: 0px !important;}
  #participationtypeBox .section-wrapper .row {
  margin-left: 150px;
}
#typ_130233_passwordBox {
  margin-left: 0px !important;
}
 
  
  .pass-label {
  font-size: 12pt;
  //background-color: yellow;
}
.pass-label {
  //margin-left: 0.6rem;
}
  
  
.section-header.section-header--underlined span:after {
    content: '';
    display: none;
}
.section-header.section-header--underlined {
    padding: 20px 0 8px 40px;
}
.container-fluid--max-width {
    max-width: 700px;
}
.section-wrapper {
  padding-bottom: 30px;
}
.payment-summary {
    max-width: 600px;
    margin: auto;
}
.form-group .a-col-label {
  width: 100%;
}
.form-group {
  margin: auto;
  max-width: 350px;
  }
.btn-primary.btn-send {
  margin: 20px auto;
  display: block;
  text-transform: uppercase;
  font-size: 11pt;
    font-weight: bold;
    padding: 15px 50px;
  border-radius: 10px;
} 
/****** FOOTER *******/
  .footer {
    background: #000;
    border: none;
  }
  .footer__content {
    min-height: auto;
    padding-bottom: 0px;
  }
  .footer .col-xs-12, .footer [class^="col-"] {
    margin-bottom: 10px;
  }
  .footer__content div {
    min-height: auto;
    font-size: 10pt;
  }
  

/****** SLIDER PARTNERZY *******/
/* Kontener ograniczający widoczność */
.logo-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    background: #fff; /* Tło sekcji */
    position: relative;
}

/* Ścieżka, która się przesuwa */
.logo-slider-track {
    display: flex;
    width: max-content; /* Dopasowuje szerokość do zawartości */
    animation: scrollLeftToRight 30s linear infinite;
}

/* Pojedynczy element z logo */
.logo-item {
    padding: 0 40px; /* Odstępy między logotypami */
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    height: 60px; /* Stała wysokość wg wymagań */
    width: auto;  /* Zachowanie proporcji */
    display: block;
    filter: grayscale(100%); /* Opcjonalnie: logotypy czarno-białe */
    transition: filter 0.3s;
    opacity: 0.7;
}

/* Efekt po najechaniu na pasek */
.logo-slider-container:hover .logo-slider-track {
    animation-play-state: paused; /* Zatrzymanie animacji */
}

.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

  
/* Stylizacja opisu - domyślnie ukryty */
.partner-desc {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, opacity 0.3s;
  opacity: 0;
  margin: 0;
}

/* Klasa dodawana przez JS po kliknięciu */
.partner-card.is-open .partner-desc {
  max-height: 500px; /* Wartość większa niż spodziewany tekst */
  opacity: 1;
  margin-top: 10px;
}

/* Stylizacja przycisku strzałki */
.toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #333;
  padding: 5px;
  transition: transform 0.3s ease;
  display: block;
  margin: 0 auto; /* Centrowanie strzałki */
}

/* Obrót strzałki po otwarciu */
.partner-card.is-open .toggle-btn {
  transform: rotate(180deg);
}

.partner-logo-box {
    margin-bottom: 15px;
}
  
  
/* Definicja animacji z lewej do prawej */
/* Przesuwamy od -50% (połowa zdublowanej listy) do 0 */
@keyframes scrollLeftToRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/***** PARTNERZY ****/
/* Style dedykowane sekcji partnerów */
.partners-section {
    padding: 0 0 60px 0;
    background-color: #fff0;
}

.section-title {
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.title-underline {
    width: 60px;
    height: 4px;
    background-color: #0056b3; /* Kolor akcentu */
    margin: 0 auto 40px auto;
    border: none;
}

/* Flexbox fix dla Bootstrap 3.3 żeby karty miały równą wysokość */
@media (min-width: 768px) {
    .is-flex {
        display: flex;
        flex-wrap: wrap;
    }
}

.partner-card {
    background: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    padding: 25px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: calc(100% - 30px); /* Dopasowanie wysokości */
    display: flex;
    flex-direction: column;
}

.partner-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: #0056b3;
    transform: translateY(-5px);
}

.partner-logo-box {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 15px;
}

.partner-logo-box img {
    max-height: 70px;
    width: auto;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.partner-card:hover .partner-logo-box img {
    filter: grayscale(0%);
}

.partner-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-top: 0;
    margin-bottom: 15px;
    min-height: 44px; /* wyrównanie tytułów */
    display: flex;
    align-items: center;
}

.partner-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    text-align: justify;
}
  
@media(max-width: 1280px) {
  .container.bg-img {
    width: 100%;
  }

  .panel {
    margin: 20px 10px;
  }
  
.bg-img .y-button, .bg-img  .t-button {
    padding: 7px 10px;
    font-size: 12px;
}

}
@media(max-width: 470px) {

  .bg-img {
    background-image: url('/conf-data/BIMDAYS2026/images/BIM%20DAYS%202026_www_mobile.png'); 
    //background-image: url('/conf-data/BIMDAYS2026/images/header-mobile2.png'); 
    min-height: 300px;
  }
  .btn-container {
    min-height: 300px;
  }  
.banner-btn-container {
  bottom: 20px;
}
   .schedule__time {
      padding: 10px 3px;
      width: auto;
  }
  
  .program-table-block-annotation {
    font-size: .7em;
  }
  .program-table-subblock-annotation {
    
    font-size: .6em;
  }
  
}