@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
.header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 1rem 5%;
  display: flex;
  align-self: center;
  z-index: 3;
}
.header .header_main_navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header .header_main_navbar .logo {
  font-size: 2rem;
  color: white;
  text-decoration: none;
  font-weight: 700;
  width: 12rem;
}
.header .header_main_navbar .logo img {
  width: 100%;
}
.header .header_main_navbar #check {
  display: none;
}
.header .header_main_navbar .navbar {
  display: flex;
  gap: 2rem;
  height: 5.5rem;
  margin-left: auto;
}
.header .header_main_navbar .navbar .mobile_navbar {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media only screen and (max-width: 1199px) {
  .header .header_main_navbar .navbar .mobile_navbar {
    gap: 2rem;
  }
}
.header .header_main_navbar .navbar .dropdown_item {
  height: 5.5rem;
  display: flex;
  align-items: center;
  margin-top: -0.5rem;
}
.header .header_main_navbar .navbar .dropdown_item .dropdown_link {
  text-decoration: none;
  position: relative;
  color: white;
  border-radius: 18px;
  transition: all 0.3s ease;
  font-weight: 400;
  cursor: pointer;
  padding: 0.5rem 0;
}
.header .header_main_navbar .navbar .dropdown_item .dropdown_link::before {
  content: "";
  width: 100%;
  height: 0.3rem;
  background: #B11F25;
  position: absolute;
  top: -2.5rem;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
}
.header .header_main_navbar .navbar .dropdown_item .dropdown_link:hover {
  font-weight: 700;
}
.header .header_main_navbar .navbar .dropdown_item .dropdown_link:hover::before {
  opacity: 1;
}
.header .header_main_navbar .navbar .dropdown_item .dropdown_cointainer {
  position: absolute;
  top: 5rem;
  background-color: #ffffff;
  border-radius: 7px;
  padding: 1rem;
  width: 22rem;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20%);
  transition: all 0.5s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  pointer-events: none;
}
.header .header_main_navbar .navbar .dropdown_item:hover .dropdown_cointainer {
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
  pointer-events: auto;
}
.header .header_main_navbar .navbar .header_cislo a {
  font-weight: 700 !important;
  font-size: 1.2rem !important;
}
.header .header_main_navbar .navbar .header_cislo a:hover {
  background: none !important;
}
.header .header_main_navbar .icons {
  font-size: 2rem;
  cursor: pointer;
  display: none;
  z-index: 101;
}
@media only screen and (max-width: 1199px) {
  .header .header_main_navbar {
    padding: 1.3rem 0;
  }
  .header .header_main_navbar .header_main_navbar {
    justify-content: space-between;
  }
  .header .header_main_navbar .logo {
    z-index: 101;
  }
  .header .header_main_navbar .icons {
    display: inline-flex;
    color: white;
  }
  .header .header_main_navbar .icons #menu-icon {
    filter: brightness(0) invert(1);
  }
  .header .header_main_navbar #check:checked ~ .icons #menu-icon {
    display: none;
  }
  .header .header_main_navbar .icons #close-icon {
    display: none;
  }
  .header .header_main_navbar #check:checked ~ .icons #close-icon {
    display: block;
  }
  .header .header_main_navbar .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(6, 21, 40, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
  }
  .header .header_main_navbar #check:checked ~ .navbar {
    opacity: 1;
    visibility: visible;
  }
  .header .header_main_navbar .mobile_navbar {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    padding: 0 5%;
    margin: 0;
    width: 100%;
  }
  .header .header_main_navbar .dropdown_item {
    height: auto !important;
    width: auto;
    margin: 0;
    background: none;
  }
  .header .header_main_navbar .dropdown_item .dropdown_link {
    color: white;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: none;
    height: auto;
    width: auto;
    border-radius: 0;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  .header .header_main_navbar .dropdown_item .dropdown_link::before {
    display: none;
  }
  .header .header_main_navbar .dropdown_item .dropdown_link:hover {
    color: #B11F25;
    transform: scale(1.05);
  }
  .header .header_main_navbar .header_cislo {
    margin-top: 2rem;
  }
}

body {
  font-family: "Montserrat", sans-serif !important;
}

