﻿::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: rgb(231, 233, 236);
    background: linear-gradient(128deg, rgba(231, 233, 236, 1) 0%, rgba(167, 178, 195, 1) 100%);
}

a {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
    transition: all .4s;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
}

a:focus {
    outline: none !important;
}

a:hover {
    text-decoration: none;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

p {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

ul,
li {
    margin: 0;
    list-style-type: none;
}

input {
    outline: none;
    border: none;
}

input::-webkit-input-placeholder {
    color: #999;
}

input:-moz-placeholder {
    color: #999;
}

input::-moz-placeholder {
    color: #999;
}

input:-ms-input-placeholder {
    color: #999;
}

button {
    outline: none !important;
    border: none;
    background: 0 0;
}

button:hover {
    cursor: pointer;
}

.login-section {
    width: 100%;
    margin: 0 auto;
}

.login-container {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.login-wrap {
    width: 850px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.21), 0 15px 12px rgba(0, 0, 0, 0.15);
}

.login-slide {
    position: relative;
    width: 50%;
    z-index: 2;
}

.login-form {
    width: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

.login-content {
    position: relative;
    width: 100%;
    padding: 50px 65px 35px 65px;
}

.login-copyright {
    width: 100%;
    padding: 0 5px 15px 5px;
    text-align: center;
}

.login-copyright span {
    display: inline-block;
    font-size: 10px;
    line-height: 15px;
    color: #575757;
}

.login-alert-msg {
    font-size: 12px;
    line-height: 15px;
    display: inline-block;
    margin-top: 10px;
    font-style: italic;
    padding: 5px;
    background: #f6f6f6;
    border-radius: 5px;
}

.wrap-bg-element {
    width: 100%;
    height: 100%;
}

.wrap-slide-element {
    height: 100%;
    width: 100%;
    background-color: white;
    color: white;
    font-size: 1.5rem;
    align-items: center;
    justify-content: center;
    display: flex;
    text-align: center;
    text-shadow: 1px 1px 10px black;
    margin: 0;
    background-position: 50% 50%;
    background-size: cover;
}

@media (max-width:992px) {
    .login-slide {
        width: 40%;
    }

    .login-form {
        width: 60%;
    }
}

@media (max-width:768px) {
    .login-slide {
        width: 100%;
    }

    .login-form {
        width: 100%;
    }
}

@media (max-width:750px) {
    .login-content {
        padding: 35px 50px;
    }
}

.login-logo {
    background: url(../Core/login-logo.png) no-repeat center;
    height: 50px;
}

.login-title {
    position: relative;
    display: block;
    font-weight: bold;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.login-subtitle {
    position: relative;
    display: block;
    font-weight: normal;
    font-style: italic;
    text-align: center;
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.login-input {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.login-input input[type=text],
.login-input input[type=password] {
    background: transparent;
    border: 0;
    border-bottom-color: #d1d1d1;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    font-size: 15px;
    color: #343434;
    width: 100%;
    padding: 10px 40px 10px 40px;
    outline: none;
    transition: all ease-in-out .2s;
}

.login-input input[type=text]:focus,
.login-input input[type=password]:focus {
    border-bottom-color: #296dcb;
}

.login-input .login-icon {
    position: absolute;
    top: 10px;
    left: 12px;
    width: 14px;
    height: 14px;
    z-index: 1000;
}

.login-input .login-icon.icon-user {
    background: url("../Core/login-user.svg") no-repeat;
    color: #4ECF71;
}

.login-input .login-icon.icon-password {
    background: url("../Core/login-password.svg") no-repeat;
    color: #4ECF71;
}

.login-input .login-icon.icon-show {
    background: url("../Core/login-show.svg") no-repeat;
    color: #4ECF71;
}

.login-input .login-icon.icon-captcha {
    background: url("../Core/login-captcha.svg") no-repeat;
    color: #4ECF71;
}

.login-input .login-captcha {
    position: absolute;
    top: 0;
    right: 0;
    height: 35px;
}

.login-input .login-option {
    position: absolute;
    top: 7px;
    right: 15px;
    width: 16px;
    height: 16px;
    z-index: 1000;
    cursor: pointer;
}

.login-input .login-option.icon-show {
    background: url("../Core/login-show.svg") no-repeat;
    color: #4ECF71;
}

.login-input .login-option.icon-hide {
    background: url("../Core/login-hide.svg") no-repeat;
    color: #4ECF71;
}

.login-message {
    display: block;
    text-align: center;
    margin-top: 15px;
}

.login-message span {
    display: block;
    background: #ffecec;
    color: #cc4e4e;
    padding: 7px;
    font-size: 14px;
    border-radius: 25px;
}

.login-reset {
    display: block;
    text-align: center;
    transition: all ease-in-out .2s;
    margin-top: 15px;
}

.login-button {
    display: block;
    text-align: center;
    transition: all ease-in-out .2s;
    margin-top: 25px;
}

.login-button input {
    border: 0;
    width: 200px;
    padding: 15px;
    border-radius: 15px;
    background: rgb(41 109 203);
    background-image: linear-gradient(90deg, rgb(41 109 203) 0%, rgb(29 82 155) 100%);
    color: #ffffff;
    cursor: pointer;
    outline: none;
    font-size: 15px;
    transition: all ease-in-out .2s;
}

.login-button input:hover {
    background-image: linear-gradient(90deg, rgb(37 92 169) 0%, rgb(20 65 126) 100%);
}

.login-button input:disabled {
    opacity: .5;
}

.login-subbutton {
    display: block;
    text-align: center;
    margin-top: 30px;
    line-height: 1;
}

.login-subbutton a {
    font-size: 12px;
    color: #3d3d3d;
    display: inline-block;
    padding-bottom: 2px;
    border-bottom: 1px dashed #3d3d3d;
    text-decoration: none;
}

.login-subbutton a:hover {
    font-size: 12px;
    color: #000000;
    display: inline-block;
    padding-bottom: 2px;
    border-bottom: 1px dashed #000000;
    text-decoration: none;
}

.login-note {
    display: block;
    text-align: left;
    font-size: 12px;
    color: #2b2b2b;
    margin-top: 20px;
}

.login-code {
    text-align: center;
}

.login-code .login-input {
    font-size: 1px;
}

.login-code .login-input input {
    height: 45px;
    width: 30px;
    outline: none;
    font-size: 22px;
    line-height: 40px;
    font-weight: 600;
    text-align: center;
    color: #474747;
    display: inline-block;
    padding: 0;
    margin: 3px;
    background: transparent;
    border: 0;
    border-bottom-color: #ff7812;
    border-bottom-style: solid;
    border-bottom-width: 2px;
}

.login-code .login-input input:focus {
    border-bottom-color: #ffa465;
}

.sweet-alert,
.sweet-overlay,
body>.jGrowl {
    position: fixed;
}

.sweet-overlay {
    background-color: rgba(0, 0, 0, .4);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: none;
    z-index: 1050;
}

.sweet-alert {
    background-color: #fff;
    width: 500px;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    left: 50%;
    top: 50%;
    margin-left: -235px;
    margin-top: -200px;
    overflow: hidden;
    display: none;
    z-index: 1060;
}

.sweet-alert h2 {
    margin-top: 10px;
    font-size: 19px;
    text-align: center;
    display: block;
    position: relative;
}

.sweet-alert p {
    text-align: center;
    position: relative;
}

.sweet-alert fieldset {
    border: none;
    position: relative;
}

.sweet-alert button {
    background-color: #ff6a00;
    color: #fff;
    border: 0;
    border-radius: 15px;
    padding: 10px;
    font-size: 15px;
    margin: 25px 5px 0;
    box-shadow: none !important;
    -webkit-transition: all ease-in-out .15s;
    -o-transition: all ease-in-out .15s;
    transition: all ease-in-out .15s;
    min-width: 100px;
}

.sweet-alert button:hover {
    background-color: #525456;
}

.sweet-alert button:focus {
    outline: 0;
}

.sweet-alert button:active {
    background-color: #ff6a00;
}

.sweet-alert button.cancel {
    background-color: #f1f1f1;
    color: #333;
}

.sweet-alert button[disabled] {
    cursor: default;
    opacity: .6;
    filter: alpha(opacity=60);
}

.sweet-alert button.confirm[disabled] {
    color: transparent;
}

.sweet-alert button.confirm[disabled]~.la-ball-fall {
    visibility: visible;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    opacity: 1;
    filter: alpha(opacity=100);
}

.sweet-alert button::-moz-focus-inner {
    border: 0;
}

.sweet-alert[data-has-cancel-button=false] button {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.sweet-alert[data-has-cancel-button=false][data-has-confirm-button=false] {
    padding-bottom: 40px;
}

.sweet-alert .sa-error-container {
    background-color: #f5f5f5;
    overflow: hidden;
    padding: 0 10px;
    max-height: 0;
    border-radius: 3px;
    -webkit-transition: padding .15s, max-height .15s;
    -o-transition: padding .15s, max-height .15s;
    transition: padding .15s, max-height .15s;
}

.sweet-alert .sa-error-container p {
    display: inline-block;
    margin-bottom: 0;
}

.sweet-alert .sa-error-container.show {
    padding: 10px 0;
    max-height: 100px;
    -webkit-transition: padding .2s, max-height .2s;
    -o-transition: padding .2s, max-height .2s;
    transition: padding .2s, max-height .2s;
}

.sweet-alert .sa-error-container .icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    line-height: 16px;
    border-radius: 50%;
    background-color: #ff6a00;
    color: #fff;
    text-align: center;
    margin-right: 7px;
}

.sweet-alert .sa-input-error {
    position: absolute;
    top: 20px;
    right: 12px;
    width: 16px;
    height: 16px;
    -webkit-transform: scale(.5);
    -ms-transform: scale(.5);
    -o-transform: scale(.5);
    transform: scale(.5);
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: all .1s;
    -o-transition: all .1s;
    transition: all .1s;
    opacity: 0;
    filter: alpha(opacity=0);
}

.sweet-alert .sa-input-error:after,
.sweet-alert .sa-input-error:before {
    content: "";
    width: 16px;
    height: 2px;
    background-color: #EF5350;
    border-radius: 3px;
    position: absolute;
    top: 50%;
    margin-top: -1px;
    left: 50%;
    margin-left: -8px;
}

.sweet-alert .sa-input-error:before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.sweet-alert .sa-input-error:after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.sweet-alert .sa-input-error.show {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    filter: alpha(opacity=100);
}

.sweet-alert input {
    width: 100%;
    border-radius: 3px;
    border: 1px solid #ddd;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    padding: 7px 12px;
    display: none;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05) inset;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05) inset;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.sweet-alert input::-moz-placeholder {
    color: #bdbdbd;
    opacity: 1;
}

.sweet-alert input:-ms-input-placeholder {
    color: #bdbdbd;
}

.sweet-alert input::-webkit-input-placeholder {
    color: #bdbdbd;
}

.sweet-alert input:focus {
    outline: 0;
}

.sweet-alert input:focus:-ms-input-placeholder,
.sweet-alert input:focus::-moz-placeholder,
.sweet-alert input:focus::-webkit-input-placeholder {
    -webkit-transition: opacity ease .3s 30ms;
    -o-transition: opacity ease .3s 30ms;
    transition: opacity ease .3s 30ms;
    opacity: .5;
    filter: alpha(opacity=50);
}

.sweet-alert.show-input input {
    display: block;
}

.sweet-alert .sa-confirm-button-container {
    display: inline-block;
    position: relative;
}

.sweet-alert .la-ball-fall {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -27px;
    margin-top: 0;
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
}

.sweet-alert .sa-icon {
    width: 80px;
    height: 80px;
    border: 4px solid #ddd;
    border-radius: 50%;
    margin: 10px auto 20px;
    padding: 0;
    position: relative;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.sweet-alert .sa-icon.sa-error {
    border-color: #F44336;
}

.sweet-alert .sa-icon.sa-error .sa-x-mark {
    position: relative;
    display: block;
}

.sweet-alert .sa-icon.sa-error .sa-line {
    position: absolute;
    height: 5px;
    width: 47px;
    background-color: #F44336;
    display: block;
    top: 37px;
    border-radius: 2px;
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
    left: 17px;
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
    right: 16px;
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.sweet-alert .sa-icon.sa-success:after,
.sweet-alert .sa-icon.sa-success:before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

.sweet-alert .sa-icon.sa-warning {
    border-color: #ff6a00;
}

.sweet-alert .sa-icon.sa-warning .sa-body {
    position: absolute;
    width: 5px;
    height: 47px;
    left: 50%;
    top: 10px;
    border-radius: 2px;
    margin-left: -2px;
    background-color: #ff6a00;
}

.sweet-alert .sa-icon.sa-warning .sa-dot {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-left: -3px;
    left: 50%;
    bottom: 10px;
    background-color: #ff6a00;
}

.sweet-alert .sa-icon.sa-info:after,
.sweet-alert .sa-icon.sa-info:before {
    content: "";
    background-color: #2196F3;
    position: absolute;
}

.sweet-alert .sa-icon.sa-info {
    border-color: #2196F3;
}

.sweet-alert .sa-icon.sa-info:before {
    width: 5px;
    height: 29px;
    left: 50%;
    bottom: 17px;
    border-radius: 2px;
    margin-left: -2px;
}

.sweet-alert .sa-icon.sa-info:after {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-left: -3px;
    top: 19px;
}

.sweet-alert .sa-icon.sa-success:after,
.sweet-alert .sa-icon.sa-success:before {
    content: '';
    position: absolute;
    width: 60px;
    height: 120px;
    background-color: #fff;
}

.sweet-alert .sa-icon.sa-success:before {
    border-radius: 120px 0 0 120px;
    top: -7px;
    left: -33px;
    transform: rotate(-45deg);
    -webkit-transform-origin: 60px 60px;
    -moz-transform-origin: 60px 60px;
    -ms-transform-origin: 60px 60px;
    transform-origin: 60px 60px;
}

.sweet-alert .sa-icon.sa-success:after {
    border-radius: 0 120px 120px 0;
    top: -11px;
    left: 30px;
    transform: rotate(-45deg);
    -webkit-transform-origin: 0 60px;
    -moz-transform-origin: 0 60px;
    -ms-transform-origin: 0 60px;
    transform-origin: 0 60px;
}

.sweet-alert .sa-icon.sa-success .sa-placeholder {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(76, 175, 80, .2);
    border-radius: 50%;
    position: absolute;
    left: -4px;
    top: -4px;
    z-index: 2;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.sweet-alert .sa-icon.sa-success .sa-fix {
    width: 5px;
    height: 90px;
    background-color: #fff;
    position: absolute;
    left: 28px;
    top: 8px;
    z-index: 1;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.sweet-alert .sa-icon.sa-success .sa-line {
    height: 5px;
    background-color: #4CAF50;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 2;
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
    width: 25px;
    left: 14px;
    top: 46px;
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
    width: 47px;
    right: 8px;
    top: 38px;
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.sweet-alert .sa-icon.sa-custom {
    background-size: contain;
    border-radius: 0;
    border: 0;
    background-position: center center;
    background-repeat: no-repeat;
}

@media (max-width:480px) {
    .sweet-alert {
        width: auto;
        margin-left: 0;
        margin-right: 0;
        left: 20px;
        right: 20px;
    }
}

@-webkit-keyframes showSweetAlert {
    0% {
        -webkit-transform: scale(.7);
        -ms-transform: scale(.7);
        -o-transform: scale(.7);
        transform: scale(.7);
    }

    45% {
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
        transform: scale(1.05);
    }

    80% {
        -webkit-transform: scale(.95);
        -ms-transform: scale(.95);
        -o-transform: scale(.95);
        transform: scale(.95);
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes showSweetAlert {
    0% {
        -webkit-transform: scale(.7);
        -ms-transform: scale(.7);
        -o-transform: scale(.7);
        transform: scale(.7);
    }

    45% {
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
        transform: scale(1.05);
    }

    80% {
        -webkit-transform: scale(.95);
        -ms-transform: scale(.95);
        -o-transform: scale(.95);
        transform: scale(.95);
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

.showSweetAlert[data-animation=pop] {
    -webkit-animation: showSweetAlert .3s;
    -o-animation: showSweetAlert .3s;
    animation: showSweetAlert .3s;
}

.showSweetAlert[data-animation=none] {
    -webkit-animation: none;
    -o-animation: none;
    animation: none;
}

@-webkit-keyframes hideSweetAlert {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(.5);
        -ms-transform: scale(.5);
        -o-transform: scale(.5);
        transform: scale(.5);
    }
}

@keyframes hideSweetAlert {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(.5);
        -ms-transform: scale(.5);
        -o-transform: scale(.5);
        transform: scale(.5);
    }
}

.hideSweetAlert[data-animation=pop] {
    -webkit-animation: hideSweetAlert .2s;
    -o-animation: hideSweetAlert .2s;
    animation: hideSweetAlert .2s;
}

.hideSweetAlert[data-animation=none] {
    -webkit-animation: none;
    -o-animation: none;
    animation: none;
}

@-webkit-keyframes slideFromTop {
    0% {
        top: 0;
    }

    100% {
        top: 50%;
    }
}

@keyframes slideFromTop {
    0% {
        top: 0;
    }

    100% {
        top: 50%;
    }
}

.showSweetAlert[data-animation=slide-from-top] {
    -webkit-animation: slideFromTop .3s;
    -o-animation: slideFromTop .3s;
    animation: slideFromTop .3s;
}

@-webkit-keyframes slideToTop {
    0% {
        top: 50%;
    }

    100% {
        top: 0;
    }
}

@keyframes slideToTop {
    0% {
        top: 50%;
    }

    100% {
        top: 0;
    }
}

.hideSweetAlert[data-animation=slide-from-top] {
    -webkit-animation: slideToTop .4s;
    -o-animation: slideToTop .4s;
    animation: slideToTop .4s;
}

@-webkit-keyframes slideFromBottom {
    0% {
        top: 70%;
    }

    100% {
        top: 50%;
    }
}

@keyframes slideFromBottom {
    0% {
        top: 70%;
    }

    100% {
        top: 50%;
    }
}

.showSweetAlert[data-animation=slide-from-bottom] {
    -webkit-animation: slideFromBottom .3s;
    -o-animation: slideFromBottom .3s;
    animation: slideFromBottom .3s;
}

@-webkit-keyframes slideToBottom {
    0% {
        top: 50%;
    }

    100% {
        top: 70%;
    }
}

@keyframes slideToBottom {
    0% {
        top: 50%;
    }

    100% {
        top: 70%;
    }
}

.hideSweetAlert[data-animation=slide-from-bottom] {
    -webkit-animation: slideToBottom .3s;
    -o-animation: slideToBottom .3s;
    animation: slideToBottom .3s;
}

@-webkit-keyframes animateSuccessTip {

    0%,
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }

    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }

    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@keyframes animateSuccessTip {

    0%,
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }

    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }

    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

.animateSuccessTip {
    -webkit-animation: animateSuccessTip .75s;
    -o-animation: animateSuccessTip .75s;
    animation: animateSuccessTip .75s;
}

@-webkit-keyframes animateSuccessLong {

    0%,
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    84% {
        width: 55px;
        right: 0;
        top: 35px;
    }

    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

@keyframes animateSuccessLong {

    0%,
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    84% {
        width: 55px;
        right: 0;
        top: 35px;
    }

    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

.animateSuccessLong {
    -webkit-animation: animateSuccessLong .75s;
    -o-animation: animateSuccessLong .75s;
    animation: animateSuccessLong .75s;
}

@-webkit-keyframes rotatePlaceholder {

    0%,
    5% {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    100%,
    12% {
        -webkit-transform: rotate(-405deg);
        -ms-transform: rotate(-405deg);
        -o-transform: rotate(-405deg);
        transform: rotate(-405deg);
    }
}

@keyframes rotatePlaceholder {

    0%,
    5% {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    100%,
    12% {
        -webkit-transform: rotate(-405deg);
        -ms-transform: rotate(-405deg);
        -o-transform: rotate(-405deg);
        transform: rotate(-405deg);
    }
}

.sa-icon.sa-success.animate::after {
    -webkit-animation: rotatePlaceholder 4.25s ease-in;
    -o-animation: rotatePlaceholder 4.25s ease-in;
    animation: rotatePlaceholder 4.25s ease-in;
}

@-webkit-keyframes animateErrorIcon {
    0% {
        -webkit-transform: rotateX(100deg);
        -ms-transform: rotateX(100deg);
        -o-transform: rotateX(100deg);
        transform: rotateX(100deg);
        opacity: 0;
        filter: alpha(opacity=0);
    }

    100% {
        -webkit-transform: rotateX(0);
        -ms-transform: rotateX(0);
        -o-transform: rotateX(0);
        transform: rotateX(0);
        opacity: 1;
        filter: alpha(opacity=100);
    }
}

@keyframes animateErrorIcon {
    0% {
        -webkit-transform: rotateX(100deg);
        -ms-transform: rotateX(100deg);
        -o-transform: rotateX(100deg);
        transform: rotateX(100deg);
        opacity: 0;
        filter: alpha(opacity=0);
    }

    100% {
        -webkit-transform: rotateX(0);
        -ms-transform: rotateX(0);
        -o-transform: rotateX(0);
        transform: rotateX(0);
        opacity: 1;
        filter: alpha(opacity=100);
    }
}

.animateErrorIcon {
    -webkit-animation: animateErrorIcon .5s;
    -o-animation: animateErrorIcon .5s;
    animation: animateErrorIcon .5s;
}

@-webkit-keyframes animateXMark {

    0%,
    50% {
        margin-top: 26px;
        -webkit-transform: scale(.4);
        -ms-transform: scale(.4);
        -o-transform: scale(.4);
        transform: scale(.4);
        opacity: 0;
        filter: alpha(opacity=0);
    }

    80% {
        margin-top: -6px;
        -webkit-transform: scale(1.15);
        -ms-transform: scale(1.15);
        -o-transform: scale(1.15);
        transform: scale(1.15);
    }

    100% {
        margin-top: 0;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 1;
        filter: alpha(opacity=100);
    }
}

@keyframes animateXMark {

    0%,
    50% {
        margin-top: 26px;
        -webkit-transform: scale(.4);
        -ms-transform: scale(.4);
        -o-transform: scale(.4);
        transform: scale(.4);
        opacity: 0;
        filter: alpha(opacity=0);
    }

    80% {
        margin-top: -6px;
        -webkit-transform: scale(1.15);
        -ms-transform: scale(1.15);
        -o-transform: scale(1.15);
        transform: scale(1.15);
    }

    100% {
        margin-top: 0;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 1;
        filter: alpha(opacity=100);
    }
}

.animateXMark {
    -webkit-animation: animateXMark .5s;
    -o-animation: animateXMark .5s;
    animation: animateXMark .5s;
}

@-webkit-keyframes pulseWarning {
    0% {
        border-color: #F8D486;
    }

    100% {
        border-color: #F8BB86;
    }
}

@keyframes pulseWarning {
    0% {
        border-color: #F8D486;
    }

    100% {
        border-color: #F8BB86;
    }
}

.pulseWarning {
    -webkit-animation: pulseWarning .75s infinite alternate;
    -o-animation: pulseWarning .75s infinite alternate;
    animation: pulseWarning .75s infinite alternate;
}

@-webkit-keyframes pulseWarningIns {
    0% {
        background-color: #F8D486;
    }

    100% {
        background-color: #F8BB86;
    }
}

@keyframes pulseWarningIns {
    0% {
        background-color: #F8D486;
    }

    100% {
        background-color: #F8BB86;
    }
}

.pulseWarningIns {
    -webkit-animation: pulseWarningIns .75s infinite alternate;
    -o-animation: pulseWarningIns .75s infinite alternate;
    animation: pulseWarningIns .75s infinite alternate;
}

@-webkit-keyframes rotate-loading {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate-loading {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
    -ms-transform: rotate(45deg);
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
    -ms-transform: rotate(-45deg);
}

.sweet-alert .sa-icon.sa-success {
    border-color: transparent;
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
    -ms-transform: rotate(45deg);
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
    -ms-transform: rotate(-45deg);
}