@charset "UTF-8";
/**
 * Accordion v3.3.4
 * Lightweight and accessible accordion module created in pure Javascript
 * https://github.com/michu2k/Accordion
 *
 * Copyright (c) Michał Strumpf
 * Published under MIT License
 */

 #pluginAppObj_140_214 {
    width: 100%;
 }

 #pluginAppObj_140_214 .ac {
    width: 100%;
    display: block;
    margin-top: 0px;
    border-style: solid;
    border-left-width:2px;border-right-width:2px;border-bottom-width:2px;
        border-color: rgba(78, 54, 41, 1) rgba(78, 54, 41, 1) rgba(78, 54, 41, 1) rgba(78, 54, 41, 1);
        filter: drop-shadow(1px 1px 10px rgba(78, 54, 41, 1));
        /* background-color: #fff; */
        box-sizing: border-box;
        overflow: hidden;
}
    
#pluginAppObj_140_214 .ac:nth-of-type(1){
    margin-top:0px;
    border-top-width:2px;border-top-left-radius:20px;border-top-right-radius:20px;
}

#pluginAppObj_140_214 .ac:nth-of-type(1){border-bottom-left-radius:20px;border-bottom-right-radius:20px;}

#pluginAppObj_140_214 .ac.is-active .ac-header{
    
    transition: all 0.2s linear;    
}

#pluginAppObj_140_214 .ac .ac-header {
    padding: 10px 10px 10px 10px ;
    margin: 0;
    background-color: rgba(255, 255, 255, 1);
    transition: all 0.2s linear;
}

#pluginAppObj_140_214 .ac .ac-trigger {
    min-height: 22px;
    font: bold  16px 'Lato';
    color: rgba(78, 54, 41, 1);
    text-align: left;
    width: 100%;
    padding: 0px;
    padding-right: 37px;
    display: block;
    cursor: pointer;
    background-color: transparent;
    transition: all 0.2s ease;
    position: relative;
    text-decoration: none;
    margin: 0;
    border: 0;
}

#pluginAppObj_140_214 .ac .ac-trigger::after {
    content: '';
    text-align: center;
    max-width: 22px;
    max-height: 22px;
    width: 100%;
    height : 100%;
    -webkit-transform: translate(0,-50%);
    transform: translate(0,-50%);
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-mask: url('../../pluginAppObj/pluginAppObj_140_214/ac-arrow-round-down.svg') no-repeat 50% 50%;
    mask: url('../../pluginAppObj/pluginAppObj_140_214/ac-arrow-round-down.svg') no-repeat 50% 50%;
    -webkit-mask-size: contain;
    mask-size: contain;
    background-color:rgba(78, 54, 41, 1);
}

#pluginAppObj_140_214 .ac.is-active .ac-trigger{
    
}

#pluginAppObj_140_214 .ac .ac-trigger:focus {
}

#pluginAppObj_140_214 .ac .ac-panel {
    transition-property: height,visibility;
    transition-timing-function: ease;
    background-color: rgba(255, 255, 255, 1);
    max-height:160px;
    overflow-y: scroll;
    
}

#pluginAppObj_140_214 .ac:nth-of-type(1) .ac-panel {
    
}

#pluginAppObj_140_214 .ac .ac-panel .ac-text {
    font:   16px 'Lato';
    color: rgba(78, 54, 41, 1);
    padding: 10px 10px 10px 10px;
    margin: 0;
    text-align: left;
    line-height: 1.5;
}

#pluginAppObj_140_214 .ac-panel img {
    padding: 20px 20px 20px 20px;
    width: 100%;
    box-sizing: border-box;
}

#pluginAppObj_140_214 .ac-panel .ac-cta-wrapper {
    width:100%;
    text-align: right;
}

#pluginAppObj_140_214 .ac-panel .ac-cta{
    display: inline-block;
    font: bold  16px 'Lato';
    color: rgba(78, 54, 41, 1);
    background-color: rgba(236, 220, 206, 1);
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: rgba(35, 35, 35, 1) rgba(35, 35, 35, 1) rgba(35, 35, 35, 1) rgba(35, 35, 35, 1);
    border-radius: 5px 5px 5px 5px;
    
    padding: 10px 10px;
    margin: 10px 10px 10px 10px;
}

#pluginAppObj_140_214 .ac.js-enabled .ac-panel {
    visibility: hidden;
}

#pluginAppObj_140_214 .ac.is-active .ac-panel {
    visibility: visible;
}

#pluginAppObj_140_214 .ac.is-active > .ac-header .ac-trigger::after {
    -webkit-mask: url('../../pluginAppObj/pluginAppObj_140_214/ac-arrow-round-up.svg') no-repeat 50% 50%;
    mask: url('../../pluginAppObj/pluginAppObj_140_214/ac-arrow-round-up.svg') no-repeat 50% 50%;
    background-color: rgba(78, 54, 41, 1);
}

/* Custom Panel ScrollBar */
/* width */
#pluginAppObj_140_214 .ac .ac-panel::-webkit-scrollbar {
    width: 5px;
}

/* Track */
#pluginAppObj_140_214 .ac .ac-panel::-webkit-scrollbar-track {
    display: none;
}

/* Handle */
#pluginAppObj_140_214 .ac .ac-panel::-webkit-scrollbar-thumb {
    background-color: var(--scrollBarColor , rgba(0,0,0,0));
    /* border-radius: 10px; */
}

/* Handle on hover */
#pluginAppObj_140_214 .ac .ac-panel::-webkit-scrollbar-thumb:hover {
    background-color: #rgba(255, 255, 255, 1); 
}