/*
    Theme Name: Ton Merckx Retro Wielershirts
    Author: Cognito Concepts
    Author URI: https://cognito.nl
    Description: Ton Merckx retro wielershirts
    Requires at least: 6.1
    Requires PHP: 8+
    Version: 1.0
    Text Domain: tmrw
    Domain Path: /languages
*/

/* Body / global */

body {
    margin: 0 auto;
    padding: 0;
    max-width: 1920px;

    /* Elementor full width does not take in account the scrollbar. Works in Firefox but not Chrome. */
    overflow-x: hidden;
}

[v-cloak] {
    display: none;
}

.page-width,
.product,
.tmrw-full-width-bg .elementor-container {
    max-width: 1300px;
    margin: 0 auto;
}

.tmrw-white-button,
.tmrw-black-button {
    display: inline-block;
    border: 1px solid black;
    padding: 15px 40px;

    font-family: 'opensans-regular';
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
}

.tmrw-white-button {
    background-color: white;
    color: black;
}

.tmrw-black-button {
    background-color: black;
    color: white;
}

/* Header */

header {
    display: grid;
    grid-template-columns: 0 391px calc(100% - 596px) 205px;
    justify-content: space-between;
    align-items: center;

    min-height: 100px;
}

#logo img {
    max-width: 100%;
    height: auto;
}

#menu-main {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    column-gap: 3%;

    margin: 0;
    padding: 0;

    list-style: none;
}

#menu-main a {
    font-family: 'opensans-regular';
    font-size: 15px;
    letter-spacing: 1px;
    text-decoration: none;
    color: black;
}

#menu-main li.current-menu-item a {
    font-family: 'opensans-bold';
    text-transform: uppercase;
}

#menu-extras {
    display: grid;
    grid-template-columns: 85px 60px 60px;
    justify-items: right;
}

#menu-extras > * {
    margin: auto 0;
}

#tmrw-language-switcher-container {
    position: relative;
    width: 100%;
    height: 100%;
}

#tmrw-language-switcher {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;

    margin: 0;
    padding: 12px 8px 8px 36px;

    background-color: transparent;
}

#tmrw-language-switcher:hover {
    background-color: white;
}

#tmrw-language-switcher {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#tmrw-language-switcher a:not(:first-child) {
    display: none;
}

#tmrw-language-switcher.clicked a:not(:first-child) {
    display: inline;
}

/* Prevents the hover over effect on mobile devices */
@media (hover: hover) {
    #tmrw-language-switcher:hover a:not(:first-child) {
        display: inline;
    }
}

#tmrw-language-switcher a {
    font-family: 'opensans-regular'!important;
    font-size: 12px;
    text-decoration: none;
    text-transform: uppercase;
    color: #4691d2;
}

#mobile-open,
#mobile-close {
    display: none;
    position: relative;
    margin: 18px 0;
    padding-left: calc(50% - 20px);
}

#cart-container {
    position: relative;
}

#cart-count {
    position: absolute;
    top: 62%;
    left: 50%;
    transform: translate(-50%, -50%);

    font-family: 'opensans-regular';
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    color: black;
}

@media (max-width: 1320px) {
    header {
        grid-template-columns: 10px 391px calc(100% - 606px) 85px 60px 60px;
    }
}

@media (max-width: 1175px) {
    header {
        display: block;
    }

    #logo {
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
    }

    #logo {
        text-align: center;
    }

    #menu-main {
        margin: 20px 0;
    }

    #menu-extras {
        display: grid;
        grid-template-columns: 60px 60px 60px;
        justify-items: center;
        justify-content: space-around;
        margin: 14px calc(50% - 90px);
    }
}

@media (max-width: 580px) {
    #main-menu-container {
        display: none;
    }

    #menu-main {
        display: block;
        margin: 45px 0
    }

    #menu-main li {
        text-align: center;
        margin: 15px 0;
    }

    #menu-extras {
        display: none;
    }

    #mobile-open {
        display: block;
    }
}

/* Banner */

#banner {
    position: relative;
    width: 100%;
    background-color: #fbf9f9;
}

#banner::not(.woocommerce-cart) {
    margin-bottom: 18px;
}

