body {
  font-family: 'Karla', sans-serif;
  background-color: #1d1d1b;
}
p {
  font-family: 'Karla', sans-serif;
}
p strong {
  font-weight: 600 !important;
}
.capaTriangulo {
  display: none;
}
body {
  padding-top: 40px;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Playfair Display', serif;
}
.icono {
  display: none !important;
}
.car h2 {
  color: #f4dcbe;
  font-family: 'Zapf';
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding-top: 50px;
}
.car p {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.car .line,
.flechas .line {
  height: 2px;
  width: 70px;
  background-color: #f4dcbe;

  margin-top: 10px;
}

/* 
* Cabecera
* -----------------------------------------------------
*/
.logo {
  text-align: center;
  padding-bottom: 30px;
  padding-top: 0px;
}
.logo .container-fluid {
  padding-top: 29px;
}
.backgroud-container {
  position: relative;
  padding: 0;
  background: url('../images/img_header.jpg') center/cover no-repeat;
  min-height: 100vh; /* Ensure the container covers the entire viewport height */
}
.text_header {
  color: #fff;
  margin: 0 30%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 90vh;
}
.mas_vivi {
  bottom: 80px;
  position: absolute;
}
.text_header h2 {
  font-size: 47.716px;
  font-weight: 500;
  line-height: 70px;
  color: #fff;
}

.text_header h3 {
  color: #f4dcbe;
  text-align: center;
  font-size: 29.865px;
  font-style: normal;
  font-weight: 300;
  line-height: 44.114px; /* 147.714% */
  text-transform: uppercase;
  font-family: 'Zapf';
  padding-top: 10px;
}
.text_header .button {
  background: transparent;
  border: 1px solid white;
  padding: 15px 70px;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
}

/* Navigation Menu Styles */

.navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.navigation input {
  display: none;
}
.navigation li {
  color: #fff;
  text-align: center;
  font-family: 'Zapf';
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.38px;
  display: inline;
  transition-delay: 2s;
}

.navigation a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
  margin: 0 45px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'Zapf';
}
.navigation a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 1400px) {
  .navigation a {
    margin: 0 25px !important;
  }
}

@media only screen and (max-width: 1200px) {
  .navigation a {
    margin: 0 15px !important;
  }
}

@media only screen and (max-width: 768px) {
  .navigation a {
    text-decoration: none;
    color: #1e1e23;
    opacity: 1;
    font-family: 'work sans', sans serif;
    font-size: 1em;
    font-weight: 400;
    transition: 200ms;
    margin: 0;
  }
  .navigation a:hover {
    opacity: 0.5;
  }
  .navigation ul {
    padding: 0;
    list-style-type: none;
  }

  .navigation .container {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .phone {
    position: absolute;
    top: 10px;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    left: 0;
  }
  .content {
    width: 94%;
    height: 91%;

    overflow: hidden;
  }
  nav {
    background-color: transparent;
    height: 65px;
  }

  #menuToggle {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 25px;
    left: 25px;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
  }

  #menuToggle input {
    display: flex;
    width: 40px;
    height: 32px;
    position: absolute;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
  }

  #menuToggle span {
    display: flex;
    width: 29px;
    height: 2px;
    margin-bottom: 5px;
    position: relative;
    background: #ffffff;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 5px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
      background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  }

  #menuToggle span:first-child {
    transform-origin: 0% 0%;
  }

  #menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
  }

  #menuToggle input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-3px, -1px);
    background: #36383f;
  }
  #menuToggle input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }

  #menuToggle input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
  }

  #menu {
    position: absolute;
    width: 300px;
    height: 339px;
    box-shadow: 0 0 10px #85888c;
    margin: -50px 0 0 -50px;
    padding-top: 75px;
    background-color: #f5f6fa;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(-100%, 0);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  }

  #menu li {
    padding: 35px 0 0 0;

    display: block;
  }

  #menuToggle input:checked ~ ul {
    transform: none;
  }
}



