.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;
}

.barbeque-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));
}

.bbq-meat-types{
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s;
}

.bbq-meat-types.is-open{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity .25s ease, transform .25s ease, visibility 0s;
}

.btn-inline{
    transition: transform 0.1s ease;
    display: block;
    max-width: 18rem;
    margin: 1rem auto;
    transform: translateX(-1rem);
}

.btn-inline:hover{
    transform: scale(1.07);
}

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

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

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

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

@media (max-width: 425px) {
    .btn-inline {
        max-width: 10.4rem;
    }
}

@media (max-width: 345px) {
    .bbq-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;
    }
}
