@keyframes showSweetAlert {
    0% { transform: scale(0.7); }

    45% { transform: scale(1.05); }

    80% { transform: scale(0.95); }

    100% { transform: scale(1); }
}

@keyframes hideSweetAlert {
    0% { transform: scale(1); }

    100% { transform: scale(0.5); }
}

@keyframes slideFromTop {
    0% { top: 0%; }

    100% { top: 50%; }
}

@keyframes slideToTop {
    0% { top: 50%; }

    100% { top: 0%; }
}

@keyframes slideFromBottom {
    0% { top: 70%; }

    100% { top: 50%; }
}

@keyframes slideToBottom {
    0% { top: 50%; }

    100% { top: 70%; }
}

.showSweetAlert { animation: showSweetAlert 0.3s; }

.showSweetAlert[data-animation=none] { animation: none; }

.showSweetAlert[data-animation=slide-from-top] { animation: slideFromTop 0.3s; }

.showSweetAlert[data-animation=slide-from-bottom] { animation: slideFromBottom 0.3s; }

.hideSweetAlert { animation: hideSweetAlert 0.3s; }

.hideSweetAlert[data-animation=none] { animation: none; }

.hideSweetAlert[data-animation=slide-from-top] { animation: slideToTop 0.3s; }

.hideSweetAlert[data-animation=slide-from-bottom] { animation: slideToBottom 0.3s; }

@keyframes animateSuccessTip {
    0% {
        left: 1px;
        top: 19px;
        width: 0;
    }

    54% {
        left: 1px;
        top: 19px;
        width: 0;
    }

    70% {
        left: -8px;
        top: 37px;
        width: 50px;
    }

    84% {
        left: 21px;
        top: 48px;
        width: 17px;
    }

    100% {
        left: 14px;
        top: 45px;
        width: 25px;
    }
}

@keyframes animateSuccessLong {
    0% {
        right: 46px;
        top: 54px;
        width: 0;
    }

    65% {
        right: 46px;
        top: 54px;
        width: 0;
    }

    84% {
        right: 0px;
        top: 35px;
        width: 55px;
    }

    100% {
        right: 8px;
        top: 38px;
        width: 47px;
    }
}

@keyframes rotatePlaceholder {
    0% { transform: rotate(-45deg); }

    5% { transform: rotate(-45deg); }

    12% { transform: rotate(-405deg); }

    100% { transform: rotate(-405deg); }
}

.animateSuccessTip { animation: animateSuccessTip 0.75s; }

.animateSuccessLong { animation: animateSuccessLong 0.75s; }

.sa-icon.sa-success.animate::after { animation: rotatePlaceholder 4.25s ease-in; }

@keyframes animateErrorIcon {
    0% {
        opacity: 0;
        transform: rotateX(100deg);
    }

    100% {
        opacity: 1;
        transform: rotateX(0deg);
    }
}

.animateErrorIcon { animation: animateErrorIcon 0.5s; }

@keyframes animateXMark {
    0% {
        margin-top: 26px;
        opacity: 0;
        transform: scale(0.4);
    }

    50% {
        margin-top: 26px;
        opacity: 0;
        transform: scale(0.4);
    }

    80% {
        margin-top: -6px;
        transform: scale(1.15);
    }

    100% {
        margin-top: 0;
        opacity: 1;
        transform: scale(1);
    }
}

.animateXMark { animation: animateXMark 0.5s; }

