/* #0 /var/www/u234675/data/www/plantsearch.pl/Application/Modules/AppDashboard/Resources/Front/Styles/style.Popup.css */
.dashboard-front-popup {
    background-color: rgba(255, 255, 255, 0.75);
    color: black;
    backdrop-filter: blur(1rem);
    filter: drop-shadow(0px 0px 1rem rgba(0, 0, 0, 0.125));
    padding: 1rem;
    position: fixed;
    left: 0px;
    bottom: 0px;
    z-index: 9999;
    max-width: 32rem;
    max-height: 32rem;
    transition: 0.25s;

    table {
        tr {

            th,
            td {
                font-size: 12px;
                vertical-align: initial;
                text-align: left;
                padding: 0.125rem;
            }
        }
    }

    .dashboard-front-popup-content {
        max-height: 100%;
        overflow-y: auto;

        .dashboard-front-popup-section {
            .dashboard-front-popup-parameter {
                .dashboard-front-popup-parameter-name {
                    width: 40%;
                }

                .dashboard-front-popup-parameter-value {
                    font-weight: bold;
                }
            }
        }
    }

    &:not(:hover) {
        transform: translateX(-100%);
    }

    .dashboard-front-popup-button {
        background-color: rgba(255, 255, 255, 0.75);
        color: black;
        position: absolute;
        left: 100%;
        top: 0px;
        padding: 1rem;
    }
}

/* #0 /var/www/u234675/data/www/plantsearch.pl/Application/Modules/Blocks/Resources/Front/style.Block.css */
.block[animation] {
    &:not([ready="true"]) {
        transform:
            translateX(var(--translateX)) translateY(var(--translateY)) translateZ(var(--translateZ)) rotateX(var(--rotateX)) rotateY(var(--rotateY)) rotateZ(var(--rotateZ)) scaleX(var(--scaleX)) scaleY(var(--scaleY)) scaleZ(var(--scaleZ));

        &[animation-opacity="true"] {
            opacity: 0;
        }
    }
}

/* #1 /var/www/u234675/data/www/plantsearch.pl/Application/Modules/Blocks/Resources/Front/style.TextMore.css */
.text-more-target {
    display: none;
}

.text-more {}

.text-more:not([state="true"])>.less {
    display: none;
}

.text-more[state="true"]>.more {
    display: none;
}

/* #0 /var/www/u234675/data/www/plantsearch.pl/Application/Modules/Quill/Resources/Front/Styles/style.Quill.css */
.ql-align-center {
    text-align: center;
}

/* #0 /var/www/u234675/data/www/plantsearch.pl/Plugins/Cookies/Resources/Front/style.Cookies.css */
#cookie-banner {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: rgba(255, 255, 255, 0.75);
    padding: 1rem;
    z-index: 9999;
    overflow: auto;

    .cookie-box {
        background-color: white;
        color: black;
        box-shadow: 0rem 0.5rem 1rem hsla(0, 0%, 0%, 0.5);
        width: 100%;
        max-width: min(720px, 100%);
        padding: 1rem;

        .cookie-group {
            padding: 1rem;

            label {
                display: flex;
                flex-wrap: wrap;
                gap: 0.5rem;

                input {
                    width: 1rem;
                    height: 1rem;
                }
            }
        }

        .actions {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            justify-content: space-between;

            .cookies-button {
                padding: 1rem;
                cursor: pointer;
                width: auto;
            }
        }
    }

    &:not([settings="true"]) {
        .cookies-settings {
            display: none;
        }
    }

    &[settings="true"] {
        .cookies-no-settings {
            display: none;
        }
    }
}

/* #0 /var/www/u234675/data/www/plantsearch.pl/Plugins/Gallery/Resources/Front/style.Gallery.css */
.gallery {
    .image[full] {
        cursor: pointer;
    }
}

.gallery-view {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: fixed;
    padding: 1rem;
    gap: 1rem;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1000;

    .gallery-view-button {
        backdrop-filter: blur(0.5rem);
        background-color: hsla(0, 0%, 20%, 0.25);
        color: white;
        align-self: center;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        line-height: 1;
        padding: 1rem;
        z-index: 1;
    }

    .gallery-view-button.gallery-view-close-button {
        top: 1rem;
        right: 1rem;
        position: absolute;
    }

    .gallery-view-content {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding: 1%;
        flex-grow: 1;
        width: 0%;
        height: 100%;
        overflow-y: auto;

        img.gallery-view-image {
            object-fit: contain;
            width: 100%;
            height: 100%;
            max-width: 100%;
            max-height: 100%;
            transition: 0.2s;
        }

        &[zoom="true"] {
            img.gallery-view-image {
                height: auto;
                max-width: 100%;
                max-height: initial;
            }
        }
    }
}

@media (max-width:768px) {
    .gallery-view {
        overflow-y: auto;
    }

    .gallery-view .gallery-view-content {
        width: 100%;
        height: 100%;
    }

    .gallery-view .gallery-view-button.gallery-view-prev-button {
        position: absolute;
        left: 0px;
        width: 33.33%;
        top: auto;
        bottom: 0px;
        transform: none;
    }

    .gallery-view .gallery-view-button.gallery-view-next-button {
        position: absolute;
        left: 66.66%;
        width: 33.33%;
        top: auto;
        bottom: 0px;
        transform: none;
    }

    .gallery-view .gallery-view-button.gallery-view-close-button {
        left: 33.33%;
        width: 33.33%;
        top: auto;
        bottom: 0px;
        transform: none;
    }
}

/* #0 /var/www/u234675/data/www/plantsearch.pl/Plugins/Shop/Resources/Front/Styles/style.Blocks.css */
.shop-cart-delivery-select {
    cursor: pointer;
}

.shop-cart-payment-select {
    cursor: pointer;
}

.shop-cart-address-select {
    cursor: pointer;
}

.shop-cart-invoice-address-select {
    cursor: pointer;
}