/*
 Theme Name:   Storefront Child
 Description:  BFF Shops Theme
 Author:       Michael Kinzl
 Author URI:   
 Template:     storefront
 Version:      1.0
 Text Domain:  storefront-child
*/

/* ------------------------------------ */
/* Color Schema                         */
/* ------------------------------------ */

:root {
    --primary: #b4171a;
    --secondary: #C92225;
    --green: #3cb44a;
    --red: #ea1f25;
    --warning: #ba2121;
    --invalid: #c03618;
    --bg-gray: #f0f0f0;
    --bg-dark: #efefef;
    --bg-menu: #eff0f0;
    --bg-button: #6f6f6f;
    --border-color: #ccc;
    --border-checkout: #b2b2b0;
    --border-dark: #a8a8a8;
    --text-color: #000;
    --text-light: #707070;
    --box-shadow: 2px 2px 4px rgba(0,0,0,0.15);
    --border-radius: 8px;
}

/* ------------------------------------ */
/* Fonts                                */
/* ------------------------------------ */

body, button, input, select, textarea {
	font-family: "Roboto","HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
}

body {
    --wp--preset--font-size--small: 14px;
    --wp--preset--font-size--medium: 23px;
    --wp--preset--font-size--large: 26px;
    --wp--preset--font-size--x-large: 42px;
    --wp--preset--font-size--normal: 16px;
    --wp--preset--font-size--huge: 37px;
}

p {
	margin: 0 0 12px 0;
}
p.form-row {
    margin: 0 0 20px 0;
}

body, button, input, textarea {
    line-height: 1.4;
}

/* ------------------------------------ */
/* Colors                               */
/* ------------------------------------ */

a {
    text-decoration: none !important;
    color: var(--secondary);
}
a:hover,
a:focus {
    color: var(--secondary);
}

body, .secondary-navigation a {
	color: var(--text-color);
}
.widget-area .widget a,
.hentry .entry-header .posted-on a,
.hentry .entry-header .post-author a,
.hentry .entry-header .post-comments a,
.hentry .entry-header .byline a {
	color: var(--text-color);
}

/* ------------------------------------ */
/* Buttons                              */
/* ------------------------------------ */

#content button, input[type="button"],
#content input[type="reset"],
#content input[type="submit"],
#content .button,
#content .widget a.button,
.storefront-sticky-add-to-cart__content-button {
	display: inline-block;
	line-height: 1rem;
	text-align: center;
	padding: 10px 20px !important;
	cursor: pointer;
	background-color: var(--primary) !important;
	text-decoration: none !important;
	color: #fff !important;
    border: none !important;
}
#content button, input[type="button"]:hover,
#content input[type="reset"]:hover,
#content input[type="submit"]:hover,
#content .button:hover,
#content .widget a.button:hover,
.storefront-sticky-add-to-cart__content-button:hover {
	background-color: var(--secondary) !important;
}

.wp-block-search__button {
	margin-left: 0;
}

.post-edit-link {
    display: none !important;
}

.button.loading::after {
	color: #fff;
}
#content .button.loading {
    color: var(--secondary) !important;
    background-color: var(--secondary) !important;
    opacity: 1.0 !important;
}

button, input[type="button"], input[type="reset"], input[type="submit"], .button, .wc-block-grid__products .wc-block-grid__product .wp-block-button__link, .added_to_cart {
	font-weight: 500;
}

#content .customize-partial-edit-shortcut button, #content .widget .customize-partial-edit-shortcut button {
	padding: 3px !important;
    border: 2px solid #fff !important;
}

/* ------------------------------------ */
/* Widgets                              */
/* ------------------------------------ */

a:focus, button:focus, .button.alt:focus, input:focus, textarea:focus, input[type="button"]:focus, input[type="reset"]:focus, input[type="submit"]:focus,
input[type="email"]:focus, input[type="tel"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus {
	outline-color: #7f54b3;
    outline: none !important;
}

input[type="text"], input[type="number"], input[type="email"], input[type="tel"], input[type="url"], input[type="password"], input[type="search"],
textarea, .input-text, select, .select2-container .select2-selection--single, .select2-container--default .select2-selection--single {
	padding: 5px 6px 4px 6px;
	background-color: #fff;
	color: var(--text-color);
	border: 1px solid var(--border-color);
	-webkit-appearance: none;
	box-sizing: border-box;
	font-weight: normal;
	box-shadow: none !important;
    border-radius: 0;
}
select {
    -webkit-appearance: auto;
}
select:not(.orderby) {
    height: 33px;
}

.select2-container .select2-selection--single,.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 38px;
}
.select2-container .select2-selection--single .select2-selection__rendered {
	padding: 0px;
}

/* ------------------------------------ */
/* Header                               */
/* ------------------------------------ */

#masthead {
    border-bottom: solid 2px var(--primary);
}

@media (min-width: 768px) {
    .site-header .site-branding {
        width: fit-content !important;
        margin-right: 40px !important;
    }
}

.site-header {
    padding-top: 10px;
    border: none;
}
.site-branding {
    margin-bottom: 0 !important;
    display: flex;
    flex-direction: column;
}

.custom-logo {
    height: 140px !important;
    width: auto !important;
}
.wp-custom-logo .custom-logo {
    padding: 10px 0 10px 0;
}

.site-header {
	margin-bottom: 0 !important;
}

/* Search */

#search {
    font-size: 14px;
    float: right;
    white-space: nowrap;
}
#search input {
    width: 400px;
    max-width: 100%;
    height: 30px;
}
#search button {
    color: #fff;
    background-color: var(--bg-button);
    padding: 5px 24px;
    margin-left: -4px;
    height: 30px;
    font-weight: 400;
}

/* ------------------------------------ */
/* Menu                                 */
/* ------------------------------------ */

header .col-full {
    display: flex;
    flex-direction: row;
}
header .col-full .header-right {
    margin-left: auto;
}

#menu {
    margin-left: auto;
    margin-top: 8px;
}
#menu .menu-item {
    display: flex;
    flex-direction: column;
    position: relative;
    float: left;
    margin-left: 60px;
    margin-top: 12px;
}
#menu .menu-item > span {
    font-size: 14px;
    line-height: 14px;
    white-space: nowrap;
    color: var(--text-color) !important;
}
#menu .menu-item > span:nth-child(2) {
    font-size: 11px;
    line-height: 11px;
}

