body {
  font-family: "Lato", sans-serif;
  margin: 0px;
  padding: 0px;
  display: grid;
  grid-template-areas:
    "nav"
    "reg"
    "foo";
}
.col-3 {
  width: 25%;
}

.col-6 {
  width: 50%;
}

.col-12 {
  width: 100%;
}

.error {
  font-weight: 700;
  color: red;
  margin-top: 10px;
  display: none;
  font-size: 15px;
}

.selected {
  background: #232362;
  color: white;
}

.selected td {
  color: white;
}

.selected .button-group button {
  color: #124453;
}

/* TOP */

#nav {
  grid-area: nav;
  text-align: center;
}
#nav img {
  width: 1070px;
}

/* LOGO */

.baner-container {
  position: absolute;
  top: 0;
  left: 50%;
  width: 640px;
  height: 100%;
  margin-left: -320px;
  background: red;
}
.baner-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 400px !important;
}

/* REGISTER */

#register-section {
  grid-area: reg;
}
#register-section .top-container {
  width: 1070px;
  margin: 30px auto;
}
#register-section .top-container h1 {
  padding: 20px 0;
  background: #124453;
  font-size: 42px;
  letter-spacing: 4px;
  color: #ffffff;
  font-family: "VolvoNovum-Regular" !important;
  text-transform: uppercase;
  text-align: center;
}

#register-section .top-container > div {

}

#register-section .top-container > div div h2 {
  font-size: 30px;
  color: #ffffff;
  font-family: "Neris";
  font-weight: 600;
  background-color: #124453;
  padding: 20px 25px;
}
#register-section .top-container > div div p {
  font-size: 18px;
  color: #124453;
  font-family: "Lato";
  text-align: center;
}

/* FORM */

.wrap-registration {
  width: 670px;
  margin: 0 auto;
}
/* .wrap-registration h2{
	padding-left:10px;
	margin:100px 0;
	font-size: 30px;
    color: #124453;
	font-family: "Lato";
	font-weight: 400;
	text-align: center;
	text-transform: uppercase;
} */

#register-section .form-container {
  width: 670px;
  margin: 70px auto;
}
h2 {
  font-size: 18px;
  color: #ffffff;
  font-family: "Lato";
  font-weight: 400;
  background-color: #124453;
  padding: 10px;
  display: inline-block;
  margin: 15px 0;
}
#register-section .form-container h3 {
  padding-left: 10px;
  padding-bottom: 5px;
  margin: 0;
  margin-top: 30px;
  font-size: 18px;
  color: #000000;
  font-family: "Lato";
  font-weight: 400;
}
.form {
  padding: 10px;
  box-sizing: border-box;
}

.form-section {
  display: flex;
  flex-wrap: wrap;
}

/* Checkbox */
.checkbox-group2 {
  display: flex;
  flex-direction: column;
}
.checkbox-group2 label {
  position: relative;
  margin-bottom: 12px;
  padding-left: 35px;
  margin-right: 35px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 16px;
  color: #000000;
  font-weight: 700;
  text-align: left;
}
.checkbox-group2 label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox-group2 label .checkbox {
  position: absolute;
  top: -2px;
  left: 0;
  height: 25px;
  width: 25px;
  border: 1px solid #000000;
}
.checkbox:after {
  content: "";
  position: absolute;
  display: none;
}
.checkbox-group2 label input:checked ~ .checkbox:after {
  display: block;
}
.checkbox-group2 label .checkbox:after {
  left: 5px;
  top: 5px;
  width: 15px;
  height: 15px;
  background: #000000;
  border-width: 0 3px 3px 0;
}

/* RADIO */

.radio-group {
  margin: 20px 10px;
}

.radio-group label {
  position: relative;
  margin-bottom: 12px;
  padding-left: 35px;
  margin-right: 35px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 16px;
  color: #000000;
  font-weight: 700;
  text-align: left;
}
.radio-group label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.radio-group label .checkbox {
  position: absolute;
  top: -2px;
  left: 0;
  height: 25px;
  width: 25px;
  border: 1px solid #000000;
}
.checkbox:after {
  content: "";
  position: absolute;
  display: none;
}
.radio-group label input:checked ~ .checkbox:after {
  display: block;
}
.radio-group label .checkbox:after {
  left: 5px;
  top: 5px;
  width: 15px;
  height: 15px;
  background: #000000;
  border-width: 0 3px 3px 0;
}

/* RADIO TYPE*/

.radio-type-group {
  margin: 20px 10px;
}

.radio-type-group label {
  position: relative;
  display: block;
  margin-bottom: 25px;
  padding-left: 35px;
  margin-right: 35px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 16px;
  color: #000000;
  text-align: left;
}
.radio-type-group label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.radio-type-group label .checkbox {
  position: absolute;
  top: -2px;
  left: 0;
  height: 25px;
  width: 25px;
  border: 1px solid #000000;
}
.checkbox:after {
  content: "";
  position: absolute;
  display: none;
}
.radio-type-group label input:checked ~ .checkbox:after {
  display: block;
}
.radio-type-group label .checkbox:after {
  left: 5px;
  top: 5px;
  width: 15px;
  height: 15px;
  background: #000000;
  border-width: 0 3px 3px 0;
}

