/*
Theme Name: Edstrom
Text Domain: Edstom
Version: 1.0
Requires at least: 4.7
Requires PHP: 5.2.4
Tested up to: 5.7
Description: Template for the partners of System Edstrom.
Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-patterns, block-styles, wide-blocks, accessibility-ready
Author: HumanEngine
Author URI: https://humanengine.net/
Theme URI: https://humanengine.net/portfolio/schwabinger-hausarztpraxis
License: Private
License URI: https://humanengine.net/

Only for use of System Edstrom partners.
*/

/******VARIABLES*****/
body {
    margin: 0px;
    font-family: "Century Gothic Regular";
}

:root {
    --lightGreyBG: #f5f5f5;

    --HeaderMenuTxt: #fff;
    --AccentColor: #2daa4a;
    --TextColor: #1f1f1f;
    --FooterBGColor: #1f1f1f;

    --contentWidth: 1200px;
}

.header_menu_wrapper {
    background-color: var(--AccentColor);
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0px;
    position: sticky;
    top: 0;
    z-index: 9;
}
.header_menu {
    display: flex;
    flex-direction: row; 
    justify-content: space-between;
    max-width: var(--contentWidth);
    width: 100%;
}
.header_logo {
    padding: 15px;
}
.header_logo_text {
    padding: 15px;
    min-height: 50px;
    display: flex;
    align-items: center;
    color: var(--HeaderMenuTxt);
    font-weight: bolder;
}
.header_navi, .header_navi ul{
    display: flex;
    flex-direction: row;
    color: var(--HeaderMenuTxt);
    list-style-type: none;
    column-gap: 25px;
    font-size: 14px;
    margin: 0px 15px 0px 0px;
    height: 100%;
}
.header_navi ul li {
    height: 100%;
    display: flex;
    align-items: stretch;
}
.header_navi ul li ul {
    position: absolute;
    top: 100%;
    background-color: var(--TextColor);
    padding: 10px 15px 15px 15px;
    margin: 0px;
    height: auto;
    transition: all 1s;
    pointer-events: none;
    opacity: 0;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.header_navi ul li ul li {
    flex-direction: column;
}
.header_navi ul li ul li ul {
    position: relative;
    top: auto;
    padding: 0px;
    margin-left: 10px;
    margin-top: 10px;
}
.header_navi ul li:hover ul {
    pointer-events: all;
    opacity: 1;
}
.header_navi ul li ul a:hover, .header_navi ul li ul a:active{
    color: var(--AccentColor);
    border-bottom: none;
}
.header_navi ul li ul a:link, .header_navi ul li ul a:visited{
    border-bottom: none;
}
.header_navi a:link, .header_navi a:visited {
    font-weight: bold;
    color: var(--HeaderMenuTxt);
    text-decoration: none;
    transition-duration: 1s;
    border-bottom: solid 4px rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
}
.header_navi a:active, .header_navi a:hover {
    font-weight: bold;
    color: var(--TextColor);
    text-decoration: none;
    border-bottom: 4px solid var(--TextColor);
}
.menuBtn {
    display: none;
    margin: 10px;
    aspect-ratio: 1/1;
    width: 35px;
    height: 35px;
}
.menuBtn_bar1, .menuBtn_bar2, .menuBtn_bar3 {
    width: 35px;
    height: 5px;
    background-color: var(--HeaderMenuTxt);
    margin: 6px 0;
    transition: 0.4s;
}
.change .menuBtn_bar1 {
    transform: translate(0, 11px) rotate(-45deg);
}
.change .menuBtn_bar2 {
    opacity: 0;
}

.change .menuBtn_bar3 {
    transform: translate(0, -11px) rotate(45deg);
}

.video_highlight {
    min-width: 100%;
    object-fit: cover;
    max-height: 50vh;
    overflow: hidden;
    z-index: 1;
}
.video_highlight video {
    min-width: 100%;
    max-height: 50vh;
    object-fit: cover;
}
.featured_img {
    max-height: 35vh;
    overflow: hidden;
}
.featured_img img{
    max-height: 35vh;
    min-width: 100%;
    object-fit: cover;
}
.content_wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 10px 10px;
    min-height: 70vh;
}
.content_main {
    max-width: var(--contentWidth);
    width: 100%;
    color: var(--TextColor);
    font-size: 16px;
}
.content_main a:link, .content_main a:visited {
    color: var(--AccentColor);
}
.content_title {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
}
.content_title a:link, .content_title a:visited {
    color: var(--TextColor);
    text-decoration: none;
}
.content_pic_and_txt {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 30px;

}
.content_picture_box {
    background-image: url(assets/images/contact.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    aspect-ratio: 1/1;
    border-radius: 25px;
    color: #fff;
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}
.content_picture_box h3 {
    text-align: center;
    font-size: 40px;
    font-weight: 1200;
}
.content_picture_box p {
    text-align: center;
    font-weight: 900;
    font-size: 20px;
}
.content_txt_box{
    flex-grow: 2;
    max-width: 60%;
    line-height: 2;
}
.green_button a {
    background-color: var(--AccentColor);
    font-size: 18px;
    font-weight: 900;
    padding: 20px;
    border-radius: 5px;
    transition-duration: 1.5s;
}
.green_button a:link, .green_button a:visited {
    color: #fff;
    text-decoration: none;
}
.green_button a:active, .green_button a:hover {
    color: #fff;
    text-decoration: none;
    background-color: #000;
}
.features_edstrom {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.features_edstrom_element {
    background-color: var(--lightGreyBG);
    padding: 20px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    overflow: hidden;
}
.features_edstrom_element h2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 25px;
    font-weight: 900;
    font-size: 25px;
}

.features_edstrom_element p {
    text-align: center;
    font-size: 16px;
}

.gallery_wrapper {
    background-color: var(--lightGreyBG);
    margin-top: 25px;
    padding-bottom: 25px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.gallery_main {
    max-width: var(--contentWidth);
}
.gallery_main h2 {
    color: var(--AccentColor);
}
.gallery_picture {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-height: 45vh;
    overflow: hidden;
}
.gallery_picture img {
    max-width: 100%;
}
.highlightBox {
    border-radius: 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 10px;
}
.footer_wrapper {
    background-color: var(--FooterBGColor);
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 20px 0px;
    color: #fff;
}
.footer_main {
    max-width: var(--contentWidth);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.footer_main a:link, .footer_main a:visited {
    color: var(--AccentColor);
}
.FooterWidgetBar {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-evenly;
    width: 100%;
    gap: 20px;
}
.FooterWidget {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--);
}
.FooterNavWrapper {
    color: var(--HeaderMenuTxt);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 20px 10px 0px 10px ;
    width: 100%;
}
.FooterCopyright {
    opacity: 0.6;
}
#menu-footer {
    display: flex;
    flex-direction: row;
    list-style: none;
    padding: 0px;
    margin: 0px;
}
#menu-footer li::after {
    content: '|';
    margin: 0em 0.5em;
}
#menu-footer li:last-child::after {
    display: none;
}

