/***********************
    NAVBAR
************************/
.custom-iframe .iframe-container {
    position: relative; /* For positioning the iframe */
    width: 100%; /* Make the container full-width */
    padding-bottom: 125%; /* 16:9 aspect ratio (height/width*100) */
    height: 0; /* Set height to 0 to use padding for aspect ratio */
    overflow: hidden; /* Hide any overflow */
}

.custom-iframe .iframe-container iframe {
    position: absolute; /* Absolute positioning inside the container */
    top: 0; /* Align to top */
    left: 0; /* Align to left */
    width: 100%; /* Full-width */
    height: 100%; /* Full-height */
    border: none; /* Remove default border */
}

@media (max-width: 991px) {
.custom-iframe .iframe-container {
    padding-bottom: 300vw;
}
}

.pricevalue1.accent-color2 {
    color: #ffffff !important;
}


/***********************
    Doc fee breakdown subtext
************************/
.doc-fee-breakdown {
  margin-top: 7px;
  font-family: inherit;
  font-size: 11px;
  line-height: 1.5;
  color: #777;
  letter-spacing: 0.01em;
}

.doc-fee-breakdown strong {
  color: #555;
  font-weight: 500;
}

.doc-fee-breakdown span {
  margin-right: 3px;
}

@media (max-width: 600px) {
  .doc-fee-breakdown {
    font-size: 10px;
  }
}