/* 
* Cabecera
* -----------------------------------------------------


#cabecera {
    background: 50% 50% / cover;
    background-image: url(../images/cabeceras/cabecera-1.jpg);
    /* height: calc(100vh - 140px); 
    height: 100vh;
    margin: 60px 40px 28px;
    position: relative;
}

#cabecera .capaTriangulo {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 32px;
    display: flex;
    align-items: end;
    gap: 20px;
    color: white;
}

#cabecera .capaTriangulo .flecha {
    display: flex;
    gap: 13px;
}

#cabecera .form .logo {
    width: 250px;
}
#cabecera .form > h2,.formMobile .form > h2 {

    color: #4e4e4e;
    font-size: 24px;
    display: block;
    font-family: 'Montserrat';
    font-weight: 600;
    text-align: center;
    background-color: #FFE1A6;
    position: absolute;
    bottom: -7px;
    padding: 18px 0px;
    width: inherit;
    right: 0;
}

#cabecera .capaTriangulo .box-img img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

@media only screen and (max-width: 1284px) { 
    #cabecera .capaTriangulo .box-img img {
        width: 100px;
        height: 100px;
    }
}

#cabecera .capaTriangulo .box-img h3 {
    font-family: 'BankGothicLTBT';
    font-size: 12px;
    text-align: end;
}

#cabecera .left h2 {
    width: 200px;
}

.left.end h2 {
    text-align: end;
}

#cabecera .capaTriangulo .flecha,
#cabecera .capaTriangulo .box-img {
    z-index: 2;
}

#cabecera .capaTriangulo .triangulo {
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    border-right: 300px solid transparent;
    border-top: 300px solid transparent;
    border-left: 300px solid rgba(27, 37, 44, .6);
    border-bottom: 300px solid rgba(27, 37, 44, .6);
    rotate: 270deg;
}
*/
@media only screen and (max-width: 1284px) {
  #cabecera .capaTriangulo .triangulo {
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    border-right: 148px solid transparent;
    border-top: 148px solid transparent;
    border-left: 148px solid rgba(27, 37, 44, 0.6);
    border-bottom: 148px solid rgba(27, 37, 44, 0.6);
    rotate: 270deg;
  }
}

#cabecera .capaTriangulo .flecha button {
  border: none;
  background: none;
}

#cabecera .capaTriangulo .flecha button img {
  transform: rotate(180deg);
}

@media only screen and (max-width: 1284px) {
  #cabecera .capaTriangulo .flecha button img {
    width: 42px;
  }
}

.tituloCabeceraMini {
  text-align: right;
}

.tituloCabeceraMini h2 {
  color: #ffffff;
  font-family: 'BankGothicLTBT';
  font-size: 18px;
  text-transform: uppercase;
  margin: 0;
}

.tituloCabeceraMini span {
  color: #ffffff;
  font-family: 'BankGothicLTBT';
  font-size: 12px;
  text-transform: uppercase;
}

.btn {
  min-width: 50px;
}

@media only screen and (min-width: 1000px) {
  .formMobile {
    display: none;
  }
}

@media only screen and (max-width: 1000px) {
  .formMobile {
    display: flex;
  }

  #cabecera .form {
    display: none;
  }

  #cabecera .form form .submits .submit input,
  .formMobile .form form .submits .submit input {
    font-size: 14px;
  }

  #cabecera .form form .inputs .input-style.sm {
    width: 100%;
  }

  .formMobile .form form .inputs .input-style.sm {
    width: 100%;
  }
}

/* 
* Section1
* -----------------------------------------------------
*/

.section1 {
  padding-bottom: 0;
}

.section1 .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.section1 .left {
  width: 40%;
}

.left h2 {
  color: #f4dcbe;
  text-align: right;
  font-size: 19px !important;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  min-width: 273px;
  font-size: 34px;
  font-family: 'Zapf';
}

.left.left2 h2 {
  min-width: 330px;
}

.section1 .right {
  color: #fff;
  padding-left: 10%;
}
.section1 .right p {
  color: #fff;
}
.right p {
  text-align: justify;
  font-size: 15px;
  font-style: normal;
  font-family: 'Karla', sans-serif !important;
  font-weight: 300;
  line-height: 26px;
  letter-spacing: 0.5px;
}

.section1 .right h1,
#section3 .left p {
  color: #fff;
}
.section1 .flechas {
  padding-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section1 .flechas span {
  color: #fff;
  font-family: 'Zapf';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.section1 .flechas img {
  width: 140px !important;
}

@media only screen and (max-width: 992px) {
  .section1 .left {
    width: 100%;
  }

  .section1 .left h2 {
    text-align: center;
    width: 100%;
  }

  .section1 .right {
    width: 100%;
  }
}

.section1 .right h1 {
  margin-bottom: 20px;
  font-size: 30px;
}

/* 
* Banner
* -----------------------------------------------------
*/

#banner {
  align-items: center;
  background: url(../images/banner.jpg) 50% 53% / cover;
  background-attachment: fixed;
  display: flex;
  height: 405px;
}

#banner h1 {
  color: #ffffff;
  margin: auto;
}