@keyframes pulseWarning {
    0% { border-color: #F8D486; }

    100% { border-color: #F8BB86; }
}

.pulseWarning { animation: pulseWarning 0.75s infinite alternate; }

@keyframes pulseWarningIns {
    0% { background-color: #F8D486; }

    100% { background-color: #F8BB86; }
}

.pulseWarningIns { animation: pulseWarningIns 0.75s infinite alternate; }

@keyframes rotate-loading {
    0% { transform: rotate(0deg); }

    100% { transform: rotate(360deg); }
}

body.stop-scrolling {
    height: 100%;
    overflow: hidden;
}

.sweet-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    bottom: 0;
    display: none;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1040;
}

.sweet-alert {
    background-color: #ffffff;
    border-radius: 5px;
    display: none;
    left: 50%;
    margin-left: -256px;
    margin-top: -200px;
    overflow: hidden;
    padding: 17px;
    position: fixed;
    text-align: center;
    top: 50%;
    width: 478px;
    z-index: 2000;
}

@media all and (max-width: 767px) {
    .sweet-alert {
        left: 15px;
        margin-left: 0;
        margin-right: 0;
        right: 15px;
        width: auto;
    }
}

.sweet-alert .form-group { display: none; }

.sweet-alert .form-group .sa-input-error { display: none; }

.sweet-alert.show-input .form-group { display: block; }

.sweet-alert .sa-confirm-button-container {
    display: inline-block;
    position: relative;
}

.sweet-alert .la-ball-fall {
    left: 50%;
    margin-left: -27px;
    margin-top: -9px;
    opacity: 0;
    position: absolute;
    top: 50%;
    visibility: hidden;
}

.sweet-alert button[disabled] {
    cursor: default;
    opacity: .6;
}

.sweet-alert button.confirm[disabled] { color: transparent; }

.sweet-alert button.confirm[disabled] ~ .la-ball-fall {
    opacity: 1;
    transition-delay: 0s;
    visibility: visible;
}

.sweet-alert .sa-icon {
    border: 4px solid gray;
    border-radius: 50%;
    box-sizing: content-box;
    height: 80px;
    margin: 20px auto;
    position: relative;
    width: 80px;
}

.sweet-alert .sa-icon.sa-error { border-color: #d43f3a; }

.sweet-alert .sa-icon.sa-error .sa-x-mark {
    display: block;
    position: relative;
}

.sweet-alert .sa-icon.sa-error .sa-line {
    background-color: #d9534f;
    border-radius: 2px;
    display: block;
    height: 5px;
    position: absolute;
    top: 37px;
    width: 47px;
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
    left: 17px;
    transform: rotate(45deg);
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
    right: 16px;
    transform: rotate(-45deg);
}

.sweet-alert .sa-icon.sa-warning { border-color: #eea236; }

.sweet-alert .sa-icon.sa-warning .sa-body {
    background-color: #f0ad4e;
    border-radius: 2px;
    height: 47px;
    left: 50%;
    margin-left: -2px;
    position: absolute;
    top: 10px;
    width: 5px;
}

.sweet-alert .sa-icon.sa-warning .sa-dot {
    background-color: #f0ad4e;
    border-radius: 50%;
    bottom: 10px;
    height: 7px;
    left: 50%;
    margin-left: -3px;
    position: absolute;
    width: 7px;
}

.sweet-alert .sa-icon.sa-info { border-color: #46b8da; }

.sweet-alert .sa-icon.sa-info::before {
    background-color: #5bc0de;
    border-radius: 2px;
    bottom: 17px;
    content: "";
    height: 29px;
    left: 50%;
    margin-left: -2px;
    position: absolute;
    width: 5px;
}

.sweet-alert .sa-icon.sa-info::after {
    background-color: #5bc0de;
    border-radius: 50%;
    content: "";
    height: 7px;
    margin-left: -3px;
    position: absolute;
    top: 19px;
    width: 7px;
}

.sweet-alert .sa-icon.sa-success { border-color: #4cae4c; }

.sweet-alert .sa-icon.sa-success::before,
.sweet-alert .sa-icon.sa-success::after {
    background: #ffffff;
    border-radius: 50%;
    content: '';
    height: 120px;
    position: absolute;
    transform: rotate(45deg);
    width: 60px;
}

.sweet-alert .sa-icon.sa-success::before {
    border-radius: 120px 0 0 120px;
    left: -33px;
    top: -7px;
    transform: rotate(-45deg);
    transform-origin: 60px 60px;
}

.sweet-alert .sa-icon.sa-success::after {
    border-radius: 0 120px 120px 0;
    left: 30px;
    top: -11px;
    transform: rotate(-45deg);
    transform-origin: 0px 60px;
}

.sweet-alert .sa-icon.sa-success .sa-placeholder {
    border: 4px solid rgba(92, 184, 92, 0.2);
    border-radius: 50%;
    box-sizing: content-box;
    height: 80px;
    left: -4px;
    position: absolute;
    top: -4px;
    width: 80px;
    z-index: 2;
}

.sweet-alert .sa-icon.sa-success .sa-fix {
    background-color: #ffffff;
    height: 90px;
    left: 28px;
    position: absolute;
    top: 8px;
    transform: rotate(-45deg);
    width: 5px;
    z-index: 1;
}

.sweet-alert .sa-icon.sa-success .sa-line {
    background-color: #5cb85c;
    border-radius: 2px;
    display: block;
    height: 5px;
    position: absolute;
    z-index: 2;
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
    left: 14px;
    top: 46px;
    transform: rotate(45deg);
    width: 25px;
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
    right: 8px;
    top: 38px;
    transform: rotate(-45deg);
    width: 47px;
}

.sweet-alert .sa-icon.sa-custom {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    border: none;
    border-radius: 0;
}

.sweet-alert .btn-default:focus {
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(204, 204, 204, 0.6);
    border-color: #cccccc;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(204, 204, 204, 0.6);
    outline: 0;
}

.sweet-alert .btn-success:focus {
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(76, 174, 76, 0.6);
    border-color: #4cae4c;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(76, 174, 76, 0.6);
    outline: 0;
}

.sweet-alert .btn-info:focus {
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(70, 184, 218, 0.6);
    border-color: #46b8da;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(70, 184, 218, 0.6);
    outline: 0;
}

.sweet-alert .btn-danger:focus {
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(212, 63, 58, 0.6);
    border-color: #d43f3a;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(212, 63, 58, 0.6);
    outline: 0;
}

.sweet-alert .btn-warning:focus {
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(238, 162, 54, 0.6);
    border-color: #eea236;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(238, 162, 54, 0.6);
    outline: 0;
}

.sweet-alert button::-moz-focus-inner { border: 0; }

/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */

.la-ball-fall,
.la-ball-fall > div {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}

.la-ball-fall {
    color: #fff;
    display: block;
    font-size: 0;
}

.la-ball-fall.la-dark { color: #333; }

.la-ball-fall > div {
    background-color: currentColor;
    border: 0 solid currentColor;
    display: inline-block;
    float: none;
}

.la-ball-fall {
    height: 18px;
    width: 54px;
}

.la-ball-fall > div {
    -moz-animation: ball-fall 1s ease-in-out infinite;
    -o-animation: ball-fall 1s ease-in-out infinite;
    -webkit-animation: ball-fall 1s ease-in-out infinite;
    animation: ball-fall 1s ease-in-out infinite;
    border-radius: 100%;
    height: 10px;
    margin: 4px;
    opacity: 0;
    width: 10px;
}

.la-ball-fall > div:nth-child(1) {
    -moz-animation-delay: -200ms;
    -o-animation-delay: -200ms;
    -webkit-animation-delay: -200ms;
    animation-delay: -200ms;
}

.la-ball-fall > div:nth-child(2) {
    -moz-animation-delay: -100ms;
    -o-animation-delay: -100ms;
    -webkit-animation-delay: -100ms;
    animation-delay: -100ms;
}

.la-ball-fall > div:nth-child(3) {
    -moz-animation-delay: 0ms;
    -o-animation-delay: 0ms;
    -webkit-animation-delay: 0ms;
    animation-delay: 0ms;
}

.la-ball-fall.la-sm {
    height: 8px;
    width: 26px;
}

.la-ball-fall.la-sm > div {
    height: 4px;
    margin: 2px;
    width: 4px;
}

.la-ball-fall.la-2x {
    height: 36px;
    width: 108px;
}

.la-ball-fall.la-2x > div {
    height: 20px;
    margin: 8px;
    width: 20px;
}

.la-ball-fall.la-3x {
    height: 54px;
    width: 162px;
}

.la-ball-fall.la-3x > div {
    height: 30px;
    margin: 12px;
    width: 30px;
}

/*
 * Animation
 */

@-webkit-keyframes ball-fall {
    0% {
        -webkit-transform: translateY(-145%);
        opacity: 0;
        transform: translateY(-145%);
    }

    10% { opacity: .5; }

    20% {
        -webkit-transform: translateY(0);
        opacity: 1;
        transform: translateY(0);
    }

    80% {
        -webkit-transform: translateY(0);
        opacity: 1;
        transform: translateY(0);
    }

    90% { opacity: .5; }

    100% {
        -webkit-transform: translateY(145%);
        opacity: 0;
        transform: translateY(145%);
    }
}

@-moz-keyframes ball-fall {
    0% {
        -moz-transform: translateY(-145%);
        opacity: 0;
        transform: translateY(-145%);
    }

    10% { opacity: .5; }

    20% {
        -moz-transform: translateY(0);
        opacity: 1;
        transform: translateY(0);
    }

    80% {
        -moz-transform: translateY(0);
        opacity: 1;
        transform: translateY(0);
    }

    90% { opacity: .5; }

    100% {
        -moz-transform: translateY(145%);
        opacity: 0;
        transform: translateY(145%);
    }
}

@-o-keyframes ball-fall {
    0% {
        -o-transform: translateY(-145%);
        opacity: 0;
        transform: translateY(-145%);
    }

    10% { opacity: .5; }

    20% {
        -o-transform: translateY(0);
        opacity: 1;
        transform: translateY(0);
    }

    80% {
        -o-transform: translateY(0);
        opacity: 1;
        transform: translateY(0);
    }

    90% { opacity: .5; }

    100% {
        -o-transform: translateY(145%);
        opacity: 0;
        transform: translateY(145%);
    }
}

@keyframes ball-fall {
    0% {
        -moz-transform: translateY(-145%);
        -o-transform: translateY(-145%);
        -webkit-transform: translateY(-145%);
        opacity: 0;
        transform: translateY(-145%);
    }

    10% { opacity: .5; }

    20% {
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        -webkit-transform: translateY(0);
        opacity: 1;
        transform: translateY(0);
    }

    80% {
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        -webkit-transform: translateY(0);
        opacity: 1;
        transform: translateY(0);
    }

    90% { opacity: .5; }

    100% {
        -moz-transform: translateY(145%);
        -o-transform: translateY(145%);
        -webkit-transform: translateY(145%);
        opacity: 0;
        transform: translateY(145%);
    }
}