/* :root {
    --downloads-primary-color: #9A8700;
    --downloads-secondary-color: #F5F3E6;
}

.lhi-graphic-recordings h1 {
    margin-right: 0px;
    margin-bottom: 30px;
}

.lhi-graphic-recordings h5 {
    margin-bottom: 10px;
}

.lhi-graphic-recordings .downloadable .download-container {
    display: flex;
    margin-top: 5px;
    font-size: 12px;
}

.lhi-graphic-recordings .downloadable .download-container .dc-name {
    flex-basis: 60%;
    padding-right: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    line-height: 1em;
}

.lhi-graphic-recordings .downloadable .download-container .dc-button {
    margin-left: 1%;
    flex-basis: 19%;
    border: none;
    color: white !important;
    background-color: var(--downloads-primary-color);
    padding: 0px 5px;
    cursor: pointer;
    text-align: center;
    border: 2px solid var(--downloads-primary-color);
}

.lhi-graphic-recordings .downloadable .download-container .dc-button:hover {
    color: var(--downloads-primary-color) !important;
    background-color: white;
    border: 2px solid var(--downloads-primary-color);
}

.lhi-graphic-recordings .downloadable .download-container .ul-date {
    position: relative;
    font-size: 11px;
    color: gray;
}

.lhi-graphic-recordings .downloadable .types-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.lhi-graphic-recordings .downloadable .types-wrapper .dates-wrapper {
    flex-basis: 100%;
    min-width: 100%;
    display: flex;
    margin-bottom: 30px;
    align-content: stretch;
    align-items: stretch;
    cursor: pointer;
}

.lhi-graphic-recordings .downloadable .types-wrapper .dates-wrapper div {
    margin-right: 15px;
    display: inline-block;
}

.lhi-graphic-recordings .downloadable .types-wrapper .dates-wrapper div:hover {
    border-bottom: 5px solid var(--downloads-primary-color);
    color: var(--downloads-primary-color);
}

.lhi-graphic-recordings .downloadable .types-wrapper .date-checked {
    border-bottom: 5px solid var(--downloads-primary-color);
    color: var(--downloads-primary-color);
}

.lhi-graphic-recordings .downloadable .types-wrapper .downloads-wrapper {
    display: none;
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
}

.lhi-graphic-recordings .downloadable .types-wrapper .show {
    display: flex;
}

.lhi-graphic-recordings .downloadable .types-wrapper .item {
    flex-basis: 45%;
    min-width: 200px;
    display: flex;
    align-items: stretch;
    align-content: stretch;
    flex-direction: column;
    padding-right: 0px;
    padding-bottom: 40px;
}

.sidebar-right-wrapper .lhi-graphic-recordings .downloadable .types-wrapper .item {
    flex-basis: 100%;
    padding-bottom: 0 !important;
}

.sidebar-right-wrapper .lhi-graphic-recordings .downloadable .types-wrapper {
    margin-bottom: 0;
}

.lhi-graphic-recordings .downloadable .types-wrapper .item .pic {
    min-height: 250px;
    display: inline-block;
    background-color: var(--downloads-secondary-color);
    border-bottom: 5px solid var(--downloads-primary-color);
}

.lhi-graphic-recordings .downloadable .types-wrapper .item .background {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.lhi-graphic-recordings .downloadable .types-wrapper .item h5 {
    min-height: 46px;
    margin-top: 30px;
}

.lhi-graphic-recordings .downloadable .types-wrapper .item h5 small {
    text-transform: none;
}

.lhi-graphic-recordings .downloadable p {
    margin-bottom: 20px;
}

.lhi-graphic-recordings .downloadable .download-button {
    display: none;
    cursor: pointer;
    padding: 10px 0px;
    width: 100%;
    text-align: center;
    background-color: var(--downloads-primary-color);
    color: white;
    border: none;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 700;
    margin-top: 10px;
}

.lhi-graphic-recordings .downloadable .code-field {
    max-width: 100%;
    border: none;
    background-color: var(--downloads-secondary-color);
    padding: 17px 0px 17px 10px;
    margin-bottom: 10px;
}

.lhi-graphic-recordings .error_msg {
    font-size: 12px;
    color: red;
    width: 100%;
}

.lhi-graphic-recordings .success_msg {
    font-size: 12px;
    color: green;
    width: 100%;
}

.lhi-graphic-recordings .play-button {
    flex-basis: 39% !important;
}

.lhi-graphic-recordings #preview-modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: #000000;
    background-color: rgba(0, 0, 0, 0.4);
}

.lhi-graphic-recordings #preview-modal .modal-content {
    background-color: #fefefe;
    margin: 60px auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    height: 80%;
    max-height: 900px;
    max-width: 900px;
}

.lhi-graphic-recordings #preview-modal .modal-content iframe {
    height: 95%;
    width: 100%;
}

.lhi-graphic-recordings #preview-modal .close-preview {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.lhi-graphic-recordings #preview-modal .close-preview:hover,
.lhi-graphic-recordings #preview-modal .close-preview:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.lhi-graphic-recordings #preview-modal .preview-img {
    min-height: 230px;
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

@media (max-width: 500px) {
    .lhi-graphic-recordings .downloadable .types-wrapper .item {
        flex-basis: 100%;
    }
    .lhi-graphic-recordings #preview-modal .modal-content {
        width: 95%;
    }
} */