:root {
  --primary-transparent: #f3f3fe;
  --primary-color: #2126ee;
  --primary-background: #2126ee33;
  --red-color: #ff395a;
  --text-color: #171727;
  --text-secondary: #68699e;
  --border-color: #d5d5f3;
  --notification-color: #2124ee21;
  --bg-color: #f5f5fa;
}

/* Proxima Nova Regular */
@font-face {
  font-family: 'Proxima Nova';
  src: url('/wp-content/themes/nuggetsnews/fonts/Proxima Nova Reg.otf');
  font-weight: normal;
  font-style: normal;
}

/* Proxima Nova Black */
@font-face {
  font-family: 'Proxima Nova';
  src: url('/wp-content/themes/nuggetsnews/fonts/Proxima Nova Black.otf');
  font-weight: 800;
  font-style: normal;
}

/* Proxima Nova Bold */
@font-face {
  font-family: 'Proxima Nova';
  src: url('/wp-content/themes/nuggetsnews/fonts/Proxima Nova Bold.otf');
  font-weight: 700;
  font-style: normal;
}

/* Proxima Nova Light */
@font-face {
  font-family: 'Proxima Nova';
  src: url('/wp-content/themes/nuggetsnews/fonts/Proxima Nova Light.otf');
  font-weight: 300;
  font-style: normal;
}

/* Proxima Nova Semi-Bold */
@font-face {
  font-family: 'Proxima Nova';
  src: url('/wp-content/themes/nuggetsnews/fonts/Proxima Nova Sbold.otf');
  font-weight: 600;
  font-style: normal;
}

/* Proxima Nova Thin */
@font-face {
  font-family: 'Proxima Nova';
  src: url('/wp-content/themes/nuggetsnews/fonts/Proxima Nova Thin.otf');
  font-weight: 100;
  font-style: normal;
}

/* Proxima Nova Extra-Bold */
@font-face {
  font-family: 'Proxima Nova';
  src: url('/wp-content/themes/nuggetsnews/fonts/Proxima Nova Xbold.otf');
  font-weight: 800;
  font-style: normal;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-thumb {
  background-color: #999999;
  border-radius: 8px;
}

::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}

body {
  font-family: 'Proxima Nova', sans-serif;
}

main {
  background-color: var(--bg-color);
  width: calc(100% - 300px);
}

input[type='text'],
input[type='password'],
input[type='submit'],
input[type='email'],
input[type='tel'] {
  height: 65px;
}

input[type='text'],
input[type='search'],
input[type='password'],
input[type='submit'],
input[type='email'],
input[type='tel'] {
  color: var(--text-color);
  border-radius: 12px;
  padding: 12px;
  font-weight: 400;
  color: var(--text-color);
  outline: none;
  border: 1px solid var(--border-color);
}

input::selection,
textarea::selection {
  background-color: var(--primary-color);
  color: white;
}

input:focus {
  border: 1px solid var(--primary-color);
}

textarea {
  resize: none;
  font-weight: 400;
}

select:focus {
  outline: 1px solid var(--primary-color);
  background-image: url('../images/icon/dropdown-active.svg');
}

a {
  text-decoration: none;
  word-wrap: break-word;
}

.text-primary {
  color: var(--primary-color) !important;
}

.btn-primary {
  background-color: var(--primary-color) !important;
}

.btn-dark:hover {
  background-color: var(--primary-color);
}

.sidebar {
  height: 100vh;
  width: 300px;
  padding: 35px 0 20px 0;
}

.sidebar-logo {
  width: 172px;
  height: 54px;
}

.sidebar .nav-link {
  color: var(--text-color);
  font-size: 14px;
  padding: 14px 9px;
}

.sidebar-footer .user-info {
  background-color: var(--bg-color);
  padding: 14px 20px;
  border-radius: 10px;
}

.nav-link.active {
  border-radius: 8px;
  color: var(--primary-color);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  margin-top: -3px;
  right: 0;
  height: 44px;
  border: 1px solid var(--primary-color);
}

.sidebar .nav-link:hover {
  background-color: var(--primary-transparent);
  border-radius: 8px;
  color: var(--primary-color);
}

.sidebar-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  overflow-x: hidden;
  overflow-y: auto;
}

.nav-link .notification {
  padding: 2px 6px;
  width: 28px;
  display: flex;
  justify-content: center;
  border-radius: 12px;
  background-color: var(--notification-color);
  color: var(--primary-color);
  font-size: 12px;
}

.user-text {
  font-size: 14px;
}

.top-dashboard {
  height: 78px;
}

#dashBoardTopRightMenu {
  gap: 20px;
}

#notification-button:hover #notification-icon path {
  stroke: var(--primary-color);
}

#notification-button {
  padding: 0;
  flex-grow: 0;
  max-height: 33px;
}

#dashBoardTopRightMenu .user-avatar {
  margin: auto;
  flex-grow: 0;
  flex-basis: 48px;
}

#dashBoardTopRightMenu .user-avatar {
  border-radius: 50%;
  position: relative;
}

#dashBoardTopRightMenu .user-avatar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--primary-color);
  opacity: 0; /* Opacity awal overlay */
  transition: opacity 0.3s ease; /* Transisi opacity saat overlay berubah */
}

#dashBoardTopRightMenu .user-avatar:hover::after {
  opacity: 0.2;
  border: 1px solid var(--primary-color);
}

.dashboard-title {
  color: var(--text-color);
  font-size: 24px;
  margin-bottom: 0;
}

.dashboard-welcome {
  font-weight: 700;
  font-size: 34px;
  padding: 0 20px;
}

@media screen and (max-width: 576px) {
  .dashboard-welcome {
    font-size: 28px;
    padding: 0;
  }
}

.dashboard-description {
  margin-bottom: 14px;
  padding: 0 20px;
}

.dashboard-subtitle {
  font-size: 22px;
}

@media screen and (max-width: 576px) {
  .dashboard-description {
    padding: 0;
  }

  .dashboard-description .dashboard-subtitle {
    font-size: 18px;
  }
}

.dashboard-button-right {
  gap: 10px;
}

.card.card-post {
  border-radius: 20px;
  padding: 6px 40px 20px 20px;
}

@media screen and (max-width: 640px) {
  .card.card-post {
    padding-right: 20px;
  }
}

.post-content {
  max-width: 940px;
}