.product-template-default #banner {
    margin-bottom: 0;
}

#collection #banner {
    margin-bottom: 48px;
}

#collection {
    min-height: 500px;
}

#banner > div {
    position: relative;
}

#banner.plain > div {
    position: relative;
    min-height: 120px;
}

#banner img {
    width: 100%;
    height: auto;
}

#title {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin: 0;

    font-family: 'lora-regular';
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    color: #717171;
    letter-spacing: 1px;
}

#banner.plain #breadcrumbs {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

#banner.plain #breadcrumbs a {
    font-family: 'open-sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    text-decoration: none;
    color: black;
}

#filter-container,
#search-container {
    position: absolute;
    right: 0;
    bottom: 10%;
}

#filter-container {
    display: grid;
    width: 1000px;

    grid-template-columns: 360px 360px 180px;
    justify-content: space-around;
}

#search-container {
    display: flex;
    width: 100%;
    justify-content: center;
}

#filter-container select,
#filter-container option {
    width: 100%;
    padding: 6px 24px;

    font-size: 19px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#filter-container select {
    border: none;

    background-color: black;

    font-family: 'opensans-light';
    color: white;
}

#filter-container option {
    background-color: white;

    font-family: 'opensans-regular';
    font-size: 15px;
    color: black;
}

#search-container input {
    width: 95%;
    height: 37px;
    max-width: 444px;
    padding: 0 10px;
    border: none;

    font-family: 'opensans-regular';
}

#search-form {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
}

#search-form #query {
    width: 100%;
    height: 100%;
    padding-left: 10px;
    background-color: black;
    
    color: white;

    border: none;
    outline: none;
}

#search-form #search {
    position: absolute;
    top: 15%;
    right: 5px;
    width: auto;
    height: 70%;
    padding: 0;
    margin: 0;

    cursor: pointer;
}

@media (max-width: 1320px) {
    #banner.plain #title {
        left: 8px;
    }

    #banner.plain #breadcrumbs {
        right: 8px;
    }
}

@media (max-width: 1010px) {
    #filter-container {
        width: 100%;
        grid-template-columns: 30% 30% 30%;
        justify-content: space-around;    
    }
}

@media (max-width: 600px) {
    #filter-container {
        position: relative;
        display: block;
        padding: 0 8px;
    }

    #filter-container .select-container {
        width: calc(100% - 16px);
        margin-top: 15px;
    }

    #search-form {
        width: calc(100% - 16px);
        height: 40px;
        margin-top: 15px;
    }
}

@media (max-width: 444px) {
    #banner.plain #breadcrumbs {
        display: none;
    }
}

/* Footer */

footer {
    max-width: 100%;
    min-height: 500px;
    padding: 38px 8px 8px 8px;

    background-color: #323232;
}

#footer-widgets {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
    align-content: start;
    column-gap: 10px;

    color: white;
}

#footer-widgets h2 {
    margin-top: 0;
}

#footer-widget-1 {
    max-width: 570px;
}

.widget h2,
.widget li,
.widget a,
.widget p {
    font-family: 'opensans-light';
    font-size: 13px;

    line-height: 24px;
}

.widget h2 {
    margin-bottom: 27px;
    letter-spacing: 1px;
}

.widget ul {
    margin: 0;
    padding: 0;
}

.widget li {
    list-style-type: none;
    margin-bottom: 7px;
}

.widget a {
    text-decoration: none;
    font-weight: bold;
    color: white;
}

/* Product sliders */

.category {
    position: relative;
}

.slides {
    display: grid;
    justify-content: space-between;
}

.slides-5 {
    grid-template-columns: 18.5% 18.5% 18.5% 18.5% 18.5%;
}

.slides-4 {
    grid-template-columns: 23% 23% 23% 23%;
}

.slides-3 {
    grid-template-columns: 30% 30% 30%;
}

.slides-2 {
    grid-template-columns: 45% 45%;
}

.slides-1 {
    grid-template-columns: 100%;
}

.product-slide {
    position: relative;
    height: fit-content;
}

.product-slide img {
    width: 100%;
    height: auto;
}

.product-slide a {
    text-decoration: none;
}

