html{
	height: 100%;
}
body{
	min-height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.witrfm_area{
	margin-top: auto;
}

.c-login-form{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.c-login-form form{
	width: 80%;
	max-width: 500px;
	display: flex;
	flex-direction: column;
}

.c-login-form form input{
	border: solid 1px rgb(118, 118, 118);
	border-radius: 4px;
	flex-direction: column;
}

.c-login-form form label{
	margin-bottom: 0;
	margin-top: .5rem;
}

.c-flex-between{
	display: flex;
	justify-content: space-between
}

.c-btnlogout{
	border: none;
    display: block;
    font-size: 16px;
    margin-left: 20px;
    font-weight: 500;
    border-radius: 0;
	padding: 11px 11px;
    color: #fff;
    background: #025cd6;
}
input.c-btnlogout{
	padding: 15px 15px;
}

.alert-text{
	color: #dd3333;
}

.warn-text{
	color: #bb7537;
}

.app-head-message{
	text-align: center;
	width: 100%;
	font-size: 1.3em;
	grid-area: message;
	border-bottom: solid 1px;
	padding: 5px 0;
}

.app-head-message > *{
	margin-bottom: 0;
}

.app-head-message.success{
	background-color: #c7ffc4;
	color: #055c00;
	border-color: #b0ffaa;
}

.app-head-message.error{
	background-color: #ffc4c4;
	color: #5c0000;
	border-color: #ffaaaa;
}


.c-partner-category,
.c-review-category {
	height: 70px;
	display: flex;
	align-items: center;
}

.c-partner-category:hover,
.c-review-category:hover {
	background-color: #dadada;
}

.c-partner-category > h2,
.c-review-category > h2 {
	margin: 0;
	color: #8f8f8f;
}
.c-partner-category > img,
.c-review-category > img {
	max-height: 60px;
	max-width: 60px;
	margin: 5px;
}

.c-partner-category-content,
.c-review-category-content{
	margin-bottom: 10px;
}

.c-partner-category-content img,
.c-review-category-content img{
	max-height: 100px;
	max-width: 100px;
}

.c-expandable + .c-expandable-content{
	max-height: 0px;
	overflow: hidden;
	transition: all 0.25s ease;
}

.c-expandable[open] + .c-expandable-content{
	max-height: 310px;
	overflow-y: auto;
}


.full-screen-blocker{
	position: fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #0002;
}

.full-screen-blocker > *{
	max-width: 100%;
	max-height: 100%;
}

.menu-item-has-children > .menu-item-sub-menu-holder,
.menu-item-has-children > .sub-menu{
	pointer-events: none;
}

.menu-item-sub-menu-holder
{
	width: 240px;
    position: absolute;
    top: 80%;
    left: 0px;
    height: 50%;
	background-color: rgba(0,0,0,0.0001);
	z-index: 5;
}

.menu-item-has-children:hover > .menu-item-sub-menu-holder,
.menu-item-has-children:hover > .sub-menu,
.menu-item-sub-menu-holder:hover + .sub-menu{
	pointer-events: inherit;
}

.singleSS{
	position: relative;
}

.detail_SS{
	margin-bottom: 80px;
}
.singleSS .service-btn{
	position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.revertStyle li{
	list-style: unset;
}

.revertStyle i, .revertStyle em{
	font-style: italic;
}

.revertStyle ul{
	padding: revert;
}