﻿input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: black !important;
}

.hide {
    display: none;
}

#pnlSupport {
    font-size: 1.4rem;
    color: #FFFFFF;
}

*, *:before, *:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body, form#form1 {
    font-size: 62.5%;
    height: 100%;
    overflow: hidden;
}


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/TTLogin.jpg");
    background-size: cover;
    overflow: auto;
    font-family: Arial, Helvetica, sans-serif;
}

.cen_cont {
    position: absolute;
    top: 40%;
    left: 50%;
    margin-left: -30rem;
    margin-top: -21.5rem;
    width: 60rem;
    height: 41rem;
    overflow: hidden;
}

.cen_cont_lrg {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -25rem;
    margin-top: -21.5rem;
    width: 49.9rem;
    height: 43.4rem;
    overflow: hidden;
}

.login {
    position: relative;
    height: 100%;
    border-radius: 15px 50px;
}

.login_lrg {
    position: relative;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1);
}

.login.inactive {
    opacity: 0;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.login__check {
    position: absolute;
    top: 5rem;
    left: 4.5rem;
    width: 6rem;
    height: 10rem;
    background: url("/images/TTLogoMini.png") no-repeat;
    
}


.login__ver {
    position: absolute;
    top: 5rem;
    left: 12.5rem;
    width: 40rem;
    height: 6rem;
    font-size: 6rem;
    color: white;
}

.login__email {
    position: absolute;
    height: 5rem;
    padding-top: 1rem;
    padding-left: 0rem;
    line-height: 1rem;
    font-size: 1.5rem;
    color: black;
}

.login__form {
    position: absolute;
    top: 34%;
    left: 0;
    width: 100%;
    height: 50%;
    padding: 1.5rem 2.5rem;
    text-align: center;
}

.login__row {
    height: 5rem;
    padding-top: 0.5rem;
    padding-left: 1rem;
    line-height: 1em;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    background: white;
 
}

.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: 100%;
    padding-left: 1.5rem;
    font-size: 1.5rem;
    background: transparent;
    color:#000;
}

.login__submit {
    position: relative;
    width: 25%;
    height: 4rem;
    margin: 5rem 0 2.2rem;
    color: white;
    /*background: #B81D23;*/
    background: deepskyblue;
    cursor: pointer;
    overflow: hidden;
    border-radius: 15px;
    -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;
    font-size: 1.5rem;
}

    .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;
        }


.login__signup {
    font-size: 1.2rem;
    color: #ABA8AE;
}

    .login__signup a {
        color: #fff;
        cursor: pointer;
    }

@-webkit-keyframes animatePath {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes animatePath {
    to {
        stroke-dashoffset: 0;
    }
}

#gvCustomers tr {
    position: relative;
    height: 3.2rem;
    border-top: 1px solid #EEEEEF;
    background: #ffffff;
    color: #000000;
}

    #gvCustomers tr.pgr, #gvCustomers tr.pgr tr {
        background: transparent;
    }

#gvCustomers th {
    text-align: left;
    padding-left: 0.75rem;
}

#gvCustomers td {
    padding-left: 0.75rem;
}

#gvCustomers table td {
    padding-left: 0;
}

    #gvCustomers table td span, #gvCustomers table td a {
        padding-right: 0.75rem;
        color: #FFFFFF;
    }

.search {
    padding-top: 1rem;
    padding-left: 0.75rem;
}

    .search img {
        position: absolute;
        top: 1.1rem;
        right: 10.5rem;
    }

#txtSearch {
    display: inline-block;
    width: 30rem;
    height: 2.5rem;
    padding-left: 1.5rem;
    font-size: 1.5rem;
    background: transparent;
    color: #FDFCFD;
    border-bottom: 1px solid #ffffff;
}

.hr {
    margin: 1.0rem 0 0 0;
}

.rel {
    position: relative;
}

.btn {
    cursor: pointer;
}

h2 {
    margin-bottom: 20px;
}

p {
    margin-bottom: 13px;
    font-weight: normal;
}