#menu .menu-item:before {
    content: '';
    position: absolute;
    display: block;
    width: 28px;
    height: 28px;
    background-image: url(assets/img/icon-web.png);
    left: -32px;
    background-size: contain;
    background-repeat: no-repeat;
    top: 0px;
}
#menu .menu-item.contact:before {
    background-image: url(assets/img/icon-phone.png);
}
#menu .menu-item.account:before {
    background-image: url(assets/img/icon-account.png);
}
#menu .menu-item.quotes:before {
    background-image: url(assets/img/icon-quotes.png);
}
#menu .menu-item.cart:before {
    background-image: url(assets/img/icon-cart.png);
}

#menu .menu-item.cart {
    margin-right: -16px;
}

/* ------------------------------------ */
/* Mini Cart                            */
/* ------------------------------------ */

#site-header-cart {
    position: relative;
    top: -18px;
    left: 0px;
    width: 280px;
    margin-right: -170px;
    overflow: visible;
}
#site-header-cart > li:nth-child(1) * {
    font-size: 11px;
    line-height: 11px;
}

#site-header-cart > li:nth-child(1),
#site-header-cart > li:nth-child(1) span {
    color: var(--text-color) !important;
    opacity: 1.0 !important;
    font-size: 11px;
    line-height: 11px;
}
#site-header-cart > li:nth-child(2) {
    position: relative;
    left: -150px;
}
#site-header-cart .cart-contents:after {
    display: none !important;
}
#site-header-cart span.count{
    float: left;
    margin-right: 4px;
    border-right: solid 2px var(--text-color);
    padding-right: 6px;
}

#site-header-cart .widget_shopping_cart,
#site-header-cart .widget_shopping_cart .total,
#site-header-cart .widget_shopping_cart .buttons {
    background-color: var(--bg-gray) !important;
}

#site-header-cart .widget_shopping_cart {
    box-shadow: var(--box-shadow);
}


#site-header-cart .widget_shopping_cart p.total
{
    border-bottom: none !important
}

#site-header-cart .wc-gzd-total-mini-cart {
    padding-top: 0;
    margin-top: -12px;
    font-size: 11px;
    padding-left: 20px;
    padding-right: 20px;
}

/* ------------------------------------ */
/* Mobile Layout                        */
/* ------------------------------------ */

/* Menu */

@media (min-width: 840px) {
    .primary-navigation {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    #menu {
        min-height: 80px;
    }
}

@media (max-width: 840px) {
    header .col-full {
        display: flex;
        flex-direction: column;
    }
    .header-right {
        width: 100% !important;
    }
    #menu .menu-item {
        width: calc(33% - 60px);
    }
    nav#site-navigation .menu {
        height: calc(100vh - 160px);
        position: fixed;
        background-color: #fff;
        z-index: 99;
        width: 100vw;
        top: 160px;
        left: 0;
        padding-left: 25px;
        border-top: solid 2px var(--primary);
        padding-top: 15px;
    }
    .main-navigation:not(.toggled) .menu {
        display: none !important;
    }
    .woocommerce-active .site-header .site-header-cart {
        float: left !important;
    }
}

@media (max-width: 768px) {
    #search {
        float: left;
        width: 100%;
        margin-top: 40px;
        margin-bottom: -20px;
    }
    #search input {
        width: calc(100% - 80px);
    }
    #search button {
        width: 80px;
    }
}

@media (max-width: 768px) {
    button.menu-toggle {
        position: absolute;
        top: 20px;
        right: 20px;
    }
    #menu .menu-item {
        width: calc(50% - 60px);
    }
    .site-header-cart .cart-contents {
        display: block;
    }
    #site-header-cart {
        top: 0px;
    }
}

@media (max-width: 66.4989em) {
    button.menu-toggle {
        right: 2.617924em;
    }
    nav#site-navigation .menu {
        padding-left: 2.617924em;
    }
}
@media (max-width: 568px) {
    button.menu-toggle {
        right: 1.41575em;
    }
    nav#site-navigation .menu {
        padding-left: 1.41575em;
    }
}

/* Page */

@media (min-width: 768px) and (max-width: 840px) {
    .header-widget-region .wp-block-woocommerce-product-categories ul li {
        width: calc(50% - 20px) !important;
    }
}

@media (max-width: 768px) {
    .header-widget-region .wp-block-woocommerce-product-categories ul li {
        width: calc(100% - 20px) !important;
    }
}

/* Footer */

@media (max-width: 840px) {
    .footer-widget-1,
    .footer-widget-2 {
        width: 50%;
        float: left;
    }
    .footer-widget-1 > div,
    .footer-widget-2 > div {
        margin-bottom: 40px;
    }
    .footer-widget-4 {
        width: 100%;
        clear: both;
        text-align: left !important;
    }
}

/* ------------------------------------ */
/* Content                              */
/* ------------------------------------ */

#content {
    margin-top: 40px;
}
#primary {
    margin-bottom: 20px !important;
}
#main {
    margin-bottom: 0 !important;
}

@media (min-width: 768px) {
    .col-full {
        display: block;
    }
    #secondary {
        padding-left: 1.41575em;
        padding-right: 1.41575em;
    }
}

@media (max-width: 1100px) {
    #primary,
    #secondary {
        width: 100% !important;
    }
    #secondary {
        display: none !important;
    }
}

/* ------------------------------------ */
/* Page Height                          */
/* ------------------------------------ */

body,
#page {
    min-height: 100vh;
}
#page {
    display: flex;
    flex-direction: column;
}
#content {
    flex-grow: 1;
}

body.has-admin-bar,
body.has-admin-bar #page {
    min-height: calc(100vh - var(--wp-admin--admin-bar--height));
}

/* ------------------------------------ */
/* Sidebar                              */
/* ------------------------------------ */

#secondary {
    padding: 0 !important;
}
#secondary > div {
    padding: 12px 16px;
    background-color: var(--bg-gray);
    border-radius: var(--border-radius);
}

.widget-area .widget {
    margin-bottom: 8px;
}
.widget-area .widget a {
	font-size: 1.0em;
	font-weight: 400;
}
.widget-area .widget a:hover,
.widget-area .widget a.current {
    
}

