/*
font-family: 'Roboto', sans-serif;
font-family: 'Lato', sans-serif;
*/

* {
    font-family: 'Roboto', sans-serif;
}

button, button:focus, a, a:hover, div, input, textarea, select {
    outline: none;
    text-decoration: none;
}

p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

body {
    padding-top: 63px;
    color: #000;
}

header {
    background: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: background .5s ease-in-out,padding .5s ease-in-out;
    box-shadow: 0px 2px 9px rgb(0 0 0 / 30%);
}

#menu-toggle {
    float: left;
    background-color: transparent;
    border: none;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 22px 2px 0;
}

#logo {
    width: 255px;
    margin: 20px 0;
    float: left;
}

#main-menu {
    list-style: none;
    margin: 17px 0;
    padding: 0;
    float: right;
}

    #main-menu li {
        float: left;
        position: relative;
    }

        #main-menu li a {
            color: #000;
            font-size: 14px;
            margin-left: 8px;
            margin-right: 8px;
            padding-left: 10px;
            padding-right: 10px;
        }

        #main-menu li:last-child a {
            padding-right: 0;
            margin-right: 0;
        }

        #main-menu li a img {
            width: 100%;
            max-width: 25px;
        }

#col-user:hover #box-preview-user {
    display: block;
}

#box-preview-user {
    position: absolute;
    width: 165px;
    top: 0;
    right: -5px;
    padding-top: 62px;
    display: none;
}

@media(max-width: 768px) {
    #box-preview-user {
        right: -15px;
        padding-top: 56px;
    }
}

#user-preview {
    max-width: 100%;
    width: 100%;
    position: relative;
    background: #fff;
    z-index: 99;
    padding: 20px 5px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.14);
    border-radius: 6px;
    border: 1px solid #ccc;
    min-height: 100px;
}

    #user-preview:before {
        content: "\A";
        border-left: 16px solid transparent;
        border-right: 16px solid transparent;
        border-bottom: 16px solid white;
        position: absolute;
        right: 18px;
        top: -16px;
    }

    #user-preview ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: inline-grid;
    }

        #user-preview ul li {
            position: relative;
            margin-bottom: 5px;
        }

            #user-preview ul li:last-child {
                margin-bottom: 0px;
            }

            #user-preview ul li a {
                color: #000;
            }

div#countcart {
    position: absolute;
    top: -4px;
    right: -17px;
    background: #640e64;
    height: 13px;
    width: 14px;
    border-radius: 100%;
    text-align: center;
    color: #fff;
    font-size: 9px;
    font-weight: bold;
}

.content {
    padding-top: 20px;
    min-height: 550px;
}

    .content h4 {
        text-align: center;
        font-weight: 900;
        margin-bottom: 25px;
    }

#brands img {
    width: 100%;
    margin-bottom: 30px;
}
.brands img {
    width: 100%;
    margin-bottom: 30px;
}

.flex-row.row {
    display: flex;
    flex-wrap: wrap;
}

    .flex-row.row > [class*='col-'] {
        display: flex;
        flex-direction: column;
    }

    .flex-row.row:after,
    .flex-row.row:before {
        display: flex;
    }

.flex-row .thumbnail,
.flex-row .box-product {
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
}

.box-product {
    border: 1px solid #b7b7b7;
    margin-bottom: 35px;
}

    .box-product img {
        width: 100%;
    }

.code-product {
    text-align: center;
    padding: 25px 20px 35px 20px;
}

    .code-product p {
        font-size: 14px;
        font-weight: bold;
    }

section.header-brand {
    padding: 25px 0;
}

.header-brand p {
    color: #fff;
    font-weight: 900;
    margin-bottom: 15px;
    margin-top: 10px;
}

img.brand-logo {
    width: 100%;
    max-width: 155px;
}

img.brand-logo-zorba {
    width: 100%;
    max-width: 255px;
}

img.brand-logo-kendall {
    max-width: 220px;
    margin-top: 38px;
}

img.brand-logo-tensor {
    max-width: 220px;
    margin-top: 37px;
}

