@import url(https://fonts.googleapis.com/css?family=Nunito:400,900|Montserrat|Roboto);body {
  position: relative; }

body:before,
body:after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 55px;
  background: linear-gradient(to right, #3FB6A8, #7ED386);
  z-index: -1; }

body:before {
  top: 0; }

body:after {
  bottom: 0; }

.container-fluid {
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; }

.logo {
  font-family: "Nunito Sans", sans-serif;
  color: #ffff;
  font-weight: 900;
  font-size: 1.5em;
  letter-spacing: 1px;
  z-index: 1;
  margin: 0; }

.CTA {
  width: 80px;
  height: 40px;
  right: 0;
  bottom: 90px;
  position: absolute;
  z-index: 1;
  background: #7ED386;
  font-size: 1em;
  transform: rotate(-90deg);
  transition: all .5s ease-in-out;
  cursor: pointer; }

.CTA h1 {
  color: #FFFFFF;
  margin-top: 10px;
  margin-left: 9px; }

.CTA:hover {
  background: #3FB6A8;
  transform: scale(1.1); }

.leftbox {
  height: 100%;
  min-height: 100vh;
  background: #7ED386;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  padding-top: 1rem; }

nav a {
  list-style: none;
  padding: 35px;
  color: #FFFFFF !important;
  font-size: 1.1em;
  display: block;
  transition: all .3s ease-in-out; }

nav a:hover {
  color: #3FB6A8 !important;
  transform: scale(1.2);
  cursor: pointer;
  text-decoration: none; }

nav a:first-child {
  margin-top: 7px; }

.active {
  color: #3FB6A8; }

.profile, .payment, .subscription, .privacy, .settings {
  transition: opacity .5s ease-in; }

.dropdown-menu {
  background: #7ed386 !important; }

.privacy h2 {
  margin-top: 25px; }

.settings h2 {
  margin-top: 25px; }

.noshow {
  opacity: 0; }

footer {
  position: absolute;
  width: 20%;
  bottom: 0;
  right: -20px;
  text-align: right;
  font-size: 0.8em;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Roboto", sans-serif; }

footer p {
  border: none;
  padding: 0; }

footer a {
  color: #ffffff;
  text-decoration: none; }

footer a:hover {
  color: #7d7d7d; }

body #overlay {
  position: fixed;
  /* Sit on top of the page content */
  width: 100%;
  /* Full width (cover the whole page) */
  height: 100%;
  /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* Black background with opacity */
  z-index: 2;
  /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer;
  /* Add a pointer on hover */ }

body #overlay #loader {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 50px;
  color: white;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%); }

.form-group {
  position: relative; }

h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  margin: 1rem 0;
  text-align: center; }

input.form-control {
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid currentColor; }

.button {
  width: 200px;
  padding: 0.5rem 0.5rem;
  border: none;
  outline: none;
  border-radius: 5px;
  text-align: center;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  transition: all 0.5s; }

.hover-btn {
  background-color: #3FB6A8; }

.hover-btn span {
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: 0.5s; }

.hover-btn span::after {
  position: absolute;
  content: "\BB";
  opacity: 0;
  top: 0;
  right: -25px;
  transition: 0.5s; }

.hover-btn:hover span {
  padding-right: 25px; }

.hover-btn:hover span::after {
  opacity: 1;
  right: 0; }
