.img {
    height: auto;
    width: 100%;
}

.list {
    list-style-type: "- ";
    margin: 1rem 0;
    padding: 0;
}

.list__item {
    font-size: 0.85rem;
    margin-left: 1rem;
}

.ul-black {
    list-style-type: none;
}

.li-grey {
    background-color: #1e1e1e;
    color: white;
    border: 1px solid white;
}

.li-black {
    background-color: #000000;
    color: white;
    border: 1px solid white;
}

.text {
    font-size: 0.95rem;
}

.text--size--small {
    font-size: 0.75rem;
}

.text--size--medium {
    font-size: 0.85rem;
}

.text--bold {
    font-weight: bold;
}

.text--center {
    text-align: center;
}

.text--italic {
    font-style: italic;
}

.text--strike {
    text-decoration: line-through;
}

.text--uppercase {
    text-transform: uppercase;
}

.title {
    font-size: 1.5rem;
    font-weight: 800;
}

.title--size--xsmall {
    font-size: 0.95rem;
}

.title--size--small {
    font-size: 1.15rem;
}

.title--size--medium {
    font-size: 1.45rem;
}

.title--size--large {
    font-size: 2rem;
}


.wrapper {
    margin: 0 auto;
    padding: 1.5rem 0.75rem;
    width: 85%;
}

.wrapper--center,
.wrapper--btn {
    display: flex;
    justify-content: center;
    margin: 2rem 0 0 0;
}

.wrapper--dark {
    background-color: #1e1e1e;
    /* background-color: aqua; */
    margin: 0;
    padding: 0;
}

.wrapper--darker {
    background-color: black;
    /* background-color: blueviolet; */
    margin: 0;
    padding: 0;
}

.wrapper--column,
.wrapper--inner,
.wrapper--inner--center {
    margin: 1.5rem 0;
}

.wrapper--testimonials {
    margin: 2rem auto;
    width: 65%;
}

.specification {
    margin-top: 1.5rem;
}

.specification__item {
    display: block;
}

.specification__title {
    margin-bottom: 0.25rem;
}

.specification__title--size--small {
    font-size: 1.1rem;
}

/* Neural Drum Kit Specific */
.ndk-container {
    width: 100%;
}

.ndk__intro {
    display: flex;
    flex-flow: column nowrap;
}

.ndk__intro--desc {
    order: 2;
}

.ndk__intro--img {
    order: 1;
}

.wrapper--big-gap {
    margin: 0 auto;
    padding: 1.75rem 0.75rem 0 0.75rem;
    width: 85%;
}

.neural-editor {
    padding-top: 1.25rem;
}

.release-notes {
    margin: 1rem 0 0;
}

.hr__no-margin {
    margin-top: 0 !important;
}

.btn__download {
    margin: 1rem 0;
}


/* Base styles for the slider */
.slider {
    background-color: #252424;
    border: 1px solid #333;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
    overflow: hidden;
    padding: 0 1rem;
    position: relative;
    width: 100%;
}