/* 
* Section2
* -----------------------------------------------------
*/

#section2 {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 80px;
  /* overflow: hidden; */
}
#section2 .left {
  margin-right: 15%;
}

#section2 .momentos {
  width: 25%;
}

#section2 .ctn {
  display: flex;
  flex-direction: column;
  width: 54%;
  overflow: auto;
}

@media only screen and (max-width: 1284px) {
  #section2 {
    flex-wrap: wrap;
  }

  #section2 .momentos {
    width: 100%;
  }

  #section2 .ctn {
    width: 100%;
  }
}

#section2 .momen-contador {
  font-family: 'BankGothicLTBT';
  color: #fff;
}

@media only screen and (max-width: 1284px) {
  #section2 .momen-contador {
    font-size: 12px;
    padding-left: 12px;
    padding-top: 8px;
  }
}

.carousel {
  position: relative;
  overflow-x: hidden;
  height: auto;
}

@media only screen and (max-width: 1284px) {
  .carousel {
    padding: 8px;
  }
}

.carousel-images {
  display: inline-flex;
  width: max-content;
  gap: 38px;
}

@media only screen and (max-width: 1284px) {
  /* .carousel-images {
        gap: 0;
    } */
}

#section2 .ctn .carousel .carousel-images .car > img {
  height: 470px;
}

@media only screen and (max-width: 1284px) {
  #section2 .ctn .carousel .carousel-images .car > img {
    height: 350px;
  }
}

#section2 .owl-carousel {
  width: 50%;
}

#section2 .ctn div:last-child {
  font-size: 16px;
  color: #fff;
}

#section2 .momentos h2 {
  text-align: right;
}

@media only screen and (max-width: 998px) {
  #section2 .momentos h2 {
    text-align: center;
    width: 98%;
  }
}

#section2 .ctn .carousel .carousel-images > div .icono {
  width: 50px;
  height: 40px;
  margin: 10px 0px;
}

#section2 .ctn .carousel .carousel-images .car > img {
  object-fit: cover;
}

#section2 .ctn .carousel .carousel-images > div .icono > img {
  width: 100%;
  height: inherit;
}

#section2 .ctn .carousel .carousel-images > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 636px;
}

@media only screen and (max-width: 700px) {
  #section2 .ctn .carousel .carousel-images > div {
    width: 300px;
  }
}

#section2 .flechas {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding-right: 21%;
  padding-bottom: 15px;
}

@media only screen and (max-width: 1284px) {
  #section2 .flechas {
    align-items: flex-end;
    display: flex;
    justify-content: space-around;
    width: 100%;
  }
}

#section2 .flechas button {
  background: 0;
  border: 0;
  border-bottom: 1px solid #1d1d1b;
  cursor: pointer;
  font-family: 'BankGothicLTBT';
  font-size: 16px;
  letter-spacing: 0.1rem;
  margin-top: 24px;
  padding-bottom: 4px;
  text-align: center;
  /* width: 120px; */
}

@media only screen and (max-width: 1284px) {
  #section2 .flechas button {
    margin-top: 0;
  }
}

#section2 .flechas #nextMomentos {
  cursor: pointer;
}
#nextMomentos img {
  width: 16px;
}

/* #section2 .ctn .flechas button img {
    width: 160px;
} */

/* 
* Section3
* -----------------------------------------------------
*/

.carousel-mobile {
  display: none;
}

#section3 {
  align-items: center;
  display: flex;
  gap: 49px;
  /* height: 900px; */
  justify-content: center;
  padding: 0;
  background-image: url('../images/bckground_carou.jpg');
  background-size: cover; /* This makes the image cover the entire container */
  background-position: center center; /* Center the image horizontally and vertically */
}

@media only screen and (max-width: 1284px) {
  #section3 {
    flex-wrap: wrap;
    padding: 20px 0;
  }
}

#section3 .descripcion {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 21px;
  /* height: 400px; */
  justify-content: space-between;
  padding-left: 26px;
  /* padding-right: 120px; */
  width: 40%;
}

@media only screen and (max-width: 1284px) {
  #section3 .descripcion {
    width: 96%;
  }
}

#section3 .descripcion .left h2 {
  color: #1d1d1b;
  text-align: right;
  font-family: 'Playfair Display', serif;
  font-size: 30px !important;
  font-style: normal;
  font-weight: 500;
  line-height: 113.8%; /* 34.14px */
  text-align: left;
  padding-bottom: 2rem;
}

@media only screen and (max-width: 1284px) {
  #section3 .descripcion .left h2 {
    padding-bottom: 0;
    text-align: left;
    width: 100%;
  }
}