.product-slide h2 {
    font-family: 'opensans-regular';
    font-size: 15px;
    text-transform: lowercase;
    color: black;
    font-weight: 500;
    text-align: center;
}

/* 3 selectors below are used on the collection and product pages */
#product-main-img {
    position: relative;
}

#product-main-img .not-for-sale {
    max-width: 600px;
}

.product-slide .not-for-sale,
#product-main-img .not-for-sale {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 15px 10px;
    box-sizing: border-box;

    background-color: black;

    font-family: 'Lora';
    font-size: 15px;
    font-style: italic;
    letter-spacing: 0;
    color: white;
    text-align: center;
}

.category-title {
    margin: 28px 0 17px 0;
    cursor: pointer;
}

.category-title span {
    font-family: 'lora-regular';
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: black;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
}

.category-title span:nth-child(2) {
    font-size: 14px;
}

.controls .previous,
.controls .next {
    position: absolute;
    cursor: pointer;

    transform: translateY(-50%);
}

.controls .previous {
    left: -90px;
    top: calc(47% - 20px);
}

.controls .next {
    right: -90px;
    top: 47%;
}

#load-more-button {
    display: inline-block;
    margin: 25px auto;
    padding: 10px;

    background-color: yellow;

    cursor: pointer;
}

@media (max-width: 1480px) {
    .controls .previous {
        left: -40px;
    }

    .controls .next {
        right: -40px;
    }
}

@media (max-width: 1380px) {
    .category {
        max-width: calc(100% - 75px);
        margin: 0 auto;
    }
}

/* Photo page, override Elementor */

#photo-page .elementor-widget-wrap.elementor-element-populated {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#photo-page .elementor-widget-wrap>.elementor-element {
    width: 19%;
}

/* Product page */

.product.outofstock .price,
.product.outofstock #order-replica,
.product.outofstock #let-op,
.product.outofstock .product_meta {
    display: none!important;
}

.product_title {
    font-family: "lora-regular", serif;
    font-weight: normal;
    letter-spacing: 0.1ch;
    margin-bottom: 0.25em;
}

.woocommerce-breadcrumb {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 3rem 0 !important;
    background-color: #fbf9f9;
    box-shadow: 0 0 0 100vmax #fbf9f9;
    clip-path: inset(0 -100vmax);
    font-family: "opensans-regular", sans-serif;
}

.woocommerce-breadcrumb span {
    font-family: "lora-regular", serif;
    letter-spacing: 0.2ch;
}

.woocommerce-breadcrumb::before,
.woocommerce-breadcrumb::after {
    content: none !important;
}

.woocommerce-product-details__short-description,
.woocommerce-product-details__short-description p {
    font-family: "opensans-regular", sans-serif !important;
    color: #8a8a8a;
    margin-bottom: 2.5rem;
}

.woocommerce div.product p.price {
    display: none;
    color: #000 !important;
    font-size: 2em !important;
    margin: 0;
}

.woocommerce div.product p.price>.woocommerce-Price-amount {
    font-family: "lora-regular", serif !important;
    font-weight: bold;
}

.woocommerce div.product form.cart {
    max-width: max(480px, 100% - 156px);

    margin-top: 50px;
}

.woocommerce div.product form.cart .button {
    background: #000;
    border-radius: 0;
    display: inline-block;
    padding: 1em 2em;
    font-family: "opensans-regular", sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.25ch;
    width: 100%;
}

#let-op {
    display: none;
    background-color: #d0d0d0;
    padding: 0 2em;
    margin-bottom: 3rem;
}

#let-op__title {
    min-width: 20%;
    font-family: "opensans-regular", sans-serif;
    font-size: 1rem;
}

#let-op>p,
#let-op a {
    font-family: "opensans-regular", sans-serif;
    font-size: 1rem;
    color: #000;
}

#let-op a {
    font-size: 1rem;
    text-decoration: none;
    font-weight: bold;
}

#let-op a:hover {
    text-decoration: underline;
}

.product_meta {
    display: flex;
    flex-direction: column;
}

.product_meta * {
    font-family: "opensans-regular", sans-serif;
    color: #888;
}

.woocommerce .product .quantity {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-direction: row;
    align-items: center;
    border: 1px #e0e0e0 solid;
    padding: 0 1em;
}

