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;
}


.label {
    font-size: 14px;
    color: var(--secondary);
    margin-bottom: .25rem;
}

label.required:after,
.label.required:after {
    content: '*';
    color: #e44;
    margin-left: 5px;
}

.label-sm .label,
.label.label-sm {
    font-size: 12px;
}

.mm-wrapper__blocker {
    z-index: 91;
}

/* search */
#search-modal {
    background-color: rgba(215, 215, 215, 0.8);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

#search-modal-wrapper {
    width: 90%;
    max-width: 500px;
    padding-top: 10%;
}

#search-modal input {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 0;
    border: none;
    border-bottom: 2px solid #323a4d;
    padding: 30px 50px;
}

#search-modal #icon-search {
    position: absolute;
    top: 5px;
    left: 0;
    padding: 15px 10px;
}

#search-modal #icon-close {
    position: absolute;
    top: -5px;
    right: 0;
    padding: 10px 5px;
    font-size: 18px;
}

#search-modal input:focus {
    box-shadow: 0 10px 10px 0 rgb(0 0 0 / .1);
}

#search-modal #search-dropdown {
    position: absolute;
    top: 62px;
    right: 0;
    width: 100%;
    background-color: #fff;
}

#search-dropdown .each {
    background-color: #fff;
    border-radius: 4px;
    text-decoration: none;
    color: inherit;
}

#search-dropdown .each:hover,
#search-dropdown .each.active {
    background-color: #e9f9ff;
}