/* =========================================================
~ MASTER RESET
~ Used to create a fresh pallete for spacing and alignment
~ adjustments within this doc.
========================================================= */

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  width: 100%;
  height: 100%;
}

div,
input,
select,
textarea,
span {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* =========================================================
~ MIXINS/GLOBAL VARIABLES
~ All mixins and global set variables to be used anywhere
========================================================= */

/*
	Box shadows
*/

/*
	cubic-bezier transition curves
	define your property(1) and the duration in animation.
*/

/*
	mixin for fixing material icons within IE.
*/

/*
	mixin for fixing fontawesome.
*/

/*
	Input placeholder styling mixin
	pass all needed properties to each pie rule.
*/

/* =========================================================
~ PARTIALS
~ All components were broken out into partials to make it
~ easier to locate various rules
========================================================= */

/* =========================================================
~ COLORS
~ All colors and variations for background elements and
~ text treatments throughout.
========================================================= */

/*
Branding
*/

/*
Theme Palette
*/

/*
Additional Colors
*/

/*
Difficulty Colors
*/

/*
Category Colors
*/

/*
Pulsing Colors
*/

/*
Color opacities values.
*/

.color-md {
  opacity: .5 !important;
}

/*
Color class treatments
*/

.alert-color,
.negative-color {
  color: #b71c1c;
}

.alert-light-color {
  color: #ffebee;
}

.alert-medium-color {
  color: #dfb8b8;
}

.positive-color {
  color: #4cb06d;
}

.grey-color {
  color: #e5e5e5;
}

.dark-grey-color {
  color: #424242;
}

.medium-grey-color {
  color: #c9c9c9;
}

.solid-grey-color {
  color: #757575;
}

.secondary-color {
  color: #009688;
}

.orange-color {
  color: #ffa726;
}

.medium-primary-color {
  color: #5a868a;
}

/* =========================================================
~ HEADER STYLES
~ All top navbar styles.
========================================================= */

nav {
  background: #ffffff;
  color: #757575;
  height: 60px;
  width: 100%;
  border-bottom: solid 1px #c9c9c9;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 0;
}

nav .search-area {
  float: left;
  height: 60px;
  line-height: 60px;
  padding: 0 15px;
}

@media screen and (max-width: 500px) {
  nav .search-area {
    display: none;
  }
}

nav a.custom-dropdown {
  height: 60px;
  color: #757575;
}

nav a.custom-dropdown .options {
  right: 0;
  left: auto;
}

nav .logged-in {
  float: right;
  height: 60px;
  line-height: 60px;
  padding: 0 15px;
  border-left: solid 1px #c9c9c9;
}

nav .logged-in .initials {
  height: 38px;
  width: 38px;
  border-radius: 50%;
  background-color: #2c4244;
  color: #ffffff;
  font-size: 20px;
  margin-right: 6px;
  text-align: center;
  line-height: 2.1em;
  display: inline-block;
}

@media screen and (min-width: 991px) {
  nav {
    z-index: 7;
    position: fixed;
    top: 0;
    width: calc(100% - 320px);
    left: 320px;
  }
}

.search-area label i {
  vertical-align: middle;
}

.search-area .minimal {
  width: 250px;
  position: relative;
}

.search-area .minimal:after {
  content: "";
  height: 2px;
  background-color: #8bb0b4;
  width: 0;
  position: absolute;
  bottom: 0;
  margin-left: 50%;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) 1ms;
  -moz-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) 1ms;
  -ms-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) 1ms;
  -webkit-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) 1ms;
  left: 0;
}

.search-area .minimal.focus:after {
  width: 100%;
  margin-left: 0;
}

#search {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid transparent;
  padding: 0;
  font-size: 16px;
  padding-bottom: 10px;
  width: 200px;
  margin-left: 4px;
}

#search:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

#search:-webkit-autofill,
#search:-webkit-autofill,
#search:-webkit-autofill {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

/* =========================================================
~ TYPOGRAPHY
~ All font sizes, families, weights, and formats.
========================================================= */

body,
* {
  font-family: 'Roboto Condensed', sans-serif;
}

h1 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 10px;
}

h1.large {
  font-size: 36px;
}

h2 {
  font-size: 20px;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 10px;
}

h3 {
  font-size: 18px;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 10px;
}

h4 {
  font-size: 14px;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 10px;
}

h5 {
  font-size: 12px;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 5px;
}

h6 {
  font-size: 10px;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 5px;
}

p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

p.tall {
  line-height: 50px !important;
}

/*
Font treatments
*/

.bold {
  font-weight: 700;
}

.medium-wt {
  font-weight: 500;
}

.light-wt {
  font-weight: 300;
}

.normal-wt {
  font-weight: normal;
}

.non-uppercase {
  text-transform: none !important;
}

.uppercase {
  text-transform: uppercase !important;
}

.italics {
  font-style: italic;
}

/*
Alignments
*/

.align-left {
  text-align: left;
}

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

.align-right {
  text-align: right;
}

/*
Specific Use Cases
*/

.right-sidebar h2 {
  font-weight: 500 !important;
}

/* =========================================================
~ TABLE STYLES
~ All table styles and layouts
========================================================= */

table {
  width: 100%;
  max-width: 100%;
  font-family: 'Roboto Condensed', sans-serif;
  background-color: #ffffff;
  text-align: left;
}

table thead {
  border-bottom: 1px solid #e5e5e5;
}

table thead tr th {
  font-size: 12px;
  font-weight: 700;
  height: 48px;
  vertical-align: middle;
  padding: 0 15px;
  text-align: left;
  color: #757575;
}

table tbody tr {
  border-bottom: 1px solid #e5e5e5;
  transition: background-color 100ms 100ms cubic-bezier(0.4, 0, 0.6, 1);
  -moz-transition: background-color 100ms 100ms cubic-bezier(0.4, 0, 0.6, 1);
  -ms-transition: background-color 100ms 100ms cubic-bezier(0.4, 0, 0.6, 1);
  -webkit-transition: background-color 100ms 100ms cubic-bezier(0.4, 0, 0.6, 1);
}

table tbody tr:nth-child(odd) {
  background: #f7f7f7;
}

table tbody tr:hover {
  background: #f0f0f0;
}

table tbody tr td {
  font-size: 12px;
  height: 48px;
  vertical-align: middle;
  padding: 0 15px;
}

table tbody tr:after {
  background-color: #f5f5f5;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 0;
  height: 48px;
  content: '';
  position: absolute;
  transition: width 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: width 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: width 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: width 400ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

table tbody tr.bump-out {
  background-color: palegreen;
  transition: background-color 400ms cubic-bezier(0.4, 0, 0.6, 1);
  -moz-transition: background-color 400ms cubic-bezier(0.4, 0, 0.6, 1);
  -ms-transition: background-color 400ms cubic-bezier(0.4, 0, 0.6, 1);
  -webkit-transition: background-color 400ms cubic-bezier(0.4, 0, 0.6, 1);
  border-left: 4px solid #213233;
  color: #213233;
  font-weight: 500;
  /*&:after {width:10px; box-shadow:2px 1px 4px 0 rgba(0,0,0,.32);}*/
}

table tbody tr.bump-out .bubble.non-uppercase {
  background-color: #213233;
  color: white;
}

table tr.status-bar td {
  height: auto;
  padding: 6px 15px;
}

table.alert thead {
  border-bottom: 1px solid #dfb8b8;
}

table.alert thead tr th {
  color: #b71c1c;
}

table.alert tbody tr {
  background-color: #ffebee;
  border-bottom: 1px solid #dfb8b8;
}

table.alert tbody tr:after {
  background: #dfb8b8;
  border-color: #dfb8b8;
}

table.alert tbody tr td:first-child {
  padding-left: 0px;
}

table.alert tbody tr td:first-child .bubble {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  background-color: #b71c1c;
}

table.alert tbody tr.bump-out {
  background-color: #dfb8b8;
}

table .material-icons {
  font-size: 90%;
  vertical-align: middle;
}

table[data-sidebar-view] tbody tr {
  cursor: pointer;
}

table[data-sidebar-view] tbody tr.no-records {
  cursor: not-allowed;
}

table.yellow-bg {
  background-color: #fff8e1;
}

table.outlined {
  border: 1px solid #e5e5e5;
  width: calc(100% - 1px);
}

table.alert .bump-out {
  border-left: none;
  color: #b71c1c;
}

table.alert .bump-out .bubble.non-uppercase {
  color: #424242;
  background-color: #e5e5e5;
}

.table-action-bar {
  background-color: #f5f5f5;
  padding: 0 15px;
  line-height: 36px;
}

.table-action-bar i {
  position: relative;
  top: 6px;
  line-height: 12px;
  cursor: pointer;
}

.table-action-bar a {
  line-height: 12px;
}

.pagination li {
  display: inline-block;
  border-radius: 2px;
  text-align: center;
  vertical-align: top;
  margin: 0;
  padding: 6px 8px;
}

.pagination li a {
  color: #424242;
}

.pagination li.active {
  background-color: #2c4244;
  color: #ffffff;
}

.pagination li.disabled a {
  cursor: default;
  color: #9e9e9e;
}

.pagination li.first,
.pagination li.last {
  margin-top: -2px;
}

.showing {
  color: #757575;
  line-height: 26px;
}

@media screen and (max-width: 600px) {
  .showing,
  .pagination {
    width: 100%;
    float: none;
    text-align: center;
    padding-bottom: 8px;
  }
}

/* =========================================================
~ FOOTER STYLES
~ All footer control styles.
========================================================= */

/* =========================================================
~ BUTTON STYLES
~ All button styles and treatments
========================================================= */

button {
  cursor: pointer;
  background: transparent;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px;
  line-height: 48px;
  border-radius: 4px;
  text-align: center;
  text-transform: uppercase;
  color: #78909c;
  border: 0px;
  min-height: 48px;
  padding: 0 20px;
  vertical-align: middle;
  font-weight: 700;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  /*&.round-btn {box-shadow:none;}*/
}

button.mdl-button--small {
  line-height: 36px;
  min-height: 36px;
  padding: 0 14px;
}

button.mdl-button--xs {
  line-height: 2.2em;
  min-height: 15px;
  padding: 1px 7px 0px 7px;
  font-size: 70%;
}

button.mdl-button--colored {
  background: #2c4244;
  color: #ffffff;
}

button.mdl-button--alert {
  background: #ffa726;
  color: #ffffff;
}

button.mdl-button--success {
  background: #4cb06d;
  color: #ffffff;
}

button.mdl-button--danger {
  background: #e53935;
  color: #ffffff;
}

button.mdl-button--raised {
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.32);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.32);
}

