.btn[disabled],
.btn[disabled]:hover {
	background-color: #a1a1ae;
}

table.dataTable thead th,
table.dataTable tfoot th {
    color: #fff !important;
}

.overflow {
	position: fixed;
	width: 100vw;
	height: 100vh;
	background: #000000c0;
	z-index: 20;
	opacity: 0;
	z-index: -1;
}

.overflow.show {
	opacity: 1;
	z-index: 20;
}

#de-cart {
	position: fixed;
	right: 0;
	top: calc((100vh - 80px) / 2);
	padding: 0.75rem 1rem;
	font-size: 0.875rem;
	background-color: #5ea087;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 0;
	outline: none;
	box-shadow: none;
	color: white;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	z-index: 18;
}

@media screen and (max-width: 567px) {
	#de-cart {
		top: 20px;
	}
}

#de-cart .de-row {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.5rem;
}

#de-cart .de-row:first-child {
	margin-bottom: 5px;
}

#de-cart #de-cart__total {
	width: 100%;
	text-align: center;
	padding: 0.325rem 0.85rem;
	border-radius: 5px;
	display: flex;
	flex-grow: 1;
	font-size: 0.875rem;
	font-weight: bold;
	color: #003764;
	background-color: #ffffff;
}

.de-cart__detail {
	position: fixed;
	top: 0;
	right: -400px;
	width: 400px;
	height: 100vh;
	background-color: #ffffff;
	z-index: 100;
	text-align: center;
	transition: all 0.3s ease-in-out;
}

.de-cart__detail.show {
	right: 0;
}

@media screen and (max-width: 420px) {
	.de-cart__detail {
		width: 100vw;
		right: -100vw;
	}
}

.de-cart__detail .cart-item {
	display: flex;
	align-items: center;
	font-size: 0.85rem;
	line-height: 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid #d8d3d856;
	margin-bottom: 0.75rem;
	gap: 0.25rem;
	color: #a49c9c;
}

.de-cart__detail .cart-item img {
	width: 80px;
	height: 80px;
	border-radius: 5px;
	object-fit: cover;
	margin-right: 5px;
}

.de-cart__detail .cart-item .main {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.de-cart__detail .cart-item strong {
	margin-left: auto;
	color: #7b777b;
	margin-right: 5px;
}

.de-cart__detail .cart-item .main h3 {
	text-transform: capitalize;
	margin-bottom: 0.75rem;
	line-height: 1.25rem;
	font-size: 1rem;
	text-align: left;
	color: black;
}

.de-cart__detail .cart-item .main span.qty {
	margin-bottom: 0.5rem;
}

.de-cart__detail .head {
	display: flex;
	flex-direction: row;
	align-items: center;
	height: 64px;
	padding: 0 1.25rem;
	border-bottom: 1px solid #d8d3d8;
}

.de-cart__detail .foot {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 64px;
	padding: 0 1.25rem;
	border-top: 1px solid #d8d3d8;
}

.de-cart__detail .foot .btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 50px;
}

.de-cart__detail .head > i:first-child {
	margin-right: 0.85rem;
	transform: rotate(-15deg);
}

.de-cart__detail .head h4 {
	margin-bottom: 0;
}

.de-cart__detail .head #de-close {
	font-size: 1.25rem;
	cursor: pointer;
	margin-left: auto;
	width: 30px;
	height: 30px;
	border-radius: 30px;
	background-color: #e6e6e6;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.de-cart__detail #cart-detail {
	padding: 1.25rem;
	height: calc(100vh - 65px - 65px);
	overflow-y: auto;
}

.de-cart__detail #cart-detail .table .de-remove__btn {
	padding: 1.25rem;
}

.de-cart__detail #cart-detail.empty {
	height: calc(100vh - 65px - 65px);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 2rem;
}

.de-cart__detail #cart-detail.empty i {
	font-size: 10rem;
	opacity: 0.35;
}

