* {
  box-sizing: border-box;
}

::-webkit-scrollbar-track {
  background-color: #e8e8ea;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #222326;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  /*background-color: #fff;*/
  color: #555;
  font-family: 'Rambla', sans-serif;
  overflow-y: none;
}

body .scrollarrow_left,
body .scrollarrow_right {
  width: 2.5rem;
  height: 8.75rem;
  display: block;
  position: fixed;
  text-align: center;
  vertical-align: bottom;
  color: #555;
  opacity: 0.15;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=15)";
  filter: alpha(opacity=15);
  bottom: 0;
  font-size: 10rem;
  z-index: 12;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

body .scrollarrow_left.reverse,
body .scrollarrow_right.reverse {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  bottom: auto;
  top: 0;
}

body .scrollarrow_left {
  left: 0;
}

body .scrollarrow_right {
  right: 0;
}

form * {
  margin: 0;
  padding: 0;
}

@media only screen and (max-height: 767px) {
}

@media only screen and (min-width: 1280px) {
}

@media only screen and (max-width: 1280px) {
}

@media only screen and (max-width: 1024px) {
}

@-webkit-keyframes load1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
