
.nopad {
    padding: 0 !important;
    margin: 0 !important;
    height: 28px;
}
.smpad {
    padding: 0 !important;
    margin: 0 5px !important;
}
.shrinkwrap {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
}

.btn-flex .btn:first-child {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: left;
}
.btn-desc {
    width: 60% !important;
    padding-left: auto;
    padding-right: auto;
}
.btn-pdf {
    width: 40% !important;
    padding-left: auto;
    padding-right: auto;
}
.truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-text {
    margin: 20px 0px 40px;
}

.chamber-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
}

.chamber-header h3 {
    font-weight: 500;
    font-size: clamp(2rem, 1.5vw, 3rem);
    color: var(--is-alt-blue);
    margin: 0px;
}

.house-sen-btn, .chamber-header {
    display: none;
}

.button-grid {
    display: grid;
    grid-gap: 30px;
    margin: 30px 0px;
}

.legend-grid {
    padding:7px;
    font-size:10px;
    line-height:10px;
    font-weight:bold;
    text-transform:uppercase;
    display: grid;
    grid-gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.legend-block {
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    grid-gap: 8px;
}

.legend-img {
    text-align: right;
}

.legend-label {
    text-align: left;
}

.summaries-grid {
    display: grid;
    grid-gap: 20px;
}

.summaries-grid button {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 0 #fff;
    background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%);
    background-image: -o-linear-gradient(top, #fff 0%, #e0e0e0 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e0e0e0));
    background-image: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
    background-repeat: repeat-x;
    border-color: #dbdbdb;
    border-color: #ccc;
};

.scorecard-wrap iframe {
    overflow:hidden;
    border-radius:0px;
    border:0px solid #303d60;
    width:100%;
    min-height:1000px;
}

@media (max-width: 575.98px) {

}

@media (min-width: 576px) {
    .button-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (min-width: 768px) {
    .legend-grid {
        grid-template-columns: repeat(8,1fr);
    }
}

@media (min-width: 992px) {
    .house-sen-btn {
        display: unset;
    }
    .chamber-header {
        display: grid;
    }
    .button-grid {
        grid-template-columns: repeat(4,1fr);
    }
    .summaries-grid {
        grid-template-columns: repeat(4,1fr);
    }
}

@media (min-width: 1200px) {

}