header {
    background: url('../images/header.jpg');
    background-size: 100%;
    background-repeat: no-repeat;
    min-height: 80vh;
    background-position: bottom;
    color:white;
}

header .top {
    display: flex;
    justify-content: space-between;
    padding: 30px 0px;
}

header .container-header {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    height: 50vh;
    padding: 5%;
}

header .container-header a {
    background: #2b2b2b;
    color: white;
    text-decoration: none;
    padding: 15px 45px;
    font-weight: 700;
}

header .container-header h1 {
    font-size: 4rem;
}

header .container-header p {
    padding: 0px 0 40px;
    max-width: 40%;
    font-size: 1.5rem;
}

header .logo {
    font-size: 3rem;
}

/* Nav */
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
nav li {
    float: left;
    padding: 10px 30px;
}

nav li>a {
    color: white;
    text-decoration: none;
    font-weight: 700;
}

/* Footer */

footer {
    background: #2b2b2b;
    clip-path: polygon(0% 20%, 100% 0%, 100% 100%, 0 100%);
    padding-top: 100px;
    padding-bottom: 50px;
    margin-top: 10%;
    color:white;
}

footer .copy {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #c7c7c7;
}

footer .logo {
    font-size: 3rem;
    font-weight: 500;
    color: #fac902;
}

footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
footer li {
    float: left;
    padding: 10px 30px;
}

footer li>a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
}

footer h4 {
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 10px;
}

footer h5 {
    font-weight: 300;
}

footer h5 a,
footer h5 a:hover {
    color: white;
    text-decoration: none;
}

/* Agenda */
#agenda {
    padding: 5% 0;
    background: url('/assets/images/watermark.jpg');
    background-repeat: no-repeat;
    background-position-x: left;
}

/* Register */
#register {
    background: #2b2b2b;
    clip-path: polygon(0% 7%, 100% 0%, 100% 100%, 0 90%);
    padding-top: 10%;
    padding-bottom: 10%;
}

/* MOBILE */
#register {
    /* clip-path: polygon(0 25px, 100% 0%, 100% 100%, 0 calc(100% - 25px)); */
}

#register h3 {
    color: white;
    font-weight: 700;
    padding-left: 100px;
    position: relative;
}
#register h3>div {
    color: white;
    font-weight: 500;
}

#register h3::after {
    content: "";
    position: absolute;
    width: 75px;
    height: 5px;
    background-color: white;
    left: 0;
    top: 15px;
}

#register p {
    color: white;
    padding-left: 100px;
}

#register .form {
    padding: 0 20%;
}

#register label {
    color:white;
    font-weight: 100;
    margin-top: 15px;
}

#register .form-control {
    border: 1px solid #505050;
    border-radius: 0;
    padding: 0.85rem 1rem;
}

#register button {
    background-color: #fac902;
    border: none;
    width: 100%;
    padding: 15px;
    color: white;
    font-weight: 700;
    margin-top: 20px;
}

#register #nocleg,
#register #wspolokator {
    display: none;
}

.radio-group {
    color: white;
}

.radio-group>label {
    margin-right: 15px;
}

.radio-group>label {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.radio-group>label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.radio-group>label .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #eee;
}

.radio-group>label:hover input ~ .checkmark {
    background-color: #ccc;
}

.radio-group>label input:checked ~ .checkmark {
    background-color: #fac902;
}

.radio-group>label .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.radio-group>label input:checked ~ .checkmark:after {
    display: block;
}

.radio-group>label .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Agenda */

#agenda h3 {
    color: black;
    font-weight: 700;
    padding-left: 100px;
    font-size: 2.5rem;
    position: relative;
}
#agenda h3>div {
    color: black;
    font-weight: 500;
}

#agenda h3::after {
    content: "";
    position: absolute;
    width: 75px;
    height: 5px;
    background-color: black;
    left: 0;
    top: 1.5rem;
}

#agenda h4 {
    font-weight: 700;
    font-size: 1.1rem;
}

#agenda p {
    color: black;
    font-weight: 600;
    padding-left: 100px;
    margin-top: 20px;
}

#agenda .agenda-column {
    margin-left: 100px;
    width: calc(100% - 100px);
    display: flex;
    margin-top: 40px;
}

