/* Main ID wrapper for shortcode */
#sws-acc-shortcode {
	margin-bottom: 20px;
}

/* Style the element that is used to open and close the accordion class */
.sws-accordion {
    color: #333;
    cursor: pointer;
    padding: 18px;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    margin-bottom:10px;
	border: 2px solid var( --e-global-color-primary );
	font-weight: 500;
	-webkit-box-shadow: 0px 0px 4px 2px rgba(0,0,0,0.36);
	box-shadow: 0px 0px 4px 2px rgba(0,0,0,0.36);
}

/* Add a background color to the accordion if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.sws-accordion.active, .sws-accordion:hover {
    background-color: var( --e-global-color-primary );
	color: #fff
}

/* Unicode character for "plus" sign (+) */
.sws-accordion:after {
    content: '\2795\fe0e'; 
    font-size: 20px;
    float: right;
    margin-left: 5px;
}

/* Unicode character for "minus" sign (-) */
.sws-accordion.active:after {
    content: "\2796\fe0e"; 
}

/* Style the element that is used for the panel class */
.sws-panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease-in-out;
    opacity: 0;
    /*margin-bottom:10px 0;*/
}

/* Inner pannel div */
.sws-panel-inner {
	display: block;
	margin-bottom: 20px;
	margin-top: 10px;
}

/* when the panel is active */
.sws-panel.show {
    opacity: 1;
    max-height: max-content; /* Whatever you like, as long as its more than the height of the content (on all screen sizes) */
}