#welcome {
  background-image: url("/assets/images/hero_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 120vh;
  padding: 0 5%;
  position: relative;
}
#welcome.welcome-alternative {
  background-image: url("/assets/images/hero_bg_alternative.jpg");
  background-position: top center;
  min-height: auto;
  padding-top: 45%;
}
#welcome h1 {
  padding-top: 22rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 3.5rem;
  color: white;
}
#welcome p {
  color: white;
  font-weight: 400;
  width: 35%;
  margin-top: 2rem;
}
#welcome #welcome_btns {
  display: flex;
  gap: 2rem;
  position: absolute;
  bottom: 30rem;
}
#welcome #welcome_btns a {
  display: block;
  font-size: 2rem;
  color: white;
}
@media only screen and (max-width: 1920px) {
  #welcome h1 {
    padding-top: 17rem;
  }
  #welcome p {
    width: 40%;
  }
  #welcome #welcome_btns {
    bottom: 24rem;
  }
}
@media only screen and (max-width: 1680px) {
  #welcome {
    min-height: 65rem;
  }
  #welcome h1 {
    font-size: 3rem;
    padding-top: 13rem;
  }
  #welcome p {
    width: 50%;
  }
  #welcome #welcome_btns {
    bottom: 20rem;
  }
}
@media only screen and (max-width: 1550px) {
  #welcome {
    min-height: 60rem;
  }
  #welcome h1 {
    padding-top: 10rem;
  }
  #welcome p {
    width: 55%;
  }
}
@media only screen and (max-width: 1199px) {
  #welcome {
    background-image: url("/assets/images/bg_mobil.png");
  }
  #welcome p {
    width: 100%;
  }
  #welcome #welcome_btns {
    bottom: 3rem;
  }
}
@media only screen and (max-width: 750px) {
  #welcome {
    min-height: 50rem;
  }
  #welcome h1 {
    font-size: 2rem;
    padding-top: 9rem;
  }
  #welcome.welcome-alternative {
    padding-top: 120%;
  }
}

#nase-sluzby {
  padding: 0 20%;
}
#nase-sluzby #nase-sluzby-heading h2 {
  font-weight: 700;
  color: #023A78;
}
#nase-sluzby #nase-sluzby-content {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
#nase-sluzby #nase-sluzby-content .nase-sluzby-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  border: 1px solid #D4D4D4;
  padding: 1.5rem 2rem;
}
#nase-sluzby #nase-sluzby-content .nase-sluzby-card .nase-sluzby-card-text strong {
  color: #023A78;
  font-size: 1.4rem;
}
@media only screen and (max-width: 749px) {
  #nase-sluzby #nase-sluzby-content .nase-sluzby-card .nase-sluzby-card-text strong {
    font-size: 1rem;
  }
}
#nase-sluzby #nase-sluzby-content .nase-sluzby-card:nth-child(3) .nase-sluzby-card-img img {
  width: 4rem;
}
@media only screen and (max-width: 1132px) {
  #nase-sluzby #nase-sluzby-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 749px) {
  #nase-sluzby #nase-sluzby-content {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (max-width: 1920px) {
  #nase-sluzby {
    padding: 0 5%;
  }
}
@media only screen and (max-width: 1199px) {
  #nase-sluzby {
    padding: 2rem 5% 0 5%;
  }
}

#obchodni-informace {
  padding: 0 20%;
}
#obchodni-informace #obchodni-informace-heading h2 {
  font-weight: 700;
  color: #023A78;
}
#obchodni-informace #obchodni-informace-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  margin-top: 32px;
}
#obchodni-informace #obchodni-informace-content .item {
  padding: 40px 24px;
  border: 1px solid #C8C8C8;
}
#obchodni-informace #obchodni-informace-content .item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #023A78;
  margin-bottom: 12px;
}
#obchodni-informace #obchodni-informace-content .item p {
  margin: 0;
}
#obchodni-informace #obchodni-informace-content .item.red-item {
  border-color: #B11F25;
  background-color: #B11F25;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}
