html, body {
	height: 100%;
	background: #f2f2f2;
}
*, *:before, *:after {
	box-sizing: border-box;
}
/* Controls
---------------------------------------------------------------------- */

.controls {
	padding: 1rem;
	background: #333;
	font-size: 0.1px;
}
.control {
	position: relative;
	display: inline-block;
	width: 2.7rem;
	height: 2.7rem;
	background: #444;
	cursor: pointer;
	font-size: 0.1px;
	color: white;
	transition: background 150ms;
	    text-indent: -9999px;
}
.control:hover {
	background: #3f3f3f;
}
.control[data-filter]:after {
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	top: calc(50% - 6px);
	left: calc(50% - 6px);
	border: 2px solid currentColor;
	border-radius: 2px;
	background: currentColor;
	transition: background-color 150ms, border-color 150ms;
}
.control[data-sort]:after {
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	border-top: 2px solid;
	border-left: 2px solid;
	top: calc(50% - 6px);
	left: calc(50% - 6px);
	transform: translateY(1px) rotate(45deg);
}
.control[data-sort*=":desc"]:after {
	transform: translateY(-4px) rotate(-135deg);
}
.mixitup-control-active {
	background: #393939;
}
.mixitup-control-active[data-filter]:after {
	background: transparent;
}
.control:first-of-type {
	border-radius: 3px 0 0 3px;
}
.control:last-of-type {
	border-radius: 0 3px 3px 0;
}
.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;
}
.control[data-filter=".black"] {
	color: #000;
}
.control[data-filter=".tya"] {
	color: #79552a;
}
/* Container
---------------------------------------------------------------------- */

.container {
	padding: 1rem;
	text-align: justify;
	font-size: 0.1px;
}
.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;
	padding-bottom: 25px;
	padding-top: 25px;
}
.mix:before {
	content: '';
	display: inline-block;
}
.wrap {
	width: 100%;
	margin: 0 auto;
	color: #505050;
}
h2 {
color: #fff;
    font-size: 120%;
    text-align: left;
    padding: 20px 20px 0 20px;
    border: none;
    background: #333;
    margin: 0;

}
h1 a:link {
	text-decoration: none;
	color: #393939;
}
h1 {
	border-bottom: 1px solid #000;
	padding: 35px;
	font-family: 'Josefin Sans', sans-serif;
	text-align: center;
}
html {
	background: #f6f5f5;
}
.txt_head {
	color: #393939;
	padding: 10px;
	font-size: 11px;
	border-bottom: 1px solid;
	text-align: center;
}
.controls {
	color: #fff;
}
.all {
	color: #fff;
}
/* Grid Breakpoints
---------------------------------------------------------------------- */

/* 2 Columns */

.mix, .gap {
 width: calc(100%/2 - (((2 - 1) * 1rem) / 2));
}

/* 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));
}
}

/*.mix.green {
    color: #91e6c7;
}

.mix.pink {
    color: #d595aa;
}

.mix.blue {
    color: #5ecdde;
}*/
.mix img  {
width: 100%;
height: auto;
}
