@charset "UTF-8";
/* CSS Document */

.tab {
    margin: 20px 0;

    border-top: 2px solid #6883a6;
    border-bottom: 2px solid #6883a6;
    
    overflow: hidden;
    
    text-align: center;
}

.tab button {
    padding: 14px 16px;

    border: none;
    background: inherit;

    outline: none;
    cursor: pointer;

    transition: 0.5s;
    
    font-size: 18px;
    color: #666;
}

.tab button:hover {
  background-color: #ddd;
}

.tab button.active {
  background-color: #ccc;
}

.tabcontent {
  display: none;
}

.tabcontent > ul {
    margin: 0;
    padding: 0;
    
    width: 100%;
    
    float: left;
}

.tabcontent > ul > li {    
    list-style: none;
    
    float: left;
}

.tabcontent > ul > li:first-child {
    width: 5%;
}

    .tabcontent > ul > li:first-child div {
        position: relative;

        height: 100px;
    }

    .tabcontent > ul > li:first-child span {
        position: absolute; bottom: 0; left: 0;
        
        margin: 0 0 -45px 0;

        transform-origin: 0 0;
        transform: rotate(-90deg);
        
        font-size: 40px;
        line-height: 30px;
        font-weight: 800;
        color: #b3c6dd;
    }

    @media only screen and (max-width:767px) {
        .tabcontent > ul > li:first-child span {
            margin: 0 0 0 0;

            font-size: 28px;
            line-height: 18px;
            font-weight: 500;
        }
    }

.tabcontent > ul > li:last-child {
    width: 95%;
}

.tabcontent > ul > li:last-child > div {
    padding: 20px 0 20px 2%;
    
    width: 98%;
    
    border-left: 1px solid #b3c6dd;
    
    background: url(../img/layout/separador-pixel.png) 50% 100% no-repeat;
    -o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: 80% 1px;
    
    float: left;
}

.tabcontent > ul > li:last-child > div > div:first-child {
    width: 25%;

    float: left;

    font-weight: 800;
    text-align: left;
}

.tabcontent > ul > li:last-child > div > div:last-child {
    width: 73%;

    float:  right;
    
    font-weight: 300;
}

    @media only screen and (max-width:767px) {
        .tabcontent > ul > li:last-child > div > div:first-child {
            padding: 0 0 10px 0;
            width: 100%;
        }

        .tabcontent > ul > li:last-child > div > div:last-child {
            width: 100%;
        }
    }


