/******************************************************************************\
|                                                                              |
|                                keyframes.scss                                |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the visual styling rules used in this application.       |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
@keyframes blinking-keyframes {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bouncing-keyframes {
  0% {
    transform: translateY(0);
  }
  33% {
    transform: translateY(-25%);
  }
  66% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes contracting-keyframes {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes expanding-keyframes {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes flipping-keyframes {
  0% {
    transform: rotateY(0deg);
    moz-transform: rotateY(0deg);
    ms-transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(90deg);
    moz-transform: rotateY(90deg);
    ms-transform: rotateY(90deg);
  }
  100% {
    transform: rotateY(0deg);
    moz-transform: rotateY(0deg);
    ms-transform: rotateY(0deg);
  }
}
@keyframes growing-keyframes {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes growing-bounce-keyframes {
  0% {
    transform: scale(0);
  }
  75% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes shimmying-keyframes {
  0% {
    transform: translateX(0);
  }
  33% {
    transform: translateX(-5%);
  }
  66% {
    transform: translateX(5%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes squeezing-keyframes {
  0% {
    transform: scaleX(1);
  }
  33% {
    transform: scaleX(1.1);
  }
  66% {
    transform: scaleX(0.9);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes shrinking-keyframes {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes shrinking-bounce-keyframes {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes spinning-keyframes {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spinning3d-keyframes {
  from {
    transform: rotateY(0deg);
    moz-transform: rotateY(0deg);
    ms-transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
    moz-transform: rotateY(360deg);
    ms-transform: rotateY(360deg);
  }
}
@-webkit-keyframes spinning3d-keyframes {
  from {
    -webkit-transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(360deg);
  }
}
@keyframes tilting-keyframes {
  0% {
    transform: rotate(0);
  }
  33% {
    transform: rotate(-10deg);
  }
  66% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes wobbling-keyframes {
  0% {
    transform: scale(1);
  }
  33% {
    transform: scale(1.1);
  }
  66% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
/******************************************************************************\
|                                                                              |
|                               _animation.scss                                |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the visual styling rules used in this application.       |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
.blinking {
  animation: blinking-keyframes 0.3s ease-in-out;
}

.bouncing {
  animation: bouncing-keyframes 0.3s ease-in-out;
}

.contracting {
  animation: contracting-keyframes 0.3s ease-in-out;
}

.expanding {
  animation: expanding-keyframes 0.3s ease-in-out;
}

.uncontracted {
  transform: scale(1.1);
}

.flipping {
  animation: flipping-keyframes 0.3s ease-in-out;
}

.growing-bounce {
  animation: growing-bounce-keyframes 0.3s ease-in-out;
}

.shimmying {
  animation: shimmying-keyframes 0.3s ease-in-out;
}

.spinning {
  animation: spinning-keyframes 2s linear infinite;
}

.squeezing {
  animation: squeezing-keyframes 0.3s ease-in-out;
}

.shrinking-bounce {
  animation: shrinking-bounce-keyframes 0.3s ease-in-out;
}

.tilting {
  animation: tilting-keyframes 0.3s ease-in-out;
}

.wobbling {
  animation: wobbling-keyframes 0.3s ease-in-out;
}

/******************************************************************************\
|                                                                              |
|                                 _index.scss                                  |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the visual styling rules used in this application.       |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
/******************************************************************************\
|                                                                              |
|                                  _index.scss                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the visual styling rules used in this application.       |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
/******************************************************************************\
|                                                                              |
|                                _colors.scss                                  |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
/******************************************************************************\
|                                                                              |
|                            _colored-sliders.scss                             |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the visual styling rules used in this application.       |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
/******************************************************************************\
|                                                                              |
|                                  _theme.scss                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the visual styling rules used in this application.       |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
.navbar-inverse .navbar-nav > li.active > a, .navbar-inverse .navbar-nav > li.active a:hover, .navbar-inverse .navbar-nav > li.active a:focus {
  background-color: darkened(var(--primary-color), 10%);
}

#page h1 i, #page h2 i, #page h3 i {
  color: var(--primary-color);
}
#page a, #page a:hover {
  color: var(--primary-color);
}

.sidebar .panel .header > label {
  color: var(--primary-color);
}

.error-icon {
  color: var(--primary-color);
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #303040;
    color: #cfcfe1;
  }
  .splash .brand .last {
    color: #7070a7 !important;
  }
  select, button {
    color: black;
  }
  .panel, .section {
    background: #1d1d2e !important;
    border-color: #30304e !important;
  }
}
/******************************************************************************\
|                                                                              |
|                                 _index.scss                                  |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the visual styling rules used in this application.       |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
/******************************************************************************\
|                                                                              |
|                                  dialogs.scss                                |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the visual styling rules used in this application.       |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
.modal {
  pointer-events: none;
  padding-bottom: 30px;
}
.modal .modal-dialog {
  display: flex;
  max-width: 100%;
  margin: auto;
}
.modal .modal-dialog .modal-content {
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  box-shadow: 10px 10px 50px 10px rgba(0, 0, 0, 0.5);
  pointer-events: auto;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  width: auto;
  margin: auto;
  width: 600px;
  min-width: 300px;
}
.modal .modal-dialog .modal-content .modal-header {
  padding: 10px;
}
.modal .modal-dialog .modal-content .modal-header i {
  color: var(--primary-color);
}
.modal .modal-dialog .modal-content .modal-header h1 {
  font-size: 24px;
  margin: 0;
}
.modal .modal-dialog .modal-content .modal-header button.close {
  margin-top: 3px;
  margin-right: 5px;
}
.modal .modal-dialog .modal-content .modal-header.ui-draggable-handle {
  cursor: move;
}
.modal .modal-dialog .modal-content .modal-body .icon {
  font-size: 200%;
  margin-left: 10px;
  margin-right: 10px;
  display: inline-block;
}
.modal .modal-dialog .modal-content .modal-body .icon + .status-message {
  display: inline-block;
}
.modal .modal-dialog .modal-content .modal-footer {
  padding: 10px;
}

.status-dialog .modal-body {
  text-align: center;
}

@media (min-width: 768px) and (max-height: 550px) {
  .modal {
    text-align: center;
  }
  .modal:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
  }
  .modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
  }
}
.modal.backdrop {
  pointer-events: all;
  background-color: rgba(0, 0, 0, 0.25);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: hidden;
}

.modal-extents {
  width: 100%;
  margin: auto;
}

@media (min-width: 480px) {
  .modal .modal-dialog .modal-header {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
  }
  .modal .modal-dialog .modal-body.flexible {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .modal .modal-dialog .modal-footer {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
  }
  .modal .modal-dialog .modal-footer .buttons {
    float: right;
    text-align: left;
    flex-shrink: 0;
    margin-left: 10px;
  }
  .modal .modal-dialog .modal-footer .buttons .btn, .modal .modal-dialog .modal-footer .buttons .btn + .btn {
    margin-bottom: 5px;
  }
  .modal .modal-dialog:not(.ui-resizable) .modal-body .vertically.scrollable {
    max-height: 220px;
  }
  .modal .modal-dialog:not(.ui-resizable) .modal-body {
    overflow: auto;
  }
}
body[device=desktop] .modal.in .modal-dialog {
  transform: translateZ(0);
}

@media (max-width: 480px) {
  .modal-extents {
    height: auto !important;
    margin: 0;
  }
  .modal {
    padding-bottom: 0;
  }
  .modal .modal-dialog .modal-header .modal-title {
    margin-right: 0;
  }
  .modal .modal-dialog .modal-header .buttons {
    margin-left: 0;
  }
  .modal .modal-dialog .modal-body .vertically.scrollable {
    max-height: none;
  }
  .modal .modal-dialog .modal-footer .notes {
    float: none;
    text-align: left;
  }
  .modal .modal-dialog .modal-footer .buttons {
    margin-bottom: 10px;
  }
  .modal .modal-dialog:not(.maximized) {
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
body[device=phone] .modal-dialog {
  width: 100%;
  margin: 0 !important;
}
body[device=phone] .modal-dialog .modal-content {
  height: 100%;
  border-width: 0;
  border-radius: 0;
}
body[device=phone] .modal-dialog .modal-content .modal-footer {
  text-align: center;
}

/******************************************************************************\
|                                                                              |
|                           _dialog-transitions.scss                           |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the visual styling rules used in this application.       |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
.modal.opening {
  -webkit-animation: opening 0.5s;
  -moz-animation: opening 0.5s;
  -ms-animation: opening 0.5s;
  -o-animation: opening 0.5s;
  animation: opening 0.5s;
}
@keyframes opening {
  from {
    opacity: 0;
    transform: translate(0, -50%);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.modal.closing {
  -webkit-animation: closing 0.5s;
  -moz-animation: closing 0.5s;
  -ms-animation: closing 0.5s;
  -o-animation: closing 0.5s;
  animation: closing 0.5s;
}
@keyframes closing {
  from {
    opacity: 1;
    transform: translate(0, 0);
  }
  to {
    opacity: 0;
    transform: translate(0, -50%);
  }
}

.modal.closed {
  display: none;
}

.modal.minimizing {
  -webkit-animation: minimizing 0.5s;
  -moz-animation: minimizing 0.5s;
  -ms-animation: minimizing 0.5s;
  -o-animation: minimizing 0.5s;
  animation: minimizing 0.5s;
}
@keyframes minimizing {
  from {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  to {
    opacity: 0;
    transform: translate(-25%, 50%) scale(0);
  }
}

.modal.unminimizing {
  -webkit-animation: unminimizing 0.5s;
  -moz-animation: unminimizing 0.5s;
  -ms-animation: unminimizing 0.5s;
  -o-animation: unminimizing 0.5s;
  animation: unminimizing 0.5s;
}
@keyframes unminimizing {
  from {
    opacity: 0;
    transform: translate(-25%, 50%) scale(0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

.modal.minimized {
  display: none;
}

/******************************************************************************\
|                                                                              |
|                                 _index.scss                                  |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the visual styling rules used in this application.       |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
/******************************************************************************\
|                                                                              |
|                                  _badges.js                                  |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the visual styling rules used in this application.       |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
.badge {
  font-weight: bold;
  padding: 1px 3px;
  border-width: 2px;
  border-style: solid;
  border-color: white;
  background: var(--primary-color);
}
.badge i {
  height: 10px;
  min-width: 10px;
  font-size: 85%;
  vertical-align: top;
  margin: 1px;
  color: white;
}
.badge.active {
  cursor: pointer;
}
.badge::empty {
  display: none;
}

.badge:empty {
  display: none;
}

.round .badge {
  border-radius: 10px;
}

.rounded .badge {
  border-radius: 5px;
}

/******************************************************************************\
|                                                                              |
|                                  _buttons.scss                               |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the visual styling rules used in this application.       |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
.buttons button {
  font-size: 16px !important;
  width: 100px;
  padding: 3px 20px;
  margin: 5px;
  border-radius: 15px;
  border-width: 2px;
  border-style: solid;
}

.btn {
  outline: none !important;
  background: #9090ba;
  border: none;
}
.btn i {
  margin-right: 5px;
}
.btn:hover, .btn:active {
  background: #7070a7;
  border-color: #7070a7;
}

.btn-primary {
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-primary:hover, .btn-primary:active {
  background: darkened(var(--primary-color), 10%);
  border-color: darkened(var(--primary-color), 10%);
}

.btn-primary[disabled] {
  background: faded(var(--primary-color), 0.5);
  border-color: faded(var(--primary-color), 0.5);
}
.btn-primary[disabled]:hover, .btn-primary[disabled]:active {
  background: darkened(faded(var(--primary-color), 0.5), 10%);
  border-color: darkened(faded(var(--primary-color), 0.5), 10%);
}

.btn.btn-sm {
  width: 25px;
  padding: 0;
}
.btn.btn-sm i {
  margin-right: 0;
}

/******************************************************************************\
|                                                                              |
|                                _controls.scss                                |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
.controls .control {
  margin: 10px;
}
.controls .control label {
  display: block;
}
.controls .control input {
  margin: auto;
}
.controls .inline.control label {
  display: inline-block;
}

/******************************************************************************\
|                                                                              |
|                                  _forms.scss                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the visual styling rules used in this application.       |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
input {
  outline: none !important;
}

textarea {
  width: 100%;
  height: 100%;
  display: flex;
  padding: 5px;
  border-color: lightgrey;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  outline: none;
}

select {
  -webkit-appearance: none;
  border-radius: 0;
  padding: 0 10px;
  border-width: 1px;
  border-style: solid;
  border-color: lightgrey;
  border-radius: 5px;
  outline: none;
}

input[type=file] {
  display: inline-block;
  outline: none !important;
}
input[type=file]::-webkit-file-upload-button {
  display: none;
}

input[type=number], input[type=text] {
  padding: 0 5px;
  border: 1px solid lightgrey;
}

.input-group .form-control {
  z-index: 0;
}

form .material.swatch {
  margin: 20px auto !important;
}

.form-control {
  font-size: 16px;
}

.input-group-addon i {
  margin: 0;
}

.form-group .checkbox input[type=checkbox], .form-group label input[type=checkbox] {
  margin-top: 10px;
}
.form-group input[type=range], .form-group .scrollbars {
  height: 30px;
}
.form-group .scrollbars {
  padding: 10px;
}

.form-label, .control-label {
  line-height: 30px !important;
}
.form-label i, .control-label i {
  margin-right: 5px;
}

.form-horizontal .form-group {
  margin-left: 0;
  margin-right: 0;
}

.form-horizontal .control-label {
  padding-top: 2px;
}

.required label:after,
label.required:after,
span.required:after {
  content: "*";
  color: #c2002f;
  margin-left: 5px;
}

.alert label {
  margin-right: 10px;
}

.country-code.input-group {
  width: 100px;
}

#country-selector {
  position: absolute;
}

#country-selector .dropdown-menu {
  position: relative;
  margin: 0;
  padding: 0;
}

#country-selector button img {
  margin-top: -3px;
  margin-left: 5px;
}

.country-code.input-group {
  width: 100px;
}

/*
 * validation styles
 */
