/* Loader */
body.loader-active{
    overflow: hidden !important;
}
section#loader{
    visibility: visible;
    opacity:1;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
    height: 0%;
    width: 0%;
    position: relative;
    top:0;
    z-index: 1000000;
}
section#loader.loader-hide{
    visibility: hidden;
    opacity:0;
    z-index: -1;
}
section#loader .loader-overlay {
    background-color: rgba(0, 171, 200, 0.97);
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 1000001;
    top: 0;
    left: 0;
}
section#loader .loader-overlay svg.mainSVG {
    width: 100%;
    height: 100%;
    visibility: hidden;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield !important;
}

@media (max-width: 321px) {
    .mobile-btn-blue {
        max-width: 105% !important;
        margin-left: -5px !important;
    }
}