html, body {
    font-size: 16px;
    color: #231F20;
}

.box {
    max-width: 1270px;
    margin: 0 auto;
}

.gradient-dark {
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=0);
}

.gradient-overlay {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.25) 100%);
}

.btn-group-xs > .btn, .btn-xs {
    padding: .25rem .4rem;
    font-size: .75rem;
    line-height: 1;
    border-radius: .2rem;
}

/* SIDE MENU */
#side-menu-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: .25rem;
    cursor: pointer;
}

#side-menu {
    position: fixed;
    z-index: 1100;
    top: 0;
    right: 0;
    width: 350px;
    max-width: 90%;
    height: 100%;
    background: #FFF;
    transition: 400ms transform ease;
    transform: translate3d(100%, 0, 0);
    overflow: auto;
    padding-top: 35px;
}

#side-menu.left {
    left: 0;
    transform: translate3d(-100%, 0, 0);
}

.side-menu-open {
    overflow: hidden;
}

.side-menu-open #side-menu,
.side-menu-open #side-menu.left {
    transform: translate3d(0, 0, 0);
    box-shadow: -2px -2px 10px rgba(0, 0, 0, 0.4);
}

#side-menu .close {
    padding: 5px 10px;
    position: absolute;
    top: 0;
    right: 0;
}

/* PROGRESSIVE LOAD */
.progressive-load {
    position: relative;
    overflow: hidden;
}

.progressive-load img {
    transition: 300ms opacity ease;
}

.progressive-load img.draft {
    filter: blur(3px);
    opacity: 1;
}

.progressive-load.loaded img.draft {
    opacity: 0;
}

.progressive-load img.final {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
}

.progressive-load.loaded img.final {
    opacity: 1;
}

#modo-manutencao {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.color-swatch {
    height: 20px;
    width: 20px;
}

.text-swatch {
    color: inherit;
    pointer-events: inherit !important;
}

.color-swatch.disabled,
.text-swatch.disabled {
    cursor: not-allowed !important;
}

#product-variants .selected {
    background-color: var(--color-alt-dark) !important;
    border-color: var(--color-alt-dark) !important;
    color: var(--light) !important;
}

#product-variants .item {
    background-color: #fff;
}

#product-variants .item:hover {
    background-color: #e7f3ff;
}

#product-variants .item.disabled {
    opacity: 0.5;
}

#product-variants .item.disabled::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 2;
}

#product-variants .item.disabled::after {
    font-size: 9px;
    text-align: center;
    border: 1px solid #7d7d7d;
    background-color: #f5f5f5;
    border-radius: 50%;
    content: "x";
    width: 14px;
    height: 14px;
    line-height: 10px;
    position: absolute;
    z-index: 2;
    top: -4px;
    right: -4px;
}

#articles-banner .cat-label,
#articles-list .cat-label {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

#articles-banner .each {
    text-shadow: 0 0 4px #000;
}

.form-style label {
    font-size: 12px;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.form-style label.required::before {
    content: "*";
    font-size: 14px;
    color: var(--danger);
    margin-right: 0.25rem;
}