:root {
  --cl-brown: #a45d20;
  --cl-brown-dark: #7c4515;
  --cl-brown-rgb: 164, 93, 32;
  --cl-green: #8fb640;
  --cl-black: #3f3f3f;
}
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*:not(ul,li,ol) {
  margin: 0;
  padding: 0;
}
/*
*:focus{
  outline: 3px solid var(--cl-green);
  outline-offset: 3px;
}
*/
@font-face {
  font-family: SpecialElite;
  src: url(../../assets/fonts/SpecialElite.ttf);
}
body:not(.title) {
  font-family: Calibri, 'Trebuchet MS', sans-serif;
}
.title {
  font-family: 'SpecialElite', sans-serif;
  font-weight: 300;
}
body,
html {
  min-height: 100vh;
}
body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: url('../../assets/img/background.jpg');
  background-position: center;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 2fr;
  gap: 4px;
  grid-auto-flow: dense;
}
.modal-gallery .gallery-img {
  height: 100%;
  width: 100%;
}
.modal-gallery .gallery-img img {
  object-fit: contain !important;
}
:is(.gallery, .modal-gallery) .gallery-img {
  position: relative;
  cursor: pointer;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
:is(.gallery, .modal-gallery) .gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  pointer-events: none;
}
:is(.gallery, .modal-gallery) .gallery-img > div :empty {
  display: none;
}
.gallery .gallery-img > div {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 16px;
  background: rgba(63, 63, 63, 0.7);
  color: inherit;
  opacity: 0;
  transition-duration: 0.3s;
  pointer-events: none;
}
.gallery .gallery-img:is(:hover, :focus) > div {
  opacity: 1;
}
@media only screen and (min-width: 758px) {
  .gallery .gallery-img:is(:nth-child(6n + 1)),
  .gallery .gallery-img:is(:nth-child(6n)) {
    grid-column: span 2;
  }
}
@media only screen and (max-width: 758px) and (min-width: 428px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery .gallery-img:is(:nth-child(3n +1)),
  .gallery .gallery-img:is(:nth-child(1)) {
    grid-column: span 2;
  }
}
@media only screen and (max-width: 428px) {
  .gallery {
    grid-template-columns: repeat(1, 1fr);
  }
}
.projects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: white;
  gap: 16px;
}
.projects .project-item {
  padding: 8px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}
.projects .project-item img {
  width: 35%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}
.projects .project-item .item-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tickets {
  display: flex;
  flex-direction: column;
  color: white;
  gap: 16px;
}
.tickets .tickets-item {
  padding: 8px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}
