@charset "UTF-8";
/**
 * Fyre Cart: 2 Sell Spots in Checkout
 */

/*----------------------
	Fyre Cart Styles
-----------------------*/
.fyrecart-sell-spots-row {
	align-items: stretch;
	clear: left;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
	float: left;
    justify-content: space-around;
	text-align: center;
    width: 48%;
}
.fyrecart-sell-spots-row h2 {
	font-size: 22px;
    font-weight: 300;
    margin-bottom: 5px;
    text-align: left;
    width: 98%;
}
.fyrecart-single-sell-spot {
    border: 1px solid #d7d7d7;
	border-radius: 6px;
	padding-bottom: 35px;
	position: relative;
	width: 48%;
}
.fyrecart-single-sell-spot[data-product-type="default"] {
	padding-bottom: 0;
}
.fyrecart-single-sell-spot-inner {
	padding: 10px;
}
.fyrecart-single-sell-spot-inner > a {
	display: block;
}
.fyrecart-single-sell-spot-inner h3 {
    font-size: 18px;
    font-weight: 700;
	padding: 0;
    text-transform: uppercase;
}
.fyrecart-single-sell-spot-inner img {
	width: 300px;
}
.fyrecart-single-selected-variation {
	background-color: #eaeaea;
    border-radius: 6px;
	display: inline-block;
    font-size: 14px;
    padding: 3px 10px 3px;
}
.fyrecart-single-selected-variation > .fyrecart-variation-label {
	font-weight: 700;
}
.fyrecart-variation-select {
	line-height: 28px!important;
	max-height: 30px!important;
	max-width: 100%;
	min-height: 30px!important;
	padding: 0px 14px 2px 8px!important;
}
.fyrecart-upgrade-bar, .fyrecart-related-bar {
	background-color: #f5f5f5;
	border-radius: 0 0 6px 6px;
	border-top: 1px solid #d7d7d7;
    bottom: 0;
	color: #565656;
	font-size: 12px;
	font-weight: 400;
	padding: 5px 0;
	position: absolute;
    width: 100%;
}
.fyrecart-actions {
	display: flex;
	justify-content: center;
	margin-top: 10px;
}
.fyrecart-button {
	padding: 3px 14px 2px;
    border-radius: 4px;
	cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    margin: 0 3px;
    text-transform: uppercase;
}
.fyrecart-button-primary {
	background-color: #0082ca;
	color: #fff;
}
.fyrecart-button-secondary {
	background-color: #5C6670;
	color: #fff;
}

/*-------------------
	Small Desktop
--------------------*/
@media screen and (max-width: 1250px) {
	.fyrecart-actions {
		flex-wrap: wrap;
	}
	.fyrecart-button {
		width: 100%;
	}
	.fyrecart-button + .fyrecart-button {
		margin-top: 8px;
	}
}

/*------------
	Tablet
-------------*/
@media screen and (max-width: 980px) {
	.fyrecart-sell-spots-row h2 {
		font-weight: 500;
	}
	.fyrecart-sell-spots-row-1 {
		margin-bottom: 30px;
	}
	.fyrecart-actions {
		flex-wrap: nowrap;
	}
	.fyrecart-button {
		width: auto;
	}
	.fyrecart-button + .fyrecart-button {
		margin-top: 0;
	}
}

/*------------
	Mobile
-------------*/
@media screen and (max-width: 600px), screen and (max-device-width: 600px) {
	.fyrecart-sell-spots-row-1 {
		gap: 30px 0;
	}
	.fyrecart-single-sell-spot {
		width: 100%;
	}
}