.post-author {
  font-size: 16px;
}

.post-date {
  font-size: 14px;
  color: var(--text-color);
}

.post-title {
  font-size: 34px;
  font-weight: 700;
}

.post-author-img {
  height: 50px;
  width: 50px;
}

.post-thumbnail {
  border-radius: 12px;
}

.filter-button {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  height: 34px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.login-form-container {
  width: 356px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.login-background .bluestuff1 {
  top: 73%;
  left: 56%;
  z-index: 0;
}

.login-background .bluestuff2 {
  top: 32%;
  left: 70%;
  z-index: 0;
}

.login-background .bluestuff3 {
  top: 51%;
  left: 17%;
  z-index: 0;
}

.login-form-container img {
  width: 232px;
}

.login-form-container #loginform label {
  margin: 12px 12px;
  font-size: 14px;
}

.login-form-container .login-remember label {
  display: flex !important;
  gap: 10px;
  align-items: center;
  font-size: 12px !important;
}

.login-form-container .login-remember input {
  width: 20px;
  height: 20px;
  border-radius: 8px;
  border: 1px solid var(--primary-color);
}

#pmpro_login {
  margin-bottom: 0;
}

#pmpro_login .pmpro_card.pmpro_login_wrap #loginform .login-username input,
.login-password input,
.login-submit input {
  width: 100%;
  max-width: 100% !important;
}

#pmpro_login
  .pmpro_card.pmpro_login_wrap
  #loginform
  .login-username
  input:focus,
#pmpro_login
  .pmpro_card.pmpro_login_wrap
  #loginform
  .login-password
  input:focus,
#pmpro_login .pmpro_card.pmpro_lost_password_wrap input:focus {
  border: 1px solid var(--primary-color);
  box-shadow: none;
}

#pmpro_login .pmpro_card.pmpro_login_wrap #loginform .login-password {
  position: relative;
}

#pmpro_login
  .pmpro_card.pmpro_login_wrap
  #loginform
  .login-password
  .pmpro_form_field-password-toggle-state {
  display: none;
}

#pmpro_login
  .pmpro_card.pmpro_login_wrap
  #loginform
  .login-password
  .pmpro_form_field-password-toggle {
  position: absolute;
  right: 10px;
  top: 50px;
}

#pmpro_login
  .pmpro_card.pmpro_login_wrap
  #loginform
  .login-password
  .pmpro_form_field-password-toggle
  .pmpro_btn.pmpro_btn-plain
  svg {
  stroke: var(--text-color);
}

#pmpro_login
  .pmpro_card.pmpro_login_wrap
  #loginform
  .login-password
  .pmpro_form_field-password-toggle
  .pmpro_btn.pmpro_btn-plain:active,
#pmpro_login
  .pmpro_card.pmpro_login_wrap
  #loginform
  .login-password
  .pmpro_form_field-password-toggle
  .pmpro_btn.pmpro_btn-plain:focus {
  box-shadow: none;
}

#pmpro_login .pmpro_card.pmpro_login_wrap #loginform .login-submit input {
  background-color: var(--text-color);
  color: white;
}

#pmpro_login .pmpro_card.pmpro_login_wrap #loginform .login-submit input:hover {
  background-color: var(--primary-color);
}

#pmpro_login
  .pmpro_card.pmpro_lost_password_wrap
  .pmpro_form_submit
  .pmpro_btn-submit {
  width: 100%;
  background-color: var(--text-color);
  color: white;
}

#pmpro_login
  .pmpro_card.pmpro_lost_password_wrap
  .pmpro_form_submit
  .pmpro_btn-submit:hover {
  background-color: var(--primary-color);
}

.login-form-container .sign-up-btn {
  background-color: var(--text-color);
  color: white;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 12px;
  font-weight: 600;
}

.login-form-container .sign-up-btn:hover {
  background-color: var(--primary-color);
}

.pmpro_card.pmpro_login_wrap,
.pmpro_card.pmpro_lost_password_wrap {
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.pmpro_card.pmpro_login_wrap .pmpro_card_content,
.pmpro_card.pmpro_lost_password_wrap .pmpro_card_content {
  padding: 0;
}

.pmpro_card.pmpro_login_wrap .pmpro_card_actions,
.pmpro_card.pmpro_lost_password_wrap .pmpro_card_actions {
  background-color: transparent;
  padding-right: 0;
}

.pmpro_login_wrap hr {
  display: none;
}

.pmpro_actions_nav {
  text-align: right !important;
}

.pmpro_actions_nav a {
  color: var(--text-color) !important;
  font-weight: 600;
  text-align: right !important;
  font-size: 12px;
  margin-right: 12px;
}

#loginform label {
  margin: 6px 0;
}

.form-search {
  width: 100%;
}

.form-search input {
  font-size: 12px;
  width: 90px;
  background-image: url('../images/icon/search.svg');
  background-position: 10px 8px;
  padding-left: 37px;
  background-repeat: no-repeat;
  transition: width 0.5s ease-out;
}

@media screen and (max-width: 991px) {
  .form-search input {
    width: 100%;
  }
}

.form-search:focus-within input:focus {
  width: 100%;
  border: 1px solid var(--primary-color);
  transition: width 0.5s ease-in-out;
}

.form-search input:focus::placeholder {
  color: var(--primary-color);
}

.form-search input::placeholder {
  font-weight: 600;
  color: var(--text-color);
}

.form-search .icon-search {
  top: 12px;
}

input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-results-button,
input[type='search']::-webkit-search-results-decoration {
  display: none;
}

#close-button {
  display: none;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  cursor: pointer;
}

.avatar-icon {
  width: 100%;
  height: auto;
}

.tag-badge-main {
  background-color: var(--notification-color);
  border-radius: 12px;
  height: 24px;
  padding: 0 14px 0 14px;
  color: var(--primary-color);
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tag-badge-secondary {
  background-color: var(--primary-transparent);
  padding: 0 14px 0 14px;
  border-radius: 12px;
  height: 24px;
  color: #68699e;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#filterModal .title-input-filter {
  font-size: 18px;
  color: var(--primary-color);
  font-weight: 700;
}

#filterModal .content-input-filter {
  font-size: 16px;
  color: var(--text-color);
}

#filterModal select {
  height: 65px;
}

#filterModal button {
  height: 65px;
}

