@IMPORT url("util.css");
@IMPORT url("../../css/ttJQuery-ui.css");

/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
    font-family: Poppins-Regular;
    src: url('../fonts/poppins/Poppins-Regular.ttf'); 
}

@font-face {
    font-family: Poppins-Medium;
    src: url('../fonts/poppins/Poppins-Medium.ttf'); 
}

@font-face {
    font-family: Poppins-Bold;
    src: url('../fonts/poppins/Poppins-Bold.ttf'); 
}

@font-face {
    font-family: Poppins-SemiBold;
    src: url('../fonts/poppins/Poppins-SemiBold.ttf'); 
}

@font-face {
    font-family: Montserrat-Bold;
    src: url('../fonts/montserrat/Montserrat-Bold.ttf'); 
}

body {
    font: 1em/150% Arial, Helvetica, sans-serif;
}
a {
    font-family: Poppins-Regular;
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    margin: 0px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
}
a:focus {
    outline: none !important;
}

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

h1,h2,h3,h4,h5,h6 {
    margin: 0px;
}

p {
    font-family: Poppins-Regular;
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    margin: 0px;
}

ul, li {
    margin: 0px;
    list-style-type: none;
}


/*---------------------------------------------*/
input {
    outline: none;
    border: none;
}

textarea {
    outline: none;
    border: none;
}

textarea:focus, input:focus {
    border-color: transparent !important;
}

input::-webkit-input-placeholder { color: #999999;}
input:-moz-placeholder { color: #999999;}
input::-moz-placeholder { color: #999999;}
input:-ms-input-placeholder { color: #999999;}

textarea::-webkit-input-placeholder { color: #999999;}
textarea:-moz-placeholder { color: #999999;}
textarea::-moz-placeholder { color: #999999;}
textarea:-ms-input-placeholder { color: #999999;}

/*---------------------------------------------*/
button {
    outline: none !important;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}

iframe {
    border: none !important;
}

/*//////////////////////////////////////////////////////////////////
[ utility ]*/

/*==================================================================
[ Text ]*/
.txt1 {
    font-family: Poppins-Regular;
    font-size: 13px;
    line-height: 1.4;
    color: #999999;
}

.txt2 {
    font-family: Poppins-Regular;
    font-size: 13px;
    line-height: 1.4;
    color: #00ad5f;
}

.txt3 {
    font-family: Poppins-Regular;
    font-size: 15px;
    line-height: 1.4;
    color: #00ad5f;
    text-transform: uppercase;
}

/*==================================================================
[ Size ]*/
.size1 {
    width: 350px;
    max-width: 100%;
}

.size2 {
    width: calc(100% - 43px);
}

table{
    margin: 0 auto;
    border: 1px solid #fff;
    position: relative;
    min-width: 300px;
}

.login100-form {
    width: 80%;
}

.login100-form-title {
    font-family: Poppins-Regular;
    font-size: 20px;
    color: #555555;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;

    width: 100%;
    display: block;
}

.ativaAlerta {
    background-image: url(../imagens/menu_a_hover.gif);
    background-position: bottom;
    background-repeat: repeat;
    font-family: Poppins-Regular;
    font-size: 22px;
    font-style: oblique;
}

/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
    width: 95%;
    position: relative;
    border: 1px solid #e6e6e6;
}

.rs-wrap-input100{
    width: 95%;
    background-color: #ffffff;
}

.input100 {
    display: block;
    background: transparent;
    font-family: Poppins-Regular;
    font-size: 18px;
    color: #666666;
    line-height: 1.2;
    padding: 0 25px;
    max-height: 55px;
    min-height: 55px;
}

/*---------------------------------------------*/

.focus-input100 {
    position: absolute;
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    top: -1px;
    left: -1px;
    pointer-events: none;
    border: 1px solid #00ad5f;

    visibility: hidden;
    opacity: 0;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;

    -webkit-transform: scaleX(1.1) scaleY(1.3);
    -moz-transform: scaleX(1.1) scaleY(1.3);
    -ms-transform: scaleX(1.1) scaleY(1.3);
    -o-transform: scaleX(1.1) scaleY(1.3);
    transform: scaleX(1.1) scaleY(1.3);
}

.input100:focus + .focus-input100 {
    visibility: visible;
    opacity: 1;

    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
    width: 95%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.login100-form-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 95%;
    height: 50px;
    border-radius: 3px;

    font-family: Montserrat-Bold;
    font-size: 12px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.login100-form-btn:hover {
    background: #333333;
}

.green{
    background: #00ad5f;
}

.blue{
    background: #4285F4;
}

.red{
    background: #EA4335;
}

.m-t-10{
    margin-top:10px;
}

#ttrackpage {
    padding-top: 20px;
    margin: 5px auto;
    min-height: 530px;
}
#ttrackheader {
    height: 0px;
}
#ttracklogo {
    width: 47%;
    float: left;
    background-image:url("images/bg-01.jpg");
    background-size: cover; -ms-background-size: cover; -o-background-size: cover; -moz-background-size: cover; -webkit-background-size: cover;
}
#ttrackform {
    width: 50%;
    float: right;
}
#footer {
    clear: both;
}
/* border & guideline (you can ignore these) */
#ttrackform {
    background: #fff;
}
#ttrackheader, #ttrackpage, #ttracklogo, #ttrackform, #footer {
    border: solid 0px #ccc;
}

#containers .painelserv {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 5px;
}

