/***************** VARIABLES *****************/
/* Standard Colors */
/* Company Colors */
/* Dark Colors */
/* Light Colors */
/***************** FONTS *****************/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;1,700&display=swap");
/***************** STANDARD TAGS *****************/
* {
  font-family: 'Open Sans', sans-serif;
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  width: 100%;
  font-size: 16px;
  color: #111;
  background-color: #DDD;
}

a {
  color: #527998;
  text-decoration: none;
  font-weight: 400;
  -webkit-transition: .2s;
  transition: .2s;
  cursor: pointer;
}

a:hover {
  color: #8dc63f;
}

.grayLink {
  color: #888888;
  cursor: pointer;
}

.grayLink:hover {
  color: #007fcd;
}

::-moz-selection {
  color: #206ca6;
  background: #daf1ff;
}

::selection {
  color: #206ca6;
  background: #daf1ff;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1;
  font-weight: 600;
}

h1 {
  font-size: 26px;
  padding-bottom: 15px;
}

h2 {
  font-size: 22px;
  padding-bottom: 15px;
}

h3 {
  font-size: 24px;
  padding-bottom: 15px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 20px;
}

table, tr, td {
  color: inherit;
}

/* Improve readability */
p, ul, ol, dl, address {
  line-height: 1.5;
}

pre {
  font-family: Arial, sans-serif;
  white-space: pre-wrap;
  /* Overflow by default is bad. */
}

hr {
  border: .5px solid;
}

nav ul {
  list-style: none;
}

img, video, canvas, audio, iframe, embed, object {
  display: block;
  /* Switch display mode to block, since that's what we usually want for images. */
  vertical-align: middle;
  /* If you override, and make an image inline, it's likely you'll want middle vertical alignment. */
}

img, video {
  max-width: 100%;
  /* Make images and video flexible by default. */
  height: auto;
  /* Ensure images and video maintain their aspect ratio when max-width comes into play. */
}

img {
  border-style: none;
  /* Remove the border on images inside links in IE 10 and earlier. */
}

/***************** IMPORTANT *****************/
.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome and Opera */
}

.show_dollar:before {
  content: '$';
  font-size: inherit;
}

.defaultTip {
  border-bottom: 1px dotted #808080;
}

.loadingDiv {
  padding: 20px;
}

.loadingDiv div {
  width: 90px;
  height: 90px;
  margin: 0px auto;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  background: url("img/TemplateIcons/loading.gif") no-repeat;
  background-size: contain;
}

.hoverText:hover {
  color: #527998;
  cursor: pointer;
}

.deleteIcon {
  display: inline-block;
  background: url("img/TemplateIcons/deleteIcon.png") no-repeat;
  background-size: contain;
  background-position: center center;
  width: 24px;
  height: 24px;
  cursor: pointer;
  -webkit-transition: -webkit-transform .1s;
  transition: -webkit-transform .1s;
  transition: transform .1s;
  transition: transform .1s, -webkit-transform .1s;
  border: none;
}

