body {
    font-family: "Open Sans", sans-serif;
    color: #585a61;
}

a {
    color: #d73d3d;
    text-decoration: none;
}

a:hover {
    color: #d73d3e;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
}
#header {
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.95);
}

#header.header-transparent {
    background: transparent;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 1),
        60%,
        rgba(255, 255, 255, 0)
    );
}

#header.header-scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
    font-size: 30px;
    margin: 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 2px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #d73d3d;
    text-decoration: none;
}

#header .logo img {
    margin: 0;
    /*max-height: 0px;*/
}
.hero-waves {
    display: block;
    margin-top: 60px;
    width: 100%;
    height: 60px;
    z-index: 5;
    position: relative;
}

.wave1 use {
    -webkit-animation: move-forever1 10s linear infinite;
    animation: move-forever1 10s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

.wave2 use {
    -webkit-animation: move-forever2 8s linear infinite;
    animation: move-forever2 8s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

.wave3 use {
    -webkit-animation: move-forever3 6s linear infinite;
    animation: move-forever3 6s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }
    100% {
        transform: translate(-90px, 0%);
    }
}

@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }
    100% {
        transform: translate(-90px, 0%);
    }
}
@-webkit-keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}
@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}
@-webkit-keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}
@keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}

section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f2f5fa;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #d73d3d;
    font-family: "Poppins", sans-serif;
}

.section-title p {
    margin-bottom: 0;
}

.features .content {
    padding: 30px 0;
}

.features .content .icon-box {
    margin-top: 25px;
}

.features .content .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0 10px 60px;
}

.features .content .icon-box i {
    font-size: 48px;
    float: left;
    color: #d73d3d;
}

.features .content .icon-box p {
    font-size: 15px;
    color: #979aa1;
    margin-left: 60px;
}

@media (max-width: 991px) {
    .features .image {
        text-align: center;
    }
    .features .image img {
        max-width: 80%;
    }
}

@media (max-width: 667px) {
    .features .image img {
        max-width: 100%;
    }
}

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*padding: 10px 0 10px 30px;*/
    padding: 12px 25px;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    color: #8a8989;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: #d73d3d;
}

.navbar .getstarted {
    background: #d73d3d;
    color: #fff;
    padding: 12px 25px;
    margin-left: 30px;
    color: #fff;
    line-height: 1;
    border-radius: 50px;
}

.navbar .getstarted:hover {
    background: #881414;
    color: #fff;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: #d73d3d;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
  * Mobile Navigation 
  */
.mobile-nav-toggle {
    color: #8a8989;
    /*font-size: 28px;*/
    font-size: 45px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    /*background-color: rgba(179, 0, 0, 0.9);*/
    background: url(/img/menu-bg.png);
    border-radius: 6px;
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    /*border-radius: 6px;*/
    /*background-color: #fff;*/
    /*background-color: rgba(197, 19, 16,0.85);*/
    /*background-color: rgba(186, 29, 16, 0.9);*/
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a {
    padding: 10px 20px;
    font-size: 20px;
    /*color: #8a8989;*/
    color: #fff;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    /*color: #d73d3d;*/
    color: #ccc;
}

.navbar-mobile .getstarted {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    /*background: #fff;*/
    background: bottom;
    /*box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);*/
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
    font-size: 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    /*color: #d73d3d;*/
    color: #ccc;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

#hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px 0;
}

#hero::before {
    content: "";
    position: absolute;
    right: -100%;
    top: 20%;
    width: 250%;
    height: 200%;
    z-index: -1;
    background-color: #e8ecf5;
    transform: skewY(135deg);
}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 500;
    line-height: 56px;
    color: #d73d3d;
    font-family: "Poppins", sans-serif;
}

#hero h2 {
    color: #515f7d;
    margin-bottom: 50px;
    font-size: 20px;
}

#hero .download-btn {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    display: inline-block;
    padding: 8px 24px 10px 46px;
    border-radius: 3px;
    transition: 0.5s;
    color: #fff;
    background: #8a8989;
    position: relative;
}

#hero .download-btn:hover {
    background: #d73d3d;
}

#hero .download-btn i {
    font-size: 20px;
    position: absolute;
    left: 18px;
    top: 8.5px;
}

#hero .download-btn + .download-btn {
    margin-left: 20px;
}

@media (max-width: 991px) {
    #hero {
        text-align: center;
    }
    #hero .download-btn + .download-btn {
        margin: 0 10px;
    }
    #hero .hero-img {
        text-align: center;
    }
    #hero .hero-img img {
        width: 60%;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }
    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    #hero .hero-img img {
        width: 70%;
    }
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: 80%;
    }
}

#footer {
    background: #fff;
    color: #8a8989;
    font-size: 14px;
    /* background: #4d4d4d; */
    background: #fcf1f1;
    border-top: solid 1px #ccc;
}

#footer .footer-newsletter {
    padding: 50px 0;
    background: #4d4d4d;
    text-align: center;
    font-size: 15px;
}

#footer .footer-newsletter h4 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    color: #8a8989;
}

#footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #d73d3d;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
    background: #881414;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    background: #fff;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
    font-size: 22px;
    margin: 0 0 30px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
    color: #8a8989;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: #8a8c95;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #8a8989;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #d73d3e;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #8a8c95;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #d73d3d;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #d73d3d;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #27282c;
    color: #fff;
    text-decoration: none;
}

#footer .copyright {
    text-align: center;
    float: left;
    color: #8a8989;
}

#footer .credits {
    float: center;
    text-align: center;
    font-size: 13px;
    color: #8a8989;
}

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #d73d3d;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #ea5959;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.step-title {
    text-align: center;
    padding-bottom: 30px;
}

.step-title h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #d73d3d;
    font-family: "Poppins", sans-serif;
}

.apply-wrapper .apply-step {
    height: 449px;
}
body.tablet .apply-wrapper .apply-step .step-content {
    font-size: 13px;
    padding: 35px 45px 20px 25px;
    line-height: 24px;
}
body.tablet .apply-wrapper .apply-step .step-no {
    bottom: 61px;
    height: auto;
    right: 0;
    width: 113px;
}
body.tablet .apply-wrapper .apply-step .step-icon {
    right: 141px;
    top: 64px;
}
body.tablet .apply-wrapper .apply-step .step-icon .rotate-warpper,
body.tablet .apply-wrapper .apply-step .step-icon .rotate-warpper-inner,
body.tablet .apply-wrapper .apply-step .step-icon img {
    width: 187px;
    height: 300px;
}
body.tablet .apply-wrapper .apply-step .step-icon .rotate-warpper {
    right: -187px;
    bottom: -300px;
}

.apply-wrapper .apply-step:first-child {
    margin-left: 0;
}
.apply-wrapper .apply-step:last-child .step-content {
    padding-right: 69px;
}
.apply-wrapper .apply-step .step-icon {
    /*position: absolute;*/
    right: 200px;
    top: 104px;
}
.apply-wrapper .apply-step .step-icon img {
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    filter: alpha(opacity = 0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    position: absolute;
    left: 55px;
    top: 175px;
    width: 90%;
    max-width: 250px;
    height: auto;
}
.apply-wrapper .apply-step .step-icon .rotate-warpper {
    position: absolute;
    right: -272px;
    bottom: -436px;
    width: 272px;
    height: 436px;
    overflow: hidden;
}
.apply-wrapper .apply-step .step-icon .rotate-warpper * {
    right: 0;
    bottom: 0;
}
.apply-wrapper .apply-step .step-icon .rotate-warpper .rotate-warpper-inner {
    position: absolute;
    width: 272px;
    height: 436px;
    overflow: hidden;
}
.apply-wrapper .apply-step .step-icon .rotate-warpper img {
    left: auto;
    top: auto;
}
.apply-wrapper .apply-step .step-content {
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    filter: alpha(opacity = 0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    padding: 69px 80px 20px 42px;
    font-size: 18px;
    line-height: 20px;
    position: relative;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    #footer .copyright,
    #footer .credits {
        float: none;
        text-align: center;
        padding: 5px 0;
    }
    .apply-wrapper .apply-step .step-icon img {
        display: none;
    }
}

body.tablet #content .apply-wrapper .apply-step {
    height: 449px;
}
body.tablet #content .apply-wrapper .apply-step .step-content {
    font-size: 13px;
    padding: 35px 45px 20px 25px;
    line-height: 24px;
}
body.tablet #content .apply-wrapper .apply-step .step-no {
    bottom: 61px;
    height: auto;
    right: 0;
    width: 113px;
}
body.tablet #content .apply-wrapper .apply-step .step-icon {
    right: 141px;
    top: 64px;
}
body.tablet #content .apply-wrapper .apply-step .step-icon .rotate-warpper,
body.tablet
    #content
    .apply-wrapper
    .apply-step
    .step-icon
    .rotate-warpper-inner,
body.tablet #content .apply-wrapper .apply-step .step-icon img {
    width: 187px;
    height: 300px;
}
body.tablet #content .apply-wrapper .apply-step .step-icon .rotate-warpper {
    right: -187px;
    bottom: -300px;
}

