
@font-face {
  font-family: 'Graphik Web';
  src: url('../fonts/Graphik-Bold-Web.woff2') format('woff2'),
  url('../fonts/Graphik-Bold-Web.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: 'Graphik Web';
  src: url('../fonts/Graphik-Semibold-Web.woff2') format('woff2'),
  url('../fonts/Graphik-Semibold-Web.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: 'Graphik Web';
  src: url('../fonts/Graphik-Medium-Web.woff2') format('woff2'),
  url('../fonts/Graphik-Medium-Web.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: 'Graphik Web';
  src: url('../fonts/Graphik-Regular-Web.woff2') format('woff2'),
  url('../fonts/Graphik-Regular-Web.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
}


@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/icomoon.eot?9ta6sl');
  src:  url('../fonts/icomoon.eot?9ta6sl#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?9ta6sl') format('truetype'),
    url('../fonts/icomoon.woff?9ta6sl') format('woff'),
    url('../fonts/icomoon.svg?9ta6sl#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-arrow_slider_down:before {
  content: "\e904";
  color: #4d617f;
}
.icon-arrow-1:before {
  content: "\e900";
  color: #dedee0;
}
.icon-arrow-2:before {
  content: "\e901";
  color: #4d617f;
}
.icon-arrow-3:before {
  content: "\e902";
  color: #c5cddc;
}
.icon-arrow_slider:before {
  content: "\e903";
  color: #4d617f;
}

.error-text {
  color: red;
  /* font-weight: 100; */
  font-size: 13px;
}

.click-drape{
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  transition: all ease-in-out 180ms;
  background-color: white;
  z-index: 1100;
  display: block;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* background-size: 300% 100%;
  background-image: linear-gradient(to right, #f7faff, #f4feff, #f4feff, #f7faff);
  background-position: 0% 0;
  animation: drapes 6s linear infinite alternate; */
}

@keyframes drapes{
  0%{
    background-position: 0% 0;
  }

  100%{
    background-position: 200% 0;
  }
}

.click-drape.active{
  top: 100%;
  opacity: 1;
  transition-duration: 0ms;
}

.click-drape.bottom{
  bottom: 100%;
  opacity: 1;
  transition-duration: 350ms;
}

.click-drape:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid #007AFF;
  border-left-color: #007bff48;
  border-bottom-color: #007bff48;
  -webkit-animation: loader 1200ms ease infinite;
  animation: loader 1200ms ease infinite;
  opacity: 0.6;
}

@keyframes loader{
  0%{
    transform: rotate(0deg);
  }
  50%{
    transform: rotate(450deg);
  }
  100%{
    transform: rotate(1deg);
  }
}