@import url("../../../styles.css");
@import url("../../../ElementBox.css");
#dashboard {
  --background-body: #f5f5f5;
  --background-aside: #e0e0e0;
  --background-aside-section: #ccc;
  --background-aside-section-active: #bbb;
  --background-aside-nav-active: #eee;
  --background-aside-nav-hover: #ccc;
  --border-aside-nav: #bbb;
  --title-aside: gray;
  --text-aside: #333;
  --background-searcher-top: #eee;
  --background-searcher-item: #fff;
  --background-searcher-button: #eee;
  --border-searcher: #ccc;
  --icon-aside: none;
  --background-box: #fff;
  --border-box: #eee;
  --background-element: #fff;
  --background-element-disabled: #efefef;
  --background-element-hover: #ebf5fb;
  --border-element: #dcdcdc;
  --text-element: #333;
  --text-element-label: gray;
  --background-dialog: #fff;
  --border-dialog: #eee;
  --background-box-header: #fff;
  --background-box-header-button: #eee;
}
#dashboard header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 10;
  transition: transform 0.3s ease-in-out;
}
#dashboard header .ads .ads-msg {
  background: #101010;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 40px;
}
#dashboard header .ads .ads-msg p {
  color: #fff;
  padding: 0 14px;
  font-size: 14px;
  margin: 0;
}
#dashboard header .ads .ads-box {
  display: none;
  position: fixed;
  height: calc(100vh - 40px);
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
#dashboard header .ads .ads-box .ads-content {
  background: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 40px 0;
}
#dashboard header .ads .ads-box .ads-content a.close {
  position: absolute;
  top: 0;
  right: 40px;
  color: gray;
  font-size: 48px;
}
#dashboard header .ads .ads-box .ads-content li {
  padding: 80px 40px;
  border-right: 1px solid #eee;
}
#dashboard header .ads .ads-box .ads-content li h5 {
  font-size: 15px;
  margin: 0 0 10px 0;
}
#dashboard header .ads .ads-box .ads-content li p {
  font-size: 15px;
  line-height: 28px;
  margin: 0;
  color: #444;
}
#dashboard header .ads .ads-box .ads-content li:last-child {
  border-right: none;
}
#dashboard header .ads .ads-msg .arrow span,
#dashboard header .content nav .box.mnu a.btn-mnu .arrow span {
  display: inline-block;
  margin-right: 8px;
  width: 10px;
  height: 10px;
  position: relative;
  cursor: pointer;
}
#dashboard header .ads .ads-msg .arrow span::before,
#dashboard header .ads .ads-msg .arrow span::after,
#dashboard header .content nav .box.mnu a.btn-mnu .arrow span::before,
#dashboard header .content nav .box.mnu a.btn-mnu .arrow span::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 8px;
  background-color: #fff;
  top: 0;
  transition: top 0.1s ease;
}
#dashboard header .ads .ads-msg .arrow span::before,
#dashboard header .content nav .box.mnu a.btn-mnu .arrow span::before {
  left: -3px;
  top: 0;
  transform: rotate(-45deg);
}
#dashboard header .ads .ads-msg .arrow span::after,
#dashboard header .content nav .box.mnu a.btn-mnu .arrow span::after {
  left: 2px;
  top: 0;
  transform: rotate(45deg);
}
#dashboard header .ads.active .ads-msg .arrow span::before,
#dashboard header .content nav .box.mnu.active a.btn-mnu .arrow span::before {
  transform: rotate(-45deg);
  left: 1px;
}
#dashboard header .ads.active .ads-msg .arrow span::after,
#dashboard header .content nav .box.mnu.active a.btn-mnu .arrow span::after {
  transform: rotate(45deg);
  left: 1px;
}
#dashboard header .ads.active .ads-box {
  display: block;
}
#dashboard header .content {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 40px;
  margin: 0 auto;
  align-items: center;
  height: 85px;
  padding: 0 20px;
  border-bottom: 1px solid #ddd;
}
#dashboard header .content a {
  display: grid;
}
#dashboard header .content a img {
  width: 100%;
}
#dashboard header .content nav {
  display: flex;
  gap: 20px;
  justify-content: center;
}
#dashboard header .content nav .btn-menu-close {
  display: none;
}
#dashboard header .content nav .box a p {
  margin: 0;
  color: black;
  font-weight: 500;
}
#dashboard header .content nav .box a p.mark {
  color: orangered;
}
#dashboard header .content nav .box a.btn-mnu {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
#dashboard header .content nav .box a.btn-mnu .arrow {
  text-align: center;
}
#dashboard header .content nav .box a.btn-mnu .arrow span::after,
#dashboard header .content nav .box a.btn-mnu .arrow span::before {
  background-color: black !important;
}
#dashboard header .content nav .box .cnt-mnu {
  display: none;
  background: rgba(0, 0, 0, 0.2);
  height: calc(100vh - 125px);
  position: absolute;
  top: 125px;
  left: 0;
  width: 100%;
  z-index: 1;
}
#dashboard header .content nav .box .cnt-mnu .box-mnu {
  background: white;
  display: grid;
  min-height: 40vh;
  grid-template-columns: 3fr 1fr;
  gap: 20px;
  padding: 0 0 0 20px;
}
#dashboard header .content nav .box .cnt-mnu .box-mnu .smnu {
  padding: 20px 0;
}
#dashboard header .content nav .box .cnt-mnu .box-mnu .smnu h5 {
  margin: 0 0 20px 0;
  border-left: 3px solid #eee;
  transition: 0.5s;
  padding: 0 0 0 20px;
  width: auto;
  font-size: 16px;
  color: #444;
}
#dashboard header .content nav .box .cnt-mnu .box-mnu .smnu a {
  margin: 12px 0;
  display: block;
  color: gray;
  font-size: 14px;
  padding: 0 20px;
}
#dashboard header .content nav .box .cnt-mnu .box-mnu .smnu a:hover {
  color: black;
  font-weight: 500;
}
#dashboard header .content nav .box .cnt-mnu .box-mnu .smnu:hover h5 {
  border-color: #333;
  color: black;
}
#dashboard header .content nav .box .cnt-mnu .box-mnu .product {
  background: white;
  border-left: 1px solid #ddd;
  padding: 20px;
}
#dashboard header .content nav .box .cnt-mnu .box-mnu .product h5 {
  margin: 0 0 20px 0;
}
#dashboard header .content nav .box .cnt-mnu .box-mnu .product .items {
  display: grid;
  gap: 0;
}
#dashboard header .content nav .box .cnt-mnu .box-mnu .product .items .item .pic {
  height: auto;
}
#dashboard header .content nav .box .cnt-mnu .box-mnu .product .items .item .pic img {
  display: block !important;
}
#dashboard header .content nav .box .cnt-mnu .box-mnu .product .items .item .variants {
  display: none;
}
#dashboard header .content nav .box.active a p {
  color: royalblue;
}
#dashboard header .content nav .box.active a.btn-mnu .arrow span::after,
#dashboard header .content nav .box.active a.btn-mnu .arrow span::before {
  background-color: royalblue !important;
}
#dashboard header .content nav .box.active .cnt-mnu {
  display: block;
}
#dashboard header .content .buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}
#dashboard header .content .buttons form {
  position: relative;
}
#dashboard header .content .buttons form input {
  display: none;
  background: white;
  border-radius: 20px;
  border: 1px solid #ccc;
  padding: 8px 40px 8px 14px;
  font-size: 15px;
  transition: 0.3s;
  outline: none;
}
#dashboard header .content .buttons form a {
  cursor: text;
}
#dashboard header .content .buttons form.active input {
  display: block;
  margin-right: -10px;
}
#dashboard header .content .buttons form.active input:focus {
  border-color: royalblue;
}
#dashboard header .content .buttons form.active a {
  position: absolute;
  top: 7px;
  right: 0;
  cursor: pointer;
}
#dashboard header .content .buttons i {
  width: 24px;
  height: 24px;
}
#dashboard header .content .buttons .favorites {
  position: relative;
}
#dashboard header .content .buttons .favorites .box-favorites {
  display: none;
  position: absolute;
  top: 60px;
  border-radius: 10px;
  width: 420px;
  box-shadow: 2px 3px 10px 2px rgba(0, 0, 0, 0.25);
  right: 10px;
  z-index: 10;
}
#dashboard header .content .buttons .favorites .box-favorites .top {
  background: white;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid #eee;
  padding: 12px 18px;
  display: grid;
  column-gap: 12px;
  border-radius: 10px 10px 0 0;
  align-items: center;
}
#dashboard header .content .buttons .favorites .box-favorites .top h2 {
  color: black;
  margin: 0;
  grid-area: auto;
}
#dashboard header .content .buttons .favorites .box-favorites .top a i {
  width: 20px;
  height: 20px;
}
#dashboard header .content .buttons .favorites .box-favorites .content {
  border-radius: 0 0 10px 10px !important;
  max-height: 80vh;
  overflow-y: auto;
  background: white;
  display: grid;
  border-radius: 10px;
  width: 100%;
  grid-template-columns: 1fr;
  padding: 0;
  height: auto;
  gap: 0;
}
#dashboard header .content .buttons .favorites .box-favorites .content li {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  padding: 12px 18px;
  border-top: 1px solid #eee;
  gap: 10px;
  align-items: center;
  background: white;
  position: relative;
}
#dashboard header .content .buttons .favorites .box-favorites .content li .buttons {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  gap: 14px;
}
#dashboard header .content .buttons .favorites .box-favorites .content li .buttons span.text {
  top: -4px;
  color: white;
}
#dashboard header .content .buttons .favorites .box-favorites .content li .buttons i {
  width: 20px;
  height: 20px;
}
#dashboard header .content .buttons .favorites .box-favorites .content li img {
  width: 100%;
  border-radius: 50px;
  border: 1px solid #eee;
}
#dashboard header .content .buttons .favorites .box-favorites .content li .data {
  display: grid;
  grid-template-rows: repeat(2, auto);
  gap: 8px;
}
#dashboard header .content .buttons .favorites .box-favorites .content li .data h4,
#dashboard header .content .buttons .favorites .box-favorites .content li .data h5,
#dashboard header .content .buttons .favorites .box-favorites .content li .data p {
  margin: 0;
  color: black;
}
#dashboard header .content .buttons .favorites .box-favorites .content li span {
  font-weight: 500;
  color: black;
}
#dashboard header .content .buttons .favorites .box-favorites .content li:hover {
  background: aliceblue;
  cursor: pointer;
}
#dashboard header .content .buttons .favorites .box-favorites .content li:hover .buttons {
  display: flex;
}
#dashboard header .content .buttons .favorites .box-favorites .content li:first-child {
  border-top: none;
}
#dashboard header .content .buttons .favorites .box-favorites .content li:last-child {
  border-radius: 0 0 10px 10px;
}
#dashboard header .content .buttons .favorites.active .box-favorites {
  display: grid;
}
#dashboard header .content .buttons .favorites span.count,
#dashboard header .content .buttons .btn-cart-header span.count {
  position: absolute;
  top: -16px;
  right: -12px;
  color: white;
  background: orangered;
  padding: 5px 8px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: bold;
}
#dashboard main {
  margin: 125px 0 0 0;
  position: relative;
}
#dashboard main section.search {
  padding: 0 20px 20px 20px;
  display: grid;
  grid-template-columns: 1fr 4fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: "list-header list-header" "list-filters list-result";
  position: relative;
  column-gap: 20px;
}
#dashboard main section.search .header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  grid-area: list-header;
}
#dashboard main section.search .header h2 {
  font-size: 48px;
}
#dashboard main section.search .header span {
  font-size: 16px;
  color: gray;
  font-style: italic;
}
#dashboard main section.search .filters {
  grid-area: list-filters;
}
#dashboard main section.search .filters h2 {
  margin: 0 0 20px 0;
}
#dashboard main section.search .filters .filter-active {
  display: inline-block;
  margin: 0 0 20px 0;
}
#dashboard main section.search .filters .filter-active a.remove {
  background: #eee;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 30px 8px 12px;
  border-radius: 5px;
  display: block;
  margin: 0 5px 5px 0;
  float: left;
}
#dashboard main section.search .filters .filter-active a.remove::after {
  content: "x";
  position: absolute;
  right: 12px;
  align-self: anchor-center;
}
#dashboard main section.search .filters .filter {
  border-top: 1px solid #eee;
  padding: 8px 0;
  display: grid;
}
#dashboard main section.search .filters .filter .btn-filter {
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 20px;
  align-items: center;
  padding: 10px 0;
  cursor: pointer;
}
#dashboard main section.search .filters .filter .btn-filter h5 {
  margin: 0;
  font-size: 16px;
}
#dashboard main section.search .filters .filter .btn-filter .arrow span {
  display: inline-block;
  margin-right: 8px;
  width: 10px;
  height: 10px;
  position: relative;
  cursor: pointer;
}
#dashboard main section.search .filters .filter .btn-filter .arrow span::before,
#dashboard main section.search .filters .filter .btn-filter .arrow span::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 8px;
  background-color: #333;
  top: 0;
  transition: top 0.1s ease;
}
#dashboard main section.search .filters .filter .btn-filter .arrow span::before {
  left: -3px;
  top: 0;
  transform: rotate(-45deg);
}
#dashboard main section.search .filters .filter .btn-filter .arrow span::after {
  left: 2px;
  top: 0;
  transform: rotate(45deg);
}
#dashboard main section.search .filters .filter .box-filter {
  display: none;
}
#dashboard main section.search .filters .filter .box-filter .checkbox-label {
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  color: var(--text-aside);
  padding: 5px 0;
}
#dashboard main section.search .filters .filter .box-filter .checkbox-label input {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid royalblue;
  border-radius: 5px;
  background-color: transparent;
  display: inline-block;
  position: relative;
  margin-right: 10px;
  cursor: pointer;
}
#dashboard main section.search .filters .filter .box-filter .checkbox-label input::before {
  content: "";
  background-color: royalblue;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 10px;
  height: 10px;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}
