@charset "UTF-8";
/* ----------------------------------------
// Components
// ---------------------------------------- */
/*
// .account-nav
*/
.account-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.account-nav__item a {
  display: block;
  color: #6c757d;
  font-size: 15px;
}
.account-nav__item a:hover {
  background-color: #f7f7f7;
}

@media (min-width: 992px) {
  .account-nav {
    border: 2px solid #f0f0f0;
    border-radius: 2px;
  }
  .account-nav ul {
    padding-bottom: 18px;
  }

  .account-nav__title {
    font-size: 20px;
    padding: 24px 26px 0;
    margin-bottom: 1rem;
  }

  .account-nav__item a {
    padding: 5px 26px;
  }
  [dir=ltr] .account-nav__item a {
    margin-left: -2px;
    border-left: 2px solid #f0f0f0;
  }
  [dir=rtl] .account-nav__item a {
    margin-right: -2px;
    border-right: 2px solid #f0f0f0;
  }

  .account-nav__item--active a {
    color: #fff; /*#3d464d;*/
    font-weight: 500;    
    background-color: #017d03;
  }
  [dir=ltr] .account-nav__item--active a {
    border-left: 2px solid #3366cc;
  }
  [dir=rtl] .account-nav__item--active a {
    border-right: 2px solid #3366cc;
  }
}
@media (max-width: 991px) {
  .account-nav__title {
    display: none;
  }

  .account-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .account-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    white-space: nowrap;
    width: 100%;
    border-bottom: 2px solid #f0f0f0;
  }

  .account-nav__item a {
    padding: 8px 16px;
    margin-bottom: -2px;
    border-bottom: 2px solid #f0f0f0;
  }

  .account-nav__item--active a {
    color: #fff;
    font-weight: 500;
    border-color: #3366cc;
    background-color: #017d03;
  }
}

/*
// .alert
*/
.alert {
  border: none;
  border-radius: 2px;
  font-size: 15px;
  line-height: 20px;
  padding: 0.75rem 1rem;
}
.alert a {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  color: currentColor;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 1.5px;
  padding: 0 3px;
}
.alert a:hover {
  background: rgba(255, 255, 255, 0.85);
}
.alert a:active {
  background: rgba(255, 255, 255, 0.5);
}

.alert-primary {
  background: #b2d9ff;
  color: #36414d;
}

.alert-secondary {
  background: #d9d9d9;
  color: #4d4d4d;
}

.alert-info {
  background: #b8e2e5;
  color: #2d3e40;
}

.alert-success {
  background: #bde5a1;
  color: #34402d;
}

.alert-danger {
  background: #ffb8b8;
  color: #473333;
}

.alert-warning {
  background: #f2e291;
  color: #4d472e;
}

.alert-lg {
  font-size: 16px;
  padding: 1.125rem 1.375rem;
}


.text-gray-dark {
  color: #bde5a1;
  font-weight: bold;
}

.text-secondary {
  color: #4d4d4d;
}

.text-info {
  color: #007aff;
}

.text-success {
  color: #017d03;
}

.text-danger {
  color: #ff0000;
}

.text-warning {
  color: #ff8000;
}

[dir=ltr] .alert-dismissible {
  padding-right: 3rem;
}
[dir=rtl] .alert-dismissible {
  padding-left: 3rem;
}

.alert-dismissible .close {
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 1rem;
  height: 100%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  fill: rgba(0, 0, 0, 0.3);
  background: transparent;
}
[dir=ltr] .alert-dismissible .close {
  left: auto;
  right: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 1.5px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 1.5px;
}
[dir=rtl] .alert-dismissible .close {
  right: auto;
  left: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 1.5px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 1.5px;
}
.alert-dismissible .close:focus {
  outline: none;
}

.alert-dismissible .close:not(:disabled):not(.disabled):focus,
.alert-dismissible .close:not(:disabled):not(.disabled):hover {
  background: rgba(0, 0, 0, 0.08);
  fill: rgba(0, 0, 0, 0.5);
  opacity: 1;
}


/*
// .comments-list
*/
.comments-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comments-list__item + .comments-list__item {
  border-top: 1px solid #ebebeb;
  margin-top: 24px;
  padding-top: 28px;
}

.comments-list--level--0 > .comments-list__item:last-child {
  padding-bottom: 28px;
  border-bottom: 1px solid #ebebeb;
}

