﻿/*
 CSS for the main interaction
*/

* {
    margin: 0;
    padding: 0;
    
}


body {
    /*
    font-size: 1em;
    line-height: 2em;
    */
    color: #333;
    min-height: 100%;
}

hr {
    width: 50%;
    height: 2px;
    border: none;
    background-color: #C2BA98;
    margin: 0;
    margin-left: 25%;
}

.content_direct {
    width: 50%;
    /* margin: 0 auto;*/
    height: 100%;
    text-align: center;
    /*agregado*/
    margin-top: 30px;
    margin: 0 auto;
    font-size: 1.2em;
    line-height: 2em;
    /*agregado*/
}

.accordion > input[type="checkbox"] {
    position: absolute;
    left: -100vw;
}

.accordion .content {
    overflow-y: hidden;
    height: 0;
    transition: height 0.3s ease;
    background: #ffffff;
}

.accordion > input[type="checkbox"]:checked ~ .content {
    height: auto;
    overflow: visible;
}

.accordion label {
    display: block;
}

/*
 Styling
*/


.accordion {
    margin-bottom: 5%;
    height: 100% min-height: 100vh;
    background: #ffffff;
}

    .accordion > input[type="checkbox"]:checked ~ .content {
        padding: 15px;
        border: 1px solid #e8e8e8;
        border-top: 0;
    }

    .accordion .handle {
        margin: 0;
        font-size: 1.125em;
        line-height: 1.2em;
        text-transform: uppercase;
        font-weight: bold;
    }

    .accordion label {
        color: #636569;
        cursor: pointer;
        font-weight: normal;
        padding: 15px;
        background: #e8e8e8;
    }

        .accordion label:hover,
        .accordion label:focus {
            background: #d8d8d8;
        }

    .accordion .handle label:before {
        font-family: "fontawesome";
        content: "\f054";
        display: inline-block;
        margin-right: 10px;
        font-size: 0.58em;
        line-height: 1.556em;
        vertical-align: middle;
    }

    .accordion > input[type="checkbox"]:checked ~ .handle label:before {
        content: "\f078";
    }

/*
 Demo purposes only
*/
*,
*:before,
*:after {
    box-sizing: border-box;
}



a {
    color: #06c;
}


/*
h1 {
  margin: 0 0 1.5em;
  font-weight: 600;
  font-size: 1.5em;
}
*/

.accordion {
    max-width: 100%;
}

    .accordion p:last-child {
        margin-bottom: 0;
    }


p.txt {
    color: #000000;
}
