﻿.tab_height {
    position: relative;
}

.tabs {
    width: 100%;
    clear: both;
    position: relative;
    margin: 0;
}

.tab label {
    float: left;
    text-align: center;
    width: 30%;
    cursor: pointer;
    color: #808080;
    border-bottom: 2px solid #808080;
    text-transform: uppercase;
}

.tab .labelRight {
    margin-right: 20%
}

.tab .labelLeft {
    margin-left: 20%
}

.tab_content {
    position: absolute;
    top: 60px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    transition: opacity .2s cubic-bezier(.42,0,.34,1.01);
    opacity: 0;
}

    .tab_content img {
        width: 100%;
    }

.tab [type=radio] {
    display: none;
}

[type=radio]:checked ~ label {
    color: #FFF;
    border-bottom: 2px solid #FFF;
    z-index: 2;
}

    [type=radio]:checked ~ label ~ .tab_content {
        z-index: 1;
        opacity: 1;
    }

@media (max-width: 1200px) {
    .tab label {
        width: 35%;
    }

    .tab .labelRight {
        margin-right: 15%
    }

    .tab .labelLeft {
        margin-left: 15%
    }
}

@media (max-width: 768px) {
    .tab label {
        width: 50%;
    }

    .tab .labelRight {
        margin-right: 0px;
    }

    .tab .labelLeft {
        margin-left: 0px;
    }

    .tab_content {
        top: 50px;
    }

        .tab_content img {
            width: 100%;
            padding: 0px 10%
        }
}