button.mdl-button--raised:hover {
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.32);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.32);
}

button.attached-btn {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #213233;
  border-radius: 0px;
  text-transform: none;
  width: 100%;
  font-weight: 600;
  font-size: 14px;
  padding: 0 14px;
}

button[disabled] {
  background-color: #c9c9c9;
  color: #9e9e9e;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  cursor: default;
}

button[disabled] i {
  color: #9e9e9e;
}

button i {
  vertical-align: middle;
  line-height: 47px;
  margin-top: -3px;
  color: #ffffff;
}

.mdl-button + .mdl-button {
  margin-right: 5px;
}

.round-btn {
  width: 47px;
  height: 47px;
  line-height: 47px;
  text-align: center;
  color: #ffffff;
  background-color: #2c4244;
  border-radius: 50%;
  display: inline-block;
  padding: 0;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.32);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.32);
}

.round-btn i {
  vertical-align: middle;
  line-height: 47px;
  margin-top: -3px;
}

.round-btn.outline {
  background-color: transparent;
  border: 1px solid #9e9e9e;
  color: #9e9e9e;
}

.round-btn.outline i {
  color: #9e9e9e;
}

.round-btn.outline.red {
  border-color: red;
  color: red;
}

.round-btn.outline.red i {
  color: red;
}

.round-btn.alert {
  background-color: #e53935;
  color: #ffffff;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.32);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.32);
}

.round-btn.alert i {
  color: #ffffff;
}

.touching-buttons {
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.62);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.62);
  display: inline-block;
  border-radius: 4px;
}

.touching-buttons button:nth-child(2) {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin: 0;
  border-left-width: 0;
}

.touching-buttons button:first-child {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin: 0;
}

.touching-buttons button {
  margin-right: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

a {
  display: block;
  text-decoration: none;
  font-size: 14px;
  font-family: 'Roboto Condensed', sans-serif;
}

a.mdl-button {
  cursor: pointer;
  background: transparent;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px;
  line-height: 48px;
  border-radius: 4px;
  text-align: center;
  text-transform: uppercase;
  color: #78909c;
  border: 0px;
  min-height: 48px;
  padding: 0 5px;
  vertical-align: middle;
  font-weight: 700;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

a.mdl-button.mdl-button--colored {
  background: #2c4244;
  color: #ffffff;
}

a.mdl-button.mdl-button--raised {
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.32);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.32);
}

a.mdl-button[disabled] {
  background-color: #c9c9c9;
  color: #9e9e9e;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  cursor: default;
}

a.mdl-button[disabled] i {
  color: #9e9e9e;
}

a.default,
a.primary,
a.secondary {
  text-transform: uppercase;
  color: #757575;
  font-weight: 700;
}

a.slate {
  color: #78909c;
}

a i {
  vertical-align: middle;
  line-height: 47px;
  margin-top: -3px;
}

a.custom-dropdown {
  color: #757575;
  text-transform: none;
  font-weight: normal;
  position: relative;
}

a.custom-dropdown .options {
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.62);
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.62);
  position: absolute;
  width: 160px;
  left: 0;
  top: calc(100% - 2px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 200ms cubic-bezier(0, 0, 0.2, 1);
  -moz-transition: max-height 200ms cubic-bezier(0, 0, 0.2, 1);
  -ms-transition: max-height 200ms cubic-bezier(0, 0, 0.2, 1);
  -webkit-transition: max-height 200ms cubic-bezier(0, 0, 0.2, 1);
  z-index: 4;
  background-color: #ffffff;
}

a.custom-dropdown .options li {
  line-height: 30px;
  margin-top: 0px;
  padding: 0 15px;
  text-align: left;
  color: #757575;
  margin-bottom: 6px;
  cursor: pointer;
}

a.custom-dropdown .options li:hover {
  background-color: #2c4244;
  color: #ffffff;
}

a.custom-dropdown .options li:first-child {
  margin-top: 8px;
  margin-bottom: 0;
}

a.custom-dropdown.show:after {
  left: 0%;
  opacity: .6;
  transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

a.custom-dropdown.show .options {
  max-height: 200px;
}

a.custom-dropdown.dropup .options {
  top: auto;
  bottom: calc(100% - 2px);
  right: 0;
  z-index: 100000;
}

a.primary {
  color: #4285f4;
}

a.secondary {
  color: #009688;
}

a.large {
  font-size: 16px;
  margin-left: 25px;
  margin-right: 25px;
}

a.small {
  font-size: 12px;
}

/* =========================================================
~ DIALOG STYLES
~ All dialog box styles.
========================================================= */

.dialog-box {
  width: 0;
  height: 0;
  -webkit-transition-delay: 20s;
          transition-delay: 20s;
  transition: all 0ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0ms cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: all 0ms cubic-bezier(0.4, 0, 0.2, 1);
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  overflow: hidden;
}

.dialog-box p {
  line-height: 22px;
}

.dialog-box .overlay {
  z-index: 8;
}

.dialog-box .padded-container {
  padding: 24px;
}

.dialog-box .padded-container hr {
  margin-left: -24px;
  margin-right: -24px;
}

.dialog-box .dialog-container {
  background-color: #ffffff;
  position: absolute;
  width: 470px;
  z-index: 10;
  margin-bottom: 100px;
  top: 100%;
}

.dialog-box .dialog-container .padded-container:last-child {
  padding-bottom: 0;
}

.dialog-box .dialog-header {
  min-height: 65px;
  line-height: 65px;
  font-family: 'Roboto Condensed', sans-serif;
  color: #ffffff;
  background-color: #5a868a;
  padding: 0 24px;
  font-size: 20px;
}

.dialog-box .dialog-header i {
  vertical-align: middle;
  cursor: pointer;
}

.dialog-box .dialog-footer {
  padding: 24px;
  text-align: right;
}

.dialog-box .dialog-footer button {
  margin-left: 15px;
}

.dialog-box .dialog-footer > .align-left {
  float: left;
  line-height: 48px;
}

.dialog-box .dialog-footer a + a {
  margin-left: 30px;
}

.dialog-box.bottom-to-top .dialog-container {
  top: 100%;
  margin-left: -235px;
  left: 50%;
  transition: top 400ms cubic-bezier(0, 0, 0.2, 1);
  -moz-transition: top 400ms cubic-bezier(0, 0, 0.2, 1);
  -ms-transition: top 400ms cubic-bezier(0, 0, 0.2, 1);
  -webkit-transition: top 400ms cubic-bezier(0, 0, 0.2, 1);
}

.dialog-box.show {
  width: 100%;
  height: 100%;
  overflow: auto;
}

.dialog-box.show .overlay {
  width: 100%;
  height: 100%;
  opacity: .6;
  transition: width 1ms ease, height 1ms ease, opacity 400ms ease 100ms;
  -webkit-transition: width 1ms ease, height 1ms ease, opacity 400ms ease 100ms;
  -moz-transition: width 1ms ease, height 1ms ease, opacity 400ms ease 100ms;
  -ms-transition: width 1ms ease, height 1ms ease, opacity 400ms ease 100ms;
}

.dialog-box.show.bottom-to-top .dialog-container {
  top: 100px;
}

.dialog-box.widescreen .dialog-container {
  width: 650px;
}

.dialog-box.widescreen.bottom-to-top .dialog-container {
  margin-left: -325px;
}

.overlay {
  position: fixed;
  background-color: #212121;
  opacity: 0;
  z-index: 3;
  top: 0;
  width: 0;
  height: 0;
  transition: width 1ms ease 400ms, height 1ms ease 400ms, opacity 400ms ease;
  -webkit-transition: width 1ms ease 400ms, height 1ms ease 400ms, opacity 400ms ease;
  -moz-transition: width 1ms ease 400ms, height 1ms ease 400ms, opacity 400ms ease;
  -ms-transition: width 1ms ease 400ms, height 1ms ease 400ms, opacity 400ms ease;
}

/* =========================================================
~ FORM STYLES
~ All form styles, layouts, and themes.
========================================================= */

form {
  position: relative;
}

form .input-group {
  padding: 24px;
  border-bottom: 1px solid #e5e5e5;
}

form .input-group.borderless {
  border-bottom: 0;
  padding-bottom: 0;
}

form .input-group .row:nth-of-type(1) .checkbox {
  border-top: none;
}

form .input-group[data-input-prefix] {
  position: relative;
}

form .input-group[data-input-prefix] input {
  padding-left: 25px;
}

form .input-group[data-input-prefix]:after {
  content: attr(data-input-prefix);
  position: absolute;
  left: 10px;
  top: 18px;
  font-size: 16px;
  font-family: 'Roboto Condensed', sans-serif;
  color: #c9c9c9;
}

form .input-group.minimal {
  border: 0;
  padding: 0;
}

form .input-group::after {
  content: '';
  display: block;
  clear: both;
}

form label {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 500;
}

form label.horiz-label {
  width: 100%;
  margin-bottom: 10px;
  display: block;
}

form label.small {
  font-size: 12px;
}

form input,
form select {
  border: 1px solid #e5e5e5;
  font-size: 20px;
  line-height: 48px;
  min-height: 48px;
  width: 100%;
  padding: 0 15px;
  font-family: 'Roboto Condensed', sans-serif;
}

form input[type="text"],
form input[type="tel"],
form input[type="number"],
form input[type="search"],
form select[type="text"],
form select[type="tel"],
form select[type="number"],
form select[type="search"] {
  width: 100%;
}

form input.shadow,
form select.shadow {
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.32);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.32);
}

