:root {
  --main_color: #0021ff;
  --secondary_color: #1213BF;

  --star-size: 24px;
  --star-color: rgba(184, 184, 184, 0.342);
  --star-background: #fc0;
}

.Stars {
  --percent: calc(var(--rating) / 5 * 100%);
  display: inline-block;
  font-size: var(--star-size);
  font-family: Times;
  line-height: 1;
  margin-bottom: 5px;
}

.Stars::before {
  content: "★★★★★";
  background: linear-gradient(
    90deg,
    var(--star-background) var(--percent),
    var(--star-color) var(--percent)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", "Arial", sans-serif;
}

/* Breadcrumbs */

.breadcrumbs {
    margin-bottom: 30px;
}

.breadcrumbs li {
    display: inline-block;
    font-size: 13px;
    margin: 0px;
    padding-bottom: 10px;
}

.breadcrumbs li:before {
    content: '»';
    font-size: 13px;
}

.breadcrumbs li:first-child:before {
    content: none;
    font-size: 13px;
}

.breadcrumbs a {
    color: #0000FF;
    text-decoration: none;
    font-size: 13px;
}

.breadcrumbs span {
    color: #000;
    text-decoration: none;
    font-size: 13px;
    margin: 13px;
}

.breadcrumbs li:last-child {
    font-size: 13px;
}

.breadcrumbs li:last-child:before {
    font-size: 13px;
}

/* Pagination */

.center {
        text-align: center;
}

.pagination {
    display: inline-block;
}

.pagination a {
    color: black;
    float: left;
    padding: 4px 8px;
    text-decoration: none;
    transition: background-color .3s;
    border: 1px solid #ddd;
    margin: 0 4px;
}

@media screen and (min-width: 1000px) {
    .pagination a {
        padding: 8px 16px !important;
    }
}

.pagination a.active {
    background-color: #1213BF;
    color: white;
    border: 1px solid #1213BF;
}

/* Search */

.wrapper_search {
    width: 100%;
    margin: 10px auto;
}

.wrapper_search .search_css {
    background: #fff;
    width: 100%;
    border-radius: 5px;
    position: relative;
    box-shadow: 0px 1px 5px 3px rgba(0, 0, 0, 0.12);
}

.search_css .input_search {
    height: 55px;
    width: 100%;
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 0 60px 0 20px;
    font-size: 18px;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
}

.search_css.active input {
    border-radius: 5px 5px 0 0;
}

.search_css .icon {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 55px;
    width: 185px;
    text-align: center;
    background-color: #1213BF;
    cursor: pointer;
    border: 0;
}

@media (max-width: 600px) {
    .search_css .icon {
        position: absolute;
        right: 0px;
        top: 0px;
        height: 55px;
        width: 70px;
        text-align: center;
        background-color: #1213BF;
        cursor: pointer;
        border: 0;
    }

    .search_css span {
        position: absolute;
        width: 100%;
        top: 33%;
        transform: translateX(-50%);
        color: white;
        font-size: 0;
    }

    .search_css .icon:after {
        content: "Buscar";
        position: absolute;
        width: 100%;
        top: 33%;
        transform: translateX(-50%);
        color: white;
    }
}

.search_css span {
    position: absolute;
    width: 100%;
    top: 33%;
    transform: translateX(-50%);
    color: white;
}

/* Category columns */

.category_columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 2em;
  margin-bottom: 40px;
}

.cat_cards {
    border: 8px solid;
    color: #1213BF;
    background-color: white;
    width: 100%;
    padding: 25px;
    text-align: center;
}

.cat_cards i {
    color: black;
    font-size: 22px;
    font-weight: bold;
    overflow-wrap: break-word;
}

@media (max-width: 1040px) {
    .cat_cards i {
        font-size: 20px;
    }
}

/* HEADINGS */

p {
  color: #000;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 15px;
}

h1 {
  color: white;
  font-size: 2.2rem;
  text-align: center;
  margin: 30px;
}

h2 {
  margin-top: 30px;
  color: #000;
  font-size: 30px;
  line-height: 1.4;
  margin-bottom: 30px;
}