.header-brand label {
    color: #fff;
    font-size: 14px;
    margin-bottom: 3px;
}

.header-brand select {
    width: 100%;
    border: none;
    padding: 10px;
}

.download {
    text-align: center;
    height: 100px;
    border-left: 1px solid #fff;
    margin-top: 16px;
    padding-left: 15px;
    padding-top: 20px;
}

    .download a {
        color: #fff;
    }

        .download a img {
            margin: 0 auto 10px;
            display: table;
            width: 100%;
            max-width: 28px;
        }

.loading {
    text-align: center;
    margin: 50px 0 90px;
}

    .loading img {
        width: 100%;
        max-width: 41px;
        margin-bottom: 10px;
        animation-name: spin;
        animation-duration: 2000ms;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
    }

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.box-title {
    padding-bottom: 35px;
    border-bottom: 1px solid #cfcfcf;
}

p#product {
    float: left;
    font-weight: 900;
    font-size: 20px;
}

p#total {
    float: right;
    font-weight: 900;
    font-size: 20px;
}

.box-item {
    padding: 15px 0;
    border-bottom: 1px solid #cfcfcf;
    padding-bottom: 180px;
}

.box-product-cart img {
    width: 100%;
    max-width: 160px;
    float: left;
}

.box-total-product {
    float: right;
    margin-top: 65px;
    font-size: 18px;
    font-weight: 900;
}

.description-cart {
    float: left;
    margin-left: 20px;
    margin-top: 15px;
}

    .description-cart h5 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .description-cart p {
        font-size: 15px;
    }

.total-products {
    padding: 65px 0 50px;
}

.box-total h4 {
    text-align: right;
}

.box-btns {
    float: right;
    margin-bottom: 75px;
}

.btn-finish {
    text-transform: uppercase;
    border: 1px solid #000;
    background: #000;
    color: #fff;
    padding: 7px 17px;
    border-radius: 3px;
    margin-left: 10px;
    font-weight: bold;
}

.btn-buying {
    text-transform: uppercase;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    padding: 7px 14px;
    border-radius: 3px;
    margin-left: 10px;
    font-weight: bold;
}

.btn-cancel {
    text-transform: uppercase;
    border: 1px solid #ec1609;
    background: #ec1609;
    color: #fff;
    padding: 7px 14px;
    border-radius: 3px;
    font-weight: bold;
}

.box-checkout {
    border: 1px solid #e7e7e7;
    border-radius: 5px;
    padding: 30px 25px;
}

    .box-checkout img {
        width: 100%;
        max-width: 116px;
        margin: 45px auto 35px;
        display: table;
    }

.back-start {
    border: 1px solid #000;
    background: #fff;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: bold;
    padding: 5px 35px;
    margin: 70px auto 50px;
    display: table;
}

.carousel {
    position: relative;
    margin-bottom: 140px;
}

.carousel-indicators {
    bottom: -35px;
}

    .carousel-indicators li {
        text-indent: 0;
        margin-right: 10px;
        margin-left: 10px;
        width: 100%;
    }

        .carousel-indicators li img {
            width: 95px;
        }



.box-size img {
    width: 100%;
    max-width: 100px;
}

.box-price {
    margin: 25px 0;
}

    .box-price p {
        font-weight: bold;
    }

    .box-price span {
        font-size: 24px;
    }

.table {
    width: 100%;
    margin-bottom: 25px;
    color: #212529;
    border: 1px solid #e1e1e1;
    overflow-x: scroll;
}

    .table td, .table th {
        padding: 8px;
        vertical-align: middle;
        border-top: 1px solid #dee2e6;
        font-weight: 400;
    }

.AcoesMargin {
    width: 5%;
}

.table thead th {
    text-align: center;
}

.table .form-control {
    text-align: center;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #e1e1e1;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #a1a1a1;
    opacity: 1;
}

.table input::-webkit-input-placeholder {
    color: #a4a4a4;
}

.table input:-moz-placeholder {
    color: #a4a4a4;
}

