.portfolio-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}
.portfolio-modal form {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.portfolio-modal form button[type=submit] {
  width: 100%;
}
.portfolio-modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 500px;
  max-width: calc(100vw - 30px);
  position: relative;
  max-height: calc(100vh - 30px);
  overflow: auto;
  top: 15px;
  bottom: 15px;
}
.portfolio-modal-content.loading .portfolio_loader {
  display: flex;
}
.portfolio-modal-content.loading .portfolio_loader:before {
  z-index: 100;
  animation: spin 1s infinite;
}
.portfolio-modal-content .portfolio_loader {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 10;
}
.portfolio-modal-content .portfolio_loader .portfolio_loader_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.304);
}
.portfolio-modal-content .portfolio_loader:before, .portfolio-modal-content .portfolio_loader:after {
  content: "";
  position: absolute;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  width: 60px;
  height: 60px;
  border-radius: 100%;
  border: 5px solid transparent;
  border-top-color: #3498db;
  transform-origin: center center;
}
.portfolio-modal-content .portfolio_loader:after {
  border: 5px solid #fff;
}
.portfolio-modal .portfolio-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}
.portfolio-modal .portfolio-image-preview {
  position: relative;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
  width: 100%;
}
.portfolio-modal .portfolio-image-preview .preview_title_box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 40px;
  margin: 0 0 10px;
}
.portfolio-modal .portfolio-image-preview .preview_title_box a {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.portfolio-modal .portfolio-image-preview .preview_title_box h4 {
  margin: 0 !important;
}
.portfolio-modal .portfolio-image-preview .portfolio-remove {
  display: flex;
  justify-content: center;
  width: 20px;
  cursor: pointer;
  font-size: 20px;
  line-height: 20px;
  color: var(--bb-primary-button-background-regular);
  position: absolute;
  right: -10px;
  top: -10px;
  background: white;
  border-radius: 20px;
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1607843137);
}
.portfolio-modal .portfolio-image-preview img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1607843137);
}
.portfolio-modal .portfolio-dropzone {
  border: 2px dashed #91b0b3;
  color: #92b0b3;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  border-radius: 6px;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}
.portfolio-modal .portfolio-dropzone p {
  margin: 0;
}
.portfolio-modal .portfolio-dropzone p.hint {
  font-size: 13px;
  line-height: 18px;
  display: flex;
  margin: 10px 0 !important;
}
.portfolio-modal .portfolio-dropzone input {
  display: none;
}
.portfolio-modal .portfolio-dropzone.dragover, .portfolio-modal .portfolio-dropzone:hover {
  background: #ecf0f5;
}
.portfolio_title_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0 40px;
}
.portfolio_title_wrapper h2 {
  margin: 0 !important;
}
.portfolio_title_wrapper .portfolio_actions {
  display: flex;
  gap: 10px;
}
.portfolio_title_wrapper button#editPortfolio {
  background: #fff;
  color: #000;
  border: 1px solid #000;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
}
.portfolio_title_wrapper button#editPortfolio:hover {
  background: #000;
  color: #fff;
}
#portfolio_container {
  transition: opacity 0.3s, filter 0.3s;
}
#portfolio_container.loading {
  opacity: 0.5;
  filter: blur(3px);
  pointer-events: none;
}
#portfolio_container.editing_mode .portfolio-editing-wrapper {
  display: block;
}
#portfolio_container.editing_mode .portfolio_wrapper {
  display: none;
}
.portfolio_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0 20px;
}
.portfolio_wrapper .portfolio_item {
  display: flex;
  flex-direction: column;
  width: calc(50% - 5px);
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.portfolio_wrapper .portfolio_item:first-child {
  border: 2px dashed black;
  border-radius: 10px;
}
.portfolio_wrapper .portfolio_item:first-child .featured_project_image_title {
  margin: 10px;
}
.portfolio_wrapper .portfolio_item:first-child .featured_project_image_title span {
  display: block;
  font-size: 14px;
  line-height: 1.2em;
}
.portfolio_wrapper .portfolio_item img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.portfolio_wrapper .portfolio_item .portfolio_item_details_wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 15px;
  color: #fff;
  transition: transform 0.3s;
  z-index: 3;
}
.portfolio_wrapper .portfolio_item .portfolio_item_details_wrapper h3 {
  margin: 0;
  color: #fff;
}
.portfolio_wrapper .portfolio_item .portfolio_item_actions {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 15px;
  color: #fff;
  transform: translateY(-100%);
  transition: transform 0.3s;
}
.portfolio_wrapper .portfolio_item .portfolio_item_actions a {
  font-size: 30px;
}
.portfolio_wrapper .portfolio_item .portfolio_item_actions a:first-child {
  color: yellow;
}
.portfolio_wrapper .portfolio_item .portfolio_item_actions a.set_primary_portfolio_item:not(.is_primary) .bb-icon-f {
  display: none;
}
.portfolio_wrapper .portfolio_item .portfolio_item_actions a.set_primary_portfolio_item.is_primary .bb-icon-l {
  display: none;
}
.portfolio_wrapper .portfolio_item .image_wrapper {
  position: relative;
  overflow: hidden;
}
.portfolio_wrapper .portfolio_item:before {
  content: "";
  background: black;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.3s;
  aspect-ratio: 16/9;
  z-index: 2;
}
.portfolio_wrapper .portfolio_item:hover:before {
  opacity: 0.4;
}
.portfolio_wrapper .portfolio_item:hover .portfolio_item_actions {
  transform: translateY(0);
}
.portfolio_wrapper .portfolio_item:hover .portfolio_item_details_wrapper {
  transform: translateY(-100%);
}
@media screen and (max-width: 600px) {
  .portfolio_wrapper .portfolio_item {
    width: 100%;
  }
}
.portfolio-editing-wrapper {
  margin: 2em 0;
  padding: 0;
  display: none;
}
.portfolio-editing-wrapper h3 {
  margin-bottom: 1em;
  font-size: 1.3em;
  font-weight: 600;
  color: #222;
}
.portfolio-editing-wrapper .sortable-list {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}
.portfolio-editing-wrapper .portfolio-editing-list-item {
  display: flex;
  align-items: center;
  gap: 1.5em;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
  border: 1px solid #ddd;
  padding: 1em;
  transition: box-shadow 0.2s;
  position: relative;
}
.portfolio-editing-wrapper .portfolio-editing-list-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.portfolio-editing-wrapper .portfolio-editing-list-item .portfolio-editing-image {
  flex-shrink: 0;
  width: 200px;
  border-radius: 6px;
  overflow: hidden;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-editing-wrapper .portfolio-editing-list-item .portfolio-editing-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
.portfolio-editing-wrapper .portfolio-editing-list-item .portfolio-editing-fields {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  flex: 1;
}
.portfolio-editing-wrapper .portfolio-editing-list-item .portfolio-editing-fields label {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 0.2em;
}
.portfolio-editing-wrapper .portfolio-editing-list-item .portfolio-editing-fields input[type=text] {
  width: 100%;
  padding: 0.5em 0.7em;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1em;
  background: #fafbfc;
  transition: border 0.2s;
}
.portfolio-editing-wrapper .portfolio-editing-list-item .portfolio-editing-fields input[type=text]:focus {
  border: 1.5px solid #0073aa;
  outline: none;
  background: #fff;
}
.portfolio-editing-wrapper .portfolio-editing-list-item .remove_portfolio_item {
  font-size: 20px;
  color: red;
  cursor: pointer;
  transition: color 0.3s;
  position: absolute;
  right: 0px;
  top: 0;
  padding: 10px;
}
.portfolio-editing-wrapper .portfolio-editing-list-item .remove_portfolio_item:hover {
  color: #cc0000;
}
.portfolio-editing-wrapper .portfolio-editing-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 1em;
}
.portfolio-editing-wrapper .portfolio-editing-buttons #exit_editing_mode {
  background: transparent;
  color: #000;
  border: 1px solid #000;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
}
.portfolio-editing-wrapper .portfolio-editing-buttons #exit_editing_mode:hover {
  background: #000;
  color: #fff;
}
@media screen and (max-width: 600px) {
  .portfolio-editing-wrapper .portfolio-editing-list-item {
    flex-direction: column;
    padding: 5px;
    gap: 10px;
  }
  .portfolio-editing-wrapper .portfolio-editing-list-item .portfolio-editing-image {
    width: 100%;
  }
  .portfolio-editing-wrapper .portfolio-editing-list-item .portfolio-editing-fields {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.gfield.gfield--type-total,
.gfield.gfield--type-option,
.gfield.gfield--type-product {
  height: 0px;
  min-height: 0px;
  overflow: hidden;
  max-height: 0px;
  margin: 0;
  padding: 0;
}
.gfield.gfield--type-total legend,
.gfield.gfield--type-option legend,
.gfield.gfield--type-product legend {
  display: none;
}
.gform_ppcp_smart_payment_buttons {
  display: flex !important;
  width: 100%;
  margin: 0 !important;
  inline-size: 100% !important;
  max-width: -webkit-fill-available !important;
  max-width: -moz-available !important;
  max-width: fill-available !important;
  /* margin-inline: 0 !important; */
}
.gform-page-footer.gform_page_footer.top_label {
  width: 100%;
  max-width: 100%;
}
.medium.gform_ppcp_smart_payment_buttons {
  position: relative;
}
.medium.gform_ppcp_smart_payment_buttons:after {
  content: "Pay with Card, Bank Account or Paypal";
  position: absolute;
  left: 0;
  top: 0;
  background: #FF5846;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: white;
  z-index: 9999999;
  pointer-events: none;
  width: 100%;
  height: 100%;
  /* opacity: 0.5; */
  transition: all 0.3s;
}
.medium.gform_ppcp_smart_payment_buttons:hover:after {
  background: #cd2614;
}
.gform_wrapper input::-moz-placeholder, .gform_wrapper textarea::-moz-placeholder {
  color: rgb(116, 115, 115) !important;
  opacity: 1;
  /* for Firefox */
}
.gform_wrapper input::placeholder,
.gform_wrapper textarea::placeholder,
.gform_wrapper select.placeholder {
  color: rgb(116, 115, 115) !important;
  opacity: 1;
  /* for Firefox */
}
body.page-template-page-sign-up header,
body.page-template-page-sign-up footer {
  display: none !important;
}
body.page-template-page-sign-up input::placeholder,
body.page-template-page-sign-up .gform_wrapper textarea::placeholder,
body.page-template-page-sign-up .gform_wrapper input:-ms-input-placeholder,
body.page-template-page-sign-up .gform_wrapper textarea:-ms-input-placeholder,
body.page-template-page-sign-up .gform_wrapper input::-ms-input-placeholder,
body.page-template-page-sign-up input,
body.page-template-page-sign-up .gform_wrapper textarea::-ms-input-placeholder {
  color: red !important;
  font-size: 10px !important;
}
body.page-template-page-sign-up .site-content:not(.maintenance-content),
body.page-template-page-sign-up .site-header {
  padding: 0;
}
body.page-template-page-sign-up .container {
  width: 100%;
  max-width: 100%;
  padding: 0;
}
body.page-template-page-sign-up .custom_sign_up_template {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
body.page-template-page-sign-up .custom_sign_up_template .left_part {
  position: fixed;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  width: 50%;
  height: 100vh;
  color: #fff;
  background: linear-gradient(360deg, #FF5846 0%, rgba(50, 76, 175, 0.79) 45.67%, rgba(63, 46, 168, 0.87) 77.4%);
}
body.page-template-page-sign-up .custom_sign_up_template .left_part .part_1,
body.page-template-page-sign-up .custom_sign_up_template .left_part .part_2 {
  padding: 100px 46px;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  transition: transform 0.5s, opacity 0.3s;
}
body.page-template-page-sign-up .custom_sign_up_template .left_part .part_1 {
  max-width: 100%;
}
body.page-template-page-sign-up .custom_sign_up_template .left_part .part_2 {
  opacity: 0;
}
body.page-template-page-sign-up .custom_sign_up_template .left_part:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.6s;
  z-index: 0;
  background-image: url(/wp-content/themes/buddyboss-theme-child/assets/icons/noise.svg);
  background-size: cover;
}
body.page-template-page-sign-up .custom_sign_up_template .left_part:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: linear-gradient(360deg, #D986BA 0%, rgba(70, 153, 142, 0.79) 14.42%, rgba(0, 60, 30, 0.87) 44.71%);
  transition: opacity 0.6s;
  z-index: 0;
}
body.page-template-page-sign-up .custom_sign_up_template .left_part * {
  position: relative;
  z-index: 1;
}
body.page-template-page-sign-up .custom_sign_up_template .left_part h1,
body.page-template-page-sign-up .custom_sign_up_template .left_part h2,
body.page-template-page-sign-up .custom_sign_up_template .left_part h3,
body.page-template-page-sign-up .custom_sign_up_template .left_part h4,
body.page-template-page-sign-up .custom_sign_up_template .left_part h5,
body.page-template-page-sign-up .custom_sign_up_template .left_part h6 {
  color: #fff;
}
body.page-template-page-sign-up .custom_sign_up_template .left_part.active:before {
  opacity: 0;
}
body.page-template-page-sign-up .custom_sign_up_template .left_part.active:after {
  opacity: 1;
}
body.page-template-page-sign-up .custom_sign_up_template .left_part.active .part_1,
body.page-template-page-sign-up .custom_sign_up_template .left_part.active .part_2 {
  transform: translateY(-100%);
}
body.page-template-page-sign-up .custom_sign_up_template .left_part.active .part_1 {
  opacity: 0;
}
body.page-template-page-sign-up .custom_sign_up_template .left_part.active .part_2 {
  opacity: 1;
}
body.page-template-page-sign-up .custom_sign_up_template .left_part h1,
body.page-template-page-sign-up .custom_sign_up_template .left_part h2 {
  font-size: 57px;
  line-height: 1.2;
  text-transform: uppercase;
}
body.page-template-page-sign-up .custom_sign_up_template .left_part p,
body.page-template-page-sign-up .custom_sign_up_template .left_part li,
body.page-template-page-sign-up .custom_sign_up_template .left_part a {
  font-size: 18px;
  line-height: 1.1;
  font-family: "AG Medium";
}
body.page-template-page-sign-up .custom_sign_up_template .left_part p strong,
body.page-template-page-sign-up .custom_sign_up_template .left_part p b,
body.page-template-page-sign-up .custom_sign_up_template .left_part li strong,
body.page-template-page-sign-up .custom_sign_up_template .left_part li b,
body.page-template-page-sign-up .custom_sign_up_template .left_part a strong,
body.page-template-page-sign-up .custom_sign_up_template .left_part a b {
  font-size: 24px;
  font-weight: 500;
}
body.page-template-page-sign-up .custom_sign_up_template .right_part {
  position: relative;
  width: 50%;
  margin-left: auto;
  padding: 42px 20px;
  min-height: 100vh;
  align-content: center;
}
body.page-template-page-sign-up .custom_sign_up_template .right_part .right_part_container {
  max-width: min(600px, 50vw - 40px);
  width: 100%;
  margin: 0 auto;
}
body.page-template-page-sign-up .custom_sign_up_template .right_part img#logo_pdc,
body.page-template-page-sign-up .custom_sign_up_template .right_part img#logo_pd360 {
  margin-bottom: 15px;
}
body.page-template-page-sign-up .custom_sign_up_template .right_part .gform_confirmation_message {
  margin-top: 80px;
}
body.page-template-page-sign-up .custom_sign_up_template .right_part .gform_confirmation_message h1 {
  margin-bottom: 12px;
}
@media (max-width: 1250px) and (min-width: 992px) {
  body.page-template-page-sign-up .custom_sign_up_template .left_part h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 992px) {
  body.page-template-page-sign-up .custom_sign_up_template {
    flex-direction: column;
  }
  body.page-template-page-sign-up .custom_sign_up_template .left_part {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  body.page-template-page-sign-up .custom_sign_up_template .left_part .part_1,
  body.page-template-page-sign-up .custom_sign_up_template .left_part .part_2 {
    min-width: 100%;
    min-height: auto;
  }
  body.page-template-page-sign-up .custom_sign_up_template .left_part .part_2 {
    position: relative;
    top: 0;
    min-height: auto;
  }
  body.page-template-page-sign-up .custom_sign_up_template .left_part.active .part_1,
  body.page-template-page-sign-up .custom_sign_up_template .left_part.active .part_2 {
    transform: translateX(-100%);
  }
  body.page-template-page-sign-up .custom_sign_up_template .right_part {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  body.page-template-page-sign-up .custom_sign_up_template .right_part .right_part_container {
    max-width: 100%;
  }
}
@media screen and (max-width: 600px) {
  body.page-template-page-sign-up .custom_sign_up_template .left_part .part_1,
  body.page-template-page-sign-up .custom_sign_up_template .left_part .part_2 {
    padding: 80px 20px;
  }
  body.page-template-page-sign-up .custom_sign_up_template .left_part .part_1 h1,
  body.page-template-page-sign-up .custom_sign_up_template .left_part .part_2 h1 {
    font-size: 34px;
  }
}
.gform_heading {
  display: none;
}
.pd360_file_upload div[id^=live_validation_message] {
  display: none !important;
}
.gform-theme--foundation .gform_fields {
  row-gap: 14px;
}
.gform-theme--foundation .gform_page_footer {
  flex-wrap: nowrap;
}
.gform-theme--foundation .gfield {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.gform-theme--foundation .gfield.singup_now_button {
  margin-top: 12px;
}
.gform-theme--foundation .gfield .large {
  padding-top: 0;
  padding-bottom: 0;
}
.gform-theme--foundation .gfield .gfield_description {
  margin-left: auto;
}
.gform-theme--foundation .gfield .ginput_container {
  flex: 1 100%;
}
.gform-theme--foundation .gfield .ginput_container .gfield-choice-input {
  position: absolute;
}
.gform-theme--foundation .gfield .ginput_container .gfield_checkbox input[type=checkbox] + label {
  margin-left: 0px;
  padding-left: 30px;
  text-indent: -30px;
}
.gform-theme--foundation .gfield .ginput_container .gfield_checkbox input[type=checkbox] + label:before {
  background: #ffffff;
  border-color: #010101;
}
.gform-theme--foundation .gfield .ginput_container .gfield_checkbox input[type=checkbox] + label a {
  color: #7a7a7a;
  line-height: 1.5;
}
.gform-theme--foundation .gfield .ginput_container .gfield_checkbox input[type=checkbox]:checked + label:before {
  background: #ff5846;
  border-color: #ff5846;
}
.gform-theme--foundation .gfield .ginput_container .gfield_checkbox input[type=checkbox]:checked + label:after {
  left: 33px;
}
.gform-theme--foundation .gfield .gf_multi_submit {
  width: 100%;
}
.gform-theme--foundation .gfield .gf_multi_submit #custom_submit_profile {
  background: #ffffff;
  border: 1px solid #010101;
  color: #010101;
  width: 100%;
  transition: all 0.3s ease-in;
}
.gform-theme--foundation .gfield .gf_multi_submit #custom_submit_profile:hover {
  background-color: var(--bb-primary-button-background-hover);
  color: var(--bb-primary-button-text-hover);
  border-color: var(--bb-primary-button-border-hover);
}
.gform-theme--foundation .gfield .gf_before_buttons {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 12px;
  line-height: 1.4;
  margin: 24px 0;
}
.gform-theme--foundation .gfield .gf_before_buttons .gf_before_buttons__text {
  font-size: clamp(0.875rem, 0.8295rem + 0.1942vw, 1.0625rem);
}
@media (max-width: 450px) {
  .gform-theme--foundation .gfield .gf_before_buttons {
    flex-wrap: wrap;
  }
}
.gform-theme--foundation .gform_next_button {
  flex: 1 100%;
}
.gform-theme--foundation .gfield--type-fileupload {
  align-items: flex-start;
  gap: 12px;
}
.gform-theme--foundation .gfield--type-fileupload.project_image .ginput_container.ginput_container_fileupload {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  max-width: 100%;
  aspect-ratio: 16/9;
}
.gform-theme--foundation .gfield--type-fileupload.project_image .ginput_container.ginput_container_fileupload:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("../../icons/file-form.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
}
.gform-theme--foundation .gfield--type-fileupload.project_image .ginput_container.ginput_container_fileupload:before input[type=file] {
  width: 100%;
  height: 100%;
}
.gform-theme--foundation .gfield--type-fileupload.project_image .ginput_container.ginput_container_fileupload input[type=file] {
  width: 100%;
  height: 100%;
}
.gform-theme--foundation .gfield--type-fileupload .gfield_label {
  flex: 1 100%;
  order: 1;
}
.gform-theme--foundation .gfield--type-fileupload .gfield_description {
  flex: 1 260px;
  order: 3;
  margin-left: 0px;
  max-width: calc(100% - 100px);
}
.gform-theme--foundation .gfield--type-fileupload .ginput_preview_list {
  display: none;
}
.gform-theme--foundation .gfield--type-fileupload .ginput_container {
  flex: 1 40px;
  order: 2;
}
.gform-theme--foundation .gfield--type-fileupload .ginput_container .gform_fileupload_rules {
  display: none;
}
.gform-theme--foundation .gfield--type-fileupload .ginput_container.ginput_container_fileupload {
  position: relative;
  max-width: 80px;
  overflow: hidden;
}
.gform-theme--foundation .gfield--type-fileupload .ginput_container.ginput_container_fileupload:before {
  content: "";
  width: 80px;
  height: 80px;
  top: 0;
  left: 0;
  background: url("../../icons/file.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
}
.gform-theme--foundation .gfield--type-fileupload .ginput_container.ginput_container_fileupload.uploaded:before {
  opacity: 0;
}
.gform-theme--foundation .gfield--type-fileupload .ginput_container input[type=file] {
  color: var(--bb-primary-color);
  background-color: transparent;
  border: 2px dashed hsl(225, 6%, 88%);
  width: 80px;
  text-align: center;
  display: inline-block;
  float: none;
  cursor: pointer;
  position: relative;
  opacity: 1;
  z-index: 1;
  height: 80px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0;
}
.gform-theme--foundation .gfield--type-fileupload .ginput_container input[type=file]::-webkit-file-upload-button {
  visibility: hidden;
  width: 0px;
}
.gform-theme--foundation .gfield--type-fileupload .ginput_container label {
  display: none;
}
.gform-theme--foundation .gfield--type-fileupload .gfield_validation_message {
  flex: 1 100% !important;
}
.gf-subscription-choice-grid {
  display: flex;
  gap: 0;
  border-radius: 0;
  width: 100%;
  margin: 0;
}
.gf-subscription-choice-grid .membership_level_item {
  flex: 1 1 0;
  border: 1px solid #222;
  border-radius: 0;
  margin: 20px 0;
  padding: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: box-shadow 0.2s;
  box-shadow: none;
  min-width: 0;
  position: relative;
}
.gf-subscription-choice-grid .membership_level_item:first-child {
  border-right: 0px;
}
.gf-subscription-choice-grid .membership_level_item:last-child {
  border-left: 0px;
}
.gf-subscription-choice-grid .membership_level_item input[type=radio] {
  accent-color: #222;
  margin-right: 8px;
  margin-top: 0;
  margin-bottom: 0;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}
.gf-subscription-choice-grid .membership_level_item input[type=radio]:checked:before {
  background: #FF5846;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.gf-subscription-choice-grid .membership_level_item .membership_level_inner {
  padding: 14px 14px 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.gf-subscription-choice-grid .membership_level_item .membership_level_inner .membership_level_header {
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gf-subscription-choice-grid .membership_level_item .membership_level_inner .membership_level_header .membership_level_title {
  font-size: 15px;
  line-height: 18px;
  margin-left: 26px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #000000;
}
.gf-subscription-choice-grid .membership_level_item .membership_level_inner .membership_level_price {
  font-style: normal;
  font-weight: 600;
  font-size: 24.4759px;
  line-height: 31px;
  /* identical to box height */
  letter-spacing: -0.01em;
  /* Text/Primary Dark */
  color: #000000;
}
.gf-subscription-choice-grid .membership_level_item .membership_level_inner .membership_level_description {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.01em;
  color: #000000;
  margin-top: 49px;
}
.gf-subscription-choice-grid .membership_level_item .membership_level_inner .discounted_price {
  margin-bottom: 8px;
  font-size: 16px;
  color: #222;
  font-weight: 400;
}
.gf-subscription-choice-grid .membership_level_item .membership_level_inner .discounted_price s {
  color: #888;
  font-size: 16px;
  margin-right: 2px;
}
.gf-subscription-choice-grid .membership_level_item .membership_level_inner .discounted_price .discount_text {
  font-size: 13px;
  color: #625D5D;
  margin-top: 2px;
}
@media (max-width: 900px) {
  .gf-subscription-choice-grid {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .gf-subscription-choice-grid .membership_level_item {
    margin: 0;
  }
  .gf-subscription-choice-grid .membership_level_item:last-child {
    border: 1px solid #222;
    border-top: none;
  }
  .gf-subscription-choice-grid .membership_level_item:first-child {
    border: 1px solid #222;
    border-bottom: none;
  }
  .gf-subscription-choice-grid .membership_level_item:nth-child(2) {
    border: 1px solid #222;
  }
}
.membership_levels2 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 500px;
  margin: 40px auto;
  gap: 20px;
}
.membership_levels2 .membership_level_item {
  display: flex;
  flex-direction: column;
  padding: 14px 15px 15px 36px;
  border: 1.5px solid black;
  border-radius: 5px;
  position: relative;
  width: calc(50% - 10px);
  gap: 0;
  cursor: pointer;
}
.membership_levels2 .membership_level_item .title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
}
.membership_levels2 .membership_level_item .price {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 0px;
}
.membership_levels2 .membership_level_item .price span {
  font-size: 24px;
}
.membership_levels2 .membership_level_item .discounted_price {
  font-size: 30px;
  font-weight: 500;
  color: rgba(98, 93, 93, 0.4705882353);
  margin-bottom: 20px;
}
.membership_levels2 .membership_level_item .discounted_price span {
  font-size: 14px;
}
.membership_levels2 .membership_level_item .discounted_price .discount_text {
  color: #000;
  font-size: 16px;
  font-weight: 400;
}
.membership_levels2 .membership_level_item .trial {
  color: #FF5846;
  font-size: 14px;
  line-height: 1.1em;
  font-weight: 500;
  margin-top: auto;
  margin-bottom: 5px;
}
.membership_levels2 .membership_level_item .try {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.1em;
  color: #535353;
}
.membership_levels2 .membership_level_item h3 {
  margin: 0;
}
.membership_levels2 .membership_level_item input {
  position: absolute;
  left: 9px;
  width: 18px;
  height: 18px;
  top: 18px;
}
@media screen and (max-width: 500px) {
  .membership_levels2 {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: scroll;
    margin: 20px -20px;
    width: calc(100% + 40px);
    padding: 0 20px;
  }
  .membership_levels2 .membership_level_item {
    min-height: 250px;
    width: 240px;
    max-width: 100%;
    min-width: 240px;
  }
}
body.registration .gform_fields {
  gap: 10px;
}
body.registration .ginput_complex {
  flex-direction: column;
}
body.registration .ginput_complex.ginput_container_name.gform-grid-row {
  flex-direction: column !important;
  align-items: stretch !important;
  row-gap: 0.5rem;
}
body.registration .ginput_complex.ginput_container_name .gform-grid-col {
  width: 100% !important;
}
body.registration input {
  width: 100% !important;
  inline-size: 100%;
}
#profile-review-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
#profile-review-modal .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  cursor: pointer;
}
#profile-review-modal .profile-review-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#profile-review-modal .profile-review-modal-header h2 {
  font-size: 24px;
  color: #fff;
}
#profile-review-modal .profile-review-modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  max-height: min(100vh - 40px, 700px);
  max-width: min(100vw - 40px, 1200px);
  z-index: 1000;
  background-color: #111111;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}
#profile-review-modal iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  #profile-review-modal .profile-review-modal-header {
    padding: 20px 20px 0;
    flex-direction: column;
    gap: 10px;
  }
  #profile-review-modal .profile-review-modal-header h2 {
    font-size: 18px;
    margin: 0;
  }
  #profile-review-modal .profile-review-modal-content {
    padding: 0;
    width: 100%;
    max-width: 100%;
  }
}
.bp-forum-settings {
  display: none !important;
}
/*
* FORUM PAGE
*/
.post-type-archive-forum .content-area .forum .entry-content {
  display: flex;
  flex-direction: column-reverse;
}
.bs-forums-banner .bs-search-form {
  border-color: #010101 !important;
}
.bs-forums-banner .bs-search-form input[type=text] {
  color: #010101;
}
.bs-forums-banner .bs-search-form input[type=text]::-moz-placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.bs-forums-banner .bs-search-form input[type=text]::placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.bs-forums-banner .bs-search-form .search-form_reset {
  color: #010101;
}
#bbp-search-form #bbp_search_submit {
  display: flex !important;
  left: 5px;
  top: 50%;
  transform: translate(0px, -50%);
}
.bbp-forum-form .bbp-the-content-wrapper .medium-editor-element {
  border: 1px solid var(--bb-content-border-color);
  border-radius: var(--bb-input-radius);
  padding: 10px 10px 0;
  font-size: 15px;
}
.bbp-forum-form .bbp-the-content-wrapper .medium-editor-element:focus, .bbp-forum-form .bbp-the-content-wrapper .medium-editor-element:focus-visible, .bbp-forum-form .bbp-the-content-wrapper .medium-editor-element:focus-within {
  outline: 0;
  background-color: var(--bb-content-background-color);
  box-shadow: var(--bb-input-focus-shadow);
  border-color: var(--bb-input-focus-border-color);
}
.bbp-forum-form .bbp-form .bbp-submit-wrapper .button.submit {
  min-width: 150px;
  margin-left: 0px;
}
.medium-editor-toolbar ul.medium-editor-toolbar-actions {
  opacity: 1 !important;
  background: #ebebeb;
  border-radius: 20px;
}
.medium-editor-toolbar ul.medium-editor-toolbar-actions li button.medium-editor-action:hover {
  background-color: transparent;
}
.medium-editor-toolbar ul.medium-editor-toolbar-actions li button.medium-editor-action:hover b:before {
  color: #010101;
}
.medium-editor-toolbar ul.medium-editor-toolbar-actions li .medium-editor-button-active {
  background-color: transparent;
}
.medium-editor-toolbar ul.medium-editor-toolbar-actions li .medium-editor-action-pre {
  padding: 0px;
}
/*
* EVENTS ARCHIVE
*/
.post-type-archive-tribe_events * {
  font-family: "AG Normal";
}
.post-type-archive-tribe_events .tribe-common .tribe-common-c-btn-border {
  border-color: #ff5846;
  color: #010101;
  line-height: 1.3;
  font-family: "AG Normal";
}
.post-type-archive-tribe_events .tribe-common .tribe-common-c-btn-border:hover {
  background: #ff5846;
}
/*
* EVENTS SINGLE
*/
.single-tribe_events * {
  font-family: "AG Normal";
}
.single-tribe_events .tribe-common .tribe-events-c-subscribe-dropdown {
  margin: 0px;
  margin-top: 24px;
}
.single-tribe_events .tribe-common .tribe-events-c-subscribe-dropdown .tribe-common-c-btn-border {
  line-height: 1.3;
  font-family: "AG Normal";
  background-color: var(--bb-primary-button-background-regular);
  color: var(--bb-primary-button-text-regular);
  border: 1px solid var(--bb-primary-button-border-regular);
  border-radius: var(--bb-button-radius);
  font-weight: inherit;
  font-style: inherit;
  padding: 8px 20px;
}
.single-tribe_events .tribe-common .tribe-events-c-subscribe-dropdown .tribe-common-c-btn-border button:hover, .single-tribe_events .tribe-common .tribe-events-c-subscribe-dropdown .tribe-common-c-btn-border button:focus, .single-tribe_events .tribe-common .tribe-events-c-subscribe-dropdown .tribe-common-c-btn-border button:focus-within {
  outline: none;
}
.single-tribe_events .tribe-common .tribe-events-c-subscribe-dropdown .tribe-common-c-btn-border:hover, .single-tribe_events .tribe-common .tribe-events-c-subscribe-dropdown .tribe-common-c-btn-border:focus, .single-tribe_events .tribe-common .tribe-events-c-subscribe-dropdown .tribe-common-c-btn-border:focus-within {
  background-color: var(--bb-primary-button-background-hover);
  color: var(--bb-primary-button-text-hover);
  border-color: var(--bb-primary-button-border-hover);
}
.single-tribe_events .tribe-events-event-meta {
  padding: 30px 30px 35px !important;
}
.single-tribe_events .bs-single-pri-meta .tribe-events-meta-group .tribe-events-single-section-title {
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -0.14px;
  margin-bottom: 23px;
  font-weight: 600;
  text-transform: capitalize;
}
.single-tribe_events .bs-single-pri-meta .tribe-events-meta-group .tribe-events-single-section-title:before {
  font-size: 26px;
  color: #010101;
  opacity: 0.5;
}
.single-tribe_events .bs-single-pri-meta .tribe-events-meta-group dl {
  font-size: 18px;
  line-height: 1.325rem;
}
.single-tribe_events .bs-single-pri-meta .tribe-events-venue-map {
  padding: 0px !important;
  width: 100% !important;
  margin: 0 !important;
}
.bb-tribe-events-views-v2 .tribe-events .tribe-events-calendar-month__header-column {
  border-color: var(--bb-content-border-color);
  border-style: solid;
  border-width: 0px 0px 0px 1px;
  padding: 0;
  padding-left: 5px;
}
.welcome-checklist-widget ul {
  display: flex;
  flex-direction: column;
  margin: 0 0 10px;
  padding: 0;
  gap: 16px;
}
.welcome-checklist-widget ul li {
  list-style-type: none;
  margin: 0;
  padding: 0 0 0 33px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  position: relative;
  letter-spacing: -0.02em;
}
.welcome-checklist-widget ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #E94F2E;
}
.group-separator-block.information-block {
  background: var(--bb-content-background-color);
  border: 1px solid var(--bb-content-border-color);
  border-radius: var(--bb-block-radius);
  margin-bottom: 30px;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 20px !important;
  padding-bottom: 30px !important;
}
.group-separator-block.information-block h2 {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2em;
  color: #000000;
  margin: 0 !important;
}
.group-separator-block.information-block p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  list-style: 1.2em;
  color: #000000;
  margin-bottom: 33px !important;
}
.group-separator-block.information-block ul {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  gap: 12px;
}
.group-separator-block.information-block ul li {
  list-style-type: none;
  margin: 0;
  padding: 0 0 0 23px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  position: relative;
  letter-spacing: -0.02em;
}
.group-separator-block.information-block ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #E94F2E;
}
.li_circle_container {
  color: #E94F2E;
}
.li_circle_container .li_circle {
  display: inline-flex;
  width: 20px;
  height: 20px;
  /*! margin-top: 3px; */
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #E94F2E;
  margin-right: 6px;
  margin-bottom: -3px;
}
#invites-personal-li,
#export-personal-li,
#profile-personal-li {
  display: none;
}
.buddypress-wrap .bp-settings-container .bp-navs #pdc-subscriptions-tab::before {
  content: "\eeda";
}
.buddypress-wrap .bp-settings-container .bp-navs #deactivate-account::before {
  content: "\ef48";
}
#page #buddypress #item-body .bp-profile-wrapper #subnav #edit_personal-details:before {
  content: "\ef59";
}
#page #buddypress #item-body .bp-profile-wrapper #subnav #edit_public-profile:before {
  content: "\ee5a";
}
#profile-edit-form .button-tabs.button-nav {
  display: none;
}
.profile_edit_notice {
  opacity: 0.8;
  font-size: 16px;
}
.profile_edit_notice.personal {
  color: red;
  opacity: 1;
}
.bb-media-model-wrapper .activity-comments .bb-activity-media-elem.document-activity,
.buddypress-wrap .activity-comments .bb-activity-media-elem.document-activity {
  width: 100%;
}
@media (max-width: 1230px) and (min-width: 991px) {
  .bb-media-model-wrapper .activity-comments .bb-activity-media-elem.document-activity .bb-activity-media-wrap .bb-activity-media-elem.document-activity .document-description-wrap .document-detail-wrap,
  .buddypress-wrap .activity-comments .bb-activity-media-elem.document-activity .bb-activity-media-wrap .bb-activity-media-elem.document-activity .document-description-wrap .document-detail-wrap {
    padding: 10px 0 10px 0px !important;
  }
  .bb-media-model-wrapper .activity-comments .bb-activity-media-elem.document-activity .bb-activity-media-wrap .bb-activity-media-elem.document-activity .document-description-wrap,
  .buddypress-wrap .activity-comments .bb-activity-media-elem.document-activity .bb-activity-media-wrap .bb-activity-media-elem.document-activity .document-description-wrap {
    padding: 5px 0px !important;
  }
}
@media (max-width: 1190px) and (min-width: 991px) {
  .bb-media-model-wrapper .activity-comments .bb-activity-media-elem.document-activity .bb-activity-media-wrap .bb-activity-media-elem.document-activity .document-description-wrap .document-detail-wrap,
  .buddypress-wrap .activity-comments .bb-activity-media-elem.document-activity .bb-activity-media-wrap .bb-activity-media-elem.document-activity .document-description-wrap .document-detail-wrap {
    max-width: 100px;
  }
}
