<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    background: #f2f0f4;
    font-family: gotham;
}

.admin_content {

}

.admin_content .store_product {
    margin-bottom: 70px;
    background: white;
}

.admin_content .background {
    background-size: cover;
    background-position: center;
    height: 100%;
}

.admin_content .store_product_image {
    text-align: center;
}

.admin_content .store_product_image img {
    width: 90%;
}

.admin_content .store_product_text {
    padding-top: 30px;
    padding-bottom: 80px;
}

.admin_content .text {
    padding-left: 15%;
    padding-right: 15%;
    padding-top: 15px;
}

.admin_content .title {
    font-weight: 600;
    font-size: 20px;
}

.admin_content .description {
    font-size: 16px;
    white-space: break-spaces;
    line-height: 24px;
}

.admin_content .module-link {
    font-weight: unset;
}

.admin_content .module-link:hover {
    text-decoration: none;
}

.admin_content .banner-box {
    margin-bottom: 60px;
}

.admin_content .with-background {
    padding-top: 70px;
    padding-bottom: 70px;
}

.admin_content .banner {
    padding: 0px;
}

.admin_content .banner-image {
    width: 100%;
    height: 500px;
    background-position: center;
    background-size: cover;
}

.admin_content .banner-title {
    margin-top: 30px;
    font-weight: 600;
    font-size: 30px;
}

.admin_content .banner-text {
    font-size: 18px;
    font-weight: 300;
}

.admin_content .banner-button {
    color: white;
    background-color: #0b252c;
    border: none;
    text-align: center;
    font-family: 'gotham';
    padding: 8px 15px;
    cursor: pointer;
    transition: background-color 250ms linear, color 250ms linear;
    margin-right: 10px;
    border-radius: 2px;
    border: 2px solid #0b252c;
    display: inline-block;
    margin-bottom: 10px;
}

.admin_content .banner-button:hover {
    border: 2px solid #0b252c;
    background-color: white;
    color: #0b252c;
}


/* product container */

.admin_content .store_product_module {
    margin-bottom: 40px;
}

.store_product_module .module_title {
    font-weight: 600;
    text-align: center;
    font-size: 30px;
    padding-bottom: 10px;
}

.admin_content .product-container {
    background: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0px 3px 5px 2px #ccca;
}

.admin_content .product-image {
    display: inline-block;
    border-radius: 6px 6px 0px 0px;
    position: relative;
    text-align: center;
    padding: 15px;
    width: 100%;
    position: relative;
}

.admin_content .product-image .label {
    position: absolute;
    bottom: 40px;
    left: 15px;
    border: 1px solid #ccc;
    padding: 1px 5px;
    font-weight: 400;
    border-radius: 3px;
    box-shadow: 3px 3px 6px 1px #ccc6;
    background: white;
}

.admin_content .product-image .image {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 250px;
    margin: auto;
}

.admin_content .product-image img {
    height: 250px;
}

.admin_content .product-type {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 30px;
    width: 90px;
    padding-left: 0px;
    padding-top: 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px 0px 26px 0px;
    line-height: 16px;
    box-shadow: 5px 5px 5px #00000010;
}

.admin_content .product-type.green {
    background: #74bf44;
    color: white;
}

.admin_content .product-type .text {
    text-align: center;
    margin-top: -5px;
}

.admin_content .info {
    display: inline-block;
    width: 100%;
    padding: 15px;
    padding-top: 0px;
}

.admin_content .info .title {
    font-size: 16px;
    font-weight: 600;
}

.admin_content .info .description {
    display: -webkit-box;
    font-size: 14px;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.admin_content .info .price {
    font-size: 14px;
    font-weight: 400;
}

.admin_content .add-to-cart {
    background-color: white;
    border: none;
    border-top: 1px solid #ccc;
    padding: 15px;
    text-align: center;
    font-family: 'gotham';
    font-size: 15px;
    cursor: pointer;
    color: #0b252c;
    border-radius: 0 0 5px 5px;
    transition: background-color 250ms linear, color 250ms linear;
}

.admin_content .add-to-cart:hover {
    background-color: #0b252c;
    color: white;
}
</pre></body></html>