html,
body,
header,
section,
nav,
canvas,
video,
div,
span,
ul,
li,
a,
article,
h1,
p {
    border: none;
    outline: none;
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: fontLight, Helvetica, Arial;
    font-size: 12px;
    box-sizing: border-box;
}

html, body {
    position: absolute;
    height: 100%;
    background: #f1f1f1;
    min-width: 100%;
}

body {
    padding-top: 120px; /* MENU POSITION FIXED */
}

body.no-header {
    padding-top: 0;
}

    /* FONTS */
    @font-face {
        font-family: fontLight;
        src: url('../fonts/Montserrat-Light.otf');
    }

@font-face {
    font-family: fontMedium;
    src: url('../fonts/Montserrat-Medium.otf');
}

@font-face {
    font-family: fontBold;
    src: url('../fonts/Montserrat-Bold.otf');
}

@font-face {
    font-family: fontExtraBold;
    src: url('../fonts/Montserrat-ExtraBold.otf');
}

.txt-aviso {
    color: #e74c3c;
    text-align: center;
    width: 100%;
}

.lbl-text {
    color: white;
    font-size: 15px;
    top: -10px;
    position: relative;
    display: block;
    text-align: center;
}


.lbl-select {
    width: 100%;
    height: 40px;
    border-radius: 30px;
    padding-left: 14px;
    background: #142f72;
    color: #fff;
    outline: none;
    position: relative;
}

.full-bg-img {
    position: fixed;
    min-width: 100vw;
    min-height: 100vh;
    top: 50%;
    left: 50%;
    right: 0;
    margin: 0 auto;
    -webkit-transform: translate3d(-50%,-35%,0);
    -moz-transform: translate3d(-50%,-35%,0);
    -o-transform: translate3d(-50%,-35%,0);
    transform: translate3d(-50%,-35%,0);
}

.container{
    position:relative;
    width:90%;
    max-width:1200px;
    margin:0 auto;
}

.login-holder{
    position:relative;
    width:500px;
    margin:10px auto;
}

.login-holder .logo {
    position: relative;
    top: -50%;
    max-width:70%;
    display: block;
    margin: 0 auto;
}

.login-form-holder {
    position: relative;
    width: 420px;
    height: auto;
    padding: 20px 60px 40px 60px;
    border: 2px solid #f05922;
    border-radius: 15px;
    background: #111111;
    margin: 4em auto 0 auto;
    opacity: 0.9;
}

    .login-form-holder h1 {
        font-family: fontMedium;
        font-size: 1.8em;
        text-align: center;
        color: #f05922;
        margin: 20px 0 0 0;
    }


.radios-holder{
    position:relative;
    width:100%;
    display:flex;
    justify-content:space-between;
    margin:32px 0 0 0;
}

.radios-holder .radio-item {
    position: relative;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.radios-holder label{
    font-size:1.4em;
    color:#fff;
}

.input-holder{
    position:relative;
    width:100%;
    height:42px;
    border-bottom:1px solid #fff;
    margin:32px auto 0 auto;
}

.input-holder .icon{
    position:absolute;
    width:22px;
    top:10px;
    left:0;
}

.input-holder input{
    position: absolute;
    width: calc(100% - 35px);
    padding-left: 35px;
    height: 96%;
    background: transparent;
    border: none;
    color: #fff;
    font-size:1.4em;
    outline:none;
}

.input-holder input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #fff;
}

.input-holder input::-moz-placeholder { /* Firefox 19+ */
    color: #fff;
}

.input-holder input:-ms-input-placeholder { /* IE 10+ */
    color: #fff;
}

.input-holder input:-moz-placeholder { /* Firefox 18- */
    color: #fff;
}

.btn-default {
    position: relative;
    width: 100%;
    height: 42px;
    line-height:42px;
    border-radius: 25px;
    background: #f05922;
    margin: 32px auto 0 auto;
    text-align: center;
    cursor: pointer;
    transform: scale(1.0);
    transition: transform 0.3s ease;
}    
.btn-default:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.btn-default span{
    font-family:fontMedium;
    font-size:1.6em;
    color:#111111;
}

