﻿
.button {
    margin-bottom: 10px;
    padding-left: 15px;
    padding-top: 5px;
    padding-right: 15px;
    display: inline-flex; /* hiermee maken we de width flex*/
    min-height: 100px;
    width: 90%;
    border-style: solid;
    border-color: #d8d8d8;
    border-width: thin;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    font-size: x-large;
    font-weight: 700;
    color: var(--studio-foreground-color);
    align-items: center;
    float: left;
    clear: left; /*force new line*/
    box-shadow: 4px 4px 8px #bdbdbd;
    cursor: default;
}

.button-left-filled-on {
    background-image: linear-gradient( var(--studio-background-color-button), var(--studio-background-color) );
    border-top-left-radius: 15px;
}

    .button-left-filled-on:hover {
        border-style: solid;
        border-color: #000000;
        border-width: thin;
    }

.button-leftbottom-filled-on {
    border-bottom-left-radius: 15px;
    background-image: linear-gradient( var(--studio-background-color), var(--studio-background-color-button) );
}

    .button-leftbottom-filled-on:hover {
        border-style: solid;
        border-color: #000000;
        border-width: thin;
    }

.button-left-filled-off {
    background-image: linear-gradient( rgba(200,200,200,0.85), rgba(200,200,200,1) );
    border-top-left-radius: 15px;
    box-shadow: 1px 1px 4px #bdbdbd;
}

    .button-left-filled-off:hover {
        border-style: solid;
        border-color: #000000;
        border-width: thin;
    }

.button-leftbottom-filled-off {
    border-bottom-left-radius: 15px;
    background-image: linear-gradient( rgba(200,200,200,1), rgba(200,200,200,0.85) );
    box-shadow: 1px 1px 4px #bdbdbd;
}

    .button-leftbottom-filled-off:hover {
        border-style: solid;
        border-color: #000000;
        border-width: thin;
    }

.button-right-filled-on {
    border-top-right-radius: 15px;
    background-image: linear-gradient( var(--studio-background-color-button), var(--studio-background-color) );
}

    .button-right-filled-on:hover {
        border-style: solid;
        border-color: #000000;
        border-width: thin;
    }

.button-rightbottom-filled-on {
    border-bottom-right-radius: 15px;
    background-image: linear-gradient( var(--studio-background-color), var(--studio-background-color-button) );
}

    .button-rightbottom-filled-on:hover {
        border-style: solid;
        border-color: #000000;
        border-width: thin;
    }

.button-right-filled-off {
    border-top-right-radius: 15px;
    background-image: linear-gradient( rgba(200,200,200,0.85), rgba(200,200,200,1) );
    box-shadow: 1px 1px 4px #bdbdbd;
}

    .button-right-filled-off:hover {
        border-style: solid;
        border-color: #000000;
        border-width: thin;
    }

.button-rightbottom-filled-off {
    border-bottom-right-radius: 15px;
    background-image: linear-gradient( rgba(200,200,200,1), rgba(200,200,200,0.85) );
    box-shadow: 1px 1px 4px #bdbdbd;
}

    .button-rightbottom-filled-off:hover {
        border-style: solid;
        border-color: #000000;
        border-width: thin;
    }

