*, *:before, *:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    font-size: 62.5%;
    height: 100%;
    overflow: hidden;
}




@media (max-width: 768px) {
    html, body {
        font-size: 50%;
    }
}

svg {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    overflow: visible;
}

.svg-icon {
    cursor: pointer;
}

    .svg-icon path {
        stroke: rgba(255, 255, 255, 0.9);
        fill: none;
        stroke-width: 1;
    }

input, button {
    outline: none;
    border: none;
}

.cont {
    position: relative;
    height: 100%;
    background-image: url(../../images/backgrounds/EPROC-FIN.png);
    background-size: cover;
    overflow: auto;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

.demo {
    position: absolute;
    top: 40%;
    left: 50%;
    margin-left: -15rem;
    margin-top: -26.5rem;
    width: 30rem;
    height: 55rem;
    /*overflow: hidden;*/
}

.login {
    position: relative;
    height: 100%;
    background: -webkit-linear-gradient(top, rgba(146, 135, 187, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    background: linear-gradient(to bottom, rgba(146, 135, 187, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    -webkit-transition: opacity 0.1s, -webkit-transform 0.3s cubic-bezier(0.17, -0.65, 0.665, 1.25);
    transition: opacity 0.1s, -webkit-transform 0.3s cubic-bezier(0.17, -0.65, 0.665, 1.25);
    transition: opacity 0.1s, transform 0.3s cubic-bezier(0.17, -0.65, 0.665, 1.25);
    transition: opacity 0.1s, transform 0.3s cubic-bezier(0.17, -0.65, 0.665, 1.25), -webkit-transform 0.3s cubic-bezier(0.17, -0.65, 0.665, 1.25);
    -webkit-transform: scale(1);
    transform: scale(1);
}

    .login.inactive {
        opacity: 0;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }


    .reset__div{

              display: flex;
              flex-direction: column;
              justify-content: center;
              align-items: center;


    }
.login__check {
    position: absolute;
    left: 0;
    width: 100%;
    height: 35%;
}
/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    .login__check {
        background: url(../../images/eproc-final1.png) no-repeat center;
        background-size:140px;
    }
    
}
/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
    .login__check {
        background: url(../../images/eproc-final1.png) no-repeat center;
        background-size:150px;
    }
   
}

.login__form {
    position: absolute;
    top: 30%;
    left: 0;
    width: 100%;
    height: 60%;
    padding: 1.5rem 2.5rem;
    text-align: center;
}

.login__row {
    height: 5rem;
    padding-top: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    
}

.login__icon {
    margin-bottom: -0.4rem;
    margin-right: 0.5rem;
}

    .login__icon.name path {
        stroke-dasharray: 73.50196075439453;
        stroke-dashoffset: 73.50196075439453;
        -webkit-animation: animatePath 2s 0.5s forwards;
        animation: animatePath 2s 0.5s forwards;
    }

    .login__icon.pass path {
        stroke-dasharray: 92.10662841796875;
        stroke-dashoffset: 92.10662841796875;
        -webkit-animation: animatePath 2s 0.5s forwards;
        animation: animatePath 2s 0.5s forwards;
    }

.login__input {
    display: inline-block;
    width: 22rem;
    height: 102%;
    padding-left: 1.5rem;
    font-size: 1.5rem;
    background: transparent;
    color: #FDFCFD;
    padding-bottom: 0.9rem;
   
}


.login__submit {
    position: relative;
    width: 100%;
    height: 4rem;
    margin: 5rem 0 2.2rem;
    color: rgba(255, 255, 255, 0.8);
    background: #FF3366;
    font-size: 1.5rem;
    border-radius: 3rem;
    cursor: pointer;
    overflow: hidden;
    -webkit-transition: width 0.3s 0.15s, font-size 0.1s 0.15s;
    transition: width 0.3s 0.15s, font-size 0.1s 0.15s;
}

    .login__submit:after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -1.5rem;
        margin-top: -1.5rem;
        width: 3rem;
        height: 3rem;
        border: 2px dotted #fff;
        border-radius: 50%;
        border-left: none;
        border-bottom: none;
        -webkit-transition: opacity 0.1s 0.4s;
        transition: opacity 0.1s 0.4s;
        opacity: 0;
    }

    .login__submit.processing {
        width: 4rem;
        font-size: 0;
    }

        .login__submit.processing:after {
            opacity: 1;
            -webkit-animation: rotate 0.5s 0.4s infinite linear;
            animation: rotate 0.5s 0.4s infinite linear;
        }

    .login__submit.success {
        -webkit-transition: opacity 0.1s 0.3s, background-color 0.1s 0.3s, -webkit-transform 0.3s 0.1s ease-out;
        transition: opacity 0.1s 0.3s, background-color 0.1s 0.3s, -webkit-transform 0.3s 0.1s ease-out;
        transition: transform 0.3s 0.1s ease-out, opacity 0.1s 0.3s, background-color 0.1s 0.3s;
        transition: transform 0.3s 0.1s ease-out, opacity 0.1s 0.3s, background-color 0.1s 0.3s, -webkit-transform 0.3s 0.1s ease-out;
        -webkit-transform: scale(30);
        transform: scale(30);
        opacity: 0.9;
    }

        .login__submit.success:after {
            -webkit-transition: opacity 0.1s 0s;
            transition: opacity 0.1s 0s;
            opacity: 0;
            -webkit-animation: none;
            animation: none;
        }
        .divcaptcha{
            display:flex;
            flex-direction:row;
            justify-content:space-between;
            gap:10px;
            margin: 0.2em 0.2em;

        }
        #btnCaptchaGen{
            text-decoration: none;
            font-size:24px
        }

.login__signup {
    font-size: 1.2rem;
    color: #ABA8AE;
}

    .login__signup a {
        color: #fff;
        cursor: pointer;
    }
/*Change Password*/
.change_pass {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: none;
    background: -webkit-linear-gradient(top, rgba(146, 135, 187, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    background: linear-gradient(to bottom, rgba(146, 135, 187, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    -webkit-transition: opacity 0.1s, -webkit-transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25);
    transition: opacity 0.1s, -webkit-transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25);
    transition: opacity 0.1s, transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25);
    transition: opacity 0.1s, transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25), -webkit-transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

    .change_pass.active {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

.change_pass__check {
    position: absolute;
    left: 0;
    width: 100%;
    height: 45%;
}
/* small Devices adn Tablets*/
@media only screen and ( max-width : 780px) {
    .reset__div {
        display: flex;
              flex-direction: column;
              justify-content: center;
              align-items: center;
        margin: 5%;
    }

    .forgot_pass__submit {
        position: relative;
        width: 100%;
        height: 4rem;
        margin: 8rem 0 2.2rem;
        color: rgba(255, 255, 255, 0.8);
        background: #FF3366;
        font-size: 1.5rem;
        border-radius: 3rem;
        cursor: pointer;
        overflow: hidden;
        -webkit-transition: width 0.3s 0.15s, font-size 0.1s 0.15s;
        transition: width 0.3s 0.15s, font-size 0.1s 0.15s;
    }
}
    @media only screen and (min-width: 480px ) and (max-width: 768px){
        

         .reset__div{
              display: flex;
              flex-direction: column;
              justify-content: center;
              align-items: center;
              margin:16%;
    }
         .forgot_pass__submit {
        position: relative;
        width: 100%;
        height: 4rem;
        margin: 8rem 0 2.2rem;
        color: rgba(255, 255, 255, 0.8);
        background: #FF3366;
        font-size: 1.5rem;
        border-radius: 3rem;
        cursor: pointer;
        overflow: hidden;
        -webkit-transition: width 0.3s 0.15s, font-size 0.1s 0.15s;
        transition: width 0.3s 0.15s, font-size 0.1s 0.15s;
       }

    }
    
/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    .change_pass__check {
        background: url(../../images/logo/mipmap-xxhdpi/ic_launcher.png) no-repeat center;
    }
    .modal_otp_body{
        height: 66vh;
        width: 100vw;
    }
     .forgot_pass__submit {
        position: relative;
        width: 100%;
        height: 4rem;
        margin: 8rem 0 2.2rem;
        color: rgba(255, 255, 255, 0.8);
        background: #FF3366;
        font-size: 1.5rem;
        border-radius: 3rem;
        cursor: pointer;
        overflow: hidden;
        -webkit-transition: width 0.3s 0.15s, font-size 0.1s 0.15s;
        transition: width 0.3s 0.15s, font-size 0.1s 0.15s;
    }

  
}
/* Small Devices, Tablets */
@media only screen and (max-width : 480px){
    .divcaptcha{
        flex-direction:row;
        align-items:center;
        flex-wrap:wrap;

     
    }
    #btnCaptchaGen{
         text-decoration: none;
         font-size:24px;
         margin-top: 0.3em;

    }
}
@media only screen and (min-width : 768px) {
    .change_pass__check {
        background: url(../../images/logo/mipmap-xxxhdpi/ic_launcher.png) no-repeat center;
    }
}

.change_pass__form {
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    height: 50%;
    padding: 1.5rem 2.5rem;
    text-align: center;
}

.change_pass__row {
    height: 5rem;
    padding-top: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.change_pass__icon {
    margin-bottom: -0.4rem;
    margin-right: 0.5rem;
}

    .change_pass__icon.name path {
        stroke-dasharray: 73.50196075439453;
        stroke-dashoffset: 73.50196075439453;
        -webkit-animation: animatePath 2s 0.5s forwards;
        animation: animatePath 2s 0.5s forwards;
    }

    .change_pass__icon.pass path {
        stroke-dasharray: 92.10662841796875;
        stroke-dashoffset: 92.10662841796875;
        -webkit-animation: animatePath 2s 0.5s forwards;
        animation: animatePath 2s 0.5s forwards;
    }

.change_pass__input {
    display: inline-block;
    width: 22rem;
    height: 100%;
    padding-left: 1.5rem;
    font-size: 1.5rem;
    background: transparent;
    color: #FDFCFD;
}

.change_pass__submit {
    position: relative;
    width: 100%;
    height: 4rem;
    margin: 5rem 0 2.2rem;
    color: rgba(255, 255, 255, 0.8);
    background: #FF3366;
    font-size: 1.5rem;
    border-radius: 3rem;
    cursor: pointer;
    overflow: hidden;
    -webkit-transition: width 0.3s 0.15s, font-size 0.1s 0.15s;
    transition: width 0.3s 0.15s, font-size 0.1s 0.15s;
}

    .change_pass__submit:after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -1.5rem;
        margin-top: -1.5rem;
        width: 3rem;
        height: 3rem;
        border: 2px dotted #fff;
        border-radius: 50%;
        border-left: none;
        border-bottom: none;
        -webkit-transition: opacity 0.1s 0.4s;
        transition: opacity 0.1s 0.4s;
        opacity: 0;
    }

    .change_pass__submit.processing {
        width: 4rem;
        font-size: 0;
    }

        .change_pass__submit.processing:after {
            opacity: 1;
            -webkit-animation: rotate 0.5s 0.4s infinite linear;
            animation: rotate 0.5s 0.4s infinite linear;
        }

    .change_pass__submit.success {
        -webkit-transition: opacity 0.1s 0.3s, background-color 0.1s 0.3s, -webkit-transform 0.3s 0.1s ease-out;
        transition: opacity 0.1s 0.3s, background-color 0.1s 0.3s, -webkit-transform 0.3s 0.1s ease-out;
        transition: transform 0.3s 0.1s ease-out, opacity 0.1s 0.3s, background-color 0.1s 0.3s;
        transition: transform 0.3s 0.1s ease-out, opacity 0.1s 0.3s, background-color 0.1s 0.3s, -webkit-transform 0.3s 0.1s ease-out;
        -webkit-transform: scale(30);
        transform: scale(30);
        opacity: 0.9;
    }

        .change_pass__submit.success:after {
            -webkit-transition: opacity 0.1s 0s;
            transition: opacity 0.1s 0s;
            opacity: 0;
            -webkit-animation: none;
            animation: none;
        }

.change_pass__signup {
    font-size: 1.2rem;
    color: #ABA8AE;
}

    .change_pass__signup a {
        color: #fff;
        cursor: pointer;
    }

.change_pass__back-btn {
    position: absolute;
    top: 2rem;
    left: 1.5rem;
    width: 1.8rem;
    height: 1.7rem;
    cursor: pointer;
    z-index: 10;
}

    .change_pass__back-btn span, .change_pass__back-btn:before, .change_pass__back-btn:after {
        position: absolute;
        left: 0;
        width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, 0.6);
    }

    .change_pass__back-btn span {
        top: 0.8rem;
        width: 4em;
    }

    .change_pass__back-btn:before {
        content: "";
        top: 0;
        transform: rotate(-45deg)translateX(-2px)translateY(0px);
        -webkit-transform: rotate(-45deg)translateX(-2px)translateY(0px);
    }

    .change_pass__back-btn:after {
        content: "";
        bottom: 0;
        transform: translateX(-1px) translateY(-1px) rotate(45deg);
        -webkit-transform: translateX(-1px) translateY(-1px) rotate(45deg);
    }
