.buttons-collection {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
    gap: 8px;
}

button.optionBtns {
    padding: 0.45rem 0.75rem 0.35rem;
    border: none;
    color: var(--white);
        --productBlue1: #379bdf;
        --productBlue2: #2a70bb;
    background: var(--productBlue1);
    background: linear-gradient(80deg, var(--productBlue2) 0%, var(--productBlue1) 100%);
    background-color: var(--secondary);
    border-radius: 4px;
    font-size: 0.95rem;
    opacity: 1;
    transition: --productBlue2 0.20s ease-in-out, --productBlue1 0.25s ease-in-out !important;
}

button.optionBtns:hover,
button.optionBtns:focus,
button.optionBtns:active,
button.optionBtns.active {
    --productBlue1: #004477;
    --productBlue2: #004477;
}

select#contentDropdown {
    display: none;
    margin: 1rem 0;
    width: 35%;
    font-size: .85rem;
    font-weight: 600;
}

div#dynamicContentContainer {
    position: relative;
    margin-top: 30px;
}

.dynamicContent {
    position: absolute;
    max-width: 100%;
    background-color: var(--sitewide-dim);
    background: linear-gradient(180deg,rgba(242, 248, 252, 1) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 1rem 1.25rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--sitewide-dim);
    border-radius: 0.5rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
    /* opacity: 0; */
    visibility: hidden;
    /* transition: opacity 0.2s ease-in-out, visibility 0.35s ease-in-out; */
    -webkit-animation: fade-out 550ms ease-out both;
	        animation: fade-out 550ms ease-out both;
}

.dynamicContent.show {
    -webkit-animation: fade-in 750ms cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in 750ms cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    /* opacity: 1; */
    visibility: visible;
    position: relative;
}

.dynamicContent .content-heading,
.dynamicContent .content-description { margin-bottom: 15px; }

@media only screen and (max-width: 1200px) {
    #buttonCollectionContainer { display: none; }

    select#contentDropdown {
        display: block;
        width: 80%;
    }
}

@media only screen and (max-width: 650px){
    select#contentDropdown {
        width: 100%;
        font-size: 0.7rem;
    }
    
    .dynamicContent {padding: 1rem; }

    .dynamicContent h3 { font-size: 1rem; }

    .dynamicContent .content-heading { margin-bottom: 12px; }

    .dynamicContent .content-description { font-size: 0.8rem; }
}