.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;
}


/*
// .address-card
*/
.address-card {
  position: relative;
}

.address-card__badge {
  position: absolute;
  background-color: #002831;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 4px 8px 2px;
  top: -2px;
}

.address-card__badge {
  right: .75rem;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}

[dir=rtl] .address-card__badge {
  left: .75rem;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}

.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: .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;
  margin-bottom: 24px;
  -webkit-transition: border-color .2s;
  transition: border-color .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 .2s;
  transition: background-color .2s;
}

.addresses-list__plus::before, .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;
  }
}

/*
// .card
*/
.card {
  border: 2px solid #f0f0f0;
  border-radius: 2px;
}

.card-body {
  padding: 2rem;
}

.card-header,
.card-footer {
  padding: 1.5rem 2rem;
  border-top: none;
  border-bottom: none;
  background-color: transparent;
}

.card-header h1, .card-header h2, .card-header h3, .card-header h4, .card-header h5, .card-header h6,
.card-footer h1,
.card-footer h2,
.card-footer h3,
.card-footer h4,
.card-footer h5,
.card-footer h6 {
  margin-bottom: 0;
}

.card-title {
  margin-bottom: 1.75rem;
}

.card-title h1, .card-title h2, .card-title h3, .card-title h4, .card-title h5, .card-title h6 {
  margin-bottom: 0;
}

.card-divider {
  height: 2px;
  background: #f0f0f0;
}

.card-body .card-title:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
  .card-header,
  .card-footer {
	padding: 1.25rem 1.5rem;
  }
  .card-title {
	font-size: 26px;
	margin-bottom: 1.5rem;
  }
  .card-body {
	padding: 1.5rem;
  }
}

@media (max-width: 767px) {
  .card-header,
  .card-footer {
	padding: 1rem 1.375rem;
  }
  .card-title {
	font-size: 26px;
	margin-bottom: 1.5rem;
  }
  .card-body {
	padding: 1.375rem;
  }
}

/*
// .card-table
*/
.card-table {
  font-size: 15px;
}

.card-table table {
  width: 100%;
  min-width: 500px;
}

.card-table table {
  text-align: left;
}

[dir=rtl] .card-table table {
  text-align: right;
}

.card-table thead th {
  border-bottom: 2px solid #f0f0f0;
  text-transform: uppercase;
  color: #6c757d;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 12px;
}

.card-table tbody td {
  padding: 12px 12px;
}

.card-table tbody tr + tr td {
  border-top: 1px solid #f0f0f0;
}

.card-table tbody tr:hover > * {
  background-color: #f7f7f7;
}

.card-table th:first-child, .card-table td:first-child {
  padding-left: 2rem;
}

.card-table th:last-child, .card-table td:last-child {
  padding-right: 2rem;
}

[dir=rtl] .card-table th:first-child, [dir=rtl] .card-table td:first-child {
  padding-right: 2rem;
}

[dir=rtl] .card-table th:last-child, [dir=rtl] .card-table td:last-child {
  padding-left: 2rem;
}

@media (min-width: 768px) and (max-width: 991px) {
  .card-table {
	font-size: 14px;
  }
  .card-table th:first-child, .card-table td:first-child {
	padding-left: 1.5rem;
  }
  .card-table th:last-child, .card-table td:last-child {
	padding-right: 1.5rem;
  }
  [dir=rtl] .card-table th:first-child, [dir=rtl] .card-table td:first-child {
	padding-right: 1.5rem;
  }
  [dir=rtl] .card-table th:last-child, [dir=rtl] .card-table td:last-child {
	padding-left: 1.5rem;
  }
}

@media (max-width: 767px) {
  .card-table {
	font-size: 14px;
  }
  .card-table th:first-child, .card-table td:first-child {
	padding-left: 1.375rem;
  }
  .card-table th:last-child, .card-table td:last-child {
	padding-right: 1.375rem;
  }
  [dir=rtl] .card-table th:first-child, [dir=rtl] .card-table td:first-child {
	padding-right: 1.375rem;
  }
  [dir=rtl] .card-table th:last-child, [dir=rtl] .card-table td:last-child {
	padding-left: 1.375rem;
  }
}





/*
// .wishlist
*/
.wishlist__product-name {
  color: inherit;
}

