body .bg {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    opacity: 90%;
    width: 100%;
    height: 50%;
    background-color: transparent;
    background-image: linear-gradient(210deg, #98A4A3 0%, #161635 64%);
}

.skeleton.skeleton-external {
    position: relative;
    padding: 30px 0;
}

.section-content,
.section {
    border-radius: 7px;
}

.section-overflow {
    position: relative;
    overflow: auto;
    margin: 0;
    padding: 0;
}

.section-header {
    padding: 5px;
    font-size: 13px;
}

.first {
    width: 45%;
    min-width: 330px;
}

.ellipsis {
    position: relative;
}

.ellipsis:before {
    content: '&nbsp;';
    visibility: hidden;
}

.ellipsis span {
    position: absolute;
    left: 0;
    right: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 10px;
}

.checkbox {
    display: grid;
    grid-template-columns: -webkit-min-content auto;
    grid-template-columns: min-content auto;
    grid-gap: 0.5em;
    font-size: 1px;
    color: #2196f3;
}

.checkbox--disabled {
    color: var(--disabled);
}

.checkbox__control {
    display: inline-grid;
    width: 13px;
    height: 13px;
    /* border-radius: 0.25em; */
    border: 2px solid currentColor;
}

.checkbox__control svg {
    transition: transform 0.1s ease-in 25ms;
    transform: scale(0);
    transform-origin: bottom left;
}

.checkbox__input {
    display: grid;
    grid-template-areas: "checkbox";
}

.checkbox__input>* {
    grid-area: checkbox;
}

.checkbox__input input {
    opacity: 0;
    width: 22px;
    height: 22px;
}

.checkbox__input input:focus+.checkbox__control {
    box-shadow: 0 0 0 0.05em #fff, 0 0 0.15em 0.1em currentColor;
}

.checkbox__input input:checked+.checkbox__control svg {
    transform: scale(1);
}

.checkbox__input input:disabled+.checkbox__control {
    color: var(--disabled);
}

.input {
    border-radius: 7px;
    font-size: 15px;
    color: #3e3d3d;
}

span.urls {
    clear: both;
    display: block;
    font-size: 12px;
    font-weight: 100;
    margin-top: 4px;
}

span.titles {
    font-weight: bold;
    color: #3b7cff;
    font-size: 13px;
}

button.btnpag {
    background: #3b7cff;
    width: 100%;
    padding: 15px 5px;
    color: #FFF;
    border: 0px;
    border-radius: 6px;
}

ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

ul .booking-card {
    position: relative;
    width: 300px;
    display: flex;
    flex: 0 0 300px;
    flex-direction: column;
    margin: 20px 11px;
    margin-bottom: 30px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
    background-position: center center;
    background-size: cover;
    text-align: center;
    color: #0a4870;
    transition: 0.3s;
}

ul .booking-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 72, 112, 0);
    transition: 0.3s;
}

ul .booking-card .book-container {
    height: 80px;
}

ul .booking-card .book-container .content {
    position: relative;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    transform: translateY(-200px);
    transition: 0.3s;
}

ul .booking-card .book-container .content .btn {
    border: 3px solid white;
    padding: 10px 15px;
    background: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.3em;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

ul .booking-card .book-container .content .btn:hover {
    background: white;
    border: 0px solid white;
    color: #0a4870;
}

ul .booking-card .informations-container {
    flex: 1 0 auto;
    padding: 20px;
    background: #f0f0f0;
    transform: translateY(206px);
    transition: 0.3s;
}

ul .booking-card .informations-container .title {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 1.1em;
}

ul .booking-card .informations-container .title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    width: 50px;
    margin: auto;
    background: #0a4870;
}