form input.error,
form select.error {
  background-color: #ffebee;
}

form input[type="file"] {
  display: none;
}

form input[type="file"] + label {
  width: 100%;
  position: relative;
  display: inline-block;
}

form input[type="file"] + label:before {
  cursor: pointer;
  background: #009688;
  line-height: 48px;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.32);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.32);
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  content: 'Browse';
  width: 100px;
  padding: 0;
}

form input[type="file"] + label:after {
  content: attr(data-file-name);
  white-space: nowrap;
  position: absolute;
  left: 120px;
  border-bottom: 1px solid #e5e5e5;
  color: #757575;
  text-transform: none;
  font-weight: normal;
  width: calc(100% - 120px);
  line-height: 48px;
  text-align: left;
  text-overflow: ellipsis;
  overflow: hidden;
}

form .text-danger.error {
  color: #b71c1c;
  margin-top: 10px;
}

form textarea {
  border: 1px solid #e5e5e5;
  padding: 15px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.32);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.32);
  font-family: 'Roboto Condensed', sans-serif;
  max-width: 100%;
}

form .checkbox label {
  line-height: 25px;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  font-weight: normal !important;
  color: #212121 !important;
  margin-left: 20px;
}

form .checkbox label:before {
  width: 12px;
  height: 12px;
  border: 1px solid #212121;
  margin-right: 10px;
  content: "";
  display: inline-block;
  position: relative;
  top: 3px;
  border-radius: 2px;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

form .checkbox label:after {
  content: '\F00C';
  font-size: 9px !important;
  font-family: "Font Awesome 5 Free";
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.7;
  font-weight: 900;
  color: #4cb06d;
  position: absolute;
  left: 2px;
  opacity: 0;
  transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

form .checkbox input {
  display: none;
}

form .checkbox input:checked + label:before {
  background-color: #ffffff;
  border-color: #212121;
}

form .checkbox input:checked + label:after {
  opacity: 1;
}

form .custom-checkbox {
  display: inline-block;
  position: relative;
}

form .custom-checkbox input {
  display: none;
}

form .custom-checkbox label {
  border: 2px solid #e5e5e5;
  line-height: 65px;
  opacity: .75;
  text-align: center;
  display: inline-block;
  width: 85px;
  margin-right: 15px;
  cursor: pointer;
  position: relative;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

form .custom-checkbox label:before {
  width: 10px;
  height: 10px;
  border: 2px solid #e5e5e5;
  position: absolute;
  top: -5px;
  right: -7px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 0 2px #ffffff;
          box-shadow: 0 0 0 2px #ffffff;
  border-radius: 2px;
  content: "";
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

form .custom-checkbox label:after {
  color: #ffffff;
  line-height: 10px;
  font-size: 12px;
  position: absolute;
  top: -3px;
  right: -6px;
  content: "check";
  font-family: "Material Icons";
  opacity: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  ms-font-feature-settings: "liga";
  transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

form .custom-checkbox input:checked + label {
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.32);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.32);
  opacity: 1;
}

form .custom-checkbox input:checked + label:before {
  background-color: #e5e5e5;
}

form .custom-checkbox input:checked + label:after {
  opacity: 1;
}

form .custom-checkbox.cat-production label {
  border-color: #ffe082;
}

form .custom-checkbox.cat-production label:before {
  border-color: #ffca28;
}

form .custom-checkbox.cat-production input:checked + label:before {
  background-color: #ffca28;
}

form .custom-checkbox.cat-production .link {
  position: absolute;
  height: 25px;
  left: 42px;
  top: 100%;
}

form .custom-checkbox.cat-production .link i {
  font-size: 16px;
  color: #c9c9c9;
  position: absolute;
  left: -5px;
  top: 0;
  line-height: 25px;
}

form .custom-checkbox.cat-production .link:after {
  content: '/';
  color: #c9c9c9;
  font-weight: 700;
  left: 2px;
  top: 0;
  line-height: 25px;
}

form .custom-checkbox.cat-production .link:before {
  content: '';
  width: 1px;
  height: 25px;
  background-color: #e5e5e5;
  left: 2px;
  position: absolute;
  top: 0;
}

form .custom-checkbox.cat-production input:checked + label + .link:after {
  opacity: 0;
}

form .custom-checkbox.cat-final-production label {
  border-color: #d1c4e9;
}

form .custom-checkbox.cat-final-production label:before {
  border-color: #9575cd;
}

form .custom-checkbox.cat-final-production input:checked + label:before {
  background-color: #9575cd;
}

form .custom-checkbox.cat-shipping label {
  border-color: #a5d6a7;
}

form .custom-checkbox.cat-shipping label:before {
  border-color: #66bb6a;
}

form .custom-checkbox.cat-shipping input:checked + label:before {
  background-color: #66bb6a;
}

form .default-checkbox {
  display: inline-block;
  position: relative;
}

form .default-checkbox input {
  display: none;
}

form .default-checkbox label {
  opacity: .75;
  text-align: center;
  display: inline-block;
  margin-right: 15px;
  cursor: pointer;
  position: relative;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

form .default-checkbox .box {
  border: 1px solid #e5e5e5;
  line-height: 65px;
  width: 65px;
  height: 65px;
  text-align: center;
}

form .default-checkbox input:checked + label {
  opacity: 1;
}

form .default-checkbox input:checked + label .box {
  -webkit-box-shadow: 0px 0px 3px 0 rgba(0, 0, 0, 0.32);
          box-shadow: 0px 0px 3px 0 rgba(0, 0, 0, 0.32);
}

form .default-checkbox .difficulty-indicator .circle {
  width: 10px;
  height: 10px;
}

form .default-checkbox .labeling {
  width: 100%;
  text-align: center;
  color: #9e9e9e;
  line-height: 30px;
}

form .default-checkbox i {
  width: 100%;
  line-height: 65px;
  font-size: 36px;
}

form .default-checkbox .difficulty-indicator .circle {
  margin-bottom: 0;
}

form .ghost-block {
  border: 1px solid #e5e5e5;
  padding: 12px;
  padding-bottom: 0px;
}

form .ghost-block label.horiz-label {
  font-size: 12px;
  color: #c9c9c9;
  font-weight: 700;
}

form .ghost-block input,
form .ghost-block select,
form .ghost-block textarea {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
  font-size: 14px;
}

form .ghost-block .input-group {
  padding: 0;
  border: none;
  margin-top: 10px;
}

form .ghost-block .input-group:first-child {
  margin-top: 0;
}

form .ghost-block select {
  border-bottom: 1px solid #e5e5e5;
}

form .ghost-block textarea {
  width: 100%;
  min-height: 70px;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  line-height: 16px;
}

form .ghost-block textarea::-webkit-input-placeholder {
  font-size: 36px;
  line-height: 36px;
  font-weight: 300;
  color: #e5e5e5;
}

form .ghost-block textarea::-moz-placeholder {
  font-size: 36px;
  line-height: 36px;
  font-weight: 300;
  color: #e5e5e5;
}

form .ghost-block textarea:-ms-input-placeholder {
  font-size: 36px;
  line-height: 36px;
  font-weight: 300;
  color: #e5e5e5;
}

form .ghost-block textarea:-moz-placeholder {
  font-size: 36px;
  line-height: 36px;
  font-weight: 300;
  color: #e5e5e5;
}

form .ghost-block button {
  position: relative;
  margin-top: -10px;
}

form .ghost-block.focus {
  -webkit-box-shadow: 0px 0px 3px 0 rgba(0, 0, 0, 0.32);
          box-shadow: 0px 0px 3px 0 rgba(0, 0, 0, 0.32);
  border: 1px solid #5a868a;
}

form .ghost-block .custom-checkbox label {
  border-bottom: 4px solid transparent;
  padding: 0 5px;
  font-size: 14px;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  line-height: 47px;
  width: auto;
  border-top: none;
  border-left: none;
  border-right: none;
  transition: border-bottom 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: border-bottom 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: border-bottom 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: border-bottom 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

form .ghost-block .custom-checkbox label:after,
form .ghost-block .custom-checkbox label:before {
  display: none;
}

form .ghost-block .custom-checkbox.cat-pre-production input:checked + label {
  border-color: #c9c9c9;
}

form .ghost-block .custom-checkbox.cat-production input:checked + label {
  border-color: #ffca28;
}

form .ghost-block .custom-checkbox.cat-final-production input:checked + label {
  border-color: #9575cd;
}

form .ghost-block .custom-checkbox.cat-shipping input:checked + label {
  border-color: #66bb6a;
}

form .ghost-block .custom-checkbox input:not(:checked) + label {
  opacity: .6;
}

form .floating {
  position: absolute;
  border: 1px solid #e5e5e5;
  background-color: #f5f5f5;
}

form .floating label {
  line-height: 30px;
  font-weight: normal;
  margin: 0 12px;
  color: #424242;
}

form .floating label:before {
  border-color: #c9c9c9;
}

form .floating label:after {
  left: 2px;
}

form .floating.top {
  top: 1px;
}

form .floating.right {
  right: 1px;
}

form .floating.left {
  left: 1px;
}

form .floating.bottom {
  bottom: 1px;
}

form .display-ui {
  border: 1px solid #e5e5e5;
  padding: 12px;
  position: relative;
}

form .display-ui label {
  font-size: 12px;
  color: #c9c9c9;
}

form .display-ui input,
form .display-ui select,
form .display-ui textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  padding: 0;
  font-size: 30px;
  outline: none;
  line-height: 41px;
  width: 100%;
}

form .display-ui input::-webkit-input-placeholder,
form .display-ui select::-webkit-input-placeholder,
form .display-ui textarea::-webkit-input-placeholder {
  font-style: italic;
  color: #e5e5e5;
  font-weight: normal;
}

form .display-ui input::-moz-placeholder,
form .display-ui select::-moz-placeholder,
form .display-ui textarea::-moz-placeholder {
  font-style: italic;
  color: #e5e5e5;
  font-weight: normal;
}

form .display-ui input:-ms-input-placeholder,
form .display-ui select:-ms-input-placeholder,
form .display-ui textarea:-ms-input-placeholder {
  font-style: italic;
  color: #e5e5e5;
  font-weight: normal;
}

form .display-ui input:-moz-placeholder,
form .display-ui select:-moz-placeholder,
form .display-ui textarea:-moz-placeholder {
  font-style: italic;
  color: #e5e5e5;
  font-weight: normal;
}

form .display-ui .context {
  position: relative;
  padding-right: 80px;
}

form .display-ui .action {
  position: absolute;
  bottom: 12px;
  right: 12px;
}

form .display-ui .action button {
  height: 58px;
  width: 58px;
  padding: 0;
}

form .display-ui .action button i {
  font-size: 33px;
}

form .display-ui .toggle {
  width: 100%;
  margin-top: 14px;
  float: left;
}

form .display-ui .toggle label {
  float: left;
}

form .display-ui.focus {
  -webkit-box-shadow: 0px 0px 3px 0 rgba(0, 0, 0, 0.32);
          box-shadow: 0px 0px 3px 0 rgba(0, 0, 0, 0.32);
  border-bottom: 2px solid #5a868a;
}

form .display-ui.focus .error + .text-danger.error:before {
  opacity: 1;
}

form .display-ui[data-input-prefix]:after {
  left: 12px;
  top: 37px;
  font-size: 24px;
}

form .display-ui.no-perimiter {
  padding: 0;
  border: none;
}

form .display-ui .error {
  background-color: transparent;
}

form .display-ui .error + .text-danger.error:after {
  content: '';
  position: absolute;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  top: -12px;
  left: -12px;
  z-index: 0;
  pointer-events: none;
  opacity: .1;
  background-color: #b71c1c;
}

form .display-ui .error + .text-danger.error:before {
  content: '';
  position: absolute;
  bottom: -14px;
  height: 2px;
  background-color: #b71c1c;
  width: calc(100% + 24px);
  left: -12px;
  opacity: 0;
}

form .step {
  opacity: 0;
  overflow: hidden;
  max-height: 0;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) 1ms;
  -moz-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) 1ms;
  -ms-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) 1ms;
  -webkit-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) 1ms;
}

