
.accordion{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.a-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-bottom: 5px;
    position: relative;
}

.a-btn{
    margin: 0;
    position: relative;
    padding: 15px 30px;
    width: 100%;
    /* color: #000; */
    font-weight: 400;
    display: block;
    font-weight: 500;
    background-color: #f2f2f2;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
    /* box-shadow: 0 20px 25px -5px rgba(0,0,0,.15),0 10px 10px -5px rgba(0,0,0,.1)!important;  */
}

.a-btn svg{
    display: block;
    position: absolute;
    height: 14px;
    width: 14px;
    left: 10px;
    top: 20px;
    transform: rotate(-90deg);
    transition: all 0.3s ease-in-out;
}
/* 
.a-btn span::after {
    content: '';
    width: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    position: absolute;
    top: 6px;
} */

.a-btn span::before{
    content: '';
    font-family: 'icomoon' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    content: "\e903";
    /* width: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #fff; */
    position: absolute;
    /* top: 6px; */
    transform: rotate(0deg);
    transition: all 0.3s ease-in-out;
}

.a-panel{
    width: 100%;       
    /* color: #262626; */
    transition: all 0.2s ease-in-out;
    opacity: 0;
    height: auto;
    max-height: 0;
    overflow: hidden;
    padding: 0px 10px;
}

/* .a-container.active .a-btn{
    color: #fff;
} */

.a-container.active .a-btn svg{
    transform: rotate(0deg);
}

.a-container.active .a-panel{               
    padding: 15px 10px 10px 10px;
    opacity: 1;
    max-height: 1000px;              
}

.a-switcher {
    position: absolute;
    top: 20px;
    right: 15px;
}

.a-switcher input{
    display: none;
}

.my-custom-check{
    display: block;
    width: 40px;
    height: 20px;
    margin-bottom: 0;
    background-color: #e3e1e8;
    /* background-color: #28a745; */
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: all 200ms ease-in-out;
}

.a-switcher input:checked ~ .my-custom-check{
    background-color: #28a745;
}
.my-custom-check::before{
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background-color: #fff;
    transition: all 200ms ease-in-out;
}

.a-switcher input:checked ~ .my-custom-check::before{
    left: 50%;
}
.a-switcher input:disabled ~ .my-custom-check{
    background-color: #a0a0a0;
}

