.shop-garland-plugin-root {
    position: relative;
    display: block;
    width: 100%;
}

.shop-garland-plugin-root.is-dismissed {
    display: none !important;
}

.shop-garland-plugin {
    box-sizing: border-box;
    width: 100%;
    height: var(--shop-garland-height, 60px);
    background-color: var(--shop-garland-color, transparent);
    background-image: var(--shop-garland-image);
    background-position: top center;
    background-repeat: repeat-x;
    z-index: var(--shop-garland-z-index, 10000);
    pointer-events: none;
    user-select: none;
}

.shop-garland-plugin__close {
    position: absolute;
    top: 6px;
    right: 8px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 0;
    cursor: pointer;
    pointer-events: auto;
    opacity: 0.8;
    appearance: none;
}

.shop-garland-plugin__close::before,
.shop-garland-plugin__close::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    border-radius: 1px;
    background: currentColor;
    content: "";
    transform-origin: center;
}

.shop-garland-plugin__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.shop-garland-plugin__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.shop-garland-plugin__close > span {
    display: none;
}

.shop-garland-plugin__close:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.72);
}

.shop-garland-plugin__close:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.shop-garland-plugin--above {
    position: relative;
}

.shop-garland-plugin--overlay {
    position: absolute;
    inset: 0 0 auto;
}

.shop-garland-plugin--fixed,
.shop-garland-plugin--scroll-fixed {
    position: fixed;
    inset: 0 0 auto;
}

.shop-garland-plugin--round {
    background-repeat: round no-repeat;
}

.shop-garland-plugin__spacer {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: var(--shop-garland-spacer-height, 0);
    min-height: var(--shop-garland-spacer-height, 0);
    pointer-events: none;
}

@media screen and (max-width: 767px) {
    .shop-garland-plugin {
        height: var(--shop-garland-mobile-height, var(--shop-garland-height, 60px));
        min-height: var(--shop-garland-mobile-height, var(--shop-garland-height, 60px));
    }

    .shop-garland-plugin__spacer {
        height: var(--shop-garland-mobile-spacer-height, var(--shop-garland-spacer-height, 0));
        min-height: var(--shop-garland-mobile-spacer-height, var(--shop-garland-spacer-height, 0));
    }
}

@media print {
    .shop-garland-plugin,
    .shop-garland-plugin__spacer {
        display: none !important;
    }
}