#filterModal .apply-filter {
  background-color: var(--text-color);
  color: #fff;
}

#filterModal .apply-filter:hover {
  background-color: var(--primary-color);
}

#load-more {
  background-color: var(--notification-color);
  color: var(--text-color);
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}

#load-more:hover {
  background-color: var(--primary-color);
  color: white;
}

#nuggets_viewpost {
  transition: all 0.2s ease-in-out;
}

#nuggets_viewpost:hover {
  background-color: var(--primary-color) !important;
}

.comment-form-title {
  margin: 27px 40px 27px 19px;
}

.comment_input {
  background-color: var(--primary-transparent);
  border-radius: 12px;
  padding: 20px 50px 19px 70px;
  min-height: 66px;
}

.comment_input:focus {
  outline: 1px solid var(--primary-color);
}

.comment_input::placeholder {
  font-weight: 400;
}

.comment-author-avatar {
  width: 40px;
  height: 40px;
}

.comment-date {
  font-size: 14px;
  color: var(--text-secondary);
}

.comment-form button:disabled {
  opacity: 1;
  border: none;
}

.comment-list-container {
  margin-top: 25px;
  padding: 0 20px 0 20px;
}

.load-more-comments {
  background-color: #d7d7ff;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  height: 52px;
  border-radius: 12px;
}

textarea::-webkit-scrollbar {
  width: 8px;
}

textarea::-webkit-scrollbar-thumb {
  background-color: var(--border-color);
  border-radius: 8px;
}

textarea::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}

select {
  /* menghilangkan default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  /* menambahkan icon custom */
  background-image: url('../images/icon/dropdown.svg');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 38px 24px; /* sesuaikan ukuran icon */
  padding-right: 30px; /* memberi jarak agar icon tidak tumpang tindih dengan text */
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 14px 14px;
}

.filter-modal {
  max-width: 402px;
}

.filter-modal .modal-content {
  border-radius: 20px;
}

#filterModal input[type='checkbox'] {
  width: 40px;
  height: 22px;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.modal-post-content {
  max-width: 800px;
}

.modal-post-thumbnail {
  width: 100%;
  border-radius: 12px;
  max-height: 378px;
  object-fit: cover;
}

.nuggets-viewpost-btn {
  padding: 20px 30px;
  border-radius: 12px;
  margin-top: 20px;
}

.modal-content {
  overflow-y: auto;
}

.modal-content.modal_post_popup {
  margin-top: 100px;
}

.modal-content.modal_post_popup .modal-header {
  display: block !important;
}

.modal-content.modal_post_popup #close-btn {
  z-index: 10;
}

@media screen and (max-width: 640px) {
  .modal-content.modal_post_popup {
    margin-top: 0px;
  }
}

.modal_post_popup {
  border-radius: 20px;
}

.modal_post_popup .avatar-img {
  width: 50px;
  height: 50px;
}

.modal.modal-post {
  --bs-modal-header-padding: 6px 20px 20px 20px;
}

.summary-content-title {
  font-weight: 600;
  font-size: 26px;
}

.summary-content-title ~ div p {
  margin-bottom: 0;
}

.post-container {
  display: grid;
  grid-template-columns: 66px auto;
  grid-template-rows: repeat(3, auto);
  grid-column-gap: 10px;
  grid-row-gap: 0px;
  width: 100%;
}

.post-container .post-author-container {
  grid-area: 1 / 1 / 2 / 3;
  background-color: #fff;
  position: sticky;
  top: 0px;
  padding: 14px 0;
  z-index: 10;
}

.post-container .clear-column {
  grid-area: 2 / 1 / 3 / 2;
}

.post-container .the-content {
  grid-area: 2 / 2 / 3 / 3;
  padding-right: 20px;
}

.modal-content .post-container .the-content {
  max-width: 662px;
}

@media screen and (max-width: 640px) {
  .post-container .the-content {
    padding-right: 0;
  }
}

.post-container .the-comments {
  grid-area: 3 / 1 / 4 / 3;
}

@media screen and (max-width: 640px) {
  .post-container {
    display: block;
  }

  .post-container .post-author-modal {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
  }
}

.reaction-container {
  gap: 28px;
}

.btn-reactions {
  padding: 8px;
  border-radius: 50%;
  background-color: var(--primary-transparent);
}

.btn-comment:hover {
  background-color: #17172715;
}

.btn-reactions ~ span {
  font-weight: 600;
}

.dislike-count {
  color: var(--red-color);
}

.like-count {
  color: var(--primary-color);
}

.btn-love {
  color: var(--primary-color);
}

.btn-love:hover {
  background-color: #2126ee15;
}

.btn-dislike {
  color: var(--red-color);
}

.btn-dislike:hover {
  background-color: #ff395a15;
}

.single-post-container {
  margin-top: 58px;
}

.single-title-container {
  margin-top: 25px;
  margin-bottom: 18px;
  margin-left: 20px;
  gap: 10px;
}

@media screen and (max-width: 576px) {
  .single-post-container {
    margin-top: 22px;
  }

  .single-title-container {
    margin-top: 22px;
  }
}

.single-post-content {
  max-width: 800px;
}

.single-post-title {
  font-size: 22px;
  margin-bottom: 0;
}

.single-post-card {
  border-radius: 20px;
  background-color: #fff;
  padding: 20px 30px;
}

.single-featured-image {
  height: 260px;
  object-fit: cover;
}

.single-content {
  padding: 30px 0;
}

/* close icon hover */
#close-btn:hover svg #line-hover {
  stroke: var(--primary-color);
}

/* filter button hover */
.filter-button:hover svg #line-hover {
  stroke: var(--primary-color);
}

.filter-button:hover {
  color: var(--primary-color);
  border: 1px solid var(--border-color);
}

.filter-button::after {
  content: 'Filter';
  margin-left: 5px;
  display: block;
}

/* info button hover */
.info-button:hover svg #line-hover {
  stroke: var(--primary-color) !important;
}

.portfolio-row {
  --bs-gutter-y: 30px;
  --bs-gutter-x: 10px;
}

.card-portfolio {
  background-color: #fff;
  border-radius: 20px;
}

.card-portfolio-featured {
  height: 172px;
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
}

.portfolio-featured {
  height: 260px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.portfolio-card-body {
  padding: 20px 30px;
}

.portfolio-card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 34px;
}