form .step.active {
  opacity: 1;
  max-height: 100%;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) 401ms;
  -moz-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) 401ms;
  -ms-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) 401ms;
  -webkit-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) 401ms;
}

form [data-auto-scale] {
  transition: height 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: height 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: height 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: height 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

form .form-footer {
  padding: 24px;
  text-align: right;
}

form .form-footer button {
  margin-left: 15px;
}

form .form-footer > .align-left {
  float: left;
  line-height: 48px;
}

form .form-footer a + a {
  margin-left: 30px;
}

form .form-footer.no-pad {
  padding-bottom: 6px !important;
}

form .minimal {
  position: relative;
}

form .minimal label {
  font-size: 14px;
  color: #9e9e9e;
  font-weight: 700;
}

form .minimal:after {
  content: "";
  height: 2px;
  background-color: #8bb0b4;
  width: 0px;
  position: absolute;
  bottom: 0;
  margin-left: 50%;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) 1ms;
  -moz-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) 1ms;
  -ms-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) 1ms;
  -webkit-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) 1ms;
}

form .minimal input {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid #e5e5e5;
  padding: 0;
  width: 100%;
  font-size: 30px;
  padding-bottom: 10px;
}

form .minimal input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .minimal input:-webkit-autofill,
form .minimal textarea:-webkit-autofill,
form .minimal select:-webkit-autofill {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

form .minimal .bubble {
  color: #9e9e9e;
  font-size: 12px;
}

form .minimal .bubble.input-float {
  position: absolute;
  bottom: 15px;
  z-index: 10;
  line-height: 24px;
  overflow: hidden;
  opacity: 1;
  right: 0;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

form .minimal.focus:after {
  width: 100%;
  margin-left: 0;
}

form .minimal .email {
  padding-right: 70px;
}

form .minimal.hide-bubble .email {
  padding-right: 0;
}

form .minimal.hide-bubble .bubble.input-float {
  opacity: 0;
  right: -100%;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

form .minimal select {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid #e5e5e5;
  padding: 0;
  width: 100%;
  font-size: 30px;
  padding-bottom: 10px;
}

form .minimal select:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .search {
  position: relative;
}

form .search i {
  position: absolute;
  left: 15px;
  line-height: 48px;
  top: 0;
  color: #212121;
  opacity: .75;
}

form .search input {
  padding-left: 45px;
}

form .password {
  position: relative;
}

form .password i {
  position: absolute;
  right: 0;
  padding: 0 12px;
  line-height: 48px;
  bottom: 10px;
  color: #212121;
  opacity: .75;
  display: none;
  cursor: pointer;
}

form .password input {
  padding-right: 45px;
}

form [data-suggested-date-ui] {
  opacity: 0;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) 1ms;
  -moz-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) 1ms;
  -ms-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) 1ms;
  -webkit-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) 1ms;
  max-height: 0;
  overflow: hidden;
}

form [data-suggested-date-ui].show {
  opacity: 1;
  max-height: 100%;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) 401ms;
  -moz-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) 401ms;
  -ms-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) 401ms;
  -webkit-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) 401ms;
}

form .inline-form {
  margin-left: -22px;
  margin-right: -22px;
  border-top: 1px solid #e5e5e5;
}

.toggle {
  display: inline-block;
  margin-top: 10px;
}

.toggle label {
  width: 44px;
  height: 20px;
  position: relative;
  background: #c9c9c9;
  border-radius: 10px;
  float: left;
  cursor: pointer;
  transition: background-color 300ms ease;
  -moz-transition: background-color 300ms ease;
  -ms-transition: background-color 300ms ease;
  -webkit-transition: background-color 300ms ease;
}

.toggle label span {
  width: 25px;
  height: 25px;
  position: absolute;
  left: -2px;
  top: -3px;
  border-radius: 50%;
  background: #ffffff;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.32);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.32);
  cursor: pointer;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}

.toggle label + span {
  font-size: 12px;
  margin-left: 10px;
  line-height: 20px;
}

.toggle input:checked + label {
  background-color: #5a868a;
}

.toggle input:checked + label span {
  left: 22px;
  background-color: #2c4244;
}

.toggle input + label + .toggle-status .toggle-on {
  display: none;
}

.toggle input:checked + label + .toggle-status .toggle-off {
  display: none;
}

.toggle input:checked + label + .toggle-status .toggle-on {
  display: inline;
}

.toggle .toggle-status {
  font-size: 16px;
  color: #212121;
}

.toggle.mongo label {
  float: left;
  width: 66px;
  height: 30px;
  border-radius: 15px;
}

.toggle.mongo label span {
  width: 37.5px;
  height: 37.5px;
  left: -3px;
  top: -4px;
}

.toggle.mongo label + span {
  font-size: 14px;
  line-height: 30px;
}

.toggle.mongo input:checked + label span {
  left: 33px;
}

.datetimepicker .datepicker {
  border: 1px solid #e5e5e5;
}

.datetimepicker .datepicker th,
.datetimepicker .datepicker td {
  width: auto !important;
}

.datetimepicker .bootstrap-datetimepicker-widget table td.active,
.datetimepicker .bootstrap-datetimepicker-widget table td.active:hover {
  background-color: #1565c0;
  color: #ffffff !important;
}

.datetimepicker .bootstrap-datetimepicker-widget table td.day,
.datetimepicker .bootstrap-datetimepicker-widget table th,
.datetimepicker .bootstrap-datetimepicker-widget table td span {
  height: 60px !important;
  line-height: 60px !important;
  color: #212121;
  font-size: 16px;
  border-radius: 0 !important;
  margin: 0 !important;
  text-align: center;
}

.datetimepicker .bootstrap-datetimepicker-widget table th {
  background: #f9f9f9;
}

.datetimepicker .bootstrap-datetimepicker-widget table td.today:before {
  border-width: 0 0 13px 13px;
  color: #1565c0;
}

.datetimepicker .bootstrap-datetimepicker-widget table thead tr:first-child {
  border-bottom: 1px solid #e5e5e5;
}

.datetimepicker .bootstrap-datetimepicker-widget table th.prev::after {
  font-family: 'Material Icons';
  content: "chevron_left" !important;
  text-rendering: optimizeLegibility;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  ms-font-feature-settings: "liga";
  -webkit-font-feature-settings: 'liga';
  position: static !important;
  height: auto;
  width: auto;
}

.datetimepicker .bootstrap-datetimepicker-widget table th.next::after {
  font-family: 'Material Icons';
  content: "chevron_right" !important;
  text-rendering: optimizeLegibility;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  ms-font-feature-settings: "liga";
  -webkit-font-feature-settings: 'liga';
  position: static !important;
  height: auto;
  width: auto;
}