#secondary .wp-block-woocommerce-product-categories {
    font-size: var(--wp--preset--font-size--normal);
}
.wc-block-product-categories .wc-block-product-categories-list-item a {
    margin-bottom: 2px;
    display: inline-block;
}
.wc-block-product-categories,
.wp-block-woocommerce-product-categories > .wc-block-product-categories-list {
    margin-bottom: 0px !important;
}
.wp-block-woocommerce-product-categories > .wc-block-product-categories-list > li:first-child {
    display: none;
}
.wp-block-woocommerce-product-categories > .wc-block-product-categories-list > li > a {
    font-weight: 600 !important;
}

#secondary .widget_media_image {
    padding: 0 !important;
    margin: 0 !important;
}
#secondary .widget_media_image img {
    border-radius: var(--border-radius);
}

#secondary .widget,
.header-widget-region .widget {
	font-size: 1.0em !important;
}

/* ------------------------------------ */
/* Footer                               */
/* ------------------------------------ */

footer {
    border-top: solid 2px var(--primary);
    padding: 10px 0 !important;
}

footer .footer-widgets {
	padding-top: 20px;
	border-bottom: none !important;
}

footer .widget_block {
    margin-bottom: 8px;
}
footer .block.footer-widget-4 {
    text-align: right;
}
footer .widget_nav_menu * {
    font-size: var(--wp--preset--font-size--normal) !important;
    font-weight: normal !important;
}
footer .widget_nav_menu .widget-title {
    padding-bottom: 0;
    border-bottom: none;
    text-transform: uppercase;
}
footer .widget_nav_menu ul.menu li {
    margin-bottom: 0;
    padding: 0;
}
footer .widget_nav_menu ul.menu li:before {
    display: none !important;
}

footer {
    margin-top: 60px;
}
footer > .col-full {
    position: relative;
}
footer > .col-full::before {
	content: '';
	position: absolute;
	top: -96px;
	right: 40px;
	width: 120px;
	height: 120px;
	display: block;
	background-image: url(assets/img/footer.png);
	background-size: contain;
	background-repeat: no-repeat;
}

.site-info {
	padding: 10px 0;
    width: 100%;
    font-size: 14px;
    display: contents;
}
.site-info .footer-copy {
    margin: 0 auto;
    text-align: center;
    font-size: 11px;
}
.storefront-handheld-footer-bar {
	display: none !important;
}

/* ------------------------------------ */
/* WooCommerce - Mini Cart              */
/* ------------------------------------ */

.widget_shopping_cart .total {
    text-align: left !important;
}
.widget_shopping_cart .total .amount {
    float: right;
}

.widget.woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons a.button {
    background-color: var(--primary) !important;
    color: #fff !important;
}
.widget.woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons a.button:hover {
    background-color: var(--secondary) !important;
}
.site-header-cart .cart-contents::after {
	line-height: inherit;
}

.shipping-costs-cart-info.wc-gzd-total-mini-cart {
    display: none !important;
}

.woocommerce-mini-cart-item.mini_cart_item .remove {
    display: none !important;
}
.woocommerce-mini-cart-item.mini_cart_item > span {
    font-size: 100%;
}

/* ------------------------------------ */
/* WooCommerce - Product Grid           */
/* ------------------------------------ */

.woocommerce-result-count {
    margin-top: 5px !important;
}
.woocommerce-result-count {
    display: none;
}

#primary main .storefront-sorting:last-child {
    display: none;
}

.products .product {
    margin-bottom: 30px !important;
}

.products .woocommerce-placeholder,
.products .attachment-woocommerce_thumbnail {
    margin-bottom: 8px !important;
}
.products .product h2 {
    font-weight: 500 !important;
}
.products .price {
    margin-bottom: 8px !important;
}
.products .price * {
    color: var(--text-color);
}
.products .wc-gzd-additional-info {
    display: none !important
}
.products .add_to_cart_button {
    margin-top: 15px;
}

.products .product .onsale {
    position: absolute;
    top: 20px;
    left: 20px;
}

.products .product {
    margin-right: 0;
    margin-bottom: 20px;
    padding: 20px 2.99%;
}
.products .product:hover {
    box-shadow: var(--box-shadow);
}

/* ------------------------------------ */
/* WooCommerce - Product Details        */
/* ------------------------------------ */

.single-product .wc-gzd-additional-info {
    margin: 0px !important;
    font-size: 11px !important;
    line-height: 13px !important;
}

.single-product .quantity input {
    padding: 6px 6px !important;
}
.single-product .summary .price {
    margin-bottom: 2px !important;
}
.single-product .woocommerce-product-details__short-description {
    margin-top: 30px;
}
.single-product .summary .cart {
    margin-top: 14px !important;
    margin-bottom: 10px !important;
}
.single-product .woocommerce-product-attributes tr > * {
    padding: 6px 12px 6px 12px;
}
.single-product .woocommerce-product-attributes tr th {
    font-weight: 500;
}
.single-product .woocommerce-product-gallery,
.single-product .summary {
    margin-bottom: 0px !important;
}

/* ------------------------------------ */
/* WooCommerce - Widgets                */
/* ------------------------------------ */

.widget_product_search {
    margin: 15px 0 0 0;
}
.site-search .search-field {
    padding: 6px 6px 6px 6px !important;
    padding-left: 28px !important;
}
.site-search .widget_product_search form::before {
	top: 9px;
	left: 9px;
}

.added_to_cart.wc-forward {
    display: none !important;
}

/* ------------------------------------ */
/* WooCommerce - Checkout               */
/* ------------------------------------ */

.thwmscf-buttons input[disabled=""] {
    display: none !important;
}

.woocommerce-form-login-toggle {
      padding-bottom: 30px;
}

/* ------------------------------------ */
/* WooCommerce - Shipping               */
/* ------------------------------------ */

#ship-to-different-address .woocommerce-form__input-checkbox {
	left: 0px !important;
}
#ship-to-different-address label span {
    margin-left: 24px !important;
    font-size: var(--wp--preset--font-size--normal) !important;
    font-weight: 500 !important;
    top: -2px;
    position: relative;
}
@media (max-width: 768px) {
    #ship-to-different-address label span {
        margin-left: -6px !important;
        top: 0px;
        position: relative;
    }
}

