
:root {
    --wa-hover: #62d86a;
    --wa-nav-back-grey: #5e6564;
}



html {
    height:100%;    
    font-family:'Avenir-Book', sans-serif;
}

body {
    font-family:'Avenir-Book', sans-serif;
    background-color:transparent;
    background-size:cover;
    background-repeat:no-repeat;
    background-position-x: center;
    height:100%;
    color: unset;
}

.wrapper {
    /* width: 100vw; */
    overflow: hidden;
}

section {
    margin: 0px 20px 0px 20px;
    font-size: 20px;
}

strong, .strong {
    font-family:'Avenir-Black', sans-serif;
}

/* NAVIGATION */

nav {
    font-family:'Avenir-Black', sans-serif;
    /* font-size:15px; */
}

.navbar .container-fluid {
    width: unset;
}

.navbar-dark .navbar-nav .nav-link {
    cursor: pointer;
    color: white;
}
.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--wa-hover);
}
.navbar-dark .navbar-brand,
.navbar-dark .navbar-toggler {
    color: white;
}



/* FOOTER */

.footer {
    display:block;
    background-color:var(--wa-nav-back-grey);
    min-height:95px;
    margin-top:50px;
    position:relative;
    width:100%;
    clear:both;
}


/* CONTENT */

.container {
    color: #293639;
}

.container.whitetext {
    color: white;
}
.content, .shopcontent {
    min-height: 80vh;
}

.headline,
.shophead {
    margin-top: 60px;
    margin-bottom: 80px;
}
.shophead {
    text-align: center;
}
.headline h2,
.shophead h2 {
    text-align: center;
    font-family: 'Avenir-Book', sans-serif;
    font-size: 48px;
}


.content h3,
.shopcontent h3 {
    text-align: center;
    font-family: 'Avenir-Medium', sans-serif;
    font-size: 28px;
    color: inherit;
    line-height: 1.1;
}
.content h4,
.shopcontent h4 {
    text-align: center;
    font-family: 'Avenir-Book', sans-serif;
    font-size: 18px;
    color: inherit;
    line-height: 1.3;
}

.content .pagetext p {
    font-family: 'Avenir-Book', sans-serif;
    font-size: 20px;
    color: inherit;
    line-height: 1.8;
}

.products-head {
    margin-top: 0px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}
.products-head a {
    text-decoration: underline;
}

.products .products-always,
.products .products-showall {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
    row-gap: 25px;
    margin-bottom: 0px;
}
.products .products-showall {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}
.expanded .products .products-showall {
    max-height: 7000px;
    transition: max-height 0.5s ease-in-out;
}
.label-all {
    display: inline;
}
.label-less {
    display: none;
}
.expanded .label-all {
    display: none;
}
.expanded .label-less {
    display: inline;
}





.products span.noitem {
    width: 360px;
}


.products .product {
    width: 360px;
    display: flex;
    flex-direction: column;
}
.products .product.hide-even {
    display: none;
}
.products .product.hide-odd {
    display: flex;
}

@media (max-width:1399px) and (min-width:992px) {
    .products .product.hide-even {
        display: flex;
    }
    .products .product.hide-odd {
        display: none;
    }
}

.products .product .cover img {
    border: none;
    width: 360px;
}
.products .product .cover {
    text-align: center;
}

.products .product .description {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0px;
    min-height: 80px;
}
.products .product .description > div {
    display: flex;
    flex-direction: row;
}
.products .product .description h3,
.products .product .description h4 {
    height: 22px;
    margin-top: 16px;
    margin-bottom: 0px;
    overflow: hidden;
    white-space: nowrap;
}
.products .product .description h3 {
    font-family: 'Avenir-Black', sans-serif;
    font-size: 20px;
    padding-right: 4px;
}


.product-button .dropdown-menu .dropdown-item {
    padding-left: 0.5rem;
}
.product-button .dropdown-menu .dropdown-item .dropdown-link span {
    width: 24px;
    text-align: center;
}





.content .pagesubtitle,
.shopcontent .pagesubtitle {
    margin-top: 20px;
    margin-bottom: 40px;
}

