* {
  font-family: 'Montserrat', sans-serif;
  box-sizing: border-box;
  outline: none;
}

body {
  margin: 0;
}

a {
  text-decoration: none;
}

.loading-screen {
  position: fixed;
  display: flex;
  z-index: 1000000000;

  justify-content: center;
  align-items: center;

  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  width: 100vw;
  height: 100vh;

  background: white;
}

.btn {
  display: inline-block;
  position: relative;
  z-index: 1;

  overflow: hidden;

  cursor: pointer;

  padding: 0 37px;

  vertical-align: middle;
  white-space: nowrap;

  text-align: center;

  border: none;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;

  line-height: 60px;

  font-size: 16px;
  font-weight: 600;

  color: #fff;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  background-image: -webkit-linear-gradient(90deg,#005cea 0%,#00c5fb 50%,#005cea 100%);
  background-image: -moz-linear-gradient(90deg,#005cea 0%,#00c5fb 50%,#005cea 100%);
  background-image: -ms-linear-gradient(90deg,#005cea 0%,#00c5fb 50%,#005cea 100%);
  background-image: -o-linear-gradient(90deg,#005cea 0%,#00c5fb 50%,#005cea 100%);
  background-image: linear-gradient(90deg,#005cea 0%,#00c5fb 50%,#005cea 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='',endColorStr='');
  background-size: 300%,1px;
  background-position: 0;

  -webkit-transition: all .3s linear 0ms;
  -khtml-transition: all .3s linear 0ms;
  -moz-transition: all .3s linear 0ms;
  -ms-transition: all .3s linear 0ms;
  -o-transition: all .3s linear 0ms;
  transition: all .3s linear 0ms;
}
.btn:hover {
  color: #fff;

  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;

  background-color: transparent;
  background-position: 100%;
}

.btn.btn-primary {
  background-image: none;
  background-color: #0064eb;
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
  color: #fff;
  background-color: #222;
}

.btn.btn-outline {
  position: relative;
  z-index: 1;
  color: #222;
  background-position: 100% !important;
}

.btn.btn-outline-gray {
  border: 1px solid #d7dfe3;
  color: #878d95;
  background-image: none;
  background-color: transparent;
}
.btn.btn-outline-gray:hover, .btn.btn-outline-gray:focus {
  border-color: #0064eb;
  color: #fff;
  background-color: #0064eb;
}

.btn.btn-white {
  padding: 0 33px;
  color: #222;
  border: 1px solid #fff;
  background-image: none;
  background-color: #fff;
}
.btn.btn-white:hover, .btn.btn-white:focus {
  color: #fff;
  background-color: rgba(255,255,255,0);
}
.btn.btn-secondary {
  background-image: none;
  background-color: #f2a706;
}
.btn.btn-secondary:hover, .btn.btn-secondary:focus {
  color: #fff;
  background-color: #222;
}
.btn-secondary:not([disabled]):not(.disabled).active,
.btn-secondary:not([disabled]):not(.disabled):active {
  border-color: #666e76;
  color: #fff;
  background-color: #6c757d;
  box-shadow: 0 0 0 0.2rem rgba(134,142,150,.5);
}
