﻿.accordion {
    text-align: right !important;
    background-color: #39548194;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    border-radius: 10px;
    margin-bottom: .8rem;
}
    .accordion.active{
        margin-bottom:0;
    }
    /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
    .active, .accordion:hover {
        background: linear-gradient(to left, #b34cb3, #2a3d5f);
        transition-duration: .8s;
    }
.panel p{
    margin:0;
}
/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 10px 18px;
    background-color: #151f30;
    display: none;
    overflow: hidden;
    border-radius: 5px 5px 10px 10px;
    margin-bottom: .8rem;
}