.datetimepicker .bootstrap-datetimepicker-widget .picker-switch,
.datetimepicker .bootstrap-datetimepicker-widget .prev,
.datetimepicker .bootstrap-datetimepicker-widget .next {
  font-size: 20px !important;
}

.datetimepicker .bootstrap-datetimepicker-widget .datepicker-decades .decade,
.datetimepicker .bootstrap-datetimepicker-widget table td span.month,
.datetimepicker .bootstrap-datetimepicker-widget table td span.year {
  width: auto !important;
  padding: 0 10px !important;
  margin: 0 !important;
  height: 60px !important;
  line-height: 60px !important;
  color: #212121;
  font-size: 16px;
  border-radius: 0 !important;
  display: inline-block;
}

.main form .minimal,
.right-sidebar form .minimal,
.pull-over form .minimal {
  height: auto;
}

.main form .minimal input,
.right-sidebar form .minimal input,
.pull-over form .minimal input {
  font-size: 16px;
  line-height: 30px;
  min-height: 30px;
  padding-bottom: 5px;
  margin-top: 6px;
}

.main form .minimal select,
.right-sidebar form .minimal select,
.pull-over form .minimal select {
  font-size: 16px;
  line-height: 20px;
  min-height: 30px;
  padding-bottom: 13px;
  margin-top: 13px;
}

.error {
  color: #e53935;
  margin: 6px 0 14px 0;
  font-size: 14px;
}

.right-sidebar {
  width: 600px;
  right: -610px;
  position: fixed;
  transition: all 400ms cubic-bezier(0, 0, 0.2, 1);
  -moz-transition: all 400ms cubic-bezier(0, 0, 0.2, 1);
  -ms-transition: all 400ms cubic-bezier(0, 0, 0.2, 1);
  -webkit-transition: all 400ms cubic-bezier(0, 0, 0.2, 1);
  top: 0;
  z-index: 3;
  background-color: white;
  height: 100%;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.62);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.62);
}

@media screen and (max-width: 600px) {
  .right-sidebar {
    width: 100%;
  }
}

.right-sidebar .header {
  color: #ffffff;
  padding: 10px 24px;
  background-color: #2c4244;
}

.right-sidebar .overflow-wrapper {
  height: 100%;
  position: relative;
  top: 0;
}

@media screen and (min-width: 991px) {
  .right-sidebar .overflow-wrapper {
    height: calc(100% - 60px);
    top: 60px;
  }
}

.right-sidebar .padded-container {
  padding: 22px;
}

.right-sidebar .padded-container.grey-bg.footer {
  padding: 0 22px 0 92px;
}

.right-sidebar .padded-container.grey-bg.footer div[data-scroll-to] {
  padding: 22px 15px;
  cursor: pointer;
}

.right-sidebar .padded-container.grey-bg.footer div[data-close-sidebar] {
  position: absolute;
  width: 70px;
  height: 60px;
  left: 0;
  top: 0;
  background-color: #213233;
  cursor: pointer;
  text-align: center;
}

.right-sidebar .padded-container.grey-bg.footer div[data-close-sidebar] i {
  line-height: 60px;
  color: white;
}

.right-sidebar .padded-container.shop-order-summary h1 {
  color: #2c4244;
  font-weight: 600;
}

.right-sidebar .padded-container.shop-order-summary h5 {
  font-weight: 700;
  color: #424242;
}

.right-sidebar .padded-container.shop-order-summary h5:nth-child(3) {
  margin-top: 10px;
}

.right-sidebar .padded-container.shop-order-summary h6 {
  color: #424242;
}

.right-sidebar hr {
  margin-left: -22px;
  margin-right: -22px;
}

.right-sidebar .footer {
  position: absolute;
  bottom: 0;
  z-index: 2;
  left: 0;
  right: 0;
  -webkit-box-shadow: 3px -2px 8px 0 rgba(0, 0, 0, 0.32);
          box-shadow: 3px -2px 8px 0 rgba(0, 0, 0, 0.32);
}

.right-sidebar .footer .active a {
  color: #213233;
}

/* =========================================================
~ TAB STYLES
~ All tabs and layout styles affecting.
========================================================= */

.tabbed-container .tab-header ul {
  width: 100%;
}

.tabbed-container .tab-header ul li {
  padding: 12px;
  color: #9e9e9e;
  text-transform: uppercase;
  display: inline-block;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  border-bottom: 4px solid transparent;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.tabbed-container .tab-header ul li.active {
  color: #213233;
  border-color: #213233;
}

.tabbed-container .tab-content {
  position: relative;
}

.tabbed-container .tab-content .tab-pane {
  opacity: 0;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) 1ms;
  -moz-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) 1ms;
  -ms-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) 1ms;
  -webkit-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) 1ms;
  max-height: 0;
  overflow: hidden;
}

.tabbed-container .tab-content .tab-pane.active {
  opacity: 1;
  max-height: 100%;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) 401ms;
  -moz-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) 401ms;
  -ms-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) 401ms;
  -webkit-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) 401ms;
}

/* =========================================================
~ LOADING STYLES
~ Any loading styles
========================================================= */

@-webkit-keyframes slide {
  0% {
    left: -100%;
    width: 75px;
  }

  65% {
    left: 35%;
    width: 20px;
  }

  100% {
    left: 100%;
    width: 100px;
  }
}

@keyframes slide {
  0% {
    left: -100%;
    width: 75px;
  }

  65% {
    left: 35%;
    width: 20px;
  }

  100% {
    left: 100%;
    width: 100px;
  }
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  75% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  75% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.loading-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12;
}

.loading-container:before {
  content: '';
  display: inline-block;
  height: calc(50% - 31px);
}

.loading-container.opaque {
  background: rgba(255, 255, 255, 0.85);
}

.loading-container .content {
  text-align: center;
  color: #424242;
}

.loading-container .content h3 {
  margin-top: 0;
}

.loading-container .bar-container {
  width: 180px;
  background: #8bb0b4;
  height: 3px;
  border-radius: 1.5px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.loading-container .bar-container .fill {
  background: #2c4244;
  width: 75px;
  height: 3px;
  border-radius: 1.5px;
  position: absolute;
  left: -100%;
  -webkit-animation: slide 1.5s infinite;
          animation: slide 1.5s infinite;
}

.loading-container.circular .bar-container {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: none;
  border: 3px solid #8bb0b4;
  border-top-color: #2c4244;
  -webkit-animation: spin 1s infinite;
          animation: spin 1s infinite;
}

.loading-container.circular .bar-container .fill {
  display: none;
}

.loading-container.circular:before {
  height: calc(50% - 58px);
}

/*
	TOOLTIP styling
	There are 5 supported positionings for the tooltips.
		bottom - default
		left - positions the top of the tooltip to the left side of the item.
		right - positions the top of the tooltip to the right side of the item.
		top - positions the tooltip directly overtop of the item centered.
		bottom-right - positions the tooltip just like bottom with the right
			side of the tooltip lined up with the right of the item.

*/

[data-tooltip] {
  position: relative;
}

[data-tooltip] .tooltip {
  position: absolute;
  z-index: 100;
  top: 30px;
  right: -55px;
  background-color: white;
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.62);
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.62);
  min-width: 150px;
}

[data-tooltip] .tooltip .content {
  padding: 15px;
}

[data-tooltip] .tooltip .content:before {
  content: '';
  width: 15px;
  height: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: 65px;
  top: -8px;
  background-color: #ffffff;
  border-left: 1px solid #c9c9c9;
  border-top: 1px solid #c9c9c9;
}

[data-tooltip] .tooltip hr {
  margin-top: 10px;
  margin-bottom: 10px;
}

[data-tooltip] .tooltip p {
  color: #757575;
  text-transform: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
}

[data-toolip-position="left"] .tooltip {
  left: -170px;
  top: -11px;
  right: auto;
}