.box-border {
    border: 1px solid #e1e1e1;
    padding: 10px 20px;
}

.btn-cart {
    background: #ee3022;
    border: none;
    color: #fff;
    padding: 10px 20px;
    margin-top: 35px;
}

    .btn-cart img {
        max-width: 21px;
        margin-right: 30px;
        margin-top: -4px;
    }

.btns-descriptions {
    margin-top: 40px;
}

    .btns-descriptions input {
        background: #000;
        border: none;
        color: #fff;
        padding: 5px 20px;
        margin-right: 10px;
    }

        .btns-descriptions input.active {
            background: #5c005b;
        }

.information-product {
    margin-top: 25px;
}

section#buy-also {
    margin-top: 50px;
}

.modal-header {
    display: initial;
    border: none;
}

h5.modal-title {
    text-align: center;
    font-size: 24px;
    color: #000;
    margin-top: 25px;
}

.modal-header .close {
    position: absolute;
    top: 5px;
    right: 10px;
    margin: 0;
    padding: 0;
    color: #e01c1c;
}

.modal-body {
    padding: 20px 35px 35px 35px;
}

.form-group label {
    font-size: 14px;
    color: #000;
    margin-bottom: 3px;
}

.modal-body button {
    border: none;
    background: #000;
    color: #fff;
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    margin-top: 20px;
}

.modal-footer {
    border: none;
    justify-content: flex-start;
    padding: 25px 35px 45px 35px;
}

    .modal-footer a {
        color: #e01c1c;
    }

footer {
    text-align: center;
    margin-top: 30px;
}

    footer img {
        margin: 0 15px;
    }

.footer-brands {
    display: flex;
    justify-content: center;
    min-height: 50px;
}

.footer-brands-mobile {
    display: none;
}
/*
.footer-hanes {
    margin: 0 15px;
    background-image: url(../images/hanes-white.png);
    background-size: 106px;
    background-repeat: no-repeat;
    width: 110px;
}

.footer-hanes:hover {
    background-image: url(../images/hanes-color.png);
    transition: .4s;
    height: 96px;
    margin-top: -27px;
}

.footer-zorba {
    margin: 0 15px;
    background-image: url(../images/zorba-white.png);
    background-size: 110px;
    background-repeat: no-repeat;
    margin-top: -8px;
    width: 115px;
    transition: .4s;
}

    .footer-zorba:hover {
        background-image: url(../images/zorba-color.png);
        transition: .4s;
    }

.footer-tensor {
    margin: 0 15px;
    background-image: url(../images/tensor-white.png);
    background-size: 155px;
    background-repeat: no-repeat;
    margin-top: 4px;
    width: 160px;
}

    .footer-tensor:hover {
        background-image: url(../images/tensor-colorv2.png);
        transition: .4s;
    }

.footer-kendall {
    margin: 0 15px;
    background-image: url(../images/kendall-white.png);
    background-size: 170px;
    background-repeat: no-repeat;
    margin-top: 5px;
    width: 170px;
}

    .footer-kendall:hover {
        background-image: url(../images/kendall-color2.png);
        transition: .4s;
    }*/

p#credit {
    margin-bottom: 20px;
    font-size: 16px;
    color: #696669;
    margin-top: 25px;
}

