.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.row.no-gutters > [class^="col-"],
.row.no-gutters > [class*=" col-"] {
  padding-right: 0;
  padding-left: 0;
}

textarea,
input[type="text"],
input[type="button"],
input[type="submit"] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

.hide {
  display: none;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  background-color: #01a1ff;
  font-family: 'Lato', sans-serif;
  font-size: 12pt;
  color: white;
  text-align: center;
}

.wrapper {
  position: relative;
  z-index: 20;
  /* Make sure this is higher than #menu */
}

._form-content {
  padding-top: 10px !important;
}

img {
  border: 0px;
}

.hangtight {
  margin-top: 100px;
  max-width: 50%;
}

a {
	color:white;
}

.mobile_panel {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 260px;
  padding: 15px 25px;
  margin: 0;
  height: 100%;
  list-style: none;
  z-index: 10;
  /* Make sure the z-index is lower than the #page */
}

.mobile_panel .close_menu {
  color: #2e2e2e;
  padding: 10px;
  text-align: center;
  margin-bottom: 10px;
}

.mobile_panel .close_menu i {
  margin-right: 10px;
}

.mobile_panel .close_menu:hover {
  cursor: pointer;
}

.mobile_panel .mobile_menu {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}

/* Show the menu when animating or visible */
.animating .mobile_panel, .menu-visible .mobile_panel {
  display: block;
}

/***
 * If the animating class is present then apply
 * the CSS transition to #page over 250ms.
 */
.animating .wrapper {
  transition: transform 0.25s ease-in-out;
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
}

/***
 * If the left class is present then transform
 * the #page element 240px to the left.
 */
.animating.left .wrapper {
  transform: translate3d(-260px, 0, 0);
  -webkit-transform: translate3d(-260px, 0, 0);
}

/***
 * If the right class is present then transform
 * the #page element 240px to the right.
 */
.animating.right .wrapper {
  transform: translate3d(260px, 0, 0);
  -webkit-transform: translate3d(260px, 0, 0);
}

/***
 * If the menu-visible class is present then
 * shift the #page 240px from the right edge
 * via position: absolute to keep it in the 
 * open position. When .animating, .left and
 * .right classes are not present the CSS
 * transform does not apply to #page.
 */
.menu-visible .wrapper {
  right: 260px;
}

.wrapper, .mobile_panel {
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
}