.comments-list--level--1 {
  border-top: 1px solid #ebebeb;
  margin-top: 24px;
  padding-top: 28px;
}
[dir=ltr] .comments-list--level--1 > .comments-list__item {
  margin-left: 46px;
}
[dir=rtl] .comments-list--level--1 > .comments-list__item {
  margin-right: 46px;
}

@media (max-width: 767px) {
  .comments-list__item + .comments-list__item {
    margin-top: 20px;
    padding-top: 24px;
  }

  .comments-list--level--1 {
    margin-top: 20px;
    padding-top: 24px;
  }
}

/* ----------------------------------------
// Tickets
// ---------------------------------------- */
/*
// Comments
*/

.comment {
  margin-bottom: 20px;
}

.comment__body {
  display: flex;
  align-items: center;
}

.comment__avatar img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-right: 10px;
}

.comment__meta {
  flex: 1;
}

.comment__author {
  font-weight: bold;
}

.comment__date {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}

.comment__divider {
  border: none;
  border-top: 0.5px solid #eeeeee; /* Linha divisória cinza claro */
  margin: 10px 0; /* Margem acima e abaixo da linha divisória */
}

.comment__content {
  margin-top: 10px;
}

/* Estilo para o conteúdo da mensagem */
.typography {
  font-size: 14px;
  line-height: 1.6;
}




/* ----------------------------------------
// Header
// ---------------------------------------- */
/*
// .account-menu
*/
.account-menu {
  -webkit-box-shadow: 0 1px 15px rgba(0, 0, 0, 0.25);
          box-shadow: 0 1px 15px rgba(0, 0, 0, 0.25);
  background: #fff;
  color: #3d464d;
  width: 280px;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .account-menu {
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
            box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
  }
}

.account-menu__form {
  padding: 0 30px 32px;
}
.account-menu__form .form-group {
  margin-bottom: 1rem;
}

.account-menu__form-title {
  text-align: center;
  padding: 30px 0 26px;
  font-weight: 700;
}

.account-menu__form-button {
  margin-top: 32px;
  text-align: center;
}
.account-menu__form-button .btn {
  padding-left: 28px;
  padding-right: 28px;
}

.account-menu__form-link {
  font-size: 14px;
  text-align: center;
}
.account-menu__form-link a {
  color: #6c757d;
  -webkit-transition: color 0.1s;
  transition: color 0.1s;
}
.account-menu__form-link a:hover {
  color: inherit;
}

.account-menu__form-forgot {
  position: relative;
}

.account-menu__form-forgot-link {
  position: absolute;
  top: 5px;
  bottom: 5px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 500;
  background: transparent;
  color: #3d464d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 7px;
  -webkit-transition: background 0.1s, color 0.1s;
  transition: background 0.1s, color 0.1s;
}
[dir=ltr] .account-menu__form-forgot-link {
  right: 5px;
}
[dir=rtl] .account-menu__form-forgot-link {
  left: 5px;
}
.account-menu__form-forgot-link:hover {
  background: #f0f0f0;
  color: #3d464d;
}
.account-menu__form-forgot-link:active {
  background: #e5e5e5;
  color: #3d464d;
}

.account-menu__divider {
  height: 1px;
  background: #ebebeb;
}

.account-menu__user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 20px;
  color: inherit;
}
.account-menu__user:hover {
  color: inherit;
  background: #f2f2f2;
}

.account-menu__user-avatar {
  width: 44px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
[dir=ltr] .account-menu__user-avatar {
  margin-right: 14px;
}
[dir=rtl] .account-menu__user-avatar {
  margin-left: 14px;
}
.account-menu__user-avatar img {
  border-radius: 100%;
  max-width: 100%;
}

.account-menu__user-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.account-menu__user-name {
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
}

.account-menu__user-email {
  font-size: 14px;
  line-height: 18px;
  color: #999;
  margin-top: 1px;
}

.account-menu__links {
  list-style: none;
  padding: 12px 0;
  margin: 0;
}
.account-menu__links a {
  display: block;
  color: inherit;
  font-size: 15px;
  padding: 5px 20px;
  font-weight: 500;
}
.account-menu__links a:hover {
  background: #f2f2f2;
}


/* ----------------------------------------
// Pages
// ---------------------------------------- */
/*
// .address-card
*/
.address-card {
  position: relative;
}

.address-card__badge {
  position: absolute;
  background-color: #017d03;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 4px 8px 2px;
  top: -1px;
  right: 10px;
  border-bottom-left-radius: 5px; /* Arredonda o canto superior esquerdo */
  border-bottom-right-radius: 5px;
}

.address-card__badge--muted {
  background-color: #f0f0f0;
  color: #3d464d;
}

.address-card__body {
  padding: 1.5rem;
  font-size: 15px;
  line-height: 18px;
}

.address-card__name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 1.125rem;
}