.btn-refresh, .btn-small {
    margin: 0 auto 0 10px;
    border: none;
    color: #ffffff;
    font-family: inherit;
    height: 30px;
    line-height: 30px;
    padding: 0 20px;
    outline: none;
}

.btn-large {
    margin: 0 auto;
    border: none;
    color: #ffffff;
    font-family: inherit;
    height: 44px;
    line-height: 30px;
    padding: 0 20px;
    outline: none;
    width: 330px;
    font-size: 20px;
}

header {
    position: fixed;
    width: 100%;
    height: 120px;
    background: #111111;
    z-index: 3;
    top: 0;
}

    header .container {
        position: relative;
        min-width: 98vw;
        height: 120px;
        margin-left: 0;
    }

header .img-holder{
    position:relative;
    width:240px;
    height:120px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#111111;
    float:left;
}

header .img-holder img{
    width:180px;
}

.header-stuff-holder {
    position: relative;
    width: calc(100vw - 300px);
    height: 120px;
    display: flex;
    align-items: center;
    margin:0 auto;
}

header .container .title {
    position: relative;
    font-family: fontMedium;
    left: -64px;
    right: 0;
    text-align: center;
    font-size: 1.5em;
    color: #f05922;
    letter-spacing: 2px;
    width: 400px;
    margin: 0 auto;
}

.user-actions-holder{
    position:relative;
    right:0;
}

.btn-agenda {
    position: relative;
    width: 205px;
    height: 30px;
    margin: 0 0 13px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 28px;
    border: 1px solid #f05922;
    border-radius: 25px;
    color: #fff;
    font-size: 1.2em;
    text-align: center;
    transition: background 0.3s ease;
}

.btn-agenda img{
    width:18px;
    margin:0 0 0 20px;
    transition:filter 0.3s ease;
}

.btn-agenda:hover > img {
    filter:saturate(0) brightness(3);
}

.btn-agenda:hover{
    background:#f05922;
}

.user-info{
    position:relative;
    width:223px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.user-info p{
    color:#fff;
}

.user-login {
    width: 133px;
    /*text-align: right;*/
    overflow: hidden;
    text-transform: uppercase;
}

.btn-icon-default{
    position:relative;
    padding:0.6em 2em;
    border:1px solid #f05922;
    border-radius:15px;
    background:#111111;
    display:flex;
    justify-content:space-around;
    align-items:center;
    transition:background 0.2s ease-out;
}

.btn-icon-default span{
    color:#fff;
    margin:0 0 0 0.6em;
    transition:color 0.2s ease-out;
}

.btn-icon-default img{
    transition:transform 0.2s ease-out;
}

.btn-icon-default:hover{
    background:#f05922;
}

.btn-icon-default:hover > img{
    filter:saturate(0) brightness(3);
}

.btn-icon-default input{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    outline:none;
    cursor:pointer;
}

.page-title{
    position:relative;
    font-family:fontMedium;
    font-size:2.6em;
    color:#f05922;
    text-align:center;
    margin:40px 0 0 0;
    letter-spacing:4px;
}

.buttons-holder{
    position:relative;
    width:100%;
    display:flex;
    justify-content:space-around;
    margin:45px 0 0 0;
}

.btn-action{
    position:relative;
    width:360px;
    height:106px;
    border-radius:25px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#fff;
    box-shadow:0 2px 2px 0 rgba(0,0,0,0.05);
    transition:all 0.3s ease;
}

.btn-action:hover{
    transform:scale(1.1);
    box-shadow:0 4px 10px 0 rgba(0,0,0,0.1);
}

.btn-action p{
    font-family:fontMedium;
    font-size:1.8em;
    color:#111111;
    margin:0 0 0 20px;
}

.main-table{
    position:relative;
    width:100%;
    margin:45px 0 30px 0;
    border-collapse:collapse;
    padding:30px;
    border-radius:25px;
}

.main-table thead tr th,
.main-table tbody tr td{
    text-align:left;
    height:44px;
    padding-left:10px;
}

.main-table thead tr th,
.main-table thead tr th a {
    font-size: 18px;
    color: #111111;
}

.main-table tbody tr td{
    position:relative;
    font-size:1.4em;
    color:#7c7c94;
}

.main-table.striped tbody tr:nth-child(odd){
    background:#eee;
}

.main-table thead tr th input{
    position:relative;
    height:28px;
    padding-left:15px;
    left:-17px;
    border:1px solid #ccc;
    border-radius:15px;
    outline:none;
    transition:border-color 0.3s ease;
}

#filtroLote {
    width: 77px;
    left: -15px;
}

