.size-guide-modal{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
}

.size-guide-modal .bg-overlay{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(11, 11, 11, 0.6);
}
.size-guide-modal .inner-modal{
	position: absolute;
	top: 120px;
	left: 20px;
	right: 20px;
	height: calc(100% - 240px);
	background-color: #fff;
	max-width: 900px;
	margin: 0 auto;
	z-index: 9;
	padding: 60px;
	overflow-y: auto;
	overflow-x: hidden;
	-ms-overflow-style: none;
  	scrollbar-width: none;
}

.size-guide-modal.is-panel{
	opacity: 0;
	visibility: hidden;
	display: inherit;
}

.size-guide-modal.is-panel .inner-modal{
	top: 0;
	right: 0;
	left: auto;
	height: 100%;
	max-width: 460px;
	width: calc(100% - 32px);
	padding: 24px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	transform: translateX(100%);
}

body.admin-bar .size-guide-modal.is-panel .inner-modal{
	top: 32px;
	height: calc(100% - 32px);
}

.size-guide-modal.is-open,
.size-guide-modal.is-open .bg-overlay{
	opacity: 1;
	visibility: visible;
}

.size-guide-modal.is-panel.is-open .inner-modal{
	transform: translateX(0);
}

.size-guide-modal .inner-modal::-webkit-scrollbar {
  	display: none;
}

.size-guide-modal .button-close{
	position: absolute;
	top: 0;
	right: 0;
	background-color: #111;
	height: 40px;
	width: 40px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.size-guide-modal .button-close svg path{
	fill: #fff;
}

.size-guide-modal .modal-content table{
	width: 100%;
}

.size-guide-button{
	display: inline-block;
	border-bottom: 1px solid;
	color: #555;
}

.woocommerce-variation-add-to-cart > .product-size-guide{
	margin-bottom: 15px;
}

@media (max-width: 767px){
	.size-guide-modal .inner-modal{
		padding: 60px 20px 20px;
	}
}