/* ------------------------------------ */
/* WooCommerce - Shipment Method        */
/* ------------------------------------ */

body.woocommerce-checkout .woocommerce-checkout ul#shipping_method li {
	position: relative;
}

body.woocommerce-checkout input.shipping_method {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: 2px solid #50575e;
	border-radius: 50%;
	cursor: pointer;
	display: inline-block;
	height: 1.5em;
	left: 0;
	margin: inherit;
	min-height: 24px;
	min-width: 24px;
	position: absolute;
	top: 50%;
	transform: translateY(-45%);
	width: 1.5em;
}

body.woocommerce-checkout .shipping_method:before {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #fff;
	border-radius: 50%;
	cursor: pointer;
	display: inline-block;
	height: 1.5em;
	left: 0;
	margin: inherit;
	min-height: 24px;
	min-width: 24px;
	position: absolute;
	top: 50%;
	transform: translateY(-45%);
	width: 1.5em;
}
body.woocommerce-checkout .shipping_method[checked=checked]::before {
	background: #000;
	border-radius: 50%;
	content: "";
	display: block;
	height: .65em;
	left: 50%;
	margin: 0;
	min-height: 12px;
	min-width: 12px;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
	width: .65em;
}

ul.woocommerce-shipping-methods {
    padding: 4px 0;
}
ul.woocommerce-shipping-methods li label[for^=shipping_method] {
    display: inline-block;
    margin-left: 30px;
    white-space: normal;
    width: 100%;
    padding-right: 30px;
}

ul.woocommerce-shipping-methods li label[for^=shipping_method] span.amount {
    float: right;
}

tr.woocommerce-shipping-totals.shipping > td:first-child {
    padding-top: 6px !important;
}

/* ------------------------------------ */
/* WooCommerce - Checkout Fields        */
/* ------------------------------------ */

@media (min-width: 768px) {
    #billing_address_2_field {
        margin-top: 26px;
    }
    #billing_company_field, #billing_country_field, #billing_address_1_field, #billing_postcode_field, #billing_email_field, #billing_phone_field,
    #shipping_company_field, #shipping_country_field, #shipping_address_1_field, #shipping_postcode_field, #shipping_email_field {
        width: 47.8260869565%;
        float: left;
        margin-right: 4.347826087%;
        clear: none;
    }
    #billing_address_2_field, #billing_city_field,
    #shipping_address_2_field, #shipping_city_field {
        width: 47.8260869565%;
        float: right;
        clear: none;
    }
}

.woocommerce-additional-fields {
    clear: both !important;
}
.woocommerce-form__input-checkbox {
    position: relative;
    top: -1px;
}
.woocommerce-message li, .woocommerce-info li, .woocommerce-error li {
	margin-top: 0px !important;
    margin-bottom: -2px !important;
    list-style: none !important;
}
#content .woocommerce .woocommerce-message .button.wc-forward {
    background-color: transparent !important;
    padding: 3px 0px !important;
}

.thwmscf-content .woocommerce-invalid input[type=text],
.thwmscf-content .woocommerce-invalid input[type=email],
.thwmscf-content .woocommerce-invalid input[type=number],
.thwmscf-content .woocommerce-invalid select {
    border: solid 1px var(--invalid);
}

/* ------------------------------------ */
/* WooCommerce - Cart Table             */
/* ------------------------------------ */

.woocommerce .shop_table {
    background-color: var(--bg-dark);
}
table:not(.has-background) th {
	background-color: var(--bg-dark);
}
table:not(.has-background) tbody td {
	background-color: #fff !important;
}
table:not(.has-background) tbody tr:nth-child(2n) td, fieldset, fieldset legend {
	background-color: #fff !important;
}
table.cart td.product-remove, table.cart td.actions {
	background-color: #fff !important;
}

@media (min-width: 768px) {
    table.cart th, table.cart td,
    .woocommerce-checkout-review-order-table th,
    .woocommerce-checkout-review-order-table td {
        padding: 6px 12px 6px 12px;
    }
    table.cart td.product-remove, table.cart td.actions {
        width: 20px;
        padding: 0 0 0 10px;
    }
    
    .woocommerce .shop_table tr.cart_item td {
        border-bottom: solid 1px var(--border-checkout);
        vertical-align: middle;
        padding-right: 40px;
    }
    .woocommerce .shop_table tr.cart_item td:last-child {
        padding-right: 0px;
    }
    .wc-gzd-product-name-right {
        min-height: 60px;
        line-height: 60px;
     }
     .woocommerce .shop_table .product-name {
        width: 100%;
    }
    .woocommerce .shop_table .product-total {
        min-width: 250px;
        text-align: right;
        padding-right: 12px !important;
    }
    .cart-subtotal > td:last-child,
    .order-total > td:last-child,
    .order-tax > td:last-child {
        text-align: right;
        padding-right: 12px !important;
    }
    .woocommerce .shop_table label[for*=selbstabholung] {
        width: 180px;
    }
    .woocommerce .shop_table label[for*=spedition] {
        width: 180px;   /* 215px */
    }
}

.woocommerce .shop_table thead tr th {
    border-top: solid 1px var(--border-checkout);
    border-bottom: solid 1px var(--border-checkout);
}

.woocommerce .shop_table .size-woocommerce_thumbnail {
    width: auto;
    height: 60px;
}

#payment .payment_methods > li {
	background-color: var(--bg-dark) !important;
    border: solid 1px var(--border-checkout);
    border-bottom: 0;
}
#payment .payment_methods > li:last-child {
    border-bottom: solid 1px var(--border-checkout) !important;
}

.cart_totals *,
.woocommerce-shipping-totals {
    white-space: nowrap;
}

.woocommerce-checkout-review-order-table tfoot tr th {
    text-align: right;
}
.woocommerce-checkout-review-order-table tfoot tr th,
.woocommerce-checkout-review-order-table tfoot tr td {
    padding: 2px 12px 2px 12px;
}
.woocommerce-checkout-review-order-table tfoot tr:first-child th,
.woocommerce-checkout-review-order-table tfoot tr:first-child td {
    padding: 6px 12px 2px 12px;
}
.woocommerce-checkout-review-order-table tfoot tr:last-child th,
.woocommerce-checkout-review-order-table tfoot tr:last-child td {
    border-bottom: solid 1px var(--border-checkout) !important;
    padding: 2px 12px 6px 12px;
}