.content .pageimage {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.content .pageimage .caption {
    padding-top: 5px;
    padding-bottom: 5px;
}

.content .pageimage img {
    width: 100%;
}

.content .download {
   text-align: center;
   margin-bottom: 40px;
}

.content .download a {
    text-decoration: none;
    color: inherit;
}
.content .download a:hover {
    text-decoration: none;
    color: var(--wa-hover);
}

.content .videoblock {
    margin-top: 20px;
    margin-bottom: 40px;
}
.content .videoblock .videotitle {
    text-align: center;
    font-family: 'Avenir-Black', sans-serif;
    font-size: 20px;
    color: inherit;
    line-height: 1.5;
}

.vertical-divider {
    height: 3px;
    border-bottom: 1px solid;
    opacity: 0.25;
    color: inherit;
}


/* modifications */

.products .disabled {
    opacity: 0.4;
    pointer-events: none;
}



/* BBOTSTRAP */
a {
    text-decoration: none;
    color: inherit;
}
a:hover {
    text-decoration: none;
    color: var(--wa-hover);
}

.btn-default {
    color: inherit;
    background-color: transparent;
    border-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.w-fit {
    width: fit-content;
}


.btn-default:hover, 
.btn-default:active,
.btn-default:focus,
.btn-default:focus-visible,
.dropdown-toggle.btn-default {
    color: var(--wa-hover);
    background-color: transparent!important;
    border-color: transparent!important;
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}





/* SHOP */

.cart-icon {
    position: relative;
}
.badge.badgeoff {
    position: absolute;
    top: 3px;
    left: 18px;
    background-color: #0000EE88;
    border-radius: 1rem;
}

.shopcontent .checkout-buttons button {
    min-width: 120px;
    margin-top: 10px;
}


.shopcontent .lineitems {
    width: 100%;
}
.shopcontent .lineitems tr {
    border-bottom: 1px solid grey;
    margin-bottom: 10px;
}


.shopcontent .lineitems tr .linedesc {
    display: flex;
    flex-direction: row;
}
.shopcontent .lineitems tr .linedesc div {
    margin-left: 10px;
}
.shopcontent .lineitems tr .linedesc small {
    opacity: 0.4;
}
.shopcontent .inp-q {
    padding: 4px;
    text-align: right;
    width: 80px;
}


.shopcontent .linesum {
    text-align: right;
    vertical-align: bottom;
}

.shopcontent .form-group label {
    font-size: smaller;
}


#paymentForm {
    text-align: center;
}
.gateway-payment-form {
    max-width: 75vw;
    margin: auto;
}
.paymentSource {
    margin: auto;
    width: fit-content;
}



.transaction {
    border: 1px solid black;
    padding: 4px;
}
.transaction-success {
    border-color: green;
    color: green;
}

.ws-address-line div {
    padding-right: 12px;
}

/* BREAKPOINTS */

@media (max-width:767px) {
    .navbar .container-fluid {
        width: 90%;
    }
    .navbar {
        background-color: var(--wa-nav-back-grey);
    }

    .footer .navbar {
        display:none;
    }

    .shopcontent .lineitems tr label {
        display: none;
    }
    .shopcontent .inp-q {
        font-size: smaller;
        padding: 2px;
        width: 40px;
    }
    .shopcontent .checkout-buttons button {
        width: 100%;
        margin-top: 10px;
    }
}


@media (max-width:420px) {
    section {
        margin: 0px 10px 0px 10px;
    }
    .products .product .cover img {
        width: 80px;
        margin: 0 auto;
    }
    .products .product {
        width: 100%;
        font-size: smaller;
        flex-direction: row;
        column-gap: 10px;
    }
    .products .product .description {
        align-items: flex-start;
        justify-content: center;
    }
    .products .product .description h3 {
        margin-top: 0px;
        max-width: calc(100vw - 110px);
        text-overflow: ellipsis;
    }
    .products .product .description h4 {
        margin-top: 0px;
    }
    .products .product .description > div {
        flex-wrap: wrap;
        align-items: baseline;
    }
    .products .product .description .product-button {
        padding-left: 0px;
    }
    .products .product .product-button button {
        padding-left: 0px;
    }
    .expanded .products-showall {
        padding-top: 30px;
    }

    .headline, .shophead {
       margin-top: 40px;
       margin-bottom: 40px;
    }
   
    .headline h2, .shophead h2 {
        font-size: 36px;
    }
    .no-mob {
        display: none;
    }
    .badge.badgeoff {
        left: 10px;
    }
}
