.ec-store-tab__navigations {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.ec-store-tab__navigations-item {
    background-color: #e1deeb;
    padding: 14px 20px;
    border-radius: 30px;
    line-height: 1.2em;
    text-align: center;
}

.ec-store-tab__navigations-item.ec-active {
    background-color: var(--e-global-color-primary);
    color: #ffffff;
}

.ec-store-tab__content-wrapper {
    background-color: #ffffff;
}

.ec-store-tab__content-row {
    display: flex;
}

.ec-store-tab__content-col-left {
    width: 25%;
}

.ec-store-tab__content-col-right {
    width: 75%;
}

.ec-store-tab__stores {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.ec-store-tab__stores li a {
    display: block;
    padding: 12px 20px;
}

.ec-store-tab__stores li.ec-active a,
.ec-store-tab__content-col-right {
    background-color: #f5f3f3;
}

.ec-store-tab__content:not(.ec-active) {
    display: none;
}

/* Store Grid */
.ec-store-tab__content-panels-body-inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 20px;
}

.ec-store-tab__content-panels-body:not(.ec-active) {
    display: none;
}

.ec-store-tab__content-panels-body-left {
    max-width: 30%;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.ec-store-tab-facade-foto {
    margin-bottom: 15px;
}

.ec-store-tab__content-desc {
    font-size: 14px;
    line-height: 1.3em;
}

.ec-store-tab__content-desc>* {
    margin-bottom: 1em;
}

.ec-store-tab__content-button{
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    background-color: var(--e-global-color-primary);
    color: #ffffff;
}

.ec-store-tab__content-button:hover{
    background-color: var(--e-global-color-secondary);
    color: #ffffff;
}

.ec-store-tab__content-panels-body-right {
    max-width: calc(70% - 30px);
}

.ec-store__authorized-grid-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ec-store__authorized-grid-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.ec-store-tab__content-panels-heading {
    display: none;
    background-color: #ffffff;
}

.ec-store-tab__content-panels-heading.ec-active {
    background-color: #f5f3f3;
}

.ec-store-tab__content-panels-heading h4 {
    margin-bottom: 0;
    font-size: 16px;
}

.ec-store-tab__content-panels-heading h4 a {
    display: block;
    padding: 15px 20px;
}

.ec-google-maps-embed{
    margin-top: 20px;
    margin-bottom: 20px;
}

.ec-google-maps-embed p{
    margin-bottom: 0;
}

.ec-nearby-attraction{
    margin-top: 30px;
}

.ec-nearby-attraction h3{
    margin-bottom: 10px;
    font-size: 22px;
}

.ec-nearby-attraction ul{
    margin: 0;
}

@media only screen and (max-width: 992px) {
    .ec-store-tab__content-panels-body-inner {
        flex-wrap: wrap;
    }

    .ec-store-tab__content-panels-body-left,
    .ec-store-tab__content-panels-body-right,
    .ec-store-tab__content-col-right {
        width: 100%;
        max-width: 100%;
    }

    .ec-store-tab__content-panels-body-left {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .ec-store-tab__content-desc{
        order: 3;
    }

    .ec-google-maps-embed{
        order: 1;
    }

    .ec-nearby-attraction{
        order: 1;
    }

    .ec-google-maps-embed{
        margin-bottom: 0;
    }

    .ec-nearby-attraction{
        margin-top: 0;
    }

    .ec-nearby-attraction h3{
        font-size: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .ec-store-tab__content-panels-heading {
        display: block;
    }

    .ec-store-tab__content-col-left {
        display: none;
    }

    .ec-store-tab__content-panels-body {
        padding-top: 0px;
    }

    .ec-store__authorized-grid-images{
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }

    .ec-store-tab__content-panels-heading h4 a{
        padding-left: 10px;
        padding-right: 10px;
        font-size: 20px;
    }

    .ec-store-tab__content-panels-body-inner{
        padding: 10px;
    }
}

/* Partner Tab */
#partner {
    padding: 20px;
}

.ec-store-tab__content-partner-inner .dataTables_filter input {
    border-radius: 0;
}

@media only screen and (max-width: 767px) {
    .ec-store-tab__content-partner-inner {
        overflow-x: auto;
    }

    .ec-store-tab__content-partner-inner .dataTables_length label {
        margin-bottom: 5px;
    }

    .ec-store-tab__content-partner-inner .dataTables_filter {
        width: 100%;
    }
}

@media only screen and (max-width: 500px) {
    .ec-store-tab__content-partner-inner table.tablepress{
        width: 550px;
    }

    .ec-store-tab__content-partner-inner .dataTables_paginate{
        width: 100%;
        float: none;
        display: flex;
        justify-content: space-between;
    }
}