/*Change Pass Ends*/
/*Forgot Pass Starts*/

.forgot_pass {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: none;
    background: -webkit-linear-gradient(top, rgba(146, 135, 187, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    background: linear-gradient(to bottom, rgba(146, 135, 187, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    -webkit-transition: opacity 0.1s, -webkit-transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25);
    transition: opacity 0.1s, -webkit-transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25);
    transition: opacity 0.1s, transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25);
    transition: opacity 0.1s, transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25), -webkit-transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

    .forgot_pass.active {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

.forgot_pass__check {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
}

/*Forgot Pass Starts*/

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    .forgot_pass__check {
        background: url(../../images/logo/mipmap-xxhdpi/ic_launcher.png) no-repeat center;
    }
}
/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
    .forgot_pass__check {
        background: url(../../images/logo/mipmap-xxxhdpi/ic_launcher.png) no-repeat center;
    }
}

.forgot_pass__form {
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    height: 50%;
    padding: 1.5rem 2.5rem;
    text-align: center;
}

.forgot_pass__row {
    height: 5rem;
    padding-top: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.forgot_pass__icon {
    margin-bottom: -0.4rem;
    margin-right: 0.5rem;
}

    .forgot_pass__icon.name path {
        stroke-dasharray: 73.50196075439453;
        stroke-dashoffset: 73.50196075439453;
        -webkit-animation: animatePath 2s 0.5s forwards;
        animation: animatePath 2s 0.5s forwards;
    }

    .forgot_pass__icon.pass path {
        stroke-dasharray: 92.10662841796875;
        stroke-dashoffset: 92.10662841796875;
        -webkit-animation: animatePath 2s 0.5s forwards;
        animation: animatePath 2s 0.5s forwards;
    }

.forgot_pass__input {
    display: inline-block;
    width: 22rem;
    height: 100%;
    padding-left: 1.5rem;
    font-size: 1.5rem;
    background: transparent;
    color: #FDFCFD;
}

.forgot_pass__submit {
    position: relative;
    width: 100%;
    height: 4rem;
    margin: 5rem 0 2.2rem;
    color: rgba(255, 255, 255, 0.8);
    background: #FF3366;
    font-size: 1.5rem;
    border-radius: 3rem;
    cursor: pointer;
    overflow: hidden;
    -webkit-transition: width 0.3s 0.15s, font-size 0.1s 0.15s;
    transition: width 0.3s 0.15s, font-size 0.1s 0.15s;
}

    .forgot_pass__submit:after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -1.5rem;
        margin-top: -1.5rem;
        width: 3rem;
        height: 3rem;
        border: 2px dotted #fff;
        border-radius: 50%;
        border-left: none;
        border-bottom: none;
        -webkit-transition: opacity 0.1s 0.4s;
        transition: opacity 0.1s 0.4s;
        opacity: 0;
    }

    .forgot_pass__submit.processing {
        width: 4rem;
        font-size: 0;
    }

        .forgot_pass__submit.processing:after {
            opacity: 1;
            -webkit-animation: rotate 0.5s 0.4s infinite linear;
            animation: rotate 0.5s 0.4s infinite linear;
        }

    .forgot_pass__submit.success {
        -webkit-transition: opacity 0.1s 0.3s, background-color 0.1s 0.3s, -webkit-transform 0.3s 0.1s ease-out;
        transition: opacity 0.1s 0.3s, background-color 0.1s 0.3s, -webkit-transform 0.3s 0.1s ease-out;
        transition: transform 0.3s 0.1s ease-out, opacity 0.1s 0.3s, background-color 0.1s 0.3s;
        transition: transform 0.3s 0.1s ease-out, opacity 0.1s 0.3s, background-color 0.1s 0.3s, -webkit-transform 0.3s 0.1s ease-out;
        -webkit-transform: scale(30);
        transform: scale(30);
        opacity: 0.9;
    }

        .forgot_pass__submit.success:after {
            -webkit-transition: opacity 0.1s 0s;
            transition: opacity 0.1s 0s;
            opacity: 0;
            -webkit-animation: none;
            animation: none;
        }