[data-toolip-position="left"] .tooltip .content:before {
  left: auto;
  right: -9px;
  top: 10px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

[data-toolip-position="right"] .tooltip {
  left: auto;
  right: -170px;
  top: -11px;
}

[data-toolip-position="right"] .tooltip .content:before {
  left: -9px;
  right: auto;
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

[data-toolip-position="top"] .tooltip {
  left: auto;
  right: -55px;
  bottom: calc(100% + 20px);
  top: auto;
}

[data-toolip-position="top"] .tooltip .content:before {
  left: auto;
  right: 65px;
  top: calc(100% - 8px);
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

[data-toolip-position="bottom-right"] .tooltip {
  left: auto;
  right: 5px;
}

[data-toolip-position="bottom-right"] .tooltip .content:before {
  left: auto;
  right: 10px;
  top: -8px;
}

/* =========================================================
~ LAYOUT STYLES
~ Any content wrappers or styles affecting overall layout/theme
========================================================= */

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background-color: #e5e5e5;
  overflow: auto;
  overflow-x: hidden;
  position: relative;
  display: block;
  color: #212121;
}

body.show-sidebar .right-sidebar {
  right: 0;
}

body.show-sidebar > .overlay {
  width: 100%;
  height: 100%;
  opacity: .1;
  pointer-events: none;
  transition: width 1ms ease, height 1ms ease, opacity 400ms ease 100ms;
  -webkit-transition: width 1ms ease, height 1ms ease, opacity 400ms ease 100ms;
  -moz-transition: width 1ms ease, height 1ms ease, opacity 400ms ease 100ms;
  -ms-transition: width 1ms ease, height 1ms ease, opacity 400ms ease 100ms;
}

body.show-menu .menu {
  left: 0%;
}

body.show-menu nav .content span {
  display: none;
}

body.show-menu nav .content:after {
  content: attr(data-inner-page-content);
  font-family: 'Roboto Condensed';
}

body.show-menu nav .menu-trigger .stack .top {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 10px;
}

body.show-menu nav .menu-trigger .stack .middle {
  width: 1px;
  opacity: 0;
}

body.show-menu nav .menu-trigger .stack .bottom {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 10px;
}

body.show-page .menu {
  width: 55px;
  padding-bottom: 0;
}

body.show-page .menu li:after {
  display: none;
}

body.show-page .menu button {
  opacity: 0;
}

body.show-page .menu .logout {
  display: none;
}

body.show-page nav .menu-trigger .stack .top {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 10px;
}

body.show-page nav .menu-trigger .stack .middle {
  width: 1px;
  opacity: 0;
}

body.show-page nav .menu-trigger .stack .bottom {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 10px;
}

body.show-page nav .content span {
  display: none;
}

body.show-page nav .content:after {
  content: attr(data-inner-page-content);
  font-family: 'Roboto Condensed';
}

body.show-page.show-menu nav .menu-trigger .stack .top {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
  left: -2px;
  width: 50%;
}

body.show-page.show-menu nav .menu-trigger .stack .middle {
  width: 100%;
  opacity: 1;
}

body.show-page.show-menu nav .menu-trigger .stack .bottom {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 15.5px;
  left: -2px;
  width: 50%;
}

body.login-body {
  overflow: auto;
  height: auto;
}

body.mdl-task-body {
  overflow: auto;
  height: auto;
}

.display-ib {
  display: inline-block;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.clearfix {
  clear: both;
}

.overflow-wrapper {
  height: 100%;
  width: 100%;
  overflow: auto;
}

.container {
  padding-top: 62px;
  transition: margin-left 400ms cubic-bezier(0, 0, 0.2, 1), margin-right 400ms cubic-bezier(0, 0, 0.2, 1);
  -moz-transition: margin-left 400ms cubic-bezier(0, 0, 0.2, 1), margin-right 400ms cubic-bezier(0, 0, 0.2, 1);
  -ms-transition: margin-left 400ms cubic-bezier(0, 0, 0.2, 1), margin-right 400ms cubic-bezier(0, 0, 0.2, 1);
  -webkit-transition: margin-left 400ms cubic-bezier(0, 0, 0.2, 1), margin-right 400ms cubic-bezier(0, 0, 0.2, 1);
  width: 100%;
  position: relative;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.62);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.62);
  z-index: 2;
  height: 100%;
  width: 100%;
  overflow: auto;
}

.padded-container {
  padding: 0 15px;
}

.padded-container.slim {
  padding-top: 10px;
  padding-bottom: 10px;
}

.padded-container.vertical {
  padding-top: 100px;
  padding-bottom: 100px;
}

.full-pad-container {
  padding: 22px;
}

.status-bar {
  padding: 6px 15px;
  color: #424242;
  background-color: #f5f5f5;
}

.status-bar p {
  font-size: 16px;
}

.status-bar.grey {
  background-color: #c9c9c9;
}

.status-bar.condensed p,
.status-bar.condensed td {
  font-size: 12px;
  font-weight: 500;
}

.white-bg,
ul.white-bg li {
  background-color: #ffffff;
}

.grey-bg {
  background-color: #f5f5f5;
}

.med-grey-bg {
  background-color: #e5e5e5;
}

.bubble {
  padding: 7px;
  border-radius: 4px;
  font-size: 14px;
  color: #757575;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 500;
  display: inline-block;
  clear: both;
  background-color: #e5e5e5;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
}

.bubble.condensed {
  padding: 2px;
  font-size: 9px;
  font-weight: 500;
  border: 1px solid #cccc !important;
  margin-bottom: 5px;
}

.bubble.positive {
  background-color: #4cb06d;
  color: #ffffff;
  border: none !important;
}

.bubble.negative {
  background-color: #b71c1c;
  color: #ffffff;
  border: none !important;
}

.bubble.primary {
  background-color: #2c4244;
  color: #ffffff;
  border: none !important;
}

.bubble.cat-shipping {
  background-color: #a5d6a7;
  min-width: 48px;
  text-align: center;
}

.bubble.cat-production {
  background-color: #ffe082;
  min-width: 48px;
  text-align: center;
}

.bubble.cat-final-production {
  background-color: #d1c4e9;
  min-width: 48px;
  text-align: center;
}

.bubble.cat-pre-production {
  background-color: transparent;
  min-width: 48px;
  text-align: center;
}

.bubble.ghost {
  border: 1px solid #424242;
  background-color: transparent;
}

.bubble.alert {
  background-color: #e53935;
  color: #ffffff;
  min-width: 48px;
  text-align: center;
}

.bubble.no-radius {
  padding-left: 12px;
  padding-right: 12px;
  border-color: #c9c9c9;
  color: #757575;
}

.bubble .bubble {
  width: 100%;
  position: absolute;
  top: -1px;
  left: 0;
  padding: 2px;
  font-size: 9px;
  font-weight: 500;
  text-align: center;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.bubble.double {
  padding-top: 20px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.bubble.tall {
  padding: 14px 7px;
}

.bubble.check {
  position: relative;
}

.bubble.check:after {
  content: "check";
  font-family: "Material Icons";
  text-rendering: optimizeLegibility;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  ms-font-feature-settings: "liga";
  position: absolute;
  left: -18px;
  top: 5px;
  color: #8bb0b4;
  text-transform: none;
  font-size: 16px;
}

hr {
  height: 1px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 25px;
  background-color: #e5e5e5;
}

hr.no-margin {
  margin: 0;
}

.row::after {
  content: '';
  display: block;
  clear: both;
}

.width-50 {
  width: 100%;
}

.width-50 .input-group.minimal {
  width: calc(100% - 46px);
  float: right;
}

@media screen and (min-width: 550px) {
  .width-50 {
    display: inline-block;
    width: calc(50% - 5px);
    vertical-align: top;
  }

  .width-50 .mobile-arrow {
    display: none;
  }

  .width-50 .input-group.minimal {
    width: 100%;
    float: none;
  }
}

@media screen and (min-width: 1000px) {
  .width-50 + .width-50 {
    float: right;
  }
}

.width-30 {
  display: inline-block;
  width: calc(30% - 5px);
  vertical-align: top;
}

@media screen and (max-width: 1300px) {
  .width-30 {
    width: calc(40% - 5px);
  }
}

@media screen and (max-width: 700px) {
  .width-30 {
    width: calc(50% - 5px);
  }
}

@media screen and (max-width: 550px) {
  .width-30 {
    width: 100%;
  }

  .width-30 .float-right.solid-grey-color {
    display: none;
  }
}

/*
.width-33 {display:inline-block; width:calc(33% - 3px); padding:0 15px; vertical-align:top; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
	&.no-pad {width:33%;}
}
.width-66 {display:inline-block; width:calc(66% - 3px); padding:0 15px; vertical-align:top; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
	&.no-pad {width:66%;}
}
.width-75 {display:inline-block; width:calc(75% - 3px); padding:0 15px; vertical-align:top; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
	&.no-pad {width:75%;}
}
.width-25 {display:inline-block; width:calc(25% - 3px); padding:0 15px; vertical-align:top; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
	&.no-pad {width:25%;}
}*/

ul li {
  margin-top: 15px;
}

ul li.float-active {
  border-bottom: 1px solid #e5e5e5;
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
}

ul li i {
  transition: color 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: color 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: color 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: color 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

ul li.read {
  opacity: .6;
}

ul li.alert:before {
  content: "";
  border-top: 7px solid #b71c1c;
  border-left: 7px solid #b71c1c;
  border-bottom: 7px solid transparent;
  border-right: 7px solid transparent;
  width: 0;
  height: 0;
  top: 0;
  left: 0;
  position: absolute;
}

ul.default {
  border: 1px solid #e5e5e5;
}

ul.default li {
  border-top: 1px solid #e5e5e5;
  margin-top: 0;
  padding: 0 50px 0 12px;
  line-height: 55px;
  cursor: pointer;
  position: relative;
}

ul.default li i {
  float: left;
  line-height: 55px;
  margin-right: 22px;
}

ul.default li h4 {
  line-height: 55px;
}

ul.default li:first-child {
  border-top: none;
}

ul.feed-list {
  border: 1px solid #e5e5e5;
  max-height: 900px;
  overflow: auto;
}

ul.feed-list li {
  border-top: 1px solid #e5e5e5;
  position: relative;
  margin-top: 0;
}

ul.feed-list li .content {
  position: relative;
  padding: 9px 52px 9px 32px;
}

ul.feed-list li .content:before {
  content: "";
  background-color: #c9c9c9;
  width: 2px;
  height: 100%;
  position: absolute;
  left: 12px;
  top: 0;
  z-index: 1;
}

ul.feed-list li .content:after {
  content: "";
  background-color: #c9c9c9;
  border: 2px solid #c9c9c9;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 6px;
  top: 50%;
  margin-top: -5px;
  z-index: 2;
}

ul.feed-list li .content p {
  font-size: 12px;
  line-height: 22px;
  color: #9e9e9e;
}

ul.feed-list li .content h5 {
  margin-top: 3px;
  font-weight: normal;
}

ul.feed-list li .content.cat-shipping:after {
  border-color: #66bb6a;
  background-color: #ffffff;
}

ul.feed-list li .content.cat-inspection:after {
  border-color: #9575cd;
  background-color: #ffffff;
}

ul.feed-list li .content.cat-production:after {
  border-color: #ffca28;
  background-color: #ffffff;
}

ul.feed-list li .content.cat-final-production:after {
  border-color: #9575cd;
  background-color: #ffffff;
}

ul.feed-list li .content.cat-pre-production:after {
  background-color: #ffffff;
}

ul.feed-list li .content.accepted:after {
  background-color: #c9c9c9;
}

ul.feed-list li .content.accepted.cat-shipping:after {
  background-color: #66bb6a;
}

ul.feed-list li .content.accepted.cat-inspection:after {
  background-color: #9575cd;
}

ul.feed-list li .content.accepted.cat-production:after {
  background-color: #ffca28;
}

ul.feed-list li .content.accepted.cat-final-production:after {
  background-color: #9575cd;
}

ul.feed-list li .content.accepted.cat-pre-production:after {
  background-color: #c9c9c9;
}

ul.feed-list li .content.denied h4:before {
  content: 'close';
  font-family: 'Material Icons';
  text-rendering: optimizeLegibility;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  ms-font-feature-settings: "liga";
  font-size: 24px;
  position: absolute;
  left: 1px;
  z-index: 5;
  top: calc(50% - 2px);
  color: #c9c9c9;
  text-align: center;
  line-height: 8px;
}

ul.feed-list li a {
  position: absolute;
  right: 75px;
  top: 13px;
  bottom: 0;
}

ul.feed-list li a:before {
  display: inline-block;
  height: 50%;
  content: "";
}

ul.feed-list li a i {
  color: #c9c9c9;
}

ul.feed-list li a:last-child {
  right: 10px;
}

ul.feed-list li:first-child {
  border-top: none;
}

ul.feed-list li:first-child .content:before {
  height: 50%;
  top: 50%;
}

ul.feed-list.no-bars li .content:before {
  display: none;
}

ul.nav-in-list {
  border: 1px solid #e5e5e5;
}

ul.nav-in-list .sync-alert {
  background-color: #ffa726;
  line-height: 16px;
}

ul.nav-in-list .sync-alert h4 {
  margin: 0;
  line-height: 16px;
  padding: 12px 0;
}

ul.nav-in-list .sync-alert:hover {
  background-color: #ffa726 !important;
}

ul.nav-in-list li {
  border-top: 1px solid #e5e5e5;
  margin-top: 0;
  padding: 0 50px 0 12px;
  line-height: 55px;
  position: relative;
  transition: background-color 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: background-color 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: background-color 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: background-color 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media screen and (max-width: 550px) {
  ul.nav-in-list li {
    padding: 0 20px 0 12px;
  }
}

ul.nav-in-list li i {
  float: left;
  line-height: 55px;
  margin-right: 22px;
}

ul.nav-in-list li h4 {
  line-height: 55px;
}

ul.nav-in-list li:first-child {
  border-top: none;
}

ul.nav-in-list li .toggle label {
  margin-top: 18px;
}

ul.nav-in-list li .difficulty-indicator {
  display: inline-block;
  position: relative;
  top: -2px;
}

ul.nav-in-list li .difficulty-indicator .circle {
  margin-bottom: 0px;
}

ul.nav-in-list li.no-nav {
  cursor: default;
}

ul.nav-in-list li.no-nav:after {
  content: '';
}

ul.nav-in-list li.no-nav:hover {
  background-color: transparent !important;
}

ul.nav-in-list .input-group::after {
  bottom: 5px;
}

ul.white-bg {
  background-color: transparent;
}

ul li.float-active {
  border-bottom: 1px solid #e5e5e5;
  position: relative;
  margin-top: 8px;
  margin-bottom: 8px;
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.62);
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.62);
}

ul.spaced {
  border: none;
}

ul.spaced.white-bg {
  background: transparent;
}

ul.spaced.white-bg li {
  background-color: #ffffff;
}

ul.spaced li {
  margin-bottom: 10px;
  border: 1px solid #e5e5e5;
}

ul.spaced li:first-child {
  border-top: 1px solid #e5e5e5;
}

ul.tall li > * {
  line-height: 65px !important;
  display: inline-block;
}

ul.tall li i,
ul.tall li:after {
  line-height: 65px !important;
}

ul.logout li {
  padding: 0px;
}

ul.logout li a {
  display: block;
}

ul.tag-labels li {
  border: 1px solid #5a868a;
  padding: 4px 3px 4px 20px;
  font-family: 'Roboto Condensed';
  display: inline-block;
  position: relative;
  font-size: 12px;
  margin-top: 5px;
  margin-right: 5px;
  background-color: #f2fbfe;
}

ul.tag-labels li:after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  left: 5px;
  top: 5px;
  content: "";
  border: 1px solid #c9c9c9;
}

ul.tag-labels li.cat-shipping:after {
  border-color: #66bb6a;
  background-color: #66bb6a;
}

ul.tag-labels li.cat-inspection:after {
  border-color: #9575cd;
  background-color: #9575cd;
}

ul.tag-labels li.cat-production:after {
  border-color: #ffca28;
  background-color: #ffca28;
}

ul.tag-labels li.cat-final-production:after {
  border-color: #9575cd;
  background-color: #9575cd;
}

ul.tag-labels li.cat-pre-production:after {
  background-color: #ffffff;
}

ul.block-list li {
  text-align: center;
}

ul.block-list li .bubble {
  height: 50px;
  text-transform: none;
  line-height: 50px;
  padding: 0;
}

.controls-wrapper {
  position: relative;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 110px;
  opacity: 1;
  transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.controls-wrapper .controls {
  position: fixed;
  bottom: 0;
  padding: 20px 40px 20px 20px;
  z-index: 4;
  right: 0;
  transition: right 400ms cubic-bezier(0, 0, 0.2, 1);
  -webkit-transition: right 400ms cubic-bezier(0, 0, 0.2, 1);
  transition: bottom 1ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: bottom 1ms cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: bottom 1ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: bottom 1ms cubic-bezier(0.4, 0, 0.2, 1);
}

.controls-wrapper .controls button {
  background: #ffffff;
  padding: 0;
  border: 2px solid #e5e5e5;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.62);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.62);
  height: 62px;
  width: 62px;
  float: left;
  margin-right: 15px;
  color: #424242;
}

.controls-wrapper .controls button i {
  line-height: 56px;
  margin-top: 1px;
  color: #424242;
}

.controls-wrapper .controls button.set i {
  color: #5a868a;
}

.controls-wrapper .controls button.round-btn {
  height: 62px;
}

.controls-wrapper .controls button.cta {
  background-color: #009688;
  border: none;
  color: #ffffff;
}

.controls-wrapper .controls button.cta i {
  color: #ffffff;
}

.controls-wrapper .controls .touching-buttons {
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.62);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.62);
  margin-right: 0;
}

.pull-over {
  position: fixed;
  left: calc(100% + 10px);
  top: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  transition: all 400ms cubic-bezier(0, 0, 0.2, 1);
  -moz-transition: all 400ms cubic-bezier(0, 0, 0.2, 1);
  -ms-transition: all 400ms cubic-bezier(0, 0, 0.2, 1);
  -webkit-transition: all 400ms cubic-bezier(0, 0, 0.2, 1);
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.62);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.62);
  overflow-y: auto;
  overflow-x: hidden;
}

