.is-disabled {
    pointer-events:none;
    opacity:.5;
    cursor:not-allowed;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    position: relative;
    margin-bottom: 0.4rem;
    line-height: 1.5;
    font-size: inherit;
    padding-left: 1.8rem;
}

.check-list li::before {
    content: '';
    position: absolute;
    top: 0.15rem;
    left: 0;
    width: 1.2rem;
    height: 1.2rem;
    background: linear-gradient(135deg, #5B7CF7, #354CCB);
    mask: url('data:image/svg+xml;utf8,<svg fill="none" stroke="black" stroke-width="4.5" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M5 13l4 4L19 7"/></svg>') no-repeat center;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg fill="none" stroke="black" stroke-width="4.5" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M5 13l4 4L19 7"/></svg>') no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
}

.cross-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #EC5454, #C23333);
    mask: url('data:image/svg+xml;utf8,<svg fill="none" stroke="black" stroke-width="4.5" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M18 6L6 18M6 6l12 12"/></svg>') no-repeat center;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg fill="none" stroke="black" stroke-width="4.5" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M18 6L6 18M6 6l12 12"/></svg>') no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
}

.check-list.cross li::before {
    background: linear-gradient(135deg, #EC5454, #C23333);
    mask: url('data:image/svg+xml;utf8,<svg fill="none" stroke="black" stroke-width="4.5" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M18 6L6 18M6 6l12 12"/></svg>') no-repeat center;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg fill="none" stroke="black" stroke-width="4.5" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M18 6L6 18M6 6l12 12"/></svg>') no-repeat center;
}

.check-list.plus li::before {
    background: linear-gradient(135deg, #5B7CF7, #354CCB);
    mask: url('data:image/svg+xml;utf8,<svg fill="none" stroke="black" stroke-width="4.5" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 5v14m-7-7h14"/></svg>') no-repeat center;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg fill="none" stroke="black" stroke-width="4.5" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 5v14m-7-7h14"/></svg>') no-repeat center;
}

:root{
    --card: 23rem;
    --gap: 2rem;
}

.gourmet-dish-cards {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: var(--gap);
    justify-content: center;
    align-items: stretch !important;
    max-width: calc(3 * var(--card) + 2 * var(--gap));
}

#gourmet-section-1-div {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

@media (max-width: 1420px) {
    #gourmet-section-1-div {
        flex-direction: column;
    }
}

@media (max-width: 1120px) {
    .gourmet-dish-cards {
        max-width: calc(2 * var(--card) + 1 * var(--gap));
    }
}

@media (max-width: 640px) {
    .gourmet-dish-cards {
        max-width: var(--card);
    }
}

@media (max-width: 324px) {
    .gourmet-complete-gap-responsive {
        flex-direction: column !important;
        gap: 0 !important;
    }

    .bbq-complete-main-div {
        height: 31rem !important;
    }
}

@media (max-width: 319px) {
    header,
    .site-footer,
    #inner_content-10-12 {
        width: 320px;
    }
}