.wpcf7 form{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}
.wpcf7 form input {
    border-radius: 8px;
    border-width: 2px;
    border-color: var(--lightGreyBG);
    border-style: solid;
    background-color: #fff;
    padding: 10px;
    font-size: 16px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    max-width: 90%;
}
.wpcf7 form input[type=submit] {
    background-color: var(--AccentColor);
    font-size: 18px;
    font-weight: 900;
    transition-duration: 1.5s;
    margin-top: 15px;
}
.wpcf7 form input[type=submit]:hover {
    color: #fff;
    background-color: #000;
}
.wpcf7 form textarea {
    border-radius: 8px;
    border-width: 2px;
    border-color: var(--lightGreyBG);
    border-style: solid;
    background-color: #fff;
    padding: 10px;
    font-size: 16px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    max-width: 90%;
    width: 90%;
}
.wpcf7 p {
    font-size: 10px;
    max-width: 45%;
}
.cftxtfield {
    width: 100%;
}
.cftxtfield p {
    max-width: 100%;
}
.cftxtfield span {
    width: 100%;
    max-width: 100%;
}
.wpcp-carousel-content-wrapper {
    max-width: 100vw;
    overflow: hidden;
}

/******WooCommerce******/
.woocommerce .single-product {
    max-width: var(--contentWidth);
}
.woocommerce div.product p.price {
    color: var(--TextColor);
    font-weight: 800;
    font-size: 20px;
}
.woocommerce div.product .woocommerce-tabs .panel {
    background-color: var(--lightGreyBG);
    padding: 20px;
    border-radius: 0px 0px 25px 25px;
}
.woocommerce div.product form.cart {
    display: flex;
    align-items: stretch;
}
.woocommerce table.shop_attributes table tr{
    border-color: var(--AccentColor);
}
.woocommerce div.product .woocommerce-tabs .panel h2 {
    display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
    margin: 0px;
    padding: 0px;
}
.woocommerce span.onsale {
    background-color: var(--PriceClr);
}
.woocommerce-product-gallery {
    margin-right: 2em;
}
.woocommerce div.product div.summary {
    margin-top: 2em;
    display: block;
    right: 0px;
    top: 2em;
}
.woocommerce-product-details__short-description {
    border-top: solid 2px var(--AccentColor);
    border-bottom: solid 2px var(--AccentColor);
    margin: 1em 0em;
}
.variations_form {
    background: rgb(59,59,59);
    background: radial-gradient(circle, rgba(59,59,59,1) 0%, rgba(33,33,33,1) 100%);
    border-radius: 1em;
    color: var(--HeaderMenu);
    padding: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.woocommerce div.product form.cart .reset_variations {
    width: 0px;
    height: 0px;
    overflow: hidden;
    display: block;
}
.woocommerce-variation-price {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 1em;
    color: var(--AccentColor);
}
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    background-color: var(--AccentColor);
}
.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
    background-color: #000000;
}
.woocommerce-variation-add-to-cart {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
}
.woocommerce .quantity{
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}
.woocommerce div.product span.price  {
    color: var(--AccentColor);
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    border-bottom: solid 2px var(--lightGreyBG);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background-color: var(--FooterLink);
    color: var(--HeaderMenu);
    border: none;
    margin-right: 1em;
    border-color: var(--AccentColor);
    margin: 0px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background-color: var(--lightGreyBG);
    color: var(--HeaderMenu);
    border: none;
}
.woocommerce ul.products li.product a img {
    width: 20vw;
    height: 20vw;
    object-fit: contain;
    object-position: center;
    min-width: 150px;
    min-height: 150px;
}
.woocommerce ul.products li.product {
    width: 20vw;
    float: none;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.woocommerce ul.products li.product:hover {
    background: linear-gradient(-45deg, rgba(131,58,180,0) 0%, rgba(253,29,29,0) 90%, rgba(193,160,30,1) 90%, rgba(193,160,30,1) 100%);
}
.woocommerce ul.products li.product::before {
    content: 'Details';
    width: 100px;
    height: 100px;
    position: absolute;
    left: 0px;
    top: 0px;
    display: none;
}
.columns-4 {
    width: 100%;
}
.woocommerce ul.products {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    text-align: center;
}
.woocommerce ul.products li.product .price {
    color: var(--TextColor);
    text-align: center;
}
.woocommerce ul.products li.product .button {
    display: none;
}
.woocommerce .product_meta {
    display: flex;
    flex-direction: column;
}
.product_meta .sku_wrapper, .product_meta .posted_in, .product_meta .tagged_as {
    font-weight: bold;
    margin-bottom: 1em;
}
.sku_wrapper .sku, .product_meta a:link, .product_meta a:visited, .product_meta a:hover {
    font-weight: normal;
}

/******BreadCrump******/
.CntWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}
.breadcrump {
    color: #3f3f3f;
    padding: 1em;
    font-size: 10pt;
    max-width: 1200px;
    width: 100%;
    text-align: left;
}


