@import url('gmsmd-dimensoes.css');
@import url('gmsmd-colors.css');
@import url('gmsmd-inputs.css');
@import url('gmsmd-tab.css');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 400;
    line-height: 1.5;
}

a, a:link, a:visited, a:active {
    text-decoration: none;
    color: var(--black);
}

[data-prod][disabled].valor{
    background-color: #c3c3c3;
}

/************************* BARRA ROLAGEM *************************/

::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}

::-webkit-scrollbar-thumb {
    background: var(--dove-grey);
    border: 0px none var(--dove-grey);
    border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dove-grey);
}

::-webkit-scrollbar-thumb:active {
    background: var(--dove-grey);
}

::-webkit-scrollbar-track {
    background: var(--alto);
    border: 0px none var(--alto);
    border-radius: 50px;
}

::-webkit-scrollbar-track:hover {
    background: var(--alto);
}

::-webkit-scrollbar-track:active {
    background: var(--alto);
}

::-webkit-scrollbar-corner {
    background: transparent;
}

/************************* BARRA ROLAGEM *************************/

/************************* PRÉ LOADER *************************/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(134, 134, 134, 0.4);
    z-index: 20;
}

#preloader .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bolas>div {
    display: inline-block;
    background-color: var(--black);
    width: 20px;
    height: 20px;
    border-radius: 100%;
    margin: 3px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: animarBola;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.bolas>div:nth-child(1) {
    animation-duration: 0.75s;
    animation-delay: 0;
}

.bolas>div:nth-child(2) {
    animation-duration: 0.75s;
    animation-delay: 0.12s;
}

.bolas>div:nth-child(3) {
    animation-duration: 0.75s;
    animation-delay: 0.24s;
}

@keyframes animarBola {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    16% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 0.7;
    }
    33% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

/************************* PRÉ LOADER *************************/

.top-div {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--primary-color);
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 30%);
    z-index: 10;
}

.top-div .title, .top-div i, .top-div a {
    color: var(--secondary-font-color);
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: var(--white);
}

.txt-center {
    text-align: center;
}

.txt-left {
    text-align: left;
}

.txt-right {
    text-align: right;
}

.txt-bold {
    font-weight: bold;
}

.d-block {
    display: block!important;
}

.d-flex {
    display: flex!important;
}

.d-inline-block {
    display: inline-block!important;
}

.d-inline {
    display: inline!important;
}

.d-none {
    display: none!important;
}

.float-right {
    float: right;
}

.float-left {
    float: left;
}

.txt-vertical-center {
    align-items: center !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
}

.abreviar-texto {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.position-fixed {
    position: fixed;
}

.position-absolute {
    position: absolute;
}

.border {
    border: 1px solid var(--black);
}

/** SNACKBAR **/

#snackbar-confirmacao .snackbar-forma, #calendario-modal .calendario-forma, .modal-md .modal-forma {
    visibility: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.25);
    /* opacity: 0.3; */
    /* background-color: var(--mine-shaft); */
    color: var(--white);
    text-align: center;
    position: fixed;
    z-index: 10!important;
    font-size: 17px;
}

#snackbar-confirmacao.show .snackbar-forma, #calendario-modal.show .calendario-forma, .modal-md.show .modal-forma {
    visibility: visible;
}

#snackbar, #snackbar-confirmacao div.snackbar-body {
    visibility: hidden;
    width: 40%;
    margin-left: 30%;
    background-color: var(--mine-shaft);
    color: var(--white);
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 10!important;
    bottom: 30px;
    font-size: 17px;
}

#snackbar-confirmacao.show div.snackbar-body {
    visibility: visible;
    -webkit-animation: fadein 0.5s;
    animation: fadein 0.5s;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s;
    animation: fadein 0.5s;
}

#snackbar.hide, #snackbar-confirmacao.hide div.snackbar-body {
    -webkit-animation: fadeout 0.5s;
    animation: fadeout 0.5s;
}

.btn-link {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
        visibility: visible;
    }
    to {
        bottom: 0;
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
        visibility: visible;
    }
    to {
        bottom: 0;
        opacity: 0;
        visibility: hidden;
    }
}

/** SNACKBAR **/