@-moz-keyframes spinner {
  0%, 40%, 100% {
    transform: scaleY(0.3);
  }
  20% {
    transform: scaleY(1);
  }
  100% {
    background-color: #333;
  }
}
@-webkit-keyframes spinner {
  0%, 40%, 100% {
    transform: scaleY(0.3);
  }
  20% {
    transform: scaleY(1);
  }
  100% {
    background-color: #333;
  }
}
@-o-keyframes spinner {
  0%, 40%, 100% {
    transform: scaleY(0.3);
  }
  20% {
    transform: scaleY(1);
  }
  100% {
    background-color: #333;
  }
}
@keyframes spinner {
  0%, 40%, 100% {
    transform: scaleY(0.3);
  }
  20% {
    transform: scaleY(1);
  }
  100% {
    background-color: #333;
  }
}
.notification,
.success,
.errors,
.error,
.info,
select.error,
input[type="text"].error,
input[type="password"].error,
input[type="email"].error,
input[type="tel"].error,
textarea.error {
  width: 100%;
  padding: 7px 10px;
  font-weight: 700;
  border: $border-1;
  border-radius: 2px;
  display: none;
  margin-bottom: 10px;
}
.success {
  background-color: #d1eed3;
  color: #66c66c;
  list-style: none;
}
.errors {
  background-color: #fccccf;
  color: #f6555d;
  list-style: none;
}
.error {
  background-color: #fccccf;
  color: #f6555d;
  list-style: none;
}
.info {
  background-color: #cfe7fa;
  color: #60b0ed;
  list-style: none;
}
select.error,
input[type="text"].error,
input[type="password"].error,
input[type="email"].error,
input[type="tel"].error,
textarea.error {
  display: block;
  width: 100%;
  font-weight: inherit;
  border: 1px solid #f6555d;
  border-radius: 3px;
  margin-bottom: 0;
}
.notification-screen {
  position: fixed;
  bottom: 0;
  left: 78.1%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: -2px 4px 6px rgba(0,0,0,0.3);
  z-index: 99999;
  width: 400px;
  border: none;
  animation: notification-mobile 2s ease-in-out;
  animation-fill-mode: forwards;
}
.notification-screen ul {
  padding: 20px;
}
.notification-screen li {
  margin-bottom: 10px;
}
.notification-screen li:last-child {
  margin-bottom: 0;
}
.notification-screen .fa-times {
  position: absolute;
  top: 6px;
  right: 3px;
  cursor: pointer;
}
.notification-screen h4 {
  margin-bottom: 0;
  font-size: 16px;
}
.notification-screen.error {
  color: #710d06;
  background-color: #f44336;
}
.notification-screen .fa-times {
  color: #710d06;
}
.notification-screen.errors {
  color: #710d06;
  background-color: #f44336;
}
.notification-screen .fa-times {
  color: #710d06;
}
.notification-screen.success {
  background-color: #4caf50;
  color: #1e4620;
}
.notification-screen .fa-times {
  color: #1e4620;
}
.notification-screen.warning {
  background-color: #f44336;
  color: #710d06;
}
.notification-screen .fa-times {
  color: #710d06;
}
.notification-screen.info {
  background-color: #2196f3;
  color: #063d69;
}
.notification-screen .fa-times {
  color: #063d69;
}
@-moz-keyframes notification-desktop {
  0% {
    right: -100%;
  }
  100% {
    right: 0%;
  }
}
@-webkit-keyframes notification-desktop {
  0% {
    right: -100%;
  }
  100% {
    right: 0%;
  }
}
@-o-keyframes notification-desktop {
  0% {
    right: -100%;
  }
  100% {
    right: 0%;
  }
}
@keyframes notification-desktop {
  0% {
    right: -100%;
  }
  100% {
    right: 0%;
  }
}
@-moz-keyframes notification-mobile {
  0% {
    bottom: -100%;
  }
  100% {
    bottom: 20px;
  }
}
@-webkit-keyframes notification-mobile {
  0% {
    bottom: -100%;
  }
  100% {
    bottom: 20px;
  }
}
@-o-keyframes notification-mobile {
  0% {
    bottom: -100%;
  }
  100% {
    bottom: 20px;
  }
}
@keyframes notification-mobile {
  0% {
    bottom: -100%;
  }
  100% {
    bottom: 20px;
  }
}
.spinner-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.spinner-container .spinner {
  width: 110px;
  max-width: 100%;
  margin0: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -55px;
  margin-top: -16.5px;
}
.spinner-container .spinner > div {
  animation: spinner 1s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background-color: #ff9741;
  height: 30px;
  width: 10px;
  display: inline-block;
}
.spinner-container .spinner .rect2 {
  animation-delay: -0.9s;
}
.spinner-container .spinner .rect3 {
  animation-delay: -0.8s;
}
.spinner-container .spinner .rect4 {
  animation-delay: -0.7s;
}
.spinner-container .spinner .rect5 {
  animation-delay: -0.6s;
}
.spinner-container .spinner .rect6 {
  animation-delay: -0.5s;
}
.spinner-container .spinner .rect7 {
  animation-delay: -0.4s;
}
.spinner-container .spinner .rect8 {
  animation-delay: -0.3s;
}
.spinner-global {
  margin: 0px auto;
  width: 50px;
  height: 50px;
  position: relative;
  text-align: center;
  animation: sk-rotate 2s infinite linear;
  top: 50%;
  margin-top: -25px;
}
.dot1,
.dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #333;
  border-radius: 50%;
  animation: sk-bounce 2s infinite ease-in-out;
}
.dot2 {
  top: auto;
  bottom: 0;
  animation-delay: -1s;
}
.project-question .select-container label {
  z-index: 999999 !important;
  position: relative;
  font-size: 1rem;
}
.custom-select-container {
  display: flex;
  position: relative;
  border: 1px solid #9ab2c0;
  border-radius: 2px;
  height: 2.078125rem;
  background: #fff;
  overflow: hidden;
}
.custom-select-container select,
.custom-select-container input {
  padding: 0 10px;
  -webkit-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  position: relative;
  z-index: 2;
  border: none;
  width: 100%;
}
.custom-select-container svg {
  position: absolute;
  right: -2px;
  top: -1px;
  z-index: 1;
}
.custom-select-container svg.searchSvg {
  z-index: 2;
}
.w-white-caret {
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  padding: 0;
  height: auto;
  border-radius: 0;
  width: 100%;
}
.w-white-caret select {
  color: #fff;
  width: 100%;
  font-weight: 700;
}
.w-white-caret select option {
  color: #000;
}
@-moz-keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@-o-keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@-moz-keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}
@-webkit-keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}
@-o-keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}
@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}
