* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

ul {
  list-style-type: none;
}

a {
  color: #b63b4d;
  text-decoration: none;
}

body {
  padding: 10px;
  width: 100%;
}
/** =======================
 * Contenedor Principal
 ===========================*/

h1 {
  font-size: 18px;
  font-weight: 400;
  margin: 10px;
}

h1 a {
  color: #c12c42;
  font-size: 16px;
}

.accordion {
  margin: 10px;
  background: #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 12px;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.06);
}

.accordion .link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 28px 15px;
  color: #53555a;
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.accordion .link .category_name {
  flex: 1;
  padding-left: 15px;
}

.accordion li:last-child .link {
  border-bottom: 0;
}

.accordion li.open li:last-child .link {
  border-bottom: 1px solid #cccccc;
}

.accordion li i {
  font-size: 18px;
  color: #595959;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.accordion li i.fa-chevron-down {
  font-size: 16px;
}

.accordion li.open .link {
  color: #ee7b28;
  border-bottom: 1px solid #ccc;
}

.accordion li.open i {
  color: #ee7b28;
}

.accordion li.open i.fa-chevron-down {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

/**
 * Submenu
 -----------------------------*/

.submenu {
  display: none;
  background: #fff;
  font-size: 14px;
}

.submenu li {
  border-bottom: 1px solid #cccccc;
}

.submenu a {
  display: block;
  text-decoration: none;
  color: #53555a;
  padding: 22px;
  padding-left: 54px;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

/* .submenu a:hover {
  background: #b63b4d;
  color: #FFF;
} */

/*slider*/
.swiper {
  width: 100%;
  height: 100vh;
  min-height: 300px;
  overflow: hidden;
}

.swiper-slide {
  font-size: 15px;

  b {
    font-weight: bold;
  }
}

.swiper-slide img {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  object-fit: contain;
}

/*end slider*/

/*modal*/
.modal,
.modal-box {
  z-index: 900;
}

.modal-sandbox {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: transparent;
}

.modal {
  /*display: none;*/
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.8);
  overflow: auto;
}

.modal-box {
  position: relative;
  width: 95%;
  max-width: 920px;
  margin: 10px auto;
  animation-name: modalbox;
  animation-duration: 0.4s;
  animation-timing-function: cubic-bezier(0, 0, 0.3, 1.6);
}

.modal-header {
  padding: 10px;
  color: #ee7b28 !important;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-body {
  background: white;
}

/* Close Button */
.close-modal {
  text-align: right;
  cursor: pointer;
  margin: 10px;
}

/* Animation */
@-webkit-keyframes modalbox {
  0% {
    top: -250px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

@keyframes modalbox {
  0% {
    top: -250px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

/* Aditional Styles */
* {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
}

p {
  line-height: 1.4em;
  margin: 16px 0px;
}

body {
  background: #f7f7f9;
}

.modal-trigger,
button {
  top: 50%;
  left: 50%;
  padding: 20px 40px;
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  text-decoration: none;
}

.modal-trigger {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: ease 0.2s;
}

button {
  border: 1px solid #333333;
  outline: none;
  color: #333333;
}

.modal-trigger:hover {
  padding: 20px 60px;
}

.list-view {
  max-height: 90vh; /* Set a maximum height for the list */
  overflow-y: auto; /* Enable vertical scrolling */
  padding: 16px;
  background-color: #fff;
}

.list-item {
  margin-bottom: 80px;

  b {
    font-weight: bold;
  }
}

.list-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/*end modal*/
