/** Header **/
.navbar .cart-item {
	position: relative;
}

.navbar .cart-item .cart-badge {
	position: absolute;
    right: 0px;
    top: 12px;
}

.navbar .cart-item .cart-badge > p {
	background-color: red;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
	margin-bottom: 0;
}

.navbar-color-inverted .cart-item svg {
	fill: white !important;
}

.navbar-color-inverted .cart-item:hover svg {
	fill: #00B3E6 !important;
}

.navbar-color .cart-item svg {
	fill: #00B3E6 !important;
}

.navbar-color .cart-item:hover svg {
	fill: black !important;
}

/** Hero banner **/
.store-banner-container {
	width: 100vw;
	height: 100vh;
	
	position: relative;
	overflow: hidden;
}

@media (min-width: 768px) {
	.store-banner-container {
		height: 50vh;
		max-width: 1280px;
		margin: 0 auto;
	}
}

.store-banner-container ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.store-banner-container-arrows {
	position: absolute;	
	top: 0;
	bottom: 0;
	z-index: 2;
	margin-top: auto;
	margin-bottom: auto;
	padding: 0;

	border: none;
	background: transparent;
	width: 32px;
	height: 32px;
	
	cursor: pointer;
	transition: .3s;
}
.store-banner-container-arrows:hover {
	opacity: .7;
}
.store-banner-container-arrows.prev {
	left: 8px;
	
	transform: rotate(90deg);
}
.store-banner-container-arrows.next {
	right: 8px;
	
	transform: rotate(-90deg);
}
.store-banner-container-arrows.prev:hover {
	transform: rotate(90deg) scale(1.1);
}
.store-banner-container-arrows.next:hover {
	transform: rotate(-90deg) scale(1.1);
}

.store-banner-pagination {
	position: absolute;
	bottom: 16px;
	right: 16px;
	z-index: 2;
	
	display: flex;
	align-items: center;
	justify-content: space-between;	
}

@media (min-width: 1024px) {
	.store-banner-pagination {
		right: 64px;
		bottom: 0;
	}
}

.store-banner-pagination--page {
	transition: .3s;
}
.store-banner-pagination--page:hover {
	opacity: .7;
	transform: scale(1.05);
}
.store-banner-pagination--page.active {
	opacity: 1;
	transform: unset;
}

.store-banner-pagination--page > button {
	background-color: transparent;
	border: solid 1px #212529;
	border-radius: 50%;
	width: 16px;
	height: 16px;
	margin-right: 16px;
	
	cursor: pointer;
	transition: .5s ease-in;
}
.store-banner-pagination--page.active > button {
	border-color: #40b1e4;
	background-color: #40b1e4;
	cursor: default;
}