#containers #servmask {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    display: none;
    z-index: 9000;
}

#containers #servtrack {
    position: absolute;
    top: 0;
    width: 100%;
}

#containers .sair {
    position: relative;
    float: right;
    margin-top: 10px;
    margin-right: 90px;
    background: url('../imagens/icons/sair.jpeg') no-repeat center;
    width: 52px;
    height: 52px;
    color: #EA7D16;
    z-index: 9001;
}


/*
    #Inicio de loding
*/
.loading .wrapper {
    /* Size and position */
    font-size: 25px; /* 1em */
    width: 8em;
    height: 8em;
    margin: 100px auto;
    position: relative;

    /* Styles */
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1em dashed rgba(138,189,195,0.5);
    box-shadow: 
        inset 0 0 2em rgba(255,255,255,0.3),
        0 0 0 0.7em rgba(255,255,255,0.3);
    animation: rota 3.5s linear infinite;

    /* Font styles */
    font-family: 'Racing Sans One', sans-serif;

    color: #444;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 .04em rgba(255,255,255,0.9);
    line-height: 6em;
}

.loading .wrapper:before,
.loading .wrapper:after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: inherit;
    box-shadow: inset 0 0 2em rgba(255,255,255,0.3);
    border: 1em dashed;
}

.loading .wrapper:before {
    border-color: rgba(138,189,195,0.2);
    top: 0; right: 0; bottom: 0; left: 0;
}

.loading .wrapper:after {
    border-color: rgba(138,189,195,0.4);
    top: 1em; right: 1em; bottom: 1em; left: 1em; 
}

.loading .wrapper .inner {
    width: 100%;
    height: 100%;
    animation: rota 3.5s linear reverse infinite;
}

.loading .wrapper span {
    display: inline-block;
    animation: placeholder 1.5s ease-out infinite;
}

.loading .wrapper span:nth-child(1)  { animation-name: loading-1;  }
.loading .wrapper span:nth-child(2)  { animation-name: loading-2;  }
.loading .wrapper span:nth-child(3)  { animation-name: loading-3;  }
.loading .wrapper span:nth-child(4)  { animation-name: loading-4;  }
.loading .wrapper span:nth-child(5)  { animation-name: loading-5;  }
.loading .wrapper span:nth-child(6)  { animation-name: loading-6;  }
.loading .wrapper span:nth-child(7)  { animation-name: loading-7;  }

@keyframes rota {
    to { transform: rotate(360deg); }
}

@keyframes loading-1 {
    14.28% { opacity: 0.3; }
}

@keyframes loading-2 {
    28.57% { opacity: 0.3; }
}

@keyframes loading-3 {
    42.86% { opacity: 0.3; }
}

@keyframes loading-4 {
    57.14% { opacity: 0.3; }
}

@keyframes loading-5 {
    71.43% { opacity: 0.3; }
}

@keyframes loading-6 {
    85.71% { opacity: 0.3; }
}

@keyframes loading-7 {
    100% { opacity: 0.3; }
}

/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {
    .login100-form {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;

        padding: 10px 60px 40px 60px;
    }  
}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {
    .login100-form {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;

        padding: 10px 60px 40px 60px;
    }  
}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {
    .login100-form {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
    }  
}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .login100-form {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
    }  
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {
    #ttrackheader {
        display: none;
    }

    #ttrackform {
        width: auto;
        float: none;
    }

    #ttracklogo {
        display: none;
    }

    #ttrackpage,
    .bglogo,
    .input100,
    .login100-form,
    .wrap-input100,
    .container-login100-form-btn,
    .rs1-wrap-input100,
    .rs2-wrap-input100 {
        width: 98%;
        max-width:350px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
    }
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (max-width: 480px) {
    #ttrackheader {
        display: none;
    }

    #ttrackform {
        width: auto;
        float: none;
    }

    #ttracklogo {
        display: none;
    }

    #ttrackpage,
    .bglogo,
    .input100,
    .login100-form,
    .wrap-input100,
    .container-login100-form-btn,
    .rs1-wrap-input100,
    .rs2-wrap-input100 {
        width: 98%;
        max-width:350px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
    }
}

