html,
body {
    height: 100%;
    background: #f2f2f2;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

/* Controls
---------------------------------------------------------------------- */

.controls {
	min-height:140px;
    padding: 1rem;
    background: #333;
    font-size: 0.1px;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	align-content:space-around;
}

.all{
	font-weight:bold;
}

.control {
    /*position: relative;*/
    display: inline-block;
    width:100px;
    height: 2rem;
background-color:rgba(237,237,237,0.5);
    cursor: pointer;
    color:#696969;
    transition: background 150ms;
	box-sizing:border-box;
}

.control:hover {
}




/*
.mixitup-control-active {
    background: #393939;
}

.mixitup-control-active[data-filter]:after {
    background: transparent;
}


.control[data-filter] + .control[data-sort] {
    /*margin-left: .75rem;*/
}

.control[data-filter=".green"] {
    color: #91e6c7;
}

.control[data-filter=".blue"] {
    color: #5ecdde;
}

.control[data-filter=".pink"] {
    color: #d595aa;
}

.control[data-filter="none"] {
    color: #2f2f2f;
}

/* Container
---------------------------------------------------------------------- */

.container {
    text-align: justify;
}

.container:after {
    content: '';
    display: inline-block;
    width: 100%;
}

/* Target Elements
---------------------------------------------------------------------- */

.mix,
.gap {
    display: inline-block;
    vertical-align: top;
}

.mix {
    background: #fff;
    border-top: .5rem solid currentColor;
    border-radius: 2px;
    margin-bottom: 1rem;
    position: relative;
}

.mix:before {
    content: '';
    display: inline-block;
}

.mix.green {
}

.mix.pink {
}

.mix.blue {
}

/* Grid Breakpoints
---------------------------------------------------------------------- */

/* 2 Columns */

.mix,
.gap {
/*    width: calc(100%/1 - (((2 - 1) * 1rem) / 2));*/
	width:100%;
}

/* 3 Columns */
/*
@media screen and (min-width: 541px) {
    .mix,
    .gap {
        width: calc(100%/3 - (((3 - 1) * 1rem) / 3));
    }
}
*/
/* 4 Columns */

@media screen and (min-width: 961px) {
    .mix,
    .gap {
        width: calc(100%/4 - (((4 - 1) * 1rem) / 4));
    }
}

/* 5 Columns */

@media screen and (min-width: 1281px) {
    .mix,
    .gap {
        width: calc(100%/5 - (((5 - 1) * 1rem) / 5));
    }
}


/* Grid Breakpoints
---------------------------------------------------------------------- */

/* main css */

#sort_box{
	margin:10px;
	border:1px solid #cdcdcd;
}

#sort_title_box{
	padding:2px 10px 2px 10px;
	background-color:#ffffff;
	border-bottom:1px solid #cdcdcd;
	display:flex;
	-webkit-box-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	align-items: center;
}

.sort_title{
	font-size:15px;
	font-weight:bold;
	color:#696969;
}

#menu {
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	flex-wrap: wrap;
	padding: 5px 0;
	background-color:#ffffff;
}

#menu div {
	border-radius:4px;

	margin:3px 3px;
	display: inline-block;
	position: relative;
	/*height:43px;*/
	width:100px;
	display:flex;
	align-items:center;
	justify-content:center;
}

#menu span {
	width:100px;
	display: flex;
	cursor: pointer;
	align-items:center;
	justify-content:center;
	border:1px solid #cdcdcd;
	border-radius:3px;
	background-color:rgba(237,237,237,0.5);
	height:25px;
	font-size:12px;
	font-weight:bold;
	color:#696969;
}

/*
.selected {
    color: #000;
}*/

#menu ul {
    display: none;
    position: absolute;
    top: 44px;
    padding: 2px 0;
	box-sizing:border-box;
    border: 1px solid #d8d8d8;
    background: #fff;
    box-shadow: 2px 2px 1px 1px rgba(0, 0, 0, 0.1);
	z-index:9999;
}

#menu li {
	list-style:none;
    padding: 2px 0;
}


.storebtn {
  padding:0 20px;
  text-align:center;
}

.storebtn img{
  width:65%;
}