/**
 * Theme Style File.
 * For all pages.
 *
 * @author  Indobisa.com <mail@indobisa.com>
 */

.button {
    cursor: pointer;
    border: none;
    border-radius: 5px;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    box-shadow: 0 1px 6px rgb(0 0 0 / 12%), 0 1px 4px rgb(0 0 0 / 24%);
    opacity: 1;
}

.button.icon {
    background: none;
    box-shadow: none;
    border-radius: 0;
    font-size: 15px;
    padding: 10px;
}

.button.small {
    font-size: 15px;
    padding: 5px;
}

.button.medium {
    font-size: 20px;
    padding: 10px;
}

.button.large {
    font-size: 30px;
    padding: 15px;
}

.button:hover {
    opacity: 0.8;
}

.button.success {
    background-color: lightGreen;
    color: white;
}

.button.failed {
    background-color: red;
    color: white;
}

.button.warning  {
    background-color: yellow;
    color: black;
}

.button.primary  {
    background-color: rgb(239, 239, 239);
    color: black;
}

.leading {
    font-size: 20px;
}

.leading-heading {
    font-size: 30px;
    font-weight: normal;
}

.row, .column {
    padding: 5px;
}

.row {
    display: flex;
    flex-direction: row;
}

.row.x-center {
    justify-content: center;
}

.row.x-end {
    justify-content: flex-end;
}

.row.y-center {
    align-items: center;
}

.row.y-end {
    align-items: flex-end;
}

.column {
    display: flex;
    flex-direction: column;
}

.column.x-center {
    align-items: center;
}

.column.x-end {
    align-items: flex-end;
}

.column.y-center {
    justify-content: center;
}

.column.y-end {
    justify-content: flex-end;
}

.row.xy-center, .column.xy-center {
    justify-content: center;
    align-items: center;
}

.row.xy-end, .column.xy-end {
    justify-content: flex-end;
    align-items: flex-end;
}

.spacer {
    display: block;
    background: none;
    border: none;
    content: '';
    padding: 0;
}

.spacer.small {
    margin: 10px;
}

.spacer.medium {
    margin: 20px;
}

.spacer.large {
    margin: 30px;
}

.navbar .list {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    padding: 0;
}

.navbar .list .item {
    margin-right: 15px;
    text-decoration: none;
    color: white;
}

.navbar .menu-button {
    display: none;
}

.inline {
    display: inline;
}

.uppercase {
    text-transform: uppercase;
}

.vertical-center {
    vertical-align: middle;
}

.horizontal-center {
    text-align: center;
}

.grow {
    flex-grow: 1;
}

.block {
    display: block;
}

.full-width {
    width: 100%;
}

.hidden {
    display: none;
}

.list-no-style {
    list-style: none;
    padding: 0;
}

.list-no-style li {
    padding: 5px;
}

.no-margin {
    margin: 0;
}

.no-padding {
    padding: 0;
}

.small-text {
    font-size: 14px;
}

.medium-text {
    font-size: 18px;
}

.large-text {
    font-size: 32px;
}

.cursor-pointer {
    cursor: pointer;
}

.hover {
    opacity: 1;
}

.hover:hover {
    opacity: 0.8;
}

.shadow-border {
    box-shadow: 0 1px 6px rgb(0 0 0 / 12%), 0 1px 4px rgb(0 0 0 / 24%);
}

.alert {
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
    background-color: #f8d7da;
    box-shadow: 0 1px 6px rgb(0 0 0 / 12%), 0 1px 4px rgb(0 0 0 / 24%);
}

::-webkit-scrollbar {
    width: 8px;
    background: lightGrey;
}

::-webkit-scrollbar-thumb {
    background: grey;
}

body {
    margin: 0 !important;
    padding: 0 !important;
    font-family: sans-serif !important;
    min-height: 100vh !important;
}

header, main, footer {
    padding: 0 10px 10px 0;
}

header, footer {
    color: white;
    background-color: green;
    box-shadow: 0 1px 6px rgb(0 0 0 / 12%), 0 1px 4px rgb(0 0 0 / 24%);
    padding-left: 10px;
    padding-right: 10px;
}

header h1 {
    font-weight: 500;
    font-size: 20px;
}

footer a {
    color: white;
    margin: 10px;
}