/******Footer******/
.FooterMain {
    background: rgb(59,59,59);
    background: radial-gradient(circle, rgba(59,59,59,1) 0%, rgba(33,33,33,1) 100%);
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--LogoColor);
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
    margin-top: 1em;
}
.FooterMain a:link, .FooterMain a:visited {
    color: var(--FooterLink);
    text-decoration: underline;
}
.FWcontact {
    display: flex;
    flex-direction: row;
}
.FWcontact ul {
    list-style-type: none;
    margin: 0px 0.5em;
    padding: 0px;
}
.FWcontact ul li {
    margin-bottom: 1em;
}
/******MobileSettings******/
@media screen and (max-width: 1100px) {
    .header_navi {
        display: none;
    }
    .menuBtn {
        display: block;
        cursor: pointer;
    }
    .HighlightImageText {
        position: absolute;
        align-self: flex-start;
        display: none;
    }
    .HighlightImageWrapper img {
        display: none;
    }
    .wp-post {
        padding: 2em;
    }
    .MobileMenuBasic {
        display: flex;
        overflow: hidden;
    }
    .FooterWidgetBar {
        flex-direction: column;
    }
    .FooterNavWrapper {
        flex-direction: column;
    }
    .contact-map {
        margin-bottom: 1em;
        max-width: 100%;
    }    
    
}

