html{
    overflow-x: hidden;
}
body{
    font-size: 0.95rem;
    -webkit-font-smoothing: antialiased;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 300;
    color: #232d4c !important;
    min-height: 100vh !important;
    background-color: white;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
#nav{
    background-color: white;
    max-height: 3.5rem;
}
#view{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
#view,#view_content{
    min-height: calc(100vh - 3.5rem) !important;
}

/* Utility */
.m-minus-fullwidth{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
}

/* Cursor */
.pointer{
    cursor: pointer;
}
.disabled{
    cursor: not-allowed;
}
.move {
    cursor: move !important;
}

/* Text */
.font-weight-100{
    font-weight: 100;
}
.font-weight-200{
    font-weight: 200;
}
.font-weight-300{
    font-weight: 300;
}
.font-weight-400{
    font-weight: 400;
}
.font-weight-500{
    font-weight: 500;
}
.font-weight-600{
    font-weight: 600;
}
.font-weight-700{
    font-weight: 700;
}
.font-weight-800{
    font-weight: 800;
}
.font-weight-900{
    font-weight: 900;
}

.color-inherit{
    color: inherit !important;
}

/* Buttons */
.btn.btn-nofocus:focus {
    outline: none;
    box-shadow: none;
}

/* Cards */
.card-body{
    border-radius: inherit;
}
.card-body-border-left{
    content: '';
    height: 100%;
    width: 6px;
    position: absolute;
    left: 0;
    top: 0;
    border-top-left-radius: inherit;
    border-bottom-left-radius: inherit;
}
.card-shadow{
    transition: 0.4s;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}
.card-shadow:hover{
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
.card-hover.bg-success:hover{
    background-color: #157347 !important;
}
.card-hover.bg-light:hover{
    background-color: #e8e8e8 !important;
}

/* Colors */
.border-success-dark{
    border-color: #146c43 !important;
}
.bg-secondary-light{
    background-color: #d0d7dc;
}

/* Bootstrap expansion */
.form-check-input {
    clear: left;
}
.form-switch.form-switch-sm .form-check-input {
    height: 1rem;
    width: calc(1rem + 0.75rem);
    border-radius: 2rem;
}
.form-switch.form-switch-md .form-check-input {
    height: 1.5rem;
    width: calc(2rem + 0.75rem);
    border-radius: 3rem;
}
.form-switch.form-switch-lg .form-check-label {
    margin-left: .5rem;
    margin-top: 0.5rem;
}
.form-switch.form-switch-lg .form-check-input {
    height: 2rem;
    width: calc(3rem + 0.75rem);
    border-radius: 4rem;
}
.form-switch.form-switch-xl .form-check-input {
    height: 2.5rem;
    width: calc(4rem + 0.75rem);
    border-radius: 5rem;
}
input[type="number"].no-increment-buttons {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}
input[type="number"].no-increment-buttons::-webkit-inner-spin-button,
input[type="number"].no-increment-buttons::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.input-group .btn-group-vertical .btn{
    border-radius: 0!important;
}