h3 {
  margin-top: 30px;
  color: #000;
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 30px;
}

h4 {
  margin-top: 30px;
  color: #000;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 30px;
}

h5 {
  margin-top: 30px;
  color: #000;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 30px;
}

h6 {
  margin-top: 30px;
  color: #000;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 30px;
}

/* BASIC SETUP */

.page-wrapper {
  width: 100%;
  height: auto;
}

.nav-wrapper {
  width: 100%;
  position: -webkit-sticky;
  /* Safari */
  position: sticky;
  z-index: 99;
  top: 0;
  background-color: #fff;
}

.grad-bar {
  --scrollAmount: 0%;
  width: var(--scrollAmount);
  height: 5px;
  background: linear-gradient(
    -45deg,
    var(--main_color),
    var(--secondary_color)
  );
  background-size: 400% 400%;
  -webkit-animation: gradbar 15s ease infinite;
  -moz-animation: gradbar 15s ease infinite;
  animation: gradbar 15s ease infinite;
}


// Comparison Table Widget

// Easter egg
table,
th,
td {}


table {
    text-align: center;
    margin: auto;
    width: 100%;
    padding: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
    border-collapse: collapse;
    margin-top: 60px;
    margin-bottom: 60px;
}

.normal {
  border: 2px solid #cccccc;
}

.bestOffer{
  border: 3px solid #52ef52;
}

.moreSaving {
  border: 3px solid #4defed;
}

.moreSaving-tag {
  position: absolute;
  top: 8px;
  left: 0px;
  font-weight: bold;
  background-color: #4defed;
  padding: 8px 16px;
  border-radius: 10px;
  color: white;
  font-size: 10px;
}

.view-more {
  color: var(--secondary_color);
}

.bestOffer-tag {
  position: absolute;
  top: 8px;
  left: 0px;
  font-weight: bold;
  background-color: #52ef52;
  padding: 8px 16px;
  border-radius: 10px;
  color: white;
  font-size: 10px;
}

.price-widget {
  font-weight: bold;
  font-size: 25px;
  color: var(--main_color);
  margin-bottom: 0px;
}

th,
td {
    padding: 15px;
    text-align: center;
    border-collapse: collapse;
}

table tr:first-child {
  background-color: var(--secondary_color);
  color: white;
  font-size: 18px;
} 

table tr td:nth-child(1) {
  width: 18%;
}

table tr td:nth-child(3) {
  width: 30%;
  font-weight: bold;
}

tr:nth-child(odd) {
  background-color: #f2f2f2;
}

table tr td ul li {
    color: black;
    font-size: 16px;
    list-style-type: disclosure-closed;
    text-align: initial;
    margin: 10px;
}

table tr td ul li a{
    color: black;
    font-size: 14px;
}

table tr td a {
  text-decoration: none;
  color: black;
}

.img_div_widget {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 225px;
  overflow: hidden;
  text-align: center;
}

.img_div_widget img{
  max-width: 100%;
  max-height: 100%;
}

@media (max-width: 1200px) {
    tr {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    th,
    td {
        width: 100%;
    }

    table tr td:nth-child(3) {
      width: 100%;
    }

    table tr td:nth-child(1) {
      width: 100%;
    }

    table tr:first-child {
      display: none;
    } 

    table tr td ul li {
      margin: 20px; 
    }
}



/* NAVIGATION */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16);
  background-color: white;
}

.navbar img {
  height: 55px;
  width: auto;
  justify-self: start;
  margin-left: 20px;
  margin-right: 40px;
}

.navbar p {
  width: auto;
  justify-self: start;
  margin-left: 20px;
  margin-right: 40px;
  margin-bottom: 5px;
  font-family: "Helvetica Neue";
  font-size: 27px;
  font-weight: bold;
  letter-spacing: -1px;
  line-height: 1;
  text-align: center;
  color: var(--main_color);
}

.navbar a {
  text-decoration: none;
}

.navbar ul {
  list-style: none;
  display: flex;
  align-items: center;
}


