/**
 * ILM Size Chart act as Size guide for Prestashop store. Admin Can configure the Size chart in 4 different type all information explained in the Document or You can view a demo.
 *
 * @author    Abdullah Ahamed
 * @copyright Copyright (c) 2023 ILM Tech. All rights reserved.
 * @license   GNU General Public License version 2 or later
 * @site                https://www.ilmtech.in
 * @contact             support@ilmtech.in

 */
.ilmsize {
	border: 1px solid #e6e6e6;
	padding: 6px;
	font-weight: bold;
}

.ilmsize p {
	background: #e6e6e6;
	letter-spacing: 1px;
	padding: 6px 12px;
	margin-bottom: 5px;
}

.ilmsize table {
	margin-bottom: 0;
	min-width: 200px;
}

.ilmsize table tr td {
	border: none;
	padding: 6px 12px;
	border-left: 3px solid #fff;
	border-right: 3px solid #fff;
}

.ilmsize table tr td:last-child {
	border-right: none;
}

.ilmsize table tr td:first-child {
	border-left: none;
}

.ilmsize .ilmrow,
.ilmsize .ilmcol {
	background: #e6e6e6;
}

.ilmsize .ilmcol {
	border-bottom: 5px solid #fff;
}

.ilmsize .hover {
	background-color: #eee;
}

.ilmsize .hover .ilmrow,
.ilmsize .hover td:hover,
.ilmsize .ilmcol.hover {
	background: #ff9e7c;
}

#ilm_size_chart {
	margin-top: 10px;
}

.custom_text {
	width: auto;
}

/* #ilmChartTable img{
    width: 100%;
} */
#btn_popup {
	margin-top: 10px;
	padding: 5px 10px;
	border-radius: 2px;
	display: flex;
	align-items: center;
}

#btn_popup img {
	width: 35px;
	height: 35px;
	margin-right: 10px;
}

#ilmpopup .modal-dialog {
	max-width: 100% !important;
}

#ilmpopup .modal-dialog span.button {
	position: absolute;
	right: -15px;
	width: 30px;
	height: 30px;
	border-radius: 50px;
	top: -15px;
	background: #222;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	font-weight: bold;
	cursor: pointer;
}

#ilmChartTable .convert_unit {
	float: right;
	width: 100px;
	border-radius: 3px;
	background-color: #fff;
}

/* #ilmChartTable .custom_text{
    overflow: hidden;
} */
#ilmChartTable {
	margin-top: 10px;
	overflow: auto;
}

.td_header {
	font-weight: bold;
}

.size_chart_table tr:nth-child(2n+3) td {
	background: #e5e5e5;
}

.size_chart_table tr:first-child .td_header {
	background-color: #b4dbdf;
}

.size_chart_table td {
	text-align: center;
}

.ilm_size_chart.hide {
	display: none !important;
}
.ilmhide{
	display: none !important;
}

#ilmChartTable .row {
	margin: 0 !important;
}

/* Mouse Scroll */
#ilmChartTable {
	position: relative;
}

#ilmsizeleft {
	position: fixed;
	right: 45px;
	z-index: 50;
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}

#ilmsizeright {
	position: fixed;
	right: 10px;
	z-index: 50;
}