.woocommerce .product .quantity label {
    margin-right: 2em;
    font-family: "opensans-regular", sans-serif;
}

.woocommerce .product .quantity .qty {
    width: 2em !important;
    display: flex;
    align-items: stretch;
    border: none;
    height: 100%;
    margin: 0 2px;

    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

.woocommerce .quantity .qty>input {
    height: 100% !important;
}

.single_variation_wrap .woocommerce-variation-add-to-cart {
    display: flex;
    gap: 1em;
    height: 54px;
    margin-top: 18px;
}

.qty-button {
    border: none;
    background-color: white;
    cursor: pointer;
    height: 100%;
}

.variations select {
    font-family: "opensans-regular", sans-serif;
    padding: 1em;
    border-radius: 0;
    border: 1px #e0e0e0 solid;
    background-color: #fff;
    cursor: pointer;
}

.variation {
    display: flex;
    flex-direction: column;
}

.variation label {
    font-family: "opensans-regular", sans-serif;
}

.variation input,
.variation select {
    width: 100%;
}

.options {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    margin-bottom: 0 !important;
}

ul.products {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.related.products h2 {
    font-family: "opensans-light", serif;
    font-weight: 100;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 0.125ch;
    font-size: 0.75rem;
}

.related.products .products .product {
    text-align: center;
}

.related.products .products .product h2 {
    font-family: "lora-regular", serif;
    color: black;
    font-size: 1.25rem !important;
}

.related.products .products .product .price {
    color: black;
    font-size: 1.25rem;
}

.tabs.wc-tabs {
    margin-bottom: 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0 0 0 5px !important;
    border-color: #e9e6e8;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    border-color: #e9e6e8 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
    border-bottom-right-radius: 0px !important;
    border-color: #e9e6e8 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
    border-bottom-left-radius: 0px !important;
    border-color: #e9e6e8 !important;
}

.woocommerce div.product .woocommerce-tabs .panel {
    padding: 1em !important;
    border: 1px solid #e9e6e8;
    border-top: none;
}

ul.tabs.wc-tabs li {
    background-color: white!important;
    border-radius: 0!important;
    padding: 12px 24px!important;
}

ul.tabs.wc-tabs li:not(.active) {
    border: none!important;
}

ul.tabs.wc-tabs a {
    text-transform: uppercase;
    font-family: "opensans-regular", sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    color: black;
}

.woocommerce-Tabs-panel {
    font-family: "opensans-regular", sans-serif;
}

.woocommerce-Tabs-panel h2 {
    font-family: "lora-regular", serif;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
}

.woocommerce .products ul::after,
.woocommerce .products ul::before,
.woocommerce ul.products::after,
.woocommerce ul.products::before {
    content: none !important;
}

.woocommerce div.product form.cart div.quantity {
    margin: 0;
}

.product-image-container {
    display: flex;
    flex-direction: column-reverse;
    gap: 1em;
}

.product-image-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1em;
}

.product-image-thumbs > div {
    width: 100%!important;
}

input[type="number"].qty::-webkit-outer-spin-button,
input[type="number"].qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"].qty {
    -moz-appearance: textfield;
}

.products .button.wp-element-button.product_type_variable.add_to_cart_button {
    display: none;
}

.related.products a.button {
    display: none!important;
}

.woocommerce-Tabs-panel h2 {
    font-family: "opensans-regular", sans-serif;
    font-size: 24px;
    line-height: 1.5;
    color: #888;
}

.woocommerce-Tabs-panel p {
    color: #888;
}

#product-images {
    float: left;
    width: 48%;
    margin-bottom: 25px;
}

#product-images.multiple {
    display: grid;
    grid-template-columns: 110px calc(100% - 135px);
    gap: 25px;
}

.product-thumbnail {
    margin-bottom: 15px;
    cursor: pointer;
}

.woocommerce div.product form.cart.variations_form {
    display: none;
}

section#order-replica {
    position: relative;
    width: 100%;
}

#order-replica button {
    display: block;
    margin: 40px auto;
    padding: 15px 40px;
    background-color: #3baf06;

    appearance: none;
    -webkit-appearance: none;

    font-family: 'opensans-bold';
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 0;
    text-align: center;
    color: white;

    cursor: pointer;
}