@media screen and (max-width: 575px) {
    .step-mask {
        content: url("../assets/img/home_event/step-arrow-mobile.png");
        width: 100%;
        height: auto;
        top: auto;
        bottom: 0;
    }

    .apply-wrapper .apply-step .step-icon img {
        display: none;
    }
    .apply-wrapper .apply-step {
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        width: 100%;
        margin-left: 0;
        height: auto;
        min-height: 207px;
    }

    .apply-wrapper .apply-step .step-no {
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        bottom: 50px;
        height: auto;
        right: 22px;
        width: 115px;
    }

    .apply-wrapper .apply-step {
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        width: 100%;
        margin-left: 0;
        height: auto;
        min-height: 207px;
    }
    .apply-wrapper .apply-step .step-content {
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        font-size: 18px;
        padding: 2px 130px 0px 12px;
        line-height: 30px;
    }
    .apply-wrapper .apply-step .step-no {
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        bottom: 50px;
        height: auto;
        right: 22px;
        width: 115px;
        float: right;
    }

    .form-floating > label {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        padding: 1rem 0.75rem;
        pointer-events: none;
        border: 1px solid transparent;
        transform-origin: 0 0;
        transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
        font-size: 15px;
    }
}
@media (min-width: 576px) {
    .step-mask {
        content: url("../assets/img/home_event/step-arrow-mobile.png");
        width: 100%;
        height: auto;
        top: auto;
        bottom: 0;
    }

    .apply-wrapper .apply-step {
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        width: 100%;
        margin-left: 0;
        height: auto;
        min-height: 207px;
    }

    .apply-wrapper .apply-step .step-no {
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        bottom: 50px;
        height: auto;
        right: 22px;
        width: 115px;
    }

    .apply-wrapper .apply-step {
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        width: 100%;
        margin-left: 0;
        height: auto;
        min-height: 207px;
    }
    .apply-wrapper .apply-step .step-content {
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        font-size: 18px;
        padding: 2px 130px 0px 12px;
        line-height: 30px;
    }
    .apply-wrapper .apply-step .step-no {
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        bottom: 50px;
        height: auto;
        right: 22px;
        width: 115px;
        float: right;
    }

    .form-floating > label {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        padding: 1rem 0.75rem;
        pointer-events: none;
        border: 1px solid transparent;
        transform-origin: 0 0;
        transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
        font-size: 15px;
    }
}
@media (min-width: 768px) {
    .step-mask {
        content: url("../assets/img/home_event/step-arrow-tablet.png");
        width: 54px;
        height: 449px;
        position: absolute;
        z-index: 1;
        right: 0;
        top: 0;
    }
    .apply-wrapper .apply-step {
        display: inline-block;
        -moz-opacity: 0;
        -khtml-opacity: 0;
        opacity: 0;
        vertical-align: top;
        width: 21%;
        position: relative;
        height: 640px;
        margin-left: -2%;
        overflow: hidden;
    }
    .apply-wrapper .apply-step .step-no {
        -moz-opacity: 0;
        -khtml-opacity: 0;
        opacity: 0;
        bottom: 64px;
        position: absolute;
        right: 36px;
        width: 70%;
        max-width: 120px;
    }
    .apply-wrapper .apply-step .step-content {
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        font-size: 14px;
        padding: 25px 50px 85px 15px;
        line-height: 23px;
    }

    .form-floating > label {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        padding: 1rem 0.75rem;
        pointer-events: none;
        border: 1px solid transparent;
        transform-origin: 0 0;
        transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
        font-size: 15px;
    }
}
@media (min-width: 992px) {
    .step-mask {
        content: url("../assets/img/home_event/step-arrow-tablet.png");
        width: 54px;
        height: 449px;
        position: absolute;
        z-index: 1;
        right: 0;
        top: 0;
    }
    .apply-wrapper .apply-step {
        display: inline-block;
        -moz-opacity: 0;
        -khtml-opacity: 0;
        opacity: 0;
        vertical-align: top;
        width: 21%;
        position: relative;
        height: 640px;
        margin-left: -2%;
        overflow: hidden;
    }
    .apply-wrapper .apply-step .step-no {
        -moz-opacity: 0;
        -khtml-opacity: 0;
        opacity: 0;
        bottom: 64px;
        position: absolute;
        right: 50px;
        width: 70%;
        max-width: 120px;
    }

    .form-floating > label {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        padding: 1rem 0.75rem;
        pointer-events: none;
        border: 1px solid transparent;
        transform-origin: 0 0;
        transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
        font-size: 16px;
    }
}

@media (min-width: 1200px) {
    .step-mask {
        content: url("../assets/img/home_event/step-arrow.png");
        width: 111px;
        height: 640px;
    }
    .apply-wrapper .apply-step .step-content {
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        font-size: 15px;
        padding: 30px 90px 85px 25px;
        line-height: 25px;
    }
}

.form-control {
    font-size: 16px;
    padding: 20px 0px;
    height: 56px;
    border: none;
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
    background: #fff;
    min-width: 280px;
    box-sizing: border-box;
    transition: all 0.3s linear;
    color: #000;
    font-weight: 400;
    -webkit-appearance: none;
    border-radius: 0;
}

.form-floating > label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem 0.75rem;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}

@media (min-width: 1200px) {
    .form-floating > label {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        padding: 1rem 0.75rem;
        pointer-events: none;
        border: 1px solid transparent;
        transform-origin: 0 0;
        transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
        font-size: 18px;
    }
}


.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  padding-bottom: 2px !important;
  padding-top: 37px !important;
  }

.apply {
    background: #d73d3d;
    color: #fff;
    padding: 12px 25px;
    color: #fff;
    line-height: 1;
    border-radius: 50px;
}

.apply:hover {
    background: #881414;
    color: #fff;
}



