.account-wrapper {
  background: var(--color-background-white);
  padding: 40px 20px 64px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  color: var(--color-black);
}
.my-card {
  background: var(--color-white);
  border-radius: var(--radius-sm);
}
.my-card.light {
  background: var(--color-oja-light-blue);
}
.my-card img {
  border-radius: 5px;
}
.caption {
  display: block;
  font-size: 12px;
  margin-top: 8px;
}
.profile-name {
  padding: 10px 0px 25px;
}
.ms-p {
  padding: 0px 0px 32px;
}
.col-wrapper,
.grid-two {
  display: grid;
}
.ma-des .actions,
.links {
  display: flex;
}
.s-heading {
  padding-bottom: 32px;
}
.list-bullet {
  padding: 0px 0px 0px 25px;
  margin-top: 16px;
}
.list-bullet li {
  list-style: disc;
}
.notice-head {
  background-image: url('data:image/svg+xml,%3Csvg width="19" height="18" viewBox="0 0 19 18" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M9.35156 6.62891V9.62879" stroke="%23373737" stroke-width="1.5" stroke-linecap="round"/%3E%3Cpath d="M9.35156 12.6314V12.6211" stroke="%23373737" stroke-width="1.5" stroke-linecap="round"/%3E%3Cpath d="M7.60529 1.77867L1.00455 13.6599C0.263991 14.9929 1.22789 16.6311 2.7528 16.6311H15.9543C17.4791 16.6311 18.4431 14.9929 17.7025 13.6599L11.1017 1.77867C10.3398 0.407109 8.36726 0.407109 7.60529 1.77867Z" stroke="%23373737" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E');
  background-position: 0px 5px;
  background-repeat: no-repeat;
  padding: 0px 0px 0px 35px;
  margin-bottom: 16px;
}
.setting .form-container form {
  gap: 40px;
}
.setting .input-group .label {
  padding-bottom: 16px;
}

.top-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.collection {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 14px 16px;
  border-radius: 8px;
  margin-bottom: 10px;
  background: var(--color-background-white, #FAF9F7);
}
.collection p {       
  margin-top: 4px;
}
.collection.highlight {
  background: #fff;
  border: 1px solid #ddd;
}
.pagination {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: end;
  gap: 30px;
  margin-top: 32px;
}
.pagination .prev:not(:disabled),
.pagination .next:not(:disabled) {
  color: var(--color-oja-blue);
}

.pagination .prev:not(:disabled):hover,
.pagination .next:not(:disabled):hover {
  color: var(--color-oja-turquoise);
}

.pagination .page-numbers {
  line-height: 32px;
}

@media only screen and (min-width: 1025px) {
  .account-wrapper {
    padding: 64px 100px 80px;
    margin-bottom: 40px;
  }
  .my-card {
    padding: 40px;
  }
  .col-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
  }
  .setting .col-wrapper {
    grid-template-columns: 1fr 1.5fr;
  }
  .links {
    gap: 60px;
  }
}
@media only screen and (min-width: 768px) {
  .grid-two {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .contribution-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .ma-des {
    gap: 80px;
  }
  .ma-des .actions {
    gap: 32px;
  }
  .ma-heading, .ma-des {
    padding: 0px 0px 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .my-card {
    padding: 30px;
  }
  .ma-des {
    flex-direction: column;
    gap: 32px;
  }
  .ma-des .actions {
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }
  .links {
    gap: 24px;
    margin-top: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .account-page .container {
    padding: 0;
  }
  .col-wrapper,
  .grid-two {
    gap: 64px;
  }
  .ma-heading, .ma-des {
    padding: 0px 0px 24px;
  }
}