/* Fullscreen overlay centered with flexbox */
#insights-form-outer {    
    position: fixed;
    background-color: rgba(0,0,0,.8);
    z-index: 99999;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    /* Centering */
    display: flex; /* will be overridden by inline display:none until opened */
    align-items: center;
    justify-content: center;
    padding: 16px; /* breathing room on small screens */
    box-sizing: border-box;
}

.closePopupBtn.size {
    height: 20px;
    width: 20px;
    top: 15px;
    right: 15px;
}

/* Popup panel */
.insights-form-outer-wrap {
    font-family: indivisible;
    font-size: 24px;
    width: 500px;
    max-width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative; /* no absolute/transform needed when using flexbox */
    background-color: #000000;
    border: 1px solid #424242;
    border-radius: 6px;
    background: #ffffff;
    width: 70%;
    margin: auto auto;
    padding: 40px;
    padding-right: 10px;
    display: flex;
    /* transform: translateY(-50%); */
}

.insights-form-outer-wrap h1 {   
    font-family: freight-display-pro;
    font-size: var(--sub-heading);
    line-height: 1;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.insights-form-outer-wrap h2 {
   font-family: indivisible;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
}

.insights-form-outer-wrap h2.color-2 {
    /* color:#0064ff; */
}
.insights-form-outer-wrap .pt-20 {
    padding-top: 20px;
}
.table-1 {
   border:none;
    border-collapse: collapse;
    border-spacing: 0;
    height: 100%;
    width: 100%;
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: normal;
}

.table-1 td,
.table-1 th{
    border-bottom:1px solid #c8c8c8;
    padding: 10px;
}

.resp-table-wrap {
    max-width:100%; 
    overflow:auto;
}

@media (max-width: 1400px) {
    .insights-form-outer-wrap {
        width: 100%;
    }
  .insights-form-outer-wrap {
        font-size: 20px;
    }    
    .video-center-title > h2 {
        font-size: 48px;
    }
}
@media (max-width: 990px) {
    .insights-form-outer-wrap {
        font-size: 16px;
    }
    .resp-table-wrap table tr > td:first-child {
        min-width: 120px;
    }
    .insights-form-outer-wrap {
        padding-right: 20px;
        padding-left: 20px;
    }
    .insights-form-outer-wrap h2 {
        font-size: 18px;
    }
    .insights-form-outer-wrap h1 {
        font-size: 34px
    }
}

@media (max-width: 620px) {
    .video-center-title > h2 {
        font-size: 32px;
    }
}