/* Font */
/* @media only screen and (max-width: 480px) {
    body {
        font-size: 0.75em;
    }
    .btn {
        font-size: 0.85em;
    }
} */

/* Bootstrap Overrides */
.card {
    margin-top: 30px;
}
.btn {
    padding: 3px;
}
.btn-primary {
    background-color: lightskyblue;
    color: black;
    font-weight: bold;
    min-width: 100px;
    padding-left: 0;
    padding-right: 0;
    padding-top: 3px;
    padding-bottom: 3px;
}
.btn-default {
    border: gray solid 1px;
    min-width: 75px;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 3px;
    padding-bottom: 3px;
}
.form-label {
    font-weight: bold;
    margin-bottom: 0;
}
.form-input {
    margin-bottom: 10px;
}
.form-select {
    margin-bottom: 10px;
}
.form-control{
    max-width: 280px;
}
.form-group {
    padding-bottom: 10px;
}

/* Colours */
body {
    background-color: rgba(166, 234, 240, 0.2); /* pale-blue */
}
a {
    color: rgb(99, 107, 111); /* light-grey #636B6F */
    cursor: pointer;
}
.active {
    color: rgb(48, 151, 209); /* light-blue #3097D1 */
}

/* Radio buttons */
.form-radio-label {
    margin-right: 8px;
    font-weight: normal;
    vertical-align: middle;
}
input[type="radio"]{
    float: left;
    margin: 3px 5px 0 0;
}

/* Switches */
.onoffswitch-inner:before {
    content: "";
}
.onoffswitch-inner:after {
    content: "";
}

/* ~~~ Tabs ~~~ */

/* Style the tab */
.tab {
    overflow: hidden;
}
.tab-bordered {
    border: 1px solid #ccc;
    border-radius: 9px;
    padding: 5px;
    margin-bottom: 10px;
}

/* Style the buttons inside the tab */
.tab button {
    background-color: inherit;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0px 12px;
    transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #ccc;
}

/* Default first visible, rest hidden */
.tabcontent {
    display: block;
}
.tabcontent ~ .tabcontent {
    display: none;
}