@media only screen and (max-width: 758px) {
  .tickets .tickets-item {
    flex-direction: column;
  }
  .tickets .tickets-item:not(:last-child) {
    border-bottom: 1px solid #9b9b9b;
  }
}
.tickets .tickets-item div {
  flex-grow: 2;
  line-height: 1.75rem;
}
.tickets .tickets-item img {
  object-fit: contain;
}
.tickets .tickets-item .item-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 20px;
}
.tickets .tickets-item > p {
  font-size: 32px;
  white-space: nowrap;
  word-break: keep-all;
}
.contacts {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  color: white;
  gap: 16px;
  line-height: 1.35em;
}
.contacts a {
  color: inherit;
  text-decoration: none;
}
.contacts > div {
  display: flex;
  flex-direction: row;
  gap: 32px;
}
@media only screen and (max-width: 758px) {
  .contacts > div {
    flex-direction: column;
  }
}
.contacts > div > div {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contacts > div > div > div {
  font-size: 18px;
}
.modal-gallery {
  position: fixed;
  inset: 0;
  z-index: -10;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10vh 10vw;
}
.modal-gallery.show {
  background: rgba(63, 63, 63, 0.7);
  z-index: 10;
  cursor: pointer;
}
.ticket-groups {
  color: white;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#shopping-cart-summary a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  color: white;
  /*justify-content: right;*/
  position: relative;
}
#shopping-cart-summary .badge {
  position: absolute;
  top: -8px;
  left: 20px;
  border-radius: 40%;
  background-color: gray;
  font-size: 10px;
}
@media only screen and (min-width: 758px) {
  #shopping-cart-summary {
    margin-left: 16px !important;
  }
}
@media only screen and (max-width: 758px) {
  #shopping-cart-summary {
    margin-top: 16px !important;
  }
}
.customerInfo {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.customerInfo .customerInfo-item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.customerInfo .input-conatiner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 20%;
  min-width: 200px;
}
.customerInfo .input-conatiner label {
  color: white;
}
.customerInfo .input-conatiner input {
  height: 32px;
  font-size: 14px;
}
@media only screen and (max-width: 758px) {
  .customerInfo .customerInfo-item {
    flex-direction: column;
  }
}
.button-section {
  display: flex;
  justify-content: end;
}
.button-section .btn {
  width: 25%;
}
@media only screen and (max-width: 758px) {
  .button-section .btn {
    width: 100%;
  }
}
.fa {
  font-size: 20px;
}
label {
  color: white;
}
#termsConditionsLink,
#protectionPersonalDataLink {
  color: white;
}
.invalid-feedback,
.is-invalid {
  color: #FF2222;
}
.form-check-input.is-invalid ~ .form-check-label,
.was-validated .form-check-input:invalid ~ .form-check-label {
  color: #FF2222;
}
/* Main header */
#main-header {
  width: 100%;
  padding: 16px;
  background-color: var(--cl-brown);
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  z-index: 100;
  position: relative;
}
#main-header :is(ul,li) {
  margin: 0;
  padding: 0;
}
#main-header a {
  color: inherit;
  text-decoration: none;
}
#main-header .logo {
  margin-right: 32px;
}
#main-header .logo img {
  height: 72px;
}
#main-header #main-nav {
  width: 100%;
}
#main-header #main-nav ul {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  flex-wrap: wrap;
}
#main-header #main-nav ul li {
  padding: 8px 4px;
  color: white;
  transition: border 0.2s;
  border-bottom: 2px solid transparent;
}
#main-header #main-nav ul li:not(:first-child) {
  border-top: 2px solid white;
}
#main-nav-toggle img {
  display: none;
  height: 42px;
  width: 42px;
  padding: 4px;
}
#main-nav-toggle[aria-checked=true] img.open {
  display: block;
}
#main-nav-toggle[aria-checked=false] img.close {
  display: block;
}
@media only screen and (min-width: 758px) {
  #main-header #main-nav ul li:is(:hover,.active) {
    border-bottom: 2px solid white;
  }
  #main-nav-toggle {
    display: none;
  }
  #main-header #main-nav ul {
    flex-direction: row;
    gap: 2%;
    justify-content: flex-end;
  }
  #main-header #main-nav ul li {
    border-top: none !important;
    padding: 0;
  }
  #main-header {
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
  }
  #main-header .logo img {
    transform: scale(2) translateY(20%);
    margin: 0 32px;
  }
}
@media only screen and (max-width: 758px) {
  #main-nav.closed {
    display: none;
  }
  #main-nav {
    position: absolute;
    top: 100%;
    background-color: var(--cl-brown);
    width: 100%;
    left: 0;
    padding: 16px;
  }
}
/* Main content */
#main-content {
  flex-grow: 2;
  padding: 32px 5px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: min(100%, 1400px);
}
#main-content > section {
  /* background-image: radial-gradient(circle, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%); */
  /* box-shadow: 0px 0px 4px 5px rgba(0, 0, 0, 0.7); */
  background-color: rgba(0, 0, 0, 0.6);
  padding: 16px 32px;
}
@media only screen and (max-width: 758px) {
  #main-content {
    margin: 0;
  }
}
/* Banner */
.banner {
  width: 100%;
  height: 50vh;
  position: relative;
}
@media only screen and (max-width: 428px) {
  .banner {
    height: 25vh;
  }
}
.banner .imgs {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  overflow-x: hidden;
}
.banner .left,
.banner .right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition-duration: 0.3s;
  cursor: pointer;
  height: 80px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 5;
  opacity: 0.7;
}
.banner .left:hover,
.banner .right:hover {
  opacity: 1;
}
.banner .right {
  right: 0;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.banner .left {
  left: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.banner .imgs img {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  transition-duration: 0.7s;
  object-fit: fit;
  left: 50%;
  transform: translateX(-50%);
}
.banner .imgs img.active {
  opacity: 1;
  z-index: 1;
}
.banner .imgs img:not(.active) {
  opacity: 0;
}
.banner .indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  gap: 8px;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 10px;
  border-radius: 4px;
}
.banner .indicators span {
  display: block;
  width: 16px;
  height: 16px;
  background-color: #ccc;
  border: 1px solid #777;
  border-radius: 50%;
  transition-duration: 0.3s;
  cursor: pointer;
}
.banner .indicators span:is(.active, :hover) {
  background-color: #666;
  border: 1px solid #444;
}
/* Summary */
.summary {
  display: flex;
  flex-direction: row;
  color: white;
  gap: 16px;
}
.summary .summary-news {
  display: flex;
  flex-direction: column;
  width: 70%;
}
.summary .summary-news .news-item {
  padding: 8px;
  border-top: 1px solid white;
  display: flex;
  flex-direction: row;
  gap: 16px;
  color: inherit;
  text-decoration: none;
  flex-wrap: wrap;
}
.summary .summary-news .news-item .news-text {
  flex: 100 1 200px;
}
.summary .summary-news .news-item .news-text > div {
  margin-top: 8px;
}
.summary .summary-news .news-item img {
  width: 180px;
  flex: 1 1 max(30%, 180px);
  object-fit: contain;
}
.summary .summary-info {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1 1 400px;
}
.summary .summary-info > div > * {
  margin-top: 8px;
  width: 100%;
  color: inherit;
}
.summary .summary-info > div > table tr > td:last-of-type {
  text-align: right;
}
@media only screen and (max-width: 758px) {
  .summary {
    flex-direction: column-reverse;
  }
  .summary .summary-news {
    width: 100%;
  }
  .summary .summary-info {
    width: 100%;
  }
}
/* List */
.list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: white;
}
.list .list-item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  color: inherit;
  text-decoration: none;
  padding-bottom: 16px;
}
.list .list-item .list-text {
  flex: 100 1 200px;
}
.list .list-item img {
  width: 180px;
  flex: 1 1 max(30%, 180px);
  object-fit: contain;
}
@media only screen and (max-width: 758px) {
  .list .list-item {
    flex-direction: column;
  }
  .list .list-item:not(:last-child) {
    border-bottom: 1px solid #9b9b9b;
  }
  .list .list-item img {
    width: 100%;
  }
}
.list .list-item div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#main-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#main-footer .main-footer-data {
  display: grid;
  grid-template-areas: 'header header' 'info social';
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  background-color: var(--cl-brown);
  color: white;
  gap: 16px 32px;
  padding: 32px 32px;
}
#main-footer .main-footer-data h2 {
  grid-area: header;
}
#main-footer .main-footer-data .main-footer-info {
  display: flex;
  flex-direction: row;
  grid-area: info;
  align-items: flex-end;
  justify-content: space-between;
  line-height: 1.5em;
  gap: 36px;
}
#main-footer .main-footer-data .main-footer-info h3 {
  font-size: 16px;
}
#main-footer .main-footer-data .main-footer-social {
  grid-area: social;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