.forgot_pass__signup {
    font-size: 1.2rem;
    color: #ABA8AE;
}

    .forgot_pass__signup a {
        color: #fff;
        cursor: pointer;
    }

.forgot_pass__back-btn {
    position: absolute;
    top: 2rem;
    left: 1.5rem;
    width: 1.8rem;
    height: 1.7rem;
    cursor: pointer;
    z-index: 10;
}

    .forgot_pass__back-btn span, .forgot_pass__back-btn:before, .forgot_pass__back-btn:after {
        position: absolute;
        left: 0;
        width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, 0.6);
    }

    .forgot_pass__back-btn span {
        top: 0.8rem;
        width: 4em;
    }

    .forgot_pass__back-btn:before {
        content: "";
        top: 0;
        transform: rotate(-45deg)translateX(-2px)translateY(0px);
        -webkit-transform: rotate(-45deg)translateX(-2px)translateY(0px);
    }

    .forgot_pass__back-btn:after {
        content: "";
        bottom: 0;
        transform: translateX(-1px) translateY(-1px) rotate(45deg);
        -webkit-transform: translateX(-1px) translateY(-1px) rotate(45deg);
    }
/*Forgot Pass Ends*/

.help_doc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: none;
    background: -webkit-linear-gradient(top, rgba(146, 135, 187, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    background: linear-gradient(to bottom, rgba(146, 135, 187, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    -webkit-transition: opacity 0.1s, -webkit-transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25);
    transition: opacity 0.1s, -webkit-transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25);
    transition: opacity 0.1s, transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25);
    transition: opacity 0.1s, transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25), -webkit-transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

    .help_doc.active {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    .help_doc__check {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
}

    .help_doc__back-btn {
    position: absolute;
    top: 2rem;
    left: 1.5rem;
    width: 1.8rem;
    height: 1.7rem;
    cursor: pointer;
    z-index: 10;
}

    .help_doc__back-btn span, .help_doc__back-btn:before, .help_doc__back-btn:after {
        position: absolute;
        left: 0;
        width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, 0.6);
    }

    .help_doc__back-btn span {
        top: 0.8rem;
        width: 4em;
    }

    .help_doc__back-btn:before {
        content: "";
        top: 0;
        transform: rotate(-45deg)translateX(-2px)translateY(0px);
        -webkit-transform: rotate(-45deg)translateX(-2px)translateY(0px);
    }

    .help_doc__back-btn:after {
        content: "";
        bottom: 0;
        transform: translateX(-1px) translateY(-1px) rotate(45deg);
        -webkit-transform: translateX(-1px) translateY(-1px) rotate(45deg);
    }

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    .change_UserID__check {
        background: url(../../images/logo/mipmap-xxhdpi/ic_launcher.png) no-repeat center;
    }
}
/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
    .change_UserID__check {
        background: url(../../images/logo/mipmap-xxxhdpi/ic_launcher.png) no-repeat center;
    }
}