.slider__item {
    display: none;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.slider__item--active {
    display: block;
}

.slider__content {
    padding: 2rem 3rem 1.5rem 5rem;
}

.slider__nav {
    position: absolute;
    top: 50%;
    width: calc(100% - 2rem);
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.slider__arrow {
    background: none;
    border: none;
    font-size: 3rem;
    color: #7a7a7a;
    cursor: pointer;
}

.slider__arrow:hover {
    color: #e1794d;
}

.slider__dots {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.slider__dot {
    background: #555;
    border: none;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    cursor: pointer;
}

.slider__dot:hover {
    background: #e1794d;
}

.slider__dot--active {
    background: #fff;
}

.testimonial__text {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.25rem !important;
    font-style: italic;
    margin: 0 0 1.15rem 1rem;
    padding: 0;
}

.testimonial__text::before {
    content: '\201C';
    font-size: 4rem;
    margin-right: 0.5rem;
    position: absolute;
    left: 4.75rem;
    top: 0.5rem;
    color: #7a7a7a;
}


.testimonial__author,
.testimonial__role,
.testimonial__link {
    font-size: 0.9rem !important;
    margin-bottom: 0;
    text-align: right;
}

.slider__link:link,
.slider__link:visited {
    color: #bf653f;
    text-decoration: none;
}

.slider__link:hover,
.slider__link:active,
.slider__link:hover:visited {
    color: #e1794d;
}

.plugin__latest-update {
    font-style: italic;
    margin: 0.5rem 0 0.95rem;
    padding: 0;
}

.release-notes__summary {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.arrow-down::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 5px;
    vertical-align: middle;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid white;
}

.release-notes__details > .release-notes__summary {
    list-style: none;
}

.release-notes__details > .release-notes__summary::-webkit-details-marker {
    display: none;
}


.details:last-child {
    border-bottom: 1px solid #aaa;
}

.summary {
    border-top: 1px solid #aaa;
    font-size: 0.75rem;
    padding: 0.5em 0;
}

.summary__content {
    border-top: 1px solid #aaa;
    padding-top: 1rem;
}

.example--list {
    display: flex;
    flex-flow: column;
    margin: 0;
}

.example--list__item {
    align-items: center;
    /* border-top: 1px solid #495157; */
    display: flex;
    flex-flow: row nowrap;
    gap: 0.5rem;
    justify-content: space-between;
    padding: 1rem 0;
}

.example--list__item:last-child {
    /* border-bottom: 1px solid #495157; */
}

/* Tabs  */

.tabs {
    width: 100%;
    margin: 2.5rem auto 0 auto;
}

.tabs__controls {
    display: flex;
}

.tabs__button {
    background-color: #000000;
    border: none;
    border-bottom: 1px solid #333;
    color: #e9e9e9;
    cursor: pointer;
    font-size: 0.75rem;
    padding: 0.85rem 1rem;
    text-align: left;
    text-transform: uppercase;
}

.tabs__button:hover {
    background-color: #5c636a;
}

.tabs__button:last-child {
    /* border-bottom: 1px solid #4a5157; */
}

.tabs__content {
    background-color: #252424;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    color: #e9e9e9;
    display: none;
    padding: 0.5rem 1rem;

}

/* Waveform */

.soundwave {
    display: inline-block;
    width: 100%;
}

.soundwave__img {
    height: 1rem;
    width: 100%;
}

/* Footer  */


.footer {
    padding-bottom: 1rem;
}


/* Mobile Styles */
@media (max-width: 600px) {
    .tabs__controls {
        flex-direction: column;
        position: relative;
    }

    .tabs__button {
        display: none;
    }

    .tabs__controls::before {
        /* background-color: #000000; */
        /* border: 1px solid #ced4da; */
        border-bottom: 2px solid #bf653f;
        color: #e9e9e9;
        content: attr(data-selected);
        cursor: pointer;
        display: block;
        font-size: 0.75rem;
        padding: 0.85rem 1rem;
        position: relative;
        text-align: left;
        text-transform: uppercase;
    }

    .tabs__controls::after {
        content: "";
        position: absolute;
        right: 15px;
        top: 18px;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #bf653f;
    }

    .tabs__controls.active .tabs__button {
        display: block;
    }

    .tabs__controls.active::before {
        display: none;
    }

    .tabs__button.active {
        /* background-color: white; */
        /* color: #bf653f; */
    }

    .tabs__button:not(:first-child) {
        /* border-right: none; */
    }
}

/* Desktop Styles */
@media (min-width: 601px) {
    .tabs__controls {
        display: flex;
    }

    .tabs__button {
        display: block;
        background-color: transparent;
        border: 0;
        border-bottom: 3px solid #404040;
        color: #e9e9e9;
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        text-transform: uppercase;
    }

    .tabs__button:hover {
        background-color: transparent;
        border-bottom: 3px solid #6b6b6b;
        color: #aaa;
    }

    .tabs__button.active {
        border-bottom: 3px solid #bf653f;
        color: #e9e9e9;
    }
}

@media (min-width: 991px) {
    
    .nav-link--mobile {
        background-color: #6c757d;
        border-color: #6c757d;
        line-height: 1.5;
    }

    .nav-link {
        font-size: 1rem;
    }

    .text {
        font-size: 1.15rem;
    }

    .text--size--small {
        font-size: 0.9rem;
    }

    .title--size--small {
        font-size: 1.25rem;
    }

    .title--size--large {
        font-size: 2.2rem;
    }

    .wrapper {
        display: flex;
        flex-flow: row nowrap;
        gap: 4%;
        max-width: 960px;
    }

    .wrapper--btn {
        display: flex;
        justify-content: start;
        margin: 2rem 0 0 0;
    }

    .wrapper--column {
        width: 100%;
    }

    .wrapper--inner {
        margin: 0;
        padding: 1.5rem 0;
        width: 48%;
    }

    .wrapper--big-gap {
        display: flex;
        flex-flow: row nowrap;
        gap: 6%;
        max-width: 960px;
    }

    .wrapper--inner--center {
        margin-left: 25%;
        width: 50%;
    }

    .wrapper--tabs {
        margin: 2rem auto;
        width: 60%;
    }

    .neural-editor,
    .samples {
        padding: 0;
        width: 47%;
    }

    .summary {
        font-size: 0.85rem
    }

    .ndk__intro--desc {
        order: 1;
    }
    
    .ndk__intro--img {
        order: 2;
    }

    .ndk__subtitle {
        margin: 1.25rem 0 2rem 0;
    }

    .specification {
        display: flex;
        flex-flow: row nowrap;
        gap: 2%;
        justify-content: center;
        margin: 1rem 0;
    }
    
    .specification__title {
        width: 38%;
    }
    
    .specification__desc {
        width: 60%;
    }

    .specification__item {
        font-size: 0.85rem;
        margin-bottom: 0.45rem;
    }
    
    .specification__title--size--small {
        font-size: 0.95rem;
    }

    .example--list__item {
        border-bottom: 1px solid #404040;
        gap: 1.25rem;
        padding: 1rem 0 1rem 0.5rem;
    }

    .example--list__item:last-child {
        border-bottom: none;
    }

    /* ==========================================================================
       Drum Example shown as Tabs on Desktop. Shown as Dropdown on Mobile
       ========================================================================== */
    
    .tab-select--list {
        margin: 0;
        padding: 0;
    }
    .tab-select--list__item {
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        width: 35%;
    }

    .tabs__content {
        padding: 0.5rem 1rem;
    }

    .soundwave__img {
        height: 2rem;
    }
}




@media (min-width: 1200px) {
    .wrapper,
    .wrapper--big-gap {
        max-width: 1140px;
    }
}

/* @media (min-width: 1400px) {
    .wrapper {
        max-width: 1340px;
    }
} */