table.cart td.product-remove, table.cart td.actions {
	background-color: #fdfdfd !important;
}

/* ------------------------------------ */
/* WooCommerce - Cart Summary           */
/* ------------------------------------ */

.cart-collaterals {
    margin-top: -50px;
}
.cart-collaterals .cart_totals {
    width: 100% !important;
    float: none !important;
}
.cart-collaterals .cart_totals .shop_table {
    border-top: solid 1px var(--border-checkout);
    border-bottom: solid 1px var(--border-checkout);
}
.cart-collaterals .cart_totals .shop_table th {
    width: 100%;
    text-align: right;
}
.cart-collaterals .cart_totals .shop_table td {
    background-color: var(--bg-dark) !important;
}
.cart-collaterals .cart_totals .shop_table tr th,
.cart-collaterals .cart_totals .shop_table tr td {
    padding: 2px 12px 2px 12px;
    padding-right: 20px !important;
}
.cart-collaterals .cart_totals .shop_table tr:first-child th,
.cart-collaterals .cart_totals .shop_table tr:first-child td {
    padding: 6px 12px 2px 12px;
}
.cart-collaterals .cart_totals .shop_table tr:last-child th,
.cart-collaterals .cart_totals .shop_table tr:last-child td {
    border-bottom: solid 1px var(--border-checkout) !important;
    padding: 2px 12px 6px 12px;
}

.cart-collaterals .cart_totals .shop_table ul#shipping_method {
    margin-bottom: 0px;
}

button[name=update_cart],
.wc-proceed-to-checkout .checkout-button {
    float: right;
    width: 220px;
}

.woocommerce-table--order-details tfoot tr:nth-child(4) {
    font-weight: 600;
}

/* ------------------------------------ */
/* WooCommerce - Checkout Widgets       */
/* ------------------------------------ */

#thwmscf_wrapper {
    margin-top: -50px;
}

.thwmscf-tab-panels {
    background-color: transparent !important;
    padding: 10px 0 0 0;
}

#action-prev {
    float: left;
}
#action-prev.confirm {
    margin-top: -60px;
}

.wc-gzd-place-order {
    float: right;
    margin-top: 20px;
}
.wc-gzd-place-order #place_order {
    position: relative;
    top: -14px;
}

@media (min-width: 1160px) {
    .thwmscf_time_line_step .thwmscf-index {
        /* right: -120px; */
    }
}

.wc-proceed-to-checkout .button.checkout-button {
	font-size: 1.0em;
}

/* ------------------------------------ */
/* WooCommerce - Thank You Page         */
/* ------------------------------------ */

.woocommerce-thankyou-order-received {
    font-weight: 500;
}
.woocommerce-thankyou-order-details {
    margin: 30px 0 !important;
    background-color: var(--bg-dark);
    border-top: solid 1px var(--border-checkout);
    border-bottom: solid 1px var(--border-checkout);
}
.woocommerce-thankyou-order-details > li {
    border-bottom: solid 1px var(--border-checkout);
}
ul.order_details li:last-child {
	padding-bottom: 1.0em;
}
ul.order_details::before, ul.order_details::after {
    display: none !important;
}
body.woocommerce-order-received .shipped_via {
    display: none;
}
body.woocommerce-order-received .woocommerce-order-details table tr th,
body.woocommerce-order-received .woocommerce-order-details table tr td {
    padding: 6px 12px 6px 12px;
}
body.woocommerce-order-received .woocommerce-order-details table tfoot tr th,
body.woocommerce-order-received .woocommerce-order-details table tfoot tr td {
    padding: 2px 12px 2px 12px;
}
body.woocommerce-order-received .woocommerce-order-details table tfoot tr:first-child th,
body.woocommerce-order-received .woocommerce-order-details table tfoot tr:first-child td {
    border-top: solid 1px var(--border-checkout) !important;
    padding: 6px 12px 2px 12px;
}
body.woocommerce-order-received .woocommerce-order-details table tfoot tr:last-child th,
body.woocommerce-order-received .woocommerce-order-details table tfoot tr:last-child td {
    border-bottom: solid 1px var(--border-checkout) !important;
    padding: 2px 12px 6px 12px;
}
body.woocommerce-order-received .woocommerce-order-details {
    margin-bottom: 30px;
}
address {
	font-style: normal;
}

/* ------------------------------------ */
/* Home - Categories                    */
/* ------------------------------------ */

body .header-widget-region {
    display: none;
}
body.home .header-widget-region {
    display: block;
}
body.home #content {
	margin-top: 0px;
}

@media (max-width: 1100px) {
    body.tax-product_cat .header-widget-region {
        display: block;
        margin-bottom: -40px;
        margin-top: 0px;
    }
}

.header-widget-region .wp-block-woocommerce-product-categories > ul.wc-block-product-categories-list {
    width: calc(100% + 20px);
}
.header-widget-region .wp-block-woocommerce-product-categories > ul.wc-block-product-categories-list > li {
    width: calc(25% - 20px);
    min-width: 200px;
    position: relative;
    z-index: 99 !important;
    float: left;
    background-color: var(--bg-menu);
    border-radius: var(--border-radius);
    padding: 12px 20px;
    margin-right: 20px;
    cursor: pointer;
    margin-bottom: 20px;
}
.header-widget-region ul.wc-block-product-categories-list li a {
    color: var(--text-color);
    font-weight: normal !important;
    margin: 0 !important;
}
.header-widget-region ul.wc-block-product-categories-list--depth-1 {
    position: absolute;
    z-index: 99 !important;
    left: 0px;
    display: none;
    margin: 0px 0 12px 0;
    padding: 16px 20px;
    background-color: var(--bg-menu);
    border-radius: var(--border-radius);
    width: 100%;
}
.header-widget-region ul.wc-block-product-categories-list--depth-1 > li {
    margin-bottom: 4px;
}

.header-widget-region li.wc-block-product-categories-list-item.open {
    background-image: url(assets/img/icon-close.png);
    background-position: center right 20px;
    background-repeat: no-repeat;
    background-size: 18px 18px;
}
.header-widget-region li.wc-block-product-categories-list-item.open > a {
    font-weight: 500;
}
.dropdown-overlay {
    position: fixed;
    z-index: 9 !important;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.4;
}