height: 80px;
padding: 0;
position: relative;
background-color: #fff;
width: 80px;
}
.sa-success:after, .sa-success:before {
background: #fff;
content: '';
height: 120px;
position: absolute;
transform: rotate(45deg);
width: 60px;
}
.sa-success:before {
border-radius: 40px 0 0 40px;
width: 26px;
height: 80px;
top: -17px;
left: 5px;
transform-origin: 60px 60px;
transform: rotate(-45deg);
}
.sa-success:after {
border-radius: 0 120px 120px 0;
left: 30px;
top: -11px;
transform-origin: 0 60px;
transform: rotate(-45deg);
animation: rotatePlaceholder 4.25s ease-in;
}
.sa-success-placeholder {
border-radius: 50%;
border: 4px solid rgba(165, 220, 134, 0.25);
box-sizing: content-box;
height: 80px;
left: -4px;
position: absolute;
top: -4px;
width: 80px;
z-index: 2;
}
.sa-success-fix {
background-color: #fff;
height: 90px;
left: 28px;
position: absolute;
top: 8px;
transform: rotate(-45deg);
width: 5px;
z-index: 1;
}
.sa-success-tip, .sa-success-long {
background-color: #A5DC86;
border-radius: 2px;
height: 5px;
position: absolute;
z-index: 2;
}
.sa-success-tip {
left: 14px;
top: 46px;
transform: rotate(45deg);
width: 25px;
animation: animateSuccessTip .75s;
}
.sa-success-long {
right: 8px;
top: 38px;
transform: rotate(-45deg);
width: 47px;
animation: animateSuccessLong .75s;
}

@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 animateSuccessLong {
0%, 65% {
  width: 0;
  right: 46px;
  top: 54px;
}
84% {
  width: 55px;
  right: 0;
  top: 35px;
}
100% {
  width: 47px;
  right: 8px;
  top: 38px;
}
}
@keyframes rotatePlaceholder {
0%, 5% {
  transform: rotate(-45deg);
}
100%, 12% {
  transform: rotate(-405deg);
}
}





.pure-button {
/*background: #1A4361;*/
background: #28a745;
border-radius: 5px;
color: #E5E5E5;
font-size: 18px;
padding: 9px 27px;
}
.pure-button-disabled {
cursor: no-drop;
opacity: 0.45;
}

#imageviewer {
background: transparent;
padding: 10px;
margin: 0;
text-align: center;
position: relative;
width: initial;
}

#imageviewer:fullscreen,
#imageviewer:-webkit-full-screen,
#imageviewer:-moz-full-screen {padding: 0;background-color: #000;}

#index {
background: #FFF;
border-radius: 50px;
font-size: 18px;
font-weight: 500;
letter-spacing: 2px;
padding: 5px 10px;
position: absolute;
top: 20px;
left: 50%;
margin: 0px -25px;
}

#navigation-panel-wrapper {
width: 100%;
position: fixed;
bottom: 10px;
left: 0;
text-align: center;
}
#navigation-panel-wrapper > .pure-button, #navigation-panel {background: transparent;}
#navigation-panel-wrapper > .fa {font-size: 1.55em;}
#navigation-panel {padding: 5px;display: inline-block;}

#help {
min-width: 30%;
max-width: 60%;
margin: 0 auto;
display: none;
border-radius: 10px;
color: #C5C5C5;
padding: 10px;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
text-align: center;
}

#help > h1 {
font-size: 3em;
font-weight: 300;
line-height: 3;
}
#help > p {
font-size: 18px;
font-weight: 300;
padding: 0 10px;
}
#help > ul {
margin: 10px auto 20px;
padding: 10px 0px;
font-weight: 300;
}
#help > ul > li {
display: inline-block;
padding: 10px 5px;
vertical-align: middle;
}
#help > ul > li > b {
background: #FFF;
border-radius: 5px;
color: #888;
font-size: 16px;
font-weight: 400;
padding: 4px 15px;
text-transform: uppercase;
}

/*fullscreen*/
:fullscreen > .fs-hidden {display: none;}
:fullscreen > .fs-visible {display: block !important;}
:fullscreen > #index {
background-color: #000;
color: #0f0;
left: 50%;
margin: 0px -25px;
}
:-webkit-full-screen > .fs-hidden {display: none;}
:-webkit-full-screen > .fs-visible {display: block !important;}
:-webkit-full-screen > #index {
background-color: #000;
color: #0f0;
left: 50%;
margin: 0px -25px;
}
:-moz-full-screen > .fs-hidden {display: none;}
:-moz-full-screen > .fs-visible {display: block !important;}
:-moz-full-screen > #index {
background-color: #000;
color: #0f0;
left: 0;
margin-left: 0;
}
/*resize*/
@media only screen and (max-width: 320px) {
.pure-button {padding: 8px 15px;}
#help {max-width: 90%;}
#help > h1 {font-size: 3em;line-height: 2;}
#help > p {font-size: 14px;}
#help > ul > li {padding: 10px 0px;}
#help > ul > li > b {font-size: 14px;padding: 3px 10px;}
}

