/* Core Portal Styles */
.portal {
    max-width: 560px;
    margin: auto;
}

/* Phone Block */
.cps-portal-modal .close-button {
    position: fixed;
    top: 18px;
    right: 18px;
}

.phone-icon-wrapper {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
}

.phone-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: inline-block;
}

.cps-phone-number {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  justify-content: center;
}

.cps-phone-number:hover {
  color: #007BFF;
}

.number {
  font-size: 16px;
  font-weight: bold;
}

/* Portal Modal Styles */
::backdrop {
    background: rgba(0, 0, 0, 0.7);
}

dialog {
    border: 1px solid;
    border-radius: 6px;
    padding: 0;
    width: 95%;
    top: 12% !important;
    max-width: 550px !important;
}

@media only screen and (max-width: 767px) {
    dialog {
        top: 0% !important;
        max-width: 500px !important;
    }
}