.address-card__row + .address-card__row {
  margin-top: 0.75rem;
}

.address-card__row-title {
  font-size: 12px;
  color: #999;
}

.address-card__footer {
  margin-top: 1.625rem;
}

.address-card--featured .address-card__body {
  padding: 2rem;
}
.address-card--featured .address-card__name {
  font-weight: 700;
}
@media (min-width: 768px) and (max-width: 991px) {
  .address-card--featured .address-card__body {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .address-card--featured .address-card__body {
    padding: 1.375rem;
  }
}

/*
// .addresses-list
*/
.addresses-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.addresses-list__item {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.addresses-list__item--new {
  border-radius: 2px;
  border: 2px dashed #ebebeb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem;
}

.addresses-list__divider:last-child {
  display: none;
}

.addresses-list__plus {
  width: 60px;
  height: 60px;
  border: 2px dashed #ebebeb;
  position: relative;
  border-radius: 30px;  
  padding-left: 13px;
  margin-bottom: 24px;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}
.addresses-list__plus::before, .addresses-list__plus::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 4px;
  background-color: #e5e5e5;
  border-radius: 1.5px;
  top: calc(50% - 2px);
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
[dir=ltr] .addresses-list__plus::before, [dir=ltr] .addresses-list__plus::after {
  left: calc(50% - 16px);
}
[dir=rtl] .addresses-list__plus::before, [dir=rtl] .addresses-list__plus::after {
  right: calc(50% - 16px);
}
.addresses-list__plus::after {
  -webkit-transform: rotateZ(90deg);
          transform: rotateZ(90deg);
}

.addresses-list__item--new:hover .addresses-list__plus {
  border-color: #e0e0e0;
}
.addresses-list__item--new:hover .addresses-list__plus::before, .addresses-list__item--new:hover .addresses-list__plus::after {
  background-color: #dbdbdb;
}

@media (min-width: 1200px) {
  .addresses-list__item {
    max-width: calc((100% - 32px) / 3);
  }

  .addresses-list__divider:nth-child(2n) {
    width: 16px;
  }

  .addresses-list__divider:nth-child(6n) {
    width: 100%;
    height: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .addresses-list__item {
    max-width: calc((100% - 24px) / 3);
  }

  .addresses-list__divider:nth-child(2n) {
    width: 12px;
  }

  .addresses-list__divider:nth-child(6n) {
    width: 100%;
    height: 12px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .addresses-list__item {
    max-width: calc((100% - 12px) / 2);
  }

  .addresses-list__divider:nth-child(2n) {
    width: 12px;
  }

  .addresses-list__divider:nth-child(4n) {
    width: 100%;
    height: 12px;
  }
}
@media (max-width: 479px) {
  .addresses-list__item {
    max-width: calc((100% - 0px) / 1);
  }

  .addresses-list__divider:nth-child(2n) {
    width: 12px;
  }

  .addresses-list__divider:nth-child(2n) {
    width: 100%;
    height: 12px;
  }
}




/*
// .dashboard
*/
.dashboard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.dashboard__orders {
  margin-top: 24px;
  width: 100%;
}

@media (min-width: 768px) {
  .dashboard__profile,
.dashboard__address {
    width: calc(50% - 12px);
  }
}
@media (max-width: 767px) {
  .dashboard__profile,
.dashboard__address {
    width: 100%;
  }

  .dashboard__address {
    margin-top: 24px;
  }
}

/*
// .profile-card
*/
.profile-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.profile-card__avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 16px;
}
.profile-card__avatar img {
  border-radius: 50%;
  max-width: 100%;
}

.profile-card__name {
  font-weight: 500;
  line-height: 20px;
}

.profile-card__email {
  font-size: 15px;
  margin-bottom: 24px;
}




/*
// .product-image
*/
.product-image__body {
  display: block;
  position: relative;
  padding-bottom: 100%;
  width: 100%;
}

.product-image__img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .product-image__img, .owl-carousel .owl-item .product-image__img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
  }
}

.owl-carousel .owl-item .product-image--location--gallery .product-image__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}



/*
// .order-header
*/
.order-header {
  padding: 1.625rem 2rem 1.375rem;
}
.order-header:after {
  display: block;
  content: "";
  clear: both;
}

.order-header__actions {
  margin-top: -1px;
}
[dir=ltr] .order-header__actions {
  float: right;
}
[dir=rtl] .order-header__actions {
  float: left;
}

