.smk_accordion {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}
/**
 * --------------------------------------------------------------
 * Section
 * --------------------------------------------------------------
 */
.smk_accordion .accordion_in {
    position: relative;
    z-index: 10;
    overflow: hidden;
	margin-bottom: 5px;
}
/**
 * --------------------------------------------------------------
 * Head
 * --------------------------------------------------------------
 */
.smk_accordion .accordion_in .acc_head {
    position: relative;
    background: #EEE;
    padding: 10px;
    font-size: 16px;
    display: block;
    cursor: pointer;
    font-family: 'Roboto Slab', serif;
    color: #000;
}

/**
 * --------------------------------------------------------------
 * Content
 * --------------------------------------------------------------
 */
.smk_accordion .accordion_in .acc_content {
    background: #ffffff;
    padding: 20px 10px;
    padding-bottom: 10px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    color: #222;
    font-weight: 400;
}
.smk_accordion .accordion_in .acc_content h1:first-of-type,
.smk_accordion .accordion_in .acc_content h2:first-of-type,
.smk_accordion .accordion_in .acc_content h3:first-of-type,
.smk_accordion .accordion_in .acc_content h4:first-of-type,
.smk_accordion .accordion_in .acc_content h5:first-of-type,
.smk_accordion .accordion_in .acc_content h6:first-of-type {
  margin-top: 5px;
}
/**
 * --------------------------------------------------------------
 * General
 * --------------------------------------------------------------
 */

.smk_accordion .accordion_in.acc_active > .acc_content {
  display: block;
}
.smk_accordion .accordion_in.acc_active > .acc_head {
  background: #4CAF50;
  color: #fff;
}

.smk_accordion.acc_with_icon .accordion_in .acc_head,
.smk_accordion.acc_with_icon .accordion_in .acc_content {
  padding-left: 40px;
}

.acc_head > .acc_icon_expand {
    position: relative;
    margin-left: -30px;
}
.acc_head > .acc_icon_expand:after {
    content: "+";
    position: absolute;
    color: #007f3e;
    background: #fff;
    width: 23px;
    height: 23px;
    text-align: center;
    line-height: 20px;
    border-radius: 50%;
    font-family: 'Roboto Slab', serif;
    font-size: 18px;
}
.accordion_in.acc_active .acc_head > .acc_icon_expand:after {
    content: "-";
}
.smk_accordion .accordion_in.acc_active {
    box-shadow: 0px 3px 5px 1px rgba(0,0,0,0.15);
    margin-bottom: 30px;
    background: #fff;
}
.smk_accordion.acc_with_icon .accordion_in .acc_head, .smk_accordion.acc_with_icon .accordion_in .acc_content p {
    text-align: justify;
}