.portfolio-date {
  font-size: 14px;
  color: var(--text-secondary);
}

.portfolio-date b {
  color: var(--primary-color);
  font-weight: 600;
}

.portfolio-meta-data p {
  margin-bottom: 20px;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .portfolio-card-body {
    padding: 20px 10px;
  }

  .portfolio-card-body h2,
  .portfolio-meta-data,
  .portfolio-content {
    padding: 0 10px;
  }
}

.community-card {
  padding: 35px 30px;
  background-color: #fff;
  border-radius: 20px;
}

/* One on one */
.one_on_one-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
}

.one_on_one-card .row {
  margin-bottom: 20px;
}

.one_on_one-description {
  color: var(--text-color);
  font-size: 16px;
  margin-bottom: 50px;
}

.one_on_one-card label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 14px;
  margin-left: 10px;
}

.one_on_one-card input[type='text'] {
  display: block;
  width: 100%;
  padding: 20px;
}

.one_on_one-card select {
  padding: 20px;
}

.one_on_one-card input::placeholder {
  font-weight: 400;
}

.one_on_one-card .form-check {
  font-size: 12px;
}

.one_on_one-card .form-check input {
  height: 20px;
  width: 20px;
  border-radius: 8px;
  margin-right: 10px;
}

.form-check-inline {
  min-width: 298px;
}

.form-check-inline label {
  margin-bottom: 0;
  margin-top: 3px;
}

.one_on_one-card button {
  padding: 14px 82px;
  font-weight: 600;
  margin-top: 20px;
  border-radius: 12px;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background-color: var(--text-color);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  z-index: 9999;
}

.scroll-to-top:hover {
  background-color: var(--primary-color);
}

.scroll-to-top svg {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.breadcrumb-item a {
  color: var(--text-color);
  font-weight: 500;
}

.education-video-container {
  padding: 20px 0;
}

.video-container {
  margin: auto;
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.video-container iframe {
  position: absolute;
  border-radius: 12px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.education-featured-container {
  width: 100%;
  height: auto;
}

.education-featured-image {
  border-radius: 12px;
}

@media screen and (min-width: 768px) {
  .education-info {
    padding: 0 25px;
  }
}

.education_info-educator {
  color: var(--text-secondary);
  font-size: 16px;
}

.education_additional-video-length {
  font-size: 14px;
  color: var(--text-secondary);
}
.education_additional-date {
  font-size: 14px;
  color: var(--text-secondary);
}

@media screen and (min-width: 768px) {
  .education-categories {
    padding-left: 25px;
  }
  .education_additional {
    padding: 0 25px;
  }
}

.education_info-educator b,
.education_additional-video-length b,
.education_additional-date b {
  color: var(--primary-color);
  font-weight: 600;
  margin-left: 12px;
}

.education_info-video-length {
  font-size: 14px;
}

.difficulty {
  font-weight: 600;
  width: 98px;
  height: 40px;
  border-radius: 12px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.beginner {
  background-color: #00b4e63f;
  color: #00b5e6;
}

.intermediate {
  background-color: #892bdc38;
  color: #882bdc;
}

.advanced {
  background-color: #ff730036;
  color: #ff7400;
}

/* education card style */
.education-featured {
  height: 172px;
  width: 100%;
  object-fit: cover;
}

.education-card-body {
  padding: 16px 10px 0px 10px;
}

.education-card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 34px;
}

.education-date {
  font-size: 14px;
  color: var(--text-secondary);
}

.education-date b {
  color: var(--primary-color);
}

.education-meta-data {
  margin-left: 30px;
}

.card-difficulty {
  font-weight: 600;
  padding: 0 14px 0 14px;
  height: 24px;
  border-radius: 12px;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-education {
  padding: 25px 9px;
}

.card-education .education_info-educator {
  font-size: 14px;
  margin-top: 26px;
  margin-bottom: 12px;
}

.search-container {
  position: relative;
  display: flex;
  justify-content: end;
  flex-grow: 4;
}

.search-results-popup {
  border-radius: 20px;
  border: 1px solid var(--primary-color);
  width: 600px;
  max-height: 508px;
  position: absolute;
  top: 80px;
  right: 0;
  display: none;
  z-index: 999;
  overflow-y: auto;
}

.search-results-popup.show {
  display: block;
}

@media screen and (max-width: 991px) {
  .search-results-popup {
    right: 0;
    width: 100%;
  }
}

.search-header {
  border-bottom: 1px solid var(--border-color);
  padding: 20px;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-color);
}

.search-content {
  padding: 15px 30px;
}

.search-content:hover {
  background-color: var(--primary-transparent);
}

.search-content h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-color);
}

.search_content-date {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.search_content-description {
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 0;
}

.search-badge {
  background-color: var(--notification-color);
  color: var(--primary-color);
  border-radius: 12px;
  height: 24px;
  min-width: 68px;
  padding: 0 4px 0 4px;
  justify-content: center;
  align-items: center;
  display: flex;
  font-size: 12px;
  font-weight: 600;
}

.search-footer {
  text-align: center;
  padding: 0 0 20px 0;
  position: sticky;
  bottom: 0;
}

.search-footer button {
  height: 52px;
  width: 134px;
  border-radius: 12px;
}

.community-button a {
  padding: 16px 40px;
}

.community-list {
  margin-left: 0;
  padding-left: 17px;
  line-height: 24px;
  margin-bottom: 38px;
}

.community-title {
  margin-bottom: 35px;
}

.card {
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}

.card-hover:hover {
  border: 1px solid var(--primary-color) !important;
}

.account-card {
  background-color: white;
  border-radius: 20px;
  padding: 30px;
}

.account-head-container {
  display: flex;
  align-items: center;
  gap: 30px;
}

.account-head-avatar img {
  border-radius: 50%;
  height: 100px;
  width: 100px;
}

.account-head-name {
  font-size: 24px;
  font-weight: 700;
}

.account-head .tab-container-desktop {
  display: flex;
  gap: 10px;
}

.account-head .tab-container-mobile {
  display: none;
}

.account-head .tab {
  padding: 0px 15px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  background-color: transparent;
  border: transparent;
  border-radius: 12px;
  height: 52px;
  margin-top: 30px;
}

.account-head .tab:hover {
  background-color: var(--primary-transparent);
}

.account-head .tab.active {
  background-color: var(--text-color);
  color: white;
}

.account-head .tab.active:hover {
  background-color: var(--primary-color);
}

.account-head .upgrade-vip-btn {
  background-color: var(--primary-color);
  color: #fff;
  padding: 15px 30px;
  border-radius: 12px;
  display: inline-block;
  margin-top: 16px;
}

.avatar-camera-icon {
  background-color: white;
  border-radius: 50%;
  position: absolute;
  right: -4px;
  bottom: 0px;
  padding: 7px;
  border: 1px solid var(--primary-color);
}

.account-head-avatar:hover .avatar-camera-icon {
  background-color: var(--primary-color);
}

.account-head-avatar:hover .avatar-camera-icon svg #iconStroke {
  stroke: #fff !important;
}

.pmpro_member_profile_edit-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 767px) {
  .pmpro_member_profile_edit-fields {
    grid-template-columns: 1fr;
  }

  form.pmpro_form input[type='text'].input,
  form.pmpro_form input[type='password'].input,
  form.pmpro_form input[type='email'].input,
  .pmpro_login_wrap form#loginform input[type='text'].input,
  .pmpro_login_wrap form#loginform input[type='password'].input {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 524px) {
  .account-head-container {
    display: block;
    text-align: center;
  }

  .account-head .tab-container-desktop {
    display: none;
  }

  .account-head .tab-container-mobile {
    display: block;
  }

  .account-head select {
    height: 65px;
  }

  .submit-bug {
    flex-direction: column;
  }

  .submit-bug label,
  .submit-bug button[type='submit'] {
    width: 100% !important;
  }
}