.order-header__title {
  border-bottom: 2px solid #e5e5e5;
  padding-bottom: 4px;
  margin-bottom: 0;
}
[dir=ltr] .order-header__title {
  padding-right: 3.5rem;
  float: left;
}
[dir=rtl] .order-header__title {
  padding-left: 3.5rem;
  float: right;
}

.order-header__subtitle {
  color: #6c757d;
  font-size: 14px;
  line-height: 1.375;
  clear: both;
  padding-top: 12px;
}
.order-header__subtitle mark {
  padding: 0;
  color: #3d464d;
  background: transparent;
  font-weight: 500;
}

@media (min-width: 768px) and (max-width: 991px) {
  .order-header {
    padding: 1.375rem 1.5rem 1.25rem;
  }
}
@media (max-width: 767px) {
  .order-header {
    padding: 1.125rem 1.375rem 1rem;
  }
}
@media (max-width: 440px) {
  .order-header__actions {
    margin-bottom: 0.875rem;
  }
  [dir=ltr] .order-header__actions {
    float: none;
  }
  [dir=rtl] .order-header__actions {
    float: none;
  }
}


/*
// .order-list
*/
.order-list a {
  color: inherit;
}
.order-list a:hover {
  color: inherit;
  text-decoration: underline;
}
.order-list table {
  width: 100%;
  font-size: 15px;
}

.order-list__header th,
.order-list__header td {
  text-transform: uppercase;
  color: #6c757d;
  font-size: 13px;
  font-weight: 500;
}

.order-list__footer {
  font-size: 20px;
}
.order-list__footer th {
  font-weight: 500;
}

.order-list__column-image {
  width: 1px;
}
.order-list__column-image .product-image {
  width: 40px;
}

.order-list__column-product {
  line-height: 1.25;
}

.order-list__column-quantity {
  text-align: center;
}

[dir=ltr] .order-list__column-total {
  text-align: right;
}
[dir=rtl] .order-list__column-total {
  text-align: left;
}

.order-list__options {
  color: #6c757d;
  font-size: 13px;
  margin-top: 2px;
}

.order-list__options-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.order-list__options-item:not(:last-child) {
  position: relative;
}
[dir=ltr] .order-list__options-item:not(:last-child) {
  padding-right: 19px;
}
[dir=rtl] .order-list__options-item:not(:last-child) {
  padding-left: 19px;
}
.order-list__options-item:not(:last-child):after {
  position: absolute;
  content: "";
  display: block;
  background: #ccc;
  width: 1px;
  height: 10px;
  top: calc(50% - 5px);
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
}
[dir=ltr] .order-list__options-item:not(:last-child):after {
  right: 9px;
}
[dir=rtl] .order-list__options-item:not(:last-child):after {
  left: 9px;
}

