* {
  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: 100%;
  min-height: 300px;
}

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

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 10px 0 80px;
}

/*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,.8);
  overflow: auto;
}

.modal-box {
  position: relative;
  width: 95%;
  max-width: 920px;
  margin: 10px auto;
  animation-name: modalbox;
  animation-duration: .4s;
  animation-timing-function: cubic-bezier(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: 10px 20px;
}

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 .2s;
}

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

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

.swiper-button-next, .swiper-rtl .swiper-button-prev
{
  right: 33%;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next
{
  left: 33%;
}

.swiper-button-next, .swiper-button-prev {
  top: unset;
  bottom: 28px;
  margin-top: 0;
  color: rgb(100, 182, 18);
}

.swiper-button-next:after, .swiper-button-prev:after
{
  font-size: 30px;
}
/*end modal*/
