@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Open+Sans:wght@300;400&display=swap");
@import url("fa/fontawesome.css");
@import url("fa/regular.css");
@import url("fa/brands.css");
html, body {
  overflow: hidden;
  position: relative;
}

body {
  min-height: 100vh;
  background-color: #222222;
  color: #FFF;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 24px;
  padding: 0;
  margin: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

*:focus {
  outline: none;
}

a:not(.button) {
  color: #667BC4;
  text-decoration: none;
}

.logoIcon {
  width: 60px;
  height: 24px;
  background-image: url(../img/logo.svg);
  margin-right: 4px;
}

.navBar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 56px;
  background-color: #4F5F98;
  position: fixed;
  padding: 0 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  -webkit-transition: 0.4s -webkit-box-shadow;
  transition: 0.4s -webkit-box-shadow;
  transition: 0.4s box-shadow;
  transition: 0.4s box-shadow, 0.4s -webkit-box-shadow;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 2;
}

.navBar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  max-width: 1280px;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navBar .container .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFF;
  font-family: Lato;
  padding-right: 16px;
}

.navBar .container .logo div {
  display: inline-block;
  width: 60px;
  height: 24px;
  background-image: url(../img/logo.svg);
  margin-right: 4px;
}

.navBar .container .links, .navBar .container .links .responsive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navBar .container .links .buttonContainer, .navBar .container .links .responsive .buttonContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.navBar .container .links .buttonContainer a, .navBar .container .links .responsive .buttonContainer a {
  color: #FFF;
  font-weight: 400;
  font-size: 16px;
  padding: 0 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.25px;
}

.navBar .container .links .bar, .navBar .container .links .responsive .bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 2px;
  -ms-flex-item-align: end;
      align-self: flex-end;
  position: absolute;
  background-color: #FFF;
  -webkit-transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.scrollContainer {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: calc(100vh - 56px);
  position: absolute;
  bottom: 0;
  -webkit-transition: margin-left 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: margin-left 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.heroContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100vw;
  height: 400px;
  min-height: 400px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.heroContainer::before {
  content: '';
  display: block;
  width: 100vw;
  height: 320px;
  min-height: 320px;
  background-color: #5B6DAE;
}

.heroContainer::after {
  content: '';
  display: block;
  width: 105%;
  height: 20%;
  background-color: #5B6DAE;
  -webkit-transform: rotate(2deg);
          transform: rotate(2deg);
  -webkit-transform-origin: right;
          transform-origin: right;
  position: absolute;
  bottom: 0;
  right: -4%;
}

.heroContainer .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: center;
      align-self: center;
  padding: 0 8px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.heroContainer .header h1 {
  margin: 0 0 16px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-family: Lato;
  font-size: 48px;
  font-weight: 400;
}

.heroContainer .header p {
  margin: 0;
}

.heroContainer .header .button {
  margin: 8px auto 0;
}

.homePage .heroContainer, .webpanelPage .heroContainer {
  height: calc(100vh - 56px);
}

.homePage .heroContainer::before, .webpanelPage .heroContainer::before {
  height: 80vh;
}

.infoContainer, .plansContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  max-width: 1280px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  padding: 16px;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  text-align: center;
}

.infoContainer .section {
  padding: 0 16px;
  min-width: 320px;
  max-width: 416px;
}

.infoContainer .section i.far {
  color: #5B6DAE;
  font-size: 36px;
}

.infoContainer .section h4 {
  color: #5B6DAE;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin: 4px 0 8px;
}

.infoContainer .section small {
  display: block;
  font-size: 18px;
}

p {
  margin: 0 0 16px;
  font-size: 20px;
}

.button {
  display: inline-block;
  height: 36px;
  line-height: 36px;
  cursor: pointer;
  background-color: #445282;
  color: #FFF;
  text-decoration: none;
  -webkit-transition: background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 18px;
  padding: 0 16px;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.25px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.button:hover {
  background-color: #4F5F98;
  -webkit-box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
}

.button[disabled] {
  opacity: .75;
  pointer-events: none;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0.14), 0 0 0 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0.14), 0 0 0 0 rgba(0, 0, 0, 0.12);
}