.pull-over .header {
  color: #ffffff;
  padding: 10px 24px;
  background-color: #2c4244;
}

.pull-over.menu {
  z-index: 5;
  left: -100%;
  padding-bottom: 100px;
}

.pull-over.menu .active i {
  color: #8bb0b4;
}

.pull-over li {
  white-space: nowrap;
}

.pull-over.show {
  left: 0;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .pull-over.show {
    left: 340px;
    width: calc(100% - 340px);
  }
}

@media screen and (min-width: 991px) {
  .pull-over {
    top: 60px;
  }
}

.no-pad-left {
  padding-left: 0px;
}

.no-pad {
  padding: 0px !important;
}

.no-margin {
  margin: 0;
}

.no-top-margin {
  margin-top: 0;
}

.no-pad-bottom {
  padding-bottom: 0 !important;
}

.even-margin {
  margin: 10px 0;
}

.full-width {
  width: 100%;
}

.spacer-10 {
  height: 10px;
  width: 100%;
}

.spacer-20 {
  height: 20px;
  width: 100%;
}

.spacer-40 {
  height: 40px;
  width: 100%;
}

.spacer-60 {
  height: 60px;
  width: 100%;
}

.spacer-80 {
  height: 80px;
  width: 100%;
}

.mt-0 {
  margin-top: 0;
}

