/* Mixins --------------------------------------------------------------------------------------------------------*/
/* Resumen Stock Info Section --------------------------------------------------------------------------------------------------------*/
.stocks-details {
  margin: 0 auto;
  width: 90%;
}

.stocks-value {
  justify-content: center;
  flex-wrap: wrap;
  background: #0069B4;
  background: linear-gradient(91.1deg, #12CCC4 -15.99%, #0069B4 120.06%);
  padding: 20px 40px;
  border-radius: 10px 10px 0 0;
  align-items: center;
  text-align: center;
}

.stocks-value-name {
  color: #ffffff;
}

.stocks-value-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
}

.stocks-value-change {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
}

.stocks-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 0;
  border: 1px solid rgba(18, 204, 196, 0.3);
  border-radius: 0 0 10px 10px;
}

.stocks-list-item {
  text-align: center;
  width: 50%;
  margin-bottom: 20px;
}

.stocks-list-item-name {
  display: block;
  font-weight: 600;
  margin-bottom: 0;
}

.stocks-list-item-price {
  color: #0069B4;
  font-size: 1.5rem;
  font-weight: 700;
}

.stocks-source {
  font-size: 0.75rem;
  margin-top: 15px;
  color: #9F9E9E;
}

.stock-info {
  width: 90%;
  margin: 50px auto 0;
  text-align: left;
}

.stock-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #73706E;
}

.stock-info-text {
  color: #73706E;
  font-size: 1.125rem;
}

/* Responsive Media Queries --------------------------------------------------------------------------------------------------------*/
@media (min-width: 768px) {
  .stocks-details {
    margin: 0 auto;
    width: 70%;
  }

  .stocks-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .stocks-value-name {
    color: #ffffff;
  }

  .stocks-value-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
  }

  .stocks-value-change {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
  }

  .stocks-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
  }

  .stocks-list-item {
    text-align: center;
  }

  .stocks-list-item-name {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .stocks-list-item-price {
    color: #0069B4;
    font-size: 1.875rem;
    font-weight: 700;
  }

  .stocks-source {
    font-size: 0.75rem;
    margin-top: 15px;
    color: #9F9E9E;
  }

  .stock-info {
    width: 52%;
  }

  .stock-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #73706E;
  }

  .stock-info-text {
    color: #73706E;
    font-size: 1.125rem;
  }
}

/*# sourceMappingURL=stock-info.css.map */