.pmpro_member_profile_edit-field label {
  font-size: 14px !important;
  margin-left: 10px !important;
  margin-bottom: 12px !important;
}

.pmpro_member_profile_edit-field input {
  width: 100%;
}

.pmpro_submit input[type='submit'] {
  background-color: var(--text-color);
  color: white;
  font-size: 14px;
  font-weight: 600;
  width: 209px;
}

.pmpro_submit input[type='submit']:hover {
  background-color: var(--primary-color);
}

.pmpro_submit input[name='cancel'] {
  display: none;
}

.pmpro_submit hr {
  border-color: var(--border-color);
}

.tab-content .account-settings {
  display: none;
}

.tab-content .account-settings.active {
  display: block;
}

.tab-content .account-settings .order-details-table th,
.tab-content .account-settings .order-details-table td {
  padding: 10px;
}

.report-bug-form label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 14px;
  margin-left: 10px;
}

.report-bug-form input[type='text'],
textarea {
  display: block;
  width: 100%;
  padding: 20px;
}

.report-bug-form textarea {
  color: var(--text-color);
  border-radius: 12px;
  padding: 20px;
  color: var(--text-color);
  outline: none;
  border: 1px solid var(--border-color);
  overflow: hidden;
  min-height: 65px;
  line-height: 20px;
}

.report-bug-form .upload-image-button {
  height: 52px;
  width: 180px;
  border-radius: 12px;
  background-color: #d7d7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
  margin-left: 0px;
  cursor: pointer;
}

.report-bug-form .report-bug-form input::placeholder {
  font-weight: 400;
}

.report-bug-form button[type='submit'] {
  font-weight: 600;
  border-radius: 12px;
  text-align: center;
  width: 180px;
  height: 52px;
}

.report-bug-form .image-upload-indicator {
  margin: 0 20px;
}

.report-bug-form .progress-container {
  background-color: var(--primary-transparent);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
}

.report-bug-form span {
  flex-shrink: 0;
  color: var(--primary-color);
  margin-right: 20px;
  font-size: 16px;
  font-weight: 500;
}

.report-bug-form .progress-bar {
  background-color: var(--primary-color);
}

#successBugReport .modal-header,
#successBugReport .modal-body {
  border: none !important;
}

#successBugReport .modal-content {
  max-width: 402px;
  min-height: 409px;
  border-radius: 20px;
  padding: 30px;
  margin-inline: auto;
}

#successBugReport h5 {
  font-size: 34px;
  text-align: center;
  margin-bottom: 12px;
}

#successBugReport button {
  width: 180px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

#basic-user-avatar-form input[name='manage_avatar_submit'] {
  background-color: var(--text-color);
  border-radius: 12px;
  padding: 16px 38px;
  color: #fff;
  float: right;
}

#basic-user-avatar-form input[name='basic-user-avatar-erase'],
#basic-user-avatar-form label,
#basic-user-avatar-form .description {
  display: none;
}

#basic-user-avatar-form img {
  width: 100% !important;
  height: auto !important;
}

.modal-edit-avatar {
  border-radius: 20px;
}

.modal-edit-avatar .modal-footer {
  border: 0;
}

.modal-edit-avatar .modal-footer button {
  height: 52px;
  width: 108px;
  font-weight: 600;
}

.preview {
  overflow: hidden;
  width: 160px;
  height: 160px;
  margin: 10px;
  border: 1px solid red;
}

img {
  display: block;
  max-width: 100%;
}

.icon-circle {
  right: 4px;
  top: 6px;
}

#modal-notifications {
  position: absolute;
  width: 380px;
  max-height: 553px;
  border: 1px solid var(--primary-color);
  border-radius: 20px;
  background-color: #fff;
  top: 80px;
  right: 98px;
  padding: 16px 0 0 0;
  display: none;
}

@media screen and (max-width: 500px) {
  #modal-notifications {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 400px) {
  #modal-notifications {
    width: calc(100% - 20px);
  }
}

#modal-notifications::-webkit-scrollbar {
  width: 0px;
}

#modal-notifications.show {
  display: block;
}

#modal-notifications .modal-header {
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 16px 20px;
  border-bottom: 1px solid var(--border-color);
}

#modal-notifications .modal-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0;
}

#modal-notifications .modal-header span {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
}

#modal-notifications .modal-content {
  padding: 10px 10px 0 10px;
  overflow-y: auto;
  max-height: 410px;
}

#modal-notifications .content-notification {
  display: flex;
  align-items: center;
  padding: 12px 12px 12px 20px;
  gap: 10px;
  border-radius: 10px;
}

#modal-content .content-notification .unread-circle {
  min-width: 18px;
}

#modal-notifications .content-notification:hover {
  background-color: var(--primary-transparent);
}

#modal-notifications .content-notification img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