label.error {
  font-weight: bold;
  color: #c2002f;
  padding-top: 0;
  background: url(../images/forms/error.png) 5px 0px no-repeat;
  padding-left: 30px;
}

label.error:empty {
  display: none;
}

label.error.valid {
  display: none;
}

.form-group.error input,
.form-group.error textarea {
  border: 1px solid #c2002f;
}

/*
 * popover styles
 */
.popover {
  max-width: 360px;
  width: auto;
}

@media (min-width: 480px) {
  form.form-horizontal .form-group > label {
    width: 25%;
    float: left;
    margin-right: 15px;
  }
  form.form-horizontal .form-group > .controls, form.form-horizontal .form-group > .static-controls,
  form.form-horizontal .form-group > .form-control, form.form-horizontal .form-group > .form-control-static {
    float: left;
    width: 50%;
  }
}
@media (max-width: 991px) {
  #page form.form-horizontal .form-group {
    width: 80%;
    margin-left: 10%;
  }
  #page form.form-horizontal .form-group > label {
    text-align: left;
    width: 100%;
  }
  #page form.form-horizontal .form-group > .controls, #page form.form-horizontal .form-group > .static-controls,
  #page form.form-horizontal .form-group > .form-control, #page form.form-horizontal .form-group > .form-control-static {
    width: 100%;
  }
}
/******************************************************************************\
|                                                                              |
|                                 _inputs.scss                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
.input {
  text-align: center;
}
.input .values {
  display: flex;
  white-space: nowrap;
}
.input .values .min {
  float: left;
  text-align: left;
  width: 33%;
  color: darkgrey;
}
.input .values .max {
  float: right;
  text-align: right;
  width: 33%;
  color: darkgrey;
}
.input .values input[type=number] {
  text-align: center;
  width: 33%;
  -moz-appearance: textfield;
}
.input .values input[type=number]::-webkit-outer-spin-button, .input .values input[type=number]::-webkit-inner-spin-button {
  display: none;
}
.input[type=range] {
  margin-top: 5px;
}

.radio-inline {
  padding-top: 0 !important;
}

input[type=color] {
  border: none;
  padding: 3px 5px;
  border-radius: 10px;
  background: none;
}

input[type=color i]::-webkit-color-swatch {
  height: 10px;
  border-width: 2px;
  border-style: solid;
  border-color: #e0e0f0;
  border-radius: 10px;
}

/******************************************************************************\
|                                                                              |
|                               _popovers.scss                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the visual styling rules used in this application.       |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
.popover {
  max-width: 500px;
  border-color: #ededed;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.popover.right > .arrow {
  border-right-color: transparent;
}
.popover .popover-title {
  font-size: 16px;
  font-weight: bold;
  padding: 10px;
}
.popover .popover-title i, .popover .popover-title .icon {
  margin-right: 5px;
}
.popover .popover-title button.close {
  float: right;
  width: 20px;
  height: 20px;
  margin-left: 10px;
}
.popover .popover-title button.close i {
  font-size: 16px;
  vertical-align: top;
  line-height: 20px;
  margin-right: 0;
}
.popover .popover-title button.close:hover {
  background: darkgrey;
}
.popover .popover-content {
  padding: 10px;
  max-height: 250px;
  overflow: auto;
}
.popover .popover-content > div {
  display: flex;
}
.popover .popover-content .title {
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 1px solid lightgrey;
}
.popover .popover-content .title label {
  display: none !important;
}
.popover .popover-content label {
  display: block;
  margin: 0;
}
.popover .popover-content .info {
  display: block;
}
.popover .popover-content .info > div + div {
  margin-top: 5px;
}
.popover .popover-content .profile-photo {
  margin-right: 10px;
  max-width: 100px;
  max-height: 100px;
  border-radius: 5px;
}

/******************************************************************************\
|                                                                              |
|                               _scrollbars.scss                               |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
.scrollbars ::-webkit-scrollbar-track {
  background-color: white;
}

.horizontal.scrollbars .controls {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.horizontal.scrollbars .controls label {
  margin-bottom: 0;
}
.horizontal.scrollbars .horizontal.scrollbar-container {
  display: block;
  max-width: 100%;
  height: 12px;
  overflow-x: scroll;
  overflow-y: hidden;
}
.horizontal.scrollbars .horizontal.scrollbar-container .content {
  display: block;
  width: 200%;
  height: 12px;
}

.vertical.scrollbars .controls {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.vertical.scrollbars .vertical.scrollbar-container {
  display: block;
  width: 12px;
  overflow-x: hidden;
  overflow-y: scroll;
}
.vertical.scrollbars .vertical.scrollbar-container .content {
  display: block;
  width: 12px;
  height: 200%;
  background: #f0f0f0;
}

/******************************************************************************\
|                                                                              |
|                                 _sliders.scss                                |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the visual styling rules used in this application.       |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
input[type=range] {
  -webkit-appearance: none;
  background: none;
  padding-top: 5px;
}
input[type=range]::-webkit-slider-runnable-track {
  height: 5px;
  border-radius: 3px;
}
input[type=range]::-moz-range-track {
  height: 7px;
  border-radius: 3px;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  margin-top: -8px;
  border-radius: 50%;
  border-width: 2px;
  border-style: solid;
}
input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  margin-top: -4px;
  border-radius: 50%;
  border-width: 2px;
  border-style: solid;
}

/******************************************************************************\
|                                                                              |
|                                  _tabs.scss                                  |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the visual styling rules used in this application.       |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
.nav-tabs {
  border-bottom: 2px solid #9090ba;
  margin-bottom: 10px;
}
.nav-tabs > li {
  margin-bottom: 0;
  margin-top: 10px;
  margin-left: 5px;
  position: relative;
}
.nav-tabs > li > a {
  text-align: center;
  padding: 10px 0;
  min-width: 75px;
  border-width: 2px !important;
}
.nav-tabs > li > a i {
  font-size: 20px;
}

/******************************************************************************\
|                                                                              |
|                               _tooltips.scss                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the visual styling rules used in this application.       |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
.tooltip-inner {
  max-width: 400px;
}

/******************************************************************************\
|                                                                              |
|                                 _index.scss                                  |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the visual styling rules used in this application.       |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
/******************************************************************************\
|                                                                              |
|                              _item-icons.scss                                |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
.icon-grid {
  font-size: 90%;
  line-height: 15px;
}
.icon-grid .item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100px;
  height: 100px;
  pointer-events: none;
  padding: 0 1px;
  margin: 2px 0;
}
.icon-grid .item > .row:first-child {
  display: inline-block;
  position: relative;
}
.icon-grid .item > .row:first-child .icon {
  position: relative;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  border-width: 0;
  border-style: solid;
  pointer-events: auto;
}
.icon-grid .item > .row:first-child .icon > i, .icon-grid .item > .row:first-child .icon > .thumbnail i {
  margin: 0;
  font-size: 35px;
  text-align: center;
}
.icon-grid .item > .row:first-child .icon > i + .fa-info-circle, .icon-grid .item > .row:first-child .icon > .thumbnail i + .fa-info-circle {
  position: absolute;
  font-size: 14px;
  color: white;
  filter: none !important;
}
.icon-grid .item > .row:first-child .icon > i.fa-map-marker + .fa-info-circle, .icon-grid .item > .row:first-child .icon > .thumbnail i.fa-map-marker + .fa-info-circle {
  margin-top: -7px;
}
.icon-grid .item > .row:first-child .icon > i.fa-map-pin + .fa-info-circle, .icon-grid .item > .row:first-child .icon > .thumbnail i.fa-map-pin + .fa-info-circle {
  margin-left: 2px;
  margin-top: -15px;
}
.icon-grid .item > .row:first-child .icon > img, .icon-grid .item > .row:first-child .icon > svg, .icon-grid .item > .row:first-child .icon > .thumbnail {
  width: 50px;
  height: 50px;
  background-size: contain;
  background-position: center;
  pointer-events: none;
}
.icon-grid .item > .row:first-child .icon.colored {
  width: 60px;
  height: 60px;
  border-width: 2px;
}
.icon-grid .item > .row:first-child .owner {
  position: absolute;
  pointer-events: auto;
}
.icon-grid .item > .row:first-child .badges {
  position: absolute;
  display: inline-flex;
  flex-direction: column;
  top: 0;
  right: 0;
  max-width: 100%;
  max-height: 100%;
  pointer-events: auto;
}
.icon-grid .item > .row:first-child .spinner {
  display: none;
  width: 50px;
  height: 50px;
  margin-left: -25px;
  margin-top: -25px;
}
.icon-grid .item > .row:nth-child(2) {
  margin: 2px 0;
}
.icon-grid .item > .row:nth-child(2) .name {
  display: inline-block;
  word-break: break-word;
  padding: 0 4px;
  margin-bottom: -4px;
  pointer-events: auto;
  cursor: default;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
.icon-grid .item > .row:nth-child(2) .name:not([contenteditable=true]) {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-inline-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 30px;
}
.icon-grid .item > .row:nth-child(2) .name[contenteditable=true] {
  border-radius: 0;
  outline-width: 2px;
  outline-style: solid;
  padding: 0 2px;
  margin: 0 2px;
  cursor: text;
  position: relative;
  z-index: 1;
}
.icon-grid .item > .row:nth-child(3) {
  margin: 2px 0;
}
.icon-grid .item > .row:nth-child(3) .details {
  padding: 0 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-inline-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  max-height: 50px;
}
.icon-grid .item > .row:nth-child(3) .details:empty {
  display: none;
}
.icon-grid .item.detailed {
  min-height: 120px;
}
.icon-grid .item.detailed2 {
  min-height: 132px;
}
.icon-grid .item.detailed3 {
  min-height: 147px;
}
.icon-grid .item.selected > .row:first-child .icon, .icon-grid .item.highlighted > .row:first-child .icon {
  border-width: 2px;
  filter: none;
}
.icon-grid .item.selected > .row:nth-child(2) .name, .icon-grid .item.highlighted > .row:nth-child(2) .name {
  color: white;
  background-color: black;
  text-shadow: none;
}
.icon-grid .item.selected::after, .icon-grid .item.highlighted::after {
  border: none;
}
.icon-grid .item.disabled:not(.selected) > .row:first-child .icon,
.icon-grid .item.disabled:not(.selected) > .row:nth-child(2) .name,
.icon-grid .item.disabled:not(.selected) > .row:nth-child(3) .details, .icon-grid .item.disabled.selected > .row:first-child .icon,
.icon-grid .item.disabled.selected > .row:nth-child(2) .name,
.icon-grid .item.disabled.selected > .row:nth-child(3) .details {
  pointer-events: none !important;
}

.round-icons .icon-grid .item > .row:first-child .icon,
.round.auto-corner-icons .icon-grid .item > .row:first-child .icon {
  border-radius: 10%;
}
.round-icons .icon-grid .item > .row:nth-child(2) .name:not([contenteditable=true]),
.round.auto-corner-icons .icon-grid .item > .row:nth-child(2) .name:not([contenteditable=true]) {
  border-radius: 7px;
}
.round-icons .icon-grid .item > .row:nth-child(3) .details,
.round.auto-corner-icons .icon-grid .item > .row:nth-child(3) .details {
  border-radius: 7px;
}

.rounded-icons .icon-grid .item > .row:first-child .icon,
.rounded.auto-corner-icons .icon-grid .item > .row:first-child .icon {
  border-radius: 5%;
}
.rounded-icons .icon-grid .item > .row:nth-child(2) .name:not([contenteditable=true]),
.rounded.auto-corner-icons .icon-grid .item > .row:nth-child(2) .name:not([contenteditable=true]) {
  border-radius: 3px;
}
.rounded-icons .icon-grid .item > .row:nth-child(3) .details,
.rounded.auto-corner-icons .icon-grid .item > .row:nth-child(3) .details {
  border-radius: 3px;
}

.square-icons .icon-grid .item > .row:first-child .icon,
.square.auto-corner-icons .icon-grid .item > .row:first-child .icon {
  border-radius: 0;
}
.square-icons .icon-grid .item > .row:nth-child(2) .name:not([contenteditable=true]),
.square.auto-corner-icons .icon-grid .item > .row:nth-child(2) .name:not([contenteditable=true]) {
  border-radius: 0;
}
.square-icons .icon-grid .item > .row:nth-child(3) .details,
.square.auto-corner-icons .icon-grid .item > .row:nth-child(3) .details {
  border-radius: 0;
}

body:not(.icon-backgrounds) .icon-grid .item:not(.selected) .icon.colored, body:not(.icon-backgrounds) .app-icons .item:not(.selected) .icon.colored {
  background: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
body:not(.icon-backgrounds) .dropdown-menu li > a .icon.colored {
  background: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.round-icons .icon-grid .item > .row:first-child .colored.icon,
.round.auto-corner-icons .icon-grid .item > .row:first-child .colored.icon {
  border-radius: 50%;
}

.rounded-icons .icon-grid .item > .row:first-child .colored.icon,
.rounded.auto-corner-icons .icon-grid .item > .row:first-child .colored.icon {
  border-radius: 25%;
}

.square-icons .icon-grid .item > .row:first-child .colored.icon,
.square.auto-corner-icons .icon-grid .item > .row:first-child .colored.icon {
  border-radius: 0;
}

body[device=phone] .icon-grid, body[device=tablet] .icon-grid {
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-align: center;
}

@media (min-width: 360px) and (max-width: 480px) {
  .items > .icon-grid > .item {
    width: 88px;
  }
}
@media (max-width: 320px) {
  .panel .icon-grid > .item {
    width: 90px;
  }
  .page .icon-grid > .item {
    width: 75px;
  }
}
/******************************************************************************\
|                                                                              |
|                                  _items.scss                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
.items {
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
}
.items > :first-child {
  width: 100%;
  min-height: 100%;
  padding: 10px;
}
.items .item.highlighted::after {
  border: none;
}
.items.drag-selectable > :first-child {
  position: relative;
}
.items.drag-selectable > .icon-grid {
  padding-right: 0;
}
.items.drag-selectable > .tile-grid {
  padding-right: 0;
  padding-bottom: 0;
}
.items .empty {
  text-align: left;
  padding: 5px;
}
.items .owner {
  background: none !important;
}

.panel .items > :first-child {
  padding: 0;
}

.item .icon > .marker {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  margin-left: -12px;
  border-radius: 12px;
  border-width: 2px;
  border-style: solid;
}
.item .icon > .marker i {
  line-height: 24px;
}
.item .details {
  pointer-events: auto;
}
.item .details i.fa.fa-star {
  font-size: 10px !important;
  vertical-align: top;
  text-align: center;
  margin: 2px;
}

form > .items {
  text-align: center;
  height: auto;
}

.form-group .items > :first-child {
  padding: 0;
}

@media (min-width: 480px) {
  form .items.inline {
    margin: -5px;
    padding: 5px;
    padding-bottom: 0;
  }
  form .items.inline > :first-child {
    margin: 0;
    padding: 0;
    position: static;
  }
}
/******************************************************************************\
|                                                                              |
|                                   _index.scss                                |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
/******************************************************************************\
|                                                                              |
|                                _headers.scss                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the visual styling rules used in this application.       |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
#header #brand {
  display: flex;
}
#header #brand .icon {
  display: flex;
  min-width: 50px;
  height: 75%;
  width: auto;
  margin: auto;
}
#header #brand .title {
  margin: auto 0;
}
#header .navbar {
  background-color: var(--primary-color);
  border: none;
  height: 50px;
  margin: 0;
}
#header .navbar .navbar-brand {
  padding: 0 15px;
  color: white;
}
#header .navbar .navbar-nav {
  margin: 0;
  white-space: nowrap;
}
#header .navbar .navbar-nav > li {
  display: inline-block;
}
#header .navbar .navbar-nav > li > a {
  color: white;
  cursor: pointer;
  line-height: 30px;
  padding: 10px 15px;
  min-width: 50px;
  text-align: center;
}
#header .navbar .navbar-nav > li > a i + span {
  margin-left: 5px;
}
#header .navbar .navbar-nav > li.active {
  background-color: color-mix(in srgb, var(--primary-color) 90%, black);
}

/******************************************************************************\
|                                                                              |
|                                 _icons.scss                                  |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the visual styling rules used in this application.       |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
.alert-icon {
  color: var(--primary-color);
}

.pixelated {
  image-rendering: pixelated;
}

i.rotated {
  transform: rotate(90deg);
}
i.derotated {
  transform: rotate(-90deg);
}
i.reversed {
  transform: scaleX(-1);
}
i.flipped {
  transform: scaleY(-1);
}
i.rotated.flipped {
  transform: scaleY(-1) rotate(90deg);
}
i.rotated.reversed {
  transform: scaleX(-1) rotate(90deg);
}

/******************************************************************************\
|                                                                              |
|                                 _layout.scss                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the visual styling rules used in this application.       |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
html,
body {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

body {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
body > svg {
  position: absolute;
}

body > div {
  display: flex;
  flex-direction: column;
}

#header {
  height: 50px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

#main {
  position: relative;
  width: 100%;
  flex-grow: 1;
  overflow: hidden;
}
#main > split-view {
  position: absolute;
}

.main.container {
  flex-grow: 1;
}

#overlays {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  pointer-events: none;
}

#background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.full-screen {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.page {
  padding: 0 50px;
}
.page h1:first-child {
  margin-top: 0;
}

.controls.panel {
  text-align: center;
}

canvas {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.mainbar {
  overflow: auto;
}

#logo {
  position: absolute;
  margin: 10px;
  right: 0;
}
#logo img {
  height: 40px;
}

.overlay {
  display: flex;
  flex-direction: column;
  pointer-events: none;
}
.overlay * {
  pointer-events: auto;
}

#index {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  margin: 10px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 5px;
}

#info h1, #info h2 {
  text-align: center;
}
#info .subheading {
  text-align: center;
}

.figure img {
  max-width: 100%;
  border: 2px solid lightgrey;
  margin: 10px;
}
.figure + p {
  margin-top: 10px;
}

.panel {
  box-shadow: none;
}

a, a:hover {
  color: #894b9d;
}

span.count {
  margin-right: 5px;
}

span.highlighted {
  background: lightblue;
}

.title + .buttons {
  margin-top: 5px;
}

.fineprint {
  font-size: 12px;
}

fieldset {
  margin-top: 20px;
}
fieldset legend {
  color: var(--primary-color);
}

.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

.collapsed .expander .expand {
  display: block;
}
.collapsed .expander .collapse {
  display: none;
}
.collapsed .details {
  display: none;
}

.credits .credit {
  font-style: italic;
}
.credits .credit + .name {
  float: right;
}

body[device=desktop] .mobile-only {
  display: none !important;
}

body[device=phone] .desktop-only,
body[device=tablet] .desktop-only {
  display: none !important;
}

@media (min-width: 480px) {
  .credits {
    width: 75%;
    margin: auto;
  }
}
/******************************************************************************\
|                                                                              |
|                               _validation.scss                               |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2016-2020, Megahed Labs LLC, www.sharedigm.com          |
\******************************************************************************/
.colored span.success {
  color: #63cf7e;
}
.colored span.caution {
  color: #f5af3e;
}
.colored span.warning {
  color: #f56e3e;
}
.colored span.error {
  color: #f47171;
}

