.acc-container,
.acc-container .acc-content,
.acc-container .acc-item i:before,
.acc-container .acc-item i:after {
    transition: all 0.25s ease-in-out;
}

.acc-container label {
    line-height: 40px;
    font-size: 1.3em;
    font-weight: 700;
    position: relative;
    z-index: 5;
    display: block;
    margin: -1px 0 0 0;
    cursor: pointer;
    color: #fff;
    padding: 5px 20px 5px 10px;
    
    background-color: #2c7ecb;
    border: 1px solid #185fa2;
    box-shadow: 10px 10px 30px -9px rgba(0, 0, 0, 0.8);
    -webkit-box-shadow: 10px 10px 30px -9px rgba(0, 0, 0, 0.8);
    -moz-box-shadow: 10px 10px 30px -9px rgba(0, 0, 0, 0.8);

    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.acc-item {
  position: relative;
}

.acc-container .acc-content {
    position: relative;
    overflow: hidden;
    max-height: 0px;
    opacity: .3;
    margin: 0;
    padding: 0 15px;
    border-left: 1px solid #185fa2;
    border-right: 1px solid #185fa2;
    background-color: rgba(255, 255, 255, .85);
    z-index: 5;

    /*
    -webkit-transition: height .25s ease-in-out;
    -moz-transition: height .25s ease-in-out;
    -o-transition: height .25s ease-in-out;
    -ms-transition: height .25s ease-in-out;
    transition: height .25s ease-in-out;
    */
}

.acc-container .acc-item input:checked ~ .acc-content {

  max-height: 300px;
  opacity: 1;
  margin: 0 10px;
  padding: 15px 15px;

  -webkit-transition-delay: .25s;
    -moz-transition-delay: .25s;
    -o-transition-delay: .25s;
    -ms-transition-delay: .25s;
    transition-delay: .25s;
  
  /*
  -webkit-transition: height 0.5s ease-in-out;
  -moz-transition: height 0.5s ease-in-out;
  -o-transition: height 0.5s ease-in-out;
  -ms-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
  */

}

  

.acc-container input{
  display: none;
}

.acc-container .acc-item > i {
    position: absolute;
    transform: translate(-6px, 0);
    margin-top: 25px;
    right: 15px;
    z-index: 10;
}
.acc-container .acc-item > i:before,
.acc-container .acc-item > i:after {
    content: "";
    position: absolute;
    background-color: #fff;
    width: 3px;
    height: 9px;
}
.acc-container .acc-item > i:before {
    transform: translate(2px, 0) rotate(45deg);
}
.acc-container .acc-item > i:after {
    transform: translate(-2px, 0) rotate(-45deg);
}

.acc-container .acc-item input:checked ~ i:before {
    transform: translate(-2px, 0) rotate(45deg);
    opacity: 0;
}
.acc-container .acc-item input:checked ~ i:after {
    transform: translate(2px, 0) rotate(-45deg);
    opacity: 0
}

#home-banner-widget {
    margin-top: 40px;
    margin-bottom: 40px;
    min-height: 427px;
    position: absolute;
    top: 68px;
    display: inline-block;
    width: 100%
}

.acc-container ul {
    list-style-type: circle;
    padding-left: 17px;
    padding-top: 8px;
}

.acc-container .acc-content:last-of-type {

      border-bottom: 1px solid #185fa2;
}
.widget-select {
 font-weight: bold;

}

.widget-select input {
    display: inline-block;
    margin: 5px 5px 10px 20px;
    
}