﻿toggle-button {
    display: block;
    margin: 10px 0;
}

    toggle-button button.toggle-btn {
        color: #1f1f1f !important;
        background: #fff !important;
        border: 1px solid #9f9f9f !important;
        font-size: 15px !important;
        padding: 2px 22px !important;
    }

        toggle-button button.toggle-btn.isActive {
            color: #fff !important;
            background-color: #0f0f0f !important;
            border-color: #0f0f0f !important;
        }

        toggle-button button.toggle-btn:first-child {
            border-top-right-radius: initial !important;
            border-bottom-right-radius: initial !important;
        }

        toggle-button button.toggle-btn:last-child {
            border-top-left-radius: initial !important;
            border-bottom-left-radius: initial !important;
        }

        toggle-button button.toggle-btn:not(:first-child):not(:last-child) {
            border-top-right-radius: initial !important;
            border-bottom-right-radius: initial !important;
            border-top-left-radius: initial !important;
            border-bottom-left-radius: initial !important;
        }

        toggle-button button.toggle-btn:not(:first-child) {
            margin-left: -1px !important;
        }

        toggle-button button.toggle-btn:not(.isActive):hover {
            background-color: #ebebeb !important;
        }

        toggle-button button.toggle-btn:focus {
            box-shadow: none !important;
        }

    toggle-button + .toggle-content {
        margin: 25px 0;
    }
