/* Box-shadow */
/* 400px */
/* 640px */
/* 768px */
/* 990px */
/* 1200px */
/* 1600 */
/* 1920 */
.button {
  display: inline-block;
  background-image: linear-gradient(to right, #E0F268, #9DB20F, #9DB20F, #E0F268);
  border-radius: 5px;
  color: #444444;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  padding: 9px 22px;
  text-align: center;
  border: none;
  text-transform: uppercase;
  background-size: 300% 100%;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 640px) {
  .button {
    padding: 9px 15px;
    font-size: 14px;
  }
}
.button:hover {
  background-position: 100% 0;
}
.button.fire:hover {
  box-shadow: 0px 0px 25px #f7be683d;
}
.button.blue-gray {
  background: #2c3e50;
  color: #ffffff;
  border-radius: 0;
}
.button.blue-gray:hover {
  background: #204d74;
}
.button.outline {
  background-image: none;
  color: #ffffff;
  text-transform: none;
  font-weight: 500;
  padding: 0;
}
.button.outline:hover {
  text-decoration: underline;
}
.form-controls-group {
  margin-bottom: 25px;
  width: 100%;
}
@media (max-width: 640px) {
  .form-controls-group {
    margin-bottom: 15px;
  }
}
.form-controls-label {
  display: inline-block;
  width: 100%;
}
.form-controls-name {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #CCCCCC;
}
@media (max-width: 640px) {
  .form-controls-name {
    font-size: 15px;
  }
}
.form-controls-input {
  padding: 15px 25px;
  border-radius: 5px;
  border: 1px solid #262626;
  background-color: #262626;
  color: #ffffff;
  font-size: 17px;
  width: 100%;
}
@media (max-width: 640px) {
  .form-controls-input {
    padding: 10px 15px;
    font-size: 15px;
  }
}
.form-controls-input::selection {
  color: #313804;
  background: #E0F268;
}
.form-controls-input:focus {
  border-color: #666666;
}
.form-controls-alert {
  color: #b81c23;
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
}
.modal {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(28, 28, 28, 0.5);
}
.modal-content {
  position: relative;
  max-width: 600px;
  background: #1C1C1C;
  border-radius: 20px;
  padding: 20px;
}
.modal-footer {
  margin-top: 10px;
  text-align: center;
}
.modal-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.modal-close {
  text-align: right;
  font-size: 20px;
  cursor: pointer;
}
*,
*::after,
*::before {
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
}
html,
body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  padding: 0;
  margin: 0;
  color: #ffffff;
  background: #1C1C1C;
  min-height: 100vh;
}
main {
  padding: 0 15px;
}
body.bg-stars {
  background-image: url(../../assets/img/design/main-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.container {
  max-width: 1300px;
  margin: auto;
}
a {
  text-decoration: none;
  color: #ffffff;
}
a:hover {
  color: #E0F268;
}
.blurred {
  position: relative;
}
.blurred-div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.blurred::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.preloader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.75);
  z-index: 999999;
}
.preloader.open {
  display: flex;
}
.preloader-image {
  max-width: 140px;
}
._hidden {
  display: none;
}
ul#componentContainer li:not(:last-child) {
  margin-right: 10px;
}
/*# sourceMappingURL=app.css.map */