/*
navigation
*/

/* BASIC STYLINGS
============================================================================= */
body                            {}
pre                             { margin-bottom:20px; }

/* form styling */
#form-container                { background:#2f2f2f; margin-bottom:20px;
    border-radius:5px; }
#form-container .page-header   { background:#151515; margin:0; padding:30px;
    border-top-left-radius:5px; border-top-right-radius:5px; }

/* numbered buttons */
#status-buttons                 {  }
#status-buttons a               { color:#262626; font-weight: bold;display:inline-block; font-size:12px; margin-right:10px; text-align:center; text-transform:uppercase; }
#status-buttons a:hover         { text-decoration:none; }
#status-buttons span            {
    background: rgb(242,245,246); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(242,245,246,1) 0%, rgba(227,234,237,1) 82%, rgba(200,215,220,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(242,245,246,1) 0%,rgba(227,234,237,1) 82%,rgba(200,215,220,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(242,245,246,1) 0%,rgba(227,234,237,1) 82%,rgba(200,215,220,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

    display:block; height:30px; margin:0 auto 10px; padding-top:5px; width:30px;
    border-radius:50%; }

/* active buttons */
#status-buttons a.active span   {
    background: #DCE35B; /* fallback for old browsers */
    background: -webkit-linear-gradient(to bottom, #DCE35B , #45B649); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to bottom, #DCE35B , #45B649); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    height: 33px;
    width: 33px;

}

/* ANIMATION STYLINGS
============================================================================= */
#signup-form            { position:relative; min-height:300px; overflow:hidden; padding:30px; }

/* basic styling for entering and leaving */
/* left and right added to ensure full width */
#form-views.ng-enter,
#form-views.ng-leave      { position:absolute; left:30px; right:30px;
    transition:0.5s all ease; -moz-transition:0.5s all ease; -webkit-transition:0.5s all ease;
}

/* enter animation */
#form-views.ng-enter            {
    -webkit-animation:slideInRight 0.5s both ease;
    -moz-animation:slideInRight 0.5s both ease;
    animation:slideInRight 0.5s both ease;
}

/* leave animation */
#form-views.ng-leave            {
    -webkit-animation:slideOutLeft 0.5s both ease;
    -moz-animation:slideOutLeft 0.5s both ease;
    animation:slideOutLeft 0.5s both ease;
}

/* ANIMATIONS
============================================================================= */
/* slide out to the left */
@keyframes slideOutLeft {
    to 		{ transform: translateX(-200%); }
}
@-moz-keyframes slideOutLeft {
    to 		{ -moz-transform: translateX(-200%); }
}
@-webkit-keyframes slideOutLeft {
    to 		{ -webkit-transform: translateX(-200%); }
}

/* slide in from the right */
@keyframes slideInRight {
    from 	{ transform:translateX(200%); }
    to 		{ transform: translateX(0); }
}
@-moz-keyframes slideInRight {
    from 	{ -moz-transform:translateX(200%); }
    to 		{ -moz-transform: translateX(0); }
}
@-webkit-keyframes slideInRight {
    from 	{ -webkit-transform:translateX(200%); }
    to 		{ -webkit-transform: translateX(0); }
}

.col-without-border{

    -webkit-box-flex: 1;
    /* -webkit-flex: 1; */
    -moz-box-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: block;
    padding: 5px;
    width: 100%;
    border: none;
    border-bottom-style: none;
    border-right-style: none;
}

.col-without-border{

    -webkit-box-flex: 1;
    /* -webkit-flex: 1; */
    -moz-box-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: block;
    padding: 5px;
    width: 100%;
    border: none;
    border-bottom-style: none;
    border-right-style: none;
}



/*
Barra
*/

