.accordion {
    color: #444;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.1s;
}

/* 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-color: transparent;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 0px;
    height: 0;
    overflow: hidden;
    transition: all 0.2s ease-out;
}

.horizontal_alignment{
    display: flex;
}

.horizontal_alignment_item{
    margin-right: 10px;
    max-width: 280px;
    width: 100%;
}

.horizontal_scroll{
    width: 100%;
	  overflow-x: auto;
}