.view-more-button {
 text-decoration: none;
 padding: 1.4em 6em;
 font-size: 13px;
 text-transform: uppercase;
 letter-spacing: 2.5px;
 font-weight: bold;
 color: white;
 background-color: var(--main_color);
 border: none;
 border-radius: 45px;
 box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.25);
 transition: all 0.3s ease 0s;
 cursor: pointer;
 outline: none;
 display: inline-block;
}

.view-more-button:hover {
 background-color: var(--secondary_color);
 box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
 color: white;
 transform: translateY(-7px);
}

.view-more-button:active {
 transform: translateY(-1px);
}

.nav-item a {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease-out;
  margin-right: 20px;
}

.nav-item a:hover {
  color: var(--main_color);
}

/* SECTIONS */

.headline {
  width: 100%;
  height: 100px;
  background-size: cover;
  display: flex;
  margin-bottom: 30px;
  flex-direction: column;
  justify-content: center;
  background:
   linear-gradient(var(--main_color), rgb(255, 255, 255));
}
.div-button-view-more {
  text-align: center; 
  margin-top: 60px;
  margin-bottom: 60px;
}

.content {
  width: 80%;
  margin: auto;
  height: auto;
}

.features {
  width: 100%;
  margin: auto;
  height: auto;
  background-color: #ffffff;
  display: grid;
  justify-content: space-around;
  grid-template-columns: repeat(
    auto-fill,
    [col-start] minmax(12rem, 1fr) [col-end]
  );
  gap: 8rem;
  margin-top: 60px;
  margin-bottom: 60px;
}

.features-category {
  width: 65%;
  margin: auto;
  height: auto;
  background-color: #ffffff;
  display: grid;
  justify-content: space-around;
  grid-template-columns: repeat(
    auto-fill,
    [col-start] minmax(15rem, 1fr) [col-end]
  );
  gap: 5rem;
}


.features-footer {
  width: 80%;
  margin: auto;
  height: auto;
  display: grid;
  justify-content: space-around;
  grid-template-columns: repeat(
    auto-fill,
    [col-start] minmax(5rem, 2fr) [col-end]
  );
  gap: 5rem;
}

.footer {
  width: 80%;
  margin: auto;
  height: auto;
  background-color: var(--secondary_color);
  display: grid;
  justify-content: space-around;
  grid-template-columns: repeat(
    auto-fill,
    [col-start] minmax(15rem, 1fr) [col-end]
  );
  gap: 8rem;
}

.feature-container {
  flex-basis: 20%;
  margin-top: 10px;
  text-align: center;
  display: grid;
}

.feature-container-category {
  flex-basis: 20%;
  text-align: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 15px;
  display: grid;
}

.card-bottom {
  margin-top: 60px;
  position: relative;
}

.bottom {
  position: absolute;
  bottom: 0;
  left:50%;
	transform:translate(-50%);
}

.feature-container p {
  color: #000;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 12px;
  margin-top: 12px;
  font-weight: bold;
  margin-bottom: 25px;
}

.feature-container-category p {
  color: #000;
  font-size: 20px;
  text-align: center;
  line-height: 1.4;
  margin-top: 12px;
  font-weight: bold;
}

.feature-container img {
  max-width: 100%;
  max-height: 100%;
}

.feature-container-category img {
  max-width: 100%;
  max-height: 100%;
}

.img_div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 230px;
  overflow: hidden;
  text-align: center;
  position: relative;
}



.img_div_category {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  overflow: hidden;
  text-align: center;
  position: relative;
  margin: auto;
}

.prize_tag {
  position: absolute;
  top: 8px;
  font-size: 15px;
  right: 0px;
  font-weight: bold;
  background-color: var(--secondary_color);
  padding: 8px 16px;
  border-radius: 10px;
  color: white;
}

.img_div_widget .prize_tag {
  font-size: 12px !important;
}

.saving_tag {
  position: absolute;
  top: 8px;
  left: 0px;
  font-weight: bold;
  background-color: var(--main_color);
  padding: 8px 16px;
  border-radius: 10px;
  color: white;
}