/* ------------------------------------ */
/* Home - Titles                        */
/* ------------------------------------ */

.wp-block-heading.home-title {
    font-size: 1.25em;
    line-height: 1.25;
    font-weight: normal;
    color: #fff;
    background-color: var(--primary);
    border-radius: var(--border-radius);
    padding: 10px 20px;
}

.wp-block-heading.home-title.icon-dein-huhn {
    position: relative;
    padding-left: 200px;
}
.wp-block-heading.home-title.icon-dein-huhn:before {
    content: '';
    position: absolute;
    display: block;
    width: 180px;
    height: 120px;
    background-image: url(assets/img/icon-dein-huhn.png);
    left: 10px;
    top: -15px;
    background-size: contain;
    background-repeat: no-repeat;
}

.wp-block-button__link.wp-element-button {
    font-size: 1.0em !important;
    line-height: 1.0 !important;
    font-weight: normal !important;
    color: #fff;
    background-color: var(--bg-button);
    border-radius: var(--border-radius) !important;
    padding: 5px 24px;
}

/* ------------------------------------ */
/* Home - Slider                        */
/* ------------------------------------ */

.slider-home {
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .n2-ss-slider {
        height: 80vw;
    }
}

/* ------------------------------------ */
/* WooCommerce - My Account             */
/* ------------------------------------ */

.woocommerce-EditAccountForm fieldset {
    padding-left: 0;
    padding-right: 0;
}
.show-password-input:after {
    top: -5px;
    position: relative;
}
.woocommerce-MyAccount-content .woocommerce-orders-table__row td {
    vertical-align: middle;
}
.woocommerce-shipments-table__cell.woocommerce-shipments-table__cell-shipment-status {
    white-space: nowrap;
    vertical-align: middle;
}

.woocommerce-MyAccount-content h2 {
    font-weight: 500;
    font-size: 1.25em;
    margin-top: 24px;
}

.woocommerce-MyAccount-contents table th {
    font-weight: 500;
}
.woocommerce-MyAccount-content table thead th {
	padding: 1em 1.41575em;
	vertical-align: middle;
}
.woocommerce-table--order-details .product-total {
    text-align: left !important;
}

.woocommerce-order-details .shop_table.order_details tfoot tr th,
.woocommerce-order-details .shop_table.order_details tfoot tr td {
    padding-top: 4px;
    padding-bottom: 4px;
}
.woocommerce-order-details .shop_table.order_details tfoot tr:first-child th,
.woocommerce-order-details .shop_table.order_details tfoot tr:first-child td {
    padding-top: 1em;
    border-top: solid 1px var(--border-checkout) !important;
}
.woocommerce-order-details .shop_table.order_details tfoot tr:last-child th,
.woocommerce-order-details .shop_table.order_details tfoot tr:last-child td {
    padding-bottom: 1em;
    border-bottom: solid 1px var(--border-checkout) !important;
}

/* ------------------------------------ */
/* WooCommerce - Product Grid (Home)    */
/* ------------------------------------ */

.wc-block-grid__products {
    display: flex !important;
    gap: 10px !important;
    margin: 10px -10px 30px 0 !important;
}
.wc-block-grid.has-4-columns  .wc-block-grid__product {
    flex: 1 0 25% !important;
    max-width: calc(25% - 10px) !important;
    margin: 0 !important;
    font-size: 1.0em !important;
    border: solid 10px transparent !important;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .wc-block-grid.has-4-columns  .wc-block-grid__product {
        flex: 1 0 50% !important;
        max-width: calc(50% - 10px) !important;
    }
}

@media (max-width: 768px) {
    .wc-block-grid.has-4-columns  .wc-block-grid__product {
        flex: 1 0 100% !important;
        max-width: calc(100% - 10px) !important;
    }
}

.wc-block-grid__product {
    background-color: var(--bg-gray);
}
.wc-block-grid__product:hover {
    box-shadow: var(--box-shadow);
}

.wc-block-grid__product .wc-block-grid__product-image,
.wc-block-grid__product .wc-block-grid__product-image img {
    margin: 0 !important;
}

.wc-block-grid__product .wc-gzd-additional-info {
    display: none !important;
}
.wc-block-grid__product .wc-block-grid__product-add-to-cart {
    display: none !important;
}
.wc-block-grid__product .woocommerce-price-suffix {
    display: none !important;
}

.wc-block-grid__product .wc-block-grid__product-title {
    width: calc(100% + 20px);
    border-top: solid 3px #fff;
    margin: 2px 0 0 -10px !important;
    padding: 10px 10px 0 10px !important;
    color: var(--text-light);
}
.wc-block-grid__product .wc-block-grid__product-price,
.wc-block-grid__product .wp-block-woocommerce-product-price {
    margin: 0 !important;
}
.wc-block-grid__product .wc-block-grid__product-price * {
    color: var(--text-light);
}
.wc-block-grid__product .wc-block-grid__product-price .amount,
.wc-block-grid__products .wc-block-grid__product-price__value {
    font-weight: 500;
}

/* ------------------------------------ */
/* WooCommerce - Product Grid (Shop)    */
/* ------------------------------------ */

.woocommerce-page.archive .products {
    display: flex !important;
    flex-wrap: wrap;
    gap: 10px !important;
    margin: 10px -20px 30px 0px !important;
}
.woocommerce-page.archive .products:before {
    display: none !important;
}

.woocommerce-page.archive .products .product {
    flex: 1 0 33% !important;
    width: calc(33% - 10px) !important;
    max-width: calc(33% - 10px) !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 1.0em !important;
    border: solid 10px transparent !important;
    background-color: var(--bg-gray);
}
.woocommerce-page.archive .products .product:hover {
    box-shadow: var(--box-shadow);
}

@media (max-width: 1024px) {
    .woocommerce-page.archive .products .product {
        flex: 1 0 50% !important;
        width: calc(50% - 10px) !important;
        max-width: calc(50% - 10px) !important;
    }
}

@media (max-width: 768px) {
    .woocommerce-page.archive .products .product {
        flex: 1 0 100% !important;
        width: calc(100% - 10px) !important;
        max-width: calc(100% - 10px) !important;
    }
}