@media (max-width: 1200px) {
    .product {
        margin: 0 8px;
    }
}

@media (max-width: 1010px) {
    .single_variation_wrap .woocommerce-variation-add-to-cart,
    .options {
        display: block;
        width: 47.5vw!important;
    }

    .variation {
        margin-bottom: 15px;
    }
    
    .woocommerce .product .quantity {
        box-sizing: border-box;
        height: 50px;
        margin-bottom: 15px!important;
    }

    .woocommerce div.product form.cart .button {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    #let-op {
        width: 100%;
        box-sizing: border-box;
    }

    #product-images {
        float: none;
        width: 100%;
    }
}

@media only screen and (min-width: 768px) {
    .product-image-container {
        flex-direction: row !important;
        gap: 1em;
        max-height: 750px;
    }

    .product-image-thumbs {
        display: flex !important;
        flex-direction: column !important;
        gap: 1em;
        min-width: 64px !important;
        width: 25%;
        flex-wrap: nowrap !important;
        justify-content: start !important;
        overflow-y: auto;
    }

    ul.products {
        flex-wrap: nowrap;
    }
}

@media (max-width: 500px) {
    .single_variation_wrap .woocommerce-variation-add-to-cart {
        display: block;
    }

    .woocommerce div.product form.cart .button {
        margin-top: 17px;
    }

    .single_variation_wrap .woocommerce-variation-add-to-cart, .options {
        display: block;
        width: 100%!important;
    }
}

@media (max-width: 450px) {
    #product-images.multiple {
        display: block;
    }

    .multiple #product-main-img {
        display: none;
    }
}

/* Elementor styling help */
.tmrw-text-spacing p {
    margin-bottom: 27px;
}

/* WooCommerce messages/notices */
.woocommerce-message::before {
    content: ""!important;
}

.woocommerce-message {
    border-top: 1px solid black!important;
    padding: 1em 0;
}

.tmrw-woo-msg {
    display: grid;
    grid-template-columns: 80px calc(100% - 440px) 330px;
}

.tmrw-woo-msg img {
    width: 60px;
    height: auto;
}

.woo-add-msg-title {
    font-family: "lora-regular", serif;
    font-size: 17px;
    color: black;
    margin-bottom: 0;
}

.tmrw-woo-msg-info table {
    margin: 4px 0 0 -4px;
}

.tmrw-woo-msg-info table td {
    font-family: "opensans-regular", sans-serif;
    font-size: 15px;
    text-transform: capitalize;
}

.tmrw-woo-msg-info table td:first-child {
    min-width: 104px;
}

#cart-msg-buttons a {
    width: 100%;
    margin: 0 0 10px 0;
    padding: 15px 0;
}

@media (max-width: 600px) {
    .tmrw-woo-msg {
        display: block;
    }

    .tmrw-woo-msg img {
        margin: 0 8px;
        float: left;
    }

    #cart-msg-buttons {
        margin-top: 12px;
    }

    #cart-msg-buttons a {
        display: block;
        width: calc(100% - 16px);
        margin: 8px auto;
    }
}

/* Cart */
#tmrw-cart {
    background-color: #fbf9f9;
}

#tmrw-cart .checkout-overview {
    display: grid;
    grid-template-columns: calc(100% - 405px) 380px;
    gap: 25px;
    padding-bottom: 40px;
}

#tmrw-cart .line-item {
    position: relative;
    display: grid;
    grid-template-columns: 110px calc(100% - 135px);
    gap: 25px;

    background-color: white;
    margin-bottom: 25px;
    padding: 25px;
}

#tmrw-cart .product-image img {
    width: 100%;
    height: auto
}

#tmrw-cart .info h2 {
    margin: 0;

    font-family: "lora-regular", serif;
    font-weight: 300;
    font-size: 17px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#tmrw-cart .price {
    font-family: "lora-regular", serif;
    font-size: 17px;
    font-weight: bold;
}

#tmrw-cart .properties {
    margin-top: 17px;
}

#tmrw-cart .properties .key,
#tmrw-cart .properties .value {
    font-family: "opensans-regular", sans-serif;
    font-size: 14px;
}