.wishlist__product-rating {
  margin-top: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.wishlist__product-rating-legend {
  font-size: 13px;
  line-height: 1;
  color: #b3b3b3;
  padding-top: 1px;
}

.wishlist__product-rating-legend {
  margin-left: 9px;
}

[dir=rtl] .wishlist__product-rating-legend {
  margin-right: 9px;
}

@media (min-width: 768px) {
  .wishlist {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
  }
  .wishlist__column {
    padding: 12px 18px;
    border-top: 1px solid #ebebeb;
  }
  .wishlist__column:first-child {
    border-left: 1px solid #ebebeb;
  }
  [dir=rtl] .wishlist__column:first-child {
    border-right: 1px solid #ebebeb;
  }
  .wishlist__column:last-child {
    border-right: 1px solid #ebebeb;
  }
  [dir=rtl] .wishlist__column:last-child {
    border-left: 1px solid #ebebeb;
  }
  .wishlist__head {
    background: #f7f7f7;
    font-size: 15px;
  }
  .wishlist__head .wishlist__column {
    font-weight: 500;
  }
  .wishlist__head .wishlist__column:first-child {
    border-top-left-radius: 2.5px;
  }
  [dir=rtl] .wishlist__head .wishlist__column:first-child {
    border-top-right-radius: 2.5px;
  }
  .wishlist__head .wishlist__column:last-child {
    border-top-right-radius: 2.5px;
  }
  [dir=rtl] .wishlist__head .wishlist__column:last-child {
    border-top-left-radius: 2.5px;
  }
  .wishlist__body .wishlist__column {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .wishlist__body .wishlist__row:last-child .wishlist__column {
    border-bottom: 1px solid #ebebeb;
  }
  .wishlist__body .wishlist__row:last-child .wishlist__column:first-child {
    border-bottom-left-radius: 2.5px;
  }
  [dir=rtl] .wishlist__body .wishlist__row:last-child .wishlist__column:first-child {
    border-bottom-right-radius: 2.5px;
  }
  .wishlist__body .wishlist__row:last-child .wishlist__column:last-child {
    border-bottom-right-radius: 2.5px;
  }
  [dir=rtl] .wishlist__body .wishlist__row:last-child .wishlist__column:last-child {
    border-bottom-left-radius: 2.5px;
  }
  .wishlist__column--image {
    width: 1px;
    text-align: center;
  }
  .wishlist__column--image img {
    width: 80px;
  }
  .wishlist__column--stock {
    white-space: nowrap;
    text-align: center;
    width: 1px;
  }
  .wishlist__column--price {
    width: 170px;
  }
  .wishlist__column--price {
    text-align: right;
    padding-left: 90px;
  }
  [dir=rtl] .wishlist__column--price {
    text-align: left;
    padding-right: 90px;
  }
  .wishlist__column--tocart {
    white-space: nowrap;
    width: 1px;
  }
  .wishlist__column--tocart {
    padding-left: 90px;
    padding-right: 0;
  }
  [dir=rtl] .wishlist__column--tocart {
    padding-right: 90px;
    padding-left: 0;
  }
  .wishlist__column--remove {
    width: 1px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .wishlist__column--price {
    width: 140px;
  }
  .wishlist__column--price, [dir=ltr]
  .wishlist__column--tocart {
    padding-left: 30px;
  }
  [dir=rtl] .wishlist__column--price, [dir=rtl]
  .wishlist__column--tocart {
    padding-right: 30px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .wishlist__column--price {
    width: 1px;
  }
  .wishlist__column--product, [dir=ltr]
  .wishlist__column--tocart, [dir=ltr]
  .wishlist__column--price, [dir=ltr]
  .wishlist__column--stock {
    padding-left: 0;
  }
  [dir=rtl] .wishlist__column--product, [dir=rtl]
  .wishlist__column--tocart, [dir=rtl]
  .wishlist__column--price, [dir=rtl]
  .wishlist__column--stock {
    padding-right: 0;
  }
  .wishlist__column--remove {
    padding-left: 8px;
    padding-right: 12px;
  }
  [dir=rtl] .wishlist__column--remove {
    padding-right: 8px;
    padding-left: 12px;
  }
}

@media (max-width: 767px) {
  .wishlist {
    display: block;
  }
  .wishlist__head {
    display: none;
  }
  .wishlist__body {
    display: block;
  }
  .wishlist__row {
    position: relative;
    width: 100%;
    display: block;
    border: 1px solid #ebebeb;
    border-radius: 2px;
    padding: 20px 20px 24px;
  }
  .wishlist__row + .wishlist__row {
    margin-top: 15px;
  }
  .wishlist__column {
    display: block;
    padding: 0;
  }
  .wishlist__column--image {
    padding: 20px 20px 10px;
    text-align: center;
  }
  .wishlist__column--image img {
    width: 100%;
    max-width: 160px;
  }
  .wishlist__column--product,
  .wishlist__column--stock,
  .wishlist__column--price,
  .wishlist__column--tocart {
    text-align: center;
  }
  .wishlist__column--stock {
    margin-top: 8px;
  }
  .wishlist__column--price {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 700;
  }
  .wishlist__column--tocart {
    margin-top: 24px;
  }
  .wishlist__column--remove {
    position: absolute;
    top: 5px;
  }
  .wishlist__column--remove {
    right: 5px;
  }
  [dir=rtl] .wishlist__column--remove {
    left: 5px;
  }
  .wishlist__product-rating {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}



/*
// .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;
  margin-bottom: 24px;
  -webkit-transition: border-color .2s;
  transition: border-color .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 .2s;
  transition: background-color .2s;
}

.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;
  }
}



.btn-xs {
    font-size: 10px;
    height: calc(1.5rem + 2px);
    line-height: 1.25;
    padding: 10px 10px;
    font-weight: 500;
}



.product-card__badge {
    font-size: 11px;
    border-radius: 1.5px;
    letter-spacing: .02em;
    line-height: 1;
    padding: 5px 8px 4px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 4px;
}