.change_UserID__form {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 50%;
    padding: 1.5rem 2.5rem;
    text-align: center;
}

.change_UserID__row {
    height: 5rem;
    padding-top: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.change_UserID__icon {
    margin-bottom: -0.4rem;
    margin-right: 0.5rem;
}

    .change_UserID__icon.name path {
        stroke-dasharray: 73.50196075439453;
        stroke-dashoffset: 73.50196075439453;
        -webkit-animation: animatePath 2s 0.5s forwards;
        animation: animatePath 2s 0.5s forwards;
    }

    .change_UserID__icon.pass path {
        stroke-dasharray: 92.10662841796875;
        stroke-dashoffset: 92.10662841796875;
        -webkit-animation: animatePath 2s 0.5s forwards;
        animation: animatePath 2s 0.5s forwards;
    }

.change_UserID__input {
    display: inline-block;
    width: 22rem;
    height: 100%;
    padding-left: 1.5rem;
    font-size: 1.5rem;
    background: transparent;
    color: #FDFCFD;
}

.change_UserID__submit {
    position: relative;
    width: 100%;
    height: 4rem;
    margin: 5rem 0 2.2rem;
    color: rgba(255, 255, 255, 0.8);
    background: #FF3366;
    font-size: 1.5rem;
    border-radius: 3rem;
    cursor: pointer;
    overflow: hidden;
    -webkit-transition: width 0.3s 0.15s, font-size 0.1s 0.15s;
    transition: width 0.3s 0.15s, font-size 0.1s 0.15s;
}

    .change_UserID__submit:after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -1.5rem;
        margin-top: -1.5rem;
        width: 3rem;
        height: 3rem;
        border: 2px dotted #fff;
        border-radius: 50%;
        border-left: none;
        border-bottom: none;
        -webkit-transition: opacity 0.1s 0.4s;
        transition: opacity 0.1s 0.4s;
        opacity: 0;
    }

    .change_UserID__submit.processing {
        width: 4rem;
        font-size: 0;
    }

        .change_UserID__submit.processing:after {
            opacity: 1;
            -webkit-animation: rotate 0.5s 0.4s infinite linear;
            animation: rotate 0.5s 0.4s infinite linear;
        }

    .change_UserID__submit.success {
        -webkit-transition: opacity 0.1s 0.3s, background-color 0.1s 0.3s, -webkit-transform 0.3s 0.1s ease-out;
        transition: opacity 0.1s 0.3s, background-color 0.1s 0.3s, -webkit-transform 0.3s 0.1s ease-out;
        transition: transform 0.3s 0.1s ease-out, opacity 0.1s 0.3s, background-color 0.1s 0.3s;
        transition: transform 0.3s 0.1s ease-out, opacity 0.1s 0.3s, background-color 0.1s 0.3s, -webkit-transform 0.3s 0.1s ease-out;
        -webkit-transform: scale(30);
        transform: scale(30);
        opacity: 0.9;
    }

        .change_UserID__submit.success:after {
            -webkit-transition: opacity 0.1s 0s;
            transition: opacity 0.1s 0s;
            opacity: 0;
            -webkit-animation: none;
            animation: none;
        }

