.head-text{
    position: relative;
    display: flex;
    margin-top: 25px;
    margin-bottom: 5px;
    font-weight: bold;
	font-size: 32px;
    justify-content: center;
    z-index: 5;
}
.search-body {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 0px;
    right: 0px;
    width: 250px;
    background-color: none;
    border: 1px solid #ffffff00;
	border-radius: 6px;
}
.search-body:hover {
    background-color: rgba(255,255,255,1);
    border: 1px solid rgba(0,0,0,0.2);
}
.picture-body-category {
    display: flex;
    flex-direction: column;
    margin-bottom: 10;
}
.search-line {
    display: flex;
    flex-direction: row;
}
#search-text {
    margin: 5px;
    font-size: 18px;
    width: 200px;
    opacity: 0.1;
}
.search-body:hover #search-text {
    opacity: 1;
}
.search-icon {
    width: 25px;
    height: 25px;
    margin: 5px;
    background: url(../img/search.png);
    background-size: 100%;
    cursor: pointer;
}
.search-icon:hover {
    filter: contrast(50%);
}
.head-s-text {
    width: 100%;
	font-size: 14px;
    text-align: center;
}
.search-category-line, .search-tag-line {
    display: none;
    flex-direction: column;
    opacity: 0;
    margin: 5px;
}
.search-body:hover .search-category-line, .search-body:hover .search-tag-line {
    display: flex;
    opacity: 1;
}
.search-category-body, .search-tag-body {
    display: flex;
    flex-wrap: wrap;
}
.category-item, .tag-item, .search-item {
    margin: 5px;
    padding: 2px 10px;
    background: #eeeeee;
	font-size: 12px;
	border-radius: 6px;
	cursor: pointer;
	transition:  background 0.2s ease-in-out;
}
.category-item:hover, .tag-item:hover, .search-item:hover {
    background: #dddddd;
}
.search-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.picture-category {
    position: relative;
    font-weight: bold;
	font-size: 24px;
	margin-left: 64px;
    margin-top: 5px;
    margin-bottom: 5px;
}
.picture-category::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: -10px;
    width: 350px;
    height: 1px;
    background: black;
}
.pictures-body {
    display: flex;
    flex-direction: row;
    align-items: center;
    z-index: 1;
}
.picture-list{
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1;
    overflow: hidden;
    z-index: 1;
}
.pictures-body .arrow-right, .pictures-body .arrow-left{
    width: 64px;
    height: 64px;
    background: rgba(0,0,0,0.5);
    margin: 5px;
    cursor: pointer;
    filter: contrast(70%);
    transition:  filter 0.2s ease-in-out;
}
.pictures-body .arrow-right:hover, .pictures-body .arrow-left:hover {
    filter: contrast(100%);
}
.pictures-body .arrow-right {
    background: url("../img/ArrowRight.png");
}
.pictures-body .arrow-left {
    background: url("../img/ArrowLeft.png");
}
.picture{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 5px;
    min-width: 160px;
    cursor: pointer;
    opacity:0.8;
    transition:  transform 0.2s ease-in-out;
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9); 
    transform: scale(0.9);
}
.picture:hover {
    opacity:1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1); 
    transform: scale(1);
}
.picture-cover{
    background: rgba(0,0,0,0.3);
    margin-bottom: 5px;
    padding: 6px;
    border: 1px solid #252525;
}
.picture-image {
    height: 150px;
    width: 189px;
    background: #666666;
}
.picture-name {
    text-align: center;
}