@media (max-width: 390px) {	
    #ttrackheader {
        display: none;
    }

    #ttrackform {
        width: auto;
        float: none;
    }

    #ttracklogo {
        display: none;
    }

    #ttrackpage,
    .bglogo,
    .input100,
    .login100-form,
    .wrap-input100,
    .container-login100-form-btn,
    .rs1-wrap-input100,
    .rs2-wrap-input100 {
        width: 93%;
        max-width:350px;
    }	
}

.download_button {
    margin: 20px;
    text-decoration: none;
    display: block;
    width: 320px;
    height: 110px;
    padding: 1px;
    border: 1px solid #8ebd17;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    color: #2a3807;
    text-shadow: 0 0 15px #7da616;
    font-size: 16px;
}
.download_button .filename {
    font-size: 20px;
    margin: 5px 10px 0;
}
.download_button .filesize {
    margin: 5px 10px 0;      
}

.download_button .downloads {
    margin: 5px 20px 0;    
}
.download_button .downloadicon{
    position: relative;
    float: right;
    margin: 10px;
    width: 140px;
    height: 90px;
}
.download_button .cloud{
    width: 140px;
    height: 50px;
    background-color: #fff;   
    border-radius: 30px;
    position: absolute; 
    top:40px;
}
.download_button .cloud:before{
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    top: -30px;
    left: 70px;
    background-color: #fff;   
    border-radius: 50%;
    position: absolute;
    box-shadow: -40px 0 0 10px #fff;  
}
.download_button .cloud .arrowdown {
    background: #aedb3d;
    position: absolute;
    top: -10px;
    left: 60px;    
    width: 10px;
    height: 40px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;

    -webkit-animation: movedown 2s infinite linear;
    -moz-animation: movedown 2s infinite linear;
    -o-animation: movedown 2s infinite linear;
    animation: movedown 2s infinite linear;
}
.download_button .cloud .arrowdown:before,
.download_button .cloud .arrowdown:after {
    top:14px;
    content: "";
    position: absolute;
    background: #aedb3d;
    position: absolute;
    width: 10px;
    height: 25px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.download_button .cloud .arrowdown:before {
    -webkit-transform:rotate(45deg);
    -webkit-transform-origin: 70% 90%;
}
.download_button .cloud .arrowdown:after {
    -webkit-transform:rotate(-45deg);
    -webkit-transform-origin: 30% 90%;
}
.download_button{
    background: #aedb3d; /* Old browsers */
    background: -moz-linear-gradient(top,  #aedb3d 0%, #9fcb31 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#aedb3d), color-stop(100%,#9fcb31)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #aedb3d 0%,#9fcb31 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #aedb3d 0%,#9fcb31 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #aedb3d 0%,#9fcb31 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #aedb3d 0%,#9fcb31 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#aedb3d', endColorstr='#9fcb31',GradientType=0 ); /* IE6-9 */  
}

@-webkit-keyframes movedown {
  0% {
    -webkit-transform: translateY(-1.5em);
    opacity:0;
  }
  50% {
    -webkit-transform: translateY(0);
    opacity:1;
  }
  100% {
    -webkit-transform: translateY(1.5em);
    opacity:0;
  }
}
@-moz-keyframes movedown {
  0% {
    transform: translateY(-1.5em);
    opacity:0;
  }
  50% {
    transform: translateY(0);
    opacity:1;
  }
  100% {
    transform: translateY(1.5em);
    opacity:0;
  }
}
@-o-keyframes movedown {
  0% {
    -o-transform: translateY(-1.5em);
    opacity:0;
  }
  50% {
    -o-transform: translateY(0);
    opacity:1;
  }
  100% {
    -o-transform: translateY(1.5em);
    opacity:0;
  }
}
@keyframes movedown {
  0% {
    transform: translateY(-1.5em);
    opacity:0;
  }
  50% {
    transform: translateY(0);
    opacity:1;
  }
  100% {
    transform: translateY(1.5em);
    opacity:0;
  }
}

.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 9010;
}

.modal-content {
    position: absolute;
    margin : 0 auto;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 1rem 1.5rem;
    width: 24rem;
    border-radius: 0.5rem;
}

.close-button {
    float: right;
    width: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.25rem;
    background-color: lightgray;
}

.close-button:hover {
    background-color: darkgray;
}

.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}