#dashboard main section.search .filters .filter .box-filter .checkbox-label input:checked::before {
  transform: translate(-50%, -50%) scale(1);
}
#dashboard main section.search .filters .filter .box-filter .checkbox-label span {
  color: gray;
  font-style: italic;
  margin: 0 0 0 10px;
}
#dashboard main section.search .filters .filter .box-filter input:checked::before ~ label.checkbox-label {
  font-weight: bold;
}
#dashboard main section.search .filters .filter .box-filter .range-box {
  position: relative;
  margin: 20px auto;
  height: 10px;
  border-radius: 20px;
}
#dashboard main section.search .filters .filter .box-filter .range-box input[type=range] {
  position: absolute;
  width: 100%;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  background: none;
}
#dashboard main section.search .filters .filter .box-filter .range-box input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  pointer-events: all;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: orangered;
  cursor: pointer;
  border: none;
  position: relative;
  z-index: 2;
  top: -5px;
}
#dashboard main section.search .filters .filter .box-filter .range-values button {
  float: right;
}
#dashboard main section.search .filters .filter.active .arrow span::before {
  transform: rotate(-45deg);
  left: 1px;
}
#dashboard main section.search .filters .filter.active .arrow span::after {
  transform: rotate(45deg);
  left: 1px;
}
#dashboard main section.search .filters .filter.active .box-filter {
  display: block;
}
#dashboard main section.search .result {
  grid-area: list-result;
}
#dashboard main section.search .result .box-result {
  display: grid;
  grid-template-columns: 1fr auto;
  margin: 0 0 20px 0;
}
#dashboard main section.search .result .box-result .view {
  display: grid;
  grid-template-columns: repeat(2, 34px) 380px;
  gap: 10px;
}
#dashboard main section.search .result .box-result .view button {
  background: white;
  border: none;
  outline: none;
  padding: 0;
  cursor: pointer;
}
#dashboard main section.search .result .box-result .view button i {
  width: 34px;
  height: 34px;
  filter: grayscale(0.8);
  transition: 0.3s;
}
#dashboard main section.search .result .box-result .view button.active i {
  filter: none;
}
#dashboard main section.search .result .box-result .view .btn-filter-search {
  display: none;
}
#dashboard main section.search .result .box-result .paginate {
  display: grid;
  grid-template-columns: repeat(7, auto);
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
#dashboard main section.search .result .box-result .paginate .select-group .select-content .select-options .select-item.focus::after {
  content: "";
}
#dashboard main section.search .result .box-result .paginate button {
  border: none;
  outline: none;
  background: white;
  font-size: 34px;
  font-weight: bold;
  cursor: pointer;
}
#dashboard main section.search .result .box-result .paginate button span.text {
  top: 12px;
}
#dashboard main section.search .result .box-result .paginate button .arrow span {
  display: inline-block;
  margin-right: 8px;
  width: 10px;
  height: 10px;
  position: relative;
  cursor: pointer;
}
#dashboard main section.search .result .box-result .paginate button .arrow span::before,
#dashboard main section.search .result .box-result .paginate button .arrow span::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 15px;
  background-color: #333;
  top: 0;
  transition: top 0.1s ease;
}
#dashboard main section.search .result .box-result .paginate button.previous-top span::before,
#dashboard main section.search .result .box-result .paginate button.previous-bottom span::before {
  left: 0;
  top: -13px;
  transform: rotate(45deg);
}
#dashboard main section.search .result .box-result .paginate button.previous-top span::after,
#dashboard main section.search .result .box-result .paginate button.previous-bottom span::after {
  left: 0;
  top: -6px;
  transform: rotate(-45deg);
}
#dashboard main section.search .result .box-result .paginate button.next-top span::before,
#dashboard main section.search .result .box-result .paginate button.next-bottom span::before {
  left: 8px;
  top: -13px;
  transform: rotate(-45deg);
}
#dashboard main section.search .result .box-result .paginate button.next-top span::after,
#dashboard main section.search .result .box-result .paginate button.next-bottom span::after {
  left: 8px;
  top: -6px;
  transform: rotate(45deg);
}
#dashboard main section.search .result .box-result:last-child {
  margin: 20px 0 0 0;
}
#dashboard main section.search .result .items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
#dashboard main section.search .result .items .item {
  display: grid;
}
#dashboard main section.search .result .items.detail {
  grid-template-columns: repeat(2, 1fr);
}
#dashboard main section.search .result .items.detail .item {
  display: grid;
  grid-template-rows: 1fr repeat(2, auto);
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "item-detail-pic item-detail-data" "item-detail-pic item-detail-variants" "item-detail-pic item-detail-sizes";
}
#dashboard main section.search .result .items.detail .item .pic {
  grid-area: item-detail-pic;
  height: auto;
}
#dashboard main section.search .result .items.detail .item .pic img {
  border-radius: 5px 0 0 5px;
}
#dashboard main section.search .result .items.detail .item .variants,
#dashboard main section.search .result .items.detail .item .sizes {
  grid-area: item-detail-variants;
  flex-wrap: wrap;
  padding: 10px 14px;
  border: none;
  color: black;
}
#dashboard main section.search .result .items.detail .item .variants h5,
#dashboard main section.search .result .items.detail .item .sizes h5 {
  display: block;
  margin: 0 0 5px 0;
  flex: 0 0 100%;
  width: 100%;
  color: black;
}
#dashboard main section.search .result .items.detail .item .data {
  grid-area: item-detail-data;
  padding: 10px 14px;
}
#dashboard main section.search .result .items.detail .item .sizes {
  display: flex;
  grid-area: item-detail-sizes !important;
  gap: 5px;
}
#dashboard main section.search .result .items.detail .item .sizes li {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 8px 14px;
}
#dashboard main section.search .result .items.detail .item .sizes li p {
  font-size: 14px;
  margin: 0;
  font-weight: 500;
  color: black;
}
#dashboard main section.search .not {
  grid-area: list-result;
}
#dashboard main section.search .not .box {
  text-align: center;
}
#dashboard main section.search .not .box img {
  width: 480px;
}
#dashboard main section.search .not .box h4 {
  font-size: 24px;
  color: gray;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 3px;
  margin: 0;
  font-weight: 400;
}
#dashboard main section.search .not h2 {
  text-align: left;
}
#dashboard .items {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
  overflow-x: hidden;
}
#dashboard .items .item {
  flex: 0 0 calc(20vw - 20px);
  transition: box-shadow 0.4s;
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid #eee;
  position: relative;
  transition: 0.3s;
  background: white;
}
#dashboard .items .item .buttons {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 24px);
  gap: 15px;
  display: none;
}
#dashboard .items .item .buttons a.btn-favorite.active i {
  background-image: url("/assets/icons/favorite-active.png");
}
#dashboard .items .item .buttons i {
  width: 24px;
  height: 24px;
}
#dashboard .items .item .pic {
  height: 380px;
  overflow: hidden;
  position: relative;
  background: white;
  border-radius: 5px 5px 0 0;
}
#dashboard .items .item .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 5px 5px 0 0;
  aspect-ratio: 1/1;
}
#dashboard .items .item .pic .others {
  display: none;
  position: absolute;
  bottom: 10px;
  left: 10px;
  gap: 10px;
}
#dashboard .items .item .pic .others img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1/1;
}
#dashboard .items .item .sizes {
  display: none;
  background: white;
}
#dashboard .items .item .variants {
  display: flex;
  gap: 5px;
  padding: 10px;
  flex-wrap: wrap;
  border-top: 1px solid #eee;
  background: white;
}
#dashboard .items .item .variants h5 {
  display: none;
}
#dashboard .items .item .variants li {
  border: 1px solid #eee;
  border-radius: 5px;
}
#dashboard .items .item .variants li img {
  width: 50px;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1/1;
}
#dashboard .items .item .variants li.active {
  border-color: #bcbcbc;
}
#dashboard .items .item .data {
  padding: 10px;
  background: white;
  border-radius: 0 0 5px 5px;
}
#dashboard .items .item .data .brand {
  margin: 0 0 6px 0;
  color: royalblue;
  display: block;
  font-weight: 500;
}
#dashboard .items .item .data h4 {
  margin: 0;
  color: black;
}
#dashboard .items .item .data .price {
  margin: 10px 0 0 0;
  color: black;
}
#dashboard .items .item .data .price h3 {
  font-size: 24px;
  margin: 0 0 0 0;
}
#dashboard .items .item .data .price h3 del {
  font-weight: 400;
  color: gray;
  font-size: 16px;
}
#dashboard .items .item .data .price span {
  color: gray;
  font-size: 11px;
}
#dashboard .items .item .data .price p {
  display: none;
}
#dashboard .items .item:hover {
  border-color: gray;
}
#dashboard .items .item:hover .buttons {
  display: grid;
}
#dashboard .items .item:hover .pic .others {
  display: flex;
}
#dashboard .items::-webkit-scrollbar {
  height: 6px;
  background: #ddd;
  border-radius: 8px;
}
#dashboard .items::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 3px;
}
#dashboard dialog#preview[open],
#dashboard dialog#cart[open] {
  display: grid;
}
#dashboard dialog#preview {
  background: white;
  width: 60%;
  border-radius: 10px;
  grid-template-columns: repeat(2, 1fr);
  outline: none;
  border: none;
  gap: 40px;
}
#dashboard dialog#preview a.close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 34px;
  color: gray;
}
#dashboard dialog#preview a.close span.text {
  top: 10px;
}
#dashboard dialog#preview .pic {
  display: grid;
  grid-template-rows: 1fr auto;
  position: relative;
}
#dashboard dialog#preview .pic a.brand {
  background: royalblue;
  color: white;
  font-size: 14px;
  border-radius: 20px;
  padding: 8px 14px;
  font-weight: 400;
  border: none;
  outline: none;
  float: left;
  position: absolute;
  top: 10px;
  left: 10px;
}
#dashboard dialog#preview .pic .preview {
  position: relative;
  overflow: hidden;
}
#dashboard dialog#preview .pic .preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  transition: transform 0.1s ease-out;
  cursor: crosshair;
  border-radius: 5px;
  aspect-ratio: 1/1;
}
#dashboard dialog#preview .pic .others {
  display: flex;
  width: 100%;
  gap: 8px;
  margin: 8px 0 0 0;
  overflow-y: auto;
}
#dashboard dialog#preview .pic .others img {
  width: 80px;
  border: 1px solid #eee;
  cursor: pointer;
  border-radius: 5px;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1/1;
}
#dashboard dialog#preview .pic .others img.active {
  border-color: #bcbcbc;
}
#dashboard dialog#preview .data {
  padding: 0 0 0 40px;
  border-left: 1px solid #eee;
}
#dashboard dialog#preview .data .info {
  padding: 0 0 30px 0;
  border-bottom: 1px solid #eee;
}
#dashboard dialog#preview .data .info p {
  margin: 0;
}
#dashboard dialog#preview .data .info p a {
  color: royalblue;
  font-weight: 500;
  font-size: 14px;
}
#dashboard dialog#preview .data .info h2 {
  margin: 10px 0;
  font-size: 34px;
  color: black;
}
#dashboard dialog#preview .data .info h4 {
  margin: 10px 0 8px 0;
  font-size: 24px;
  color: black;
}
#dashboard dialog#preview .data .info h4 del {
  color: gray;
  font-weight: 400;
}
#dashboard dialog#preview .data .info span {
  color: gray;
  font-size: 13px;
}
#dashboard dialog#preview .data .info p.promo {
  color: orangered;
  font-weight: 500;
  margin: 10px 0 0 0;
}
#dashboard dialog#preview .data .colors,
#dashboard dialog#preview .data .sizes {
  padding: 20px 0 0 0;
}
#dashboard dialog#preview .data .colors h5,
#dashboard dialog#preview .data .sizes h5 {
  margin: 10px 0;
}
#dashboard dialog#preview .data .colors ul,
#dashboard dialog#preview .data .sizes ul {
  display: flex;
  gap: 10px;
}
#dashboard dialog#preview .data .colors ul li span,
#dashboard dialog#preview .data .sizes ul li span {
  color: white;
}
#dashboard dialog#preview .data .colors ul li img,
#dashboard dialog#preview .data .sizes ul li img {
  width: 65px;
  border-radius: 50px;
  border: 1px solid #eee;
  cursor: pointer;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1/1;
}
#dashboard dialog#preview .data .sizes ul li p {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  background: #eee;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  margin: 0;
}
#dashboard dialog#preview .data .colors ul li.active img {
  border-color: #333;
}
#dashboard dialog#preview .data .sizes ul li.active p {
  background: #101010;
  color: white;
}
#dashboard dialog#preview .data .buttons {
  display: grid;
  grid-template-columns: auto 1fr 24px;
  gap: 10px;
  align-items: center;
  padding: 40px 20px 0 0;
}
#dashboard dialog#preview .data .buttons .quantity {
  display: flex;
}
#dashboard dialog#preview .data .buttons .quantity button {
  background: white;
  border-radius: 50px 0 0 50px;
  padding: 12px 14px;
  font-size: 15px;
  border-style: solid;
  border-width: 1px 0 1px 1px;
  border-color: #ddd;
  outline: none;
  text-align: center;
}
#dashboard dialog#preview .data .buttons .quantity button:last-child {
  border-radius: 0 50px 50px 0;
  border-width: 1px 1px 1px 0;
}
#dashboard dialog#preview .data .buttons .quantity input {
  outline: none;
  padding: 12px 5px;
  border-color: #ddd;
  border-width: 1px 0;
  border-style: solid;
  font-size: 15px;
  background: #fff;
  text-align: center;
  width: 45px;
}
#dashboard dialog#preview .data .buttons .btn {
  border-radius: 50px;
}
#dashboard dialog#preview .data .buttons a i {
  width: 24px;
  height: 24px;
}
#dashboard dialog#preview .data .buttons a.btn-favorite-preview.active i {
  background-image: url("/assets/icons/favorite-active.png");
}
#dashboard #cart {
  background: white;
  width: 60%;
  border-radius: 10px;
  outline: none;
  border: none;
  padding: 0;
  grid-template-rows: auto 1fr auto;
}
#dashboard #cart .top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 20px 30px;
  border-bottom: 1px solid #ddd;
  align-items: center;
}
#dashboard #cart .top h2 {
  margin: 0;
}
#dashboard #cart .top a i {
  width: 20px;
  height: 20px;
}
#dashboard #cart .list {
  overflow-y: auto;
  outline: none;
}
#dashboard #cart .list li {
  padding: 20px 30px;
  display: grid;
  grid-template-columns: 100px 2fr repeat(2, 1fr) 24px;
  gap: 20px;
  align-items: center;
  border-top: 1px solid #ddd;
  transition: 0.3s;
}
#dashboard #cart .list li img {
  width: 100%;
  border-radius: 50px;
  border: 1px solid #ddd;
}
#dashboard #cart .list li .data a {
  outline: none;
}
#dashboard #cart .list li .data p,
#dashboard #cart .list li .data h4,
#dashboard #cart .list li .data h5 {
  margin: 0;
  color: black;
}
#dashboard #cart .list li .data h4 {
  margin: 8px 0;
}
#dashboard #cart .list li .quantity {
  display: flex;
  justify-content: center;
}
#dashboard #cart .list li .quantity button {
  background: white;
  border-radius: 50px 0 0 50px;
  padding: 12px 14px;
  font-size: 15px;
  border-style: solid;
  border-width: 1px 0 1px 1px;
  border-color: #ddd;
  outline: none;
  text-align: center;
}
#dashboard #cart .list li .quantity button:last-child {
  border-radius: 0 50px 50px 0;
  border-width: 1px 1px 1px 0;
}
#dashboard #cart .list li .quantity input {
  outline: none;
  padding: 12px 5px;
  border-color: #ddd;
  border-width: 1px 0;
  border-style: solid;
  font-size: 15px;
  background: #fff;
  text-align: center;
  width: 45px;
}
#dashboard #cart .list li .price {
  color: black;
  font-weight: 500;
  text-align: center;
}
#dashboard #cart .list li .price del {
  display: block;
}
#dashboard #cart .list li span.text {
  color: white;
}
#dashboard #cart .list li i {
  width: 24px;
  height: 24px;
}
#dashboard #cart .list li:hover {
  background: #eee;
}
#dashboard #cart .list li:first-child {
  border-top: none;
}
#dashboard #cart .list .whitouth {
  padding: 80px 0;
}
#dashboard #cart .totals {
  background-color: white;
  border-top: 1px solid #ddd;
  padding: 20px 30px;
  display: grid;
  grid-template-columns: 1fr repeat(2, auto);
  gap: 8px;
}
#dashboard #cart .totals h2 {
  margin: 0;
}
#dashboard #preview-cart {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 10;
  min-width: 580px;
}
#dashboard #preview-cart .my-item {
  background: white;
  display: grid;
  grid-template-columns: 80px 2fr 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 20px;
  align-items: center;
  box-shadow: 2px 3px 10px 2px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  padding: 20px;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
