@import url(https://fonts.googleapis.com/css?family=Open+Sans:300);
* {
    box-sizing: border-box;
}

/*
body {
    height: 100vh;
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    background-image: linear-gradient(135deg, rgba(155, 89, 182, 0.8) 0%, rgba(211, 84, 0, 0.8) 100%), url("https://i.imgur.com/QRbwNvh.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    margin: 0;
}
*/
h1 {
    font-size: 1.5em;
    padding: 0.5em;
    text-align: center;
    font-weight: 300;
    color: #444;
    background: rgba(255, 255, 255, 0.2);

    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.acc {
    position: relative;
    background-color: #fff;
}

.acc dl {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.acc dl:after {
    content: "";
    display: block;
    height: 1em;
    width: 100%;
    background-color: #2980b9;
}

.acc dt>a {
    text-align: center;
    font-weight: 300;
    padding: 2em;
    display: block;
    text-decoration: none;
    color: #fff;
    -webkit-transition: background-color 0.5s ease-in-out;
}

.acc dd {
    background-color: #fff;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 1em;
    line-height: 1.5em;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#444), to(#fff));
    background-image: linear-gradient(to bottom, #444 0%, #fff 100%);
    -webkit-background-clip: text;
    
}

.acc dd>p {
    padding: 1em 2em 1em 2em;
}

.container2 {
    max-width: 960px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 0px;
}

.acc_title {
    background-color: #263850;
    border-bottom: 1px solid #258cd1;
}

.acc_title:before {
    content: "+";
    font-size: 1.5em;
    line-height: 0.5em;
    float: left;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.acc_title:hover {
    background-color: #2980b9;
}

.acc_title_active {
    background-color: #2980b9;
}

.acc_title_active:before {
    -webkit-transform: rotate(-225deg);
    transform: rotate(-225deg);
}

.acc_panel {
    height: auto;
    overflow: hidden;
}

@media all {
    .acc_panel {
        max-height: 100%;
        -webkit-transition: max-height 1s;
        transition: max-height 1s;
    }
}

@media screen and (min-width: 48em) {
    .acc_panel {
        max-height: 100%;
        -webkit-transition: max-height 0.5s;
        transition: max-height 0.5s;
    }
}

.acc_panel_col {
    max-height: 0;
}

.anim_in {
    -webkit-animation-name: acc_in;
    animation-name: acc_in;
    -webkit-animation-duration: 0.65s;
    animation-duration: 0.65s;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-direction: normal;
    animation-direction: normal;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.anim_out {
    -webkit-animation-name: acc_out;
    animation-name: acc_out;
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

@-webkit-keyframes acc_in {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes acc_in {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes acc_out {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}

@keyframes acc_out {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}