.change_UserID__signup {
    font-size: 1.2rem;
    color: #ABA8AE;
}

    .change_UserID__signup a {
        color: #fff;
        cursor: pointer;
    }

.change_UserID__back-btn {
    position: absolute;
    top: 2rem;
    left: 1.5rem;
    width: 1.8rem;
    height: 1.7rem;
    cursor: pointer;
    z-index: 10;
}

    .change_UserID__back-btn span, .change_UserID__back-btn:before, .change_UserID__back-btn:after {
        position: absolute;
        left: 0;
        width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, 0.6);
    }

    .change_UserID__back-btn span {
        top: 0.8rem;
        width: 4em;
    }

    .change_UserID__back-btn:before {
        content: "";
        top: 0;
        transform: rotate(-45deg)translateX(-2px)translateY(0px);
        -webkit-transform: rotate(-45deg)translateX(-2px)translateY(0px);
    }

    .change_UserID__back-btn:after {
        content: "";
        bottom: 0;
        transform: translateX(-1px) translateY(-1px) rotate(45deg);
        -webkit-transform: translateX(-1px) translateY(-1px) rotate(45deg);
    }

/*Change UserID*/
.change_UserID {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: none;
    background: -webkit-linear-gradient(top, rgba(146, 135, 187, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    background: linear-gradient(to bottom, rgba(146, 135, 187, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    -webkit-transition: opacity 0.1s, -webkit-transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25);
    transition: opacity 0.1s, -webkit-transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25);
    transition: opacity 0.1s, transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25);
    transition: opacity 0.1s, transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25), -webkit-transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

    .change_UserID.active {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

.change_UserID__check {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
}
/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    .change_UserID__check {
        background: url(../../images/logo/mipmap-xxhdpi/ic_launcher.png) no-repeat center;
    }
}
/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
    .change_UserID__check {
        background: url(../../images/logo/mipmap-xxxhdpi/ic_launcher.png) no-repeat center;
    }
}

