.asset-gate-page__main-container {
  padding-bottom: 70px;
  border-bottom: 2px solid #eceef2;
  margin-bottom: 80px;
}
.asset-gate-page__main-container[data-page-type='ungated-page'] .asset-gated__icon_status {
  display: none;
}
.asset-gate-page__thumbnail {
  max-width: 100%;
  margin-bottom: 40px;
}
.asset-gate-page__thumbnail img {
  object-fit: cover;
}
.asset-gate-page_pdf-buttons .cta .cta-wrapper .cta-button {
  min-width: 11rem;
}
h1.asset-gate-page__title {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 4 rem;
  color: #1d1e1f;
  line-height: 1.16;
  letter-spacing: -2px !important;
  /*Important required to override the default h1 important styles from K.COM*/
  padding-bottom: 40px;
}
@media only screen and (max-width: 400px) {
  h1.asset-gate-page__title {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 48px;
    color: #1d1e1f;
    line-height: 1.16;
  }
}
#asset-gate-page__content_type {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 20px;
  color: #1d1e1f;
  line-height: 22px;
  font-weight: 600;
  letter-spacing: -0.2px;
  padding-right: 8px;
}
.asset-gate-page__description {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 18px;
  color: #1d1e1f;
  line-height: 32px;
  margin-bottom: 40px;
  margin-top: 30px;
}
.asset-gated__icon_status {
  display: inline-block;
  background-size: cover;
  background-repeat: no-repeat;
}
.asset-gated__icon_status.locked {
  background-image: url('../../../../../../etc/designs/keysight/clientlibs/head/img/lock.svg');
  width: 21px;
  height: 24px;
}
.asset-gated__icon_status.unlocked {
  background-image: url('../../../../../../etc/designs/keysight/clientlibs/head/img/lock-open.svg');
  width: 23px;
  height: 20px;
}
.asset-gate-page__top-container {
  margin-top: 35px;
  margin-bottom: 75px;
}
.asset-gate-page__bottom-container {
  display: inline-flex;
  gap: 20px;
}
@media only screen and (min-width: 767px) {
  .asset-gate-page__related-container .card__Main_Container p.card__Title {
    font-size: 21px !important;
  }
  .asset-gate-page__related-container .card__Main_Container p.card__Type {
    font-size: 14px;
  }
}
@media only screen and (max-width: calc(768px - 1px)) {
  .asset-gate-page__description > ul li {
    font-size: 0.875rem;
    line-height: 1.57;
  }
}
@media only screen and (min-width: 1200px) {
  .columnWidth-100 .asset-gate-page__description {
    width: 75%;
    display: inline-block;
  }
  .columnWidth-100 .asset-gate-page__related-container {
    width: 25%;
    display: inline-block;
  }
}
@media only screen and (min-width: 768px) and (max-width: calc(1200px - 1px)) {
  .asset-gate-page__related-container {
    width: 50%;
  }
}
.cta {
  cursor: pointer;
  margin-bottom: 20px !important;
}
@media only screen and (min-width: 1200px) {
  .asset-gate-page_pdf-buttons {
    display: flex;
    justify-content: center;
    column-gap: 20px;
  }
  .cta .cta-wrapper .cta-button {
    max-width: fit-content;
    min-width: auto;
  }
}
/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: #000000;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
  justify-content: center;
  align-items: center;
}
/* Modal Content/Box */
.modal-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
#asset-gate-page-spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  display: flex;
}
#asset-gate-page-spinner .loader {
  border: 4px solid rgba(255, 255, 255, 0.7);
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
