/*------------------------------------------------------------------
accordion.css
Last edited: 8/5/22
[Table of contents]

100. MEDIA QUERIES
    100a. EXTRA SMALL DEVICES (phones 576px and up)
    100b. SMALL DEVICES (tablets, 768px and up)
    100c. MEDIUM DEVICES (desktops, 992px and up)
    100d. LARGE DEVICES (large desktops, 1200px and up)
    100e. EXTRA LARGE DEVICES (large desktops, 1400px and up)

[Notes]



-------------------------------------------------------------------*/

/* Original Band CSS
.band-accordion .card-header {
    cursor: pointer;
}
.band-accordion .card-header [class^="icon-"] {
    margin-right: 10px;
    padding: 0;
}
.band-accordion .card-header [class^="icon-"] {
    -webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.band-accordion .card-header.open [class^="icon-"] {
	color: #8bb929;
	-moz-transform: rotate(-180deg);
	-webkit-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
.band-accordion .card-header h3 {
    display: inline-block;
    margin: 0;
}
.band-accordion .btn {
    margin-top: 20px;
}*/
.band-accordion .card,
.band-accordion .card-header {
    background-color: transparent;
    border: none;
}
.band-accordion .card-header {
    align-items: start;
    cursor: pointer;
    display: flex;
    padding: 0.6rem 0;
}
.band-accordion .card-body {
    padding: 0 0 0.75rem 30px;
}
.band-accordion .card-header [class^="icon-"] {
    color: #5D5D5D;
    font-size: 16px;
    margin: 5px 10px 0 0;
    padding: 0;
    -moz-transform: rotate(-180deg);
	-webkit-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
    -webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.band-accordion .card-header.open [class^="icon-"] {
	color: #5D5D5D;
	-moz-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
}
.band-accordion .card-header h3 {
    color: #707070;
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}
.band-accordion .btn {
    margin-top: 20px;
}
/*------------------------------------------------------------------
100. MEDIA QUERIES
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
100a. EXTRA SMALL DEVICES (phones 576px and up)
-------------------------------------------------------------------*/
@media (min-width: 576px) {
    
}
/*------------------------------------------------------------------
100b. SMALL DEVICES (tablets, 768px and up)
-------------------------------------------------------------------*/
@media (min-width: 768px) {
    
}

/*------------------------------------------------------------------
100c. MEDIUM DEVICES (desktops, 992px and up)
-------------------------------------------------------------------*/
@media (min-width: 992px) {

}

/*------------------------------------------------------------------
100d. LARGE DEVICES (large desktops, 1200px and up)
-------------------------------------------------------------------*/
@media (min-width: 1200px) {
	
}

/*------------------------------------------------------------------
100e. EXTRA LARGE DEVICES (large desktops, 1400px and up)
-------------------------------------------------------------------*/
@media screen and (min-width: 1450px) {
   
}