.change_UserID__form {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 50%;
    padding: 1.5rem 2.5rem;
    text-align: center;
}

.change_UserID__row {
    height: 5rem;
    padding-top: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.change_UserID__icon {
    margin-bottom: -0.4rem;
    margin-right: 0.5rem;
}

    .change_UserID__icon.name path {
        stroke-dasharray: 73.50196075439453;
        stroke-dashoffset: 73.50196075439453;
        -webkit-animation: animatePath 2s 0.5s forwards;
        animation: animatePath 2s 0.5s forwards;
    }

    .change_UserID__icon.pass path {
        stroke-dasharray: 92.10662841796875;
        stroke-dashoffset: 92.10662841796875;
        -webkit-animation: animatePath 2s 0.5s forwards;
        animation: animatePath 2s 0.5s forwards;
    }

.change_UserID__input {
    display: inline-block;
    width: 22rem;
    height: 100%;
    padding-left: 1.5rem;
    font-size: 1.5rem;
    background: transparent;
    color: #FDFCFD;
}

.change_UserID__submit {
    position: relative;
    width: 100%;
    height: 4rem;
    margin: 5rem 0 2.2rem;
    color: rgba(255, 255, 255, 0.8);
    background: #FF3366;
    font-size: 1.5rem;
    border-radius: 3rem;
    cursor: pointer;
    overflow: hidden;
    -webkit-transition: width 0.3s 0.15s, font-size 0.1s 0.15s;
    transition: width 0.3s 0.15s, font-size 0.1s 0.15s;
}

    .change_UserID__submit:after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -1.5rem;
        margin-top: -1.5rem;
        width: 3rem;
        height: 3rem;
        border: 2px dotted #fff;
        border-radius: 50%;
        border-left: none;
        border-bottom: none;
        -webkit-transition: opacity 0.1s 0.4s;
        transition: opacity 0.1s 0.4s;
        opacity: 0;
    }

    .change_UserID__submit.processing {
        width: 4rem;
        font-size: 0;
    }

        .change_UserID__submit.processing:after {
            opacity: 1;
            -webkit-animation: rotate 0.5s 0.4s infinite linear;
            animation: rotate 0.5s 0.4s infinite linear;
        }

    .change_UserID__submit.success {
        -webkit-transition: opacity 0.1s 0.3s, background-color 0.1s 0.3s, -webkit-transform 0.3s 0.1s ease-out;
        transition: opacity 0.1s 0.3s, background-color 0.1s 0.3s, -webkit-transform 0.3s 0.1s ease-out;
        transition: transform 0.3s 0.1s ease-out, opacity 0.1s 0.3s, background-color 0.1s 0.3s;
        transition: transform 0.3s 0.1s ease-out, opacity 0.1s 0.3s, background-color 0.1s 0.3s, -webkit-transform 0.3s 0.1s ease-out;
        -webkit-transform: scale(30);
        transform: scale(30);
        opacity: 0.9;
    }

        .change_UserID__submit.success:after {
            -webkit-transition: opacity 0.1s 0s;
            transition: opacity 0.1s 0s;
            opacity: 0;
            -webkit-animation: none;
            animation: none;
        }