#modal-notifications .content-notification .the-content {
  max-width: 219px;
}

#modal-notifications .content-notification p {
  margin-bottom: 6px;
  font-size: 16px;
}

#modal-notifications .content-notification span {
  color: var(--primary-color);
  font-size: 14px;
}

#modal-notifications .modal-content .dropdown-item {
  white-space: normal;
}

#modal-notifications .view-notifications {
  position: sticky;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  padding: 16px;
  border-radius: 12px;
  max-width: 134px;
}

#notification-page {
  border-radius: 20px;
}

#notification-page .notification-body {
  padding: 12px 10px;
}

#notification-page .notification-content {
  padding: 11px 20px;
  border-radius: 10px;
  justify-content: space-between;
  color: var(--text-color);
}

#notification-page .notification-content:hover {
  background-color: var(--primary-transparent);
}

#notification-page .author-profile {
  height: 60px;
  width: 60px;
  border-radius: 50%;
}

#notification-page .notification-description {
  margin-bottom: 6px;
}

#notification-page .timestamp {
  color: var(--primary-color);
  font-size: 14px;
}

.custom-email-notifications-form {
  max-width: 362px;
  margin-top: 20px;
}
.notification-settings__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}

.notification-btn {
  width: 180px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

/* Style for registration page */

.pmpro_checkout-field input {
  width: 100%;
}

.pmpro_checkout-field #ExpirationMonth,
#ExpirationYear {
  width: 50%;
}

.pmpro_asterisk {
  color: var(--red-color);
  display: inline-block;
}

.pmpro_change_password_wrap input {
  width: 100%;
}

#archive-results .archive-body {
  padding: 12px 10px;
}

#archive-results .archive-content {
  padding: 11px 20px;
  border-radius: 10px;
  justify-content: space-between;
  color: var(--text-color);
}

.archive-content:hover {
  background-color: var(--primary-transparent);
}

.archive-content h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.archive_content-date {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.archive_content-description {
  font-size: 14px;
  margin-bottom: 0;
}

.archive-badge {
  background-color: var(--notification-color);
  color: var(--primary-color);
  border-radius: 12px;
  height: 24px;
  min-width: 68px;
  padding: 0 4px 0 4px;
  justify-content: center;
  align-items: center;
  display: flex;
  font-size: 12px;
  font-weight: 600;
}

/* Styling for portfolio page */

.chart-info .chart-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px 20px 10px 10px;
  border-radius: 10px;
}

@media screen and (max-width: 576px) {
  .chart-info .chart-info-row {
    padding: 10px;
  }
}

.chart-info .chart-info-row:hover {
  background-color: var(--primary-transparent);
}

.chart-info .token {
  display: flex;
  align-items: center;
  gap: 20px;
}

.chart-info p {
  margin-bottom: 0;
}

.chart-info .token-logo {
  border-radius: 50%;
  height: 60px;
  width: 60px;
}

.chart-info .token-info span {
  color: var(--text-secondary);
}

.chart-info .token-info p:nth-child(2) {
  font-size: 14px;
}

.chart-info .token-info:nth-child(2) span {
  color: var(--text-secondary);
}

.chart-info .token-amount {
  text-align: end;
}

.chart-info .token-amount p:nth-child(2) {
  color: var(--primary-color);
  font-weight: 600;
}

.chart-info .token-amount p:nth-child(1) {
  color: var(--text-color);
  font-weight: 500;
  font-size: 14px;
}

@media screen and (max-width: 576px) {
  .chart-info .token-logo {
    height: 50px;
    width: 50px;
  }

  .chart-info .token {
    gap: 10px;
  }

  .chart-container {
    margin-top: 30px;
  }

  .chart-info .token-amount p:first-child {
    color: var(--text-secondary);
  }
}

.team-container .grid {
  display: grid;
  grid-template-columns: repeat(3, 280px);
  grid-gap: 10px;
}

@media screen and (max-width: 768px) {
  .team-container .grid {
    grid-template-columns: repeat(2, auto);
  }
}

.team-card {
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  padding: 20px 0;
}

@media screen and (min-width: 769px) {
  .team-card {
    aspect-ratio: 1/1;
  }
}

.team-card:hover {
  border: 1px solid var(--primary-color);
}

.team-card img {
  border-radius: 50%;
  width: 160px;
  height: 160px;
  object-fit: cover;
}

@media screen and (max-width: 576px) {
  .team-container .grid {
    grid-template-columns: 100%;
  }
}

.team-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 16px;
  line-height: 32px;
  margin-bottom: 0;
}

.team-card span {
  font-size: 16px;
  font-weight: 400;
}

.team-modal .modal-content {
  border-radius: 20px;
  padding: 30px;
  min-width: 700px;
  overflow-y: auto;
}

@media screen and (max-width: 700px) {
  .team-modal .modal-content {
    min-width: 100%;
  }
}

.team-modal .modal-title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}

.team-modal .modal-title img {
  border-radius: 50%;
  width: 160px;
  height: 160px;
  object-fit: cover;
}

.team-modal .modal-title .author-header h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0;
}

.team-modal .modal-title .author-header p {
  margin-bottom: 0;
}

.team-modal .modal-title .author-header .social-logo {
  margin-top: 30px;
  display: flex;
  gap: 10px;
}

@media screen and (max-width: 575px) {
  .team-modal .modal-title .author-header .social-logo {
    justify-content: center;
  }
}

.team-modal .author-summary h5,
.team-modal .crypto-speciality h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.team-modal .author-summary p,
.team-modal .crypto-speciality p {
  margin-bottom: 20px;
}