label.error {
  font-weight: bold;
  color: #f47171;
  padding-top: 0;
  background: url(../images/forms/error.png) 5px 0px no-repeat;
  padding-left: 30px;
}

label.error:empty {
  display: none;
}

label.error.valid {
  display: none;
}

.form-group.error input,
.form-group.error textarea {
  border: 1px solid #f47171;
}

td.error {
  outline: 1px solid #f56e3e;
  outline-offset: -2px;
}

/******************************************************************************\
|                                                                              |
|                                 _pages.scss                                  |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the visual styling rules used in this application.       |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
#page {
  display: flex;
  flex-direction: column;
  position: relative;
  line-height: 2em;
  min-height: 100%;
  overflow-y: auto;
}
#page .container {
  width: 100%;
  padding: 30px 50px;
  margin: 0;
  flex-grow: 1;
}
#page .material.swatch {
  display: flex;
  justify-content: center;
  width: 200px;
  height: 200px;
  margin: 50px auto;
  border-width: 4px;
  border-style: solid;
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.3);
}
#page .material.swatch.round {
  border-radius: 50%;
}
#page .material.swatch.round.long {
  width: 300px;
  border-radius: 100px;
  --border-radius: 100px;
  height: 150px;
  margin: 45px auto !important;
}
#page .material.swatch.rounded {
  border-radius: 25%;
}
#page .material.swatch h1, #page .material.swatch h2, #page .material.swatch h3, #page .material.swatch label {
  display: flex;
  margin: auto;
  color: white;
  z-index: 0;
  text-align: center;
  pointer-events: none;
}
#page .flat.shaded .shaded.material.swatch {
  box-shadow: none;
}
#page .chalk .shaded.material.swatch, #page .plastic .shaded.material.swatch, #page .glass .shaded.material.swatch, #page .metal .shaded.material.swatch {
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.3);
}
#page .shaded.material.swatch.flat {
  box-shadow: none;
}
#page .shaded.material.swatch.chalk, #page .shaded.material.swatch .plastic, #page .shaded.material.swatch .glass, #page .shaded.material.swatch .metal {
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.3);
}
#page #footer {
  bottom: 0;
  width: 100%;
  color: #9090ba;
  background: #404050;
  border-top: 5px solid var(--primary-color);
}
#page #footer .container {
  text-align: center;
}
#page #footer .container .logo {
  height: 100px;
  margin: 10px;
}
#page #footer .container a {
  color: lightgrey;
}
#page #footer .container a:hover {
  color: white;
}
#page i.success {
  color: #63cf7e;
}
#page i.warning {
  color: #f56e3e;
}

@media (min-width: 768px) {
  .figure {
    max-width: 75%;
    margin: auto;
  }
}
@media (max-width: 768px) {
  #page .container {
    padding: 20px !important;
  }
  #page .section {
    margin: 0 -20px !important;
  }
}
/******************************************************************************\
|                                                                              |
|                                 _panels.scss                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
.panel {
  padding: 10px;
  border-width: 2px;
  border-style: solid;
  border-color: #e0e0f0;
  border-radius: 10px;
}
.panel .header label {
  text-align: left;
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 10px;
}
.panel .header input[type=color] {
  height: 25px;
  float: right;
}
.panel label {
  line-height: 20px;
}
.panel + .panel {
  margin-left: 20px;
}
.panel .panel {
  padding: 10px;
  margin: 10px;
  background: none;
}
.panel .panel + .panel {
  margin-left: 10px;
}
.panel.shaded .panel {
  border-color: white;
}

/******************************************************************************\
|                                                                              |
|                                  _plots.scss                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the visual styling rules used in this application.       |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
.plot {
  display: flex;
  justify-content: center;
  padding: 20px;
}
.plot canvas {
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}
.plot.histogram {
  height: 100%;
}

.plots .plot {
  max-width: 50%;
  max-height: 50%;
  margin: auto;
}

/******************************************************************************\
|                                                                              |
|                                _sections.scss                                |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the visual styling rules used in this application.       |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
#page .section {
  padding: 30px 50px;
  margin: 30px -50px;
  background-color: #eeeef5;
}
#page .section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}
#page .section h2 i, #page .section h2 .icon {
  float: left;
  height: 1em !important;
  margin-right: 10px;
}
#page .section .well {
  border: none;
}
#page .section .items {
  height: auto;
}
#page .section.colored {
  color: white;
}
#page .section.colored h2 {
  color: white !important;
  border-color: white !important;
}
#page .section.colored h2 i {
  color: white !important;
}
#page .section.colored a {
  color: white !important;
  text-decoration: underline;
}
#page .section.colored a:hover {
  color: white !important;
}
#page .section.colored a:active {
  color: white !important;
}
#page .section.colored .icon i {
  color: white !important;
}

.app .page .section {
  padding: 30px;
}

@media (min-width: 768px) {
  .page .section > .row {
    display: flex;
    flex-direction: row;
  }
  .page .section:nth-of-type(even) > .row {
    flex-direction: row-reverse;
  }
  .page .section:last-child {
    margin-bottom: -50px;
  }
}
body[device=phone] #page .section {
  padding: 20px;
}
body[device=phone] #page .section h2 {
  margin-top: 0;
}
body[device=phone] #page .section h2 .icon {
  margin-top: -3px;
}
body[device=phone] #page .section > .row {
  flex-direction: column;
}
body[device=phone] #page .section > .row > div + div {
  margin-top: 20px;
}

/******************************************************************************\
|                                                                              |
|                                 _spinners.scss                               |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the visual styling rules used in this application.       |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
.spinner {
  display: none;
  position: absolute;
  border-width: 25px;
  border-style: solid;
  border-top-width: 25px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  margin-left: -50px;
  margin-top: -50px;
  object-fit: cover;
  box-shadow: none;
  border-color: #9090ba;
  border-top-color: var(--primary-color);
}

.loading {
  max-height: 100%;
  overflow: hidden;
}
.loading::after {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: white;
}

.loading .spinner {
  display: block !important;
  z-index: 2;
  animation: spinning-keyframes 2s linear infinite;
  -webkit-transform: rotateZ(360deg);
}

/******************************************************************************\
|                                                                              |
|                               _splitters.scss                                |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the visual styling rules used in this application.       |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
.split-view {
  display: block;
  width: 100%;
  height: 100%;
}
.split-view.horizontal {
  display: flex;
}
.split-view > .split {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.split-view > .gutter {
  display: flex;
  background-repeat: no-repeat;
  background-position: 50%;
  border-style: solid;
  overflow: hidden;
  background: #9090ba;
  border-color: #7070a7;
}
.split-view > .gutter .handle {
  margin: auto;
  image-rendering: pixelated;
}
.split-view > .gutter.gutter-horizontal {
  border-width: 0 1px;
  cursor: ew-resize;
}
.split-view > .gutter.gutter-horizontal .handle {
  width: 5px;
  height: 100px;
  background-image: url("../images/splitters/horizontal-grip.png");
  background-repeat-x: no-repeat;
}
.split-view > .gutter.gutter-vertical {
  border-width: 1px 0;
  cursor: ns-resize;
}
.split-view > .gutter.gutter-vertical .handle {
  width: 100px;
  height: 5px;
  background-image: url("../images/splitters/vertical-grip.png");
  background-repeat-y: no-repeat;
}
.split-view > .split.split-horizontal,
.split-view > .gutter.gutter-horizontal {
  height: 100%;
  float: left;
}

body:not(.binary) .contents.split-view > .split.mainbar::after {
  content: "";
  box-shadow: inset 0px 0px 10px black;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
}
body:not(.binary) .desktop.app .contents.split-view > .split.mainbar::after {
  box-shadow: none;
}

.split .split-view > .split::after {
  box-shadow: none;
}

/******************************************************************************\
|                                                                              |
|                                 _tables.scss                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the visual styling rules used in this application.       |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
table {
  display: table;
  width: 100%;
  border-collapse: collapse;
}
table th {
  padding: 5px;
  font-weight: normal;
  outline: none;
  white-space: nowrap;
  text-align: center;
  background: #9090ba;
  border-width: 1px;
  border-style: solid;
  border-color: #7070a7;
}
table th:not(:last-child) {
  border-right-width: 0;
}
table th input[type=radio], table th input[type=checkbox] {
  margin-right: 5px;
}
table th label {
  font-weight: normal;
}
table tbody tr.selected {
  background: var(--primary-color);
  color: white;
}
table tbody tr.highlighted {
  color: red !important;
}
table tbody tr.grabbable {
  cursor: default;
}
table tbody tr td {
  padding: 0 10px;
  border-width: 1px;
  border-style: solid;
  border-color: lightgrey;
}
table tbody tr td:not(:last-child) {
  border-right-width: 0;
}
table tbody tr td.highlighted::after {
  border: none;
}
table tbody tr td input[type=radio], table tbody tr td input[type=checkbox] {
  margin: 0 5px;
}
table tbody tr:not(.first) td.duplicate {
  opacity: 0 !important;
}

/******************************************************************************\
|                                                                              |
|                               _toolbars.scss                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the visual styling rules used in this application.       |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
#toolbar {
  text-align: center;
  padding: 2px;
  background-color: #9090ba;
  border-bottom: 1px solid #7070a7;
}

@media (max-width: 767px) {
  #toolbar .btn {
    min-width: 20%;
  }
  #toolbar .btn i {
    display: none;
  }
}
/******************************************************************************\
|                                                                              |
|                               typeography.scss                               |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the visual styling rules used in this application.       |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
body {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
}

.brand, .navbar-brand {
  font-family: "Red Hat Display", sans-serif;
}

h1, h2, h3, label {
  font-family: "Red Hat Display", sans-serif;
  font-weight: normal;
}
h1 i, h2 i, h3 i, label i {
  margin-right: 10px;
}

.caption {
  text-align: center;
  font-style: italic;
}

.fineprint {
  font-size: 1em;
}

.tooltip {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 14px;
}

.popover {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
}

.status-message {
  margin: 0;
}

.btn {
  font-size: 16px;
}

.btn-lg {
  font-size: 20px;
}

body[device=desktop] #page .main {
  font-size: 18px;
}
body[device=desktop] #page .main h1 {
  font-size: 32px;
}
body[device=desktop] #page .main h2 {
  font-size: 28px;
}
body[device=desktop] #page .main h3 {
  font-size: 24px;
}
body[device=desktop] #page .main p {
  font-size: 18px;
}
body[device=desktop] .welcome #title {
  font-size: 36px;
}

body[device=phone] h1 {
  font-size: 1.75em;
}
body[device=phone] h2 {
  font-size: 1.5em;
}
body[device=phone] h3 {
  font-size: 1.25em;
}

/******************************************************************************\
|                                                                              |
|                                 _welcome.scss                                |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the visual styling rules used in this application.       |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
#page.welcome .masthead {
  display: flex;
  width: 100%;
  flex-grow: 1;
  position: relative;
  line-height: 2em;
  margin-bottom: 0;
  justify-content: center;
}
#page.welcome .masthead .background {
  position: absolute;
  width: 100%;
  height: 100%;
}
#page.welcome .masthead .splash {
  display: inline-flex;
  width: 75%;
  height: 75%;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin: 5% auto;
  border-radius: 15px;
  text-align: center;
}
#page.welcome .masthead .splash > div + div {
  margin-top: 15px;
}
#page.welcome .masthead .splash .logo {
  display: inline-block;
}
#page.welcome .masthead .splash .logo.active {
  cursor: pointer;
}
#page.welcome .masthead .splash > a {
  text-decoration: none;
}
#page.welcome .masthead .splash .brand {
  display: inline-flex;
  margin: auto;
  margin-top: 0;
  border-bottom: none;
}
#page.welcome .masthead .splash .brand.multiline {
  display: inline;
}
#page.welcome .masthead .splash .brand span {
  line-height: 1em;
  white-space: pre;
}
#page.welcome .masthead .splash .buttons {
  margin-top: 0;
  text-align: center;
}
#page.welcome .masthead .splash .buttons .btn {
  margin-top: 15px;
}
#page.welcome .masthead .splash a {
  color: unset;
}
#page.welcome .masthead .panel {
  background-color: white;
}
#page.welcome .masthead .links {
  margin-top: 20px;
}
#page.welcome .masthead .links .link {
  display: inline-block;
  margin-right: 10px;
}
#page.welcome .masthead .links .link a {
  display: inline-block;
  color: white;
  margin-bottom: 10px;
}
#page.welcome .masthead .links .link a img {
  height: 25px;
  image-rendering: pixelated;
}
#page.welcome .materials.panel .row {
  text-align: center;
}
#page.welcome .materials.panel .row a {
  text-decoration: none;
}
#page.welcome .materials.panel .row a .material {
  display: inline-flex;
  width: 150px;
  height: 150px;
  margin: 10px;
  border-width: 3px;
  border-style: solid;
}
#page.welcome .materials.panel .row a .material:not(.flat) {
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.3);
}
#page.welcome .buttons.panel .buttons button {
  margin-top: 10px;
}
#page.welcome .sliders.panel .control {
  height: 35px;
}
#page.welcome .radio-buttons.panel .row {
  text-align: center;
}
#page.welcome .radio-buttons.panel .row .radio-inline {
  margin-left: 10px;
}
#page.welcome .horizontal.scrollbars.panel .row {
  margin-top: 10px;
  justify-content: center;
}
#page.welcome .horizontal.scrollbars.panel .row .controls {
  width: 300px;
  margin: auto;
}
#page.welcome .horizontal.scrollbars.panel .row .controls .horizontal.scrollbar-container .content {
  width: 500px;
}
#page.welcome .vertical.scrollbars.panel .row {
  margin-top: 10px;
}
#page.welcome .vertical.scrollbars.panel .row .vertical.scrollbar-container {
  height: 215px;
  margin: 0 15px;
}
#page.welcome .vertical.scrollbars.panel .row .vertical.scrollbar-container .content {
  height: 500px;
}
#page.welcome .icon-grid .item {
  width: 125px;
}

@media (min-width: 768px) {
  #page.welcome .radio-buttons.panel .row {
    display: flex;
    justify-content: center;
  }
  #page.welcome .radio-buttons.panel .row .panel {
    text-align: left;
  }
  #page.welcome .radio-buttons.panel .row .panel .radio-inline {
    display: block;
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  #page.welcome .masthead .splash .brand span {
    font-size: 5em;
  }
  #page.welcome .masthead .splash .tagline, #page.welcome .masthead .splash .description {
    font-size: 1.25em;
  }
}
@media (max-width: 1200px) {
  #page.welcome .masthead .splash .brand span {
    font-size: 4em;
  }
  #page.welcome .masthead .splash .tagline, #page.welcome .masthead .splash .description {
    font-size: 1.25em;
  }
}
@media (max-width: 768px) {
  #page.welcome .masthead .splash {
    width: 100%;
    padding: 10% 10px;
    margin: 0;
    border-radius: 0;
  }
  #page.welcome .masthead .splash .logo img {
    width: 200px;
    height: 150px;
    margin-bottom: 0;
  }
  #page.welcome .masthead .splash .brand span {
    font-size: 3em;
  }
  #page.welcome .masthead .splash .tagline, #page.welcome .masthead .splash .description {
    font-size: 1.25em;
  }
}
@media (max-width: 480px) {
  #page.welcome .masthead .splash {
    border-radius: 0;
  }
  #page.welcome .masthead .splash .brand span {
    font-size: 2em;
  }
}
@-moz-document url-prefix() {
  #page.welcome .scrollbars.panel {
    display: none;
  }
}
/******************************************************************************\
|                                                                              |
|                                 _index.scss                                  |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the visual styling rules used in this application.       |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/
/******************************************************************************\
|                                                                              |
|                                  styles.scss                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the visual styling rules used in this application.       |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2023, Specular CSS, http://www.specularcss.org          |
\******************************************************************************/

/*# sourceMappingURL=styles.css.map */