@media only screen and (max-width: 1284px) {
  #section3 .descripcion {
    padding-left: 0;
    padding-right: 0;
  }

  #section3 .descripcion p {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.1rem;
    padding-left: 0;
  }
}

#section3 .left {
  width: 60%;
}

#section3 .ctn2 {
  width: 50%;
}

@media only screen and (max-width: 1284px) {
  #section3 .left {
    width: 100%;
  }

  #section3 .ctn2 {
    display: none;
    width: 100%;
  }

  #render.carousel-mobile {
    display: block;
  }
}

#section3 .ctn2 .flechas > button {
  border: none;
  background: none;
  color: #1d1d1b;
}

#section3 .ctn2 .flechas {
  align-items: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto 80px;
  padding-right: 60px;
}

@media only screen and (max-width: 1284px) {
  #section3 .ctn2 .flechas {
    align-items: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto 80px;
    padding-right: 60px;
  }
}

#section3 .flechas button {
  background: 0;
  border: 0;
  border-bottom: 1px solid #000000;
  cursor: pointer;
  font-family: 'BankGothicLTBT';
  font-size: 16px;
  letter-spacing: 0.1rem;
  /* margin-left: 40px;
    margin-top: 24px; */
  padding-bottom: 4px;
  text-align: center;
  /* width: 120px; */
}

@media only screen and (max-width: 1284px) {
  #section3 .flechas button {
    font-size: 12px;
    margin-left: 0;
    margin-top: 8px;
    /* width: 120px; */
  }
}

#section3 .ctn2 .flechas .numberVi {
  font-family: 'BankGothicLTBT';
  font-size: 16px;
  margin: 90px 0px;
  width: 70px;
  color: #1d1d1b;
}

#section3 .descripcion .flechas {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
}

#section3 .descripcion div p,
#section3 .flechas button {
  color: #1d1d1b;
  font-family: 'Karla', sans-serif;
}

#section3 .ctn-carouselVi {
  flex: 1;
}

.ctn2 {
  /* height: 900px; */
  justify-content: end;
  display: flex;
  overflow: auto;
}

@media only screen and (max-width: 1284px) {
  .ctn2 {
    flex-direction: column;
  }
}

.carousel2 {
  height: 900px;
  overflow: hidden;
  width: 100%;
}

.carousel2::-webkit-scrollbar,
.carousel::-webkit-scrollbar {
  display: none;
}

.carousel-images2 {
  height: 800px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.car2 {
  width: 579px;
  display: flex;
  height: 502px;
}

.car2 img {
  object-fit: cover;
  height: 375px;
  width: 100%;
}

#section3 .owl-carousel {
  width: 50%;
}

.gallery-ctn {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 900px;
  position: relative;
  overflow: auto;
}

#contacto {
  background-color: #f4dcbe;
  padding: 80px 0;
  position: relative;
}

.adorno__left {
  position: absolute;
  left: 0;
  top: 0;
}

.adorno__right {
  position: absolute;
  right: 0;
  top: 0;
}

#contacto h1 {
  font-family: 'Playfair Display', serif;
  color: #000000;
  font-size: 30px;
  margin-bottom: 36px;
}

.inactive {
  display: none;
}

.active {
  display: block;
}

/* 
* Modal
* -----------------------------------------------------
*/

#exampleModalCenter .modal-body {
  padding: 0px;
}
#exampleModalCenter .modal-body.view {
  display: flex;
  flex-wrap: wrap;
}
#exampleModalCenter .modal-header {
  position: absolute;
  right: 10px;
  z-index: 2;
  border-bottom: none;
  padding: 0px;
  justify-content: end;
}

#exampleModalCenter .modal-header button {
  background: none;
  border: none;
  color: white;
}
#exampleModalCenter .modal-content {
  height: 95vh;
  overflow: auto;
  background-color: #2d2d2d;
}
#exampleModalCenter .modal-dialog {
  width: 80%;
  max-width: none;
}

/* MODAL MOMENTOS*/
#exampleModalCenter .modal-body .modCar {
  display: flex;
  width: 50%;
  height: 33.4%;
  color: white;
}

/* MODAL MOMENTOS*/
#exampleModalCenter .modal-body .modCar h2 {
  color: white;
}

#exampleModalCenter .modal-body .modCar .icono > img {
  filter: invert(1);
  object-fit: contain;
}

#exampleModalCenter .modal-body .modCar {
  border-bottom: 1px solid white;
}
#exampleModalCenter .modal-body .modCar > div:last-child {
  border-left: 1px solid white;

  padding: 15px;
}

