
/*
* Random Product Slider Start
* Refactored  Random Product Slider styles originally from style.css – moved here for better organization 
*/


/*Snippets : Woocommerce Cart Page Css Start */
.woocommerce-cart a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
    /*background: linear-gradient(90deg, #0011FF 0%, #5539F3 53%, #6C44F0 100%);*/
	background: #6c44f0;
}
.cart-shipping-wrapper{
	width: 32.5%;
	position: relative;
	padding-bottom: 20px;
	float: right;
}
.cart-shipping-wrapper:before {
	content: "$0";
	position: absolute; 
	bottom: 0;
}
.cart-shipping-wrapper:after {
	content: "$49";
	position: absolute;
	bottom: 0;
	right: 0;
}
#shipping-progress-bar {
	width: 100%;
	height: 9px;
	background-color: #EBEBEB;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 10px;
}

.shipping-progress-bar__fill {
	height: 100%;
	/*background: linear-gradient(90deg, #0011FF 0%, #5539F3 53%, #6C44F0 100%);*/
	background: #6c44f0;
	width: 0;
	border-radius: 12px;
	transition: width 0.4s ease;
}

.shipping-message {
	text-align: center;
	font-size: 15px;
	margin-top: 10px;
	margin-bottom: 6px;
	letter-spacing: 0.32px;
}
.woocommerce-cart .wt_coupon_wrapper{
	margin-bottom: 2px;
}

@media(max-width:767px){
	.cart-shipping-wrapper{
		width: 100%;
		margin: 20px 0 30px;
		display: none;
	}
	.wp-block-woocommerce-cart-order-summary-block .cart-shipping-wrapper{
		display: block;
	}
	.woocommerce-cart .wc-block-components-totals-wrapper{
		border-top: 0;
		clear: both;
	}
	.kadence-woo-cart-form-wrap form.woocommerce-cart-form {
        margin: 0;
    }
	
	.woocommerce .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents{
		margin-bottom: 0;
	}
}

/*Snippets : Woocommerce Cart Page Css End */

/*Random Product slide Cart Page Css Start */
.random-product-slider .product-item:hover {
	transform: none;
	box-shadow: none;
}
.random-product-slider h4.rs-subtitle{
	margin: 2px 0;
}
.random-product-slider h2.cart-page-title {
/* 	display: none; */
	text-transform: none;
}
.random-product-slider tr.wc-block-cart-items__row {
	height: 252px;
}
.random-product-slider .add-to-cart-button .kadence-spinner-svg, 
.random-product-slider .add-to-cart-button .kadence-check-svg {
	display: none;
	width: 75%;
	transition: 0.3s all;
	height: auto;
	top: 0;
}
.random-product-slider .add-to-cart-button.loading .kadence-spinner-svg {
	display: block;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}
.random-product-slider .add-to-cart-button.added .kadence-check-svg {
	display: block;
	transition: 0.3s all;
}
.random-product-slider .woocommerce-cart  h2.cart-page-title{
	display: block;
	text-transform: none;
	margin: 0;
}
.random-product-slider .product-placeholder {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	padding: 20px;
}

.random-product-slider .coming-soon-text {
	font-size: 1.5rem;
	font-weight: bold;
	color: #999;
	text-align: center;
}

.random-product-slider {
	max-width: 100%;
	overflow: hidden;
	margin: 0 auto;
/* 	padding: 20px; */
	background: transparent;
	border-radius: 10px;
}

.random-product-slider .slider-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: stretch; /* Ensure equal height */
	flex-wrap: wrap;
	margin: 20px 0;
	column-gap: 0.9rem;
}