.bar.app-top-bar {
    background: #093028;
    background: -webkit-linear-gradient(to bottom, #247856, #029e4c);
    background: linear-gradient(to top, #247856, #029e4c);
}
.bar.app-top-bar .title {
    color: #FFFFFF !important; }
.bar.app-top-bar .title * {
    color: #FFFFFF !important; }
.bar.app-top-bar .button {
    color: #FFFFFF !important; }
.bar.app-top-bar .button * {
    color: #FFFFFF !important; }


/*
ACORDION
*/

body {
    /*cursor: url('http://ionicframework.com/img/finger.png'), auto;*/
}

/* CORE */
.item-expand {
    position: relative;
    width: 100%;
    max-height: 60px;
    transition: max-height 0.1s ease-out;
    overflow: hidden;
}

.item-expand.inactive:after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    height: 15px;
    width: 100%;
    display: block;
    background-image: -webkit-gradient(
            linear,
            left top,
            left bottom,
            color-stop(0, rgba(255, 255, 255, 0)),
            color-stop(1, rgba(255, 255, 255, 1))
    );
    background-image: -o-linear-gradient(bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    background-image: -moz-linear-gradient(bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    background-image: -ms-linear-gradient(bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.item-expand.active {
    max-height: 300px;
    transition: max-height 0.9s ease-out;
}


/* DEMO */
.item-expand-footer {
    color: #138f52;
    margin-top: 10px;
}

.item-expand-footer i {
    margin-right: 10px;
}

/*
Tabela Responsiva
*/

table {
    border: 1px solid #ccc;
    width: 100%;
    margin:0;
    padding:0;
    border-collapse: collapse;
    border-spacing: 0;
}

table tr {
    border: 1px solid #ddd;
    padding: 5px;
}

table th, table td {
    padding: 10px;
    text-align: center;
}

table th {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

@media screen and (max-width: 600px) {

    table {
        border: 0;
    }

    table thead {
        display: none;
    }

    table tr {
        margin-bottom: 10px;
        display: block;
        border-bottom: 2px solid #ddd;
    }

    table td {
        display: block;
        text-align: right;
        font-size: 13px;
        border-bottom: 1px dotted #ccc;
    }

    table td:last-child {
        border-bottom: 0;
    }

    table td:before {
        content: attr(data-label);
        float: left;
        text-transform: uppercase;
        font-weight: bold;
    }
}

#conteudo{
    width: -webkit-max-content;
    width: max-content;
}

.item-cred-header{
    float:left;
    border: solid 1px #cccccc;
    border-bottom-style: none;
    border-right-style: none;
    border-right: solid 1px #cccccc;;
    border-bottom: solid 1px #cccccc;;
    text-align: center;
    background: #cccccc;;
}

.item-cred{
    float:left;
    border: solid 1px #cccccc;;
    border-bottom-style: none;
    border-right-style: none;
    border-right: solid 1px #cccccc;;
    border-bottom: solid 1px #cccccc;;
    text-align: center;
}

/*
MENU CIRCULAR
*/


.menu-item-circular{
    border-radius: 100%;
    width: 85px;
    height: 85px;
    margin-left: -40px;
    position: absolute;
    color: #FFFFFF;
    text-align: center;
    line-height: 80px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform ease-out 200ms;
    transition: -webkit-transform ease-out 200ms;
    transition: transform ease-out 200ms;
    transition: transform ease-out 200ms, -webkit-transform ease-out 200ms;
    margin-top: 180px
}

.menu-open-button {

    background-image: url("../img/institucional.png");
    background-size: 85px 85px;
    border-radius: 100%;
    width: 85px;
    height: 85px;
    margin-left: -40px;
    position: absolute;
    color: #FFFFFF;
    text-align: center;
    line-height: 80px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform ease-out 200ms;
    transition: -webkit-transform ease-out 200ms;
    transition: transform ease-out 200ms;
    transition: transform ease-out 200ms, -webkit-transform ease-out 200ms;
    margin-top: 180px
}

.menu-open-circular {
    display: none;
}

.menu-circular {
    /*margin: auto;*/
    /*position: absolute;*/
    margin-left:auto;
    margin-right: auto;
    margin-bottom: auto;
    margin-top:-50px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 80px;
    height: 80px;
    text-align: center;
    box-sizing: border-box;
    font-size: 26px;
}

/* .menu-item-circular {
   transition: all 0.1s ease 0s;
} */

.menu-item-circular:hover {

}

.menu-item-circular:nth-child(3) {
    -webkit-transition-duration: 180ms;
    transition-duration: 180ms;
}

.menu-item-circular:nth-child(4) {
    -webkit-transition-duration: 180ms;
    transition-duration: 180ms;
}

.menu-item-circular:nth-child(5) {
    -webkit-transition-duration: 180ms;
    transition-duration: 180ms;
}

.menu-item-circular:nth-child(6) {
    -webkit-transition-duration: 180ms;
    transition-duration: 180ms;
}

.menu-item-circular:nth-child(7) {
    -webkit-transition-duration: 180ms;
    transition-duration: 180ms;
}

.menu-item-circular:nth-child(8) {
    -webkit-transition-duration: 180ms;
    transition-duration: 180ms;
}

.menu-item-circular:nth-child(9) {
    -webkit-transition-duration: 180ms;
    transition-duration: 180ms;
}

.menu-open-button {
    z-index: 2;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
    -webkit-transform: scale(1.9, 1.9) translate3d(0, 0, 0);
    transform: scale(2.9, 2.9) translate3d(0, 0, 0);
    cursor: pointer;
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
}

.menu-open-button:hover {
    -webkit-transform: scale(1.2, 1.2) translate3d(0, 0, 0);
    transform: scale(2.4, 2.4) translate3d(0, 0, 0);
}

.menu-open-circular:checked + .menu-open-button {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transition-duration: 200ms;
    transition-duration: 200ms;
    -webkit-transform: scale(1.4, 1.4) translate3d(0, 0, 0);
    transform: scale(0.8, 0.8) translate3d(0, 0, 0);
}

.menu-open-circular:checked ~ .menu-item-circular {
    -webkit-transition-timing-function: cubic-bezier(0.935, 0, 0.34, 1.33);
    transition-timing-function: cubic-bezier(0.935, 0, 0.34, 1.33);
}
/*RURAL*/
.menu-open-circular:checked ~ .menu-item-circular:nth-child(3) {
    transition-duration: 180ms;
    -webkit-transition-duration: 180ms;
    -webkit-transform: translate3d(0.08361px, -104.99997px, 0);
    transform: translate3d(0.08361px, -124.99997px, 0);
}
/*REFLO*/
.menu-open-circular:checked ~ .menu-item-circular:nth-child(4) {
    transition-duration: 280ms;
    -webkit-transition-duration: 280ms;
    -webkit-transform: translate3d(90.9466px, -52.47586px, 0);
    transform: translate3d(100.9466px, -92.47586px, 0);
}
/*FIES*/
.menu-open-circular:checked ~ .menu-item-circular:nth-child(5) {
    transition-duration: 380ms;
    -webkit-transition-duration: 380ms;
    -webkit-transform: translate3d(90.9466px, 52.47586px, 0);
    transform: translate3d(100.03006px, 20.47586px, 0);
}
/*INDUST*/
.menu-open-circular:checked ~ .menu-item-circular:nth-child(6) {
    transition-duration: 480ms;
    -webkit-transition-duration: 480ms;
    -webkit-transform: translate3d(0.08361px, 104.99997px, 0);
    transform: translate3d(50.08361px, 120.99997px, 0);
}
/*CIENCIA*/
.menu-open-circular:checked ~ .menu-item-circular:nth-child(7) {
    transition-duration: 580ms;
    -webkit-transition-duration: 580ms;
    -webkit-transform: translate3d(-90.86291px, 52.62064px, 0);
    transform: translate3d(-50.86291px, 120.99997px, 0);
}
/*SOLAR*/
.menu-open-circular:checked ~ .menu-item-circular:nth-child(8) {
    transition-duration: 680ms;
    -webkit-transition-duration: 680ms;
    -webkit-transform: translate3d(-91.03006px, -52.33095px, 0);
    transform: translate3d(-100.03006px, 20.47586px, 0);
}
/*AGRIC*/
.menu-open-circular:checked ~ .menu-item-circular:nth-child(9) {
    transition-duration: 780ms;
    -webkit-transition-duration: 780ms;
    -webkit-transform: translate3d(-0.25084px, -104.9997px, 0);
    transform: translate3d(-100.25084px, -92.9997px, 0);
}

.blue {
    background-image: url("../img/feeds/rural.jpg");
    background-size: 85px 85px;
    box-shadow: 3px 3px 0 0 rgba(2, 158, 76, 0.14);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
}

.blue:hover {
    color: #669AE1;
    text-shadow: none;
}

.black {
    background-image: url("../img/feeds/solar.jpg");
    background-size: 85px 85px;
    box-shadow: 3px 3px 0 0 rgba(2, 158, 76, 0.14);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
}

.black:hover {
    color: #669AE1;
    text-shadow: none;
}

.green {
    background-image: url("../img/feeds/reflorestamento.jpg");
    background-size: 85px 85px;
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
}

.green:hover {
    color: #70CC72;
    text-shadow: none;
}

.red {
    background-image: url("../img/feeds/servicos.jpg");
    background-size: 85px 85px;
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
}

.red:hover {
    color: #70CC72;
    text-shadow: none;
}

.purple {
    background-image: url("../img/feeds/fies.png");
    background-size: 85px 85px;
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
}

.purple:hover {
    color: #C49CDE;
    text-shadow: none;
}

.orange {
    background-image: url("../img/feeds/ciencia.jpg");
    background-size: 85px 85px;
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
}

.orange:hover {
    color: #70CC72;
    text-shadow: none;
}

.lightblue {
    background-image: url("../img/feeds/agricultura.png");
    background-size: 85px 85px;
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
}

.lightblue:hover {
    color: #70CC72;
    text-shadow: none;
}

.credit {
    margin: 24px 20px 120px 0;
    text-align: right;
    color: #EEEEEE;
}

.credit a {
    padding: 8px 0;
    color: #C49CDE;
    text-decoration: none;
    transition: all 0.3s ease 0s;
}

.credit a:hover {
    text-decoration: underline;
}

.text-circular{
    margin-top:90px;
    font-size:12px;
    font-weight: bold;
    line-height:1.5;
    color: darkslategrey;
}

.text-circular-menor{
    margin-top:90px;
    font-size:9px;
    font-weight: bold;
    line-height:1.3;
    color: darkslategrey;
}

.text-circular-ident{
    margin-top:50px;
    font-size:15px;
    font-weight: bold;
    line-height:1.5;
    color: darkslategrey;
    text-align:center;
}

.imagem-circular {
    /*background-image: url("../img/feeds/servicos.jpg");*/
    background-size: 85px 85px;
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
}

.text-simulacao{
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
    min-height: 30px;
    background-color: #f5f5f5;
    color: #222;
    font-weight: 500;
    font-size: 15px;
}

.item-divider-green {
    padding-top: 8px;
    padding-bottom: 8px;
    min-height: 30px;
    background: #093028;
    background: -webkit-linear-gradient(to bottom, #247856, #029e4c);
    background: linear-gradient(to top, #247856, #029e4c);
    color: #fcfcfc;
    font-weight: 500;
}

.bar-green {
    background: #093028;
    background: -webkit-linear-gradient(to bottom, #247856, #029e4c);
    background: linear-gradient(to top, #247856, #029e4c);
    color: #FFFFFF;
}

.fundo-principal-simulacao{
    background: #F8FFAE;
    background: -webkit-linear-gradient(-65deg, #43C6AC, #F8FFAE);
    background: linear-gradient(-65deg, #43C6AC, #F8FFAE);
}

.break-word {
    white-space:normal;
    word-wrap: break-word;
}

.custom-icon {
    font-size: 64px;
    color : red;
}

.title-image {
    opacity: 0.4;
    filter: alpha(opacity=30);
    width: 50px;
    height: 32px;
}

.title-image-main {
    width: 267px;
    height: 90px;
    padding-top: 4px;
    padding-left: 4px;
    margin-top:20px;
}
.icon-objetivo{
background-color: transparent;
}

.menu-icon{
font-size: 1.5em;
    color: #c4cdc9;
}

.item-button-right > .button {
    z-index: 4;
}

.line-after{
    background-color: #f4f4f4;
    font-size: 14px;
}

.line-before{
    background-color: #ffffff;
    font-size: 14px;
}

.border-custom{
    border-color:#c4cdc9;
}

/*
Acordion*/

.list .item.item-accordion {

    transition: 0.09s all linear;
}
.list .item.item-accordion.ng-hide {
    line-height: 0px;
}
.list .item.item-accordion.ng-hide-add,
.list .item.item-accordion.ng-hide-remove {
    display: block !important;
}

.card300{
    padding-bottom:330px;
    text-align:center;
}

.containercanvas{
    width: 100%;
    margin: 10px auto;
}

/* Have to set height explicity on ui-view
to prevent collapsing during animation*/
.well[ui-view]{
    height: 65px;
}
/* animation transition page */
.ui-view-container {
    position: relative;
}

[ui-view].ng-enter, [ui-view].ng-leave {
    position: absolute;
    left: 0;
    right: 0;
    -webkit-transition:all .5s ease-in-out;
    -moz-transition:all .5s ease-in-out;
    -o-transition:all .5s ease-in-out;
    transition:all .5s ease-in-out;
}

[ui-view].ng-enter {
    opacity: 0;
    -webkit-transform:scale3d(0.5, 0.5, 0.5);
    -moz-transform:scale3d(0.5, 0.5, 0.5);
    transform:scale3d(0.5, 0.5, 0.5);
}

[ui-view].ng-enter-active {
    opacity: 1;
    -webkit-transform:scale3d(1, 1, 1);
    -moz-transform:scale3d(1, 1, 1);
    transform:scale3d(1, 1, 1);
}

[ui-view].ng-leave {
    opacity: 1;
    /*padding-left: 0px;*/
    -webkit-transform:translate3d(0, 0, 0);
    -moz-transform:translate3d(0, 0, 0);
    transform:translate3d(0, 0, 0);
}

[ui-view].ng-leave-active {
    opacity: 0;
    /*padding-left: 100px;*/
    -webkit-transform:translate3d(100px, 0, 0);
    -moz-transform:translate3d(100px, 0, 0);
    transform:translate3d(100px, 0, 0);
}

/*
    Form validation CSS
*/
.error-container {
    margin: 5px 0;
}

.error-container:last-child {
    margin: 5px 0 0;
}

.error {
    padding: 10px 16px;
    font-family: "Arial Black", Gadget, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    color: #555;
    vertical-align: middle;
    white-space:normal;
    word-wrap: break-word;
}

.error i {
    font-size: 24px;
    color: #B83E2C;
    vertical-align: middle;
}

.last-error-container > .error {
    padding: 10px 16px 0;
}

.has-errors {
    border-bottom: 3px solid #B83E2C;
}

.no-errors {
    border-bottom: 3px solid green;
}

.header .col {
    background-color:lightgrey;
}

.col {
    border: solid 1px grey;
    border-bottom-style: none;
    border-right-style: none;
}

.col-without-border{

    -webkit-box-flex: 1;
    /* -webkit-flex: 1; */
    -moz-box-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: block;
    padding: 5px;
    width: 100%;
    border: none;
    border-bottom-style: none;
    border-right-style: none;
}

.col:last-child {
    border-right: solid 1px grey;
}

.row:last-child .col {
    border-bottom: solid 1px grey;
}

.fade-in {
    animation: fadeIn ease 1s;
    -webkit-animation: fadeIn ease 1s;
    -moz-animation: fadeIn ease 1s;
    -o-animation: fadeIn ease 1s;
    -ms-animation: fadeIn ease 1s;
}

#logos {
    width: 267px;
    height: 90px;
    padding-top: 4px;
    padding-left: 4px;
    margin-top:20px;
}

.fade-in-out {
    transition: 3s linear all;
    opacity: 1;
    display: block;
}

.fade-in-out.ng-hide {
    opacity: 0.3;
    display: block;
}


.frame-video {
    display:block;
    border:3px solid #195d19;
    margin: 0 auto;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.scroll-wrapper {
    width: 100%;
    height: 100%;
}