ul .booking-card .informations-container .price {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

ul .booking-card .informations-container .price .icon {
    margin-right: 10px;
}

ul .booking-card .informations-container .more-information {
    opacity: 0;
    transition: 0.3s;
}

ul .booking-card .informations-container .more-information .info-and-date-container {
    display: flex;
}

ul .booking-card .informations-container .more-information .info-and-date-container .box {
    flex: 1 0;
    text-align: left;
    padding: 15px;
    margin-top: 20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background: white;
    font-weight: bold;
    font-size: 0.9em;
}

ul .booking-card .informations-container .more-information .info-and-date-container .box .icon {
    margin-bottom: 5px;
}

ul .booking-card .informations-container .more-information .info-and-date-container .box.info {
    color: #ec992c;
    margin-right: 10px;
}

ul .booking-card .informations-container .more-information .disclaimer {
    margin-top: 20px;
    font-size: 0.8em;
    color: #7d7d7d;
}

ul .booking-card:hover::before {
    background: rgba(10, 72, 112, 0.6);
}

ul .booking-card:hover .book-container .content {
    opacity: 1;
    transform: translateY(0px);
}

ul .booking-card:hover .informations-container {
    transform: translateY(0px);
}

ul .booking-card:hover .informations-container .more-information {
    opacity: 1;
}

@media (max-width: 768px) {
    ul .booking-card::before {
        background: rgba(10, 72, 112, 0.6);
    }
    ul .booking-card .book-container .content {
        opacity: 1;
        transform: translateY(0px);
    }
    ul .booking-card .informations-container {
        transform: translateY(0px);
    }
    ul .booking-card .informations-container .more-information {
        opacity: 1;
    }
}

h1 {
    margin: 10px 20px;
}

input.fluid.button {
    background: #3b7cff;
    color: #fff;
}

a.btn-del.pull-right.refil {
    background: #3b7cff;
}

.btn-del {
    color: rgb(244 67 54);
    background: rgb(248 212 212);
    padding: 5px 8px;
    border-radius: 10px;
    margin: 0 10px 10px;
    cursor: pointer;
}

.btn-del-boll {
    background: #F44336;
    color: #FFF;
    border-radius: 50%;
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

a.btn-alt.arredondado.pull-right {
    margin-top: 9px;
}

.arredondado {
    border-radius: 100px;
    padding: 12px 15px !important;
}

.arredondado:hover,
a.section-title.abas:hover,
a.btn-del.pull-right.refil:hover {
    background: #f3f3f3;
    color: #666;
}

.section-desc {
    background: #fff;
    border-radius: 5px;
    font-size: 14px;
    box-shadow: 0 0 1px 0 rgb(59 89 178 / 8%), 0 4px 14px rgb(59 89 178 / 6%);
}

.section-desc-text {
    padding: 20px;
}

h2 label.form-label {
    font-size: 1.1em !important;
}

.arredondado i {
    margin-right: 5px;
}

.btn-alt {
    background: #3b7cff;
    color: #FFF;
    font-size: 14px;
    padding: 8px;
    cursor: pointer;
}

a.btn-alt.CancelPix {
    max-width: 75px;
    display: inline-block;
    cursor: pointer;
}

.section-title {
    background: #3b7cff;
    color: #ffffff;
    padding: 19px 15px !important;
    text-align: center;
    font-size: 14px;
    height: auto;
    line-height: 2px;
    margin: 10px 0 10px 10px;
}

a.section-title.abas {
    background: #3b7cff;
    color: #ffffff;
    padding: 19px 15px !important;
    text-align: center;
    font-size: 14px;
    height: auto;
    line-height: 2px;
    margin: 10px 0 10px 10px;
}

.section-content,
.section {
    box-shadow: 0 0 1px 0 rgb(59 89 178 / 8%), 0 4px 14px rgb(59 89 178 / 6%);
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
    box-shadow: none;
}

td {
    padding: 20px 15px !important;
    background-color: #fff;
    font-size: 15px;
    line-height: 18px;
    color: #9b9b9b;
    font-size: 13px !important;
    text-align: left;
    vertical-align: top;
    font-weight: 300;
}

td.botoes {
    min-width: 145px;
}

th {
    padding: 10px 10px 7px !important;
    background-color: #3b7cff;
    font-size: 13px !important;
    line-height: unset !important;
    color: #ffffff;
    text-align: left;
    font-weight: 200 !important;
    vertical-align: middle !important;
}

tr:nth-child(even) {
    background-color: #dddddd;
}

div.tab {
    display: none;
}

div.tab:target {
    display: block;
}

:target div.tab {
    display: block;
}

:target div.tab+div.tab {
    display: none;
}

.af-tab-heads {
    padding: 0 25px;
    font-size: 14px;
    line-height: 17px;
    background-color: #3b7cff;
    color: #fff;
}

.af-tab-heads a {
    float: left;
    margin-top: 15px;
    margin-right: 40px;
    padding: 10px 0;
    position: relative;
    color: inherit;
}

.af-tab-heads a:last-child {
    margin-right: 0;
}

.af-tab-heads a.active:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ff3d3d;
    content: "";
}


/* Log list */

.af-log-list-item {
    position: relative;
    padding: 12px 44px 12px 128px;
    border-bottom: 1px solid #e0e0e0;
    -webkit-transition: all ease 0.2s;
    -moz-transition: all ease 0.2s;
    transition: all ease 0.2s;
}

.af-log-list-item:hover {
    background-color: rgba(59, 124, 255, 0.1);
}

.af-log-list-item .circle {
    position: absolute;
    top: 12px;
    left: 44px;
    width: 60px;
    height: 60px;
    background-color: #e0e0e0;
    border-radius: 50%;
    overflow: hidden;
    -webkit-transition: all ease 0.2s;
    -moz-transition: all ease 0.2s;
    transition: all ease 0.2s;
}

.af-log-list-item .circle .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background-position: center;
    background-size: cover;
}