@media (min-width: 576px) {
  .order-list th,
.order-list td {
    padding: 4px 12px;
  }
  [dir=ltr] .order-list th:first-child,
[dir=ltr] .order-list td:first-child {
    padding-left: 1.5rem;
  }
  [dir=rtl] .order-list th:first-child,
[dir=rtl] .order-list td:first-child {
    padding-right: 1.5rem;
  }
  [dir=ltr] .order-list th:last-child,
[dir=ltr] .order-list td:last-child {
    padding-right: 1.5rem;
  }
  [dir=rtl] .order-list th:last-child,
[dir=rtl] .order-list td:last-child {
    padding-left: 1.5rem;
  }

  .order-list__header th,
.order-list__header td {
    border-bottom: 2px solid #f0f0f0;
    padding: 10px 12px;
  }

  .order-list__products th,
.order-list__products td {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .order-list__products tr:first-child th,
.order-list__products tr:first-child td {
    padding-top: 14px;
  }
  .order-list__products tr:last-child th,
.order-list__products tr:last-child td {
    padding-bottom: 14px;
  }
  [dir=ltr] .order-list__products .order-list__column-product {
    padding-left: 4px;
  }
  [dir=rtl] .order-list__products .order-list__column-product {
    padding-right: 4px;
  }

  .order-list__subtotals th,
.order-list__subtotals td {
    padding-top: 3px;
    padding-bottom: 3px;
  }
  .order-list__subtotals tr:first-child th,
.order-list__subtotals tr:first-child td {
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
  }
  .order-list__subtotals tr:last-child th,
.order-list__subtotals tr:last-child td {
    padding-bottom: 12px;
  }

  .order-list__footer th,
.order-list__footer td {
    padding-top: 14px;
    padding-bottom: 14px;
    border-top: 1px solid #f0f0f0;
  }
}
@media (max-width: 575px) {
  .order-list table,
.order-list tr,
.order-list th,
.order-list td {
    display: block;
    padding: 0;
  }

  .order-list__header,
.order-list__products,
.order-list__subtotals,
.order-list__footer {
    display: block;
  }
  .order-list__header tr,
.order-list__products tr,
.order-list__subtotals tr,
.order-list__footer tr {
    padding: 0 1rem;
  }

  .order-list__header tr,
.order-list__subtotals tr,
.order-list__footer tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .order-list__header .order-list__column-label,
.order-list__subtotals .order-list__column-label,
.order-list__footer .order-list__column-label {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .order-list__header .order-list__column-quantity,
.order-list__subtotals .order-list__column-quantity,
.order-list__footer .order-list__column-quantity {
    display: none;
  }

  .order-list__header tr {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
  }

  .order-list__products tr {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .order-list__products tr:not(:first-child) {
    border-top: 1px solid #f0f0f0;
  }
  .order-list__products .order-list__column-image {
    width: 40px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .order-list__products .order-list__column-product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: calc(100% - 40px);
  }
  [dir=ltr] .order-list__products .order-list__column-product {
    padding-left: 1rem;
  }
  [dir=rtl] .order-list__products .order-list__column-product {
    padding-right: 1rem;
  }
  .order-list__products .order-list__column-quantity:before {
    content: attr(data-title) " ";
  }
  .order-list__products .order-list__column-total {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .order-list__products .order-list__column-quantity,
.order-list__products .order-list__column-total {
    margin-top: 0.625rem;
    margin-bottom: -0.125rem;
  }

  .order-list__subtotals {
    padding-top: 12px;
    padding-bottom: 12px;
    border-top: 1px solid #f0f0f0;
  }
  .order-list__subtotals th,
.order-list__subtotals td {
    padding-top: 2px;
    padding-bottom: 2px;
  }

  .order-list__footer {
    padding-top: 12px;
    padding-bottom: 12px;
    border-top: 1px solid #f0f0f0;
  }
}


/*
// .order-success
*/
.order-success__body {
  max-width: 690px;
  margin: 0 auto;
}

.order-success__header {
  padding: 60px 0 52px;
  text-align: center;
}

.order-success__icon {
  fill: #47991f;
  margin: 0 auto;
  display: block;
}

.order-success__title {
  margin-top: 24px;
  margin-bottom: 2px;
}

.order-success__subtitle {
  font-size: 19px;
  font-weight: 500;
}

.order-success__actions {
  margin-top: 20px;
}

.order-success__meta {
  margin-bottom: 28px;
  text-align: center;
}

.order-success__meta-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.order-success__meta-item {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  line-height: 1.25;
  position: relative;
  padding: 2px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.order-success__meta-item:not(:last-child):before {
  position: absolute;
  display: block;
  content: "";
  border-left: 2px dashed #ebebeb;
  width: 0;
  height: 100%;
  top: 0;
}
[dir=ltr] .order-success__meta-item:not(:last-child):before {
  right: -1px;
}
[dir=rtl] .order-success__meta-item:not(:last-child):before {
  left: -1px;
}

.order-success__meta-title {
  display: block;
  font-size: 13px;
  color: #6c757d;
  margin-bottom: 4px;
}

.order-success__meta-value {
  display: block;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .order-success__header {
    padding: 44px 0 40px;
  }

  .order-success__meta-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .order-success__meta-item {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .order-success__meta-item:nth-child(2n):before {
    display: none;
  }
  .order-success__meta-item:nth-child(n+3) {
    margin-top: 16px;
  }
}

/* ----------------------------------------
// Blocks
// ---------------------------------------- */
/*
// .block
*/
.block {
  margin-bottom: 50px;
}

.block--highlighted {
  padding: 50px 0 60px;
  background: #f9f9f9;
}

@media (max-width: 991px) {
  .block {
    margin-bottom: 30px;
  }
}



/*
// Ficheiros
*/

.file-upload {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding-top: 5px;
}

.file-upload input[type='file'] {
  position: absolute;
  left: 0;
  top: 0px;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.file-upload label {
  display: inline-block;
  padding: 8px 20px;
  background-color: #017d03;
  color: #fff;
  border-radius: 25px;
  cursor: pointer;
  
}


.table-responsive-sm th, .table-responsive-sm td{
    border: none !important;
}








