.swatch-options{
	padding: 1em 0;
}
.swatch-options .set{
	border: 1px solid #ccc;
    margin-bottom: -1px;
}
.accordion {
	cursor: pointer;
	padding: 0;
	display: grid;
    grid-template-columns: 1fr 200px 60px;
	background-repeat: no-repeat;
	background-position: left center;
}
.swatch-options h3{
    color: #bc8c49;
    padding-top:1em;
}
.accordion span{
	font-size:0.8em;
}
.accordion > div,
.accordion > span,
.accordion > h4{
	padding: 10px;
	background-repeat: no-repeat;
    background-position: right center;
	background-size: contain !important;
}
.accordion .toggle-symbol{
    font-size:2em;
    text-align: center;
}
.panel {
	display: none;
	overflow: hidden;
	padding: 2em;
}
.toggle-symbol {
	cursor: pointer;
	padding-left: 10px;
}
.swatches{
    position: relative;
    display: grid;
	grid-template-columns: 40% 60%;
    justify-content: start;
}
.swatches img{
	width:100%;
}
.swatches .flex-direction-nav{
	display:none;
}
.swatches .slides{	
	display:inline-block;
	padding:0;
	list-style-type: none;
	/* width:200px; */
}
.swatches .slides p{
	position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    text-align: center;
    background: #0000003d;
    color: #FFF;
    padding: 5px;
}
.swatches .flex-control-nav{	
    display: inline-block;
    position: relative;
    bottom: auto;
    /* text-align: left; */
    /* margin: 0; */
    /* padding-left: 1em; */
    /* overflow-x: auto !important; */
    /* overflow-y: auto; */
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px 15px;
    list-style-type: none;
    padding: 0 0 0 20px;
    margin: 0;
    overflow: hidden;
    align-content: baseline;
    justify-items: center;
    overflow: hidden !important;
}
.swatches .flex-control-thumbs li,
.swatches .flex-control-thumbs li:first-child{
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
	min-width: inherit;
}
.swatches .flex-control-thumbs img{	
	width: 100%;
	height: 100%;
    transition-property: border-radius;
    transition-duration: 0.15s;
    opacity: 1;
}
.swatches.round .flex-control-thumbs img{	
    border-radius: 100%;
}
.swatches .flex-control-thumbs img.flex-active{	
    border-radius: 10px;
    box-shadow: 1px 2px 10px #0000001c;
}



@media only screen and (max-device-width: 680px) {
    .swatches {
        grid-template-columns: 100%;
    }
    
    .swatches .flex-control-nav{
        grid-template-columns: repeat(5, 1fr);
        padding: 1em 0;
        gap: 5px 5px;
    }
    .accordion {
        grid-template-columns: 1fr 150px 50px;
        font-size: 0.8em;
    }
    .accordion > h4 {
        font-size: 1em;
    }
    .panel {
            padding: 0.75em;
    }
    .swatches .slides p {
        bottom:20px;
        top:inherit;
    }
}