html, body {
    font-size: 16px;
    color: #231F20;
}

.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;
}

#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-main) !important;
    border-color: var(--color-main) !important;
    color: var(--light) !important;
}

#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;
}

label.required:after {
    content: '*';
    color: #e44;
    margin-left: 5px;
}

/* article list */
.article-list .each img {
    border-radius: 0 0 15px 15px;
}

.article-list .each a {
    overflow: hidden;
    border-radius: 15px;
    background-color: #006fa8;
    color: #fff;
    text-decoration: none;
}

.article-list .each .text-box {
    text-align: center;
    padding: .75rem;
    font-weight: 500;
}

.article-list .each .date {
    display: none;
}