/*---------------------------------------------
	// RESETE E APLICAÇÕES GERAIS
----------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Roboto Condensed', sans-serif;
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
	height:auto !important;
}

img, picture, video, embed {
    max-width: 100%;
}

img {
    vertical-align: middle;
}

/*---------------------------------------------
	// ESTRUTURA PARA FORMULÁRIOS
----------------------------------------------*/
input, textarea {
    width: 100%;
    margin-top: 15px;
    float: left;
    padding: 10px;
    font-size: 1.2em;
    line-height: 1.42857;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.18);
    background-image: none;
    border: 1px solid #CCC;
    border-radius: 4px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
}

input:hover {
    color: #efefef;
}

textarea:hover {
    color: #efefef;
}

/***************************************
*************** ALINHAMENTO ***********
****************************************/
/***************************************
*************** ALINHAMENTO ***********
****************************************/
.all {
    width: 100%;
}

.container {
    width: 90%;
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.teste {
    background-color: #007AA5;
}

/***************************************
*************** COLUNAS ***********
****************************************/

.col-1 {
    flex-basis: 100%;
}

.col-2 {
    flex-basis: 50%;
}

.col-3 {
    flex-basis: 33.33%;
}

.col-4 {
    flex-basis: 25%;
}

.col-5 {
    flex-basis: 20%
}
.col-70{
    flex-basis: 70%;
}
.col-30{
    flex-basis: 30%;
}

/*--------------<MARGENS> --*/
.mt-15 {
    margin-top: 15px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-25 {
    margin-bottom: 25px;
}
.mb-30{
    margin-bottom: 30px;
}
.mt-30{
    margin-top: 30px;
}
/*--------------BOTÕES --*/
.btn {
    padding: 12px;
    width: 100%;
    border-radius: 5px;
    border: none;
}

.btn-blue {
    background: #007AA5;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
}

.btn-blue:hover {
    background: red;
}

.btn-red {
    background: red !important;
    color: #fff !important;
    cursor: pointer;
    border: none;
}

.btn-red:hover {
    background: #007AA5 !important;
    color: #fff !important;
}

.btn-orange {
    color: #fff;
    font-size: 1em;
    cursor: pointer;
    background: rgba(255, 191, 0, 0.4);
}

.btn-orange:hover {
    background: #FFBF00;
}

.btn-orange-dark {
    background: #FFBF00;
    border: 2px solid #fff;
}

.btn-orange-dark:hover {
    background: red;
}


/*---------------------------------------------
	// ATRIBUTOS DE TEXTO
----------------------------------------------*/
.color-default {
    color: #303030;
}

.color-dark {
    color: #000000;
}

.color-white {
    color: #ffffff;
}

/***************************************
*************** TEXTO  ***********
****************************************/
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

/*
@media (max-width: 860px) {
    .col-5{
        flex-basis: 100%;
    }
    .col-3{
        flex-basis: 100%;
    }
    .col-2 {
        flex-basis: 100%;
    }
    .col-4{
        flex-basis: 50%;
    }
}*/