#obchodni-informace #obchodni-informace-content .item.red-item h4 {
  color: white;
  margin-bottom: 0;
}
#obchodni-informace #obchodni-informace-content .item.red-item i {
  font-size: 28px;
  transition: 0.3s ease;
}
#obchodni-informace #obchodni-informace-content .item.red-item:hover i {
  transform: translateX(8px);
}
@media only screen and (max-width: 1920px) {
  #obchodni-informace {
    padding: 0 5%;
  }
}
@media only screen and (max-width: 1366px) {
  #obchodni-informace #obchodni-informace-content {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 1199px) {
  #obchodni-informace {
    padding: 2rem 5% 0 5%;
  }
}
@media only screen and (max-width: 768px) {
  #obchodni-informace #obchodni-informace-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 520px) {
  #obchodni-informace #obchodni-informace-content {
    grid-template-columns: repeat(1, 1fr);
  }
}

#ceniky {
  padding: 4rem 20%;
}
#ceniky #ceniky-heading h2 {
  font-weight: 700;
  color: #023A78;
}
#ceniky #ceniky-content .pricelist-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}
#ceniky #ceniky-content .pricelist-header, #ceniky #ceniky-content .pricelist-row {
  display: grid;
  grid-template-columns: 2fr 3fr 1fr 1.5fr;
  align-items: center;
  border-bottom: 1px solid #EAEAEA;
  padding: 1rem 0;
  text-align: left;
}
#ceniky #ceniky-content .pricelist-cell {
  padding: 0 1rem;
}
#ceniky #ceniky-content .pricelist-cell:first-child {
  padding-left: 0;
}
#ceniky #ceniky-content .pricelist-header {
  border-bottom: 2px solid #C8102E;
  font-weight: 700;
  color: #333;
  padding-bottom: 0.8rem;
}
#ceniky #ceniky-content .pricelist-row .pricelist-cell:first-child {
  font-weight: 700;
}
#ceniky #ceniky-content .pricelist-header .pricelist-cell:last-child,
#ceniky #ceniky-content .pricelist-row .pricelist-cell:last-child {
  text-align: center;
  padding-right: 0;
}
#ceniky #ceniky-content .btn-download {
  text-decoration: none;
  display: inline-block;
  padding: 0.2rem 1.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid #C8102E;
  color: #C8102E;
  background-color: transparent;
  transition: all 0.3s ease;
  transform: skewX(-20deg);
}
#ceniky #ceniky-content .btn-download span {
  display: inline-block;
  transform: skewX(20deg);
}
#ceniky #ceniky-content .btn-download:hover {
  background-color: #C8102E;
  color: white;
}
@media only screen and (max-width: 992px) {
  #ceniky #ceniky-content .pricelist-header {
    display: none;
  }
  #ceniky #ceniky-content .pricelist-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1.5rem 0;
  }
  #ceniky #ceniky-content .pricelist-row .pricelist-cell:first-child::before {
    font-weight: 700;
  }
  #ceniky #ceniky-content .pricelist-cell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px dashed #DDD;
  }
  #ceniky #ceniky-content .pricelist-cell::before {
    content: attr(data-label);
    font-weight: 700;
    margin-right: 1rem;
  }
  #ceniky #ceniky-content .pricelist-cell:last-child {
    border-bottom: none;
    justify-content: center;
    padding-top: 1rem;
  }
  #ceniky #ceniky-content .pricelist-cell:last-child::before {
    display: none;
  }
}
@media only screen and (max-width: 1920px) {
  #ceniky {
    padding: 4rem 5%;
  }
}

#pobocky {
  padding: 0rem 20% 4rem 20%;
}
#pobocky #pobocky-heading h2 {
  font-weight: 700;
  color: #023A78;
}
#pobocky #pobocky-content {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
#pobocky #pobocky-content .pobocky-card {
  border: 1px solid #D4D4D4;
  padding: 1.5rem 2rem;
  position: relative;
  height: 14rem;
}
#pobocky #pobocky-content .pobocky-card .pobocky-card-text h3 {
  font-weight: 700;
  color: #B11F25;
}
#pobocky #pobocky-content .pobocky-card .pobocky-card-text ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 1.5rem;
}
#pobocky #pobocky-content .pobocky-card .pobocky-card-img {
  position: absolute;
  bottom: 0;
  right: 0;
}
#pobocky #pobocky-content .pobocky-card:nth-child(1) .pobocky-card-img img {
  width: 3.9rem;
}
#pobocky #pobocky-content .pobocky-card:nth-child(3) .pobocky-card-img img {
  width: 4.2rem;
}
@media only screen and (max-width: 992px) {
  #pobocky #pobocky-content {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (max-width: 1920px) {
  #pobocky {
    padding: 0rem 5% 4rem 5%;
  }
}

