* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  cursor: pointer;
}

body {
  font-family: "Poppins", sans-serif;
}

p {
  font-size: 14px;
}

h2 {
  font-weight: normal;
  font-size: 36px;
  margin-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px;
}

.content-wrapper {
  overflow-y: auto;
  padding-top: 30px;
  background-color: #f2f2f2;
}

.rs-logo img {
  position: relative;
  top: 5px;
}

.art-styles {
  display: none;
  text-transform:uppercase;
  font-size: 11px;
  color: #666;
  > span {
    padding: 0 10px;
    border-right: 1px solid #999;
    &:last-child {
      border: none;
    }
  }
}
.art-work {
  background-color: #fff;
  border: 1px solid #e4e3e3;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2);
}
.art-work img {
  margin: 0 auto;
  width: 100%;
}
.art-work.landscape-mode > img {
  max-width: 550px;
}
.art-work.portrait-mode > img {
  max-width: 300px;
}

.section-container {
  margin-bottom: 50px;
}

.bookmark-arts {
  display: flex;
}

.arts-container {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  align-items: flex-start;
  justify-content: center;
  gap: 35px;
  border-bottom: 1px solid #ddd;
}

.art-info-container {
  padding: 30px;
  display: flex;
  flex-direction: column;
  background-color: #f9f9f9;
  display: none;
}

.metadata-key {
  font-weight: 400;
}

.metadata-value {
  font-size: 16px;
}

.bold {
  font-weight: 400;
}

.status-available {
  color: green;
  position: relative;
}
.status-available::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: green;
  border-radius: 50%;
  top: 6px;
  right: -16px;
}

.status-sold {
  color: red;
  position: relative;
}
.status-sold::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: red;
  border-radius: 50%;
  top: 6px;
  right: -16px;
}

.price {
  background-color: rgb(243, 4, 28);
  color: #fff;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 400;
  padding: 2px 6px;
}

.faq-wrapper {
  padding: 20px;
  margin: 0 auto;
  max-width: 900px;
}

.faq-qa {
  margin-bottom: 60px;
}
.faq-qa ul {
  margin-top: 10px;
  list-style: decimal;
  margin-left: 20px;
  margin-bottom: 30px;
  font-weight: 400;
}
.faq-qa li {
  padding-bottom: 10px;
}
.faq-qa h3 {
  margin-bottom: 10px;
}
.faq-qa table {
  margin-top: 10px;
}
.faq-qa td {
  border: 1px solid #ddd;
  width: 300px;
  padding: 10px;
}
.faq-qa th {
  text-align: left;
  border: 1px solid #ddd;
  padding: 10px;
}

.faq-qa-section {
  margin-bottom: 30px;
}

.art-pricong-faq {
  margin-bottom: 40px;
}

.newart-note {
  background-color: rgb(216, 231, 249);
  padding: 20px;
  font-weight: 400;
  display: none;
}

@media only screen and (max-width: 600px) {
  .art-work.portrait-mode > img, .art-work.landscape-mode > img {
    max-width: 100% !important;
  }
  .newart-note {
    display: none;
  }
}
.test {
  border: 2px solid red;
}

.intro {
  padding: 20px;
  max-width: 960px;
  margin: 50px auto;
}
.intro a {
  color: #5E40E0;
}

.intro-txt {
  margin-bottom: 20px;
}

.gallery-link {
  text-align: center;
}

.auto-scroll-images {
  border: 1px solid red;
}

.art-items-wrapper {
  width: 90%;
  max-width: 1536px;
  margin-inline: auto;
  position: relative;
  height: 250px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0));
          mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0));
}

@keyframes scrollLeft {
  to {
    left: -200px;
  }
}
.art-item {
  width: 200px;
  height: 250px;
  border-radius: 6px;
  position: absolute;
  left: max(1600px, 100%);
  animation-name: scrollLeft;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  border: 10px solid #222;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.3);
}

.art-item1 {
  animation-delay: -26.25s;
}

.art-item2 {
  animation-delay: -22.5s;
}

.art-item3 {
  animation-delay: -18.75s;
}

.art-item4 {
  animation-delay: -15s;
}

.art-item5 {
  animation-delay: -11.25s;
}

.art-item6 {
  animation-delay: -7.5s;
}

.art-item7 {
  animation-delay: -3.75s;
}

.art-item8 {
  animation-delay: 0s;
}/*# sourceMappingURL=style.css.map */