.deleteIcon:hover {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

/****************************************************************************
*********************************** SIZING **********************************
****************************************************************************/
.grid2, .grid2s {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

.grid3, .grid3s {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
}

.grid4, .grid4s {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid5, .grid5s {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.grid6, .grid6s {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid2s {
  grid-gap: 1rem;
}

.grid3s {
  grid-gap: 1rem;
}

.grid4s {
  grid-gap: 1rem;
}

.grid5s {
  grid-gap: 1rem;
}

.grid6s {
  grid-gap: 1rem;
}

.gridCenterVert {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gridCenter {
  display: -ms-grid;
  display: grid;
  justify-items: center;
}

.oneLine {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.twoLines {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.threeLines {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/****************************************************************************
*********************************** HEADER **********************************
****************************************************************************/
.TopBar {
  position: fixed;
  z-index: 2;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 200px 1fr 10px 300px;
      grid-template-columns: 200px 1fr 10px 300px;
  width: 100%;
  height: 70px;
  background: #212121;
  border-bottom: #527998 3px solid;
  text-align: right;
}

.TopBar .logo {
  margin: 5px 10px;
  width: 100%;
  height: 58px;
  background: url("img/Logo/0.png") no-repeat;
  background-size: contain;
  background-position: left center;
}

.TopBar .myAccount {
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px;
      grid-template-columns: 1fr 50px;
}

.TopBar .myAccount .name {
  color: #FFF;
  line-height: 67px;
  font-size: 16px;
  padding-right: 8px;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.TopBar .myAccount .icon {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 48px;
  text-align: center;
  background-color: #8dc63f;
  color: #FFFFFF;
  top: 8px;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.TopBar .myAccount:hover .name {
  color: #527998;
}

.TopBar .myAccount:hover .icon {
  background-color: #527998;
  color: #212121;
}

.headerProfileDropDown {
  display: none;
  position: absolute;
  top: 54px;
  right: 10px;
  z-index: 10;
  border-radius: 4px;
  margin-top: 17px;
  margin-right: 0px;
  width: 200px;
  float: right;
}

.headerProfileDropDown:before {
  content: " ";
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: 5px;
  top: -7px;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  background-color: #FFF;
}

.headerProfileDropDown .dropDownRow {
  display: block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #FFF;
  color: #888;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  border-left: 1px solid #ededed;
  border-right: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  text-align: left;
  position: relative;
  z-index: 20;
}

.headerProfileDropDown .dropDownRow:first-child {
  border-radius: 4px 4px 0px 0px;
}

.headerProfileDropDown .dropDownRow:last-child {
  border-radius: 0px 0px 4px 4px;
}

.headerProfileDropDown .dropDownRow:hover {
  background-color: #daf1ff;
  border-color: #daf1ff;
  color: #206ca6;
}

.sideNav {
  position: fixed;
  z-index: 1;
  width: 200px;
  height: 100%;
  background: #212121;
  margin-top: 70px;
  border-right: #527998 1px solid;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  overflow-x: hidden;
  overflow-y: auto;
}

.sideNav a {
  border-bottom: 1px solid #777;
  color: #AAA;
}

.sideNav a .sideNavOption {
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  padding: 5px;
}

.sideNav a:hover .sideNavOption {
  color: #FFFFFF;
  background-color: #527998;
}

.sideNav a:last-child {
  border-bottom: none;
}

.sideNavActive {
  color: #EEE;
  background-color: #527998;
}

.templateBody {
  padding-top: 70px;
  padding-left: 200px;
}

.adminContent {
  padding: 10px 15px;
}

/****************************************************************************
*********************************** ICONS **********************************
****************************************************************************/
.deleteIcon {
  background: url("img/TemplateIcons/red-x.png") no-repeat;
  background-size: contain;
  background-position: center center;
  width: 24px;
  height: 24px;
  cursor: pointer;
  -webkit-transition: -webkit-transform .1s;
  transition: -webkit-transform .1s;
  transition: transform .1s;
  transition: transform .1s, -webkit-transform .1s;
  border: none;
}

.deleteIcon:hover {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

/****************************************************************************
*********************************** LOGIN **********************************
****************************************************************************/
.loginBox {
  background-color: #FFF;
  width: 400px;
  overflow: auto;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid #ededed;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-height: 100%;
}

.inputWrap {
  margin: 20px 0 5px 0;
  position: relative;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}

.inputWrap label {
  display: block;
  text-align: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 6px;
  color: #777;
  position: absolute;
  top: 8px;
  left: 0px;
  font-size: 16px;
  z-index: 0;
  -webkit-transition-duration: .1s;
          transition-duration: .1s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  pointer-events: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inputWrap input:focus + label, .inputWrap input:not(:placeholder-shown) + label, .inputWrap textarea:focus + label, .inputWrap textarea:not(:placeholder-shown) + label {
  top: -18px !important;
  left: 0px !important;
  font-size: 14px;
  background: transparent;
  z-index: 2;
}

.inputWrap input:focus + label, .inputWrap textarea:focus + label {
  color: #111;
}

.inputWrap:placeholder {
  color: #cecece;
}

.inputWrapLabel {
  display: block;
  text-align: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 6px;
  color: #777;
  font-size: 16px;
  pointer-events: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inputWrap label span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.inputWrap input:placeholder-shown + label > span {
  color: #bc0a0a;
}

/****************************************************************************
*********************************** INPUTS **********************************
****************************************************************************/
.defaultInput, .defaultSelect, .DefaultInputError {
  width: 100%;
  padding: 5px;
  font-size: 18px;
  background-color: #FFF;
  color: #111;
  font-weight: 400;
  border: #777 1px solid;
  text-align: left;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  outline: 0;
}

.defaultInput:hover, .defaultSelect:hover {
  border-color: #206ca6;
  color: #111;
}

.defaultInput:focus, .defaultSelect:focus {
  border-color: #206ca6;
  color: #111;
}

/****************************************************************************
*********************************** BUTTONS **********************************
****************************************************************************/
.defaultButton {
  display: inline-block;
  background: transparent;
  color: #206ca6;
  border: 2px solid #206ca6;
  border-radius: 6px;
  padding: 8px 16px;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.defaultButton:hover {
  color: #FFF;
  border-color: #206ca6;
  background-color: #206ca6;
}

.defaultButton:active {
  color: #FFF;
  border-color: #206ca6;
  background-color: #206ca6;
}

.defaultButton:disabled {
  color: #CCC;
  border-color: #CCC;
  background-color: #CCC;
}

.createButton:before {
  content: "+";
  color: inherit;
  margin-right: 5px;
}

.createButton {
  display: inline-block;
  color: #080;
  border: 2px solid #080;
  border-radius: 6px;
  padding: 8px 16px;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.createButton:hover {
  color: #FFF;
  border-color: #080;
  background-color: #080;
}

.createButton:active {
  border-color: #060;
  background-color: #060;
}

.createButton:disabled {
  color: #CCC;
  border-color: #CCC;
  background-color: #CCC;
}

/****************************************************************************
*********************************** TABLES **********************************
****************************************************************************/
.defaultTable {
  width: 100%;
  border-spacing: 0px;
  border-collapse: collapse;
}

.defaultTable tr th {
  padding: 8px;
  font-size: 16px;
  font-weight: 600;
  background-color: #527998;
  color: #FFF;
  text-align: left;
}

.defaultTable tr th:first-child {
  border-radius: 8px 0px 0px 0px;
}

.defaultTable tr th:last-child {
  border-radius: 0px 8px 0px 0px;
}

.defaultTable tr td {
  padding: 8px;
  font-size: 16px;
  font-weight: 300;
  color: #111;
  text-align: left;
}

.defaultTable tr:nth-child(even) {
  background-color: #f2f2f2;
}

.defaultTable tr:nth-child(odd) {
  background-color: #f8f8f8;
}

.defaultTable tr:hover {
  background-color: #FFF;
}

/****************************************************************************
*********************************** USERS **********************************
****************************************************************************/
.userPageGrid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-gap: 0px 10px;
}

.userGroup {
  border: 1px solid #ededed;
  padding: 10px;
  background-color: #FFF;
  margin-bottom: 8px;
}

.userGroup:hover {
  border-color: #dcdcdc;
}

.userPermissionGrid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 100px 100px;
      grid-template-columns: 1fr 100px 100px;
  background-color: #FFF;
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 10px;
}

.userPermissionGrid:hover {
  background-color: #F5F5F5;
}

/****************************************************************************
******************************* Notes/Comments ******************************
****************************************************************************/
.noteDiv {
  background-color: #F5F5F5;
  padding: 10px;
  border-radius: 4px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50px 1fr;
      grid-template-columns: 50px 1fr;
  margin-bottom: 5px;
}

.noteDiv:hover {
  background-color: #FFF;
}

.noteDiv .left .userCircle {
  border-radius: 50%;
  background-color: #527998;
  color: #FFF;
  font-size: 20px;
  line-height: 36px;
  text-align: center;
  padding: 5px;
}

.noteDiv .right {
  padding-left: 5px;
}

.noteDiv .right .time {
  float: right;
  color: #AAA;
}

.noteDiv .right .user {
  font-weight: 700;
  text-align: left;
}

.noteDiv .right .notes {
  margin-top: 10px;
  text-align: left;
}

/****************************************************************************
*********************************** COLORS **********************************
****************************************************************************/
.colorPreview {
  width: 50px;
  height: 25px;
  margin: auto;
  border-radius: 4px;
  -webkit-transition: -webkit-transform .1s;
  transition: -webkit-transform .1s;
  transition: transform .1s;
  transition: transform .1s, -webkit-transform .1s;
}

.colorPreviewRow:hover .colorPreview {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

/******************************************************************************
*********************************** FIELDSET **********************************
******************************************************************************/
.defaultFieldset {
  border-radius: 4px;
  border: 1px solid #acacac;
  margin: 0px 0px 5px 0px;
}

.defaultFieldset legend {
  color: #fdbb02;
  text-align: center;
  padding: 0px 8px;
}

/********************************************************************************
*********************************** TIME CLOCK **********************************
********************************************************************************/
.timeClockButton {
  font-size: 16px;
  margin-top: 12px;
  padding: 5px;
  text-align: center;
  width: 100%;
  background-color: #4b050b;
  color: #FFF;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  -webkit-transform: background-color .1s;
          transform: background-color .1s;
}

.timeClockButton:hover {
  background-color: #fdbb02;
  color: #4b050b;
}

.timeClockButton:disabled {
  color: #999;
  background-color: #ededed;
}

.timeClockBox {
  position: fixed;
  z-index: 10;
  right: 10;
  bottom: 10;
  border: 1px solid #EEE;
  background-color: #FFF;
  width: 100%;
  max-width: 400px;
  border-radius: 4px;
  -webkit-transition: right 0.2s ease;
  transition: right 0.2s ease;
}

.timeClockBox .timeClockTitleBar {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px;
      grid-template-columns: 1fr 20px;
  background-color: #206ca6;
  border-radius: 4px 4px 0px 0px;
  padding: 5px 5px 5px 10px;
}

.timeClockBox .timeClockTitleBar .titleText {
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
}

.timeClockBox .timeClockTitleBar .titleClose {
  cursor: pointer;
  color: #FFF;
  -webkit-transition: -webkit-transform .1s;
  transition: -webkit-transform .1s;
  transition: transform .1s;
  transition: transform .1s, -webkit-transform .1s;
  text-align: center;
}

.timeClockBox .timeClockTitleBar .titleClose:hover {
  color: #900;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

.timeClockBoxHide {
  right: -400;
}

#TimeClockIn, #TimeClockOut {
  text-align: center;
}

#TimeClockDuration {
  margin-left: 8px;
  font-weight: 400;
  color: #daf1ff;
}

/***************** ON/OFF FLIPSWITCH *****************/
.onoffswitch {
  position: relative;
  width: 75px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.onoffswitch-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.onoffswitch-label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #888;
  border-radius: 20px;
  background-color: #888;
}

.onoffswitch-inner {
  display: block;
  width: 200%;
  margin-left: -100%;
  -webkit-transition: margin 0.3s ease-in 0s;
  transition: margin 0.3s ease-in 0s;
}

.onoffswitch-inner:before, .onoffswitch-inner:after {
  display: block;
  float: left;
  width: 50%;
  height: 20px;
  padding: 0;
  line-height: 20px;
  font-size: 14px;
  color: white;
  font-family: Trebuchet, Arial, sans-serif;
  font-weight: bold;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.onoffswitch-inner:before {
  content: "ON";
  padding-left: 10px;
  background-color: #249C00;
  color: #FFFFFF;
}

.onoffswitch-inner:after {
  content: "OFF";
  padding-right: 10px;
  background-color: #990000;
  color: #FFFFFF;
  text-align: right;
}

.onoffswitch-switch {
  display: block;
  width: 28px;
  height: 28px;
  margin: -2px;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 51px;
  border: 2px solid #999999;
  border-radius: 20px;
  -webkit-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
  margin-left: 0;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
  right: 0px;
}

/***************** ERROR/SUCCESS *****************/
.error, .warning, .info, .success {
  margin: 5px 0px;
  padding: 5px;
  text-align: center;
  font-weight: 400;
  border-radius: 4px;
  font-size: 15px;
}

/* DARK */
.error {
  color: #FFF;
  border: 1px solid #C00;
  background: #C00;
}

.warning {
  color: #FFF;
  border: 1px solid #eb7f00;
  background: #eb7f00;
}

.success {
  color: #FFF;
  border: 1px solid #529214;
  background: #529214;
}

.info {
  color: #FFF;
  border: 1px solid #336699;
  background: #336699;
}

/* LIGHT */
.error {
  color: #C00;
  border: 1px solid #C00;
  background: #ffeced;
}

.warning {
  color: #eb7f00;
  border: 1px solid #eb7f00;
  background: #fff9d7;
}

.success {
  color: #529214;
  border: 1px solid #529214;
  background: #E6EFC2;
}

.info {
  color: #336699;
  border: 1px solid #336699;
  background: #dff4ff;
}

/***************** MODAL / LIGHTBOX *****************/
/* Lightbox / Modal */
/* The Modal (background) */
.defaultModal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 9999;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  padding-bottom: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.8);
  /* Black w/ opacity */
}

/* Add Modal Animation */
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

.modalBox {
  width: 90%;
  margin: 0px auto;
  background-color: #FFF;
  border: #404040 1px solid;
  box-shadow: 0 0 6px #000;
  -moz-box-shadow: 0 0 6px #000;
  -webkit-box-shadow: 0 0 6px #000;
  animation-name: animatetop;
  -webkit-animation-name: animatetop;
  animation-duration: 0.3s;
  -webkit-animation-duration: 0.3s;
}

.modalContent {
  padding: 20px;
}

/* The Modal's Close Button */
.close {
  color: #777;
  float: right;
  font-size: 32px;
  font-weight: bold;
  margin-right: 8px;
}

.close:hover,
.close:focus {
  color: #179eef;
  text-decoration: none;
  cursor: pointer;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/*@media (max-width: 768px)*/
@media (max-width: 900px) {
  /* For mobile phones: */
  .gridStack {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}
/*# sourceMappingURL=screen.css.map */