:root {
  --primaryColor: #333333;
  --secondColor: #444444;
  --infoColor: #888888;
  --tipColor: #ff6d37;
}

#cobrowsing-block-modal.modal-component {
  z-index: 2000;
}

#cobrowsing-block-modal .modal-content {
  font-family: 'Montserrat';
  margin: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 394px;
  border-radius: 8px;
  background: #ffffff;
  padding: 32px;
}

.modal-title {
  text-align: center;
  margin-bottom: 10px;
  color: var(--primaryColor);
}

  .modal-title .light {
    font-size: 20px;
    font-weight: 100;
    color: black;
  }

#cobrowsing-block-modal .modal-content span {
  margin-top: 12px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  color: #666666;
}

.modal-close-btn:hover {
  cursor: pointer;
}

.model-content-desc {
  font-size: 16px;
  color: var(--secondColor);
  text-align: center;
}

.primary-btn {
  text-decoration: none;
  padding: 16px 24px;
  text-align: center;
  font-size: 16px;
  line-height: 100%;
  background-image: linear-gradient(90deg, #58c180, #7ac882, #85ca82, #58c180);
  background-size: 300% 100%;
  border-radius: 28px;
  color: #ffffff;
  transition: background-position 0.3s ease-in-out;
  border: none;
  margin-top: 20px;
  width: 100%;
  cursor: pointer;
}

.primary-btn:hover {
  color: #fff;
  background-position: 100% 0;
  -webkit-transition: background-position 0.3s ease-in-out;
  transition: background-position 0.3s ease-in-out;
}

