@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_44_1022 {
    width: 100%;
 }

 #pluginAppObj_44_1022 .ac {
    width: 100%;
    display: block;
    margin-top: 5px;
    border-style: solid;
    border-width:1px 1px 1px 1px;border-radius:5px 5px 5px 5px;
        border-color: rgba(217, 217, 217, 1) rgba(217, 217, 217, 1) rgba(217, 217, 217, 1) rgba(217, 217, 217, 1);
        
        /* background-color: #fff; */
        box-sizing: border-box;
        overflow: hidden;
}
    
#pluginAppObj_44_1022 .ac:nth-of-type(1){
    margin-top:0px;
    
}



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

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

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

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

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

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

#pluginAppObj_44_1022 .ac .ac-panel {
    transition-property: height,visibility;
    transition-timing-function: ease;
    background-color: rgba(239, 239, 239, 1);
    
     overflow: hidden;
    
}

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

#pluginAppObj_44_1022 .ac .ac-panel .ac-text {
    font:   20px 'Jura';
    color: rgba(0, 0, 0, 1);
    padding: 10px 5px 5px 5px;
    margin: 0;
    text-align: left;
    line-height: 1.5;
}

#pluginAppObj_44_1022 .ac-panel img {
    padding: 5px 0px 10px 0px;
    width: 100%;
    box-sizing: border-box;
}

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

#pluginAppObj_44_1022 .ac-panel .ac-cta{
    display: inline-block;
    font: bold  36px 'Jura';
    color: rgba(88, 101, 84, 1);
    background-color: transparent;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    border-color: rgba(153, 117, 130, 1) rgba(153, 117, 130, 1) rgba(153, 117, 130, 1) rgba(153, 117, 130, 1);
    border-radius: 5px 5px 5px 5px;
    
    padding: 3px 3px;
    margin: 5px 5px 5px 5px;
}

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

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

#pluginAppObj_44_1022 .ac.is-active > .ac-header .ac-trigger::after {
    -webkit-mask: url('../../pluginAppObj/pluginAppObj_44_1022/ac-arrow-square-up.svg') no-repeat 50% 50%;
    mask: url('../../pluginAppObj/pluginAppObj_44_1022/ac-arrow-square-up.svg') no-repeat 50% 50%;
    background-color: rgba(0, 0, 204, 1);
}

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

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

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

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