<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.acc-layout .acc-header	{
	display: block;
	background-color: #ffc84d;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	padding: 12px 0;
	margin-bottom: 12px;
	text-align: center;
	color: #000;
}

.package {
	margin-bottom: 12px;
}

.package-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	cursor: pointer;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 12px;
	color: #333;
	font-size: 18px;
	text-transform: uppercase;
	line-height: 1;
	font-weight: 700;
    background-color: #f5f5f5;
    border-top:1px solid #ddd;
    border-bottom:1px solid #ddd;
 }

.non-touch .package-header:hover,
.package-header.selected {
	color: #337ab7;
	text-decoration: underline;
}

.non-touch .package-header:hover .arrow:before,
.package-header.selected .arrow:before {
	background-color:#337ab7;
}

.non-touch .package-header:hover .arrow:after,
.package-header.selected .arrow:after {
	border-color: #337ab7;
}

.package-header .arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.package-header .arrow.left {
    margin-right: 10px;
}

.package-header .arrow.right {
    margin-left: 10px;
}

.package-header .arrow:before {
    content: '';
    display: block;
    width: 2px;
    height: 14px;
    background-color: #333;
 }

.package-header .arrow:after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    margin-top: -10px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
 }

.package-content {
	background-color: #fff;
	display: none;
	padding: 10px;
}

.acc-list .product {
    cursor: pointer;
}

.acc-list .acc-item-content {
    border: 3px solid white;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    -webkit-transition: all 0.7s ease;
    transition: all 0.35s ease;
}

.non-touch .acc-list .product:hover .acc-item-content {
    border-color: orange;
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px)
}

.non-touch .acc-list .product:hover .shop-btn {
    background: #14517a;
    color: white;
    border-color: #132e40;
}

.acc-list .product.selected .acc-item-content .shop-btn {
	border: 1px solid #70bd1b;
	position: relative;
    color: transparent;
    background: #86e023;
}

.acc-list .product.selected .shop-btn:after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border-right: 3px solid #fff;
	border-bottom: 3px solid #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: auto;
	-webkit-transform:translate(-50%, calc(-50% - 2px)) rotate(45deg);
	-ms-transform:translate(-50%, calc(-50% - 2px)) rotate(45deg);
	transform:translate(-50%, calc(-50% - 2px)) rotate(45deg);
}

.acc-layout .acc-item {
	padding: 6px;
}

.acc-layout .acc-img {
	display: block;
	position: relative;
	height: 0;
	padding-top: 60%;
}

.acc-layout .acc-img &gt; img {
	display: block;
    position: absolute;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    width: auto;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.acc-layout .acc-item-title {
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2;
	color: #675e61;
	margin: 0;
	margin-bottom:6px;
}

.acc-layout .acc-item-text {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
	color: #675e61;
	margin: 0;
}

.acc-layout .acc-item-content {
	padding: 19px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	background-color: #fff;
	border-radius: 4px;
	min-height: 100%;
}

.acc-layout .acc-price {
	line-height: 1;
	font-weight: 700;
	color:#675e61;
	text-align: center;
	margin: 0;
	padding: 8px;
	font-size: 20px;
	text-transform: uppercase;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */

@media only screen and (max-width: 1024px) {
	.acc-layout {
		margin-bottom: 10px;	
	}
}

@media only screen and (max-width: 768px) {
	
	.acc-layout .acc-item-content {
		padding: 9px;
	}	
}


</pre></body></html>