@media(max-width: 768px ) {
    #logo {
        width: 195px;
    }

    #main-menu {
        margin-right: 15px;
    }

        #main-menu li a {
            margin-left: 4px;
            margin-right: 4px;
            padding-left: 5px;
            padding-right: 5px;
        }

            #main-menu li a img {
                max-width: 20px;
            }

    .code-product {
        padding: 25px 15px 35px 15px;
    }

    img.brand-logo-zorba {
        max-width: 210px;
    }

    img.brand-logo {
        margin: 0 auto 15px;
        display: table;
    }

    .download {
        border-left: none;
    }

    .box-product-cart img {
        max-width: 125px;
    }

    .description-cart {
        margin-top: 15px;
        position: absolute;
        top: 135px;
        left: 15px;
        margin-left: 0;
    }

    .box-item {
        padding-bottom: 300px;
    }

    .box-total-product {
        margin-top: 125px;
    }

    .total-products {
        padding: 35px 0 25px;
    }

    .box-total h4 {
        text-align: left;
        margin-top: 23px;
    }

    button.btn-buying, button.btn-finish {
        margin-left: 0;
        margin-top: 15px;
    }

    .table .form-control {
        width: 50px;
        text-align: center;
    }

    .btns-descriptions button {
        margin-right: 3px;
        margin-bottom: 10px;
    }

    .footer-brands {
        display: none;
    }

    .footer-brands-mobile {
        display: block;
        display: flex;
        min-height: 50px;
        justify-content: center;
    }

    .footer-hanes, .footer-zorba, .footer-tensor, .footer-kendall {
        background-size: 100%;
    }
}

@media(max-width: 320px ) {
    #logo {
        width: 165px;
    }

    .box-total-product {
        margin-top: 50px;
    }

    .carousel-indicators li {
        margin-right: 3px;
        margin-left: 3px;
    }
}

/*Pedidos*/

.card {
    margin-bottom: 70px;
}

.card-header {
    color: #000;
    font-size: 22px;
    font-weight: bold;
}

.btn-filter {
    background: #8393ca;
    border: none;
    color: #fff;
    padding: 8px 32px;
    border-radius: 5px;
    margin-right: 10px;
}

.btn-clear {
    background: #ed1c24;
    border: none;
    color: #fff;
    padding: 8px 32px;
    border-radius: 5px;
    margin-right: 10px;
}

.card-footer {
    min-height: 65px;
}

.table-request, .table-items {
    border: none;
    overflow-x: scroll;
}

    .table-request thead th, .table-items thead th {
        font-size: 14px;
        font-weight: bold;
        line-height: 20px;
    }

    .table-request td, .table-items td{
        text-align: right;
        font-size: 14px;
        line-height: 21px;
    }

a.nav-link {
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

.form-control {
    position: relative;
}

.btn-outline-secondary {
    position: absolute;
    top: 24px;
    right: 5px;
    background: #3d8dbc;
    border-color: #3d8dbc;
    border-radius: 0 3px 3px 0;
}

    .btn-outline-secondary.focus, .btn-outline-secondary:focus {
        box-shadow: 0 0 0 0.2rem rgb(23 111 189 / 50%);
    }

    .btn-outline-secondary img {
        width: 100%;
        max-width: 18px;
    }

input.form-control.without-label {
    margin-top: 26px;
}

.btn-action-blue {
    background: #549ce5;
    border: none;
    padding: 5px 8px;
    border-radius: 3px;
}

    .btn-action-blue img {
        width: 100%;
        max-width: 18px;
        margin: 7px 5px;
        display: inline;
    }



.btn-action-red {
    background: #dd4c3a;
    border: none;
    padding: 5px 8px;
    border-radius: 3px;
}

    .btn-action-red img {
        width: 100%;
        max-width: 18px;
        margin: 7px 5px;
        display: inline;
    }


.btn-action-green {
    background: #19a00e;
    border: none;
    padding: 5px 8px;
    border-radius: 3px;
    margin: 5%;
}

    .btn-action-green img {
        width: 100%;
        max-width: 18px;
    }


.btn-action-warning {
    background: #ffc107;
    border: none;
    padding: 5px 8px;
    border-radius: 3px;
    margin: 5%;
}

    .btn-action-warning img {
        width: 100%;
        max-width: 18px;
    }

/*.btn-secondary {
    margin-bottom: 20px;
}*/

@keyframes swing {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(10deg);
    }

    30% {
        transform: rotate(0deg);
    }

    40% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(0deg);
    }

    60% {
        transform: rotate(5deg);
    }

    70% {
        transform: rotate(0deg);
    }

    80% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes sonar {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

body {
    font-size: 0.9rem;
}

.page-wrapper .sidebar-wrapper,
.sidebar-wrapper .sidebar-brand > a,
.sidebar-wrapper .sidebar-dropdown > a:after,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before,
.sidebar-wrapper ul li a i,
.page-wrapper .page-content,
.sidebar-wrapper .sidebar-search input.search-menu,
.sidebar-wrapper .sidebar-search .input-group-text,
.sidebar-wrapper .sidebar-menu ul li a,
#show-sidebar,
#close-sidebar {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/*----------------page-wrapper----------------*/

.page-wrapper {
    height: 100vh;
}

    .page-wrapper .theme {
        width: 40px;
        height: 40px;
        display: inline-block;
        border-radius: 4px;
        margin: 2px;
    }

        .page-wrapper .theme.chiller-theme {
            background: #1e2229;
        }

    /*----------------toggeled sidebar----------------*/

    .page-wrapper.toggled .sidebar-wrapper {
        left: 0px;
    }

@media screen and (min-width: 768px) {
    .page-wrapper.toggled .page-content {
        padding-left: 300px;
    }
}

/*----------------sidebar-wrapper----------------*/

.sidebar-wrapper {
    display: block;
}

nav#sidebar {
    display: none;
    background: #102341;
    color: #fff;
    width: 100%;
    height: 100%;
    padding-top: 15px;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100vh;
    overflow-y: auto;
    width: 280px;
    z-index: 99999;
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
}