.bestseller {
  font-weight: bold;
  background-color: var(--secondary_color);
  padding: 8px 16px;
  border-radius: 10px;
  color: white;
  display: inline-block;
}
.original-price {
  color: var(--main_color);
  font-size: 40px;
  font-weight: bold;
}
.last-price {
  font-size: 20px;
  font-weight: bold;
  padding-right: 10px;
  text-decoration: line-through;
}

/* SEARCH FUNCTION */

#search-icon {
  font-size: 0.9rem;
  margin-top: 3px;
  margin-left: 15px;
  transition: color 0.3s ease-out;
}

#search-icon:hover {
  color: #3498db;
  cursor: pointer;
}

.search {
  transform: translate(-35%);
  -webkit-transform: translate(-35%);
  transition: transform 0.7s ease-in-out;
  color: #3498db;
}

.no-search {
  transform: translate(0);
  transition: transform 0.7s ease-in-out;
}

.search-input {
  position: absolute;
  top: -4px;
  right: -125px;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.search-active {
  opacity: 1;
}

input {
  border: 0;
  border-left: 1px solid #ccc;
  border-radius: 0;
  /* FOR SAFARI */
  outline: 0;
  padding: 5px;
}

/* MOBILE MENU & ANIMATION */

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #3f3f3f;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu-toggle {
  justify-self: end;
  margin-right: 25px;
  display: none;
}

.menu-toggle:hover {
  cursor: pointer;
}

#mobile-menu.is-active .bar:nth-child(2) {
  opacity: 0;
}

#mobile-menu.is-active .bar:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  -o-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}

#mobile-menu.is-active .bar:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  -ms-transform: translateY(-8px) rotate(-45deg);
  -o-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}

/* KEYFRAME ANIMATIONS */