.icon {
  width: 80px;
  height: 80px;
  /*border: 4px solid gray;*/
  -webkit-border-radius: 40px;
  border-radius: 50%;
  margin: 20px auto;
  padding: 0;
  position: relative;
  box-sizing: content-box
}
.icon.error {
  border-color: #F27474
}
.icon.error .x-mark {
  position: relative;
  display: block
}
.icon.error .line {
  position: absolute;
  height: 5px;
  width: 47px;
  background-color: #F27474;
  display: block;
  top: 37px;
  border-radius: 2px
}
.icon.error .line.left {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 17px
}
.icon.error .line.right {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 16px
}
.icon.warning {
  border-color: #ef5390
}
.icon.warning .body {
  position: absolute;
  width: 5px;
  height: 47px;
  left: 50%;
  top: 10px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #ef5390
}
.icon.warning .dot {
  position: absolute;
  width: 7px;
  height: 7px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-left: -3px;
  left: 50%;
  bottom: 10px;
  background-color: #ef5390
}
.icon.info {
  border-color: #C9DAE1
}
.icon.info::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 29px;
  left: 50%;
  bottom: 17px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #C9DAE1
}
.icon.info::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  top: 19px;
  background-color: #C9DAE1;
  left: 50%;
}
.icon.success {
  border-color: #A5DC86
}
.icon.success::after,
.icon.success::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 120px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg)
}
.icon.success::before {
  -webkit-border-radius: 120px 0 0 120px;
  border-radius: 120px 0 0 120px;
  top: -7px;
  left: -33px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 60px 60px;
  transform-origin: 60px 60px
}
.icon.success::after {
  -webkit-border-radius: 0 120px 120px 0;
  border-radius: 0 120px 120px 0;
  top: -11px;
  left: 30px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 0 60px;
  transform-origin: 0 60px
}
.icon.success .placeholder {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(165, 220, 134, .2);
  -webkit-border-radius: 40px;
  border-radius: 50%;
  box-sizing: content-box;
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 2
}
.icon.success .fix {
  width: 5px;
  height: 90px;
  background-color: #fff;
  position: absolute;
  left: 28px;
  top: 8px;
  z-index: 1;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg)
}
.icon.success .line {
  height: 5px;
  background-color: #A5DC86;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 2
}
.icon.success .line.tip {
  width: 25px;
  left: 14px;
  top: 46px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg)
}
.icon.success .line.long {
  width: 47px;
  right: 8px;
  top: 38px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg)
}
.icon.custom {
  background-size: contain;
  border-radius: 0;
  border: none;
  background-position: center center;
  background-repeat: no-repeat
}
@-webkit-keyframes showSweetAlert {
  0% {
      transform: scale(.7);
      -webkit-transform: scale(.7)
  }
  45% {
      transform: scale(1.05);
      -webkit-transform: scale(1.05)
  }
  80% {
      transform: scale(.95);
      -webkit-tranform: scale(.95)
  }
  100% {
      transform: scale(1);
      -webkit-transform: scale(1)
  }
}
@keyframes showSweetAlert {
  0% {
      transform: scale(.7);
      -webkit-transform: scale(.7)
  }
  45% {
      transform: scale(1.05);
      -webkit-transform: scale(1.05)
  }
  80% {
      transform: scale(.95);
      -webkit-tranform: scale(.95)
  }
  100% {
      transform: scale(1);
      -webkit-transform: scale(1)
  }
}
@-webkit-keyframes hideSweetAlert {
  0% {
      transform: scale(1);
      -webkit-transform: scale(1)
  }
  100% {
      transform: scale(.5);
      -webkit-transform: scale(.5)
  }
}
@keyframes hideSweetAlert {
  0% {
      transform: scale(1);
      -webkit-transform: scale(1)
  }
  100% {
      transform: scale(.5);
      -webkit-transform: scale(.5)
  }
}
.showSweetAlert {
  -webkit-animation: showSweetAlert .3s;
  animation: showSweetAlert .3s
}
.showSweetAlert[data-animation=none] {
  -webkit-animation: none;
  animation: none
}
.hideSweetAlert {
  -webkit-animation: hideSweetAlert .2s;
  animation: hideSweetAlert .2s
}
.hideSweetAlert[data-animation=none] {
  -webkit-animation: none;
  animation: none
}
@-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
  }
}
@-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
  }
}
@-webkit-keyframes rotatePlaceholder {
  0%, 5% {
      transform: rotate(-45deg);
      -webkit-transform: rotate(-45deg)
  }
  100%,
  12% {
      transform: rotate(-405deg);
      -webkit-transform: rotate(-405deg)
  }
}
@keyframes rotatePlaceholder {
  0%, 5% {
      transform: rotate(-45deg);
      -webkit-transform: rotate(-45deg)
  }
  100%,
  12% {
      transform: rotate(-405deg);
      -webkit-transform: rotate(-405deg)
  }
}
.animateSuccessTip {
  -webkit-animation: animateSuccessTip .75s;
  animation: animateSuccessTip .75s
}
.animateSuccessLong {
  -webkit-animation: animateSuccessLong .75s;
  animation: animateSuccessLong .75s
}
.icon.success.animate::after {
  -webkit-animation: rotatePlaceholder 4.25s ease-in;
  animation: rotatePlaceholder 4.25s ease-in
}
@-webkit-keyframes animateErrorIcon {
  0% {
      transform: rotateX(100deg);
      -webkit-transform: rotateX(100deg);
      opacity: 0
  }
  100% {
      transform: rotateX(0deg);
      -webkit-transform: rotateX(0deg);
      opacity: 1
  }
}
@keyframes animateErrorIcon {
  0% {
      transform: rotateX(100deg);
      -webkit-transform: rotateX(100deg);
      opacity: 0
  }
  100% {
      transform: rotateX(0deg);
      -webkit-transform: rotateX(0deg);
      opacity: 1
  }
}
.animateErrorIcon {
  -webkit-animation: animateErrorIcon .5s;
  animation: animateErrorIcon .5s
}
@-webkit-keyframes animateXMark {
  0%, 50% {
      transform: scale(.4);
      -webkit-transform: scale(.4);
      margin-top: 26px;
      opacity: 0
  }
  80% {
      transform: scale(1.15);
      -webkit-transform: scale(1.15);
      margin-top: -6px
  }
  100% {
      transform: scale(1);
      -webkit-transform: scale(1);
      margin-top: 0;
      opacity: 1
  }
}
@keyframes animateXMark {
  0%, 50% {
      transform: scale(.4);
      -webkit-transform: scale(.4);
      margin-top: 26px;
      opacity: 0
  }
  80% {
      transform: scale(1.15);
      -webkit-transform: scale(1.15);
      margin-top: -6px
  }
  100% {
      transform: scale(1);
      -webkit-transform: scale(1);
      margin-top: 0;
      opacity: 1
  }
}
.animateXMark {
  -webkit-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;
  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;
  animation: pulseWarningIns .75s infinite alternate
}

  .sa {
    width: 100％;
    height: 140px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .sa-success {
    border-radius: 50%;
    border: 4px solid #A5DC86;
    box-sizing: content-box;
    height: 80px;
    padding: 0;
    position: relative;
    background-color: #fff;
    width: 80px;
  }
  .sa-success:after, .sa-success:before {
    background: #fff;
    content: '';
    height: 120px;
    position: absolute;
    transform: rotate(45deg);
    width: 60px;
  }
  .sa-success:before {
    border-radius: 40px 0 0 40px;
    width: 26px;
    height: 80px;
    top: -17px;
    left: 5px;
    transform-origin: 60px 60px;
    transform: rotate(-45deg);
  }
  .sa-success:after {
    border-radius: 0 120px 120px 0;
    left: 30px;
    top: -11px;
    transform-origin: 0 60px;
    transform: rotate(-45deg);
    animation: rotatePlaceholder 4.25s ease-in;
  }
  .sa-success-placeholder {
    border-radius: 50%;
    border: 4px solid rgba(165, 220, 134, 0.25);
    box-sizing: content-box;
    height: 80px;
    left: -4px;
    position: absolute;
    top: -4px;
    width: 80px;
    z-index: 2;
  }
  .sa-success-fix {
    background-color: #fff;
    height: 90px;
    left: 28px;
    position: absolute;
    top: 8px;
    transform: rotate(-45deg);
    width: 5px;
    z-index: 1;
  }
  .sa-success-tip, .sa-success-long {
    background-color: #A5DC86;
    border-radius: 2px;
    height: 5px;
    position: absolute;
    z-index: 2;
  }
  .sa-success-tip {
    left: 14px;
    top: 46px;
    transform: rotate(45deg);
    width: 25px;
    animation: animateSuccessTip .75s;
  }
  .sa-success-long {
    right: 8px;
    top: 38px;
    transform: rotate(-45deg);
    width: 47px;
    animation: animateSuccessLong .75s;
  }

  @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 animateSuccessLong {
    0%, 65% {
      width: 0;
      right: 46px;
      top: 54px;
    }
    84% {
      width: 55px;
      right: 0;
      top: 35px;
    }
    100% {
      width: 47px;
      right: 8px;
      top: 38px;
    }
  }
  @keyframes rotatePlaceholder {
    0%, 5% {
      transform: rotate(-45deg);
    }
    100%, 12% {
      transform: rotate(-405deg);
    }
  }




  .widget, #index, #title {
    background-color: #fff;
    color: #0682EF;
    padding: 2px 5px 2px 5px;
    z-index: 100; }

  .hidden {display: none;}
  .pointer {cursor: pointer;}


  .pure-button {
    /*background: #1A4361;*/
    background: #28a745;
    border-radius: 5px;
    color: #E5E5E5;
    font-size: 18px;
    padding: 9px 27px;
  }
  .pure-button-disabled {
    cursor: no-drop;
    opacity: 0.45;
  }

  #imageviewer {
    background: transparent;
    padding: 10px;
    margin: 0;
    text-align: center;
    position: relative;
    width: initial;
  }

  #imageviewer:fullscreen,
  #imageviewer:-webkit-full-screen,
  #imageviewer:-moz-full-screen {padding: 0;background-color: #000;}

  #index {
    background: #FFF;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 5px 10px;
    position: absolute;
    top: 20px;
    left: 50%;
    margin: 0px -25px;
  }

  #navigation-panel-wrapper {
    width: 100%;
    position: fixed;
    bottom: 10px;
    left: 0;
    text-align: center;
  }
  #navigation-panel-wrapper > .pure-button, #navigation-panel {background: transparent;}
  #navigation-panel-wrapper > .fa {font-size: 1.55em;}
  #navigation-panel {padding: 5px;display: inline-block;}

  #help {
    min-width: 30%;
    max-width: 60%;
    margin: 0 auto;
    display: none;
    border-radius: 10px;
    color: #C5C5C5;
    padding: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
  }

  #help > h1 {
    font-size: 3em;
    font-weight: 300;
    line-height: 3;
  }
  #help > p {
    font-size: 18px;
    font-weight: 300;
    padding: 0 10px;
  }
  #help > ul {
    margin: 10px auto 20px;
    padding: 10px 0px;
    font-weight: 300;
  }
  #help > ul > li {
    display: inline-block;
    padding: 10px 5px;
    vertical-align: middle;
  }
  #help > ul > li > b {
    background: #FFF;
    border-radius: 5px;
    color: #888;
    font-size: 16px;
    font-weight: 400;
    padding: 4px 15px;
    text-transform: uppercase;
  }

  /*fullscreen*/
  :fullscreen > .fs-hidden {display: none;}
  :fullscreen > .fs-visible {display: block !important;}
  :fullscreen > #index {
    background-color: #000;
    color: #0f0;
    left: 50%;
    margin: 0px -25px;
  }
  :-webkit-full-screen > .fs-hidden {display: none;}
  :-webkit-full-screen > .fs-visible {display: block !important;}
  :-webkit-full-screen > #index {
    background-color: #000;
    color: #0f0;
    left: 50%;
    margin: 0px -25px;
  }
  :-moz-full-screen > .fs-hidden {display: none;}
  :-moz-full-screen > .fs-visible {display: block !important;}
  :-moz-full-screen > #index {
    background-color: #000;
    color: #0f0;
    left: 0;
    margin-left: 0;
  }
  /*resize*/
  @media only screen and (max-width: 320px) {
    .pure-button {padding: 8px 15px;}
    #help {max-width: 90%;}
    #help > h1 {font-size: 3em;line-height: 2;}
    #help > p {font-size: 14px;}
    #help > ul > li {padding: 10px 0px;}
    #help > ul > li > b {font-size: 14px;padding: 3px 10px;}
  }


   .icon.error {
      border-color: #F27474
  }
   .icon.error .x-mark {
      position: relative;
      display: block
  }
   .icon.error .line {
      position: absolute;
      height: 5px;
      width: 47px;
      background-color: #F27474;
      display: block;
      top: 37px;
      border-radius: 2px
  }
   .icon.error .line.left {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
      left: 17px
  }
   .icon.error .line.right {
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg);
      right: 16px
  }
   .icon.warning {
      border-color: #ef5390
  }
   .icon.warning .body {
      position: absolute;
      width: 5px;
      height: 47px;
      left: 50%;
      top: 10px;
      -webkit-border-radius: 2px;
      border-radius: 2px;
      margin-left: -2px;
      background-color: #ef5390
  }
   .icon.warning .dot {
      position: absolute;
      width: 7px;
      height: 7px;
      -webkit-border-radius: 50%;
      border-radius: 50%;
      margin-left: -3px;
      left: 50%;
      bottom: 10px;
      background-color: #ef5390
  }
   .icon.info {
      border-color: #C9DAE1
  }
   .icon.info::before {
      content: "";
      position: absolute;
      width: 5px;
      height: 29px;
      left: 50%;
      bottom: 17px;
      border-radius: 2px;
      margin-left: -2px;
      background-color: #C9DAE1
  }
   .icon.info::after {
      content: "";
      position: absolute;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      margin-left: -3px;
      top: 19px;
      background-color: #C9DAE1;
      left: 50%;
  }
   .icon.success {
      border-color: #A5DC86
  }
   .icon.success::after,
   .icon.success::before {
      content: '';
      position: absolute;
      width: 60px;
      height: 120px;
      background: #fff;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg)
  }
   .icon.success::before {
      -webkit-border-radius: 120px 0 0 120px;
      border-radius: 120px 0 0 120px;
      top: -7px;
      left: -33px;
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg);
      -webkit-transform-origin: 60px 60px;
      transform-origin: 60px 60px
  }
   .icon.success::after {
      -webkit-border-radius: 0 120px 120px 0;
      border-radius: 0 120px 120px 0;
      top: -11px;
      left: 30px;
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg);
      -webkit-transform-origin: 0 60px;
      transform-origin: 0 60px
  }
   .icon.success .placeholder {
      width: 80px;
      height: 80px;
      border: 4px solid rgba(165, 220, 134, .2);
      -webkit-border-radius: 40px;
      border-radius: 50%;
      box-sizing: content-box;
      position: absolute;
      left: -4px;
      top: -4px;
      z-index: 2
  }
   .icon.success .fix {
      width: 5px;
      height: 90px;
      background-color: #fff;
      position: absolute;
      left: 28px;
      top: 8px;
      z-index: 1;
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg)
  }
   .icon.success .line {
      height: 5px;
      background-color: #A5DC86;
      display: block;
      border-radius: 2px;
      position: absolute;
      z-index: 2
  }
   .icon.success .line.tip {
      width: 25px;
      left: 14px;
      top: 46px;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg)
  }
   .icon.success .line.long {
      width: 47px;
      right: 8px;
      top: 38px;
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg)
  }
   .icon.custom {
      background-size: contain;
      border-radius: 0;
      border: none;
      background-position: center center;
      background-repeat: no-repeat
  }
  @-webkit-keyframes showSweetAlert {
      0% {
          transform: scale(.7);
          -webkit-transform: scale(.7)
      }
      45% {
          transform: scale(1.05);
          -webkit-transform: scale(1.05)
      }
      80% {
          transform: scale(.95);
          -webkit-tranform: scale(.95)
      }
      100% {
          transform: scale(1);
          -webkit-transform: scale(1)
      }
  }
  @keyframes showSweetAlert {
      0% {
          transform: scale(.7);
          -webkit-transform: scale(.7)
      }
      45% {
          transform: scale(1.05);
          -webkit-transform: scale(1.05)
      }
      80% {
          transform: scale(.95);
          -webkit-tranform: scale(.95)
      }
      100% {
          transform: scale(1);
          -webkit-transform: scale(1)
      }
  }
  @-webkit-keyframes hideSweetAlert {
      0% {
          transform: scale(1);
          -webkit-transform: scale(1)
      }
      100% {
          transform: scale(.5);
          -webkit-transform: scale(.5)
      }
  }
  @keyframes hideSweetAlert {
      0% {
          transform: scale(1);
          -webkit-transform: scale(1)
      }
      100% {
          transform: scale(.5);
          -webkit-transform: scale(.5)
      }
  }
  .showSweetAlert {
      -webkit-animation: showSweetAlert .3s;
      animation: showSweetAlert .3s
  }
  .showSweetAlert[data-animation=none] {
      -webkit-animation: none;
      animation: none
  }
  .hideSweetAlert {
      -webkit-animation: hideSweetAlert .2s;
      animation: hideSweetAlert .2s
  }
  .hideSweetAlert[data-animation=none] {
      -webkit-animation: none;
      animation: none
  }
  @-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
      }
  }
  @-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
      }
  }
  @-webkit-keyframes rotatePlaceholder {
      0%, 5% {
          transform: rotate(-45deg);
          -webkit-transform: rotate(-45deg)
      }
      100%,
      12% {
          transform: rotate(-405deg);
          -webkit-transform: rotate(-405deg)
      }
  }
  @keyframes rotatePlaceholder {
      0%, 5% {
          transform: rotate(-45deg);
          -webkit-transform: rotate(-45deg)
      }
      100%,
      12% {
          transform: rotate(-405deg);
          -webkit-transform: rotate(-405deg)
      }
  }
  .animateSuccessTip {
      -webkit-animation: animateSuccessTip .75s;
      animation: animateSuccessTip .75s
  }
  .animateSuccessLong {
      -webkit-animation: animateSuccessLong .75s;
      animation: animateSuccessLong .75s
  }
  .icon.success.animate::after {
      -webkit-animation: rotatePlaceholder 4.25s ease-in;
      animation: rotatePlaceholder 4.25s ease-in
  }
  @-webkit-keyframes animateErrorIcon {
      0% {
          transform: rotateX(100deg);
          -webkit-transform: rotateX(100deg);
          opacity: 0
      }
      100% {
          transform: rotateX(0deg);
          -webkit-transform: rotateX(0deg);
          opacity: 1
      }
  }
  @keyframes animateErrorIcon {
      0% {
          transform: rotateX(100deg);
          -webkit-transform: rotateX(100deg);
          opacity: 0
      }
      100% {
          transform: rotateX(0deg);
          -webkit-transform: rotateX(0deg);
          opacity: 1
      }
  }
  .animateErrorIcon {
      -webkit-animation: animateErrorIcon .5s;
      animation: animateErrorIcon .5s
  }
  @-webkit-keyframes animateXMark {
      0%, 50% {
          transform: scale(.4);
          -webkit-transform: scale(.4);
          margin-top: 26px;
          opacity: 0
      }
      80% {
          transform: scale(1.15);
          -webkit-transform: scale(1.15);
          margin-top: -6px
      }
      100% {
          transform: scale(1);
          -webkit-transform: scale(1);
          margin-top: 0;
          opacity: 1
      }
  }
  @keyframes animateXMark {
      0%, 50% {
          transform: scale(.4);
          -webkit-transform: scale(.4);
          margin-top: 26px;
          opacity: 0
      }
      80% {
          transform: scale(1.15);
          -webkit-transform: scale(1.15);
          margin-top: -6px
      }
      100% {
          transform: scale(1);
          -webkit-transform: scale(1);
          margin-top: 0;
          opacity: 1
      }
  }
  .animateXMark {
      -webkit-animation: animateXMark .5s;
      animation: animateXMark .5s
  }
  @-webkit-keyframes pulseWarning {
      0% {
          border-color: #ef5390
      }
      100% {
          border-color: #89d984
      }
  }
  @keyframes pulseWarning {
      0% {
          border-color: #ef5390
      }
      100% {
          border-color: #89d984
      }
  }
  .pulseWarning {
      -webkit-animation: pulseWarning .75s infinite alternate;
      animation: pulseWarning .75s infinite alternate
  }
  @-webkit-keyframes pulseWarningIns {
      0% {
          background-color: #ef5390
      }
      100% {
          background-color: #89d984
      }
  }
  @keyframes pulseWarningIns {
      0% {
          background-color: #ef5390
      }
      100% {
          background-color: #89d984
      }
  }
  .pulseWarningIns {
      -webkit-animation: pulseWarningIns .75s infinite alternate;
      animation: pulseWarningIns .75s infinite alternate
  }