.store-banner-items .store-banner-item {
	position: absolute;
	width: 100vw;
	height: 100vh;
	padding: 16px 48px;
	
	pointer-events: none;
	
	opacity: 0;
	transition: .5s ease-in;
	
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.store-banner-items .store-banner-item.active {
	opacity: 1;
	pointer-events: all;
}

@media (min-width: 768px) {
	.store-banner-items .store-banner-item {
		height: 50vh;
		flex-direction: row;
		max-width: 1280px;
	}
}

.store-banner-item--image {
	width: 100%;
	height: auto;
	object-fit: contain;
	object-position: center;
}

@media (min-width: 768px) {
	.store-banner-item--image {
		width: 50%;
		max-width: 500px;
		max-height: 50vh;
	}
}

.store-banner-item--content {
	margin-top: 16px;
}

@media (min-width: 768px) {
	.store-banner-item--content {
		margin-top: 0;
		margin-left: 16px;
	    max-width: 450px;
	}
}

.store-banner-item--content > .title {
	margin: 0;

	font-family: 'Aeonik', sans-serif;
	font-weight: 100;
	font-size: 2.5em;
	line-height: 1.2;
	color: #40b1e4;
	text-align: center;
}

.store-banner-item--content > .text {
	margin: 16px 0 0;
	
	font-family: 'Aeonik', sans-serif;
	font-weight: 100;
	font-size: 1.25em;
	line-height: 1.2;
	color: #212529;
	text-align: center;
}

@media (min-width: 768px) {
	.store-banner-item--content > .title, .store-banner-item--content > .text {
		text-align: left;
	}
}

.store-banner-item--buttons {
	margin-top: 16px !important;
}

/** Products list **/
ul.swag-store-products {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
}

ul.swag-store-products li.swag-store-product {
	display: flex;
	flex-direction: column;
}

ul.swag-store-products li.swag-store-product a.swag-store-add-to-cart {
	width: fit-content;
	margin-top: auto !important;
	background-color: #40b1e4;
	color: white;
}

li.swag-store-product span.swag-store-price {
	margin-bottom: 1.5rem !important;
}

select.swag-store-orderby {
	padding: 8px 16px 8px 4px;
	color: #40b1e4;
}

.woocommerce nav.woocommerce-pagination {
	background-color: unset;
}

.swag-store-cart-return-to-shop a.swag-store-cart-return-button {
	background-color: #40b1e4;
	color: white;
}

span.swag-store-cart-badge {
	position: absolute;
    bottom: 18px;
    left: 100px;
}

span.swag-store-cart-badge p {
	background-color: red;
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/** Cart view **/
.swag-store-checkout-preview {
	float: left !important;
	margin-top: 16px;
}

.swag-store-checkout-button {
	background-color: #40b1e4 !important;
	color: white !important;
}

.swag-store-coupon {
	display: flex;
	align-items: flex-end;
}

.swag-store-coupon > input {
	height: 35.77px;
	width: 125px !important;
}

.swag-store-product-remove a img {
	display: none;
}

@media (max-width: 768px) {
	.swag-store-coupon {
		justify-content: space-between;
	}

	.swag-store-coupon > input {
		width: 48% !important;
	}

	.swag-store-product-remove a.remove {
		display: unset;
		float: left;
	}

	.swag-store-product-remove a img {
		display: unset;
	}
}

.swag-store-coupon > button {
	background-color: white !important;
	color: #40b1e4 !important;
}

.swag-store-update-cart {
	background-color: #40b1e4 !important;
	color: white !important;
}

/** Checkout page **/
.swag-store-checkout-container {
	display: flex;
	margin-bottom: 16px;
}

.swag-store-checkout-container > div {
	padding: 0;
}

.swag-store-checkout-shipping {
	margin-top: 16px;
}

@media (min-width: 1200px) {
	.swag-store-checkout-container > div:first-child {
		padding: 0 15px 0 0;
	}

	.swag-store-checkout-container > div:last-child {
		padding: 0 0 0 15px;
	}

	.swag-store-checkout-shipping {
		margin-top: 0;
	}
}

@media (max-width: 1199px) {
	.swag-store-checkout-container {
		flex-direction: column;
	}
}

form.swag-store-checkout-form p.form-row {
	flex-direction: column;
}

form.swag-store-checkout-form label {
	margin-bottom: 0;
	line-height: 2.5 !important;
}

form.swag-store-checkout-form input, form.swag-store-checkout-form span.select2-selection {
	padding: 8px 8px 8px 4px;
}

form.swag-store-checkout-form span.select2-selection {
	height: unset;
}

form.swag-store-checkout-form span.select2-selection__rendered {
	line-height: 19px !important;
}

form.swag-store-checkout-form span.select2-selection__arrow {
	height: 100% !important;
}

.swag-store-place-order-button {
	background-color: #40b1e4 !important;
	color: white !important;
}

.swag-store-payment-box {
	background-color: white !important;
}

.swag-store-payment-box::before {
	border-bottom-color: white !important;
}

/** Product details **/
.swag-store-product-add-to-cart {
	position: relative;
}

.swag-store-product-add-to-cart div.quantity input, .swag-store-product-add-to-cart select {
	padding: 8px 16px;
}

.swag-store-product-add-to-cart button {
	background-color: #40b1e4 !important;
	color: white !important;
}

.swag-store-product-tabs ul.tabs {
	margin-bottom: 0 !important;
}

.swag-store-product-tabs ul.tabs::before {
	border: none !important;
}

.swag-store-product-tabs div.panel {
	padding: 2rem !important;
	background-color: white;
	border-top: 1px solid #d3ced2;
}

.swag-store-product-related-products {
	padding: 4rem 0 0;
}

span.swag-store-product-cart-badge {
	position: absolute;
	left: 160px;
    bottom: 20px;
}

span.swag-store-product-cart-badge p {
	background-color: red;
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/** Alerts **/
.swag-store-alert {
	position: fixed;
	width: 100vw;
	bottom: 0;
	left: 0;
	margin: 0;
	z-index: 10;
}

.swag-store-alert a, .swag-store-alert button {
	background-color: #8fae1b !important;
	color: white !important;
}

/** Category products **/
article .woocommerce {
	padding: 72px 0 0;
}

article .woocommerce.columns-3 {
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}

/** Categories list **/
.product-category > a.btn {
	width: 100%;
	height: fit-content;
	padding: 12px 16px;
	border-radius: 6px;

	display: flex;
	align-items: center;
	justify-content: center;

	color: white;
}

.product-category > a#golf {
	background-color: #458ed2;
	border-color: #458ed2;
}

.product-category > a.btn#office {
	background-color: #213562;
	border-color: #213562;
}

.product-category > a.btn#wearables {
	background-color: #1cb1de;
	border-color: #1cb1de;
}

.product-category > a.btn#welcome-kit {
	background-color: #c5ad84;
	border-color: #c5ad84;
}

.product-category > a.btn > img {
	width: 32px !important;
	height: 32px !important;

	margin: 0 16px 0 0 !important;
}

.product-category > a.count {
	margin-top: 16px;
	display: block;
	text-align: center;
}