@media screen and (max-width: 576px) {
  .team-modal .modal-title {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .team-modal .modal-content {
    padding: 66px 20px 50px 20px;
  }

  .team-modal .modal-title .author-header h4,
  .team-modal .modal-title .author-header p,
  .team-modal .author-summary h5,
  .team-modal .crypto-speciality h5,
  .team-modal .author-summary p,
  .team-modal .crypto-speciality p {
    text-align: center;
  }

  .team-modal .author-summary h5,
  .team-modal .crypto-speciality h5 {
    margin-bottom: 20px;
  }

  .team-modal .author-summary p,
  .team-modal .crypto-speciality p {
    margin-bottom: 30px;
  }

  .team-modal .modal-title .author-header .social-logo {
    margin-top: 26px;
  }
}

.request-project-btn {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
}

.request-project-btn:hover {
  border: 1px solid var(--border-color);
  color: var(--primary-color);
}

.request-project-modal {
  justify-content: center;
}

.request-project-modal .modal-content {
  max-width: 402px;
  border-radius: 20px;
}

.request-project-modal .modal-header {
  padding: 20px;
}

.request-project-modal .modal-body {
  padding: 24px 20px 30px 20px;
}

.request-project-modal .modal-header h3 {
  font-size: 22px;
  font-weight: 700;
}

.request-project-modal .modal-body > p {
  margin-bottom: 30px;
}

.request-project-modal .modal-body label {
  font-size: 14px;
  font-weight: 600;
  margin-left: 10px;
  display: block;
  margin-bottom: 14px;
}

.request-project-modal .request-project-form input {
  margin-bottom: 20px;
  width: 100%;
}

.request-project-modal .request-project-form textarea {
  border-radius: 12px;
  border: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.request-project-modal .request-project-form textarea:focus {
  border: 1px solid var(--primary-color);
  outline: none;
}

.request-project-modal .request-project-form button {
  display: block;
  height: 52px;
  width: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
}

.request-project-modal .request-project-form .notification {
  text-align: center;
  color: var(--red-color);
}

#successRequestProject .modal-dialog {
  justify-content: center;
}

#successRequestProject .modal-content {
  max-width: 336px;
  border-radius: 20px;
}

#successRequestProject .modal-content .modal-body {
  padding: 42px 18px 30px 18px;
  display: flex;
  flex-direction: column;
}

#successRequestProject .modal-body h5 {
  font-size: 34px;
  line-height: 44px;
  margin-bottom: 14px;
}

#successRequestProject .modal-body p {
  max-width: 250px;
  align-self: center;
}

#successRequestProject .modal-body img {
  height: 207px;
  width: 199px;
  align-self: center;
}

#successRequestProject .modal-body button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 52px;
  border-radius: 12px;
}

.wc-block-components-form
  .wc-block-components-text-input.is-active
  input[type='text'] {
  color: var(--text-color);
  padding: 12px;
  font-weight: 400;
  outline: none;
  border: 1px solid var(--border-color);
  border-radius: 12px;
}

.wc-block-components-form
  .wc-block-components-text-input.is-active
  input[type='text']:focus {
  border: 1px solid var(--primary-color);
}

.wc-block-components-form
  .wc-block-components-combobox
  .wc-block-components-combobox-control
  input.components-combobox-control__input,
.wc-block-components-form
  .wc-block-components-combobox
  .wc-block-components-combobox-control
  input.components-combobox-control__input {
  color: var(--text-color);
  padding: 12px;
  font-weight: 400;
  outline: none;
  border: 1px solid var(--border-color);
  border-radius: 12px;
}

.wc-block-checkout__actions_row .components-button {
  background-color: var(--text-color);
  color: white;
  border-radius: 12px;
  border: none;
  padding: 12px;
}

.wc-block-checkout__actions_row .components-button:hover {
  background-color: var(--primary-color);
}

/* check-out page */
.woocommerce .customer_register {
  max-width: calc(700px - 48px);
  text-align: center;
}

.woocommerce .customer_register h2 {
  font-size: 50px;
  font-weight: 700;
  color: var(--primary-color);
}

.woocommerce .customer_register .register-info {
  font-size: 20px;
}

.woocommerce .customer_register .register-join-info {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 20px;
}

.woocommerce .customer_register .woocommerce-privacy-policy-text {
  text-align: center;
  font-size: 14px;
}

.woocommerce .customer_register .woocommerce-form-register {
  border: none;
  padding: 0;
  margin: 0;
}

.woocommerce .customer_register .step-2 {
  display: none;
}

.woocommerce .customer_register .create-account-title {
  font-size: 24px;
  color: var(--primary-color);
  font-weight: 700;
}

.woocommerce .customer_register .create-account-info {
  font-size: 18px;
}

.woocommerce button.sign-up-button {
  background-color: var(--text-color);
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  padding: 18px 30px;
  min-width: 300px;
  margin: 20px auto;
  display: block;
}

.woocommerce button.sign-up-button.loading {
  pointer-events: none;
  opacity: 0.6;
}

.woocommerce button.woocommerce-button.woocommerce-form-register__submit {
  background-color: var(--text-color);
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  padding: 18px 30px;
  min-width: 300px;
  margin: 20px auto;
  display: none;
}

.woocommerce
  form.woocommerce-form-register
  .password-input
  .show-password-input {
  top: auto;
}

.woocommerce form.woocommerce-form-register .woocommerce-form-row label {
  font-weight: 600;
  margin-left: 10px;
}

.woocommerce button.woocommerce-button.woocommerce-form-register__submit:hover,
.woocommerce button.sign-up-button:hover {
  background-color: var(--primary-color);
}

[data-block-name='woocommerce/classic-shortcode'] {
  max-width: 560px;
}

.woocommerce-checkout .woocommerce-additional-fields h3 {
  display: none;
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
  float: none;
  width: 100%;
}

.woocommerce-checkout label {
  font-weight: 600;
  margin-left: 12px;
}

.woocommerce-checkout label .italic {
  font-style: italic;
  font-weight: 400;
}

.woocommerce-checkout .optional {
  display: none;
}

.woocommerce-checkout h3 {
  font-weight: 700;
}

.woocommerce-checkout #order_review_heading {
  display: none;
}

.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table {
  display: none;
}

.woocommerce-checkout #billing_first_name_field,
.woocommerce-checkout #billing_last_name_field {
  float: none;
  width: 100%;
}

.woocommerce-checkout .woocommerce-checkout-payment #place_order {
  width: 100%;
  background-color: var(--text-color);
  color: #fff;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 12px;
  font-weight: 600;
}

.woocommerce-checkout .woocommerce-checkout-payment #place_order:hover {
  background-color: var(--primary-color);
}

.woocommerce-checkout p.form-row {
  padding-left: 0;
}

.woocommerce-checkout #no_facebook_field .woocommerce-input-wrapper .checkbox {
  display: flex;
  align-items: center;
}

.woocommerce-checkout .woocommerce-input-wrapper input[type='checkbox'] {
  width: 20px;
  height: 20px;
  border-radius: 8px;
  border: 1px solid var(--primary-color);
}