.woocommerce-page.archive .products .product .woocommerce-loop-product__title {
    width: calc(100% + 20px);
    border-top: solid 3px #fff;
    margin: 2px 0 0 -10px !important;
    padding: 10px 10px 0 10px !important;
    color: var(--text-light) !important;
    font-weight: normal !important;
}

.woocommerce-page.archive .products .product .price {
    margin: 0 !important;
}
.woocommerce-page.archive .products .product .woocommerce-Price-amount,
.woocommerce-page.archive .products .product .woocommerce-Price-amount * {
    color: var(--text-light) !important;
    font-weight: 500 !important;
}

.woocommerce-page.archive .products .product .woocommerce-price-suffix,
.woocommerce-page.archive .products .product .add_to_cart_button {
    display: none !important;
}

/* ------------------------------------ */
/* WooCommerce - Related Products       */
/* ------------------------------------ */

.single-product .products {
    width: 100% !important;
    display: flex !important;
    flex-wrap: wrap;
    gap: 10px !important;
    margin: 10px -20px 30px 0px !important;
}
.single-product .products:before {
    display: none !important;
}

.single-product .products .product {
    flex: 1 0 25% !important;
    width: calc(25% - 10px) !important;
    max-width: calc(25% - 10px) !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 1.0em !important;
    border: solid 10px transparent !important;
    background-color: var(--bg-gray);
}
.single-product .products .product:hover {
    box-shadow: var(--box-shadow);
}

@media (max-width: 1024px) {
    .single-product .products .product {
        flex: 1 0 50% !important;
        width: calc(50% - 10px) !important;
        max-width: calc(50% - 10px) !important;
    }
}

@media (max-width: 768px) {
    .single-product .products .product {
        flex: 1 0 100% !important;
        width: calc(100% - 10px) !important;
        max-width: calc(100% - 10px) !important;
    }
}

.single-product .products .product .woocommerce-loop-product__title {
    width: calc(100% + 20px);
    border-top: solid 3px #fff;
    margin: 2px 0 0 -10px !important;
    padding: 10px 10px 0 10px !important;
    color: var(--text-light) !important;
    font-weight: normal !important;
}

.single-product .products .product .price {
    margin: 0 !important;
}
.single-product .products .product .woocommerce-Price-amount,
.single-product .products .product .woocommerce-Price-amount * {
    color: var(--text-light) !important;
    font-weight: 500 !important;
}

.single-product .products .product .woocommerce-price-suffix,
.single-product .products .product .add_to_cart_button {
    display: none !important;
}

/* ------------------------------------ */
/* WooCommerce - Single Product         */
/* ------------------------------------ */

.single-product #primary {
    width: 100% !important;
}
.single-product #secondary {
    display: none !important;
}

.single-product .wc-block-components-notice-banner {
    display: none;
}

.single-product .woocommerce-price-suffix,
.single-product .shipping-costs-info {
    display: none !important;
}
.single-product .product_meta {
    display: none !important;
}
.single-product .storefront-product-pagination {
    display: none !important;
}

.single-product .related.products > h2 {
    width: calc(100% - 0px);
    font-size: 1.25em;
    line-height: 1.25;
    font-weight: normal;
    color: #fff;
    background-color: var(--primary);
    border-radius: var(--border-radius);
    padding: 10px 20px;
    margin-bottom: 0;
}

.storefront-sticky-add-to-cart__content img {
    border: none;
}
.storefront-sticky-add-to-cart__content-title {
    color: var(--text-color);
    font-size: 0;
}
.storefront-sticky-add-to-cart__content-title strong {
    font-size: var(--wp--preset--font-size--normal) !important;
}
.storefront-sticky-add-to-cart__content-price {
    opacity: 1.0;
}
.storefront-sticky-add-to-cart__content-price .amount,
.storefront-sticky-add-to-cart__content-price * {
    color: var(--text-color) !important;
}

.single-product h1.product_title {
    margin-top: 20px;
    font-size: 2.0em;
    text-transform: uppercase;
    font-weight: 500;
}

.single-product .woocommerce-product-gallery__image {
    border: solid 1px var(--border-color);
}

/* ------------------------------------ */
/* WooCommerce - Breadcrumbs            */
/* ------------------------------------ */

.single-product #content {
    margin-top: 0;
}

.storefront-breadcrumb {
    display: none;
    margin-bottom: 0;
}
.single-product .storefront-breadcrumb {
    display: block;
}

.woocommerce-breadcrumb > a:nth-child(1),
.woocommerce-breadcrumb > a:nth-child(2),
.woocommerce-breadcrumb > a:nth-child(3),
.woocommerce-breadcrumb > a:nth-child(4),
.woocommerce-breadcrumb > span:nth-child(1),
.woocommerce-breadcrumb > span:nth-child(2),
.woocommerce-breadcrumb > span:nth-child(3),
.woocommerce-breadcrumb > span:nth-child(4) {
    display: none;
}

.woocommerce-breadcrumb {
    width: calc(100% - 0px);
    font-size: 1.25em;
    line-height: 1.25;
    font-weight: normal;
    color: #fff;
    background-color: var(--primary);
    border-radius: var(--border-radius);
    padding: 10px 20px;
}
.woocommerce-breadcrumb a {
    color: #fff !important;
}

.woocommerce-breadcrumb .breadcrumb-separator::after {
	font-weight: 600;
	content: "/";
	font-size: 1.25em;
	opacity: 1.0;
    top: 44%;
}

/* ------------------------------------ */
/* WooCommerce - Single Product Tabs    */
/* ------------------------------------ */

.single-product .tabs.wc-tabs {
    width: 100% !important;
    border: none;
}
.single-product .woocommerce-Tabs-panel {
    display: block;
}
.single-product .woocommerce-Tabs-panel > h2:first-child {
    display: none;
}
.single-product .woocommerce-tabs .panel {
    width: 100%;
    float: none;
}
.woocommerce-tabs ul.tabs > li::after {
	top: 6px !important;
    right: 0px !important;
    content: '+';
    font-size: 2em;
    opacity: 1.0 !important;
    pointer-events: none !important;
    cursor: pointer;
}
.woocommerce-tabs ul.tabs > li.active::after {
    top: -8px !important;
    content: '_';
}
.single-product .tabs.wc-tabs > li {
    border: none;
}
.single-product .tabs.wc-tabs > li > a {
    color: var(--text-color) !important;
    text-transform: uppercase;
    border-bottom: solid 1px var(--text-color);
    padding: 0;
    margin-top: 20px;
    margin-bottom: 8px;
}
table.woocommerce-product-attributes {
    width: auto;
}
table.woocommerce-product-attributes tr th,
table.woocommerce-product-attributes tr td {
    background: none !important;
    font-weight: normal !important;
    padding-left: 0 !important;
}