.change_UserID__signup {
    font-size: 1.2rem;
    color: #ABA8AE;
}

    .change_UserID__signup a {
        color: #fff;
        cursor: pointer;
    }

.change_UserID__back-btn {
    position: absolute;
    top: 2rem;
    left: 1.5rem;
    width: 1.8rem;
    height: 1.7rem;
    cursor: pointer;
    z-index: 10;
}

    .change_UserID__back-btn span, .change_UserID__back-btn:before, .change_UserID__back-btn:after {
        position: absolute;
        left: 0;
        width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, 0.6);
    }

    .change_UserID__back-btn span {
        top: 0.8rem;
        width: 4em;
    }

    .change_UserID__back-btn:before {
        content: "";
        top: 0;
        transform: rotate(-45deg)translateX(-2px)translateY(0px);
        -webkit-transform: rotate(-45deg)translateX(-2px)translateY(0px);
    }

    .change_UserID__back-btn:after {
        content: "";
        bottom: 0;
        transform: translateX(-1px) translateY(-1px) rotate(45deg);
        -webkit-transform: translateX(-1px) translateY(-1px) rotate(45deg);
    }
/*Change UserID Ends*/

.app {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: none;
    -webkit-transition: opacity 0.1s, -webkit-transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25);
    transition: opacity 0.1s, -webkit-transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25);
    transition: opacity 0.1s, transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25);
    transition: opacity 0.1s, transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25), -webkit-transform 0.3s cubic-bezier(0.68, -0.45, 0.465, 1.25);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

    .app.active {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

        .app.active .app__user-photo {
            -webkit-transform: scale(1);
            transform: scale(1);
        }

        .app.active .app__meeting {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 1;
        }

        .app.active .app__logout {
            -webkit-transform: scale(1);
            transform: scale(1);
        }

.app__top {
    position: relative;
    height: 28rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 6rem 1.5rem 2rem;
    text-align: center;
}

.app__bot {
    position: relative;
    height: 25rem;
    background: #fff;
}

.app__menu-btn {
    position: absolute;
    top: 2rem;
    left: 1.5rem;
    width: 1.8rem;
    height: 1.7rem;
    cursor: pointer;
}

    .app__menu-btn span, .app__menu-btn:before, .app__menu-btn:after {
        position: absolute;
        left: 0;
        width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, 0.6);
    }

    .app__menu-btn span {
        top: 0.8rem;
    }

    .app__menu-btn:before {
        content: "";
        top: 0;
    }

    .app__menu-btn:after {
        content: "";
        bottom: 0;
    }

.app__icon {
    position: absolute;
    top: 2rem;
}

    .app__icon.search {
        right: 1.5rem;
        stroke-dasharray: 61.847137451171875;
        stroke-dashoffset: 61.847137451171875;
        -webkit-animation: animatePath 0.5s 0.5s forwards;
        animation: animatePath 0.5s 0.5s forwards;
    }

.app__hello {
    font-size: 2.2rem;
    color: #fff;
    font-weight: normal;
    margin-bottom: 3rem;
}

.app__user {
    position: relative;
    display: inline-block;
    width: 9rem;
    height: 9rem;
    margin-bottom: 3rem;
}

.app__user-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-transition: -webkit-transform 0.3s 0.2s cubic-bezier(0.62, 0.35, 0.56, 1.55);
    transition: -webkit-transform 0.3s 0.2s cubic-bezier(0.62, 0.35, 0.56, 1.55);
    transition: transform 0.3s 0.2s cubic-bezier(0.62, 0.35, 0.56, 1.55);
    transition: transform 0.3s 0.2s cubic-bezier(0.62, 0.35, 0.56, 1.55), -webkit-transform 0.3s 0.2s cubic-bezier(0.62, 0.35, 0.56, 1.55);
    -webkit-transform: scale(0);
    transform: scale(0);
}

.app__user-notif {
    position: absolute;
    top: 0;
    right: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    line-height: 3rem;
    text-align: center;
    background: #50D2C2;
    color: #fff;
    font-size: 1.5rem;
}