/* TABLE */
.table-group {
  margin: 50px 10px;
}
table tr td {
  width: 33.33%;
}
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}
table thead tr td {
  font-size: 18px;
  color: #000000;
  font-family: "Lato";
  font-weight: 400;
  padding-left: 20px;
}
table tbody tr td {
  font-size: 18px;
  color: #000000;
  font-family: "Lato";
  font-weight: 400;
  padding-left: 20px;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}
table tbody tr > td:first-child {
  border-left: 1px solid black;
}
table tbody tr > td:last-child {
  border-right: 1px solid black;
}

/* Checkbox */

.checkbox-group {
  margin: 50px 10px;
}

.checkbox-group label {
  display: block;
  position: relative;
  margin-bottom: 25px;
  padding-left: 35px;
  margin-right: 35px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: left;
  font-size: 18px;
  color: #000000;
  font-family: "Lato";
  font-weight: 400;
}
.checkbox-group label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox-group label .checkbox {
  position: absolute;
  top: -2px;
  left: 0;
  height: 25px;
  width: 25px;
  border: 1px solid #000000;
}
.checkbox:after {
  content: "";
  position: absolute;
  display: none;
}
.checkbox-group label input:checked ~ .checkbox:after {
  display: block;
}
.checkbox-group label .checkbox:after {
  left: 5px;
  top: 5px;
  width: 15px;
  height: 15px;
  background: #000000;
  border-width: 0 3px 3px 0;
}

/* BUTTON */

button:focus {
  outline: none;
}

.button-group {
  display: flex;
  justify-content: flex-end;
  margin: 10px;
  box-sizing: border-box;
}
.button-group button {
  cursor: pointer;
  padding: 15px 20px;
  border-radius: 25px;
  background-color: #124453;
  border: 0;
  font-size: 18px;
  color: #fefefe;
  font-family: "Lato";
  font-weight: 400;
  text-align: center;
  color: white;
}

.send-button button {
  width: 314px;
  height: 56px;
  border-radius: 28px;
  background-color: #124453;
  margin-top: 30px;
}
.send-button a {
  border-radius: 28px;
  background-color: #124453;
  margin-top: 30px;
  color: white;
  padding: 17px 74px;
  font-size: 18px;
  text-decoration: none;
}
.button-group .disabled-button {
  cursor: not-allowed;
  color: #fefefe;
  background-color: #cccccc;
}

/* INPUT */

input[type="text"] {
  background: none;
  border: 1px solid black;
  padding: 17px 26px;
  width: 100%;
  box-sizing: border-box;
  font-size: 18px;
  color: #000000;
  font-family: "Lato";
  font-weight: 400;
}
input[type="text"]:focus {
  outline: none;
}

input[type="number"] {
  background: none;
  border: 1px solid black;
  padding: 17px 26px;
  width: 100%;
  box-sizing: border-box;
  font-size: 18px;
  color: #000000;
  font-family: "Lato";
  font-weight: 400;
}
input[type="number"]:focus {
  outline: none;
}

/* SELECT */

select {
  height: 60px;
  background: none;
  border: 1px solid black;
  padding: 17px 26px;
  width: 100%;
  box-sizing: border-box;
  font-size: 18px;
  color: #000000;
  font-family: "Lato";
  font-weight: 400;
}
select:focus {
  outline: none;
}

.selectdiv {
  position: relative;
  float: left;
}
.selectdiv:after {
  content: "\f078";
  font: normal normal normal 17px/1 FontAwesome;
  color: white;
  right: 10px;
  top: 10px;
  padding: 20px 10px;
  height: 60px;
  background: red;
  position: absolute;
  pointer-events: none;
  box-sizing: border-box;
}

/* IE11 hide native button (thanks Matt!) */
select::-ms-expand {
  display: none;
}

.selectdiv select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Add some styling */

  display: block;
  width: 100%;
  max-width: 320px;
  height: 50px;
  float: right;
  margin: 5px 0px;
  padding: 0px 24px;
  font-size: 16px;
  line-height: 1.75;
  color: #333;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #0ebeff;
  -ms-word-break: normal;
  word-break: normal;
}

/* PLACEHOLDER */

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: black;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: black;
}
:-ms-input-placeholder {
  /* IE 10+ */
  color: black;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: black;
}

/* Footer */

#footer {
  grid-area: foo;
  width: 100%;
  height: 195px;
  background-color: #124453;
  padding: 40px 100px;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}
.footer-container {
  display: flex;
  justify-content: space-between;
}
.footer-container .right {
  display: flex;
  align-items: center;
}
.footer-container .right ul {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  list-style-type: none;
  margin: 0;
  padding: 0;
  color: white;
  font-size: 24px;
}
.footer-container .right li {
  margin-left: 50px;
}
.footer-container .right li a {
  text-decoration: none;
  color: #fefefe;
}
.footer-container .right li a:hover {
  text-decoration: underline;
}