#tab-description ul {
    margin-left: 0;
}
#tab-description ul li {
    border-bottom: none !important;
}

/* ------------------------------------ */
/* WooCommerce - Cart Page              */
/* ------------------------------------ */

.woocommerce-cart .wp-block-woocommerce-cart.alignwide {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.woocommerce-cart #content button.wc-block-components-quantity-selector__button {
    padding: 0 !important;
    opacity: 1.0 !important;
    border-color: var(--primary) !important;
}
.wc-block-components-notices__snackbar {
    display: none;
}
.woocommerce-cart .wc-block-components-totals-shipping__options span.wc-block-components-radio-control__label {
    margin-bottom: -6px;
    display: block;
    margin-top: 2px;
}
.wc-block-components-radio-control .wc-block-components-radio-control__input {
	left: 0px !important;
}
.woocommerce-cart table.wc-block-cart-items tr td:first-child {
    padding-right: 10px;
}
.woocommerce-cart .wc-block-cart__submit-button {
    background-color: var(--primary) !important;
}
.woocommerce-cart .wc-block-cart-item__quantity {
    position: relative;
}
.woocommerce-cart #content button.wc-block-cart-item__remove-link {
    font-size: 14px;
    position: relative;
    padding: 7px 15px !important;
    border-radius: 4px;
    border: solid 1px #6f1314 !important;
}

@media (max-width: 768px) {
    .woocommerce-cart #content button.wc-block-cart-item__remove-link {
        position: absolute;
        top: 16px;
        left: 120px;
    }
}
@media (min-width: 768px) {
    .woocommerce-cart table.wc-block-cart-items tr td:first-child {
        width: 140px;
    }
    .woocommerce-cart #content button.wc-block-cart-item__remove-link {
        position: absolute;
        top: 0px;
        left: 120px;
    }
}

.wc-block-cart .wc-block-cart__submit-container--sticky::before {
    box-shadow: var(--box-shadow) !important;
}

tr.tax-rate td:last-child {
    text-align: right;
}

/* ------------------------------------ */
/* WooCommerce - My Account Login       */
/* ------------------------------------ */

.woocommerce-form-login__rememberme {
    display: none !important;
}
.woocommerce-form-login {
	margin-bottom: 120px;
	border: solid 1px var(--border-color);
	padding: 20px;
	border-radius: 8px;
}

.woocommerce-password-strength {
	text-align: left;
}
.woocommerce-password-hint {
    display: none !important;
}

/* ------------------------------------ */
/* CMPLZ                                */
/* ------------------------------------ */

.cmplz-cookiebanner .cmplz-category svg {
    display: none;
}

/* ------------------------------------ */
/* Request a Quote                      */
/* ------------------------------------ */

body.page-id-102 .wc-block-components-notice-banner .button.wc-forward  {
    display: none;
}

body.page-id-102 .wc-block-components-notice-banner .wc-forward {
    display: none !important;
}

tr.woocommerce-cart-form__quote-item td {
    padding: 10px !important;
}
tr.woocommerce-cart-form__quote-item td.product-name > p {
    display: none;
}
body.page-id-102 th.product-remove,
tr.woocommerce-cart-form__quote-item td.product-remove {
    width: 10px !important;
}
tr.woocommerce-cart-form__quote-item td.product-remove {
    background: #fff !important;
}

.addify__quote-item .wc-order-item-sku {
    display: none;
}

.addify-quote-form table th,
.addify-quote-details table th {
    font-weight: 500 !important;
}
.addify-quote-form table th,
.addify-quote-form table tr td,
.addify-quote-details table th,
.addify-quote-details table tr td {
	padding: 1em 1.41575em !important;
	vertical-align: middle !important;
}

.woocommerce-MyAccount-content .quote_details:not(.cart) tr td,
.woocommerce-MyAccount-content .quote_details:not(.cart) tr th {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
}
.woocommerce-MyAccount-content .quote_details:not(.cart) tr:first-child td,
.woocommerce-MyAccount-content .quote_details:not(.cart) tr:first-child th {
    padding-top: 1em !important;
}
.woocommerce-MyAccount-content .quote_details:not(.cart) tr:last-child td,
.woocommerce-MyAccount-content .quote_details:not(.cart) tr:last-child th {
    padding-bottom: 1em !important;
}
.woocommerce-MyAccount-content .quote_details td,
.woocommerce-MyAccount-content .my_account_quotes td {
	vertical-align: middle;
}

.woocommerce-button.button.view {
    white-space: nowrap;
}

@media (max-width: 768px) {
    table.addify-quote-form__contents td[data-title]::before {
        display: none !important;
    }
    table.addify-quote-form__contents td {
        display: table-cell !important;
        text-align: left !important;
    }
    table.addify-quote-form__contents.cart td.product-remove a.remove {
        position: relative;
        font-size: 1.41575em;
        top: 0;
        right: 0;
    }
    table.addify-quote-form__contents.cart td.product-thumbnail {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    table.addify-quote-form__contents.cart tr td:first-child {
        padding-left: 0 !important;
    }
    table.addify-quote-form__contents.cart tr td:last-child {
        padding-right: 0 !important;
    }
    table.addify-quote-form__contents.cart td.actions {
        text-align: right !important;
    }
}

.addify-quote-form table.cart {
	margin-bottom: 2em;
}

div.af_quote_fields {
    width: 100%;
}
div.af_quote_fields tr.addify-option-field td,
div.af_quote_fields tr.addify-option-field th {
    
}
div.af_quote_fields tr.addify-option-field {
    border: none !important;
}

div.af_quote_fields .form_row {
    padding: 1em 1.41575em !important;
    padding-top: 0 !important;
}

@media (max-width: 768px) {
    div.af_quote_fields tr.addify-option-field td,
    div.af_quote_fields tr.addify-option-field th {
        padding: 0 !important;
    }
    div.af_quote_fields .form_row {
        padding: 0 !important;
    }
}