.app__month:after {
    content: "";
    display: table;
    clear: both;
}

.app__month-name {
    display: inline-block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    text-transform: uppercase;
}

.app__month-btn {
    display: inline-block;
    width: 1.2rem;
    height: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-left: none;
    border-bottom: none;
    cursor: pointer;
}

    .app__month-btn.left {
        float: left;
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }

    .app__month-btn.right {
        float: right;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

.app__days {
    height: 7rem;
    padding: 1.5rem 2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.app__day {
    width: 14%;
    text-align: center;
    font-size: 1.2rem;
}

    .app__day.weekday {
        color: #919197;
        text-transform: uppercase;
    }

    .app__day.date {
        font-size: 1.2rem;
        font-weight: bold;
        color: #3C3C43;
    }

.app__meeting {
    position: relative;
    height: 6rem;
    border-top: 1px solid #EEEEEF;
    padding: 1rem 2rem 1rem 7.5rem;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
}

    .app__meeting:nth-child(1) {
        -webkit-transition-delay: 0.2s;
        transition-delay: 0.2s;
    }

    .app__meeting:nth-child(2) {
        -webkit-transition-delay: 0.3s;
        transition-delay: 0.3s;
    }

    .app__meeting:nth-child(3) {
        -webkit-transition-delay: 0.4s;
        transition-delay: 0.4s;
    }

    .app__meeting:nth-child(4) {
        -webkit-transition-delay: 0.5s;
        transition-delay: 0.5s;
    }

    .app__meeting:nth-child(5) {
        -webkit-transition-delay: 0.6s;
        transition-delay: 0.6s;
    }

.app__meeting-photo {
    position: absolute;
    left: 2rem;
    top: 1rem;
    width: 4rem;
    height: 4rem;
}

.app__meeting-name {
    color: #000;
    font-size: 1.3rem;
}

.app__meeting-info {
    color: #949498;
    font-size: 1.1rem;
}

.app__logout {
    position: absolute;
    bottom: 3.3rem;
    right: 3.3rem;
    width: 4.6rem;
    height: 4.6rem;
    margin-right: -2.3rem;
    margin-bottom: -2.3rem;
    background: #FC3768;
    color: #fff;
    font-size: 2rem;
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: bottom 0.4s 0.1s, right 0.4s 0.1s, opacity 0.1s 0.7s, background-color 0.1s 0.7s, -webkit-transform 0.4s 0.4s;
    transition: bottom 0.4s 0.1s, right 0.4s 0.1s, opacity 0.1s 0.7s, background-color 0.1s 0.7s, -webkit-transform 0.4s 0.4s;
    transition: bottom 0.4s 0.1s, right 0.4s 0.1s, transform 0.4s 0.4s, opacity 0.1s 0.7s, background-color 0.1s 0.7s;
    transition: bottom 0.4s 0.1s, right 0.4s 0.1s, transform 0.4s 0.4s, opacity 0.1s 0.7s, background-color 0.1s 0.7s, -webkit-transform 0.4s 0.4s;
    -webkit-transform: scale(0);
    transform: scale(0);
}

    .app__logout.clicked {
        bottom: 50%;
        right: 50%;
        -webkit-transform: scale(30) !important;
        transform: scale(30) !important;
        opacity: 0.9;
    }

        .app__logout.clicked svg {
            opacity: 0;
        }

.app__logout-icon {
    position: absolute;
    width: 3rem;
    height: 3rem;
    top: 50%;
    left: 50%;
    margin-left: -1.5rem;
    margin-top: -1.5rem;
    -webkit-transition: opacity 0.1s;
    transition: opacity 0.1s;
}

    .app__logout-icon path {
        stroke-width: 4px;
        stroke-dasharray: 64.36235046386719;
        stroke-dashoffset: 64.36235046386719;
        -webkit-animation: animatePath 0.5s 0.5s forwards;
        animation: animatePath 0.5s 0.5s forwards;
    }

.ripple {
    position: absolute;
    width: 15rem;
    height: 15rem;
    margin-left: -7.5rem;
    margin-top: -7.5rem;
    background: rgba(0, 0, 0, 0.4);
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-animation: animRipple 0.4s;
    animation: animRipple 0.4s;
    border-radius: 50%;
}

@-webkit-keyframes animRipple {
    to {
        -webkit-transform: scale(3.5);
        transform: scale(3.5);
        opacity: 0;
    }
}

@keyframes animRipple {
    to {
        -webkit-transform: scale(3.5);
        transform: scale(3.5);
        opacity: 0;
    }
}

@-webkit-keyframes rotate {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes animatePath {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes animatePath {
    to {
        stroke-dashoffset: 0;
    }
}