.af-log-list-item .circle .text {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 18px;
    margin-top: -9px;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
}

.af-log-list-item.error .circle {
    color: #fff;
    background-color: #ff3d3d;
}

.af-log-list-item .inner {
    position: relative;
    padding-right: 256px;
    min-height: 60px;
    font-size: 14px;
    line-height: 17px;
    color: #212121;
}

.af-log-list-item .action {
    margin-top: 9px;
    line-height: 22px;
}

.af-log-list-item .action a {
    font-weight: 500;
    color: inherit;
}

.af-log-list-item .action a:hover {
    color: #3b7cff;
}

.af-log-list-item .action .date {
    margin-left: 5px;
    font-size: 12px;
    color: #9b9b9b;
}

.af-log-list-item .action .error-details {
    margin: 3px 0 10px;
    font-size: 12px;
    line-height: 16px;
    font-family: monospace;
}

.af-log-list-item .meta {
    margin-top: 3px;
    font-size: 12px;
    color: #9b9b9b;
}

.af-log-list-item .meta .icon {
    color: #3b7cff;
}

.af-log-list-item .meta:hover {
    color: #212121;
}

.af-log-list-item .buttons {
    position: absolute;
    top: 9px;
    right: 0;
}

.af-log-list-item .buttons .button {
    float: left;
    margin-right: 12px;
}

.af-log-list-item .buttons .button:last-child {
    margin-right: 0;
}

@media screen and (max-width: 768px) {
    .af-log-list-item {
        padding: 12px 26px 12px 110px;
    }
    .af-log-list-item .circle {
        left: 28px;
    }
    .af-log-list-item .inner {
        padding-right: 0;
    }
    .af-log-list-item .buttons {
        position: relative;
        top: 0;
        margin-top: 14px;
    }
}

.af-next-schedule,
.af-amount-of-action {
    padding: 12px;
    text-align: center;
    font-size: 12px;
    color: #9b9b9b;
    border-bottom: 1px solid #e0e0e0;
}

.btn-modal {
    background: #3949AB;
    color: #FFF;
    font-weight: 200;
    padding: 11px 20px;
    border-radius: 5px;
}


/* init modal */

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s 0.5s ease-in-out;
    transition: all 0.5s 0.5s ease-in-out;
}

