/************************Compare Box********************************/
.compBoxBtn{
	width: 70px;
	height: 70px;
	position: fixed;
	bottom: 100px;
	right: 0px;
	background: #009646;
	box-shadow: 0px 0px 6px 3px rgba(0,0,0,0.2);
	z-index: 9999;
	border-radius: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2em;
	color: #fff;
	transition: 0.2s ease-in-out;
	cursor: pointer;
}

.compBoxBtn:hover{
	width: 65px;
	height: 65px;
}


.compBox{
	width: 350px;
	height: 400px;
	position: fixed;
	bottom: 40px;
	right: 20px;
	background: #fff;
	box-shadow: 0px 0px 6px 3px rgba(0,0,0,0.2);
	z-index: 999999999999999;
	border-radius: 10px;
	overflow: hidden;
	display: none;
}

.compBoxHead{
	width: 100%;
	height: 50px;
	background: #000000;
	display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    color: #fff;
    padding: 0px 10px;
}
.compBoxHead h3{
	font-size: 20px!important;
    color: #fff;
}
.comploseCBox{
	background: transparent;
	border: none;
	outline: none;
	color: #fff;
	cursor: pointer;
	margin:0px;
}
.compBoxBody{
	width: 100%;
	height: 300px;
	overflow-y: scroll;
}
.compBoxBody::-webkit-scrollbar {
    display: none;
}

.compProDiv{
	padding: 10px;
}

.ccProCat{
	width: 100%;
}
.ccProCat h6{
	font-size: 18px;
	border-bottom: 1px solid #eee;
	margin-bottom: 5px;
}

.compProUL{
	width: 100%;
	list-style-type: none;
	margin-bottom: 20px;
}
.compProLI{
	width: 100%;
	margin-bottom: 10px;
	border: 1px solid #eee;
	padding: 2px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.compProImg{
	width: 20%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.compProImg label {
	display: inline-block;
	width:100%;
	margin-bottom: 0px;
}
.compProImg input[type="checkbox"] {
	display: none;
}

.compProImg input[type="checkbox"]:checked + label {
	border: solid 5px #009646;
	color:#fff;
	cursor: pointer;
}

.proNameAndPrice{
	width: 70%
}
.proNameAndPrice a{
	color: #000;
	text-decoration: none;
	font-size: 15px;
}
.remPro{
	width: 5%;
	cursor: pointer;
	color: #d03838;
}

.compBoxFoot{
	width: 100%;
	height: 50px;
	display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 2px 6px 3px rgba(0,0,0,0.2);
}

.compFinal{
	width: 100%;
	height:50px;
	background: #000000;
	color: #fff;
	border: none;
	outline: none;
	cursor: pointer;
	margin: 0px;
}


.compTable{
	width: 100%;
}

.compTable table{
	/*width: 100%;*/
	border-collapse:collapse;
	/*white-space: nowrap;*/
	/*overflow-x: scroll;*/
}

.compTable table th{
	border:1px solid #ccc;
	padding: 10px;
	white-space: nowrap;
	font-family: 'Abel', sans-serif;
	max-width: 200px !important;
	min-width: 200px !important;
}

.compTable table td{
	border:1px solid #ccc;
	padding: 10px;
	white-space: nowrap;
	font-family: 'Abel', sans-serif;
	max-width: 200px !important;
	min-width: 200px !important;
	font-size: 12px!important;
}
.compTable table{
	border:none;
}

.compTable table::-webkit-scrollbar {
  display: none;
}


@media screen and (max-width:768px) {
	.compBox{
		width: 80%;
	}
}