.debug {
  position: fixed;
  top: 40px;
  left: 40px;
  width: 400px;
  height: 800px;
  background: #00000040;
  padding: 20px;
}
.debug h3 {
  margin: 0;
  padding: 0;
  font-weight: 500;
}

.select2 {
  width: 100% !important;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: none;
  border-bottom: 1px solid #000;
  padding: 19px 30px;
  outline: none;
  font-size: 1rem;
}
.select2-container--default .select2-selection--single {
  color: rgb(36, 36, 36);
  background: rgba(255, 255, 255, 0.5);
  height: 58px;
  padding: 9px 15px;
  border: 1px solid black;
  border-radius: 0;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  padding: 5px 13px;
  color: rgb(36, 36, 36);
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 16px;
  right: 1px;
  color: black;
  width: 15px;
}

.select2-container--open .select2-dropdown--below {
  border: 1px solid black;
  border-radius: 0;
  top: -58px;
}
.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  background-color: #124453;
}
.select2-results__option {
  padding: 10px 20px;
  font-size: 1rem;
}
.select2-search--dropdown {
  padding: 0;
}

.col-lg-6 {
  width: 50%;
  float: left;
  min-height: 200px;
}

/* lightgallery */
.wrap-gallery{
    position: relative;
}
.wrap-gallery .loading{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wrap-gallery .loading-img img{
    opacity: 0.3;
}
.wrap-gallery .loading img{
    opacity: 1 !important;
    z-index: 9999;
}
.wrap-lightgallery {
    display: block;
}
.wrap-lightgallery.loading{
    width:100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
}
.wrap-lightgallery .results{
    width: 100%;
    text-align : right;
    margin-bottom: 10px;
}
.wrap-lightgallery .pagination{
    display: flex;
}
.wrap-lightgallery .pagination .pages{
    margin-left: auto;
}
.wrap-lightgallery .pagination .pages a{
    color: #182871;
    text-decoration: none;
}
.wrap-lightgallery .pagination .pages .active{
    color: #182871;
    font-weight: bold;
    text-decoration: underline;
}
.wrap-lightgallery > ul {
  margin:0;
  padding:0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.wrap-lightgallery > ul > li {
  margin-bottom: 15px;
  width: 24%;
  display: inline-block;
  list-style: outside none none;
}

.wrap-lightgallery > ul > li a {
  border: 3px solid #cccccc;
  border-radius: 3px;
  display: block;
  overflow: hidden;
  position: relative;
  float: left;
}

.wrap-lightgallery > ul > li a > img {
  -webkit-transition: -webkit-transform 0.15s ease 0s;
  -moz-transition: -moz-transform 0.15s ease 0s;
  -o-transition: -o-transform 0.15s ease 0s;
  transition: transform 0.15s ease 0s;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  height: 100%;
  width: 100%;
  display: flex;
}

.wrap-lightgallery > ul > li a:hover > img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}

.wrap-lightgallery > ul > li a:hover .poster > img {
  opacity: 1;
}

.wrap-lightgallery > ul > li a .poster {
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background-color 0.15s ease 0s;
  -o-transition: background-color 0.15s ease 0s;
  transition: background-color 0.15s ease 0s;
}

.wrap-lightgallery > ul > li a .poster > img {
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.wrap-lightgallery > ul > li a:hover .poster {
  background-color: rgba(0, 0, 0, 0.5);
}

.wrap-lightgallery .justified-gallery > a > img {
  -webkit-transition: -webkit-transform 0.15s ease 0s;
  -moz-transition: -moz-transform 0.15s ease 0s;
  -o-transition: -o-transform 0.15s ease 0s;
  transition: transform 0.15s ease 0s;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  height: 100%;
  width: 100%;
}

.wrap-lightgallery .justified-gallery > a:hover > img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.wrap-lightgallery .justified-gallery > a:hover .poster > img {
  opacity: 1;
}

.wrap-lightgallery .justified-gallery > a .poster {
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background-color 0.15s ease 0s;
  -o-transition: background-color 0.15s ease 0s;
  transition: background-color 0.15s ease 0s;
}

.wrap-lightgallery .justified-gallery > a .poster > img {
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.wrap-lightgallery .justified-gallery > a:hover .poster {
  background-color: rgba(0, 0, 0, 0.5);
}

.wrap-lightgallery .video .poster img {
  height: 48px;
  margin-left: -24px;
  margin-top: -24px;
  opacity: 0.8;
  width: 48px;
}
.wrap-lightgallery.dark > ul > li a {
  border: 3px solid #04070a;
}
.lg-toolbar{
    background-color: transparent !important;
}

a {
	color: #124453;
}

/* Stary kolor #182871 */


/* Galeria */
.year-button {
	background: #8b8b8b;
    padding: 10px 15px;
    margin: 5px;
    color: white;
    text-decoration: none;
}

.year-button+.active {
	background: #182871;
}

.container {
	width: 1070px;
    margin: 10px auto;
	box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}