.header-menu {
    margin-top: 25px;
}

.sidebar-wrapper ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sidebar-wrapper a {
    text-decoration: none;
}

/*----------------sidebar-content----------------*/

.sidebar-content.desktop {
    overflow-y: hidden;
}

/*--------------------sidebar-brand----------------------*/

.sidebar-wrapper .sidebar-brand {
    padding: 10px 20px;
    display: flex;
    align-items: center;
}

    .sidebar-wrapper .sidebar-brand > a {
        text-transform: uppercase;
        font-weight: bold;
        flex-grow: 1;
    }

    .sidebar-wrapper .sidebar-brand #close-sidebar {
        cursor: pointer;
        font-size: 20px;
    }
/*--------------------sidebar-header----------------------*/

.sidebar-wrapper .sidebar-header {
    padding: 20px;
    overflow: hidden;
}

    .sidebar-wrapper .sidebar-header .user-pic {
        float: left;
        width: 60px;
        padding: 2px;
        border-radius: 12px;
        margin-right: 15px;
        overflow: hidden;
    }

        .sidebar-wrapper .sidebar-header .user-pic img {
            object-fit: cover;
            height: 100%;
            width: 100%;
        }

    .sidebar-wrapper .sidebar-header .user-info {
        float: left;
    }

        .sidebar-wrapper .sidebar-header .user-info > span {
            display: block;
        }

        .sidebar-wrapper .sidebar-header .user-info .user-role {
            font-size: 12px;
        }

        .sidebar-wrapper .sidebar-header .user-info .user-status {
            font-size: 11px;
            margin-top: 4px;
        }

            .sidebar-wrapper .sidebar-header .user-info .user-status i {
                font-size: 8px;
                margin-right: 4px;
                color: #5cb85c;
            }

/*-----------------------sidebar-search------------------------*/

.sidebar-wrapper .sidebar-search > div {
    padding: 10px 20px;
}

/*----------------------sidebar-menu-------------------------*/

