
.OCCASION_CONTAINER{
	box-sizing: border-box;
    padding: 26px 0;
}

.DISPLAY_ORDER_CONTENT, .FILTER_CONTENT{
	width: 95%;
    border: 1px solid #EFEFEF;
    box-sizing: border-box;
    padding: 15px;
    border-radius: 4px;
    text-align: left;
    margin: 0 auto 14px auto;
}

.DISPLAY_ORDER_CONTENT h3, .FILTER_CONTENT h3{
	margin: 0 0 10px 0;
    padding: 0 0 10px 0;
	border-bottom: 1px solid #EFEFEF;
	font-size: 16px;
}

.FILTER_CONTENT h3 span{
	text-decoration: underline;
    color: var(--color--primary);
    float: right;
    font-size: 10px;
    line-height: 18px;
    cursor: pointer;
    user-select: none;
	font-weight: normal;
}

.OCCASION_ITEM{
	box-sizing: border-box;
    display: flex;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
    transition: background-color 450ms;
}

.OCCASION_ITEM label{
	cursor:pointer;
	flex: 1;
	padding: 10px 0 10px 3px;
}

.OCCASION_ITEM label small{
	font-size: 10px !important;
}

.FILTER_CONTENT .FILTER_APPLY_MOBILE{
    width: 100%;
	display:none;
}

.FILTER_CONTENT h3 button{
	float: left;
    border-radius: 3px;
    width: 40px;
    height: 31px;
    padding: 0;
    margin-right: 10px;
    display: none;
}
.FILTER_CONTENT h3 button:before {
	font-family: 'FA', sans-serif;
	font-weight: 900;
	font-size: 10px;
	content: '\f053';
}

.FILTER_CONTENT_BUTTON{
	display:none;
	width: 150px;
	float: left;
	padding: 0;
	margin: 0;
	height: 40px;
	border-radius: 3px;
	font-size: 14px;
	background-color: transparent;
	border:1px solid var(--color--primary);
	color: var(--color--primary);
}

.FILTER_CONTENT_BUTTON:before{
	font-family: 'FA', sans-serif;
    font-weight: 900;
    font-size: 12px;
    margin-right: 5px;
    content: '\f0b0';
}

.SCHECKBOX {
	position: absolute;
	opacity: 0;
	transition: background-color 500ms;
}
.SCHECKBOX + label {
	position: relative;
	cursor: pointer;
	padding: 10px 0 10px 4px;
	user-select: none;
}
.SCHECKBOX + label:before {
	content: "";
	margin-right: 5px;
	display: inline-block;
	vertical-align: text-top;
	width: 18px;
	height: 18px;
	background: #EFEFEF;
	border-radius: 3px;
}
.SCHECKBOX:hover + label:before {
	background: #80000f33;
}

.SCHECKBOX:checked + label:before {
	background: var(--color--primary);
}
.SCHECKBOX:disabled + label {
	color: #b8b8b8;
	cursor: auto;
}
.SCHECKBOX:disabled + label:before {
	box-shadow: none;
	background: #ddd;
}
.SCHECKBOX:checked + label:after {
	position: absolute;
    left: 8px;
    top: 15px;
    font-family: 'FA', sans-serif;
    font-weight: 900;
    font-size: 9px;
    content: '\f00c';
    color: white;
}

@media (max-width: 999px){
	.OCCASION_CONTAINER{
		padding:15px 10px 0 10px;
		overflow: hidden;
	}
	.DISPLAY_ORDER_CONTENT{
		float: right;
		width: 150px;
		padding: 0;
		border-radius: 3px;
		position: relative;
	}
	.DISPLAY_ORDER_CONTENT h3{
		font-size: 10px;
		margin: 0;
		padding: 5px 0 0 9px;
		border: none;
		position: absolute;
		z-index: 0;
	}
	.DISPLAY_ORDER_CONTENT select{
		width: 96%;
		padding: 14px 5px 5px 5px;
		margin: 0;
		background-color: transparent;
		z-index: 1;
		position: relative;
	}
	.FILTER_CONTENT{
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		left: 100%;
		z-index: 999990;
		overflow:hidden;
		background-color: white;
		border-radius: 0;
		border:none;
		display: flex;
    	flex-direction: column;
		transition: left 250ms ease-out;
	}
	.FILTER_CONTENT.ACTIVE{
		left: 0;
	}
	.FILTER_CONTENT_BUTTON{
		display:block;
	}
	.OCCASION_ITEM {
		border-top: 1px solid #EFEFEF;
	}
	.FILTER_CONTENT h3{
		margin: 0 0 10px 0;
		padding: 10px 0 20px 0;
		line-height: 30px;
		font-size: 19px;
	}
	.FILTER_CONTENT h3 button{
		display:block;
	}
	.FILTER_CONTENT .FILTER_APPLY_MOBILE{
		display:block;
	}
	.FILTER_CONTENT h3 span{
		font-size: 14px;
		line-height: 32px;
	}
	.SCHECKBOX + label {
		padding: 20px 0 20px 4px;
	}
	.SCHECKBOX:checked + label:after{
		top: 25px;
	}
	.FILTER_SCROLL{
		flex: 1;
		overflow-y: auto;
		overflow-x: hidden;
		position: relative;
	}
}

.FILTER_SCROLL button{
	background-color: var(--color--secondary) !important;
}

.PRODUCTS_SCREEN_EMPTY_LIST a:LINK,
.PRODUCTS_SCREEN_EMPTY_LIST a:VISITED,
.PRODUCTS_SCREEN_EMPTY_LIST a:ACTIVE,
.PRODUCTS_SCREEN_EMPTY_LIST a:HOVER {
	margin-top: 10px;
	color: rgba(150,150,150);
	font-size: 14px;
}

.INCREASE_BUTTON{
	padding:0 5px;
}

.INCREASE_BUTTON button{
	/* border-radius: 12px; */
	border-radius: 3px;
    border: 1px solid var(--color--primary);
    background-color: transparent;
    color: var(--color--primary);
    font-size: 14px;
    padding: 10px;
    max-width: 710px;

}

.group-descr {
    display: flex;
    flex-direction: row;
    min-height: 240px;
    padding: 10px 5px;
}

.group-descr__theme {
	background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    min-height: 200px;
    width: 400px;
}

.group-descr__text {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    flex: 1;
    justify-content: center;
    padding: 5px 30px;
}

.group-descr__content {
	text-align: left;
    width: 100%;
}

@media (max-width: 999px) {
    .group-descr {
        flex-direction: column;
    }

    .group-descr__theme {
		background-color: #EFEFEF;
		border-radius: 3px;
		box-shadow: 
			2.7px 2.7px 5.3px rgba(0, 0, 0, 0.012), 
			8.9px 8.9px 17.9px rgba(0, 0, 0, 0.018), 
			40px 40px 80px rgba(0, 0, 0, 0.03);
        width: 100%;
    }
	
    .group-descr__text {
        padding: 0 10px;
    }
}