.pb-center-column.floating #stock_store_checker {
	display: none;
}

#stock_store_checker {
	text-align: center;
    margin-top: 20px;
}
#stock_store_checker > span {
	font-size: 14px;
	font-weight: 500;
}
#stock_store_checker #stock_store_modal_opener {
	cursor: pointer;
	margin-left: 10px;
	text-decoration: underline;
	font-weight: 700;
}

#stock_store_modal_container {
	z-index: 999;
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.2);
}

#stock_store_modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 800px;
	width: 90%;
	padding: 20px 25px;
	background-color: white;
	border-radius: 10px;
}

#stock_store_modal .product_info_container {
	display: flex;
	column-gap: 30px;
	margin-bottom: 25px;
	padding-bottom: 20px;
	border-bottom: 1px solid #dadada;
}

#stock_store_modal .left-column,
#stock_store_modal .right-column {
	width: 50%;
}

#stock_store_modal .stock_store_modal_close{
	display: flex;
	justify-content: flex-end;
}

#stock_store_modal .stock_store_modal_close .fa-close{
	font-size: 18px;
	color: #116426;
	padding: 2.5px;
	cursor: pointer;
}

#stock_store_modal .product_info {
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 5px 0;
	border: 2px solid #116426;
	border-radius: 5px;
}

#stock_store_modal .product_info .product_name {
	max-width: 180px;
	font-weight: bold;
}

#stock_store_modal .product_info .product_price {
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin-bottom: 0;
}

#stock_store_modal .product_info .product_price .current_price {
	color: red;
}

#stock_store_modal .product_info .product_price .regular_price {
	text-decoration: line-through;
	color: #999;
}

#stock_store_modal .product_sizes_container .product_sizes_title {
	font-weight: bold;
	color: #116426;
}

#stock_store_modal .product_sizes_container .product_sizes {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	row-gap: 10px;
}

#stock_store_modal .product_sizes_container .product_sizes .size {
	cursor: pointer;
	width: 30px;
	height: 30px;
	border: 1px solid #116426;
	border-radius: 50%;
	line-height: 28px;
	text-align: center;
}

#stock_store_modal .product_sizes_container .product_sizes .size.selected {
	background-color: #116426;
	color: white;
}

#stock_store_modal .product_sizes_container .product_sizes .size.oos {
	cursor: default;
	border-color: #999;
	color: #999;
}

#stock_store_modal #stock_store_search_message {
	text-align: center;
	color: #999;
}

#stock_store_modal #store_list_container {
	display: flex;
	column-gap: 30px;
}

#stock_store_modal #store_list_container .store_search_container {
	display: flex;
	margin-bottom: 16px;
	border-bottom: 1px solid black;
}

#stock_store_modal #store_list_container .store_search_container #store_search {
	width: 100%;
	border: 0;
}

#stock_store_modal #store_list_container .store_search_container #store_search::placeholder {
	text-transform: uppercase;
}

#stock_store_modal #store_list {
	max-height: 300px;
	overflow-y: auto;
	padding-right: 20px;
}

#stock_store_modal #store_list::-webkit-scrollbar {
	width: 10px;
}

#stock_store_modal #store_list::-webkit-scrollbar-button {
	display: none;
}

#stock_store_modal #store_list::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: #dadada;
}

#stock_store_modal #store_list::-webkit-scrollbar-track {
	background-color: white;
}

#stock_store_modal #store_list .store {
	cursor: default;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

#stock_store_modal #store_list .store + .store {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid #dadada;
}

#stock_store_modal #store_list .store .store_info {
	width: 70%;
}

#stock_store_modal #store_list .store .store_sizes {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	width: 30%;
}

#stock_store_modal #store_list .store .store_sizes span {
	width: 33%;
	text-align: right;
	font-weight: bold;
}

#stock_store_modal #store_list .store .store_name,
#stock_store_modal #store_list .store .store_address {
	margin-bottom: 0;
}

#stock_store_modal #store_list .store .store_address {
	font-size: 12px;
	color: #999;
}

#stock_store_modal #store_list_container #store_map {
	height: 100%;
	min-height: 339px;
}

@media (max-width: 479px) {
	#stock_store_modal {
		max-height: 90%;
		overflow-y: auto;
	}
	
	#stock_store_modal::-webkit-scrollbar {
		width: 5px;
	}

	#stock_store_modal::-webkit-scrollbar-button {
		display: none;
	}

	#stock_store_modal::-webkit-scrollbar-thumb {
		border-radius: 5px;
		background-color: #dadada;
	}

	#stock_store_modal::-webkit-scrollbar-track {
		margin: 20px 0;
		background-color: white;
	}
	
	#stock_store_modal .product_info_container {
		display: block;
	}
	
	#stock_store_modal .left-column,
	#stock_store_modal .right-column {
		width: 100%;
	}
	
	#stock_store_modal .product_info_container .left-column {
		margin-bottom: 15px;
	}
	
	#stock_store_modal #store_list_container {
		flex-flow: column-reverse;
		row-gap: 15px;
	}
	
	#stock_store_modal #store_list_container #store_list {
		max-height: 250px;
	}
	
	#stock_store_modal #store_list_container #store_map {
		min-height: 250px;
	}
}