.sidebar-wrapper .sidebar-menu {
    padding-bottom: 10px;
}

    .sidebar-wrapper .sidebar-menu .header-menu span {
        font-weight: bold;
        font-size: 14px;
        padding: 15px 20px 5px 20px;
        display: inline-block;
    }

    .sidebar-wrapper .sidebar-menu ul li a {
        display: inline-block;
        width: 100%;
        text-decoration: none;
        position: relative;
        padding: 8px 30px 8px 20px;
        color: #fff;
    }

        .sidebar-wrapper .sidebar-menu ul li a i {
            margin-right: 10px;
            font-size: 12px;
            width: 30px;
            height: 30px;
            line-height: 30px;
            text-align: center;
            border-radius: 4px;
        }

        .sidebar-wrapper .sidebar-menu ul li a:hover > i::before {
            display: inline-block;
            animation: swing ease-in-out 0.5s 1 alternate;
        }

    .sidebar-wrapper .sidebar-menu .sidebar-dropdown > a:after {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f105";
        font-style: normal;
        display: inline-block;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-align: center;
        background: 0 0;
        position: absolute;
        right: 15px;
        top: 14px;
    }

    .sidebar-wrapper .sidebar-menu .sidebar-dropdown.submenu > a:after {
        top: 8px;
    }

    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu ul {
        padding: 5px 0;
    }

    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li {
        padding-left: 25px;
        font-size: 13px;
    }

        .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before {
            content: "\f111";
            font-family: "Font Awesome 5 Free";
            font-weight: 400;
            font-style: normal;
            display: inline-block;
            text-align: center;
            text-decoration: none;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            margin-right: 10px;
            font-size: 8px;
        }

    .sidebar-wrapper .sidebar-menu ul li a span.label,
    .sidebar-wrapper .sidebar-menu ul li a span.badge {
        float: right;
        margin-top: 8px;
        margin-left: 5px;
    }

    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .badge,
    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .label {
        float: right;
        margin-top: 0px;
    }

    .sidebar-wrapper .sidebar-menu .sidebar-submenu {
        display: none;
    }

    .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active > a:after {
        transform: rotate(90deg);
        right: 17px;
    }

@media(max-width: 768px) {
    .card-menu {
        border-radius: 0 0 4px 4px;
    }

    .card-table {
        border-radius: 4px;
    }
}

.MaxHeight {
    max-height: 26% !important;
    min-height: 26%;
}


.esquerda {
    text-align: left;
}

.direira {
    text-align: right;
}

.modal-header-success {
    color: #fff;
    padding: 9px 15px;
    border-bottom: 1px solid #eee;
    background-color: #5cb85c;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.modal-header-warning {
    color: #fff;
    padding: 9px 15px;
    border-bottom: 1px solid #eee;
    background-color: #f0ad4e;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.modal-header-danger {
    color: #fff;
    padding: 9px 15px;
    border-bottom: 1px solid #eee;
    background-color: #d9534f;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.modal-header-info {
    color: #fff;
    padding: 9px 15px;
    border-bottom: 1px solid #eee;
    background-color: #5bc0de;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.modal-header-primary {
    color: #fff;
    padding: 9px 15px;
    border-bottom: 1px solid #eee;
    background-color: #428bca;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.Modal {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: auto;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    padding: 150px 0 0 0;
    margin: 0 100px 0 100px;
}

.OpacityBackGround, .ProgressBackGround {
    background-color: #000;
    filter: alpha(opacity=50);
    opacity: 0.50;
    /*-moz-opacity: 0.50;

    position: fixed;
    _position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    _top: expression( ( ( ignoreMe = document.documentElement.scrollTop ) ) + 'px' );
    _height: expression( ( document.documentElement.clientHeight ) + 'px' );
    z-index: -1;*/
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}

/*///// PROGRESS BACKGROUND /////*/
.ProgressBackGround {
    background: #CCCCFF url(../images/Loading.gif) center center no-repeat;
    background-color: #CCCCFF;
    z-index: 10;
}


.ModalPedido {
    min-width: 90%;
    position: absolute;
    top: -6%;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: auto;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    padding: 150px 0 0 0;
    margin: 0 100px 0 100px;
}

.ModalGradePedido {
    min-width: 80% !important;
    max-height: 35% !important;
}

.ModalPesq {
    min-width: 100%;
}

.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}


.lblBranco {
    color: #fff;
}


.modalBackground {
    background-color: Black;
    filter: alpha(opacity=90);
    opacity: 0.8;
}

.modalPopup {
    background-color: transparent;
    padding-top: 10px;
    padding-left: 10px;
    width: 85%;
    height: 85%;
}


.modalPopupRep {
    background-color: transparent;
    padding-top: 10px;
    padding-left: 10px;
    width: 80%;
    height: 80%;
    margin-top: -10px !important;
}