#exampleModalCenter .modal-body .modCar:last-child > div:last-child,
.modCar:last-child > img {
  border-bottom: none;
}

#exampleModalCenter .modal-body .modCar > div:last-child {
  display: flex;
  width: 60%;
  flex-direction: column;
  justify-content: space-between;
}
#exampleModalCenter .modal-body .modCar > div:last-child p {
  font-family: 'Montserrat';
  font-size: 12px;
  color: white;
  margin-bottom: 0px;
}
#exampleModalCenter .modal-body .modCar > img {
  width: 40%;
  height: auto;
  object-fit: cover;
  padding: 15px;
}

@media only screen and (max-width: 1284px) {
  #exampleModalCenter .modal-body .modCar > img {
    width: 47%;
  }

  #exampleModalCenter .modal-dialog {
    width: 95%;
  }

  #exampleModalCenter .modal-body .modCar {
    height: 330px;
  }
}
@media only screen and (max-width: 768px) {
  #exampleModalCenter .modal-dialog {
    width: 100%;
    margin: 0px;
  }
  #exampleModalCenter .modal-content {
    height: 100vh;
  }

  #exampleModalCenter .modal-body .modCar {
    height: 347px;
    width: 100%;
  }
}

/* 
* Responsive
* -----------------------------------------------------
*/

@media only screen and (max-width: 992px) {
  .adorno__left {
    display: none;
  }

  .adorno__right {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  section {
    margin: 40px 0;
  }
  .backgroud-container {
    min-height: 80vh;
  }
  .text_header {
    color: #fff;
    margin: 0;
    display: block;
    height: 100%;
    padding-top: 4rem;
  }
  .text_header h2 {
    font-size: 27px;
  }
  .text_header h3 {
    font-size: 25px;
  }
  .mas_vivi {
    bottom: 10px;
  }
  .mas_vivi button {
    font-family: 'Zapf' !important;
    cursor: none !important;
  }
  section .right {
    padding: 10px !important;
  }
  section .left h2,
  .section2 .left h2 {
    font-size: 24px !important;
    text-align: center;
  }
  #section2 .flechas {
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }
  .car h2 {
    padding-top: 10px;
  }
  .car p {
    font-size: 24px;
  }
  #render .owl-carousel .item img {
    height: 359px !important;
  }
  .foot1 {
    padding: 1rem 0;
    text-align: center;
  }
  .foot1 .dir p {
    text-align: center !important;
  }
  .foot1 .info li {
    text-align: center !important;
  }
  #footer-form form {
    padding: 10px;
  }
  #footer-form form .inputs .input-style input {
    padding: 15px 0 !important;
  }
  .text_header button {
    font-size: 15px;
  }
}

@media only screen and (max-width: 480px) {
  #exampleModalCenter .modal-body .modCar > img {
    height: 240px;
  }

  .formMobile .form > h2 {
    font-size: 18px;
  }

  .carousel-mobile {
    padding: 20px 0px;
  }
}

.redes img {
  margin-right: 4px;
  width: 18px;
}

.redes a {
  margin: 0 8px;
}



.btn-envio {
  padding: 20px 40px;
  border: 1px solid black;
  border-radius: 3px;
  font-size: 18px;
  font-weight: bold;
  transition: all .5s ease;
}
.btn-envio:hover {
  background-color: black;
  color:#f4dcbe;
}



/* cookies */
#cookiePopup {
  display: block;
  height: 25vh;
  position: fixed;
  bottom: 0px;
  top: auto;
  left: 0px;
  z-index: 99999;
  width: 100vw;
  padding: 0px;
}

.cookie-popup {
    flex-direction: row;
    padding: 20px;
    border-top: 1px solid #f4dcbe !important;
    background-color: #212121 !important;
    color: #f4dcbe !important;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute; 
    bottom: 0;
    width: 100%;
}

#cookiePopup .cookie-popup .cookie__txt {
  padding-right: 100px;
}
#cookiePopup .cookie-popup .cookie__txt p {
  color: #ccc;
}

#cookiePopup .cookie-popup .cookie__btns {
  display: flex;
  flex-direction: column;
}

#cookiePopup .cookie-popup .cookie__btns button {
  background-color: #f4dcbe;
  color: #111;
  border: 1px solid #f4dcbe;
  border-radius: 5px;
  text-transform: uppercase;
  margin-left: 20px;
  margin-bottom: 10px;
  padding: 10px 70px;
  margin-top: 0;
}