body {
	background-color: #ffffff;
}
header {
	position: fixed;
}

.catalog-page {
	color: #000000;
	max-width: 1194px;
	padding: 0;
	padding-top: 20px;
	margin-top: 65px;
}
.catalog-page .title {
	font-size: 35px;
	line-height: normal;
	font-weight: 700;
	padding: 20px 0 30px;
}
.catalog-page .top {
	display: flex;
	align-items: center;
}
.catalog-page .top a {
	    width: 200px;
    height: 50px;
    margin: 0 0 0 auto;
    background-color: #fbd000;
    display: flex;
    align-items: center;
    padding: 0 25px;
    border-radius: 10px;
}
.catalog-page .top a img {
    height: 34px;
    width: auto;
    margin-right: 10px;
}
.catalog-page .top a p {
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
}
.catalog {
	margin-right: -13px;
	margin-left: -13px;
}
.single-cat {
	padding-left: 13px;
	padding-right: 13px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    position: relative;
    overflow: hidden;
        display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}
.cat-header {
	background-color: #333a3f;
	display: flex;
	justify-content: center;
	align-items: center;
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
	min-height: 85px;
}
.cat-header h2 {
	font-size: 26px;
	line-height: 26px;
	color: #ffffff;
	padding: 15px;
	text-align: center;
}
.cat-body {
	background-color: #f2f5fe;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	height: 100%;
	overflow: hidden;
}
.click-block {
	display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    position: relative;
    z-index: 2;
    background-color: #fbd000;
    border-bottom: 1px solid #b1b8ce;
}
.double .click-block {
	padding: 15px 25px 15px 55px;
	background-color: #bcb69b;
}
.double .child-cat a {
	padding-left: 88px;
    width: 340px;
    max-width: 100%;
}
.click-block h3 {
    font-size: 15px;
    line-height: 15px;
    font-weight: 700;
}
.click-block img {
    height: 12px;
    width: auto;
    margin-left: 13px;
    transition: all .3s;
    transform: rotate(90deg);
    transition: all .3s;
}
.click-block.collapsed {
	 background-color: inherit;
}
.click-block.collapsed img {
    transform: rotate(0deg);
}
.child-cat:first-child {
	border-top: none;
}
.child-cat:last-child {
	
}
.child-cat {
	height: 48px;
	border-top: 1px solid #b1b8ce;
	background-color: #cfd4e4;
	transition: all .3s;
}
.child-cat:hover {
	background-color: #333a3f;
	color: #ffffff;
}
.child-cat a {
	width: 300px;
	height: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding-left: 50px;
	font-size: 14px;
	line-height: 14px;
	font-weight: 500;

}
.child-cat a:hover {
	text-decoration: none;
}

.cat-all {
	text-align: center;
}
.cat-all a {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fbd000;
	border-radius: 25px;
	width: 215px;
	height: 50px;
	font-weight: 700;
	font-size: 16px;
	line-height: 16px;
	margin: 25px auto 0;
}

.cat-link {
	display: block;
	font-size: 15px;
	line-height: 15px;
	font-weight: 700;
	padding: 20px 30px 0;
}
.cat-link:hover {
	color: #7d6800;
}
.single:last-child .cat-link {
	padding-bottom: 20px;
}
.prod-list {
	height: auto;
}





@media (max-width: 1200px) {
	.catalog-page .top {
		padding: 0 20px;
	}
}



@media (max-width: 600px){
	.catalog-page .top {
	    flex-wrap: wrap;
	    justify-content: flex-start;
	}
	.single-cat {
		
		max-width: 100%;
	    margin-right: 20px;
    	margin-left: 20px;
	}
	.catalog-page .top a {
		
		margin: 0 0 30px;
	}
}