@-webkit-keyframes gradbar {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes gradbar {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradbar {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Media Queries */

/* Mobile Devices - Phones/Tablets */

/* MOBILE NAVIGATION */

@media only screen and (max-width: 980px) {
  .navbar {
    height: 70px;
  }

  .navbar ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    justify-content: start;
    top: 70px;
    background-color: #fff;
    width: 100%;
    height: calc(100vh - 55px);
    transform: translate(-101%);
    text-align: center;
    overflow: hidden;
  }

  .navbar li {
    padding: 15px;
  }

  .navbar li:first-child {
    margin-top: 50px;
  }

  .navbar li a {
    font-size: 1rem;
    margin-right: 0px;
  }

  .menu-toggle,
  .bar {
    display: block;
    cursor: pointer;
  }

  .mobile-nav {
    transform: translate(0%) !important;
  }
}

@media only screen and (max-width: 720px) {
  /* MOBILE HEADINGS */

  h1 {
    font-size: 1.9rem;
  }

  /* SECTIONS */

  .headline {
    height: 20vh;
  }

  .feature-container:nth-child(2) {
    order: -1;
  }

  /* SEARCH DISABLED ON MOBILE */

  #search-icon {
    display: none;
  }

  .search-input {
    display: none;
  }
}

.amz_button {
  background: linear-gradient(
    -45deg,
    var(--main_color),
    var(--secondary_color)
  );
  background-size: 800% 400%;
  padding: 0.8em 2em;
  display: inline-block;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  color: white;
  transition: all 0.5s ease-in-out;
  text-decoration: none;
  animation: gradient 10s infinite cubic-bezier(0.62, 0.28, 0.23, 0.99) both;
}

td .amz_button {
  font-size: 13px !important;
}


.amz_button:hover {
  animation: gradient 3s infinite;
  transform: scale(1.05);
}

.amz_button:active {
  animation: gradient 3s infinite;
  transform: scale(0.8);
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* FOOTER */

.footer-wrapper {
  width: 100%;
  height: auto;
  background-color: #4e576e;
  margin-top: 50px;
}
.footer-a {
font-size:22px;
font-weight: bold;
}
.content .container h1 {
  font-size: 48px;
  margin-bottom: 1rem;
}
.footer-main {
  display: inline-block;
  text-align: center;
}

footer {
  width: 100%;
  background-color: #2c3446;
}

.container {
  width: 80%;
  margin: 0 auto;
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container-legal {
  width: 80%;
  margin: 0 auto;
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: inline-block;
}

.container-amazon {
  text-align: center;
  margin-top: 40px;
  margin-left: 10px;
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .container-legal {
    display: flex;
  }
}

.footer-a {
  font-size: 15px;
  color: rgb(204, 204, 204);
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 5px;
  transition: 0.4s ease;
}

.col p {
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 1rem;
  color: #ffffff;
}

ul li {
  margin: 0.75rem 0;
  font-size: 18px;
  margin-left: 18px;
}

ol li {
  margin: 0.75rem 0;
  font-size: 18px;
  margin-left: 18px;
}

@media screen and (min-width: 1500px) {
    .content {
        width: 65% !important;
        margin: auto;
        height: auto;
    }
}

ul li a {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 5px;
  transition: 0.4s ease;
}

.interlinking ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.interlinking ul li {
  list-style-type: none;
  margin: 0.5rem 0.5rem 0.5rem 0;
}

@media screen and (max-width: 768px) {
  .col p {
    font-weight: bold;
    font-size: 24px;
  }

  .interlinking {
    margin: 1rem 0;
  }

  ul li a {
    font-size: 16px;
  }
}

/* AMAZON PRODUCT CARD */

.div-price-and-buy {
  position: relative;
  margin-top: 100px;
}

.go-to-bottom {
  position: absolute;
  bottom: 0px;
  width: 100%;
}

.stars-flex-end {
  display: flex;
  justify-content: flex-end;
}

.price-and-buy {
  display: flex;
  justify-content: space-between;
}

.thumbnail_images ul {
  list-style: none;
  justify-content: center;
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.thumbnail_images ul li {
  margin: 5px;
  padding: 10px;
  border: 2px solid #eee;
  cursor: pointer;
  transition: all 0.5s;
  width: "90%";
}

.thumbnail_images ul li:hover {
  border: 2px solid #000;
}

.main_image {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #eee;
  height: 450px;
  width: 100%;
  overflow: hidden;
}

/* Create two equal columns that floats next to each other */
.card-columns {
  display: flex;
  justify-content: space-between;
}

.card-column-left {
  flex-basis: 30%;
}

.card-column-right {
  flex-basis: 60%;
  display: grid;
  padding: 10px;
}

.card-header {
  margin-bottom: 20px;
  font-weight: bold;
  text-align: start;
  font-size: 20px;
}

.card {
  width: 100%;
  margin: auto;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 50px;
  border-radius: 10px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.card p {
  color: black;
}

.card li {
  list-style-type: none;
  margin-bottom: 15px;
  font-size: 16px;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 1000px) {
  .card-column-left {
    width: 100%;
  }

  .card-column-right {
    width: 100%;
  }

  .card-columns {
    flex-direction: column;
  }
}

@media screen and (max-width: 823px) {
  .card-column-right {
    padding: 0px;
  }

  .div-price-and-buy {
    margin-top: 150px;
  }
}

@media screen and (max-width: 630px) {
  .price-and-buy {
    flex-direction: column;
  }

  .stars-flex-end {
    justify-content: center;
  }

  .price-and-buy {
    text-align: center;
  }
}

@media screen and (max-width: 520px) {
  .col p {
    font-weight: bold;
    font-size: 18px;
  }

  .interlinking {
    margin: 0.5rem 0;
  }

  ul li a {
    font-size: 14px;
  }
}

/* 404 */

#main{
  display: table;
  width: 100%;
  text-align: center;
}

.fof{
    display: table-cell;
    vertical-align: middle;
}

.fof h1{
    color: black;
    font-size: 50px;
    display: inline-block;
    padding-right: 12px;
    animation: type .5s alternate infinite;
}

@keyframes type{
    from{box-shadow: inset -3px 0px 0px #888;}
    to{box-shadow: inset -3px 0px 0px transparent;}
}