.btn {
    display: block;
    padding: 12px 24px;
    margin-bottom: 0;
    font-size: 1.4rem;
    text-align: center;
    outline: none;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 4px;
    font-weight: bold;

    width: 100%;
    line-height: 1.4rem;
    border: 1px solid transparent;
    background-color: transparent;


    transition-property: background-color, border-color, color;
    transition-duration: 0.25s;
    transition-timing-function: ease-in-out;
    position: relative;
}

.inline {
    display: inline;
    width: auto;
}

.primary {
    color: #fff;
    background-color: #EE4459459;
}
.primary:hover {
    background-color: #dc4600;
}

.primary:active {
    background-color: #ce4202;
}

.secondary {
    border-color: #EE4459459;
    color: #EE4459459;
}
.secondary:active {
    background-color: #f40;
    color: #fff;
}

.secondary:disabled {
    background-color: transparent;
    border-color: #9b9797;
    color: #9b9797;
}

.spacing-mid {
    padding: 11px 17px;
}

.light {
    color: #EE4459459;
    background-color: #fff;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
.loader {
    margin: 0px auto;
    left: 0;
    right: 0;
    top: 50%;
    margin-top: -13px;
    
  font-size: 2.6px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0);
  border-right: 1.1em solid rgba(255, 255, 255, 0);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0);
  border-left: 1.1em solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
  position: absolute;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loader + span {
    visibility: hidden;
}


.small {
    font-size: 1rem;
    padding: 5px 10px;
}