#dashboard #preview-cart .my-item h2 {
  grid-column-start: 1;
  grid-column-end: 4;
  margin: 0 0 10px 0;
  color: royalblue;
  font-size: 16px;
}
#dashboard #preview-cart .my-item h2 a {
  color: black;
  float: right;
}
#dashboard #preview-cart .my-item h2 a span.text {
  font-size: 13px;
}
#dashboard #preview-cart .my-item img {
  width: 100%;
  border-radius: 50px;
}
#dashboard #preview-cart .my-item .data p {
  margin: 0;
}
#dashboard #preview-cart .my-item .data h4 {
  margin: 8px 0;
}
#dashboard #preview-cart .my-item .data h5 {
  margin: 0;
  font-style: italic;
}
#dashboard #preview-cart .my-item .price del {
  display: block;
  font-size: 16px;
}
#dashboard #preview-cart .my-item .price span {
  font-size: 18px;
  font-weight: bold;
}
#dashboard #preview-cart .my-item .buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  grid-column-start: 1;
  grid-column-end: 4;
}
#dashboard #preview-cart .my-item.show {
  transform: translateY(0);
}
#dashboard #preview-cart .my-item.hide {
  transform: translateY(20px);
}
#dashboard footer {
  padding: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  background: #222;
}
#dashboard footer .data img {
  width: 210px;
  text-align: center;
}
#dashboard footer .data h2 {
  margin: 0;
  font-size: 24px;
  color: white;
  transition: 0.3s;
  padding: 0;
}
#dashboard footer .data a {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  margin: 20px 0;
}
#dashboard footer .data a i {
  filter: invert(1);
}
#dashboard footer .data a p {
  font-size: 14px;
  color: white;
  margin: 0;
}
#dashboard footer .box h2 {
  margin: 0;
  font-size: 24px;
  color: white;
  border-left: 3px solid #666;
  transition: 0.3s;
  padding: 0 0 0 20px;
}
#dashboard footer .box a {
  display: block;
  width: 100%;
  padding: 8px 0 8px 20px;
  border-left: 3px solid transparent;
  transition: 0.3s;
  color: white;
  font-size: 14px;
}
#dashboard footer .box a:hover {
  border-color: #ccc !important;
}
#dashboard footer .box:hover h2 {
  border-color: white;
}
#dashboard footer .follow {
  grid-column-start: 1;
  grid-column-end: 5;
  display: flex;
  justify-content: center;
  gap: 40px;
  border-top: 1px solid #4f4f4f;
  margin: 40px auto 0 auto;
  width: max-content;
  padding: 80px 80px 0 80px;
}
#dashboard footer .follow a {
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: "follow-pic follow-p" "follow-pic follow-h4";
  column-gap: 20px;
}
#dashboard footer .follow a i {
  filter: invert(1);
  width: 60px;
  height: 60px;
  grid-area: follow-pic;
}
#dashboard footer .follow a p {
  grid-area: follow-p;
  margin: 0;
  color: #ccc;
  font-size: 14px;
}
#dashboard footer .follow a h4 {
  grid-area: follow-h4;
  margin: 0;
  color: white;
  font-size: 24px;
}
#dashboard .copy {
  background: black;
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 20px 80px;
}
#dashboard .copy p {
  color: white;
  font-size: 14px;
  margin: 0;
}
#dashboard .copy a {
  display: grid;
  align-items: center;
  color: white;
  grid-template-columns: 1fr 120px;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}