#main-footer .main-footer-data .main-footer-social img {
  width: 36px;
  height: 36px;
}
#main-footer .main-footer-partners {
  display: grid;
  grid-template-areas: 'header header header' 'left imgs right';
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 16px;
  padding: 32px 32px;
  background-color: white;
  height: 256px;
}
#main-footer .main-footer-partners h2 {
  grid-area: header;
}
#main-footer .main-footer-partners .left {
  grid-area: left;
  place-self: center;
}
#main-footer .main-footer-partners div {
  grid-area: imgs;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(20% - (16px * 5)/5);
  grid-template-rows: 1fr;
  gap: 16px;
  place-items: center;
  height: 100%;
  width: 100%;
  scroll-snap-type: inline mandatory;
  overflow-x: hidden;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
}
#main-footer .main-footer-partners div a {
  max-width: 100%;
  max-height: 100%;
  min-width: 0;
  min-height: 0;
  scroll-snap-align: center;
  display: flex;
}
#main-footer .main-footer-partners div img {
  width: 100%;
  object-fit: contain;
}
#main-footer .main-footer-partners .rigth {
  grid-area: right;
}
#main-footer .main-footer-partners :is(.left,.right) {
  height: 45px;
  width: auto;
  transition-duration: 0.3s;
  cursor: pointer;
}
#main-footer .main-footer-partners > a {
  height: -webkit-fit-content;
  height: fit-content;
  place-self: center;
}
#main-footer .main-footer-partners :is(.left,.right):hover {
  filter: brightness(0.5);
}
@media only screen and (max-width: 927px) {
  #main-footer .main-footer-data {
    grid-template-areas: 'info social';
    grid-template-columns: 1fr auto;
    grid-template-rows: 1fr;
    gap: 16px;
    padding: 8px 16px;
  }
  #main-footer .main-footer-data h2 {
    display: none;
  }
  #main-footer .main-footer-data .main-footer-info > :not(.keep) {
    display: none;
  }
  #main-footer .main-footer-data .main-footer-info {
    flex-direction: column;
    align-items: normal;
    gap: 16px;
  }
}
/* Eshop */
.eshop {
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: white;
}
.eshop table {
  color: white;
}
.eshop table .controls {
  display: block;
}
.eshop table a {
  color: inherit;
  text-decoration: none;
}
.eshop > h1 {
  font-size: xx-large;
}
.eshop .eshop-item {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 16px;
  padding-bottom: 10px;
  /* border-bottom: 1px solid white; */
}
.eshop .eshop-item:first-of-type {
  padding-top: 10px;
  /* border-top: 1px solid white; */
}
.eshop .eshop-item .eshop-content {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
}
.eshop .eshop-item .eshop-content .text {
  flex: 1 100 100%;
}
.eshop .eshop-item .eshop-content .img {
  width: 180px;
  flex: 1 1 max(30%, 180px);
}
.eshop .eshop-item .eshop-content .img > img {
  width: 100%;
  object-fit: contain;
}
.eshop .eshop-item .eshop-info {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex: 1 1 0;
}
.eshop .eshop-item .price {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
}
.eshop .eshop-item .price > p {
  font-size: 32px;
  color: inherit;
  text-align: center;
  white-space: nowrap;
  word-break: keep-all;
}
.eshop .eshop-item a {
  color: inherit;
  text-decoration: none;
}
.eshop .eshop-item .controls .shopping-cart {
  width: 1.4rem;
}
.eshop .eshop-item svg {
  border-radius: 50%;
  background-color: transparent;
  padding: 4px;
}
.eshop .eshop-item svg:hover {
  background-color: #777;
}
.eshop .eshop-item svg:focus {
  background-color: #777;
}
.eshop .controls {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}
.eshop .basket-item {
  border-bottom: 1px solid white;
  padding-bottom: 10px;
  padding-top: 10px;
}
.eshop .basket-item .controls {
  display: block;
}
.eshop .basket-item a {
  color: inherit;
  text-decoration: none;
}
.eshop .controls.added .amount {
  visibility: visible;
}
.eshop .controls.added > svg {
  visibility: hidden;
}
.eshop .basket-head {
  border-bottom: 1px solid white;
  padding-bottom: 10px;
  padding-top: 10px;
}
.eshop .basket-footer {
  border-bottom: 1px solid white;
  padding-bottom: 10px;
  padding-top: 10px;
}
.eshop .add-basket {
  white-space: nowrap;
}
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -webkit-appearance: textfield;
          appearance: textfield;
  -moz-appearance: textfield;
}
@media only screen and (max-width: 950px) {
  .eshop .eshop-item {
    flex-direction: column;
  }
  .eshop .eshop-item:not(:last-child) {
    border-bottom: 1px solid #777;
  }
  .eshop .eshop-item .img {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .eshop .eshop-item .eshop-info {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 500px) {
  .eshop .eshop-item {
    flex-direction: column;
  }
  .eshop .eshop-item .eshop-content {
    flex-direction: column;
    align-items: stretch;
  }
  .eshop .eshop-item .eshop-info {
    flex-direction: column;
    align-items: flex-end;
  }
}
/* Cart */
.cart {
  display: flex;
  flex-direction: column;
  color: white;
}
.cart table {
  color: white;
}
.cart table .controls {
  display: block;
}
.cart table a {
  color: inherit;
  text-decoration: none;
}
.cart > h1 {
  font-size: xx-large;
}
.cart .cart-item {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 16px;
  padding-bottom: 10px;
  /* border-bottom: 1px solid white; */
}
.cart .cart-item:first-of-type {
  padding-top: 10px;
  /* border-top: 1px solid white; */
}
.cart .cart-item .text {
  flex-grow: 2;
}
.cart .cart-item .img {
  width: 22.5%;
}
.cart .cart-item img {
  object-fit: contain;
}
.cart .cart-item .price {
  display: flex;
  flex-direction: column;
}
.cart .cart-item .price > p {
  font-size: 32px;
  color: inherit;
  text-align: center;
  white-space: nowrap;
  word-break: keep-all;
  min-width: 190px;
}
.cart .cart-item a {
  color: inherit;
  text-decoration: none;
}
.cart .cart-item svg {
  border-radius: 50%;
  background-color: transparent;
  padding: 4px;
}
.cart .cart-item svg:hover {
  background-color: #777;
}
.cart .cart-item svg:focus {
  background-color: #777;
}
.cart .basket-item {
  border-bottom: 1px solid white;
  padding-bottom: 10px;
  padding-top: 10px;
}
.cart .basket-item a {
  color: inherit;
  text-decoration: none;
}
.cart .controls {
  display: inline-block;
}
.cart .controls.added .amount {
  visibility: visible;
}
.cart .controls.added > svg {
  visibility: hidden;
}
.cart .basket-head {
  border-bottom: 1px solid white;
  padding-bottom: 10px;
  padding-top: 10px;
}
.cart .basket-footer {
  border-bottom: 1px solid white;
  padding-bottom: 10px;
  padding-top: 10px;
}
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -webkit-appearance: textfield;
          appearance: textfield;
  -moz-appearance: textfield;
}
@media only screen and (max-width: 758px) {
  .cart .cart-item {
    flex-direction: column;
  }
  .cart .cart-item:not(:last-child) {
    border-bottom: 1px solid #777;
  }
  .cart .cart-item .img {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .cart .cart-item img {
    width: 75%;
  }
}
/* Amount control */
.amount-control {
  display: flex;
  flex-direction: row;
  gap: 0.2rem;
  color: white;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
}
.amount-control .amount-input {
  width: 3ch;
  text-align: center;
  border: 0;
  background: transparent;
  color: white;
  font-weight: 600;
  font-size: 1.3rem;
}
.amount-control .remove,
.amount-control .add {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  padding: 4px;
  aspect-ratio: 1/1;
  width: 2rem;
}
.amount-control .remove > img,
.amount-control .add > img {
  width: 100%;
  object-fit: contain;
}
/* Button */
.btn {
  background-color: var(--cl-brown);
  border-color: var(--cl-brown);
  border-radius: 2px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: white;
}
.btn.icon {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.btn.icon img {
  width: 28px;
}
.btn:hover {
  /* filter: brightness(0.9); */
  background-color: var(--cl-brown-dark);
}
.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  background-color: #198754;
  border-color: #198754;
}
.btn-check + .btn:hover {
  /* background-color: var(--cl-brown-dark); */
  border-color: white;
  color: white;
}
/* Detail */
.detail {
  display: flex;
  flex-direction: row-reverse;
  gap: 16px;
  color: white;
  flex-wrap: wrap;
}
.detail .detail-img {
  flex: 1 1 max(30%, 400px);
}
.detail .detail-img img {
  object-fit: contain;
  width: 100%;
}
.detail .detail-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 100 1 500px;
}
/* Grid img */
.grid-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  color: white;
}
.grid-img .desc {
  width: 100%;
}
.grid-img .grid-imgs {
  display: flex;
  flex-direction: row;
  align-self: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 0 32px;
  width: 100%;
}
.grid-img .grid-imgs a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  color: inherit;
  text-decoration: none;
}
@media only screen and (min-width: 758px) {
  .grid-img .grid-imgs a {
    width: calc(50% - 8px);
  }
}
@media only screen and (min-width: 968px) {
  .grid-img .grid-imgs a {
    width: calc(25% - 12px);
  }
}
.grid-img .grid-imgs a:hover img {
  filter: brightness(0.9);
}
.grid-img .grid-imgs a img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  transition: filter 0.2s;
}
/* Text */
.text {
  display: flex;
  flex-direction: column;
  color: white;
  gap: 8px;
}
.text h1,
.text h2,
.text h3,
.text h4,
.text h5,
.text h6 {
  font-family: 'SpecialElite', sans-serif;
  font-weight: 300;
}
/* Text */
.adoption-wizard {
  color: white;
  /* .form-group{
    label {
      width: 100%;
    }

    input {
      width: 100%;
    }

    select {
      width: 100%;
    }

  } */
}
.adoption-wizard h1,
.adoption-wizard h2,
.adoption-wizard h3,
.adoption-wizard h4,
.adoption-wizard h5,
.adoption-wizard h6 {
  font-family: 'SpecialElite', sans-serif;
  font-weight: 300;
}
/* Adopt */
.adopt.active {
  display: grid;
}
.adopt {
  color: white;
  width: 100%;
  display: none;
  grid-template-areas: 'header header header' 'animal-img map-img map-img' 'table select submit';
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto 1fr;
  gap: 16px;
}
@media only screen and (max-width: 758px) {
  .adopt {
    grid-template-areas: 'header' 'animal-img' 'select' 'table' 'submit';
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    justify-content: center;
  }
  .adopt > .adopt-map-img {
    display: none;
  }
}
.adopt > header {
  grid-area: header;
}
.adopt > .adopt-animal-img {
  grid-area: animal-img;
}
.adopt > .adopt-map-img {
  grid-area: map-img;
  width: 80%;
  justify-self: center;
}
.adopt > table {
  grid-area: table;
  text-align: left;
  color: inherit;
}
.adopt > table tr {
  display: flex;
  gap: 4px;
}
.adopt > div {
  grid-area: select;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.adopt > div select {
  width: 100%;
  font-weight: 600;
}
.adopt > div h2 {
  font-size: 0.9em;
}
.adopt > .adpot-btn-group {
  grid-area: submit;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.adopt > .adpot-btn-group a.btn {
  color: inherit;
  text-decoration: none;
  display: grid;
  place-items: center;
  transition-duration: 0.5s;
}
.adopt img {
  width: 100%;
}
