.marketplace-info label {
  font-weight: bold;
}

.marketplace-video {
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.marketplace-video video {
  max-width: 100%;
  height: auto;
}

.social-share {
  margin: 1rem 0 2rem;
}
.social-share span {
  display: inline-block;
  font-size: 1rem;
  font-weight: bold;
  margin-right: 10px;
}
.social-share a {
  display: inline-block;
  margin-right: 10px;
}
.social-share svg {
  height: 20px;
  width: auto;
}
.social-share a.facebook {
  color: #3b5998;
}
.social-share a.linkedin {
  color: #00acee;
}
.social-share a.twitter {
  color: #1da1f2;
}    

.marketplace-author {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.custom-marketplace-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
}

.custom-marketplace-popup-overlay {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: 0.3;
}

.custom-marketplace-popup-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  max-width: 100%;
  background: #ffffff;
  transform: translate(-50%, -50%);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.17);
  border-radius: 4px;
  max-height: 90vh;
  overflow-y: auto;
}

.custom-marketplace-popup-content-form-row {
  gap: 16px;
}

.custom-marketplace-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(44, 44, 44, 0.3);
  padding: 18px 20px;
}
.custom-marketplace-popup-close{
  cursor: pointer;
}

.custom-marketplace-popup-header > div {
  min-width: 25px;
}

.custom-marketplace-popup-header .woocommerce-MyAccount-popup-close {
  display: inline-flex;
}

.custom-marketplace-popup-header-title {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #000168;
  width: 100%;
}


.custom-marketplace-popup-content {
  padding: 25px 20px;
}

.custom-marketplace-popup-content-img,
.custom-marketplace-popup-content-details {
  width: 100%;
}

.custom-marketplace-popup-content-form .button {
  text-align:center;
}

.custom-marketplace-popup-content-form label {
  line-height: 1.5;
}
.custom-marketplace-popup-content-form input[type="email"],
.custom-marketplace-popup-content-form input[type="tel"],
.custom-marketplace-popup-content-form input[type="text"] {
  padding: .5rem .75rem;
}
.custom-marketplace-popup-content-form textarea {
  max-height: 140px;
}

.custom-marketplace-popup-content-form-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

@media (min-width: 480px) {
  .custom-marketplace-popup-content-form-row {
    flex-direction: row;
  }
  .custom-marketplace-popup-content-img {
    width: calc(100% / 3);
  }
  
  .custom-marketplace-popup-content-details {
    width: calc((100% / 3) * 2);
  }
}

.custom-marketplace-popup-content-form-row-cell {
  width: 100%;
}

.custom-marketplace-popup-content-form-row-cell > * {
  width: 100% !important;
  box-sizing: border-box;
}