/*

Theme Name: PXR Theme

Description: Desktop screen resolutions: Ultrwide (2560*1080), Full HD (1920*1080), Laptop HiDPI (1440*900), Laptop MDPI (1280*800)

*/

/* Ultrwide (2560*1080) */
@media screen and (max-width: 2560px) {
	
}

/* content width + padding */
@media screen and (max-width: 2050px) {
	
}

/* Full HD (1920*1080) */
@media screen and (max-width: 1920px) {
	
}

@media screen and (max-width: 1600px) {
	
}

@media screen and (max-width: 1480px) {
	
}

/* Laptop HiDPI (1440*900) */
@media screen and (max-width: 1440px) {
	html {
		font-size: 16px;
	}

	/* SECTION CTA SLIDER */
	.slide_content_text,
	.slide_content_text p {
		font-size: 0.8rem;
	}

	/* SECTION IMAGE HALF */
	.image_half.-landscape .image_half_inner {
		width: 100%;
		min-width: 100%;
		margin-left: 0px;
	}
}

/* Laptop MDPI (1280*800) */
@media screen and (max-width: 1280px) {
	/* SITE HEADER */
	.menu_title {
		font-size: 1rem;
	}
	.submenu {
		width: calc(100vw - (2 * var(--section-padding)));
	}
	.submenu_inner {
		border-radius: 1.5rem 0px 1.5rem 1.5rem;
	}

	/* BOX SLIDER */
	.box_slider {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.box_slider .embla__viewport {
    	transform: translateX(0px);
	}

	/* MY ACCOUNT */
	.woocommerce-account .woocommerce-MyAccount-navigation {
		width: 100%;
	}
	.woocommerce-account .woocommerce-MyAccount-content {
		width: 100%;
	}
	.woocommerce-MyAccount-navigation ul {
		flex-direction: row;
		justify-content: center;
		flex-wrap: wrap;
	}

	/* DONATION */
	.bacs_table.-third {
		flex: 1 1 calc(50% - (var(--gap) / 2));
	}
}

@media screen and (max-width: 1180px) {
	
}