﻿@import "http://fonts.googleapis.com/css?family=Roboto";
body {
  font-family: "Roboto";
  font-size: 105%;
}
.wrapper {
  max-width: 1280px;
  margin: auto;
}
h1 {
  text-align: center;
}
.accordion {
    margin: 0 0 15px;
}
.accordion li {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
.accordion input {
    position: absolute;
    z-index: -999;
}
.accordion input ~ div {
    height: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 750ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
    width: 100%;
}
.accordion input:checked + label {
    background: #363435;
}
.accordion input:checked + label .line_vert {
    transform: perspective(500px) rotateY(0deg) scale3d(1, 0, 1);
    transform-origin: 50% 50% 0;
}
.accordion input:checked ~ div {
    max-height: 1500px;
    opacity: 1;
    overflow: hidden;
    transition: max-height 750ms cubic-bezier(0, 0, 1, 0) 0s, opacity 500ms linear 0s;
}
.accordion label {
    background: #EF7F2A;
    color: #fff;
    display: block;
    margin: 1em 0 0;
    padding: 1em 3.5em 1em 1em;
    position: relative;
    transition: all 100ms ease-in 0s;
	text-transform: uppercase;
    font-weight: 600;
}
.accordion label:hover, .accordion label:focus, .accordion input:focus + label {
    background: #353435;
    cursor: pointer;
}
.accordion label > span {
    display: block;
    height: 1.75em;
    position: absolute;
    right: 0.75em;
    top: 0.75em;
    width: 1.75em;
}
.accordion div {
    background: #edf7ff;
}
.accordion div p {
    margin: 1em 0;
    padding: 0 1em;
}
.accordion + p {
    margin: 1.5em 0 0;
}
.accordion .line_vert, .accordion .line_hor {
    background: #fff;
    position: absolute;
}
.accordion .line_vert {
    height: 100%;
    left: 10px;
    transform: perspective(500px) rotateY(0deg) scale3d(1, 1, 1);
    transition: transform 250ms ease-in-out 0ms;
    width: 5px;
}
.accordion .line_hor {
    height: 5px;
    top: 10px;
    width: 100%;
}