

.validation-errors {
    /* margin-top: 5px; */
    font-size: 12px;
    color: red;
    pointer-events: none;
}

span.validation-errors {
    position: absolute;
    white-space: nowrap;
    /*right: 0;
    top: 50px;*/
}

div.validation-errors {
    position: relative;
    white-space: nowrap;
    /*right: 0;
    top: 50px;*/
    float: left;
        text-transform: capitalize;
}


/* BUTTON LOADING EFFECT */
@-webkit-keyframes ld {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@-moz-keyframes ld {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@-o-keyframes ld {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes ld {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

.m-progress {
    position: relative;
    opacity: .8;
    color: transparent !important;
    text-shadow: none !important;
    background-color: #163666 !important;
}

.m-progress:hover,
.m-progress:active,
.m-progress:focus {
    cursor: default;
    color: transparent;
    outline: none !important;
    box-shadow: none;
}

.m-progress:before {
    content: '';
    display: inline-block;
    position: absolute;
    background: transparent;
    border: 1px solid #fff;
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    box-sizing: border-box;
    top: 50%;
    left: 50%;
    margin-top: -12px;
    margin-left: -12px;
    width: 24px;
    height: 24px;
    -webkit-animation: ld 1s ease-in-out infinite;
    -moz-animation: ld 1s ease-in-out infinite;
    -o-animation: ld 1s ease-in-out infinite;
    animation: ld 1s ease-in-out infinite;
}

.btn-default.m-progress:before {
    border-left-color: #333333;
    border-right-color: #333333;
}

.btn-lg.m-progress:before {
    margin-top: -16px;
    margin-left: -16px;
    width: 32px;
    height: 32px;
}

.btn-sm.m-progress:before {
    margin-top: -9px;
    margin-left: -9px;
    width: 18px;
    height: 18px;
}

.btn-xs.m-progress:before {
    margin-top: -7px;
    margin-left: -7px;
    width: 14px;
    height: 14px;
}

.hide {
    display: none !important;
}

.show {
    display: block !important;
}


/* Notification Color */

.notification-center-alerts {
    position: static !important;
    width: auto !important;
}
.notification-center-alerts .alert {
    margin-bottom: 0;
    position: relative;
    top: 0;
    right: 0;
    height: 55px;
    margin: 5px;
}
.notification-global {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
}
.fade.in {
    opacity: 1;
}
@media only screen  and (min-width : 1224px) {
  #no-freeze-spinner {
    position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        transition: all 0.1s linear;
        opacity: 0;
        height: 100vh;
        transform: scale(10);
        z-index: -1;
        background: rgba(30, 64, 111, 1);
    }
}
/*== spinner ==*/
#no-freeze-spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.1s linear;
  -webkit-transition: all 0.1s linear;
  opacity: 0;
  height: 100vh;
  transform: scale(10);
  -webkit-transform: scale(10);
  z-index: -1;
  background: rgba(30, 64, 111, 1);
  bottom: 0;
  right: 0;
}
.no-freeze-spinner #no-freeze-spinner {
  z-index: 9999;
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
}
#no-freeze-spinner > div > div {
    animation-play-state: paused;
    border: 2px solid #fac90d;
    border-radius: 50%;
    animation: rotate 1s infinite linear;
    -webkit-animation: rotate 1s infinite linear;
    -moz-animation: rotate 1s infinite linear;
    -o-animation: rotate 1s infinite linear;
    border-left-color: rgba(200, 200, 200, 0.4);
    width: 100%;
    height: 100%;
}
#no-freeze-spinner > div {
position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
    box-shadow: 0 0 0 2000px rgba(30, 64, 111, 0.8);
    width: 80px;
    height: 80px;
    padding: 3px;
    background: white;
}
.no-freeze-spinner #no-freeze-spinner div div {
  animation-play-state: running;
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -o-animation-play-state: running;
}

@keyframes loadicons {
  0% {
    transform: scale(0) translate3d(0, 0, 0);
    -webkit-transform: scale(0) translate3d(0, 0, 0);
  }
  11% {
    transform: scale(1.1) translate3d(0, 0, 0);
    -webkit-transform: scale(1.1) translate3d(0, 0, 0);
  }
  22% {
    transform: scale(1) translate3d(0, 0, 0);
    -webkit-transform: scale(1) translate3d(0, 0, 0);
  }
  33% {
    transform: scale(0) translate3d(0, 0, 0);
    -webkit-transform: scale(0) translate3d(0, 0, 0);
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
  }
}
.no-freeze-spinner #no-freeze-spinner span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    color: #fff;
    width: 42px;
    height: 42px;
    line-height: 1;
    color: #163666;
    transform: scale(0) translate3d(0, 0, 0);
    -webkit-transform: scale(0) translate3d(0, 0, 0);
}
.no-freeze-spinner #no-freeze-spinner span img{width:100%;}
.no-freeze-spinner #no-freeze-spinner span:first-child {
  animation: loadicons 3s 0s infinite ease-in-out;
  -webkit-animation: loadicons 3s 0s infinite ease-in-out;
}
.no-freeze-spinner #no-freeze-spinner span:nth-child(2) {
  animation: loadicons 3s 1s infinite ease-in-out;
  -webkit-animation: loadicons 3s 1s infinite ease-in-out;
}
.no-freeze-spinner #no-freeze-spinner span:nth-child(3) {
  animation: loadicons 3s 2s infinite ease-in-out;
  -webkit-animation: loadicons 3s 2s infinite ease-in-out;
}



/*.grey-background {
  background-color: white;
  height: 100%;
  width: 100%;
}

.text-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute
}

.text-centered {
  text-align: center;
}

.spinner {
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}

.spinner>div {
  background-color: #3275b9;
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4)
  }
  20% {
    -webkit-transform: scaleY(1.0)
  }
}

@keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}*/