.clear {
  clear: both;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

.no-radius {
  border-radius: 0px;
}

.horiz-padding-15 {
  padding: 0 15px;
}

.borderless {
  border: none !important;
}

.inline {
  display: inline-block;
}

.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

[data-fake-temp] {
  white-space: pre-wrap;
  font-family: 'Roboto Condensed', sans-serif;
  line-height: 16px;
  font-size: 14px;
  word-break: break-all;
}

.floating-bg-color {
  background-color: #9e9e9e;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 365px;
  -webkit-box-shadow: 0px 0px 3px 0 rgba(0, 0, 0, 0.32);
          box-shadow: 0px 0px 3px 0 rgba(0, 0, 0, 0.32);
}

.floating-bg-color.primary {
  background-color: #2c4244;
}

/*
LOGIN FORM STYLES
*/

.login-container {
  position: absolute;
  margin-left: 50%;
  left: -235px;
  width: 470px;
  z-index: 10;
  top: 40px;
  padding-bottom: 40px;
}

.login-container .login-content {
  background-color: #ffffff;
  padding: 30px 24px 24px 24px;
  position: relative;
}

.login-container .login-content h1 {
  margin-top: 0;
}

.login-container .alert {
  margin-bottom: 15px;
  padding: 15px;
  background-color: #ffebee;
  border: 1px solid #dfb8b8;
}

.login-container .alert p {
  line-height: 20px;
}

/*
Task pop-up
*/

.mdl-task {
  position: absolute;
  margin-left: 50%;
  left: -235px;
  width: 470px;
  z-index: 10;
  top: 40px;
  padding-bottom: 40px;
}

.mdl-task .mdl-task-content {
  background-color: #ffffff;
  padding: 30px 24px 24px 24px;
  position: relative;
}

.mdl-task .mdl-task-content h1 {
  margin-top: 0;
}

.mdl-task .alert {
  margin-bottom: 15px;
  padding: 15px;
  background-color: #ffebee;
  border: 1px solid #dfb8b8;
}

.mdl-task .alert p {
  line-height: 20px;
}

/*
ALERT AND SNACKBAR STYLES
*/

.mdl-snackbar {
  position: fixed;
  bottom: 0;
  left: 50%;
  cursor: default;
  z-index: 3;
  display: block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  will-change: transform;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.4, 0, 1, 1);
  transition: -webkit-transform 0.25s cubic-bezier(0.4, 0, 1, 1);
  transition: transform 0.25s cubic-bezier(0.4, 0, 1, 1);
  transition: transform 0.25s cubic-bezier(0.4, 0, 1, 1), -webkit-transform 0.25s cubic-bezier(0.4, 0, 1, 1);
  border-radius: 2px;
  background-color: #4cb06d;
  color: #ffffff;
  font-family: 'Roboto Condensed', sans-serif;
  min-width: 288px;
}

.mdl-snackbar .mdl-snackbar__text {
  padding: 14px 12px 14px 24px;
  vertical-align: middle;
  color: #fff;
  float: left;
}

.mdl-snackbar .mdl-snackbar__action {
  color: #000;
  font-weight: 400;
  background: 0 0;
  border: none;
  float: right;
  padding: 14px 24px 14px 12px;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0;
  overflow: hidden;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

/* DASHBOARD STYLES */

.sidebar {
  position: relative;
  height: auto;
  width: 100%;
  background-color: #2c4244;
}

.sidebar .sidebar-header {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0 4px 0;
}

.sidebar .logo {
  width: 120px;
  display: block;
  margin: 0 auto 20px auto;
}

.sidebar .loading-container {
  text-align: center;
  position: static;
  background: rgba(0, 0, 0, 0.2);
  color: #5a868a;
  margin-bottom: -4px;
}

.sidebar .loading-container .bar-container {
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
}

.sidebar .loading-container h4 {
  margin-top: 0;
}

.sidebar .loading-container .fill {
  background-color: #5a868a;
}

.sidebar .loading-container .material-icons {
  font-size: 80%;
  vertical-align: middle;
  -webkit-animation: spin 1.5s infinite;
          animation: spin 1.5s infinite;
}

.sidebar .navigation-link {
  position: relative;
  color: #ffffff;
  width: 100%;
  display: block;
  height: 60px;
  line-height: 60px;
  padding: 0 30px;
  font-size: 16px;
}

.sidebar .navigation-link i {
  font-size: 14px;
  vertical-align: middle;
  margin-right: 6px;
  cursor: pointer;
}

.sidebar .navigation-link:hover:not(.active) {
  background-color: #365153 !important;
}

.sidebar .navigation-link .badge {
  color: #2c4244;
  float: right;
  margin-top: 20px;
}

.sidebar .navigation-link.active {
  background-color: #3e5d60;
}

.sidebar .navigation-link.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 60px;
  width: 4px;
  background-color: #ffa726;
}

@media screen and (min-width: 991px) {
  .sidebar {
    position: fixed;
    height: 100%;
    height: 100vh;
    width: 320px;
    overflow: auto;
    -webkit-box-shadow: 2px 0px 5px 0px rgba(0, 0, 0, 0.2);
            box-shadow: 2px 0px 5px 0px rgba(0, 0, 0, 0.2);
  }
}

.badge {
  background-color: #ffa726;
  color: #ffffff;
  padding: 4px 6px;
  display: inline-block;
  font-size: 12px;
  line-height: 12px;
  border-radius: 6px;
  font-weight: 700;
  margin-left: 2px;
  margin-top: -2px;
}

.badge.badge-dark {
  background-color: #2c4244;
}

.main {
  position: relative;
  height: auto;
  width: 100%;
  padding: 15px 15px 30px 15px;
  overflow-x: hidden;
}

.main h2.page-title {
  color: #757575;
  margin-top: 0;
}

.main .grid-block {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
  position: relative;
}

.main .grid-block .block-section {
  padding: 20px;
}

.main .grid-block .block-section .table-box {
  border: solid 1px #e5e5e5;
  border-bottom: none;
}

.main .grid-block .block-footer {
  border-top: solid 1px #e5e5e5;
  font-size: 14px;
}

.main .grid-block .block-footer.no-border {
  border-top: none;
}

.main .grid-block .block-title {
  margin-top: 0;
  font-weight: 700;
  font-size: 16px;
}

@media screen and (min-width: 991px) {
  .main {
    position: fixed;
    height: calc(100% - 60px);
    width: calc(100% - 320px);
    left: 320px;
    overflow: auto;
    padding: 20px;
    overflow-x: hidden;
    top: 60px;
  }

  .main .mdl-snackbar {
    width: calc(100% - 320px);
    left: 320px;
    -webkit-transform: none;
            transform: none;
  }
}

/* LEADS PAGE */

.check-crm {
  color: #78909c;
  width: 100%;
  text-align: center;
  height: 36px;
  line-height: 36px;
  font-size: 14px;
  font-size: 14px;
}

.check-crm i {
  font-size: 90%;
}

@media screen and (max-width: 490px) {
  .table-overflow {
    overflow-x: scroll;
  }
}

.table-filter {
  font-size: 14px;
  vertical-align: bottom;
}

.table-filter .custom-dropdown .options {
  left: auto;
  right: 0;
}

/* USERS PAGE */

.grid-block .cta {
  position: absolute;
  top: -24px;
  right: 10px;
}

@media screen and (max-width: 490px) {
  .grid-block .cta {
    top: -43px;
  }
}

.grid-block .cta_right_one {
  position: absolute;
  top: -43px;
  left: 125px;
}

@media screen and (max-width: 490px) {
  .grid-block .cta_right_one {
    top: -43px;
  }
}

.grid-block .cta_right_two {
  position: absolute;
  top: -43px;
  left: 175px;
}

@media screen and (max-width: 490px) {
  .grid-block .cta_right_two {
    top: -43px;
  }
}

.grid-block .cta_right_three {
  position: absolute;
  top: -43px;
  left: 225px;
}

@media screen and (max-width: 490px) {
  .grid-block .cta_right_three {
    top: -43px;
  }
}

/* =========================================================
~ ORIENTATIONS
~ Various orientation class extenders
========================================================= */

.flip-180 {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.rotate-60 {
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
}

.rotate-90 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

/* =========================================================
~ INDICATORS
~ Various components used to provide a visual display for
~ textual data.
========================================================= */

.difficulty-indicator .circle {
  width: 6px;
  height: 6px;
  margin-bottom: 5px;
  border-radius: 50%;
  margin-right: 1px;
  display: inline-block;
}

.difficulty-indicator .circle:first-child {
  border: 1px solid #ffcc80;
}

.difficulty-indicator .circle:nth-child(2) {
  border: 1px solid #fb8c00;
}

.difficulty-indicator .circle:nth-child(3) {
  border: 1px solid #e65100;
}

.difficulty-indicator.mongo .circle {
  width: 14px;
  height: 14px;
  border-width: 2px;
}

.difficulty-indicator.easy .circle:first-child {
  background-color: #ffcc80;
}

.difficulty-indicator.medium .circle:first-child {
  background-color: #ffcc80;
}

.difficulty-indicator.medium .circle:nth-child(2) {
  background-color: #fb8c00;
}

.difficulty-indicator.hard .circle:first-child {
  background-color: #ffcc80;
}

.difficulty-indicator.hard .circle:nth-child(2) {
  background-color: #fb8c00;
}

.difficulty-indicator.hard .circle:nth-child(3) {
  background-color: #e65100;
}

.difficulty-indicator + p {
  line-height: 18px;
}

.circle-indicator {
  background-color: #e5e5e5;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.circle-indicator.blue {
  background-color: #8bb0b4;
}

.circle-indicator.cat-shipping {
  background-color: #66bb6a;
}

.circle-indicator.cat-production {
  background-color: #ffca28;
}

.circle-indicator.cat-final-production {
  background-color: #9575cd;
}

.circle-indicator.cat-pre-production {
  background-color: #424242;
}

/* =========================================================
~ PULSE ANIMATION
~ Styles and components for making pulse effect.
========================================================= */

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #03a9f4;
  }

  80% {
    -webkit-box-shadow: 0 0 0 7px rgba(3, 169, 244, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(3, 169, 244, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #03a9f4;
            box-shadow: 0 0 0 0 #03a9f4;
  }

  80% {
    -webkit-box-shadow: 0 0 0 7px rgba(3, 169, 244, 0);
            box-shadow: 0 0 0 7px rgba(3, 169, 244, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(3, 169, 244, 0);
            box-shadow: 0 0 0 0 rgba(3, 169, 244, 0);
  }
}

table.alert .pulse-alert {
  border: 2px solid #ffebee;
}

.pulse-alert {
  -webkit-box-shadow: 0 0 0 #8bb0b4;
          box-shadow: 0 0 0 #8bb0b4;
  border: 2px solid white;
  margin-left: -2px;
  border-radius: 6px;
  -webkit-animation: pulse 1s infinite;
          animation: pulse 1s infinite;
}

.hide {
  display: none !important;
}

.fa-sm {
  font-size: 70% !important;
}

.fa-flip {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