.plansContainer {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.plansContainer h3 {
  color: #5B6DAE;
  margin: 0 0 8px;
  font-size: 34px;
  letter-spacing: 0.25px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.footerContainer {
  width: 100vw;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.footerContainer::before {
  content: '';
  display: block;
  width: 105vw;
  height: 20%;
  background-color: #5B6DAE;
  -webkit-transform: rotate(-1deg);
          transform: rotate(-1deg);
  -webkit-transform-origin: right;
          transform-origin: right;
  position: relative;
  top: 0;
  right: 2%;
}

.footerContainer .footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 200px;
  background-color: #5B6DAE;
  position: absolute;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.footerContainer .footer h3, .footerContainer .footer h4 {
  font-weight: normal;
  margin: 0;
}

.footerContainer .footer .section {
  display: inline-block;
  margin: 0 32px;
}

.footerContainer .footer .section h4 {
  border-bottom: 2px solid #FFF;
}

.footerContainer .footer .section a {
  display: inline-block;
  color: #FFF;
  width: 80px;
}

.footerContainer .footer .section a p {
  margin: 0;
  font-size: 18px;
}

.footerContainer .footer .copyright {
  font-size: 16px;
  margin-bottom: 8px;
}

.signupPage .plansContainer {
  min-height: 512px;
}

.plan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 224px;
  margin: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  -webkit-transition: left .25s, right .25s, opacity .25s ease-in-out, height .5s, -webkit-box-shadow .28s, -webkit-transform .28s;
  transition: left .25s, right .25s, opacity .25s ease-in-out, height .5s, -webkit-box-shadow .28s, -webkit-transform .28s;
  transition: box-shadow .28s, transform .28s, left .25s, right .25s, opacity .25s ease-in-out, height .5s;
  transition: box-shadow .28s, transform .28s, left .25s, right .25s, opacity .25s ease-in-out, height .5s, -webkit-box-shadow .28s, -webkit-transform .28s;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.plan:first-child {
  left: 0;
  margin-left: 0;
}

.plan:last-child {
  right: 0;
  margin-right: 0;
}

.plan:hover {
  -webkit-box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.plan .planMedia {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 128px;
  min-height: 128px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #5B6DAE;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.plan .planMedia .wrap {
  font-family: Lato;
  letter-spacing: -.1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.plan .planMedia p {
  margin: 0;
}

.plan .planFeatures {
  background-color: #1E1E1E;
  font-size: 20px;
  padding: 2px 0;
}

.plan .planFeatures p {
  min-height: 34px;
  line-height: 34px;
  margin: 0;
}

.plan .planFeatures p.special {
  color: #667BC4;
}

.plan .planPrice {
  padding: 8px 0 0;
  background-color: #5B6DAE;
}

.plan .planPrice p {
  margin: 0;
}

.plan .planPrice small {
  font-size: small;
}

.plan .planPrice .button {
  width: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin: 8px auto;
}

.choosePlan, .webHostingPlans, .vpsPlans {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.webHostingPlans, .vpsPlans {
  display: none;
}

.webHostingPlans .plan, .vpsPlans .plan {
  opacity: 0;
  -webkit-transition: opacity .75s ease-in-out, -webkit-box-shadow .28s, -webkit-transform .28s;
  transition: opacity .75s ease-in-out, -webkit-box-shadow .28s, -webkit-transform .28s;
  transition: box-shadow .28s, transform .28s, opacity .75s ease-in-out;
  transition: box-shadow .28s, transform .28s, opacity .75s ease-in-out, -webkit-box-shadow .28s, -webkit-transform .28s;
}

.signupForm {
  display: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  opacity: 0;
  -webkit-transition: .5s opacity;
  transition: .5s opacity;
}

.textField {
  display: inline-block;
  background-color: #1E1E1E;
  position: relative;
  min-width: 250px;
  max-width: 500px;
  width: 40%;
  margin: 12px 10px;
  border-radius: 4px 4px 0 0;
  vertical-align: top;
}

.textField input {
  background-color: transparent;
  color: #CCC;
  font-family: 'Open Sans';
  font-size: 16px;
  caret-color: #667BC4;
  padding: 20px 12px 6px;
  display: block;
  width: 100%;
  height: 56px;
  border: none;
  border-bottom: 1px solid #757575;
}

.textField input:-webkit-autofill, .textField input:-webkit-autofill:hover, .textField input:-webkit-autofill:focus {
  -webkit-box-shadow: inset 0px 0 0px 50px #1E1E1E;
          box-shadow: inset 0px 0 0px 50px #1E1E1E;
  color: #FFF !important;
  -webkit-text-fill-color: #CCC;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.textField input[name='username'] {
  text-transform: lowercase;
}

.textField input[required]:invalid:not(.default) {
  border-bottom-color: #D32F2F;
  caret-color: #D32F2F;
}

.textField label {
  color: #999;
  font-size: 16px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 12px;
  top: 17px;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

input:focus ~ label, input:not([value='']) ~ label {
  top: 7px;
  font-size: 12px;
}

input:not([value='']) ~ label {
  color: #999;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

input:focus ~ label {
  color: #667BC4;
}

input[required] ~ label:after {
  content: '*';
  margin-left: 0;
  -webkit-transition: 0.3s ease color;
  transition: 0.3s ease color;
}

input[required]:focus ~ label:after, input[required]:invalid:not(.default) ~ label {
  color: #D32F2F;
}

.textField .bar:after, .textField .bar:before {
  content: '';
  height: 2px;
  width: 0;
  bottom: 0;
  position: absolute;
  background-color: #667BC4;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

input[required]:invalid:not(.default) ~ .bar:after, input[required]:invalid:not(.default) ~ .bar:before {
  background-color: #D32F2F;
}

.textField .bar:before {
  left: 50%;
}

.textField .bar:after {
  right: 50%;
}

input:focus ~ .bar:after, input:focus ~ .bar:before, input:not([value='']) ~ .bar:before, input:not([value='']) ~ .bar:after {
  width: 50%;
}

.input .label {
  -webkit-transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1), color 150ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1), color 150ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.helperText {
  color: #999;
  font-size: 14px;
  margin: 0;
}

.h-captcha div {
  margin: 16px auto;
}

.bigLie {
  color: #CCC;
  font-size: 18px;
}

.actionsContainer {
  position: fixed;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.snackBarContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.snackBarContainer .snackBar {
  max-width: 672px;
  min-width: 304px;
  background-color: #333;
  color: #EBEBEB;
  border-radius: 4px;
  -webkit-box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
  -webkit-transition: opacity 0.15s cubic-bezier(0, 0, 0.2, 1), -webkit-transform 0.15s cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 0.15s cubic-bezier(0, 0, 0.2, 1), -webkit-transform 0.15s cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 0.15s cubic-bezier(0, 0, 0.2, 1), transform 0.15s cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 0.15s cubic-bezier(0, 0, 0.2, 1), transform 0.15s cubic-bezier(0, 0, 0.2, 1), -webkit-transform 0.15s cubic-bezier(0, 0, 0.2, 1);
  opacity: 0;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  padding: 12px 16px;
  margin-bottom: 8px;
  font-size: 18px;
  letter-spacing: .25px;
  pointer-events: auto;
  word-break: break-word;
}

.FABContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  padding: 0 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.FABContainer .button.FAB {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 48px;
  line-height: 48px;
  border-radius: 24px;
  padding: 0 20px;
  margin-bottom: 16px;
  -webkit-transition: opacity 15ms linear 30ms, background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 15ms linear 30ms, background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 15ms linear 30ms, transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1), background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 15ms linear 30ms, transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1), background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1);
  -webkit-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: auto;
}

.FABContainer .button.FAB:hover {
  -webkit-box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.FABContainer .button.FAB:active {
  -webkit-box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}

.FABContainer .button.FAB i.far {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  height: 24px;
  margin-left: -8px;
  margin-right: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 344px;
  line-height: normal;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
  border-radius: 4px;
  background-color: #1E1E1E;
  text-align: left;
  -webkit-box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12);
  overflow: hidden;
  margin: 16px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: height 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: height 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.card .cardTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px;
  line-height: 32px;
  font-family: Lato;
  font-size: 24px;
  letter-spacing: 0.25px;
  word-break: break-word;
  overflow: visible;
}

.card .cardTitle p {
  width: 280px;
  font-size: 24px;
  margin: 0;
}

.card .cardTitle .chevron {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  padding: 4px;
}

.card .cardTitle .chevron i {
  -webkit-transition: -webkit-transform .25s;
  transition: -webkit-transform .25s;
  transition: transform .25s;
  transition: transform .25s, -webkit-transform .25s;
  -webkit-transform: rotateX(0);
          transform: rotateX(0);
}

.card .cardExpand {
  color: #CCC;
  font-size: 18px;
  padding: 0 16px 8px;
}

.card .cardExpand p {
  margin: 0;
  word-break: break-word;
  font-size: 18px;
}

.waves-circle .waves-ripple {
  top: 50% !important;
  left: 50% !important;
}

.webpanelPage .heroContainer {
  background-color: #5B6DAE;
}

.webpanelPage .heroContainer::before, .webpanelPage .heroContainer::after {
  display: none;
}

.pageContainer {
  display: inline-block;
  width: 100vw;
  height: calc(100vh - 56px);
  scroll-behavior: smooth;
}

@media screen and (max-width: 1279px) {
  .vpsPlans {
    max-width: 1007px;
  }
}

@media screen and (max-width: 771px) {
  .homePage .heroContainer, .webpanelPage .heroContainer {
    height: calc(100vh - 104px);
  }
  .scrollContainer, .pageContainer {
    height: calc(100vh - 104px);
  }
  .navBar {
    padding: 0px 0px 48px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
  }
  .navBar .container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .navBar .container .links {
    position: absolute;
    top: 56px;
    background: #4F5F98;
    width: 100%;
    height: 48px;
  }
  .navBar .container .links .responsive, .navBar .container .links .responsive .buttonContainer {
    width: 100%;
  }
}

@media screen and (max-width: 686px) {
  .navBar .container .links {
    width: 100%;
    overflow-y: auto;
    scroll-behavior: smooth;
  }
  .navBar .container .links .responsive {
    width: auto;
    padding: 0 52px;
  }
  .navBar .container .links .responsive .buttonContainer {
    width: auto;
    min-width: 115px;
  }
  .navBar .container .links::-webkit-scrollbar {
    display: none;
  }
}

@media screen and (max-width: 543px) {
  .vpsPlans {
    max-width: 495px;
  }
}

@media screen and (max-width: 527px) {
  .plan.plan {
    margin: 16px;
  }
  .plan.plan:first-child {
    margin-top: 0;
  }
  .plan.plan:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 480px) {
  .snackBar {
    min-width: 100%;
  }
}

@media screen and (max-width: 350px) {
  .heroContainer .header h1 {
    font-size: 42px;
  }
}
/*# sourceMappingURL=styles.css.map */