/* colours */
:root {
    --primary: #FFE9D2;
    --secondary: #FFE1C4;
    --title: #FF8816;
}

/* layout styles */
body {
    max-width: 768px;
    margin: 0 auto;
}

nav {
    background: var(--primary);
    border-bottom: 10px solid var(--secondary);
}

nav a {
    text-transform: uppercase;
    color: var(--title);
}

nav a span {
    font-weight: bold;
}

nav .sidenav-trigger {
    margin: 0;
}

.preloader-wrapper.very-big {
  width: 100px;
  height: 100px;
}

.header .header-icon img {
    width: 30px;
}

.theme-dark label {
    background-color: inherit !important;
}

.theme-dark select {
    background-color: #27292c !important;
    color: #898989 !important;
}

.theme-dark .modal-header,
.theme-dark .modal-footer {
    border-color: rgba(255, 255, 255, 0.05);
}

#parametersModal {
    z-index: 999999;
}

/* station styles */
.stations {
    margin-top: 20px;
}

.stations .row {
    position: relative;
}

.stations .row .pop {
    position: absolute;
    top: 0;
    left: 0;
}

.card-panel.station {
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0px 1px 3px rgba(90, 90, 90, 0.1);
    display: grid;
    grid-template-columns: 2fr 6fr 1fr;
    grid-template-areas: "image details delete";
    position: relative;
}

.station img {
    grid-area: image;
    max-width: 60px;
}

.station-details {
    grid-area: details;
    margin-top: 6px;
}

.station-delete {
    grid-area: delete;
    position: absolute;
    bottom: 0px;
    right: 0px;
}

.station-delete i {
    font-size: 18px;
}

.station-title {
    font-weight: bold;
}

.station-ingredients {
    font-size: 0.8em;
}

/* form-styles */
.add-btn {
    background: var(--title) !important;
}

input {
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
}

.side-form button {
    background: var(--title);
    box-shadow: 1px 1px 3px rgba(90, 90, 90, 0.2);
}

form .input-field {
    margin-top: 30px;
}

