﻿



.accordion {
  margin: 0 auto;
  max-width: initial;
}
.accordion input[type=checkbox] + label::before {
 content:initial
}

.toggle {
  display: none;
}

.option {
  position: relative;
  margin-bottom: .5em;
}

.title,
.content {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.title {
  background: #fff;
  padding: .5em 2.5em;
      margin: 0 0em;
  display: block;
      color: #B6985A;
  font-weight: bold;
      line-height: 25px;


      border: 1px solid #e8e8e8;
      border-radius: 3px;
}

    .title:after {
        content: '';
        position: absolute;
        right: 0.6em;
        top: 0.7em;
        width: 1.7em;
        height: 1.7em;
        /*background-color: #7A7572;*/
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
        background-image: url('../../icon/plus.svg');
        /*background-size: cover;*/
        background-repeat: no-repeat;
    }



.content {
  max-height: 0;
  overflow: hidden;
  background-color: #fff;
  margin: 0 0;
  border: 1px solid #e8e8e8;
  border-top: 0 solid #e8e8e8;
  border-radius: 3px;
}
.content .accordion-container {
  padding: 0.5em 1em 1em;
  font-size: 1em;
  line-height: 1.5;
}

.toggle:checked + .title, .toggle:checked + .title + .content {
  /*box-shadow: 3px 3px 6px #ddd, -3px 3px 6px #ddd;*/
}
.toggle:checked + .title + .content {
  max-height: 500px;
}

.toggle:checked + .title:after
 {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
        background-image: url('../../icon/min.svg') !important;
}

