@media (min-width: 576px) {

    .m {
        margin-bottom: 3rem !important;
        margin-top: 3rem !important;
    }
}

@media (min-width: 992px) {

    .m {
        margin-bottom: 1rem !important;
        margin-top: 3rem !important;
    }
}

.collapsable-panel {
    border: 1px solid #eee;
    padding: 25px;
    background-color: white;
    overflow: hidden;
}

.accordion-collapse.collapse {
    min-height: 150px;
}

.switch {
    --line: #505162;
    --dot: #6C8881;
    --circle: #6C8881;
    --duration: 0.3s;
    --text: #9ea0be;
    cursor: pointer;
}

    .switch input {
        display: none;
    }

        .switch input + div {
            position: relative;
        }

            .switch input + div:before, .switch input + div:after {
                --s: 1;
                content: "";
                position: absolute;
                height: 2px;
                top: 10px;
                width: 10px;
                background: var(--line);
                transform: scaleX(var(--s));
                transition: transform var(--duration) ease;
            }

            .switch input + div:before {
                --s: 0;
                left: 0;
                transform-origin: 0 50%;
                border-radius: 1px 0 0 1px;
            }

            .switch input + div:after {
                left: 14px;
                transform-origin: 100% 50%;
                border-radius: 0 1px 1px 0;
            }

            .switch input + div span {
                padding-left: 30px;
                line-height: 24px;
                color: var(--text);
            }

                .switch input + div span:before {
                    --x: -1px;
                    --b: var(--circle);
                    --s: 2px;
                    content: "";
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 12px;
                    height: 12px;
                    border-radius: 50%;
                    box-shadow: inset 0 0 0 var(--s) var(--b);
                    transform: translateX(var(--x));
                    transition: box-shadow var(--duration) ease, transform var(--duration) ease;
                    margin-top: 5px;
                }

                .switch input + div span:not(:empty) {
                    padding-left: 64px;
                }

        .switch input:checked + div:before {
            --s: 1;
        }

        .switch input:checked + div:after {
            --s: 0;
        }

        .switch input:checked + div span:before {
            --x: 13px;
            --s: 12px;
            --b: var(--dot);
        }

html {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

* {
    box-sizing: inherit;
}

    *:before, *:after {
        box-sizing: inherit;
    }

/*body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    background: #262730;
}

    body .switch + .switch {
        margin-top: 32px;
    }

    body .dribbble {
        position: fixed;
        display: block;
        right: 20px;
        bottom: 20px;
    }

        body .dribbble img {
            display: block;
            height: 28px;
        }*/