/* === COLORS === */
/* === TRANSITIONS === */
/* === SIZES === */
/* New public web */
/* line 74, /mnt/quipuapp/app/assets/stylesheets/public/00-base/variables.sass */
.background-pastel-orange {
  background-color: #fce6a6;
}

/* line 76, /mnt/quipuapp/app/assets/stylesheets/public/00-base/variables.sass */
.background-pale-orange {
  background-color: #fef7e5;
}

/* line 78, /mnt/quipuapp/app/assets/stylesheets/public/00-base/variables.sass */
.background-pale-green {
  background-color: #eef7e5;
}

/* line 80, /mnt/quipuapp/app/assets/stylesheets/public/00-base/variables.sass */
.background-white {
  background-color: #fff;
}

/* line 82, /mnt/quipuapp/app/assets/stylesheets/public/00-base/variables.sass */
.color-dark-red {
  color: #970b00;
}

/* line 2, /mnt/quipuapp/app/assets/stylesheets/public/02-molecules/table.sass */
.table {
  width: 100%;
  border: 0;
  color: #000;
  display: flex;
  opacity: 0;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  /* line 2, /mnt/quipuapp/app/assets/stylesheets/public/02-molecules/table.sass */
  .table {
    flex-direction: row;
  }
}
/* line 11, /mnt/quipuapp/app/assets/stylesheets/public/02-molecules/table.sass */
.table .thead {
  box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  border-radius: 3px;
  position: relative;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  /* line 11, /mnt/quipuapp/app/assets/stylesheets/public/02-molecules/table.sass */
  .table .thead {
    box-shadow: none;
    margin-bottom: 0;
    border-radius: 0;
    border-bottom: 1px solid #F1F4F7;
    padding-bottom: 0;
  }
}
/* line 23, /mnt/quipuapp/app/assets/stylesheets/public/02-molecules/table.sass */
.table .thead .seemore {
  width: 100%;
  margin-top: 2rem;
  cursor: pointer;
  display: block;
  position: absolute;
  bottom: 0;
  color: #009B72;
  font-weight: 600;
  border-top: 1px solid #F1F4F7;
  line-height: 2.5rem;
}
@media screen and (min-width: 768px) {
  /* line 23, /mnt/quipuapp/app/assets/stylesheets/public/02-molecules/table.sass */
  .table .thead .seemore {
    display: none;
  }
}
/* line 36, /mnt/quipuapp/app/assets/stylesheets/public/02-molecules/table.sass */
.table .thead .seemore:hover {
  text-decoration: underline;
}
/* line 38, /mnt/quipuapp/app/assets/stylesheets/public/02-molecules/table.sass */
.table .tbody {
  flex-direction: column;
  flex: 1;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  display: none;
  margin-top: -1rem;
  margin-bottom: 1rem;
}
/* line 46, /mnt/quipuapp/app/assets/stylesheets/public/02-molecules/table.sass */
.table .tbody.open {
  display: flex;
}
@media screen and (min-width: 768px) {
  /* line 38, /mnt/quipuapp/app/assets/stylesheets/public/02-molecules/table.sass */
  .table .tbody {
    display: flex;
    height: auto;
    margin-top: 0;
    margin-bottom: 0;
  }
}
/* line 53, /mnt/quipuapp/app/assets/stylesheets/public/02-molecules/table.sass */
.table .tc {
  display: flex;
  flex: 1;
  flex-direction: column;
}
/* line 58, /mnt/quipuapp/app/assets/stylesheets/public/02-molecules/table.sass */
.table .tc:last-child .td {
  border-right: 0;
}
/* line 60, /mnt/quipuapp/app/assets/stylesheets/public/02-molecules/table.sass */
.table .tc .td {
  display: flex;
  padding: 1rem;
  border-bottom: 1px solid #F1F4F7;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}
@media screen and (min-width: 768px) {
  /* line 60, /mnt/quipuapp/app/assets/stylesheets/public/02-molecules/table.sass */
  .table .tc .td {
    border-right: 1px solid #F1F4F7;
  }
}
/* line 70, /mnt/quipuapp/app/assets/stylesheets/public/02-molecules/table.sass */
.table .tc .td.title {
  font-weight: 700;
  border-right: 0;
  text-align: left;
  align-items: flex-start;
}
/* line 75, /mnt/quipuapp/app/assets/stylesheets/public/02-molecules/table.sass */
.table .tc .td:last-child {
  border-bottom: 0;
}
/* line 78, /mnt/quipuapp/app/assets/stylesheets/public/02-molecules/table.sass */
.table .check-symbol {
  fill: #009B72;
}
/* line 80, /mnt/quipuapp/app/assets/stylesheets/public/02-molecules/table.sass */
.table svg {
  margin: 0.5rem;
}