.modal-head {
    background: #f30606;
    color: #FFF;
    margin: -10px;
    padding: 19px 10px;
    font-weight: 200;
    border-bottom: 2px solid #00000026;
    position: relative;
}

.modal-content {
    padding: 10px;
    max-width: 600px;
    min-width: 360px;
    max-height: 85%;
    overflow: auto;
    position: absolute;
    top: 5%;
    left: 50%;
    z-index: 2;
    opacity: 0;
    border-radius: 3px;
    background: #fff;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.modal-content img {
    display: block;
    width: 100%;
    margin: 10px 0 0;
}

.modal-content p {
    padding-top: 10px;
    text-align: justify;
}

.modal-close2 {
    position: absolute;
    right: 10px;
    font-size: 25px;
    top: 15px;
}

.modal-close {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

input[id*="modal_"] {
    position: fixed;
    left: -9999px;
    top: 50%;
    opacity: 0;
}

input[id*="modal_"]:checked+div.modal {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 0s;
    -ms-transition-delay: 0s;
    transition-delay: 0s;
}

input[id*="modal_"]:checked+div.modal .modal-content {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    -webkit-transition-delay: 0.5s;
    -ms-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

@media screen and (max-width: 767px) {
    .modal-content {
        /*
    padding: 10px 5%;
    min-width: 88%;
	*/
        padding: 10px;
        min-width: 80%;
    }
}

.copis {
    background: #10b568;
    color: #FFF;
    font-size: 14px;
    font-weight: 300;
    padding: 5px 10px;
    float: left;
    border-radius: 6px;
    margin: 0 10px;
    cursor: pointer;
}

.copis2 {
    background: #10b568;
    color: #FFF;
    font-size: 14px;
    font-weight: 300;
    padding: 5px 10px;
    float: left;
    border-radius: 6px;
    margin: 0 10px;
    cursor: pointer;
}

.pp {
    font-weight: 200;
    margin: 0 0 12px 0;
    padding: 0;
}

.pp strong {
    color: #3949ab;
}

.pp-s {
    font-weight: 200;
    margin: 0 0 12px 0;
    padding: 0;
}

.pp-s strong {
    color: #212121;
}

.mod {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    -webkit-transition: all 0.5s 0.5s ease-in-out;
    transition: all 0.5s 0.5s ease-in-out;
    background: #0000005c;
}

.cav {
    padding: 10px;
    max-width: 600px;
    min-width: 360px;
    max-height: 85%;
    overflow: auto;
    position: absolute;
    top: 5%;
    left: 50%;
    z-index: 2;
    /*opacity: 0;*/
    border-radius: 3px;
    background: #fff;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

td {
    padding: 21px 20px !important;
    background-color: #fff;
    font-size: 15px;
    line-height: 18px;
    color: #9b9b9b;
    text-align: left;
    vertical-align: top;
    font-weight: 300;
}

th {
    padding: 12px 10px 9px !important;
    background-color: #3b7cff;
    font-size: 13px !important;
    line-height: unset !important;
    color: #ffffff;
    text-align: left;
    font-weight: 200;
    vertical-align: middle !important;
}


/*
.modal-close {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0,0,0,0.5);
}

.modal-close:after {
    content: "X";
    float: right;
    margin: 5px 5px 0 0;
    width: 35px;
    height: 35px;
    position: relative;
    z-index: 3;
    font-size: 24px;
    text-align: center;
    color: #FFF;
    font-family: cursive;
    line-height: 35px;
    cursor: pointer;
    background-color: rgb(233 30 99);
}
*/

.dropdown-left {
    position: relative;
    float: right;
    margin: -50px 6px;
}

iframe {
    width: 100%;
    height: auto;
    min-height: 395px;
    border-radius: 7px;
}

input.fluid.button.pagamento {
    background: #f00;
    color: #fff;
    font-weight: bold;
    border: 5px solid #f30606;
}

.color-green {
    background: rgb(200, 250, 205);
    color: rgb(0, 82, 73);
}

.form-result {
    display: none;
}

.form-result>.success {
    font-size: 15px;
    text-align: center;
    line-height: 22px;
    border-radius: 7px;
    position: relative;
    padding: 15px 20px;
    background: linear-gradient(45deg, #00b386, #00cc99, #00e6ac);
    color: #fff;
    font-weight: bold;
    width: auto;
    max-width: 500px;
    margin: 0 auto;
    margin-top: -20px;
    margin-bottom: 20px;
    box-shadow: 0px 5px 30px 5px rgb(0 0 0 / 10%);
}

.form-result>.error {
    font-size: 15px;
    text-align: center;
    line-height: 22px;
    border-radius: 7px;
    position: relative;
    padding: 15px 20px;
    background: linear-gradient(45deg, #ff0000, #f30606, #e30707);
    color: #fff;
    font-weight: bold;
    width: auto;
    max-width: 500px;
    margin: 0 auto;
    margin-top: -20px;
    margin-bottom: 20px;
    box-shadow: 0px 5px 30px 5px rgb(0 0 0 / 10%);
}

.form-result a {
    text-decoration: underline;
}

.form-result>div {
    position: relative;
    padding-left: 28px;
}

.form-result>div:last-child {
    margin-bottom: ;
}

.form-result .icon {
    position: absolute;
    margin-left: 0;
    top: -1px;
    font-size: 18px;
}

.form-result>.error .icon,
.form-result>.success .icon {
    padding: 17px 10px;
    margin-left: 0;
    color: #fff;
    font-weight: bold;
}

.form-result>.info .icon {
    color: #fff;
    font-weight: bold;
}

label.highlights-button.hopper.btn-del.ac-btn.whatsapp {
    background: #2ec12c;
}

span.mdi.mdi-whatsapp {
    margin-left: 3px;
    color: #fff;
}

span.mdi.mdi-delete {
    color: #fff;
    margin: 0 3px;
}

span.sli.sli-wallet {
    margin-left: 3px;
}

span.quant {
    margin-top: 4px;
}

.voltar {
    position: relative;
    top: -10px;
    left: 20px;
    font-size: 20px;
}

.voltar a {
    color: #fff;
}

img#imgqrcode {
    width: 100%;
}

section.section.details {
    padding: 0 10px 5px;
}

p.pp.title {
    font-size: 24px;
    font-weight: 600;
}

button.btn.pedido {
    width: 100%;
    height: 45px;
    cursor: pointer;
    border: none;
    border-radius: 7px;
    background-color: #ffffff;
    font-weight: bold;
}

button.btn.pedido:hover {
    background-color: #f30606;
    color: #ffffff;
}

a.btn.pedido {
    width: 100% !important;
    height: 45px;
    text-align: center;
    cursor: pointer;
    border: none;
    border-radius: 7px;
    background-color: #ffffff;
    font-weight: bold;
    line-height: 45px;
    display: block;
}

a.btn.pedido2 {
    width: 100% !important;
    height: 45px;
    text-align: center;
    cursor: pointer;
    border: none;
    border-radius: 7px;
    background-color: #bdb6b6;
    font-weight: bold;
    line-height: 45px;
    display: block;
}

a.btn.pedido:hover {
    background-color: #f30606;
    color: #ffffff;
}

.balance {
    float: right;
    text-align: right;
    padding: 0 5px;
}

.balance span {
    background: rgb(200, 250, 205);
    color: rgb(0, 82, 73);
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 14px;
    border: none;
}

.balance span.txt {
    background: none;
    color: #212121;
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 14px;
    border: none;
}

label.highlights-button.hopper.btn-del {
    margin: 5px;
}

section.section.status {
    padding: 0 15px;
}

label.highlights-button.hopper.btn-del.ac-btn.lixeira {
    background: #f44336;
}
#ListaItens a {
    display: inline-block;
    width: 100%;
    width: 100%;
    text-align: center;
    margin-top: -5px;
}