input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

input {
  margin: 0;
}
/*==================================================================================*/
@font-face {
    font-family: open-sans;
    src: url('/css/fonts/open_sans/OpenSans-Regular.ttf');
}

@font-face {
  font-family: secondary-font;
  src: url('/css/fonts/Montserrat/Montserrat-Regular.ttf');
}

html,body {
  margin: 0;
  padding: 0;
  font-family: open-sans, sans-serif;
  font-size: 14px;
  line-height: 1em;
  width: 100%;
  height: 100%;
}
html {
  scroll-behavior: smooth;
}

h1,h2,h3,h4,h5 {
  font-family: secondary-font;
}

.spinner {
  background-color: #eee;
  width: 1em;
  height: 1em;
  display: block;
  border-radius: 50%;
  border: 4px solid transparent;
  position: relative;
  margin: 5px auto;
  box-sizing: border-box;
}

.spinner::after {
  content: '';
  border-top: 2px solid orangered;
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
  border-bottom: 2px solid transparent;
  width: 1em;
  height: 1em;
  top: -4px;
  left: -4px;
  position: absolute;
  border-radius: 50%;
  animation: spin 0.2s infinite linear;
  box-sizing: border-box;
}

/*.spinner::before {
  content: '';
  border-top: 2px solid orangered;
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
  border-bottom: 2px solid transparent;
  width: 40px;
  height: 40px;
  top: -2px;
  left: -2px;
  position: absolute;
  border-radius: 50%;
  animation: spin 0.2s infinite linear reverse;
}*/

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