#kontakty {
  padding: 4rem 25%;
}
#kontakty #kontakty_wrap {
  box-shadow: 10px 10px 49px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 10px 10px 49px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 10px 10px 49px 0px rgba(0, 0, 0, 0.1);
  background: white;
  display: flex;
}
#kontakty #kontakty_wrap #kontakty_form_left {
  position: relative;
}
#kontakty #kontakty_wrap #kontakty_form_left #kontakty_form_left_bg {
  position: relative;
  width: 100%;
  z-index: 1;
}
#kontakty #kontakty_wrap #kontakty_form_left #kontakty_form_left_text_wrap {
  position: absolute;
  z-index: 2;
  top: 3rem;
  left: 3rem;
}
#kontakty #kontakty_wrap #kontakty_form_left #kontakty_form_left_text_wrap #kontakty_form_left_text {
  margin-top: 4rem;
}
#kontakty #kontakty_wrap #kontakty_form_left #kontakty_form_left_text_wrap #kontakty_form_left_text strong {
  font-size: 1.5rem;
  color: #023A78;
  font-weight: 700;
}
#kontakty #kontakty_wrap #kontakty_form_left #kontakty_form_left_text_wrap #kontakty_form_left_text ul {
  list-style: none;
  margin: 1rem 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#kontakty #kontakty_wrap #kontakty_form_left #kontakty_form_left_text_wrap #kontakty_form_left_text ul li {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#kontakty #kontakty_wrap #kontakty_form_left #kontakty_form_left_text_wrap #kontakty_form_left_text ul li a {
  text-decoration: none;
  color: #023A78;
}
#kontakty #kontakty_wrap #kontakty_form_right {
  width: 40%;
}
#kontakty #kontakty_wrap #kontakty_form_right h2 {
  margin-top: 3rem;
  font-weight: 700;
  color: #023A78;
}
#kontakty #kontakty_wrap #kontakty_form_right form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-top: 2rem;
}
#kontakty #kontakty_wrap #kontakty_form_right form .kontakty_form_input input {
  display: block;
  width: 100%;
  height: 2.5rem;
  border: 1px solid #CACACA;
  outline: none;
  padding: 0 1rem;
}
#kontakty #kontakty_wrap #kontakty_form_right form .kontakty_form_input textarea {
  display: block;
  min-height: 10rem;
  max-height: 10rem;
  width: 100%;
  border: 1px solid #CACACA;
  outline: none;
  padding: 1rem;
}
#kontakty #kontakty_wrap #kontakty_form_right form .kontakty_form_input label {
  display: block;
  color: #060606;
}
#kontakty #kontakty_wrap #kontakty_form_right form label[for=agree] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
#kontakty #kontakty_wrap #kontakty_form_right form label[for=agree] input {
  accent-color: #B11F25;
}
#kontakty #kontakty_wrap #kontakty_form_right form label[for=agree] a {
  color: #B11F25;
}
@media only screen and (max-width: 407px) {
  #kontakty #kontakty_wrap #kontakty_form_right form label[for=agree] {
    display: block;
  }
}
#kontakty #kontakty_wrap #kontakty_form_right form button {
  text-decoration: none;
  display: inline-block;
  padding: 0.4rem 2.2rem;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #C8102E;
  color: #C8102E;
  background-color: transparent;
  transition: all 0.3s ease;
  transform: skewX(-20deg);
  cursor: pointer;
  align-self: flex-start;
  margin-top: 1rem;
}
#kontakty #kontakty_wrap #kontakty_form_right form button span {
  display: inline-block;
  transform: skewX(20deg);
}
#kontakty #kontakty_wrap #kontakty_form_right form button:hover {
  background-color: #C8102E;
  color: white;
}
@media only screen and (max-width: 1920px) {
  #kontakty {
    padding: 4rem 17%;
  }
  #kontakty #kontakty_wrap #kontakty_form_right {
    width: 35%;
  }
}
@media only screen and (max-width: 1785px) {
  #kontakty {
    padding: 4rem 15%;
  }
  #kontakty #kontakty_wrap #kontakty_form_right {
    width: 35%;
  }
}
@media only screen and (max-width: 1700px) {
  #kontakty {
    padding: 4rem 5%;
  }
  #kontakty #kontakty_wrap #kontakty_form_left {
    width: 50%;
  }
  #kontakty #kontakty_wrap #kontakty_form_left #kontakty_form_left_bg img {
    width: 100%;
  }
  #kontakty #kontakty_wrap #kontakty_form_right {
    width: 35%;
  }
}
@media only screen and (max-width: 1460px) {
  #kontakty {
    padding: 4rem 5%;
  }
  #kontakty #kontakty_wrap #kontakty_form_right {
    width: 37%;
  }
}
@media only screen and (max-width: 1330px) {
  #kontakty {
    padding: 4rem 5%;
  }
  #kontakty #kontakty_wrap #kontakty_form_right {
    width: 33%;
  }
}
@media only screen and (max-width: 1199px) {
  #kontakty #kontakty_wrap {
    flex-wrap: wrap;
    box-shadow: none;
  }
  #kontakty #kontakty_wrap #kontakty_form_left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #kontakty #kontakty_wrap #kontakty_form_left #kontakty_form_left_bg {
    display: none;
  }
  #kontakty #kontakty_wrap #kontakty_form_left #kontakty_form_left_text_wrap {
    position: relative;
    top: 0;
    left: 0;
  }
  #kontakty #kontakty_wrap #kontakty_form_left #kontakty_form_left_text_wrap #kontakty_form_left_text ul {
    align-items: center;
  }
  #kontakty #kontakty_wrap #kontakty_form_right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #kontakty #kontakty_wrap #kontakty_form_right h2 {
    text-align: center;
  }
  #kontakty #kontakty_wrap #kontakty_form_right form {
    width: 30rem;
  }
}
@media only screen and (max-width: 600px) {
  #kontakty #kontakty_wrap #kontakty_form_right form {
    width: 100%;
  }
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 2rem 20%;
}
footer #footer_left ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}
footer #footer_left ul li .social {
  color: #B11F25;
  font-size: 1.5rem;
}
footer #footer_left ul li .link {
  color: #023A78;
  font-weight: 700;
}
footer #footer_left p {
  margin: 0;
  padding: 0;
  color: #023A78;
}
footer #footer_right span a {
  text-decoration: none;
  color: #060606;
  font-weight: 700;
}
@media only screen and (max-width: 1920px) {
  footer {
    padding: 2rem 5%;
  }
}
@media only screen and (max-width: 850px) {
  footer {
    flex-wrap: wrap;
  }
  footer #footer_left {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  footer #footer_left ul {
    justify-content: center;
  }
  footer #footer_right {
    width: 100%;
    text-align: center;
  }
}
@media only screen and (max-width: 624px) {
  footer #footer_left {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  footer #footer_left ul {
    flex-wrap: wrap;
    gap: 1;
  }
  footer #footer_left ul li {
    width: 100%;
  }
  footer #footer_left ul .footer_divider {
    display: none;
  }
}

.toast-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  min-width: 300px;
  max-width: 340px;
  background-color: #C8102E;
  color: white;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  z-index: 10000;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toast-notification.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast-notification.success {
  background-color: #28a745;
}

.toast-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0 0 1rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.toast-close:hover {
  opacity: 1;
}

.overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  top: 0;
  z-index: 999999999;
}
.overlay .overlay-background {
  position: fixed;
  width: 100%;
  height: 100%;
  display: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
.overlay .poster {
  max-width: 80vw;
  height: 80vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.overlay .poster .btn {
  outline: none;
  border: none;
  width: 32px;
  height: 32px;
  position: absolute;
  display: flex;
  background-color: #ffffff;
  right: -16px;
  top: -16px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  border-radius: 0;
}
.overlay .poster img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
}

/*# sourceMappingURL=style.css.map */