.random-product-slider .product-item {
	flex: 1;
	background-color: rgba(243, 244, 246, 0.5);
	margin: 0 ;
	text-align: center;
	padding: 0px;
	border-radius: 8px;
	position: relative;
	box-shadow: none;
	color: #000;
	border-top: 1px solid var(--global-palette6, #718096);
	border-right: 1px solid var(--global-palette6, #718096);
	border-bottom: 1px solid var(--global-palette6, #718096);
	border-left: 1px solid var(--global-palette6, #718096);
	display: flex; /* Flexbox for stretching height */
	flex-direction: column;
	justify-content: flex-start;
}

.random-product-slider .product-image img {
	max-width: 100%;
	border-radius: 8px;
	border: none;
}

.random-product-slider .product-info {
	margin-top: 10px;
	text-align: left;
	padding: 15px;
	width: 100%;
}

.random-product-slider .product-title {
	text-decoration: none;
	color: #000;
	font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.2rem;
    font-family: Onest;
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
	min-height: 39px;
}

.random-product-slider p.product-price {
    font-size: 1.2rem;
    line-height: 1.5rem;
    letter-spacing: 0px;
	margin-bottom: 10px;
}

.random-product-slider .sale-price {
	font-weight: bold;
	color: #000;
}

.random-product-slider .button-group {
	display: flex;
	justify-content: space-between;
	gap: 10px;
}

.random-product-slider .add-to-cart-button:hover {
	background-color: #000;
	color: #fff;
}

.random-product-slider .product-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: #00B3CC;
	color: #fff;
	padding: 5px 10px;
	font-size: 12px;
	font-weight: bold;
	border-radius: 5px;
}

.random-product-slider .loading-spinner {
	text-align: center;
	font-size: 14px;
	color: #00B3CC;
	margin-top: 10px;
}

.random-product-slider a.view-cart-button {
	margin-top: 10px;
	display: block;
	text-align: center;
}

.random-product-slider span.product-badge {
	padding-top: 0.5rem;
	padding-right: 0.88rem;
	padding-bottom: 0.5rem;
	padding-left: 0.88rem;
	top: 0.62rem;
	right: 0.62rem;
	font-size: 0.9rem;
	line-height: 1rem;
	text-transform: uppercase;
	color: var(--global-palette7, #EDF2F7);
	background: var(--global-palette1, #3182CE);
	border-radius: 1.5rem;
}


.random-product-slider button.add-to-cart-button {
	color: #ffffff;
	border-radius: 3rem;
	text-align: center;
	width: 100%;
	display: block;
	transition: color 0.2s ease, background 0.2s ease, border 0.2s ease;
	display: inline-block;
    border-style: solid;
    font-size: 1.2rem;
    line-height: 1.2rem;
    background: var(--global-palette1, #3182CE);
    padding: 0.3rem 1.2rem;
    border: 0;
}

.random-product-slider button.add-to-cart-button:hover{
	background-color: var(--global-palette2, #2B6CB0);
}

.woocommerce-cart .random-product-slider {
/* 	display: none; */
	clear: both;
}
.woocommerce-cart .wc-block-cart__main .random-product-slider{
	padding: 20px 0 0;
}
.random-product-slider .added-text {
	display: block;
	text-align: center;
	margin-top: 4px;
	position: relative;
	font-size: 12px;
	width: 100%;
	left: 0;
}
@media(max-width: 1280px){
	.woocommerce-cart .random-product-slider {
		padding-left: 2px;
		padding-right: 2px;
	}
	.random-product-slider .slider-wrapper{
		gap: 20px 0;
	}
	.random-product-slider .product-item {
		flex: 1 1 calc(33.33% - 10px);
	}
}
/* Responsive Styles for Mobile Devices Only */
@media (max-width: 768px) {

	.random-product-slider .slider-wrapper {
		flex-direction: row;
		flex-wrap: wrap;
		column-gap: 10px;
		row-gap: 10px;
		margin: 20px 0;
		width: 99%;
		left: 2px;
		position: relative;
	}

	.random-product-slider .product-item {
		flex: 1 1 calc(50% - 20px);
		margin: 10px;
	}

	.random-product-slider .product-title {
		font-size: 16px;
	}

	.random-product-slider .product-price {
		font-size: 13px;
	}

	.random-product-slider .add-to-cart-button,.random-product-slider  .view-cart-button {
		padding: 8px;
	}

	.random-product-slider button.add-to-cart-button {
		font-size: 0.8rem;
	}

	.random-product-slider .product-badge {
		font-size: 10px;
		padding: 3px 6px;
	}
	.random-product-slider tr.wc-block-cart-items__row {
		height: initial;
		min-height: 300px;
	}

}

@media (max-width: 782px) {
	.wc-block-cart .wp-block-woocommerce-proceed-to-checkout-block .wc-block-cart__submit-container {
		background: #fff;
		bottom: 0;
		box-sizing: border-box;
		left: 0;
		padding: 16px;
		position: fixed;
		width: 100%;
		z-index: 9999;
	}
	.wc-block-cart .wp-block-woocommerce-proceed-to-checkout-block .wc-block-cart__submit-container:before {
		box-shadow: 0 -10px 20px 10px currentColor;
		color: hsla(0, 0%, 80%, .3);
		content: "";
		height: 100%;
		left: 0;
		position: absolute;
		right: 0;
		top: 0;
	}
}
/*Random Product slide Cart Page Css End */
/* End of styles from style.css moved here */

.woocommerce table.shop_table.cart .product-remove a.remove{
	height: auto;
    font-size: 12px;
    display: block;
    width: 82px;
    text-align: left;
    font-weight: normal;
    color: #000000 !important;
    text-decoration: underline;
}
.woocommerce table.shop_table.cart .product-remove a.remove:hover{
	background-color: transparent;
	color: #000000 !important;
	font-size: 12px;
}
.woocommerce-cart table.shop_table.cart .product-name a,
.woocommerce-cart table.shop_table.cart .product-name a:hover {
    color: #5936C7;
    font-size: 15px;
    line-height: 28px;
}
table.shop_table.cart .product-price,
table.shop_table.cart .product-attributes,
table.shop_table.cart .product-quantity{
    margin: 8px 0 0;
	font-size: 15px;
}
.woocommerce-cart table.shop_table.cart img{
	width: 90px;
}
.woocommerce table.shop_table.cart td {
    border-top: 1px solid hsla(0, 0%, 7%, .11);
    vertical-align: top;
	padding: 15px 0 15px 16px;
	font-size: 15px;
}
.woocommerce-cart .cart-collaterals .cart_totals tr th,
.woocommerce-cart .cart-collaterals .cart_totals tr td{
    border-top: 1px solid hsla(0, 0%, 7%, .11);
    vertical-align: top;
	font-size: 15px;
}
.woocommerce-cart .cart-collaterals .cart_totals tr td{
	text-align: right;
}
.woocommerce-cart .cart-collaterals .cart_totals tr.order-total td,
.woocommerce-cart .cart-collaterals .cart_totals tr.order-total th{
	font-size: 18px;
}
.woocommerce ul#shipping_method{
	text-align: left;
}
 .cart-shipping-wrapper {
    position: relative;
   margin-top: -50px;
    width: 100%;
    margin-bottom: 20px;
}
.shipping-message {
    min-height: 16px;
}
.woocommerce .kadence-woo-cart-form-wrap .cart-collaterals{
	position: relative;
}
.kadence-woo-cart-form-wrap{
	padding-top: 30px;
}
.woocommerce-cart .cart-collaterals .cart_totals table,
.woocommerce-cart .cart-collaterals .cart_totals table tr th,
.woocommerce-cart .cart-collaterals .cart_totals table tr td{
	border-top: 1px solid #ddd;
}
.kadence-woo-cart-form-wrap{
	clear: both;
}
.cart-collaterals .cart_totals h2{
	font-size: 12px;
    margin-top: 0;
	clear: both;
	text-transform: uppercase;
}
.woocommerce .cart_totals  a.checkout-button.button {
	/*background: linear-gradient(90deg, #0011FF 0%, #5539F3 53%, #6C44F0 100%);*/
	background: #6c44f0;
    border-radius: 3rem;
}
.custom-button-shopping{
	display: block;
	text-align: center;
}
.woocommerce-cart .cart-collaterals tr.woocommerce-shipping-totals.shipping td {
    text-align: left ;
}
.woocommerce-cart table.shop_table tbody .cart-subtotal th,
.woocommerce-cart table.shop_table tbody .cart-discount th{
	font-weight: normal;
}
.delivery-wrap{
	margin-top: 10px;
}
.woocommerce-cart .woocommerce-shipping-destination strong,
.woocommerce-cart .woocommerce-shipping-destination{
	font-weight: normal;
	font-size: 14px;
}
.woocommerce-cart .cart-collaterals .cart_totals .delivery-wrap .woocommerce-shipping-destination{
	margin-bottom: 10px;
}
.woocommerce ul#shipping_method li input {
    -moz-appearance: none;
    appearance: none;
    background: #fff;
    border: 1px solid rgba(25, 23, 17, .48);
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
    height: 1.5em;
    left: 0;
    margin: inherit;
    min-height: 24px;
    min-width: 24px;
    position: absolute;
    top: 50%;
    transform: translateY(-45%);
    width: 1.5em;
}
.woocommerce table.shop_table_responsive .delivery-wrap ul#shipping_method li {
	position: relative;
	margin-bottom: 15px;
	justify-content: flex-start;
}
.woocommerce ul#shipping_method li label{
	padding-left: 30px;
}
.woocommerce ul#shipping_method li input:checked:before {
	background: #000;
    border-radius: 50%;
    content: "";
    display: block;
    height: .75em;
    left: 50%;
    margin: 0;
    min-height: 12px;
    min-width: 12px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);

}
.random-product-slider .slider-wrapper{
	padding-left: 0;
}
.woocommerce-cart .content-area{
	margin-top: 20px;
}
.mobile-random-slider {
	margin-top: 30px;
}
.woocommerce-page table.shop_table_responsive tr.tax-total small{
	display: none;
}
.kt-radio-variation-container .kad_radio_variations{
	display: none;
}
.woocommerce .wt_choose_button_box {
    padding-bottom: 10px;
}
.woocommerce-notices-wrapper{
	margin-bottom: 20px;
    float: left;
    width: 100%;
}
.woocommerce  button.wt_choose_free_product {
    color: #ffffff;
    border-radius: 3rem;
    text-align: center;
    width: 100%;
    display: block;
    transition: color 0.2s ease, background 0.2s ease, border 0.2s ease;
    display: inline-block;
    border-style: solid;
    font-size: 1.2rem;
    line-height: 1.2rem;
    background: var(--global-palette1, #3182CE);
    padding: 0.3rem 1.2rem;
    border: 0;
}
.woocommerce ul.woocommcerce.wt_give_away_products{
	gap: 5px;
}
.woocommerce .wt_give_away_products li{
	width: 24%;
    min-width: auto;
    border-radius: 10px;
    overflow: hidden;
	position: relative;
    padding-bottom: 120px;
}
.woocommerce  .wt_product_other_info a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.2rem;
    font-family: Onest;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    min-height: 39px;
}
.woocommerce  .wt_product_discount {
	font-size: 14px;
    font-weight: bold;
}
.cuw-product-title{
	font-size: 14px !important;
    line-height: 19px;
    margin-bottom: 10px;
}
.cuw-continue-link.cuw-template-action button{
	/*background: linear-gradient(90deg, #0011FF 0%, #5539F3 53%, #6C44F0 100%) !important;*/
	background: #6c44f0;
    border-radius: 5px !important;
}
.woocommerce-cart .cart-collaterals .cart_totals table tr.cart-discount th{
	width: 45%;
	font-size: 14px;
	font-weight: bold;
}
.woocommerce-info  + .kadence-woo-cart-form-wrap {
	padding-top: 40px;
}

.woocommerce-notices-wrapper .woocommerce-info{
	line-height: 20px;
}

.button.wbte_sc_bogo_add_to_cart.wbte_sc_add_to_cart_non_popup {
	margin-top: 15px;
}
@media (max-width: 1280px) {
    .random-product-slider .slider-wrapper {
        gap: 10px;
    }
	.random-product-slider .product-item {
        flex: 1 1 calc(25.33% - 10px);
    }
}

@media (max-width: 992px) {
    
	.random-product-slider .product-item {
        flex: 1 1 calc(50% - 10px);
    }
}

@media screen and (min-width: 768px) {
    .woocommerce-cart table.shop_table.cart .product-thumbnail{
        width: 114px;
    }
	
}
@media screen and (min-width: 768px) {
    .woocommerce .kadence-woo-cart-form-wrap>form {
        width: 67%;
		float: left;
		padding-right: 30px;
    }
	.woocommerce .kadence-woo-cart-form-wrap .cart-collaterals{
		width: 33%;
		margin-top: -22px;
		float: left;
	}
}
@media(max-width: 767.9px){
	.cuw-template-title{
		font-size: 16px !important;
	}
	.cuw-product.cuw-product-row{
		border-top: 1px solid #ccc;
    	padding-top: 30px;
	}
	.cuw-popup-products.cuw-products.cuw-mobile-responsive .cuw-product.cuw-product-row:first-child{
		border: 0;
		padding: 0;
	}
	.woocommerce .wt_give_away_products li{
		width: 46%;
	}
	.random-product-slider .product-item {
        flex: 1 1 calc(43% - 10px);
        margin: 0;
    }
   .woocommerce-cart .woocommerce table.shop_table_responsive tr td, 
	.woocommerce-page table.shop_table_responsive tr td {
        display: table-cell;
        text-align: left !important;
    }
	.woocommerce-page table.shop_table_responsive tr.tax-total  td,
	.woocommerce-page table.shop_table_responsive tr.cart-subtotal  td,
	.woocommerce-page table.shop_table_responsive tr.order-total  td,
	.woocommerce-page table.shop_table_responsive tr.cart-discount  td{
		text-align: right !important;
	}
	
	.woocommerce-cart .woocommerce table.shop_table_responsive tbody th, .woocommerce-page table.shop_table_responsive tbody th{
		display: table-cell;
		font-weight: normal;
	}
	.woocommerce-cart .woocommerce table.shop_table_responsive tr, .woocommerce-page table.shop_table_responsive tr{
		display: table-row;
	}
	.woocommerce-cart .woocommerce table.shop_table_responsive tr td::before, .woocommerce-page table.shop_table_responsive tr td::before{
		content: "";
	}
	.woocommerce-cart  .woocommerce table.shop_table_responsive tbody tr:first-child td:first-child, .woocommerce-page table.shop_table_responsive tbody tr:first-child td:first-child{
		border-top: 1px solid hsla(0, 0%, 7%, .11)
	}
	.woocommerce-cart .woocommerce .wc-proceed-to-checkout{
		background: #fff;
		bottom: 0;
		box-sizing: border-box;
		left: 0;
		padding: 16px 16px 0;
		position: fixed;
		width: 100%;
		z-index: 9999;
		box-shadow: rgba(0, 0, 0, 0.1) 0px -2px 4px 0px;
		border-radius: 12px 12px 0px 0px;
	}
	.woocommerce-cart .random-product-slider{
		display: none;
	}
	.woocommerce-cart .mobile-random-slider .random-product-slider{
		display: block;
	}
	.woocommerce-cart .mobile-random-slider .random-product-slider + .random-product-slider{
		display: none;
	}
	.cart_totals .cart-shipping-wrapper{
		display: block;
		margin: 0 0 20px;
	}
	.woocommerce-cart .woocommerce table.shop_table_responsive tr:nth-child(2n) td, .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td{
		background-color: transparent;
	}
	.woocommerce .cart_totals  a.checkout-button.button {
		width: 70%;
		margin: 0 auto 15px;
	}
	.woocommerce .woocommerce-notices-wrapper{
		margin-bottom: 0;
	}
	.woocommerce .woocommerce-notices-wrapper .woocommerce-message{
		margin-bottom: 5px;
	}
	.woocommerce .woocommerce-notices-wrapper .woocommerce-info{
		margin-bottom: 0;
	}
	.entry-content.single-content{
		margin-top: 0;
	}
	.kadence-woo-cart-form-wrap {
		padding-top: 10px;
	}
}

/**
 *  Hide Footer from cart page
 * 	Copy From Appearance-> customize (Theme) 
 */
body.woocommerce-cart .site-footer .site-footer-wrap .site-middle-footer-wrap{
	display: none;
}
/**
 *  Add Quantity  from cart page
 * 	Copy From Appearance-> customize (Theme) 
 */
.woocommerce-cart  .kadence-woo-cart-form-wrap  form.woocommerce-cart-form .quantity.spinners-added input.minus, 
.woocommerce-cart  .kadence-woo-cart-form-wrap  form.woocommerce-cart-form .quantity.spinners-added input.plus {
    color: #000000;
	font-size: 16px;
	padding: 0 1em;
    line-height: 38px;
}
.woocommerce-cart .kadence-woo-cart-form-wrap form.woocommerce-cart-form  .quantity.spinners-added .qty {
    background: #f0f0f0;
	font-size: 16px;
} 
.woocommerce-cart form.woocommerce-cart-form div.quantity.spinners-added {
    background: #f0f0f0;
    border-radius: 30px;
    border: 0;
}
/*Hide Give away products if stock is 0*/
.wt_sc_giveaway_products_cart_page li.wbte_get_away_product[data-is_purchasable="0"] {
	display: none;
}

/*Hide shipping destination*/
p.woocommerce-shipping-destination{
	display: none;
}
.product-name .woocommerce-warning{
	color: red;
	font-weight: bold;
	line-height: 20px;
	display: inline-block;
}


/* Cart page BOBO product add to cart hide and loader  */


.wt_sc_giveaway_products_cart_page .wbte_sc_bogo_add_to_cart {
	opacity:0;
	width:0;
	height:0;
	padding:0;
	margin:0;
	font-size:0;
}

body .wt_sc_giveaway_products_cart_page li.wbte_get_away_product[data-is_purchasable="0"] {
	display: flex ;
}

/* Gray out non-purchasable giveaway products */
.wt_sc_giveaway_products_cart_page li.wbte_get_away_product[data-is_purchasable="0"] {
	opacity: 0.8;
	pointer-events: none; /* Prevent clicking */
	filter: grayscale(100%);
	position: relative;
	overflow: hidden;
}

/* Sold-out badge */
.wt_sc_giveaway_products_cart_page li.wbte_get_away_product[data-is_purchasable="0"]::after {
	content: "SOLD OUT";
	position: absolute;
	top: 24px;
	left: -35px;
	background: #ff2f2f;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	padding: 4px 8px;
	transform: rotate(315deg);
	z-index: 10;
	width: 140px;
	text-align: center;
	letter-spacing: 1px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}

.wt_sc_giveaway_products_cart_page li.wbte_get_away_product[data-is_purchasable="0"] .wt_sc_product_out_of_stock {
	display:none;
}

.bogo-loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.6);
	z-index: 99999;
}

.bogo-loader:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	margin-left: -20px;
	border: 4px solid #333;
	border-top-color: transparent;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}
.single-content .wt_sc_giveaway_products_cart_page .giveaway-title{
	margin-top: 20px;
}

/* Checkout Loading Spinner Overlay */
#checkout-spinner-overlay {
	position: fixed;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.8);
	z-index: 999999;
	font-size: 22px;
	display: none;
}

#checkout-spinner-overlay .spinner-icon {
	border: 6px solid #6c44f055;
	border-top: 6px solid #6c44f0;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 1s linear infinite;
	position: absolute;
	top: 47%;
	left: calc(50% - 25px);
}

/* Spinner animation */
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}