* { box-sizing: border-box; }

body,
html {	
    min-width: 100%;
    font-weight: 400;
    font-size: var(--font-size-base);
    line-height: 22px;
    font-family: var(--font-family-base);
    background: var(--background-gray-default-opt2);
    color: var(--text-color);
}

/* style scroll */
body,
html,
.scroll_bar {
    scrollbar-width: thin; /* pode ser 'auto', 'thin' ou 'none' */
    scrollbar-color: #CCCCCC #EEEEEE; /* thumb e track respectivamente */
}

.container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    width: 90%;
}

.container:before,
.container:after {
    content: '.';
    display: block;
    overflow: hidden;
    visibility: hidden;
    font-size: 0;
    line-height: 0;
    width: 0;
    height: 0;
}

.container:after {
    clear: both;
}

.container {
    zoom: 1;
}

/* tinymce */
.tox-button {
    background-color: #f5f5f5 !important;
    color: #000 !important;
    border: 0 !important;
}

.tox-collection__item--active {
    background-color: #f5f5f5 !important;
    color: #000 !important;
}

.tox-collection__item--active:hover {
    background-color: #f5f5f5 !important;
    color: #000 !important;
}

.tox-dialog {
    z-index: 9999999 !important;
}

.tox-dialog-wrap__backdrop {
    z-index: 9999999 !important;
}

/* logotipo canvas */
canvas {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
    background-color: #FFF;
    border: 1px solid #EEE;
    box-shadow: 0 4px 6px rgba(197, 196, 196, 0.15);
    padding: 3px;
    overflow: hidden;
}

.logo_company_on_admin {
    width: 100px;
    height: 100px;
}

.logo_company_off_admin {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    display: block;
    background-color: #DCDCDC;
    border: 1px solid #EEE;
    box-shadow: 0 4px 6px rgba(197, 196, 196, 0.15);
    padding: 3px;
    overflow: hidden;
}

.logo_company_on_listagem {
    width: 80px;
    height: 80px;
}

.logo_company_off_listagem {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    display: block;
    background-color: #DCDCDC;
    border: 1px solid #EEE;
    box-shadow: 0 4px 6px rgba(197, 196, 196, 0.15);
    padding: 3px;
    overflow: hidden;
}

/* perfil user */
.image_perfil_user {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    background-color: #DCDCDC;
    border: 1px solid #EEE;
    box-shadow: 0 4px 6px rgba(197, 196, 196, 0.15);
    padding: 3px;
    overflow: hidden;
    img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        border-radius: 50%;
    }
}