#agenda .agenda-column .date {
    font-size: 6rem;
    font-weight: 900;
    line-height: 5rem;
    min-width: 30%;
}
#agenda .agenda-column .date span {
    color: #fac902;
}

#agenda table {
    width: 70%;
}

#agenda table tr td:first-child {
    white-space: nowrap;
    padding-right: 30px;
    font-weight: 500;
    font-size: 1.2rem;
    display: flex;
    justify-content: end;
}

#agenda .agenda span {
    font-size: 0.8rem;
    margin-bottom: 15px;
    display: block;
}

#agenda a {
    text-decoration: none;
    font-weight: 700;
}

/* Cookies */

.cookie-consent{
    position: fixed;
    bottom: 8px;
    left: 20px;
    width: 260px;
    padding-top: 7px;
    height: 83px;
    color: #fff;
    line-height: 20px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
    background: #1a1a1a;
    z-index: 120;
    cursor: pointer;
    border-radius: 3px;
    display: none;
}
  
.allow-button{
    height: 20px;
    width: 104px;
    color: #fff;
    font-size: 12px;
    line-height: 10px;
    font-weight: 700;
    border-radius: 2px;
    border: 1px solid #fac902;
    background-color: #fac902;
}

#agenda img {
    max-width: 100%;
}

#agenda .agenda-buttons {
    display: flex;
    justify-content: end;
}

#agenda .agenda-buttons button {
    border: none;
    background: #fac902;
    font-weight: 500;
    padding: 15px 50px;
    width: 200px;
    margin-right: 10px;
}
#agenda .agenda-buttons a {
    background: #ffffff;
    font-weight: 500;
    padding: 15px 0;
    text-decoration: none;
    color: black;
    width: 200px;
    border: 1px solid black;
    text-align: center;
}

/* Animacje */
button, a {
    transition: all .2s ease-in-out;
}
button:hover,
a:hover {
    transform: scale(1.1);
}

/* Error page */
.error-page {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #2b2b2b;
    color: #fac902;
    clip-path: polygon(0% 7%, 100% 0%, 100% 100%, 0 90%);
    font-weight: 700;
    font-size: 2rem;
}

.error {
    color: red;
    font-weight: 500;
}

.form-confirming {
    display: none;
}

.form-confirming img {
    max-width: 100%;
    border-radius: 5px;
}

/* select2 */
.select2 {
    width: 100% !important;
  }
  
  .select2-container--default .select2-selection--single {
    height: 53px !important;
    border: none !important;
    border-radius: 0 !important;
  }
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: black !important;
    padding: 12px 15px !important;
  }
  
  .select2-container {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 37px !important;
    right: 3px !important;
  }
  
  .select2-results__option
  {
    color: black !important;
  }
  
  .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable
  {
    background-color: #fac902 !important;
    color: white !important;
  }
  
  .select2-container--open .select2-dropdown--above {
    margin-top: -10px !important;
    border-bottom: none !important;
  }
  .select2-container--open .select2-dropdown--below {
    margin-top: -10px !important;
    border-top: none !important;
  }
  
  .select2-dropdown {
    border: none !important;
    border-radius: 0 !important;
  }
  
  .select2-container--default .select2-search--dropdown .select2-search__field {
    padding: 10px;
  }

  .select2-container--default .select2-selection--single .select2-selection__arrow b {
      margin-top: 4px !important;
  }

  .agenda-container {
    position: relative;
    height: 320px;
    overflow: hidden;
  }

  .agenda {
      position: relative;
  }

  .agenda::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 290px;
      -webkit-box-shadow: inset 0px -140px 57px -65px rgba(255, 255, 255, 1);
      -moz-box-shadow: inset 0px -140px 57px -65px rgba(255, 255, 255, 1);
      box-shadow: inset 0px -140px 57px -65px rgba(255, 255, 255, 1);
  }

  .agenda-slide {
      /* height: auto !important; */
  }
  .agenda-slide .agenda::after {
    content: '';
    width: 0;
    height: 0;
    display: none;
  }

  #agenda-down {
    border: none;
    background: #fac902;
    font-weight: 500;
    padding: 15px 50px;
    width: 200px;
    margin-right: 10px;
    float: right;
  }