.de-order_form > label {
	font-size: 14px;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.de-sizes .item {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.de-sizes .item .item__head {
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	font-family: "Montserrat", sans-serif;
	color: #1d1d1d;
	margin-bottom: 0;
	display: inline-flex;
}

.de-sizes .item .item__head::after {
	content: ":";
	margin-right: 5px;
}

.de-sizes .item .item__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: inline-flex;
}

.de-sizes .item .item__list li {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 14px;
	font-weight: 400;
	color: #003764;
	width: 45px;
	height: 45px;
	margin-left: 5px;
	border-radius: 2px;
	border: 1px solid #e4e7ed;
	cursor: pointer;
	user-select: none;
}

@media screen and (max-width: 500px) {
	.de-sizes .item .item__list li {
        font-size: 11px;
		width: 35px;
		height: 35px;
	}
}

.de-sizes .item.glove .item__list li {
	width: 45px;
}

.de-sizes .item .item__list li.active {
	background-color: #003764;
	border-color: 1px solid #003764;
	color: #ffffff;
}

.de-sizes .de-sizes__cart .de-btn__cart {
	border: 0;
	outline: none;
	box-shadow: none;
	border-radius: 5px;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
	transition: all 0.3s ease-in-out;
}

/* .de-sizes .de-sizes__cart .de-btn__cart:hover {
    background: #003764;
    color: #ffffff;
} */

.de-sizes .de-sizes__cart .de-btn__control {
	border: 0;
	outline: none;
	box-shadow: none;
	width: 110px;
	display: none;
	align-items: center;
	justify-content: center;
	background: #003764;
	color: #ffffff;
	border-radius: 5px;
	padding: 0 0;
}

.de-sizes .de-sizes__cart .de-btn__control i {
	background-color: #003764;
	border: 2px solid #003764;
	transition: all 0.3s ease-in-out;
	font-size: 0.875rem;
	/* line-height: 1.25rem; */
	padding: 0.75rem 0.825rem;
	cursor: pointer;
}

.de-sizes .de-sizes__cart .de-btn__control i:hover {
	background-color: #1a4494;
	border-color: #1a4494;
}

.de-sizes .de-sizes__cart .de-btn__control i:first-child {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.de-sizes .de-sizes__cart .de-btn__control i:last-child {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

.de-sizes .de-sizes__cart .de-btn__control input {
	width: auto;
	text-align: center;
	background-color: transparent;
	border: 0;
	box-shadow: none;
	/* height: 1.25rem; */
	flex-grow: 1;
	color: white;
	font-weight: 600;
}

.de-sizes .de-sizes__cart .de-btn__control input:focus {
	border: 0;
	box-shadow: none;
	outline: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type="number"] {
	-moz-appearance: textfield;
}

.de-number .de-number__control span {
	display: inline-block;
	height: 30px;
	width: 30px;
	text-align: center;
	align-self: center;
	border: 1px solid #e4e7ed;
	background-color: #e4e7ed;
	user-select: none;
	cursor: pointer;
}

.de-number .de-number__control input:active,
.de-number .de-number__control input:focus {
	outline: none;
	box-shadow: none;
	border-color: #808080;
}

.table tr th,
.table tr td {
	text-transform: capitalize;
	text-align: left;
	font-size: 1.25rem;
	line-height: 1.875rem;
	padding: 0.625rem;
}

.de-remove__btn {
	background: #f34141;
	color: #ffffff;
	border-radius: 25px;
	width: 25px;
	height: 25px;
	font-size: 0.875rem;
	border: 0;
	box-shadow: 0;
	outline: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-color: #f34141;
}

.bg-dark {
	background-color: #656565 !important;
}

.bg-highlight {
	background-color: #fccd01 !important;
}

.text-dark {
	color: #003764 !important;
}

.text-highlight {
	color: #fccd01 !important;
}

ol.terms-list {
	/* margin-left: 0;
    padding-left: 0; */
	/* list-style-type: decimal; */
}

ol.terms-list li {
	list-style-type: decimal;
	margin: 0.125rem 0;
}

ol.terms-list li ul {
	margin-left: 1.5rem;
}

ol.terms-list li ul li {
	list-style-type: disc;
}

ol.terms-list li ul li ul li {
	list-style-type: circle;
}