.caption-1 figcaption {
    position: absolute;
    bottom: 0;
    right: 0;
}

.caption-2 figcaption {
    width: 80%;
    position: absolute;
    bottom: 1rem;
    left: 10%;
    background: rgba(255, 255, 255, 0.6);
}

.caption-3 figcaption {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateY(-50%);
}


.w-20 {
    width: 20% !important;
}

.w-15 {
    width: 15% !important;
}

.w-10 {
    width: 10% !important;
}

.w-5 {
    width: 5% !important;
}


@media (min-width: 576px) {
    .container, .container-sm {
        max-width: 560px;
    }
}

@media (min-width: 768px) {
    .container, .container-sm, .container-md {
        max-width: 740px;
    }
}

@media (min-width: 992px) {
    .container, .container-sm, .container-md, .container-lg {
        max-width: 980px;
    }
}

@media (min-width: 1330px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: 1380px;
        /*max-width: 1180px;*/
    }
}




.imgUp {
    margin-bottom: 15px;
}

.del {
    position: absolute;
    top: 0px;
    right: 15px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    background-color: rgba(255,255,255,0.6);
    cursor: pointer;
}

.imgAdd {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #4bd7ef;
    color: #fff;
    box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.2);
    text-align: center;
    line-height: 30px;
    margin-top: 0px;
    cursor: pointer;
    font-size: 15px;
}



.verticaltext {
    writing-mode: tb-rl;
    filter: flipv fliph;
}


.pagination-ys {
    /*display: inline-block;*/
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

    .pagination-ys table > tbody > tr > td {
        display: inline;
    }

        .pagination-ys table > tbody > tr > td > a,
        .pagination-ys table > tbody > tr > td > span {
            position: relative;
            float: left;
            padding: 8px 12px;
            line-height: 1.42857143;
            text-decoration: none;
            color: #007bff;
            background-color: #ffffff;
            border: 1px solid #dddddd;
            margin-left: -1px;
        }

        .pagination-ys table > tbody > tr > td > span {
            position: relative;
            float: left;
            padding: 8px 12px;
            line-height: 1.42857143;
            text-decoration: none;
            margin-left: -1px;
            z-index: 2;
            color: #fff;
            background-color: #007bff;
            border-color: #dddddd;
            cursor: default;
        }

        .pagination-ys table > tbody > tr > td:first-child > a,
        .pagination-ys table > tbody > tr > td:first-child > span {
            margin-left: 0;
            border-bottom-left-radius: 4px;
            border-top-left-radius: 4px;
        }

        .pagination-ys table > tbody > tr > td:last-child > a,
        .pagination-ys table > tbody > tr > td:last-child > span {
            border-bottom-right-radius: 4px;
            border-top-right-radius: 4px;
        }

        .pagination-ys table > tbody > tr > td > a:hover,
        .pagination-ys table > tbody > tr > td > span:hover,
        .pagination-ys table > tbody > tr > td > a:focus,
        .pagination-ys table > tbody > tr > td > span:focus {
            color: #fff;
            background-color: #007bff;
            border-color: #dddddd;
        }


loader {
    width: 60px;
}

.loader-wheel {
    animation: spin 1s infinite linear;
    border: 2px solid rgba(30, 30, 30, 0.5);
    border-left: 4px solid #000;
    border-radius: 50%;
    height: 50px;
    margin-bottom: 10px;
    width: 50px;
}

.loader-text {
    color: #fff;
    font-family: arial, sans-serif;
}

    .loader-text:after {
        content: 'Loading';
        animation: load 2s linear infinite;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes load {
    0% {
        content: 'Atualizando valores';
    }

    33% {
        content: 'Atualizando valores.';
    }

    67% {
        content: 'Atualizando valores..';
    }

    100% {
        content: 'Atualizando valores...';
    }
}


.ModalMensagem {
    position: fixed;
    top: 20%;
    left: 20%;
    z-index: 1060;
    width: 50%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

 