.woocommerce-checkout .fb_member_access_info {
  margin-bottom: 12px;
  margin-left: 12px;
  font-weight: 600;
}

.woocommerce-checkout .woocommerce-checkout-payment .payment_method_coinbase {
  display: flex;
  flex-wrap: wrap;
}

.woocommerce-checkout
  .woocommerce-checkout-payment
  .payment_method_coinbase
  label {
  display: flex;
}

form.woocommerce-ResetPassword .woocommerce-Button {
  background-color: var(--text-color);
  color: #fff;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  font-weight: 600;
  padding: 12px 45px;
}

form.woocommerce-ResetPassword .woocommerce-Button:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* form register */
.woocommerce form .form-row .input-text,
.woocommerce form .form-row select {
  color: var(--text-color);
  border-radius: 12px;
  padding: 12px;
  font-weight: 400;
  outline: none;
  border: 1px solid var(--border-color);
  box-shadow: none;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  min-height: auto;
  outline: none;
}

.woocommerce form .form-row .input-text:focus,
.woocommerce form .form-row select:focus {
  border: 1px solid var(--primary-color);
}

.woocommerce
  form.woocommerce-form-register
  .password-input
  .show-password-input {
  top: 50%;
  transform: translateY(-50%);
}

.woocommerce form .show-password-input::after,
.woocommerce-page form .show-password-input::after {
  margin-top: 0;
}

/* thank you page */
.woocommerce-order .order-again .button {
  padding: 12px 45px;
  font-weight: 600;
  border-radius: 12px;
  background-color: var(--text-color);
  color: #fff;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.woocommerce-order .order-again .button:hover {
  background-color: var(--primary-color);
  color: #fff;
}

li.wc_payment_method.payment_method_depay_wc_payments label,
li.wc_payment_method.payment_method_stripe label {
  display: inline-flex;
  align-items: center;
}

/* modal for join membership */
.membershipModal .custom-modal-width {
  max-width: 800px;
}

#membershipVipModal .custom-modal-width {
  max-width: var(--bs-modal-width);
}

#membershipVipModal .vip-card {
  flex-basis: 100%;
}

.membershipModal .modal-content {
  padding: 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .membershipModal .modal-content {
    flex-direction: column;
  }
}

.membershipModal .limited-slot {
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 30px;
}

.membershipModal .lifetime-card {
  background-color: rgba(0, 13, 67, 1);
  border-radius: 20px;
  padding: 40px 30px 50px 30px;
  color: white;
  flex-basis: 50%;
}

.membershipModal .vip-card {
  background-color: rgba(0, 13, 67, 1);
  border-radius: 20px;
  padding: 40px 30px 50px 30px;
  flex-basis: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(32, 39, 229, 0.3) 100%
  );
  border: 1px solid rgba(33, 38, 238, 0.3);
  color: rgba(24, 33, 47, 1);
}

.membershipModal .header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.membershipModal .call-to-action {
  border-radius: 50px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2);
  font-weight: 500;
  font-size: 16px;
  padding: 20px 51px;
}

.membershipModal .lifetime-card .call-to-action {
  background-color: #fafbfd;
  color: rgba(33, 38, 238, 1);
  transition: all 0.3s ease-in-out;
}

.membershipModal .lifetime-card .call-to-action:hover,
.membershipModal .vip-card .call-to-action:hover {
  background-color: rgba(33, 38, 238, 1);
  color: #fafbfd;
}

.membershipModal .vip-card .call-to-action {
  background-color: rgba(0, 13, 67, 1);
  color: rgba(15, 223, 255, 1);
  transition: all 0.3s ease-in-out;
}

.membershipModal .lifetime-card .blue-light {
  color: #66dcfb;
}

.membershipModal .vip-card .blue-primary {
  color: #2027e5;
}

.membershipModal .lifetime-card .font-xsmall {
  font-size: 10px;
  font-weight: 700;
}

.membershipModal .lifetime-card h3,
.vip-card h3 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 4px;
}

.membershipModal .lifetime-card .number-join {
  font-size: 16px;
  font-weight: 500;
}

.membershipModal .plan {
  padding: 10px 0 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.membershipModal .plan h6 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}

.membershipModal .plan .price {
  font-size: 12px;
  font-weight: 500;
  margin-top: -14px;
  margin-bottom: -14px;
}

.membershipModal .plan .price strong {
  font-size: 60px;
}

.membershipModal .plan .access {
  display: flex;
  gap: 10px;
  font-weight: 700;
  margin-bottom: 20px;
}

.membershipModal .plan .access del {
  color: #ff0000;
  font-size: 16px;
}

.membershipModal .body h6 {
  font-size: 13px;
  font-weight: 700;
}

.membershipModal .body .benefits {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.membershipModal .body .benefits li {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  gap: 30px;
  align-items: center;
}

.membershipModal .body .benefits li .checklist-wrapper {
  width: 30px;
  height: 30px;
  background-color: rgba(33, 38, 238, 1);
  border-radius: 50%;
  color: rgba(15, 223, 255, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.join-member-wrapper {
  padding: 0 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 576px) {
  .join-member-wrapper {
    padding: 0;
  }
}

.join-member-wrapper .cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.join-member-wrapper .cta p {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.join-member-wrapper .cta button {
  padding: 12px 30px;
  font-weight: 500;
  border-radius: 12px;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 14px;
  border: none;
  transition: all 0.3s ease-in-out;
}

.join-member-wrapper .cta button:hover {
  background-color: rgba(15, 223, 255, 1);
  color: rgba(0, 13, 67, 1);
}

@media screen and (max-width: 640px) {
  .join-member-wrapper .cta button {
    width: 100%;
    margin-top: 10px;
    padding: 20px 18px;
    font-size: 16px;
  }
}

@media screen and (max-width: 470px) {
  .join-member-wrapper .cta p {
    font-size: 4.2vw;
  }
}

.join-member-wrapper .join-member-banner {
  border-radius: 20px;
  cursor: pointer;
}

form.woocommerce-form .g-recaptcha {
  display: flex;
  justify-content: center;
}

.pmpro_form_submit .pmpro_btn-submit-update-profile {
  background-color: var(--text-color);
}

.pmpro_form_submit .pmpro_btn-submit-update-profile:hover {
  background-color: var(--primary-color);
}
