.btn-outline-dark {
  border-color: #707070;
}

/* Barra superior */
.barra-superior {
  padding: 1.25rem 0.75rem;
  background-color: #322e2f;
  text-align: center;
  width: 100%;
}

.barra-superior h5 {
  font-family: 'Raleway';
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1.44px;
  line-height: 34px;
  color: #ffffff;
  margin-bottom: 0 !important;
}

/* Tabla productos */

/* Header table */
.header-table {
	border-bottom : solid 2px #585854;
	width: 100%;
	display: flex;
}

.header-table h5 {
	font-family: 'Raleway';
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.32px;
  line-height: 34px;
  color: #585854;
}

.header-table .product-title {
	width: 65%;
	display: inline;
  padding-left: 50px;
}

.header-table .quantity-title {
  text-align: center;
  width: 20%;
  display: inline;
}

.header-table .subtotal-title {
  text-align: left;
  width: 15%;
  display: inline;
}

/* Body Table */
.products {
  margin-left: 20px;
  margin-right: 20px;
}

.products .product {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-top: 21px; 
}

.products .product:not(:last-child) {
  border-bottom: solid 1px #d6d6d6;
}

.product .photo {
  width: 20%;
  order: 1;
}

.product .photo img {
  max-width: 100%;
  max-height  : 150px;
}

.product .information {
  padding-top: 21.5px;
  width: 45%;
  font-family: 'Raleway';
  color: #585854;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.32px;
  order: 2;
}

.product .information h1 {
  font-weight: 800;
  font-size: 16px;
}

.product .information p {
  font-weight: 600;
}

.product .information p.price {
  font-weight: 500;
  font-family: 'Roboto';
  letter-spacing: 0.96px;
}

.product .columna-botones {
  order: 3;
  width: 30%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.product .columna-botones .quantity {
  padding-top: 21.5px;
  width: 50%%;
}

.product .columna-botones .quantity .btn-group {
  margin-bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}

.product .columna-botones .quantity .btn-group .btn {
  border-radius: 0;
}

.product .columna-botones .quantity button.btn-quantity {
  width: 50px;
}

.product .columna-botones .quantity .btn-quantity:disabled {
  opacity: 1;
}

.product .columna-botones .quantity .remove.mobile {
  display: none;
}

.product .columna-botones .quantity .remove.mobile img.trash-mobile {
  height: 27px;
  width: auto;
}

.product .columna-botones .subtotal {
  align-text: center;
  padding-top: 21.5px;
  width: 15%;
}

.product .columna-botones .subtotal h2 {
  font-family: 'Roboto';
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1.2px;
  line-height: 20px;
  color: #585854;
  margin-bottom: 0 !important;
}

button.remove {
  font-family: 'Roboto';
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.72px;
  line-height: 20px;
  color: #969696;
  margin-bottom: 60px;
}

/* Footer Table*/
.footer-table  {
  border-top : solid 2px #585854;
  margin-top: 1px;
  margin-bottom: 2rem;
  width: 100%;
  display: flex;
  font-size: 20px;
  color: #585854;
}

.footer-table a {
  font-family: "Raleway";
  line-height: 30px;
  letter-spacing: 1.2px;
  color: #585854;
  margin-top: 30px;
  margin-left: 2rem;
}

.footer-table strong.total {
  margin-top: 30px;
  margin-left: auto;
  margin-right: 10%;
}

/* Total shopping bag */
.total-column {
  padding-right: 45px;
}
  
.total-shopping-bag {
  border: solid 2px #322e2f;
  padding-left: 0px;
  padding-right: 0px;
}

.total-shopping-bag .barra-superior {
  padding: 0;
}

.total-shopping-bag .barra-superior h5 {
  padding: 0.25rem 0.75rem;
  font-size: 20px;
  letter-spacing: 1.2px;
}

.total-shopping-bag .contenido {
  padding-top: 60px;
  padding-left: 35px;
  padding-right: 35px;
  padding-bottom: 35px;
}

.total-shopping-bag .section {
  padding-top: 35px;
  padding-bottom: 30px;
  border-bottom: solid 1px #d6d6d6;
}

.total-shopping-bag .section h5 {
  font-family: 'Roboto';
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1.2px;
  line-height: 20px;
  color: #585854;
  display: inline;
}

.total-shopping-bag .section h4 {
  font-family: 'Raleway';
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  font-style: italic;
}

.total-shopping-bag .section.shipping-info label {
  padding-top: 1rem;
}

.total-shopping-bag .calculate-shipping-cost {
  margin-top: 1rem;
}

.total-shopping-bag strong.total {
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 34px;
  font-size: 20px;
  float: right;
  color: #322e2f;
}

.total-shopping-bag .btn-black {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 80px;
  font-size: 20px;
}

.total-shopping-bag .btn-black:before {
  background-color: #322e2f;
}

@media(max-width: 991px) {
  .total-column {
    padding-right: 20px;
  }
}

@media(max-width: 800px) {

  .total-column {
    margin-top: 80px;
  }

  .barra-superior h5 {
    letter-spacing: 2.4px;
    margin: 0 auto;
    font-size: 1.85rem;
  }
  
  .header-table {
    display: none;
  }
  
  .footer-table {
    display: none;
  }

  .col-12 {
    padding-left: 0;
    padding-right: 0 !important;
  }

  .total-shopping-bag {
    border: none;
  }
  
  .total-shopping-bag .section.shipping-info .col-sm-12 {
    padding : 0;
  }

  .products .product .photo {
    width: 50%;
    order: 1;
  }

  .products .product .information {
    width: 100%;
    order: 4;
  }

  .products .product .columna-botones {
    order: 2;
    width: 50%;
    align-items: center;
    justify-content: flex-end;
  }

  .products .product .quantity .btn-group {
    position: inline-flex;
    margin-bottom: 0;
    left: 0;
    transform: none;
    width: 65%;
    margin: 0 0.3rem;
  }

  .products .product .quantity .remove:not(.mobile) {
    display: none;
  }

  .products .product .quantity .remove.mobile{
    display: inline-flex;
    width: auto;
    margin: 0;
  }

  .products .product .subtotal {
    order: 3;
    width: 60%;
    text-align: center
  }

  .products .product .information p {
    display: none;
  }
  
  .products .product .information .options-selected {
    display: inline-flex;
    flex-wrap: wrap;
  }
  
  .products .product .information .options-selected li {
    padding-right: 2rem;
  }
}