.spinner-submit {
border-radius: 50%;
width: 14px;
height: 14px;
position: relative;
display: inline-block;
border: 2px solid #eeeeee;
border-top-color: #e41717;
-webkit-animation: loadingSubmit 1s infinite;
animation: loadingSubmit 1s infinite;
}
@-webkit-keyframes loadingSubmit {
from {
-webkit-transform: rotate(0deg);
-ms-transform: rotate(0deg);
transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg);
}
} .notifyjs-container {
background: transparent;
z-index: 999999999;
}
.hrNotice {
min-width: 180px;
background: #33b5e5;
padding: 12px;
color: #fff!important;
text-align: center;
font-size: 15px;
border-radius: 5px;
}
.hrNotice span{
color: #fff!important;
}
.hrNoticeSuccess.hrNotice {
background: #00c851;
}
.hrNoticeFail.hrNotice {
background: #ff3547;
}
.hrNoticeWarm.hrNotice {
background: ##fb3;
}
.notifyjs-corner {
margin-right: 100px!important;
margin-bottom: 50px!important;
}
.error_mes {
background-color: #e41717;
-webkit-border-radius: 3px;
border-radius: 3px;
color: #fff;
width: 100%;
box-sizing: border-box;
line-height: 25px;
height: 25px;
text-align: left;
margin: 0 0 10px;
padding-left: 10px;
transition: all .75s ease-in;
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
opacity: 0;
transform: translateX(-100%);
position: absolute;
pointer-events: none;
}
.error_mes.show {
opacity: 1;
transform: translateX(0%);
position: relative;
pointer-events: all;
cursor: pointer;
}
.content_err {
width: calc(100% - 30px);
display: inline-block;
}
span.dis_err {
cursor: pointer;
}
.error {
border: 1px solid #ff3547!important;
}
.hrError {
border: 1px solid #ff3547!important;
}