.main-table thead tr th input:focus {
    border-color: #111111;
}

.btn-go {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 11px;
    right: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.input-invisible{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    outline: none;
    cursor: pointer;
}

.lote-holder{
    position:relative;
    width:100%;
    height:354px;
    margin:75px auto 40px auto;
    background:#fff;
    border-radius:25px;
    box-shadow:0 2px 2px 0 rgba(0,0,0,0.05);
    transition:all 0.3s ease;
}

.lote-holder:hover{
    box-shadow: 0 4px 10px 0 rgba(155, 11, 124,0.3);
    transform: translateY(-5px);
}

.integrado-nome {
    font-family: fontMedium;
    text-transform: uppercase;
    color: #111111;
    font-size: 2.5em;
    letter-spacing: 3px;
    text-align: center;
}

.graficos {
    margin: 30px 0;
}

.lote-title {
    position: absolute;
    width: 210px;
    font-family: fontMedium;
    text-align: center;
    font-size: 1.6em;
    color: #fff;
    background: #f05922;
    padding: 0.8em 0;
    border-radius: 25px;
    left: 0;
    right: 0;
    margin: -28px auto;
}

.lote-title.warning {
    margin: 0 auto;
}

.silo-holder {
    position:relative;
    width:260px;
    height:290px;
    float:left;
    margin:35px 0 0 25px;
}

.silo-title{
    font-size:2em;
    color:#111111;
    text-align:center;
}

.silo-title.silo1{
    position:relative;
    left:48px;
}

.silo-title.silo2{
    position:relative;
    left:-48px;
}

.circular-chart {
    position: absolute;
    display: block;
    max-width: 64%;
    margin: 0 auto;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.circle-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 2px;
}

.circle {
    fill: none;
    stroke-width: 2px;
    stroke-linecap: round;
    animation: progress 2s ease-out forwards;
}

.circular-chart.right{
    left:initial;
}

.circular-chart.left{
    right:initial;
}

.silo-img,
.galpao-img{
    position: absolute;
    width: 44px;
    left: 0;
    right: 0;
    margin:0 auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.silo-img.right{
    left:initial;
    right:61px;
}

.silo-img.left{
    left:61px;
    right:initial;
}

.circular-chart.low .circle {
    stroke: #bd394a;
}

.circular-chart.medium .circle {
    stroke: #111111;
}

.circular-chart.high .circle {
    stroke: #f05922;
}

.kg-holder {
    position: absolute;
    font-size: 1.4em;
    color: #fff;
    background: #f05922;
    border-radius: 15px;
    padding: 0.2em 1em;
    top: 140px;
}

.kg-holder.left:after{
    position: absolute;
    content: "";
    width: 73px;
    left: 0;
    top: 11px;
    height: 2px;
    background: #f05922;
    left: 100%;
}

.kg-holder.right{
    right:0;
}

.kg-holder.right:after{
    position: absolute;
    content: "";
    width: 72px;
    top: 11px;
    height: 2px;
    background: #f05922;
    right: 100%;
}

.txt-previsao-consumo,
.txt-consumo-valor{
    position: absolute;
    text-align: center;
    font-size:1.2em;
    color: #a5a5bc;
    letter-spacing:1px;
    left:0;
    right:0;
    bottom:30px;
}

.txt-previsao-consumo.silo1,
.txt-consumo-valor.silo1{
    left:90px;
}

.txt-previsao-consumo.silo2,
.txt-consumo-valor.silo2{
    left:-85px;
}

.txt-consumo-valor{
    font-family:fontMedium;
    text-transform:uppercase;
    bottom:0;
    /*color:#f05922;*/
    font-size:2em;
    letter-spacing:3px;
}

.silo-anim-holder {
    position: absolute;
    width: 44px;
    height: 89px;
    left: 0;
    right: 0;
    margin: 78px auto 0 auto;
    overflow:hidden;
}

.silo-anim-holder.right{
    left:95px;
}

.silo-anim-holder.left{
    right:95px;
}

.silo-anim-holder .silo-wires{
    position:absolute;
    width:100%;
}

.silo-anim-holder .silo-content{
    position: absolute;
    width: 100%;
    transition: transform 4s ease;
    transform:translateY(68px);
}

.silo-anim-holder .silo-bottom{
    position: absolute;
    width: 100%;
    bottom: 0;
}

.galpao-holder {
    position: relative;
    width: 250px;
    height: 290px;
    float: left;
    margin: 35px 0 0 20px;
}

.galpao-img{
    width:94px;
    left:-100px;
}

.tipo-animal {
    position: absolute;
    font-family: fontMedium;
    font-size: 1em;
    left: 12px;
    top: 24px;
    color: #a5a5bc;
}

.etapa-animal {
    width: 100px;
    position: absolute;
    font-size: 0.8em;
    left: 10px;
    top: -15px;
    color: #a5a5bc;
}

.kg-holder span {
    font-size: 1em;
    padding: 0 0.6em;
}

.kg-holder.galpao:after{
    width:28px;
}

.galpao-title {
    position: absolute;
    left: 13px;
    bottom: 0;
    font-family: fontMedium;
    text-transform: uppercase;
    color: #111111;
    font-size: 2em;
    letter-spacing: 3px;
    text-align: center;
}

.peso-holder {
    position: relative;
    width: 220px;
    height: 290px;
    float: left;
    margin: 35px 0 0 40px;
}

.peso-title {
    position: absolute;
    left: -35px;
    font-family: fontMedium;
    text-transform: uppercase;
    color: #111111;
    font-size: 1.8em;
    letter-spacing: 2px;
    text-align: center;
}

.galpao-img.peso{
    left:initial;
    right:initial;
}

.lote-go{
    position:absolute;
    top:50%;
    margin:0;
    right:25px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.lote-holder:after {
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    background: #f1f1f1;
    right: 70px;
}

.left-panel-invisible {
    position: relative;
    width: 240px;
    height: calc(100vh - 120px);
    float:left;
}

.left-panel-holder {
    position: fixed;
    width: 240px;
    height: calc(100vh - 120px);
    background: #70155c;
    top:120px;
    z-index:1;
}

.back-holder{
    position:relative;
    width:100%;
    height:80px;
    margin:0 0 1px 0;
    display:flex;
    justify-content:flex-start;
    align-items:center;
    cursor:pointer;
    transition:background 0.3s ease;
}

.back-holder img{
    position:relative;
    width:10px;
    margin:0 0 0 70px;
}

.back-holder p{
    position:relative;
    font-family:fontMedium;
    font-size:1.4em;
    color:#f05922;
    margin-left:15px;
}

.menu{
    position:relative;
    width:100%;
}

.menu li{
    position:relative;
    width:100%;
    height:80px;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:background 0.3s ease;
}

.menu li.active,
.menu li:hover,
.back-holder:hover{
    background:rgba(255,255,255,0.1);
}

.menu li.active:before{
    position:absolute;
    content:"";
    width:4px;
    height:100%;
    background:#f05922;
    left:0;
    top:0;

}

.menu li a{
    position:relative;
    width:100%;
    height:100%;
    display:flex;
    justify-content:flex-start;
    align-items:center;
}

.menu li a img{
    width:22px;
    margin-left:22px;
}

.menu li a p{
    position:relative;
    font-size:1.2em;
    color:#fff;
    margin-left:15px;
}

.content-holder {
    position: relative;
    width: calc(100% - 240px);
    min-height:calc(100vh - 120px);
    float: left;
}

.items-holder{
    position:relative;
    width:100%;
    height:22px;
    display:flex;
    justify-content:space-around;
    align-items:center;
    margin:30px auto;
}

.items-holder .item{
    position:relative;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:0 5px 0 5px;
    height: 29px;
}

.items-holder .item img {
    width: 20px;
    max-height: 24px;
}

.items-holder .item p{
    color:#111111;
    font-size:1.1em;
    margin:0 0 0 10px;
}

.selected-item {
    padding: 2px 15px;
    border-radius: 25px;
    background-color: #111111;
    border: 1px solid #f07b01;
}

.content-holder .img-bg{
    position:fixed;
    min-width:100%;
    min-height:100%;
    margin:0 auto;
    top:50%;
    left:50%;
    right:0;
    opacity:0.25;
    transform:translate3d(-50%,-50%,0);
}

.content-holder .title,
.title.agropecuaria {
    font-family: fontMedium;
    font-size: 2em;
    color: #f05922;
    text-align: center;
    margin: 2em 0;
}

.content-holder .title.chart{
    margin-bottom:1em;
}

.table-holder{
    position:relative;
    width:80%;
    border-radius:25px;
    background:#fff;
    padding:35px 50px;
    margin:45px auto;
    box-shadow:0px 5px 15px rgba(0,0,0,0.2);
}

.table-holder .table-item{
    position:relative;
    width:100%;
    height:40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid #ddd;
}

.table-holder .table-item .key,
.table-holder .table-item .value{
    font-size:1.3em;
    color:#111111;
}

.table-holder .table-item .value{
    font-family:fontMedium;
    font-size:1.4em;
}

.header-content-holder header{
    position:fixed;
    top:0;
    left:0;
}

.periodo-holder {
    position: relative;
    width: 400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 45px auto;
}

.periodo-holder p{
    font-size: 1.4em;
    color: #111111;
    margin-right: 10px;
}

.periodo-holder input[type='text']{
    border-radius:15px;
    outline:none;
    border:1px solid #ccc;
    height:28px;
    padding-left:10px;
    cursor:pointer;
}

.silo-opt-holder{
    position:relative;
    width:220px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:30px auto 0 auto;
}

.silo-opt-holder label{
    position:relative;
    width:70px;
    display:flex;
    justify-content:flex-start;
    align-items:center;
}

.silo-opt-holder label p{
    font-size:1.4em;
    color:#111111;
    margin:0 0 0 10px;
}

.silo-info-holder{
    display:none;
}

.container.agropecuaria {
    max-width: 1100px;
}

header.agropecuaria .container{
    display:flex;
    align-items:center;
}

header.agropecuaria .img-holder{
    /*background:transparent;*/
}

header.agropecuaria .user-actions-holder {
    margin-right: 60px;
}

.cards-holder{
    position:relative;
    width:100%;
    display:flex;
    justify-content:space-around;
    flex-wrap:wrap;
}

.card-shell {
    position: relative;
    width: 22%;
    border-radius: 15px;
    background: #ddd;
    transition: all 0.4s ease;
    margin: 0 0 25px 0;
    height: 75px;
}

.card {
    position: absolute;
    width: 100%;
    border-radius: 15px;
    background:#fff;
    transition: all 0.4s ease;
    top: 0;
    left: 0;
    margin: 0 0 25px 0;
    height: 100%;
    overflow: hidden;
    box-shadow:1px 2px 3px 0 rgba(0,0,0,0.05);
}

.card .header{
    position:relative;
    width:100%;
    height:75px;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
}

.card .header p{
    font-family:fontMedium;
    font-size:1.6em;
    color:#111111;
    margin:0 0 0 15px;
}

.card .header img {
    height: 40px;
}

.card .body{
    position:relative;
    width:100%;
    padding:10px 0 25px 0;
}

.card .body ul{
    margin:0 0 0 45px;
    list-style:none;
}

.card .body ul li{
    height:35px;
}

.card .body ul li a{
    position:relative;
    display:flex;
    height:20px;
    justify-content:flex-start;
    align-items:center;
    text-decoration: none;
}

.card .body ul li a img {
    position: relative;
    width: 10px;
    transition: transform 0.3s ease;
}

.card .body ul li a p{
    font-size:1.2em;
    color:#7c7c94;
    margin:0 0 0 20px;
    letter-spacing:1px;
    transition:color 0.3s ease;
}

.card .body ul li a:hover > p {
    color: #f05922;
}


.card .body ul li a:hover > img {
    transform: translateX(6px);
}

.card .body ul.small-margin{
    margin-left:34px;
}

.card .body ul.small-margin li a p{
    font-size:1.1em;
}

.media-mortes-holder {
    position: absolute;
    right: 0;
    margin: 54px 0 0 0;
    display: flex;
    align-items:center;
}

.media-mortes-holder h1{
    font-size:2.2em;
    color:#111111;
    margin:0 0 0 15px;
}

.media-mortes-holder p{
    font-size:1.4em;
    color:#777;
}

.back-holder.root{
    width:240px;
}

.imgHome {
    width: 18px;
}

.btn-go-holder {
    width: 42px;
}

.clear-anchor {
    text-decoration: none !important;
}

span.alert-login {
    color: #ffffff;
    margin: 0 auto;
    width: 100%;
    display: block;
    text-align: center;
    font-size: 13px;
    padding-top: 9px;
}

.bg-button {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0;
    cursor: pointer;
}

















@-webkit-keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}

@-moz-keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}

@-o-keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}


