* {
  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;
}

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

.art-work {
  background-color: #fff;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}
.art-work img {
  border: 30px solid #fff;
  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;
  gap: 40px;
  flex-wrap: wrap;
  background-color: #f2f2f2;
  padding: 30px;
  align-items: flex-start;
}

.art-info-container {
  padding: 0 30px 30px 30px;
  display: flex;
  flex-direction: column;
}

.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;
}

@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;
}/*# sourceMappingURL=style.css.map */