#tmrw-cart .properties .value {
    margin-right: 20px;
    font-weight: bold;
}

#tmrw-cart .properties span:nth-of-type(1) {
    text-transform: uppercase;
}

#tmrw-cart .properties span:nth-of-type(2) {
    text-transform: capitalize;
}

#tmrw-cart .quantity {
    display: block;
    width: 80px;
    height: 48px;
    margin-top: 20px;
    padding-left: 12px;

    background-color: transparent;
    border: 1px solid #d0d0d0;
}

#tmrw-cart .bin {
    position: absolute;
    top: 40px;
    right: 40px;
}

@media (max-width: 1050px) {
    #tmrw-cart .checkout-overview {
        display: block;
    }    
}

@media (max-width: 530px) {
    #tmrw-cart .properties {
        display: grid;
        grid-template-columns: 80px 80px;
    }

    #tmrw-cart .properties span {
        text-align: right;
    }
}

@media (max-width: 530px) {
    #tmrw-cart .line-item {
        display: block;
    }

    #tmrw-cart .product-image {
        margin-bottom: 25px;
    }
}

/* Checkout */
.tmrw-checkout {
    display: grid;
    grid-template-columns: 4fr 1fr;
}

.tmrw-checkout #place_order {
    display: none;

}

.tmrw-checkout #checkout-submit {
    margin-bottom: 24px;
    padding: 0 69px 50px 69px;

    background-color: white;
}

.tmrw-checkout #checkout-submit label {
    font-family: "opensans-regular", serif;
    font-size: 16px;
}

.tmrw-checkout #checkout-button {
    all: unset;
    
    display: block;
    height: 48px;
    margin-top: 30px;
    padding: 0 24px;

    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;   
    
    padding-left: 12px;
    border: 1px solid black;
    background-color: black;

    font-family: "opensans-regular", sans-serif;
    color: white;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;

    cursor: pointer;
}

@media (max-width: 925px) {
    .tmrw-checkout #checkout-button {
        display: none;
    }
}

@media (max-width: 925px) {
    .tmrw-checkout #checkout-submit {
        padding: 0 24px 50px 24px;
    }
}

/* Checkout info (cart + checkout) */
.checkout-info {
    max-width: 400px;
    height: fit-content;
    padding: 25px;
    background-color: white;
}

.checkout-info label,
.checkout-info p {
    font-family: "opensans-regular", sans-serif;
    font-size: 14px;
}

.checkout-info .divider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 7px 0;
}

.checkout-info .divider label {
    font-family: "opensans-regular", sans-serif;
    font-size: 14px;
    text-transform: capitalize;
}

.checkout-info .divider label:nth-of-type(2) {
    text-align: left;
}

.checkout-info .divider label:nth-of-type(2) {
    text-align: right;
}

#discount-form {
    display: grid;
    grid-template-columns: 4fr 1fr;
}

#discount-form input,
#discount-form button {
    width: 100%;
    height: 48px;

    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;   
}

#discount-form input {
    padding-left: 12px;
    border: 1px solid black;
}

#discount-form button {
    all: unset;
    background-color: black;

    cursor: pointer;

    font-family: "opensans-regular", sans-serif;
    color: white;
    letter-spacing: 1px;
    text-align: center;
}

.checkout-info .grey-line {
    width: 100%;
    height: 1px;
    margin: 15px 0 10px 0;
    
    background-color: #d0d0d0;
}

.checkout-info .black-line {
    width: 100%;
    height: 1px;
    margin: 20px 0 8px 0;

    background-color: black;
}

#coupon-code {
    text-decoration: underline;
    cursor: pointer;
}

#tmrw-submit {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 0;
    margin: 40px 0 60px 0;

    background-color: black;

    font-family: "opensans-regular", sans-serif;
    font-size: 15px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.checkout-info .payment-methods {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin: 20px 0 20px 0;
}

.checkout-info .disclaimer {
    font-size: 10px;
}

.checkout-info .disclaimer a {
    color: black;
}

/* Klachtenformulier */
#wpcf7-f27597-o1 .wpcf7-form p:nth-of-type(3) {
    margin-top: 40px;
}

/* Temp styling */

.home-label {
    display: none;
}