/* TIRAR CONFIGS DO CHROME PARA DADOS SALVOS */
@-webkit-keyframes autofill {
    to {
        color: #ffffff;
        background: transparent;
    }
}
input:-webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}

.action-holder {
    display: flex;
    height: 100%;
    width: calc(100% - 240px);
    align-items: center;
}

.action-holder .home {
    margin-left: 25px;
}

.modal-body {
    position: fixed;
    width: 720px;
    left: calc(50% - 360px);
    top: calc(50% - 150px);
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.modal-content {
    position: relative;
    width: 100%;
    padding: 15px 10px 0px 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.modal-card {
    position: relative;
    width: 50%;
    height: 50px;
    float: left;
    display: flex;
    align-items: center;
    padding: 0 10px;
}
.modal-card:nth-child(odd) {
    justify-content: flex-end;
}
.modal-card:nth-child(even) {
    justify-content: flex-start;
}
.modal-label {
    font-size: 1.5em;
    color: #111111;
    margin-right: 5px;
}
.modal-data {
    font-size: 1.5em;
    color: #7c7c94;
}
.modal-input,
.modal-select {
    width: 140px;
    border-radius: 15px;
    outline: none;
    border: 1px solid #ccc;
    height: 28px;
    padding: 0 10px;
    text-align: center;
    text-align-last: center;
    font-size: 1.5em;
    color: #7c7c94;
}
.modal-select {
    width: 152px;
}
.modal-input:focus,
.modal-select:focus {
    border-color: #111111;
}
.modal-buttons {
    position: relative;
    width: 100%;
    height: 65px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .modal-buttons .btn-default {
        width: 170px;
        margin: 0 10px;
        font-size: 13px;
    }

#btnCancelar {
    background: #9e9e9e;
    font-size: 13px;
}

#erroConsolidacao {
    text-align: center;
    display: block;
    color: #cc0000;
    font-size: 13px;
}

.inputifle {
    margin: 3px;
}

.lbl-select:focus {
    box-shadow: 0 0 2px 0 white;
}

.medalha {
    height: 30px;
    width: 30px;
}

input.status.play {
    background: url(../img/play.png) no-repeat;
}
input.status.stop {
    background: url(../img/stop.png) no-repeat;
}
input.status {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: all 0.5s ease;
    float: left;
    width: 80px;
    height: 80px;
    border: none;
    background-position: -20px;
    cursor:pointer;
}

input.status:hover, input.status.selecionado {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}