#dashboard .copy a img {
  width: 100%;
}

#btn-menu,
#btn-filter-close,
.btn-search-close {
  display: none !important;
}

@media (max-width: 768px) {
  #dashboard header {
    transform: none !important;
  }
  #dashboard header .ads .ads-box .ads-content {
    grid-template-columns: 1fr;
    height: 100%;
    gap: 0px;
  }
  #dashboard header .ads .ads-box .ads-content a {
    display: none;
  }
  #dashboard header .ads .ads-box .ads-content li {
    padding: 20px 40px;
    border-bottom: 1px solid #eee;
    border-right: none;
  }
  #dashboard header .ads .ads-box .ads-content li:last-child {
    border: none;
  }
  #dashboard header .content {
    grid-template-columns: 24px 160px 1fr;
    grid-template-rows: 1fr;
    height: max-content;
    justify-items: end;
    gap: 15px;
    padding: 10px 20px;
  }
  #dashboard header .content a img {
    width: 100%;
  }
  #dashboard header .content nav {
    display: none;
  }
  #dashboard header .content nav.active {
    display: block;
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100%;
    background: white;
    padding: 40px 0;
    z-index: 1;
    left: 0;
  }
  #dashboard header .content nav.active .btn-menu-close {
    display: grid;
    grid-template-columns: 1fr 24px;
    gap: 20px;
    align-items: center;
    padding: 0 40px 20px 40px;
    border-bottom: 1px solid #ddd;
  }
  #dashboard header .content nav.active .btn-menu-close h2 {
    margin: 0;
  }
  #dashboard header .content nav.active .box {
    padding: 15px 40px;
    border-bottom: 1px solid #ddd;
  }
  #dashboard header .content nav.active .box.active .cnt-mnu {
    background: transparent;
    position: relative;
    height: auto;
    top: auto;
  }
  #dashboard header .content nav.active .box.active .cnt-mnu .box-mnu {
    grid-template-columns: 1fr !important;
    padding: 0;
    min-height: auto;
    gap: 0;
  }
  #dashboard header .content nav.active .box.active .cnt-mnu .box-mnu .smnu {
    padding: 20px 0 0 0;
  }
  #dashboard header .content nav.active .box.active .cnt-mnu .box-mnu .smnu h5 {
    border-left: none;
    padding: 0;
    margin: 0;
  }
  #dashboard header .content nav.active .box.active .cnt-mnu .box-mnu .smnu a {
    padding: 0;
  }
  #dashboard header .content .buttons .favorites .box-favorites {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    left: 0;
    grid-template-rows: auto 1fr;
  }
  #dashboard header .content .buttons .favorites .box-favorites .top {
    border-radius: 0;
    padding: 20px;
    grid-template-columns: 1fr 24px !important;
    align-items: center;
  }
  #dashboard header .content .buttons .favorites .box-favorites .top a i {
    width: 20px;
    height: 20px;
  }
  #dashboard header .content .buttons .favorites .box-favorites .content {
    border-radius: 0 !important;
    max-height: none;
    display: block;
  }
  #dashboard header .content .buttons form.active {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 1;
    padding: 40px;
    display: grid;
    align-content: center;
  }
  #dashboard header .content .buttons form.active a.tooltip {
    display: none;
  }
  #dashboard header .content .buttons form.active .btn-search-close {
    display: grid !important;
  }
  #dashboard header .content .buttons form.active .btn-search-close #btn-search-close {
    top: 40px !important;
    right: 40px !important;
  }
  #dashboard header .content .buttons form.active .btn-search-close h2 {
    font-size: 24px;
    text-align: center;
    margin: 0 0 25px 0;
  }
  #dashboard header .content .buttons form.active input {
    width: 100%;
    padding: 12px 20px;
  }
  #dashboard main {
    margin-top: 130px;
  }
  #dashboard main section#carousels li {
    height: 65vh;
  }
  #dashboard main section#carousels button {
    display: block !important;
    top: 32.5vh !important;
  }
  #dashboard main section#features {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: auto !important;
  }
  #dashboard main section#features li:hover .pic {
    scale: 1;
  }
  #dashboard main section#features li:hover .data {
    background-color: transparent !important;
  }
  #dashboard main section#features li:hover .data h2 {
    color: black;
    padding: 8px 14px;
    font-size: 16px;
    background: white;
  }
  #dashboard main section#features li:hover .data p {
    display: none !important;
  }
  #dashboard main section#collections {
    flex-direction: column;
  }
  #dashboard main section#collections a {
    flex: auto;
  }
  #dashboard main section#collections a:first-child {
    writing-mode: lr;
    padding: 20px;
  }
  #dashboard main section#collection .all {
    overflow-x: auto;
  }
  #dashboard main .items {
    overflow-x: auto;
  }
  #dashboard main .items .item {
    flex: 0 0 calc(100vw - 20px);
  }
  #dashboard main .items .item:hover {
    border-color: gray;
  }
  #dashboard main .items .item:hover .buttons {
    display: none !important;
  }
  #dashboard main .items .item:hover .pic .others {
    display: none !important;
  }
  #dashboard main section.list .header,
  #dashboard main .favorites-home .header,
  #dashboard main .history-home .header {
    grid-template-rows: repeat(2, auto);
    grid-template-columns: repeat(2, 1fr) auto 1fr;
    padding: 0 0 20px 0;
  }
  #dashboard main section.list .header h2,
  #dashboard main .favorites-home .header h2,
  #dashboard main .history-home .header h2 {
    grid-column-start: 1;
    grid-column-end: 4;
    font-size: 34px;
    margin: 0;
  }
  #dashboard main section.list .header button,
  #dashboard main section.list .header .page,
  #dashboard main .favorites-home .header button,
  #dashboard main .favorites-home .header .page,
  #dashboard main .history-home .header button,
  #dashboard main .history-home .header .page {
    display: none;
  }
  #dashboard main section.search {
    grid-template-areas: "list-header list-header" "list-result list-result";
  }
  #dashboard main section.search .filters {
    display: none;
  }
  #dashboard main section.search .filters.active {
    display: block;
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100%;
    background: white;
    padding: 40px;
    z-index: 10;
  }
  #dashboard main section.search .filters.active h2 {
    display: grid;
    grid-template-columns: 1fr 24px;
    gap: 20px;
    align-items: center;
    padding: 0 0 20px 0;
    margin: 0;
  }
  #dashboard main section.search .result .box-result {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, auto);
    gap: 14px;
  }
  #dashboard main section.search .result .box-result .view {
    grid-template-columns: auto 1fr;
    gap: 10px;
  }
  #dashboard main section.search .result .box-result .view .box-element.select {
    gap: 0 !important;
  }
  #dashboard main section.search .result .box-result .view button {
    display: none;
  }
  #dashboard main section.search .result .box-result .view .btn-filter-search {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 10px;
    border: 1px solid #ddd;
    align-items: center;
    padding: 10px 20px;
  }
  #dashboard main section.search .result .box-result .view .btn-filter-search i {
    width: 24px;
    height: 24px;
  }
  #dashboard main section.search .result .box-result .paginate span,
  #dashboard main section.search .result .box-result .paginate #box-limit-top-filter-search,
  #dashboard main section.search .result .box-result .paginate #box-limit-bottom-filter-search {
    display: none;
  }
  #dashboard main section.search .result .items {
    grid-template-columns: 1fr;
  }
  #dashboard main section.search .result .box-result:first-child .paginate,
  #dashboard main section.search .result .box-result:last-child .view {
    display: none;
  }
  #dashboard main section.search .not {
    display: grid;
    width: 100%;
    grid-area: list-result;
  }
  #dashboard main section.search .not .box img {
    width: 100%;
  }
  #dashboard footer {
    padding: 40px;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
  }
  #dashboard footer .follow {
    padding: 40px 0;
    grid-column-end: 1;
    flex-direction: column;
  }
  #dashboard .copy {
    padding: 20px 40px;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    gap: 20px;
  }
  #dashboard .copy p {
    text-align: center;
  }
  #dashboard .copy a {
    gap: 10px;
    justify-self: center;
  }
  #dashboard section#post .view {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 40px;
  }
  #btn-menu,
  #btn-filter-close {
    display: grid !important;
  }
  #btn-menu i,
  #btn-filter-close i {
    width: 24px;
    height: 24px;
  }
  .tooltip .text {
    display: none;
  }
  #cart {
    border-radius: 0 !important;
    width: 100% !important;
    height: 100vh;
    max-height: none;
    max-width: none;
    margin: 0;
    top: 0;
    left: 0;
  }
  #cart .list li {
    padding: 20px !important;
    grid-template-columns: 65px repeat(2, 1fr) 24px !important;
    grid-template-rows: repeat(2, auto);
    grid-template-areas: "cart-pic cart-name cart-name cart-remove" "cart-pic cart-quantity cart-price cart-price";
    gap: 15px !important;
  }
  #cart .list li img {
    grid-area: cart-pic;
  }
  #cart .list li .data {
    grid-area: cart-name;
  }
  #cart .list li .quantity {
    grid-area: cart-quantity;
    justify-content: left !important;
  }
  #cart .list li .quantity button {
    padding: 8px 10px !important;
  }
  #cart .list li .quantity input {
    padding: 8px 5px !important;
  }
  #cart .list li .price {
    grid-area: cart-price;
  }
  #cart .list li a.btn-remove {
    grid-area: cart-remove;
  }
  #cart .totals {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(2, auto);
    grid-template-areas: "totals-label totals-label" "totals-empty totals-finalize";
    column-gap: 10px;
    row-gap: 20px;
  }
  #cart .totals h2 {
    grid-area: totals-label;
    text-align: center;
  }
  #cart .totals .btn-empty {
    grid-area: totals-empty;
  }
  #cart .totals .btn-finalize {
    grid-area: totals-finalize;
  }
  #preview-cart {
    width: 100%;
    min-width: auto !important;
    bottom: 0 !important;
    left: 0;
  }
  #preview-cart .my-item {
    border-radius: 0 !important;
  }
}
#cart .box-shipping,
#checkout .box-shipping {
  background: rgba(42, 163, 107, 0.035);
  border: 1px solid green;
  margin: 10px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 24px auto;
  padding: 20px 10px;
  place-content: center;
  gap: 20px;
}
#cart .box-shipping i,
#checkout .box-shipping i {
  width: 24px;
  height: 24px;
}
#cart .box-shipping p,
#checkout .box-shipping p {
  margin: 0;
}

#checkout .box-shipping {
  margin: 20px 0;
}

#cart.shipping {
  grid-template-rows: repeat(2, auto) 1fr auto !important;
}

/*# sourceMappingURL=DashboardComponent.css.map */
