@font-face {
    font-family: Aeonik;
    src: url(../css/fonts/Aeonik-Pro/Aeonik\ Pro\ Black.ttf);
    font-weight: 900;
}
@font-face {
    font-family: Aeonik;
    src: url(../css/fonts/Aeonik-Pro/Aeonik\ Pro\ Black\ Italic.ttf);
    font-weight: 900;
    font-style: italic;
}
@font-face {
    font-family: Aeonik;
    src: url(../css/fonts/Aeonik-Pro/Aeonik\ Pro\ Bold.ttf);
    font-weight: 700;
}
@font-face {
    font-family: Aeonik;
    src: url(../css/fonts/Aeonik-Pro/Aeonik\ Pro\ Bold\ Italic.ttf);
    font-weight: 700;
    font-style: italic;
}
@font-face {
    font-family: Aeonik;
    src: url(../css/fonts/Aeonik-Pro/Aeonik\ Pro\ Light.ttf);
    font-weight: 300;
}
@font-face {
    font-family: Aeonik;
    src: url(../css/fonts/Aeonik-Pro/Aeonik\ Pro\ Light\ Italic.ttf);
    font-weight: 300;
    font-style: italic;
}
@font-face {
    font-family: Aeonik;
    src: url(../css/fonts/Aeonik-Pro/Aeonik\ Pro\ Medium.ttf);
    font-weight: 500;
}
@font-face {
    font-family: Aeonik;
    src: url(../css/fonts/Aeonik-Pro/Aeonik\ Pro\ Medium\ Italic.ttf);
    font-weight: 500;
    font-style: italic;
}
@font-face {
    font-family: Aeonik;
    src: url(../css/fonts/Aeonik-Pro/Aeonik\ Pro\ Regular.ttf);
    font-weight: 400;
}
@font-face {
    font-family: Aeonik;
    src: url(../css/fonts/Aeonik-Pro/Aeonik\ Pro\ Regular\ Italic.ttf);
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: Aeonik;
    src: url(../css/fonts/Aeonik-Pro/Aeonik\ Pro\ Thin.ttf);
    font-weight: 100;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Aeonik, sans-serif;
}

.input-group label {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #15161A;
    letter-spacing: 0;
    line-height: 30px;
    margin-bottom: 5px;
}
.input-group input, .input-group select {
    display: block;
    width: 100%;
    height: 60px;
    border-radius: 8px;
    border: 1px solid #C0C6CF;
    background-color: transparent;
    font-size: 14px;
    color: #15161A;
    font-weight: 500;
    padding-inline: 30px;
}
.input-group input::-moz-placeholder {
    color: #9AADB5;
}
.input-group input::placeholder {
    color: #9AADB5;
}

.input-group-check {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.input-group-check div {
    display: flex;
    align-items: center;
    gap: 16px;
}
.input-group-check div input {
    -webkit-appearance: unset;
    -moz-appearance: unset;
    appearance: unset;
    width: 24px;
    height: 24px;
    border-radius: 3px;
    border: 1px solid #C0C6CF;
    background-image: url(../images/icon-check.svg);
    background-position: top center;
    transition: 200ms;
    cursor: pointer;
    background-repeat: no-repeat;
}
.input-group-check div input:checked {
    background-position: center center;
    background-color: #EA3309;
    border-color: #EA3309;
}
.input-group-check div label {
    font-size: 14px;
    font-weight: 500;
    color: #0A0A0A;
    cursor: pointer;
}
.input-group-check a {
    font-size: 14px;
    font-weight: 500;
    color: #EA3309;
    letter-spacing: 0;
    transition: 200ms;
}
.input-group-check a:hover {
    color: #ff4405;
}

.btn-gray,
.btn-primary {
    background: #EA3309;
    box-shadow: 0px 49px 79px 36px rgba(202, 209, 220, 0.1);
    border-radius: 8px;
    cursor: pointer;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    border: 0;
    width: 100%;
    transition: 200ms;
    text-decoration: none;
}
.btn-gray.icon,
.btn-primary.icon {
    gap: 8px;
}
.btn-gray:hover,
.btn-primary:hover {
    background: #ff4405;
}
@media screen and (max-width: 769px) {
    .btn-gray,
    .btn-primary {
        font-size: 12px;
    }
}

.btn-gray {
    background-color: #F1F1F1;
    color: #A9A9A9;
    width: -moz-max-content;
    width: max-content;
    padding-inline: 33px;
}

.btn-ghost {
    height: 50px;
    padding-inline: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #EA3309;
    border: 1px solid #EA3309;
    border-radius: 8px;
    text-decoration: none;
    transition: 200ms;
    cursor: pointer;
}
.btn-ghost:hover {
    background-color: rgba(234, 50, 9, 0.2352941176);
}

.dash main {
    display: grid;
    grid-template-columns: 300px 1fr;
    height: 100vh;
}
.dash main > aside {
    height: 100%;
    border-right: 3px solid #F3F4F7;
    padding-top: 13px;
    padding-inline: 24px;
}
.dash main > aside .logo {
    padding: 20px 28px;
    background-color: #EA3309;
    border-radius: 10px;
    margin-bottom: 32px;
}
.dash main > aside .logo img {
    display: block;
    width: 100%;
}
.dash main > aside nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.dash main > aside nav a {
    padding: 16px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: 200ms;
    border-radius: 10px;
}
.dash main > aside nav a svg.active {
    display: none;
}
.dash main > aside nav a span {
    color: #959DB4;
    font-size: 14px;
    font-weight: 500;
}
.dash main > aside nav a.active, .dash main > aside nav a:hover {
    background-color: #FBD6CE;
}
.dash main > aside nav a.active svg, .dash main > aside nav a:hover svg {
    display: none;
}
.dash main > aside nav a.active svg.active, .dash main > aside nav a:hover svg.active {
    display: block;
}
.dash main > aside nav a.active span, .dash main > aside nav a:hover span {
    color: #EA3309;
}
.dash main > aside nav .subitem-container > a {
    justify-content: space-between;
}
.dash main > aside nav .subitem-container > a div {
    display: flex;
    align-items: center;
    gap: 16px;
}
.dash main > aside nav .subitem-container ul {
    list-style: none;
    padding-left: 50px;
    margin-top: 14px;
    max-height: 0;
    overflow: hidden;
    transition: 200ms;
}
.dash main > aside nav .subitem-container ul li + li {
    margin-top: 16px;
}
.dash main > aside nav .subitem-container ul li a {
    padding-block: 0;
    font-size: 14px;
    font-weight: 400;
    color: #959DB4;
    transition: 200ms;
}
.dash main > aside nav .subitem-container ul li a.active, .dash main > aside nav .subitem-container ul li a:hover {
    background-color: transparent;
    color: #EA3309;
}
.dash main > aside nav .subitem-container.active > a {
    background-color: #FBD6CE;
}
.dash main > aside nav .subitem-container.active > a svg {
    display: none;
}
.dash main > aside nav .subitem-container.active > a svg.active {
    display: block;
}
.dash main > aside nav .subitem-container.active > a span {
    color: #EA3309;
}
.dash main > aside nav .subitem-container.active > a > svg {
    transform: scale(-1);
}
.dash main > aside nav .subitem-container.active ul {
    max-height: 1000px;
}
.dash main > section {
    height: 100vh;
    background-color: #F7F8FB;
    position: relative;
    overflow-y: auto;
    padding-top: 78px;
    padding-left: 32px;
    padding-right: 24px;
}
.dash main > section > .top {
    background-color: #FFFFFF;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 24px;
    padding-left: 34px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 3;
    width: calc(100% - 300px);
}
.dash main > section > .top .logo-mobile {
    display: none;
}
.dash main > section > .top form {
    height: 100%;
    display: flex;
    align-items: center;
}
.dash main > section > .top form input {
    background-image: url(../images/icon-search.svg);
    background-repeat: no-repeat;
    background-position: center left;
    padding-left: 42px;
    height: 40px;
    outline: 0;
    border: 0;
    font-size: 20px;
    font-weight: 400;
    color: #15161A;
}
.dash main > section > .top form input::-moz-placeholder {
    color: #A3AABE;
}
.dash main > section > .top form input::placeholder {
    color: #A3AABE;
}
.dash main > section > .top .box-right {
    display: flex;
    align-items: center;
    gap: 30px;
}
.dash main > section > .top .box-right .btn-notification {
    cursor: pointer;
    background-color: transparent;
    font-size: 0;
    position: relative;
    border: 0;
}
.dash main > section > .top .box-right .btn-notification::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 99px;
    border: 2px solid #FFFFFF;
    background-color: #E70606;
    position: absolute;
    top: -1px;
    right: -1px;
}

.dash main > section > .top .box-right .btn-notification.vazio::before {
    display: none;
}

.dash main > section > .top .box-right .btn-loggout {
    display: flex;
    align-items: center;
    border: 1px solid #D2D5DF;
    border-radius: 10px;
    padding: 11px 15px;
    text-decoration: none;
}
.dash main > section > .top .box-right .btn-loggout img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    margin-right: 8px;
}
.dash main > section > .top .box-right .btn-loggout div span {
    display: block;
}
.dash main > section > .top .box-right .btn-loggout div span.name {
    font-size: 14px;
    font-weight: 500;
    color: #0A0A0A;
}
.dash main > section > .top .box-right .btn-loggout div span.email {
    font-size: 12px;
    font-weight: 500;
    color: #A3AABE;
}
.dash main > section > .top .box-right .btn-loggout svg {
    margin-left: 32px;
}
.dash main > section > .top .box-right .btn-menu-mobile {
    display: none;
}
.dash main .btn-calendar {
    display: none;
}
@media screen and (max-width: 1310px) {
    .dash main {
        display: block;
        height: auto;
    }
    .dash main > aside {
        max-width: 300px;
        position: absolute;
        left: 0;
        bottom: 0;
        top: 0;
        transform: translateX(-100%);
    }
    .dash main > section > .top {
        width: 100%;
        justify-content: space-between;
        background-color: #F7F8FB;
    }
    .dash main > section > .top .logo-mobile {
        display: block;
    }
    .dash main > section > .top form {
        display: none;
    }
    .dash main > section > .top .box-right {
        gap: 24px;
    }
    .dash main > section > .top .box-right .btn-loggout {
        display: none;
    }
    .dash main > section > .top .box-right .btn-menu-mobile {
        width: 18px;
        height: 16px;
        position: relative;
        display: block;
    }
    .dash main > section > .top .box-right .btn-menu-mobile span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #0A0A0A;
        border-radius: 62px;
        position: absolute;
        transition: 200ms;
    }
    .dash main > section > .top .box-right .btn-menu-mobile span:nth-child(1) {
        top: 0;
    }
    .dash main > section > .top .box-right .btn-menu-mobile span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }
    .dash main > section > .top .box-right .btn-menu-mobile span:nth-child(3) {
        bottom: 0;
    }
    .dash main > section > .top .box-right .btn-menu-mobile.active span:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }
    .dash main > section > .top .box-right .btn-menu-mobile.active span:nth-child(2) {
        opacity: 0;
    }
    .dash main > section > .top .box-right .btn-menu-mobile.active span:nth-child(3) {
        top: 50%;
        transform: translateY(-50%) rotate(-45deg);
    }
}
@media screen and (max-width: 1024px) {
    .dash main > section {
        padding-inline: 20px;
    }
    .dash main > section > .top {
        padding-inline: 20px;
    }
    .dash main .btn-calendar {
        display: block;
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 40;
        width: 48px;
        height: 48px;
        background-color: transparent;
        border: 0;
        cursor: pointer;
    }
}

.group-title-1 h1 {
    font-size: 24px;
    font-weight: 700;
    color: #0A0A0A;
    line-height: 22px;
    margin-bottom: 8px;
}
.group-title-1 p {
    font-size: 16px;
    font-weight: 400;
    color: #6C7797;
    letter-spacing: 0;
    line-height: 22px;
}
@media screen and (max-width: 769px) {
    .group-title-1 h1 {
        font-size: 20px;
        margin-bottom: 4px;
    }
    .group-title-1 p {
        font-size: 12px;
    }
}

.group-title-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.group-title-2 div h1 {
    font-size: 24px;
    font-weight: 700;
    color: #0A0A0A;
    line-height: 22px;
    margin-bottom: 8px;
}
.group-title-2 div p {
    font-size: 16px;
    font-weight: 400;
    color: #6C7797;
    letter-spacing: 0;
    line-height: 22px;
}
.group-title-2 div .status {
    height: 30px;
    padding-inline: 26px;
    border-radius: 40px;
    min-width: 106px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.group-title-2 div .status.pendding {
    background-color: rgba(247, 203, 25, 0.2);
    color: rgb(247, 203, 25);
}
.group-title-2 div .status.active {
    background-color: #E6EBFB;
    color: #0031CB;
}
.group-title-2 div .status.program {
    background-color: #FDE7D1;
    color: #F78819;
}
.group-title-2 div .status.cancel {
    background-color: #F5D2CC;
    color: #CB1E00;
}
.group-title-2 div .status.finish {
    background-color: #F2FBF7;
    color: #5FD7AA;
}
.group-title-2 .btn-primary {
    width: -moz-max-content;
    width: max-content;
    padding-inline: 30px;
}
.group-title-2 .box-filters-mobile {
    display: none;
}
@media screen and (max-width: 1024px) {
    .group-title-2 {
        border-bottom: 1px solid #D0D5E5;
        margin-bottom: 32px;
        padding-bottom: 32px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .group-title-2 > div {
        width: 100%;
    }
    .group-title-2 .btn-primary {
        font-size: 12px;
    }
    .group-title-2 .box-filters-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 8px;
        width: 100%;
    }
    .group-title-2 .box-filters-mobile .btn-filter {
        border: 1px solid #D2D5DF;
        border-radius: 10px;
        height: 48px;
        padding-inline: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background-color: transparent;
    }
    .group-title-2 .box-filters-mobile .btn-filter span {
        font-size: 12px;
        font-weight: 500;
        color: #5A6789;
    }
    .group-title-2 .box-filters-mobile .btn-order {
        border: none;
        height: 48px;
        padding-inline: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background-color: transparent;
    }
    .group-title-2 .box-filters-mobile .btn-order svg:last-of-type {
        margin-left: 22px;
    }
    .group-title-2 .box-filters-mobile .btn-order span {
        font-size: 12px;
        font-weight: 500;
        color: #0A0A0A;
        letter-spacing: -0.36px;
    }
}

.group-title-3 h1 {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 24px;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 8px;
}
.group-title-3 h1 .status {
    height: 30px;
    padding-inline: 26px;
    border-radius: 40px;
    min-width: 106px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.group-title-3 h1 .status.pendding {
    background-color: rgba(247, 203, 25, 0.2);
    color: rgb(247, 203, 25);
}
.group-title-3 h1 .status.active {
    background-color: #E6EBFB;
    color: #0031CB;
}
.group-title-3 h1 .status.program {
    background-color: #FDE7D1;
    color: #F78819;
}
.group-title-3 h1 .status.cancel {
    background-color: #F5D2CC;
    color: #CB1E00;
}
.group-title-3 h1 .status.finish {
    background-color: #F2FBF7;
    color: #5FD7AA;
}
.group-title-3 p {
    font-size: 16px;
    font-weight: 400;
    color: #6C7797;
}
@media screen and (max-width: 769px) {
    .group-title-3 h1 {
        font-size: 20px;
        margin-bottom: 4px;
    }
    .group-title-3 p {
        font-size: 12px;
    }
}

.group-title-4 h1 {
    font-size: 24px;
    font-weight: 700;
    color: #0A0A0A;
    margin-block: 32px;
}

.calendar {
    padding: 50px 40px;
    background-color: #FFFFFF;
    border-radius: 15px;
    position: sticky;
    top: 20px;
}
.calendar .calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.calendar .calendar-header h2 {
    font-size: 24px;
    font-weight: 500;
    color: #0A0A0A;
}
.calendar .calendar-header .buttons {
    display: flex;
    align-items: center;
    gap: 3px;
}
.calendar .calendar-header .buttons button {
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid #D9E1E7;
    border-radius: 7px;
    cursor: pointer;
}
.calendar .calendar-names-of-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 25px;
    text-align: center;
}
.calendar .calendar-names-of-days span {
    font-size: 12px;
    font-weight: 400;
    color: #0A0A0A;
}
.calendar .calendary-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    row-gap: 18px;
    margin-bottom: 50px;
}
.calendar .calendary-days span {
    font-size: 14px;
    font-weight: 400;
    color: #7F9FB8;
    text-align: center;
    border-radius: 20px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.calendar .calendary-days span.inicio{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.calendar .calendary-days span.meio{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.calendar .calendary-days span.fim{

    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.calendar .scheduled-reservations h2 {
    font-size: 16px;
    font-weight: 500;
    color: #384455;
    letter-spacing: 0;
    line-height: 22px;
    margin-bottom: 20px;
}
.calendar .scheduled-reservations > ul {
    margin-bottom: 50px;
}
.calendar .scheduled-reservations > ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.calendar .scheduled-reservations > ul li.header {
    padding-bottom: 5px;
}
.calendar .scheduled-reservations > ul li.header span {
    font-size: 12px;
    font-weight: 500;
    color: #7F9FB8;
}
.calendar .scheduled-reservations > ul li + li {
    padding-block: 15px;
    border-top: 1px solid #D9E1E7;
}
.calendar .scheduled-reservations > ul li span {
    font-size: 14px;
    font-weight: 500;
    color: #384455;
}
.calendar .legends h3 {
    font-size: 12px;
    font-weight: 500;
    color: #0A0A0A;
    letter-spacing: 0;
    line-height: 22px;
    margin-bottom: 3px;
}
.calendar .legends ul {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.calendar .legends ul li {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 400;
    color: #7F9FB8;
}
.calendar .legends ul li span {
    background-color: red;
    width: 6px;
    height: 6px;
    display: block;
    border-radius: 50%;
}
.calendar .legends ul li span.purple {
    background-color: #392F5A;
}
.calendar .legends ul li span.orange {
    background-color: #FF8811;
}
.calendar .legends ul li span.yellow {
    background-color: #F4D06F;
}
.calendar .legends ul li span.green {
    background-color: #9DD9D2;
}

.calendar .legends ul li span.black{
    background-color: #000;
}

.table-base {
    background: #FFFFFF;
    border: 1px solid #FCFBFD;
    box-shadow: 0px 4px 19.7px rgba(0, 0, 0, 0.03);
    border-radius: 15px;
    overflow: hidden;
    min-height: 350px;
}
.table-base .table-filters {
    padding-top: 25px;
    padding-bottom: 20px;
    padding-inline: 32px;
    background-color: #FFFFFF;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    display: flex;
    gap: 8px;
}
.table-base .table-filters .form-search {
    margin-right: auto;
    width: 215px;
}
.table-base .table-filters .form-search input {
    padding-inline: 45px;
    height: 100%;
    border: 1px solid #D2D5DF;
    border-radius: 10px;
    background-color: transparent;
    font-size: 14px;
    color: #0A0A0A;
    font-weight: 400;
    background-image: url(../images/icon-search-2.svg);
    background-position: center left 24px;
    background-repeat: no-repeat;
    background-size: 14px;
    line-height: 22px;
    display: block;
    width: 100%;
}
.table-base .table-filters .form-search input::-moz-placeholder {
    color: #A3AABE;
}
.table-base .table-filters .form-search input::placeholder {
    color: #A3AABE;
}
.table-base .table-filters .filters {
    display: flex;
    gap: 8px;
}
@media screen and (max-width: 1880px) {
    .table-base .table-filters {
        flex-direction: column;
    }
    .table-base .table-filters .form-search {
        height: 50px;
        width: 100%;
    }
    .table-base .table-filters .filters .input-group-select {
        width: 25%;
    }
}
@media screen and (max-width: 1600px) {
    .table-base .table-filters {
        flex-direction: column;
    }
    .table-base .table-filters .form-search {
        height: 50px;
        width: 100%;
    }
    .table-base .table-filters .filters {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .table-base .table-filters .filters .input-group-select {
        width: 100%;
    }
    .table-base .table-filters .filters .input-group-select > label svg {
        margin-left: auto;
    }
}
.table-base .table-header {
    padding: 16px 32px;
    background-color: #F7F8FB;
    display: grid;
    grid-template-columns: 26.91% 19.24% 17.72% 15.17% 15.64% 5.31%;
}

.bloqueio .table-base .table-header,
.bloqueio .table-base .table-body .line{
    grid-template-columns: 15% 16% 12% 31% 2%;
}

.table-base .table-header .col {
    display: flex;
    align-items: center;
    gap: 16px;
}
.table-base .table-header .col span {
    font-size: 12px;
    font-weight: 700;
    color: #5A6789;
    text-transform: uppercase;
}
.table-base .table-header .col .group-btn-order {
    cursor: pointer;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.table-base .table-header .col .group-btn-order button {
    font-size: 0;
    border: 0;
    background-color: transparent;
    cursor: pointer;
}

.table-base .table-header .col .group-btn-order.up .up svg path,
.table-base .table-header .col .group-btn-order.down .down svg path{
    stroke: #5A6789 !important;
}

.table-base .table-header .col:nth-child(3) {
    padding-right: 40px;
    justify-content: center;
}
.table-base .table-body {
    border-bottom: 1px solid #D0D5E5;
}
.table-base .table-body .line {
    display: grid;
    padding: 16px 32px;
    grid-template-columns: 26.91% 19.24% 17.72% 15.17% 15.64% 5.31%;
    padding-block: 20px;
    cursor: pointer;
}

.page-03-admin-reservas.dash:not(.bloqueio) .table-base .table-body .line,
.page-03-admin-reservas.dash:not(.bloqueio) .table-base .table-header 
{
  grid-template-columns: 13.91% 19.24% 19.72% 18.17% 18.17% 5.31%;
}
.table-base .table-body .line + .line {
    border-top: 1px solid #D0D5E5;
}
.table-base .table-body .line:hover {
    background-color: rgba(208, 213, 229, 0.1725490196);
}
.table-base .table-body .line .col {
    width: 100%;
    display: flex;
    align-items: center;
}
.table-base .table-body .line .col:nth-child(3) {
    padding-right: 40px;
}
.table-base .table-body .line .col:nth-child(3) .status {
    margin-inline: auto;
}
.table-base .table-body .line .col:last-of-type {
    justify-content: flex-end;
    display: flex;
    align-items: center;
}
.table-base .table-body .line .col:last-of-type button {
    font-size: 0;
    background-color: transparent;
    border: 0;
}
.table-base .table-body .line .col .status {
    height: 30px;
    padding-inline: 20px;
    border-radius: 40px;
    min-width: 106px;
    width: -moz-max-content;
    width: max-content;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.table-base .table-body .line .col .status.pendding {
    background-color: rgba(247, 203, 25, 0.2);
    color: rgb(247, 203, 25);
}
.table-base .table-body .line .col .status.active {
    background-color: #E6EBFB;
    color: #0031CB;
}
.table-base .table-body .line .col .status.program {
    background-color: #FDE7D1;
    color: #F78819;
}
.table-base .table-body .line .col .status.cancel {
    background-color: #F5D2CC;
    color: #CB1E00;
}
.table-base .table-body .line .col .status.finish {
    background-color: #F2FBF7;
    color: #5FD7AA;
}
.table-base .table-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-block: 30px;
    padding-right: 32px;
    gap: 7px;
}
.table-base .table-navigation a, .table-base .table-navigation .separator {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.table-base .table-navigation .pages {
    display: flex;
    align-items: center;
    gap: 12px;
}
.table-base .table-navigation .pages a {
    font-size: 12px;
    font-weight: 500;
    color: #0A0A0A;
    transition: 200ms;
    border-radius: 5px;
    line-height: 12px;
}
.table-base .table-navigation .pages a.active, .table-base .table-navigation .pages a:hover {
    color: #FFFFFF;
    background-color: #EA3309;
}
.table-base.table-docs .table-header {
    grid-template-columns: 32.22% 13.97% 15.37% 22.99% 12.71% 2.74%;
}
.table-base.table-docs .table-header .col:nth-child(3) {
    justify-content: flex-start;
}
.table-base.table-docs .table-body .line {
    grid-template-columns: 32.22% 13.97% 15.37% 22.99% 12.71% 2.74%;
    transition: 200ms;
}
.table-base.table-docs .table-body .line .col:nth-child(1) {
    display: flex;
    align-items: center;
    gap: 8px;
}
.table-base.table-docs .table-body .line .col:nth-child(1) svg {
    margin-top: -4px;
}
.table-base.table-docs .table-body .line .col:nth-child(3) {
    justify-content: flex-start;
}
.table-base.table-docs .table-body .line .col:last-of-type {
    display: flex;
    align-items: center;
    justify-content: center;
}
.table-base.table-docs .table-body .line .col span {
    font-size: 14px;
    color: #0A0A0A;
    letter-spacing: 0;
    font-weight: 500;
}
.table-base.table-docs .table-body .line .col .btn-doc {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: 200ms;
    padding: 5px;
}
.table-base.table-docs .table-body .line .col .btn-doc svg.active {
    display: none;
}
.table-base.table-docs .table-body .line .col .btn-doc span {
    font-size: 14px;
    font-weight: 500;
    color: #0A0A0A;
    border-bottom: 1px solid #0A0A0A;
    padding-bottom: 1px;
    transition: 200ms;
}
.table-base.table-docs .table-body .line .col .btn-doc:hover svg {
    display: none;
}
.table-base.table-docs .table-body .line .col .btn-doc:hover svg.active {
    display: block;
}
.table-base.table-docs .table-body .line .col .btn-doc:hover span {
    color: #EA3309;
    border-bottom: 1px solid #EA3309;
}
.table-base.table-docs .table-body .line .col .btn-edit svg.active {
    display: none;
}
.table-base.table-docs .table-body .line .col .btn-edit:hover svg {
    display: none;
}
.table-base.table-docs .table-body .line .col .btn-edit:hover svg.active {
    display: block;
}
.table-base.table-docs .table-body .line .col button {
    cursor: pointer;
    border: none;
}

.table-list-mobile {
    display: none;
}
.table-list-mobile .table-card-base {
    padding: 24px;
    border: 1px solid #D2D5DF;
    border-radius: 10px;
}
.table-list-mobile .table-card-base .title {
    font-size: 12px;
    font-weight: 700;
    color: #5A6789;
    text-transform: uppercase;
}
.table-list-mobile .table-card-base .top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 42px;
}
.table-list-mobile .table-card-base .top .status {
    height: 26px;
    padding-inline: 22px;
    border-radius: 40px;
    width: -moz-max-content;
    width: max-content;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.table-list-mobile .table-card-base .top .status.pendding {
    background-color: rgba(247, 203, 25, 0.2);
    color: rgb(247, 203, 25);
}
.table-list-mobile .table-card-base .top .status.active {
    background-color: #E6EBFB;
    color: #0031CB;
}
.table-list-mobile .table-card-base .top .status.program {
    background-color: #FDE7D1;
    color: #F78819;
}
.table-list-mobile .table-card-base .top .status.cancel {
    background-color: #F5D2CC;
    color: #CB1E00;
}
.table-list-mobile .table-card-base .top .status.finish {
    background-color: #F2FBF7;
    color: #5FD7AA;
}
.table-list-mobile .table-card-base .bottom {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.table-list-mobile .table-card-base .column-2 {
    display: flex;
    justify-content: space-between;
}
.table-list-mobile .table-card-base .column {
    width: -moz-max-content;
    width: max-content;
}
.table-list-mobile .table-card-base .column .title {
    display: block;
    line-height: 22px;
}
.table-list-mobile .table-card-base .column .text {
    font-size: 14px;
    font-weight: 500;
    color: #0A0A0A;
    line-height: 22px;
    max-width: 180px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.table-list-mobile .table-card-base .column .btn-more {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.table-list-mobile .table-card-base .column .btn-more span {
    font-size: 14px;
    font-weight: 400;
    color: #0A0A0A;
    border-bottom: 1px solid #0A0A0A;
    padding-bottom: 1px;
}
.table-list-mobile .table-card-base .column .btn {
    text-decoration: none;
    background-color: transparent;
    font-size: 0;
    cursor: pointer;
    border: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    background-color: transparent;
    padding: 6px 8px;
    border-radius: 2px;
}
.table-list-mobile .table-card-base .column .btn span {
    margin-top: 4px;
    font-size: 10px;
    font-weight: 700;
    color: #0A0A0A;
    line-height: 100%;
    text-transform: uppercase;
}

@media screen AND (max-width: 1400px){
    .table-base .table-body .line,
    .table-base .table-header{
        padding: 16px 5px;
    }
    .table-base .table-body .line .col {
        font-size: 0.75rem;
    }
}

@media screen and (max-width: 1024px) {
    .table-list-mobile {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media screen and (max-width: 991px) {
    .table-base{
        min-height: 500px;
    }
    .table-base .table-filters .filters{
        display: flex;
        flex-wrap: wrap;
    }
    .btn-order{
        position: relative;
    }

    #filtroOrdem {
        position: absolute;
        top: 40px;
        background: #FFF;
        list-style: none;
        border-radius: 5px;
        border: solid 1px #CCC;
        z-index: 40;
    }

    #filtroOrdem li {
        padding: 0.3rem;
        padding-bottom: 0.3rem;
        border-bottom: solid 1px #CCC;
        margin-top: 0.3rem;
        margin-bottom: 0.3rem;
    }
    #filtroOrdem li:last-child{
        margin-bottom: 0;
    }

}

@media screen and (max-width: 769px) {
    .table-list-mobile {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .table-list-mobile .table-card-base .column {
        min-width: 90px;
    }
}

.main-menu-mobile {
    position: fixed;
    inset: 0;
    background-color: #FFFFFF;
    z-index: 10;
    display: none;
    flex-direction: column;
    padding: 70px 20px 32px;
    transform: translateX(100%);
    transition: 200ms;
}
.main-menu-mobile .btn-menu-mobile {
    width: 18px;
    height: 16px;
    position: absolute;
    display: block;
    top: 27px;
    right: 20px;
}
.main-menu-mobile .btn-menu-mobile span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #0A0A0A;
    border-radius: 62px;
    position: absolute;
    transition: 200ms;
}
.main-menu-mobile .btn-menu-mobile span:nth-child(1) {
    top: 0;
}
.main-menu-mobile .btn-menu-mobile span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}
.main-menu-mobile .btn-menu-mobile span:nth-child(3) {
    bottom: 0;
}
.main-menu-mobile .btn-menu-mobile span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.main-menu-mobile .btn-menu-mobile span:nth-child(2) {
    opacity: 0;
}
.main-menu-mobile .btn-menu-mobile span:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}
.main-menu-mobile > span {
    font-size: 32px;
    font-weight: 700;
    color: #161923;
    display: block;
    margin-bottom: 34px;
}
.main-menu-mobile nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-left: -12px;
    margin-bottom: auto;
}
.main-menu-mobile nav a {
    padding: 16px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: 200ms;
    border-radius: 10px;
}

.main-menu-mobile nav .menuPneu a{
    margin-left: 15px;
    color: #959DB4;
    font-size: 14px;
    font-weight: 500;
}

.main-menu-mobile nav a svg.active {
    display: none;
}
.main-menu-mobile nav a span {
    color: #959DB4;
    font-size: 14px;
    font-weight: 500;
}
.main-menu-mobile nav a.active, .main-menu-mobile nav a:hover {
    background-color: #FBD6CE;
}
.main-menu-mobile nav a.active svg, .main-menu-mobile nav a:hover svg {
    display: none;
}
.main-menu-mobile nav a.active svg.active, .main-menu-mobile nav a:hover svg.active {
    display: block;
}
.main-menu-mobile nav a.active span, .main-menu-mobile nav a:hover span {
    color: #EA3309;
}
.main-menu-mobile .btn-loggout {
    display: flex;
    align-items: center;
    border: 1px solid #D2D5DF;
    border-radius: 10px;
    padding: 11px 15px;
    text-decoration: none;
}
.main-menu-mobile .btn-loggout img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    margin-right: 8px;
}
.main-menu-mobile .btn-loggout div span {
    display: block;
}
.main-menu-mobile .btn-loggout div span.name {
    font-size: 14px;
    font-weight: 500;
    color: #0A0A0A;
}
.main-menu-mobile .btn-loggout div span.email {
    font-size: 12px;
    font-weight: 500;
    color: #A3AABE;
}
.main-menu-mobile .btn-loggout svg {
    margin-left: auto;
}
.main-menu-mobile.active {
    transform: translateX(0);
}
@media screen and (max-width: 1310px) {
    .main-menu-mobile {
        display: flex;
    }
}

.modal-notification {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    transform: translateX(100%);
    transition: 200ms;
}
.modal-notification .modal-content {
    margin-left: auto;
    width: 526px;
    height: 100vh;
    background: #FFFFFF;
    box-shadow: 0px 4px 19.7px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}
.modal-notification .modal-content header {
    padding-top: 48px;
    padding-inline: 48px;
    padding-bottom: 8px;
    background-color: #FFFFFF;
}
.modal-notification .modal-content header h2 {
    font-size: 20px;
    font-weight: 700;
    color: #0A0A0A;
}
.modal-notification .modal-content header .btn-close {
    width: 18px;
    height: 18px;
    font-size: 0;
    display: block;
    position: absolute;
    top: 50px;
    right: 48px;
    background-color: #FFFFFF;
    border: 0;
    cursor: pointer;
}
.modal-notification .modal-content header .btn-close span {
    display: block;
    width: 100%;
    height: 2.24px;
    background-color: #0A0A0A;
    position: absolute;
    transition: 200ms;
}
.modal-notification .modal-content header .btn-close span:nth-child(1) {
    top: 0px;
}
.modal-notification .modal-content header .btn-close span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}
.modal-notification .modal-content header .btn-close span:nth-child(3) {
    bottom: 0px;
}
.modal-notification .modal-content header .btn-close.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.modal-notification .modal-content header .btn-close.active span:nth-child(2) {
    opacity: 0;
}
.modal-notification .modal-content header .btn-close.active span:nth-child(3) {
    bottom: initial;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}
.modal-notification .modal-content section {
    padding-inline: 48px;
    flex: 1;
    overflow: auto;
    padding-bottom: 40px;
}
.modal-notification .modal-content section::-webkit-scrollbar {
    width: 3px;
}
.modal-notification .modal-content section::-webkit-scrollbar-thumb {
    background-color: #E70606;
}
.modal-notification .modal-content section::-webkit-scrollbar-track {
    background: rgba(234, 51, 9, 0.1);
}
.modal-notification .modal-content section .group-card + .group-card {
    margin-top: 32px;
}
.modal-notification .modal-content section .group-card .title {
    font-size: 12px;
    font-weight: 400;
    color: #6C7797;
    margin-bottom: 8px;
    line-height: 22px;
    text-transform: uppercase;
    display: block;
}
.modal-notification .modal-content section .group-card .card {
    padding: 20px;
    background-color: #F7F8FB;
    border-radius: 9px;
}
.modal-notification .modal-content section .group-card .card + .card {
    margin-top: 8px;
}
.modal-notification .modal-content section .group-card .card .text {
    margin-bottom: 16px;
    position: relative;
}
.modal-notification .modal-content section .group-card .card .text p {
    max-width: 84%;
    font-size: 12px;
    font-weight: 400;
    color: #0A0A0A;
}
.modal-notification .modal-content section .group-card .card .text p b {
    font-weight: 700;
}
.modal-notification .modal-content section .group-card .card .text .time {
    position: absolute;
    top: 3px;
    right: 0;
    font-size: 12px;
    font-weight: 400;
    color: #6C7797;
    padding-right: 19px;
}
.modal-notification .modal-content section .group-card .card .text .time.is-new::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background-color: #E70606;
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    right: 0;
    border-radius: 99px;
}
.modal-notification .modal-content section .group-card .card .btn-ghost {
    width: -moz-max-content;
    width: max-content;
    height: 42px;
    padding-inline: 32px;
}
.modal-notification .modal-content footer {
    height: 98px;
    padding-inline: 48px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid #D0D5E5;
}
.modal-notification .modal-content footer .btn-primary {
    padding-inline: 44px;
    width: -moz-max-content;
    width: max-content;
    font-size: 14px;
    height: 50px;
}
.modal-notification .modal-content footer .btn-ghost {
    flex: 1;
}
.modal-notification.active {
    transform: translateX(0);
}
.modal-notification.active .modal-content header .btn-close span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.modal-notification.active .modal-content header .btn-close span:nth-child(2) {
    opacity: 0;
}
.modal-notification.active .modal-content header .btn-close span:nth-child(3) {
    bottom: initial;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}
@media screen and (max-width: 993px) {
    .modal-notification .modal-content {
        width: 100%;
    }
    .modal-notification .modal-content header {
        padding-inline: 20px;
    }
    .modal-notification .modal-content header h2 {
        font-size: 32px;
    }
    .modal-notification .modal-content header .btn-close {
        right: 20px;
    }
    .modal-notification .modal-content section {
        padding-inline: 20px;
    }
    .modal-notification .modal-content footer {
        align-items: center;
        padding-top: 20px;
        flex-direction: column;
        height: 144px;
        padding-inline: 20px;
    }
    .modal-notification .modal-content footer .btn-primary {
        width: 100%;
        max-width: 400px;
    }
    .modal-notification .modal-content footer .btn-ghost {
        width: 100%;
        max-width: 400px;
        flex: initial;
    }
}

.modal-refuse-reservation {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    transition: 200ms;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
}
.modal-refuse-reservation .modal-content {
    width: 100%;
    max-width: 738px;
    background-color: #FFFFFF;
    border-radius: 20px;
    transform: translateY(100px);
    transition: 200ms;
    padding: 48px;
}
.modal-refuse-reservation .modal-content header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}
.modal-refuse-reservation .modal-content header h4 {
    font-size: 24px;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 6px;
    line-height: 100%;
}
.modal-refuse-reservation .modal-content header span {
    font-size: 16px;
    font-weight: 400;
    color: #6C7797;
    letter-spacing: 0;
    line-height: 22px;
}
.modal-refuse-reservation .modal-content header .btn-close {
    font-size: 0;
    cursor: pointer;
    background-color: transparent;
    border: 0;
}
.modal-refuse-reservation .modal-content form textarea {
    display: block;
    width: 100%;
    height: 278px;
    border: 1px solid #CFD5E5;
    border-radius: 16px;
    resize: none;
    padding: 24px 32px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 400;
    color: #0A0A0A;
}
.modal-refuse-reservation .modal-content form textarea::-moz-placeholder {
    color: #CFD5E5;
}
.modal-refuse-reservation .modal-content form textarea::placeholder {
    color: #CFD5E5;
}
.modal-refuse-reservation .modal-content form footer {
    display: flex;
    align-items: center;
    gap: 8px;
}
.modal-refuse-reservation .modal-content form footer .btn-primary {
    padding-inline: 64px;
    width: -moz-max-content;
    width: max-content;
}
.modal-refuse-reservation .modal-content form footer .btn-ghost {
    padding-inline: 64px;
    background-color: transparent;
    transition: 200ms;
}
.modal-refuse-reservation .modal-content form footer .btn-ghost:hover {
    background-color: rgba(234, 50, 9, 0.2352941176);
}
.modal-refuse-reservation.active {
    opacity: 1;
    visibility: visible;
}
.modal-refuse-reservation.active .modal-content {
    transform: translateY(0);
}
@media screen and (max-width: 993px) {
    .modal-refuse-reservation {
        align-items: flex-end;
    }
    .modal-refuse-reservation .modal-content {
        max-width: initial;
        width: 100%;
        position: static;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
        position: relative;
        padding-top: 110px;
        padding-inline: 20px;
    }
    .modal-refuse-reservation .modal-content::before {
        content: "";
        display: block;
        width: 48px;
        height: 6px;
        border-radius: 15px;
        background-color: #D9E1E7;
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
    }
    .modal-refuse-reservation .modal-content::after {
        content: "Agendar";
        border-bottom: 1px solid #D9E1E7;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        padding-top: 38px;
        padding-bottom: 25px;
        font-size: 20px;
        font-weight: 700;
        color: #0A0A0A;
        text-align: center;
    }
    .modal-refuse-reservation .modal-content header {
        position: relative;
    }
    .modal-refuse-reservation .modal-content header .btn-close {
        position: absolute;
        top: -74px;
        right: 0;
        z-index: 4;
    }
}

.input-group-select {
    position: relative;
}
.input-group-select > label {
    padding: 16px 24px;
    border: 1px solid #D2D5DF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    color: #A3AABE;
    cursor: pointer;
}
.input-group-select > label span {
    color: #5A6789;
    margin-left: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 62px;
}

nav .input-group-select > label span{
    max-width: 100%;
}

.input-group-select > label span br {
    display: none;
}
.input-group-select > label svg {
    margin-left: 32px;
}
.input-group-select .input-group-modal {
    display: none;
}
.input-group-select .input-group-modal {
    display: block;
    position: absolute;
    top: calc(100% + 8px);
    width: 100%;
    background-color: #FFFFFF;
    border: 1px solid #D2D5DF;
    border-radius: 10px;
    visibility: hidden;
    opacity: 0;
    transition: 200ms;
    z-index: 2;
}
.input-group-select .input-group-modal input[type=checkbox],
.input-group-select .input-group-modal input[type=radio]{
    -webkit-appearance: unset;
    -moz-appearance: unset;
    appearance: unset;
    width: 14px;
    height: 14px;
    border: 1px solid #0A0A0A;
    border-radius: 2px;
    cursor: pointer;
    background-image: url(../images/icon-check-2.svg);
    background-position: top -20px center;
    transition: 200ms;
    background-repeat: no-repeat;
}
.input-group-select .input-group-modal input[type=checkbox]:checked,
.input-group-select .input-group-modal input[type=radio]:checked
{
    background-position: center center;
    background-color: #EA3309;
    border-color: #EA3309;
}

.input-group-select .input-group-modal input[type=radio]{
    border-radius: 50%;
}

.page-22-colaborador-revisao-nova .input-group-select .input-group-modal input[type=checkbox],
.page-22-colaborador-revisao-nova .input-group-select .input-group-modal input[type=radio]{
    border-radius: 50%;
    min-width: 14px;
    min-height: 14px;
}
.novaAgenda textarea{
    display: block;
    width: 100%;
    width: 545px;
    padding: 14px 32px;
    background-color: #FFFFFF;
    border: 1px solid #CFD5E5;
    border-radius: 8px;
    height: 145px;
    resize: none;
    font-size: 14px;
    font-weight: 500;
    color: #0A0A0A;
}

.input-group-select .input-group-modal .line {
    transition: 200ms;
    cursor: pointer;
}
.input-group-select .input-group-modal .line:hover {
    background-color: rgba(231, 6, 6, 0.0705882353);
}
.input-group-select .input-group-modal .line input, .input-group-select .input-group-modal .line label {
    cursor: pointer;
}
.input-group-select .input-group-modal.modal-1 {
    padding-block: 12px;
}
.input-group-select .input-group-modal.modal-1 .line {
    padding-inline: 24px;
    padding-block: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}
.input-group-select .input-group-modal.modal-1 .line label {
    font-size: 14px;
    font-weight: 500;
    color: #0A0A0A;
    cursor: pointer;
}
.input-group-select .input-group-modal.modal-2 {
    padding-block: 12px;
    min-width: 280px;
}
.input-group-select .input-group-modal.modal-2 .line {
    padding-block: 8px;
    padding-inline: 24px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.input-group-select .input-group-modal.modal-2 .line input[type=checkbox] {
    margin-right: 16px;
}
.input-group-select .input-group-modal.modal-2 .line label {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    font-size: 12px;
    color: #0A0A0A;
}
.input-group-select .input-group-modal.modal-2 .line label .status {
    height: 30px;
    padding-inline: 20px;
    border-radius: 40px;
    min-width: 106px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.input-group-select .input-group-modal.modal-2 .line label .status.pendding {
    background-color: rgba(247, 203, 25, 0.2);
    color: rgb(247, 203, 25);
}
.input-group-select .input-group-modal.modal-2 .line label .status.active {
    background-color: #E6EBFB;
    color: #0031CB;
}
.input-group-select .input-group-modal.modal-2 .line label .status.program {
    background-color: #FDE7D1;
    color: #F78819;
}
.input-group-select .input-group-modal.modal-2 .line label .status.cancel {
    background-color: #F5D2CC;
    color: #CB1E00;
}
.input-group-select .input-group-modal.modal-2 .line label .status.finish {
    background-color: #F2FBF7;
    color: #5FD7AA;
}
.input-group-select .input-group-modal.modal-3 {
    padding: 28px 24px;
    width: 372px;
}
.input-group-select .input-group-modal.modal-3 .groups-radio {
    display: flex;
    align-items: center;
    gap: 38px;
    margin-bottom: 12px;
}
.input-group-select .input-group-modal.modal-3 .groups-radio div {
    display: flex;
    align-items: center;
    gap: 8px;
}
.input-group-select .input-group-modal.modal-3 .groups-radio div input[type=radio] {
    -webkit-appearance: unset;
    -moz-appearance: unset;
    appearance: unset;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #A3AABE;
    transition: 200ms;
    cursor: pointer;
    margin-top: -4px;
}
.input-group-select .input-group-modal.modal-3 .groups-radio div input[type=radio]:checked {
    border: 3px solid #FFFFFF;
    outline: 1px solid #EA3309;
    background-color: #EA3309;
}
.input-group-select .input-group-modal.modal-3 .groups-radio div input[type=radio]:checked + label {
    color: #0A0A0A;
}
.input-group-select .input-group-modal.modal-3 .groups-radio div label {
    font-size: 14px;
    font-weight: 500;
    color: #A3AABE;
    cursor: pointer;
    margin-bottom: 0;
}
.input-group-select .input-group-modal.modal-3 .input-group-date {
    border: 1px solid #D2D5DF;
    border-radius: 10px;
    padding: 11px 20px;
}
.input-group-select .input-group-modal.modal-3 .input-group-date label {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #5A6789;
    width: 100%;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.input-group-select .input-group-modal.modal-3 .input-group-date input {
    height: 22px;
    border: 0;
    background-color: transparent;
    border: 0;
    font-size: 14px;
    font-weight: 400;
    color: #0A0A0A;
    outline: 0;
    width: 100%;
}
.input-group-select .input-group-modal.modal-3 > .input-group-date {
    margin-bottom: 16px;
}
.input-group-select .input-group-modal.modal-3 .unique-date {
    display: none;
}
.input-group-select .input-group-modal.modal-3 .unique-date.active {
    display: block;
}
.input-group-select .input-group-modal.modal-3 .groups-inputs {
    display: none;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}
.input-group-select .input-group-modal.modal-3 .groups-inputs.active {
    display: grid;
}
.input-group-select .input-group-modal.modal-range-values {
    width: 372px;
    padding: 24px;
}
.input-group-select .input-group-modal.modal-range-values .box-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}
.input-group-select .input-group-modal.modal-range-values .box-values .input-group-custom {
    height: 54px;
    border: 1px solid #D2D5DF;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-inline: 24px;
}
.input-group-select .input-group-modal.modal-range-values .box-values .input-group-custom label {
    font-size: 12px;
    font-weight: 400;
    color: #5A6789;
    display: block;
    margin-bottom: 3px;
    text-transform: uppercase;
}
.input-group-select .input-group-modal.modal-range-values .box-values .input-group-custom input {
    flex: 1;
    font-size: 14px;
    font-weight: 400;
    color: #0A0A0A;
    width: 100%;
    display: block;
    border: 0;
    outline: 0;
}
.input-group-select .input-group-modal.modal-range-values .box-values .input-group-custom input::-moz-placeholder {
    color: #A3AABE;
}
.input-group-select .input-group-modal.modal-range-values .box-values .input-group-custom input::placeholder {
    color: #A3AABE;
}
.input-group-select .input-group-modal.modal-range-values .slider {
    height: 2px;
    position: relative;
    background: #D2D5DF;
    border-radius: 5px;
}
.input-group-select .input-group-modal.modal-range-values .slider .progress {
    height: 100%;
    left: 25%;
    right: 25%;
    position: absolute;
    border-radius: 5px;
    background: #EA3309;
}
.input-group-select .input-group-modal.modal-range-values .range-input {
    position: relative;
}
.input-group-select .input-group-modal.modal-range-values .range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -3.4px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.input-group-select .input-group-modal.modal-range-values input[type=range]::-webkit-slider-thumb {
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background: #EA3309;
    border: 2px solid #9B250A;
    pointer-events: auto;
    -webkit-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
.input-group-select .input-group-modal.modal-range-values input[type=range]::-moz-range-thumb {
    height: 14px;
    width: 14px;
    border: none;
    border-radius: 50%;
    background: #EA3309;
    border: 2px solid #9B250A;
    pointer-events: auto;
    -moz-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
.input-group-select .input-group-modal.modal-range-values .btn-primary {
    margin-top: 24px;
}
.input-group-select.show > label svg, .input-group-select.active > label svg {
    transform: scale(-1);
}
.input-group-select.show .input-group-modal, .input-group-select.active .input-group-modal {
    opacity: 1;
    visibility: visible;
}
.input-group-select.modal-right .input-group-modal {
    right: 0;
}
.input-group-select.image .input-group-modal .line .avatar {
    width: 24px;
    height: 24px;
    border-radius: 99px;
    background-position: center center;
    background-size: cover;
    background-color: #EA3309;
}
.input-group-select.image .input-group-modal .line label {
    display: flex;
    align-items: center;
    gap: 8px;
}
.input-group-select.image .input-group-modal .line label .text {
    margin: 0;
}
.input-group-select:nth-child(5) .input-group-modal {
    right: 0;
}

.input-group-select-custom {
    position: relative;
}
.input-group-select-custom > label {
    padding: 16px 24px;
    border: 1px solid #D2D5DF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    justify-content: space-between;
    color: #A3AABE;
    background-color: #FFFFFF;
    height: 50px;
}
.input-group-select-custom > label span {
    color: #5A6789;
    margin-left: 3px;
}
.input-group-select-custom > label svg {
    margin-left: 32px;
}
.input-group-select-custom .input-group-modal {
    display: none;
}
.input-group-select-custom .input-group-modal {
    display: block;
    position: absolute;
    top: calc(100% + 8px);
    width: 100%;
    background-color: #FFFFFF;
    border: 1px solid #D2D5DF;
    border-radius: 10px;
    visibility: hidden;
    opacity: 0;
    transition: 200ms;
    z-index: 2;
}
.input-group-select-custom .input-group-modal input[type=radio] {
    display: none;
}
.input-group-select-custom .input-group-modal input[type=radio]:checked + label {
    color: #EA3309;
}
.input-group-select-custom .input-group-modal.modal-1 {
    padding-block: 12px;
}
.input-group-select-custom .input-group-modal.modal-1 > .line {
    padding-inline: 24px;
    padding-block: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.input-group-select-custom .input-group-modal.modal-1 > .line:hover {
    background-color: rgba(127, 159, 184, 0.2823529412);
}
.input-group-select-custom .input-group-modal.modal-1 > .line label {
    font-size: 14px;
    font-weight: 500;
    color: #0A0A0A;
    cursor: pointer;
    display: flex;
    gap: 8px;
    align-items: center;
}
.input-group-select-custom .input-group-modal.modal-1 > .line label img {
    width: 24px;
    height: 24px;
}
.input-group-select-custom .input-group-modal.modal-1 > .line label span {
    line-height: 100%;
    margin-bottom: 0;
}
.input-group-select-custom.active .input-group-modal {
    opacity: 1;
    visibility: visible;
}
.input-group-select-custom:nth-child(5) .input-group-modal {
    right: 0;
}

.swiper-custom-button {
    padding-right: 15px;
    width: calc(100% + 15px);
}
.swiper-custom-button .swiper-button-prev::after,
.swiper-custom-button .swiper-button-next::after {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0A0A0A;
    font-size: 0;
    background-position: center center;
    background-repeat: no-repeat;
}
.swiper-custom-button .swiper-button-prev {
    left: initial;
    right: 34px;
}
.swiper-custom-button .swiper-button-prev::after {
    background-image: url(../images/swiper-button-arrow-prev.svg);
}
.swiper-custom-button .swiper-button-next {
    left: initial;
    right: 0;
}
.swiper-custom-button .swiper-button-next::after {
    background-image: url(../images/swiper-button-arrow-next.svg);
}
@media screen and (max-width: 1024px) {
    .swiper-custom-button {
        width: 100%;
        padding-right: 0;
    }
    .swiper-custom-button .swiper-button-next,
    .swiper-custom-button .swiper-button-prev {
        display: none;
    }
}

.flatpickr-calendar.noCalendar {
    width: 132px !important;
}

.modal-filters {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 4;
    visibility: hidden;
    opacity: 0;
    transition: 200ms;
}
.modal-filters .modal-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FFF;
    height: 80vh;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: 200ms;
}
.modal-filters .modal-content header {
    padding-top: 38px;
    padding-bottom: 24px;
    border-bottom: 1px solid #D9E1E7;
}
.modal-filters .modal-content header::before {
    content: "";
    display: block;
    width: 48px;
    height: 6px;
    border-radius: 15px;
    background-color: #D9E1E7;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}
.modal-filters .modal-content header span {
    display: block;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #0A0A0A;
}
.modal-filters .modal-content header .btn-close {
    position: absolute;
    top: 24px;
    right: 20px;
    background-color: transparent;
    font-size: 0;
    border: 0;
    cursor: pointer;
}
.modal-filters .modal-content form {
    padding-top: 24px;
    padding-inline: 20px;
    padding-bottom: 60px;
    flex: 1;
    background-color: #FFFFFF;
    overflow-y: auto;
}
.modal-filters .modal-content form .input-wrapper-select + .input-wrapper-select {
    margin-top: 24px;
}
.modal-filters .modal-content form .input-wrapper-select > label {
    font-size: 12px;
    font-weight: 400;
    color: #6C7797;
    line-height: 14px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}
.modal-filters .modal-content form .input-wrapper-select .input-group-select > label {
    justify-content: space-between;
}
.modal-filters .modal-content form .input-wrapper-select .input-group-select > label span {
    color: #0A0A0A;
    max-width: initial;
}
.modal-filters .modal-content form .input-wrapper-select .input-group-modal.modal-1 .line {
    padding: 10px 20px;
}
.modal-filters .modal-content form .input-wrapper-select .input-group-modal.modal-2 .line {
    padding: 5px 20px;
}
.modal-filters .modal-content form .input-wrapper-select .input-group-modal.modal-2 .line input[type=checkbox] {
    margin-right: 10px;
}
.modal-filters .modal-content form .input-wrapper-select .input-group-modal.modal-2 .line label .status {
    height: 20px;
    padding-inline: 10px;
    font-size: 10px;
    min-width: 80px;
}
.modal-filters .modal-content form .input-wrapper-show-select {
    margin-top: 24px;
}
.modal-filters .modal-content form .input-wrapper-show-select > label {
    font-size: 12px;
    font-weight: 400;
    color: #6C7797;
    line-height: 14px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}
.modal-filters .modal-content form .input-wrapper-show-select .input-group-select {
    border: 0;
}
.modal-filters .modal-content form .input-wrapper-show-select .input-group-select > label {
    display: none;
}
.modal-filters .modal-content form .input-wrapper-show-select .input-group-select.show .input-group-modal, .modal-filters .modal-content form .input-wrapper-show-select .input-group-select.active .input-group-modal {
    width: 100%;
    position: static;
    padding: 0;
    border: 0;
}
.modal-filters .modal-content form .input-wrapper-show-select .input-group-select.show .input-group-modal button, .modal-filters .modal-content form .input-wrapper-show-select .input-group-select.active .input-group-modal button {
    display: none;
}
.modal-filters .modal-content form .input-wrapper-show-select .input-group-select .input-group-modal.modal-3 .input-group-date {
    padding: 7px 20px;
    width: 100%;
}
.modal-filters .modal-content form .input-wrapper-show-select .input-group-select .input-group-modal.modal-3 .input-group-date input {
    width: 100%;
    display: block;
}
.modal-filters .modal-content form .input-wrapper-show-select .input-group-select .input-group-modal.modal-3 .groups-inputs.fill .input-group-date {
    background-color: #D2D5DF;
}
.modal-filters .modal-content form .input-wrapper-show-select .input-group-select .input-group-modal.modal-3 .groups-inputs.fill .input-group-date input {
    color: #D2D5DF;
    background-image: none;
}
.modal-filters .modal-content form .input-wrapper-show-select .input-group-select .input-group-modal.modal-3 .groups-inputs.fill .input-group-date input::-moz-placeholder {
    color: #D2D5DF;
}
.modal-filters .modal-content form .input-wrapper-show-select .input-group-select .input-group-modal.modal-3 .groups-inputs.fill .input-group-date input::placeholder {
    color: #D2D5DF;
}
.modal-filters .modal-content form .btn-primary {
    margin-top: 50px;
    height: 48px;
}
.modal-filters.active {
    opacity: 1;
    visibility: visible;
}
.modal-filters.active .modal-content {
    transform: translateY(0);
}

.page-01-login main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
    overflow: hidden;
    background-color: #F4F7FE;
}
.page-01-login main .form {
    padding-left: 200px;
    padding-right: 230px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    padding-bottom: 50px;
}
.page-01-login main .form .logo {
    margin-bottom: 114px;
    width: 182px;
}
.page-01-login main .form form {
    margin-bottom: auto;
}
.page-01-login main .form form h1 {
    font-size: 40px;
    font-weight: 700;
    color: #15161A;
    letter-spacing: 0;
    margin-bottom: 40px;
}
.page-01-login main .form form .input-group + .input-group {
    margin-top: 30px;
}
.page-01-login main .form form .input-group-check {
    margin-top: 26px;
}
.page-01-login main .form form .btn-primary {
    margin-top: 30px;
    min-height: 60px;
}
.page-01-login main .cover img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media screen and (max-width: 1600px) {
    .page-01-login main .form {
        padding-left: 150px;
        padding-right: 150px;
        padding-top: 50px;
        padding-bottom: 20px;
    }
    .page-01-login main .form > span {
        font-size: 14px;
        font-weight: 500;
        color: #9AADB5;
    }
}
@media screen and (max-width: 1300px) {
    .page-01-login main .form {
        padding-left: 80px;
        padding-right: 80px;
        padding-top: 40px;
        padding-bottom: 20px;
    }
}
@media screen and (max-width: 993px) {
    .page-01-login main {
        display: block;
    }
    .page-01-login main .form {
        padding: 20px;
        max-width: 600px;
        margin-inline: auto;
    }
    .page-01-login main .form .logo {
        width: 120px;
        margin-bottom: 80px;
        margin-inline: auto;
    }
    .page-01-login main .form h1 {
        font-size: 24px;
        margin-bottom: 40px;
    }
    .page-01-login main .form > span {
        display: block;
        text-align: center;
    }
    .page-01-login main .cover {
        display: none;
    }
}

.page-02-admin main > section .group-title-1 {
    margin-top: 32px;
    margin-bottom: 16px;
}
.page-02-admin main > section > .wrapper {
    display: flex;
    max-width: 1560px;
    gap: 34px;
}
.page-02-admin main > section > .wrapper > .main-content {
    padding-bottom: 100px;
    max-width: 1084px;
}
.page-02-admin main > section > .wrapper > .aside {
    flex: 1;
}
.page-02-admin main > section .swiper-info-groups {
    margin-bottom: 16px;
}
.page-02-admin main > section .swiper-info-groups .group-info {
    border: 1px solid #EA3309;
    background-color: #F4D1CB;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 65px 25px 32px;
}
.page-02-admin main > section .swiper-info-groups .group-info .text {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.page-02-admin main > section .swiper-info-groups .group-info .text > svg {
    margin-top: -5px;
}
.page-02-admin main > section .swiper-info-groups .group-info .text .title {
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: #EA3309;
    line-height: 20px;
    margin-bottom: 9px;
}
.page-02-admin main > section .swiper-info-groups .group-info .text ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
}
.page-02-admin main > section .swiper-info-groups .group-info .text ul li {
    display: flex;
    align-items: center;
    gap: 8px;
}
.page-02-admin main > section .swiper-info-groups .group-info .text ul li img {
    border-radius: 50%;
    width: 14px;
    height: 14px;
    -o-object-fit: cover;
    object-fit: cover;
}
.page-02-admin main > section .swiper-info-groups .group-info .text ul li span {
    font-size: 12px;
    font-weight: 500;
    color: #EA3309;
}
.page-02-admin main > section .swiper-info-groups .group-info .btn-primary {
    width: -moz-max-content;
    width: max-content;
    padding-inline: 74px;
    padding-block: 10px;
    height: 50px;
    font-size: 14px;
    line-height: 16px;
}
.page-02-admin main > section .swiper-info-groups .swiper-pagination {
    display: none;
}
.page-02-admin main > section .box {
    background: #FFFFFF;
    border: 1px solid #FCFBFD;
    box-shadow: 0px 4px 19.7px rgba(0, 0, 0, 0.03);
    border-radius: 15px;
    padding: 32px;
}
.page-02-admin main > section .box + .box {
    margin-top: 16px;
}
.page-02-admin main > section .box .left {
    max-width: 345px;
}
.page-02-admin main > section .box .left h2 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 500;
    color: #0A0A0A;
    line-height: 22px;
    margin-bottom: 16px;
}
.page-02-admin main > section .box .left .table {
    margin-bottom: 24px;
}
.page-02-admin main > section .box .left .table .column .title {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #6C7797;
    letter-spacing: 0;
    line-height: 22px;
    margin-bottom: 4px;
}
.page-02-admin main > section .box .left .table .column .text {
    font-size: 24px;
    font-weight: 700;
    color: #0A0A0A;
    letter-spacing: 0;
    line-height: 22px;
    display: block;
    white-space: nowrap;
}
.page-02-admin main > section .box .left .table .column .text span {
    font-size: 16px;
    color: #6C7797;
}
.page-02-admin main > section .box .left .table .column .text.red {
    color: #A50808;
}
.page-02-admin main > section .box .left .table .column-2 {
    display: flex;
    gap: 48px;
    margin-top: 24px;
}
.page-02-admin main > section .box .left .table-progress .resume, .modal-overlay .table-progress .resume {
    margin-bottom: 19px;
}
.page-02-admin main > section .box .left .table-progress .resume .title, .modal-overlay .table-progress .resume .title {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #6C7797;
    letter-spacing: 0;
    line-height: 22px;
    margin-bottom: 4px;
}
.page-02-admin main > section .box .left .table-progress .resume .group, .modal-overlay .table-progress .resume .group {
    display: flex;
    align-items: center;
    gap: 8px;
}
.page-02-admin main > section .box .left .table-progress .resume .group .progress-bar, .modal-overlay .table-progress .resume .group
.progress-bar{
    flex: 1;
    height: 16px;
    border-radius: 25px;
    background-color: #E7EAF0;
}
.page-02-admin main > section .box .left .table-progress .resume .group .progress-bar .percentage,
.modal-overlay .table-progress .resume .group .progress-bar .percentage {
    height: 100%;
    background-color: #6C7797;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 5px;
}
.page-02-admin main > section .box .left .table-progress .resume .group .progress-bar .percentage span,
.modal-overlay .table-progress .resume .group .progress-bar .percentage span{
    margin-top: 3px;
    line-height: 12px;
    font-size: 12px;
    color: #FFFFFF;
    font-weight: 500;
}
.page-02-admin main > section .box .left .table-progress .resume .group .progress-bar .percentage.red {
    background-color: #A50808;
}
.page-02-admin main > section .box .left .table-progress .resume .group > span {
    font-size: 12px;
    font-weight: 500;
    color: #0A0A0A;
}
.page-02-admin main > section .box .left .table-progress .line,
.modal-overlay .table-progress .line{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-overlay .table-progress .line{
    gap: 50px;
}

.page-02-admin main > section .box .left .table-progress .line + .line,
.modal-overlay .table-progress .line + .line{
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #C3C6CE;
}
.page-02-admin main > section .box .left .table-progress .line .left,
.modal-overlay .table-progress .line .left{
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-overlay .left{
    width: auto !important;
    text-align: left;
}

.page-02-admin main > section .box .left .table-progress .line .left img,
.modal-overlay .table-progress .line .left img{
    width: 24px;
    height: 24px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}
.page-02-admin main > section .box .left .table-progress .line span,
.modal-overlay .table-progress .line .left span{
    font-size: 16px;
    font-weight: 500;
    color: #0A0A0A;
    letter-spacing: 0;
    line-height: 22px;
}
.page-02-admin main > section .box .grafic {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 32px;
}
.page-02-admin main > section .box .grafic > canvas {
    display: block;
    max-width: 300px;
    width: 300px;
    max-height: 300px;
}
.page-02-admin main > section .box .grafic .legend h3 {
    font-size: 14px;
    font-weight: 500;
    color: #384455;
    display: block;
    margin-bottom: 8px;
}
.page-02-admin main > section .box .grafic .legend ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 24px;
}
.page-02-admin main > section .box .grafic .legend ul li,
.modal-overlay  .legend ul li
{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    color: #7F9FB8;
}
.page-02-admin main > section .box .grafic .legend ul li span,
.modal-overlay .legend ul li span{
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: red;
    min-width: 6px;
    min-height: 6px;
}
.page-02-admin main > section .box .grafic .legend ul li span.purple {
    background-color: #392F5A;
}
.page-02-admin main > section .box .grafic .legend ul li span.orange {
    background-color: #FF8811;
}
.page-02-admin main > section .box .grafic .legend ul li span.yellow {
    background-color: #F4D06F;
}
.page-02-admin main > section .box .grafic .legend ul li span.green {
    background-color: #9DD9D2;
}
.page-02-admin main > section .box-km{
    display: flex;
    gap: 180px;
}

.modal-overlay .box-km{
    gap: 80px;
    display: flex;
    align-items: center;
}

.modal-overlay .legend ul{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.page-02-admin main > section .box-pneu > h2, .modal-overlay .box-pneu > h2 {
    font-size: 20px;
    font-weight: 500;
    color: #0A0A0A;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.page-02-admin main > section .box-pneu .swiper-custom-button {
    padding-right: 45px;
    width: calc(100% + 45px);
}
.page-02-admin main > section .box-pneu .swiper-custom-button .swiper-pagination {
    display: none;
}
.page-02-admin main > section .box-pneu .box-inner {
    display: flex;
    gap: 180px;
    border: 1px solid #D2D5DF;
    border-radius: 10px;
    padding: 28px;
}
.page-02-admin main > section .box-pneu .box-inner .left > h2 {
    font-size: 20px;
    font-weight: 700;
    color: #0A0A0A;
}
@media screen and (max-width: 1850px) {
    .page-02-admin main > section > .wrapper > .main-content {
        max-width: 1000px;
    }
}
@media screen and (max-width: 1750px) {
    .page-02-admin main > section > .wrapper > .main-content {
        max-width: 900px;
    }
}
@media screen and (max-width: 1650px) {
    .page-02-admin main > section .swiper-info-groups .group-info .btn-primary {
        padding-inline: 30px;
    }
    .page-02-admin main > section > .wrapper > .main-content {
        max-width: 800px;
    }
    .page-02-admin main > section > .wrapper .box {
        gap: 20px;
    }
    .page-02-admin main > section > .wrapper .box .left {
        max-width: 300px;
    }
    .page-02-admin main > section > .wrapper .box .grafic {
        align-items: flex-end;
    }
    .page-02-admin main > section > .wrapper .box-pneu .box-inner {
        gap: 20px;
    }
}
@media screen and (max-width: 1500px) {
    .page-02-admin main > section .swiper-info-groups .group-info {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    .page-02-admin main > section .swiper-info-groups .group-info .text {
        flex-direction: column;
    }
    .page-02-admin main > section > .wrapper > .main-content {
        max-width: 700px;
    }
    .page-02-admin main > section > .wrapper .box {
        flex-direction: column;
    }
    .page-02-admin main > section > .wrapper .box .left {
        max-width: initial;
    }
    .page-02-admin main > section > .wrapper .box .grafic {
        align-items: center;
    }
    .page-02-admin main > section > .wrapper .box-km .box-inner,
    .page-02-admin main > section > .wrapper .box-pneu .box-inner {
        flex-direction: column;
    }
}
@media screen and (max-width: 1400px) {
    .page-02-admin main > section > .wrapper > .main-content {
        max-width: 600px;
    }
}
@media screen and (max-width: 1310px) {
    .page-02-admin main > section > .top {
        padding-inline: 20px;
    }
    .page-02-admin main > section .group-title-1 {
        margin-top: 0;
    }
    .page-02-admin main > section > .wrapper > .main-content {
        max-width: 800px;
    }
}
@media screen and (max-width: 1210px) {
    .page-02-admin main > section > .wrapper > .main-content {
        max-width: 700px;
    }
}
@media screen and (max-width: 1110px) {
    .page-02-admin main > section > .wrapper > .main-content {
        max-width: 600px;
    }
}
@media screen and (max-width: 1024px) {
    .page-02-admin main > section > .wrapper {
        display: block;
    }
    .page-02-admin main > section > .wrapper > .main-content {
        max-width: initial;
        padding-bottom: 30px;
    }
    .page-02-admin main > section > .wrapper > .aside {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        transform: translateY(200%);
        background-color: rgba(0, 0, 0, 0.3);
        height: 100vh;
        display: flex;
        align-items: flex-end;
        z-index: 10;
        transition: 200ms;
    }
    .page-02-admin main > section > .wrapper > .aside .calendar {
        width: 100%;
        position: static;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
        position: relative;
        padding-top: 110px;
        padding-inline: 20px;
        height: 90vh;
        overflow-y: auto;
    }
    .page-02-admin main > section > .wrapper > .aside .calendar::before {
        content: "";
        display: block;
        width: 48px;
        height: 6px;
        border-radius: 15px;
        background-color: #D9E1E7;
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
    }
    .page-02-admin main > section > .wrapper > .aside .calendar::after {
        content: "Agendar";
        border-bottom: 1px solid #D9E1E7;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        padding-top: 38px;
        padding-bottom: 25px;
        font-size: 20px;
        font-weight: 700;
        color: #0A0A0A;
        text-align: center;
    }
    .page-02-admin main > section > .wrapper > .aside.active {
        transform: translateY(0);
    }
    .page-02-admin main > section .swiper-info-groups {
        padding-bottom: 37px;
    }
    .page-02-admin main > section .swiper-info-groups .swiper-pagination {
        display: block;
        bottom: 0;
    }
    .page-02-admin main > section .swiper-info-groups .swiper-pagination .swiper-pagination-bullet {
        background-color: #CFD6EB;
        opacity: 1;
    }
    .page-02-admin main > section .swiper-info-groups .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color: #0A0A0A;
    }
    .page-02-admin main > section .box-pneu {
        padding: 26px 0 32px;
        overflow: hidden;
    }
    .page-02-admin main > section .box-pneu > h2 {
        padding-left: 24px;
    }
    .page-02-admin main > section .box-pneu .box-inner {
        padding: 0px 32px 20px;
        border: 0;
    }
    .page-02-admin main > section .box-pneu .swiper-custom-button {
        padding-bottom: 37px;
    }
    .page-02-admin main > section .box-pneu .swiper-custom-button .swiper-pagination {
        display: block;
        bottom: 0;
    }
    .page-02-admin main > section .box-pneu .swiper-custom-button .swiper-pagination .swiper-pagination-bullet {
        background-color: #CFD6EB;
        opacity: 1;
    }
    .page-02-admin main > section .box-pneu .swiper-custom-button .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color: #0A0A0A;
    }
}
@media screen and (max-width: 769px) {
    .page-02-admin main > section .swiper-info-groups .group-info {
        padding: 24px 20px 20px;
    }
    .page-02-admin main > section .swiper-info-groups .group-info .text {
        gap: 8px;
    }
    .page-02-admin main > section .swiper-info-groups .group-info .text .title {
        font-size: 16px;
    }
    .page-02-admin main > section .swiper-info-groups .group-info .btn-primary {
        padding-inline: 30px;
        width: 100%;
        font-size: 12px;
    }
    .page-02-admin main > section .box {
        padding: 26px 24px 32px;
    }
    .page-02-admin main > section .box .left .table .column-2 {
        gap: 40px;
        justify-content: flex-start;
    }
    .page-02-admin main > section .box .left .table .column .title {
        margin-bottom: 0;
    }
    .page-02-admin main > section .box .left .table .column .text {
        font-size: 20px;
    }
    .page-02-admin main > section .box .left .table .column .text span {
        font-size: 14px;
    }
    .page-02-admin main > section .box .grafic {
        gap: 40px;
    }
    .page-02-admin main > section .box.box-pneu {
        padding: 26px 0 32px;
    }
    .page-02-admin main > section .box.box-pneu > h2 {
        padding-left: 17px;
    }
    .page-02-admin main > section .box.box-pneu .box-inner {
        padding-inline: 20px;
    }
    .page-02-admin main > section .box.box-pneu .swiper-custom-button .swiper-pagination {
        margin-left: -20px;
    }
}

.page-03-admin-reservas main > section .group-title-2 {
    margin-top: 32px;
    margin-bottom: 16px;
}
.page-03-admin-reservas main > section > .wrapper {
    display: grid;
    grid-template-columns: 1fr 442px;
    gap: 34px;
}
.page-03-admin-reservas main > section > .wrapper > .main-content {
    padding-bottom: 50px;
}
@media screen and (max-width: 1850px) {
    .page-03-admin-reservas main > section > .wrapper > .main-content {
        max-width: 1000px;
    }
}
@media screen and (max-width: 1750px) {
    .page-03-admin-reservas main > section > .wrapper > .main-content {
        max-width: 900px;
    }
}
@media screen and (max-width: 1650px) {
    .page-03-admin-reservas main > section > .wrapper {
        grid-template-columns: 1fr 340px;
    }
    .page-03-admin-reservas main > section > .wrapper > .main-content {
        max-width: initial;
        width: 100%;
        flex: 1;
    }
}
@media screen and (max-width: 1024px) {
    .page-03-admin-reservas main > section > .wrapper {
        display: block;
    }
    .page-03-admin-reservas main > section > .wrapper > .main-content {
        max-width: initial;
        padding-bottom: 30px;
    }
    .page-03-admin-reservas main > section > .wrapper > .aside {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        transform: translateY(200%);
        background-color: rgba(0, 0, 0, 0.3);
        height: 100vh;
        display: flex;
        align-items: flex-end;
        z-index: 10;
        transition: 200ms;
    }
    .page-03-admin-reservas main > section > .wrapper > .aside .calendar {
        width: 100%;
        position: static;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
        position: relative;
        padding-top: 110px;
        padding-inline: 20px;
    }
    .page-03-admin-reservas main > section > .wrapper > .aside .calendar::before {
        content: "";
        display: block;
        width: 48px;
        height: 6px;
        border-radius: 15px;
        background-color: #D9E1E7;
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
    }
    .page-03-admin-reservas main > section > .wrapper > .aside .calendar::after {
        content: "Agendar";
        border-bottom: 1px solid #D9E1E7;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        padding-top: 38px;
        padding-bottom: 25px;
        font-size: 20px;
        font-weight: 700;
        color: #0A0A0A;
        text-align: center;
    }
    .page-03-admin-reservas main > section > .wrapper > .aside.active {
        transform: translateY(0);
    }
}
@media screen and (max-width: 1024px) {
    .page-03-admin-reservas main > section .group-title-2 {
        margin-top: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 32px;
        padding-bottom: 28px;
    }
    .page-03-admin-reservas main > section > .wrapper {
        display: block;
    }
    .page-03-admin-reservas main > section > .wrapper > .main-content .table-base {
        display: none;
    }
}

.page-04-admin-reservas-interna main > section {
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
}
.page-04-admin-reservas-interna main > section .group-title-3 {
    margin-top: 32px;
    margin-bottom: 32px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}
.page-04-admin-reservas-interna main > section .box-general-data {
    margin-bottom: 32px;
}
.page-04-admin-reservas-interna main > section .box-general-data h2 {
    font-size: 20px;
    font-weight: 500;
    color: #0A0A0A;
    margin-bottom: 16px;
}
.page-04-admin-reservas-interna main > section .box-general-data .wrapper {
    padding: 32px 48px;
    border: 1px solid #CFD5E5;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
}
.page-04-admin-reservas-interna main > section .box-general-data .wrapper .item h3 {
    font-size: 14px;
    font-weight: 400;
    color: #6C7797;
    text-transform: uppercase;
    line-height: 22px;
}
.page-04-admin-reservas-interna main > section .box-general-data .wrapper .item span {
    font-size: 16px;
    font-weight: 500;
    color: #0A0A0A;
    line-height: 22px;
}
.page-04-admin-reservas-interna main > section .box-check-in-check-out h2 {
    font-size: 20px;
    font-weight: 500;
    color: #0A0A0A;
    margin-bottom: 16px;
}
.page-04-admin-reservas-interna main > section .box-check-in-check-out > .wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.page-04-admin-reservas-interna main > section .box-check-in-check-out > .wrapper .box {
    border: 1px solid #CFD5E5;
    border-radius: 16px;
    padding: 48px;
}
.page-04-admin-reservas-interna main > section .box-check-in-check-out > .wrapper .box h3 {
    font-size: 20px;
    font-weight: 500;
    color: #0A0A0A;
    margin-bottom: 24px;
}
.page-04-admin-reservas-interna main > section .box-check-in-check-out > .wrapper .box .list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 16px;
    column-gap: 16px;
    row-gap: 32px;
}
.page-04-admin-reservas-interna main > section .box-check-in-check-out > .wrapper .box .list .item {
    aspect-ratio: 1/1;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.page-04-admin-reservas-interna main > section .box-check-in-check-out > .wrapper .box .list .item span {
    position: absolute;
    top: 24px;
    left: 24px;
    background-color: #EA3309;
    height: 26px;
    padding-inline: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    border-radius: 16px;
}
.page-04-admin-reservas-interna main > section .box-check-in-check-out > .wrapper .box .list .item img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.page-04-admin-reservas-interna main > section .box-check-in-check-out > .wrapper .box .list .item .overlay,
.page-04-admin-reservas-interna main > section .box-check-in-check-out > .wrapper  .item .overlay{
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: 200ms;
    cursor: pointer;
    background-size: cover;
    background-position: center center;
}
.page-04-admin-reservas-interna main > section .box-check-in-check-out > .wrapper .box .list .item .overlay:hover {
    opacity: 1;
}

.page-04-admin-reservas-interna main > section .box-check-in-check-out > .wrapper .box .list-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 16px;
    column-gap: 16px;
    row-gap: 32px;
}

.page-04-admin-reservas-interna main > section .box-check-in-check-out > .wrapper .box .list-images .item {
    border: 1px solid #CFD5E5;
    border-radius: 10px;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.page-04-admin-reservas-interna main > section .box-check-in-check-out > .wrapper .box .list-images .item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.page-04-admin-reservas-interna main > section .box-check-in-check-out > .wrapper .box .list-images .item  span{
    font-size: 10px;
    line-height: 110%;
    font-weight: 400;
    text-align: center;
}

.page-04-admin-reservas-interna  main > section .box-check-in-check-out .check-out .list-images .item p span{
    color: #EA3309;
    font-weight: 700;
    text-decoration: underline;
}

.page-04-admin-reservas-interna main > section .box-check-in-check-out > .wrapper .box .list-images .item input[type=file]{
    display: none;
}

.page-04-admin-reservas-interna main > section .box-check-in-check-out > .wrapper .box .list-images .item p{
    text-align: center;
}
.page-04-admin-reservas-interna main > section .box-check-in-check-out > .wrapper .box .list-images .item p span{
    color: #EA3309;
    font-weight: 700;
    text-decoration: underline;
}

.page-04-admin-reservas-interna main > section .box-check-in-check-out > .wrapper .box .list-images .item  .category{
    position: absolute;
    height: 26px;
    padding-inline: 24px;
    background-color: #EA3309;
    border-radius: 16px;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 24px;
    left: 24px;
    z-index: 10;
}
page-04-admin-reservas-interna main > section .box-check-in-check-out > .wrapper .box .list-images .item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
}

.page-04-admin-reservas-interna main > section > footer {
    margin-top: auto;
    padding-block: 32px;
    border-top: 1px solid #D0D5E5;
    display: flex;
    align-items: center;
    gap: 8px;
}
.page-04-admin-reservas-interna main > section > footer .btn-primary {
    width: -moz-max-content;
    width: max-content;
    padding-inline: 62px;
}
.page-04-admin-reservas-interna main > section > footer .btn-ghost {
    gap: 8px;
}
@media screen and (max-width: 1500px) {
    .page-04-admin-reservas-interna main > section .box-general-data .wrapper {
        -moz-column-gap: 70px;
        column-gap: 70px;
        row-gap: 32px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}
@media screen and (max-width: 1200px) {
    .page-04-admin-reservas-interna main > section .box-check-in-check-out > .wrapper .box {
        padding: 24px;
    }
    .page-04-admin-reservas-interna main > section .box-check-in-check-out > .wrapper .box .list {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 1024px) {
    .page-04-admin-reservas-interna main > section .group-title-3 {
        margin-top: 0;
        margin-bottom: 16px;
    }
    .page-04-admin-reservas-interna main > section .group-title-3 h1 {
        justify-content: space-between;
    }
    .page-04-admin-reservas-interna main > section .box-general-data .wrapper {
        padding: 24px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .page-04-admin-reservas-interna main > section .box-general-data .wrapper .item {
        width: -moz-max-content;
        width: max-content;
    }
}
@media screen and (max-width: 769px) {
    .page-04-admin-reservas-interna main > section {
        min-height: 100vh;
    }
    .page-04-admin-reservas-interna main > section .box-general-data {
        margin-bottom: 40px;
    }
    .page-04-admin-reservas-interna main > section .box-general-data h2 {
        font-size: 16px;
    }
    .page-04-admin-reservas-interna main > section .box-general-data .wrapper {
        -moz-column-gap: 10px;
        column-gap: 10px;
    }
    .page-04-admin-reservas-interna main > section .box-general-data .wrapper .item h3 {
        font-size: 12px;
    }
    .page-04-admin-reservas-interna main > section .box-check-in-check-out h2 {
        font-size: 16px;
    }
    .page-04-admin-reservas-interna main > section .box-check-in-check-out > .wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .page-04-admin-reservas-interna main > section .box-check-in-check-out > .wrapper .box h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }
    .page-04-admin-reservas-interna main > section .box-check-in-check-out > .wrapper .box .list {
        gap: 16px;
    }
    .page-04-admin-reservas-interna main > section .box-check-in-check-out > .wrapper .box .list .item span {
        top: 20px;
        left: 20px;
        font-size: 10px;
        height: 22px;
        padding-inline: 18px;
    }
    .page-04-admin-reservas-interna main > section > footer {
        flex-direction: column;
        padding-top: 0;
        border-top: 0;
        height: auto;
    }
    .page-04-admin-reservas-interna main > section > footer .btn-primary,
    .page-04-admin-reservas-interna main > section > footer .btn-ghost {
        width: 100%;
        height: 48px;
        font-size: 12px;
        max-width: 400px;
    }
}

.page-05-admin-reservas-interna main > section {
    padding-bottom: 0px !important;
}

.page-07-admin-docs main > section .group-title-2 {
    margin-top: 32px;
    margin-bottom: 16px;
}
@media screen and (max-width: 1024px) {
    .page-07-admin-docs main > section .group-title-2 {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
}
.page-07-admin-docs main > section .input-group-select > label span {
    max-width: 50px;
}
.page-07-admin-docs main > section .scroll-h {
    width: 100%;
    overflow-x: auto;
}
.page-07-admin-docs main > section .scroll-h::-webkit-scrollbar {
    height: 6px;
    background-color: red;
}
.page-07-admin-docs main > section .scroll-h .scroll-table-container {
    min-width: 1100px;
}
.page-07-admin-docs main > section .table-base.table-docs .table-header,
.page-07-admin-docs main > section .table-base.table-docs .table-body .line {
    grid-template-columns: 27.22% 13.97% 18.37% 22.99% 12.71% 2.74% 2%;
}
@media screen and (max-width: 1880px) {
    .page-07-admin-docs main > section .table-base .table-filters {
        flex-direction: row;
    }
    .page-07-admin-docs main > section .table-base .table-filters .form-search {
        width: -moz-max-content;
        width: max-content;
    }
    .page-07-admin-docs main > section .table-base .table-filters .filters .input-group-select {
        width: 100%;
        width: -moz-max-content;
        width: max-content;
    }
}
@media screen and (max-width: 1600px) {
    .page-07-admin-docs main > section .table-base .table-filters .filters {
        display: flex;
    }
    .page-07-admin-docs main > section .table-base .table-filters .filters .input-group-select {
        width: -moz-max-content;
        width: max-content;
    }
    .page-07-admin-docs main > section .table-base .table-filters .filters .input-group-select > label svg {
        margin-left: 32px;
    }
}
@media screen and (max-width: 1420px) {
    .page-07-admin-docs main > section .table-base .table-filters {
        flex-direction: column;
    }
}
@media screen and (max-width: 1024px) {
    .page-07-admin-docs main > section {
        padding-bottom: 50px;
    }
    .page-07-admin-docs main > section .table-base {
        display: none;
    }
}

.page-08-admin-form main > section .group-title-4 {
    margin-top: 32px;
    margin-bottom: 16px;
}
.page-08-admin-form main > section > form {
    margin-top: 32px;
    min-height: calc(100vh - 180px);
    display: flex;
    flex-direction: column;
}
.page-08-admin-form main > section > form > .line {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 32px;
    align-items: flex-end;
}
.page-08-admin-form main > section > form > .line + .line {
    margin-top: 32px;
}
.page-08-admin-form main > section > form > .line .input-group > label {
    font-size: 14px;
    font-weight: 400;
    color: #6C7797;
    text-transform: uppercase;
}
.page-08-admin-form main > section > form > .line .input-group input {
    height: 50px;
    background-color: #FFFFFF;
}
.page-08-admin-form main > section > form > .line .input-wrapper-select > label {
    font-size: 14px;
    font-weight: 400;
    color: #6C7797;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}
.page-08-admin-form main > section > form > .line .input-wrapper-select .input-group-select > label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #FFFFFF;
}
.page-08-admin-form main > section > form > .line .input-wrapper-select .input-group-select > label > span {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 200px;
}
.page-08-admin-form main > section > form > .line .input-wrapper-select .input-group-select > label > span img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}
.page-08-admin-form main > section > form > .line .input-group-checkbox {
    margin-bottom: 17px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.page-08-admin-form main > section > form > .line .input-group-checkbox input {
    -webkit-appearance: unset;
    -moz-appearance: unset;
    appearance: unset;
    width: 24px;
    height: 24px;
    border-radius: 3px;
    border: 1px solid #C0C6CF;
    background-image: url(../images/icon-check.svg);
    background-position: top center;
    transition: 200ms;
    cursor: pointer;
    background-repeat: no-repeat;
}
.page-08-admin-form main > section > form > .line .input-group-checkbox input:checked {
    background-position: center center;
    background-color: #EA3309;
    border-color: #EA3309;
}
.page-08-admin-form main > section > form > .line .input-group-checkbox input:checked + label {
    color: #0A0A0A;
}
.page-08-admin-form main > section > form > .line .input-group-checkbox label {
    font-size: 14px;
    font-weight: 500;
    color: #6C7797;
    letter-spacing: 0;
    cursor: pointer;
    margin-top: 5px;
    display: block;
}
.page-08-admin-form main > section > form .box-upload {
    margin-top: 32px;
    margin-bottom: 40px;
}
.page-08-admin-form main > section > form .box-upload .title {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    color: #6C7797;
    letter-spacing: 0;
    display: block;
    margin-bottom: 8px;
}
.page-08-admin-form main > section > form .box-upload .box-file {
    gap: 32px;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    display: none;
}
.page-08-admin-form main > section > form .box-upload .box-file .inner {
    flex: 1;
    max-width: 458px;
    border: 1px solid #0A0A0A;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 70px;
    padding-inline: 24px;
}
.page-08-admin-form main > section > form .box-upload .box-file .inner span {
    font-size: 14px;
    font-weight: 500;
    color: #0A0A0A;
}
.page-08-admin-form main > section > form .box-upload .box-file .btn-remove {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 2px;
}
.page-08-admin-form main > section > form .box-upload .box-file .btn-remove span {
    font-size: 14px;
    font-weight: 500;
    color: #CB1E00;
    text-decoration: underline;
    transition: 200ms;
}
.page-08-admin-form main > section > form .box-upload .box-file .btn-remove:hover {
    background-color: rgba(233, 143, 123, 0.2352941176);
}
.page-08-admin-form main > section > form .box-upload .box-file .btn-remove:hover span {
    color: #EA3309;
}
.page-08-admin-form main > section > form .box-upload .box-file.has-content {
    display: flex;
}
.page-08-admin-form main > section > form .box-upload input[type=file] {
    display: none;
}
.page-08-admin-form main > section > form .box-upload .box {
    padding: 20px 120px;
    border: 1px solid #CFD5E5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    width: -moz-max-content;
    width: max-content;
    margin-bottom: 8px;
    gap: 8px;
    flex-direction: column;
}
.page-08-admin-form main > section > form .box-upload .box p {
    font-size: 14px;
    font-weight: 400;
    color: #6C7797;
}
.page-08-admin-form main > section > form .box-upload .box p span {
    color: #EA3309;
    text-decoration: underline;
    font-weight: 700;
}
.page-08-admin-form main > section > form .box-upload .box.has-content {
    display: none;
}
.page-08-admin-form main > section > form .box-upload > span {
    font-size: 12px;
    font-weight: 400;
    color: #6C7797;
}
.page-08-admin-form main > section > form .box-upload > span.has-content {
    display: none;
}
.page-08-admin-form main > section > form footer {
    margin-top: auto;
    border-top: 1px solid #D0D5E5;
    padding-block: 32px;
}
.page-08-admin-form main > section > form footer .btn-primary {
    width: -moz-max-content;
    width: max-content;
    padding-inline: 64px;
    font-size: 14px;
    height: 50px;
}
@media screen and (max-width: 1024px) {
    .page-08-admin-form main > section > form > .line {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }
    .page-08-admin-form main > section > form > .line .input-wrapper-select,
    .page-08-admin-form main > section > form > .line .input-group {
        width: 100%;
        max-width: 600px;
    }
    .page-08-admin-form main > section > form > .line .input-wrapper-select > label,
    .page-08-admin-form main > section > form > .line .input-group > label {
        font-size: 12px;
        line-height: 100%;
        margin-bottom: 4px;
    }
    .page-08-admin-form main > section > form > .line .input-group-checkbox input {
        width: 14px;
        height: 14px;
    }
    .page-08-admin-form main > section > form > .line .input-group-checkbox label {
        font-size: 12px;
    }
    .page-08-admin-form main > section > form .box-upload {
        margin-bottom: 40px;
    }
    .page-08-admin-form main > section > form .box-upload .title {
        font-size: 12px;
        margin-bottom: 4px;
    }
    .page-08-admin-form main > section > form .box-upload .box {
        width: 100%;
        max-width: 600px;
        padding-inline: 20px;
        height: 130px;
        justify-content: center;
    }
    .page-08-admin-form main > section > form .box-upload .box p {
        display: none;
    }
    .page-08-admin-form main > section > form .box-upload .box .mobile {
        display: block;
        color: #EA3309;
        font-size: 12px;
        font-weight: 500;
    }
    .page-08-admin-form main > section > form .box-upload > span {
        font-size: 10px;
    }
    .page-08-admin-form main > section > form footer {
        border: 0;
        padding-top: 0;
        padding-bottom: 20px;
    }
    .page-08-admin-form main > section > form footer .btn-primary {
        width: 100%;
        max-width: 400px;
    }
}

.page-09-cotista main > section {
    padding-bottom: 40px;
}
.page-09-cotista main > section .group-title-1 {
    margin-top: 32px;
    margin-bottom: 16px;
}
.page-09-cotista main > section > .wrapper {
    display: flex;
    gap: 34px;
}
.page-09-cotista main > section > .wrapper > .main-content {
    flex: 1;
    width: calc(100% - 442px);
    padding-bottom: 100px;
}
.page-09-cotista main > section > .wrapper > .main-content .box-reservations {
    background-color: #FFFFFF;
    border: 1px solid #FCFBFD;
    border-radius: 15px;
    padding: 28px 32px 32px;
    margin-bottom: 8px;
}
.page-09-cotista main > section > .wrapper > .main-content .box-reservations header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}
.page-09-cotista main > section > .wrapper > .main-content .box-reservations header .title {
    font-size: 20px;
    font-weight: 500;
    color: #0A0A0A;
}
.page-09-cotista main > section > .wrapper > .main-content .box-reservations header .status {
    height: 30px;
    padding-inline: 26px;
    border-radius: 40px;
    min-width: 106px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
}
.page-09-cotista main > section > .wrapper > .main-content .box-reservations header .status.pendding {
    background-color: rgba(247, 203, 25, 0.2);
    color: rgb(247, 203, 25);
}
.page-09-cotista main > section > .wrapper > .main-content .box-reservations header .status.active {
    background-color: #E6EBFB;
    color: #0031CB;
}
.page-09-cotista main > section > .wrapper > .main-content .box-reservations header .status.program {
    background-color: #FDE7D1;
    color: #F78819;
}
.page-09-cotista main > section > .wrapper > .main-content .box-reservations header .status.cancel {
    background-color: #F5D2CC;
    color: #CB1E00;
}
.page-09-cotista main > section > .wrapper > .main-content .box-reservations header .status.finish {
    background-color: #F2FBF7;
    color: #5FD7AA;
}
.page-09-cotista main > section > .wrapper > .main-content .box-reservations .wrapper {
    display: flex;
    justify-content: flex-start;
    gap: 60px;
    margin-bottom: 38px;
    flex-wrap: wrap;
}
.page-09-cotista main > section > .wrapper > .main-content .box-reservations .wrapper .item {
    width: -moz-max-content;
    width: max-content;
}
.page-09-cotista main > section > .wrapper > .main-content .box-reservations .wrapper .item .title {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #6C7797;
    margin-bottom: 4px;
}
.page-09-cotista main > section > .wrapper > .main-content .box-reservations .wrapper .item .text {
    font-size: 24px;
    font-weight: 700;
    color: #0A0A0A;
}
.page-09-cotista main > section > .wrapper > .main-content .box-reservations .btn-more {
    font-size: 14px;
    font-weight: 700;
    color: #0A0A0A;
    letter-spacing: 0;
    transition: 200ms;
}
.page-09-cotista main > section > .wrapper > .main-content .box-reservations .btn-more:hover {
    color: #CB1E00;
}
.page-09-cotista main > section > .wrapper > .main-content > .wrapper {
    display: flex;
    gap: 7px;
}
.page-09-cotista main > section > .wrapper > .main-content > .wrapper .box {
    width: 50%;
    background-color: #FFFFFF;
    border: 1px solid #FCFBFD;
    border-radius: 15px;
    padding: 32px;
}
.page-09-cotista main > section > .wrapper > .main-content > .wrapper .box > h2 {
    font-size: 20px;
    font-weight: 500;
    color: #0A0A0A;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.page-09-cotista main > section > .wrapper > .main-content > .wrapper .box .swiper-pneu {
    width: calc(100% + 45px);
    padding-right: 45px;
}
.page-09-cotista main > section > .wrapper > .main-content > .wrapper .box .swiper-pneu .swiper-pagination {
    display: none;
}
.page-09-cotista main > section > .wrapper > .main-content > .wrapper .box .item {
    border: 1px solid #D2D5DF;
    padding: 28px;
    border-radius: 10px;
}
.page-09-cotista main > section > .wrapper > .main-content > .wrapper .box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.page-09-cotista main > section > .wrapper > .main-content > .wrapper .box .line + .line {
    margin-top: 24px;
}
.page-09-cotista main > section > .wrapper > .main-content > .wrapper .box .line .title {
    font-size: 14px;
    font-weight: 500;
    color: #6C7797;
    display: block;
    margin-bottom: 4px;
    line-height: 22px;
}
.page-09-cotista main > section > .wrapper > .main-content > .wrapper .box .line .text {
    font-size: 24px;
    font-weight: 700;
    color: #0A0A0A;
}
.page-09-cotista main > section > .wrapper > .main-content > .wrapper .box .line .text span {
    font-size: 16px;
    color: #6C7797;
}
.page-09-cotista main > section > .wrapper > .main-content > .wrapper .box .line .text.red {
    color: #A50808;
    display: flex;
    align-items: center;
}
.page-09-cotista main > section > .wrapper > .main-content > .wrapper .box .line .text.red svg {
    margin-right: 8px;
}
.page-09-cotista main > section > .wrapper > .main-content > .wrapper .box .line .progress-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}
.page-09-cotista main > section > .wrapper > .main-content > .wrapper .box .line .progress-container .progress-bar {
    width: 203px;
    height: 16px;
    border-radius: 25px;
    background-color: #E7EAF0;
}
.page-09-cotista main > section > .wrapper > .main-content > .wrapper .box .line .progress-container .progress-bar .percentage {
    height: 100%;
    background-color: #6C7797;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px;
}
.page-09-cotista main > section > .wrapper > .main-content > .wrapper .box .line .progress-container .progress-bar .percentage.red {
    background-color: #A50808;
}
.page-09-cotista main > section > .wrapper > .main-content > .wrapper .box .line .progress-container .progress-bar .percentage span {
    font-size: 12px;
    font-weight: 500;
    color: #FFFFFF;
}
.page-09-cotista main > section > .wrapper > .main-content > .wrapper .box .line .progress-container > span {
    font-size: 12px;
    font-weight: 500;
    color: #0A0A0A;
}
.page-09-cotista main > section > .wrapper > .main-content > .wrapper .box .column-2 {
    margin-bottom: 24px;
    display: flex;
    gap: 45px;
}
.page-09-cotista main > section > .wrapper > .main-content > .wrapper .box .column-2 .line + .line {
    margin-top: 0;
}
.page-09-cotista main > section > .wrapper > aside {
    width: 442px;
}
@media screen and (max-width: 1650px) {
    .page-09-cotista main > section > .wrapper > .main-content > .wrapper {
        flex-direction: column;
    }
    .page-09-cotista main > section > .wrapper > .main-content > .wrapper .box {
        width: 100%;
    }
}
@media screen and (max-width: 1500px) {
    .page-09-cotista main > section > .wrapper > .main-content {
        max-width: 700px;
    }
}
@media screen and (max-width: 1400px) {
    .page-09-cotista main > section > .wrapper > .main-content {
        max-width: 600px;
    }
}
@media screen and (max-width: 1310px) {
    .page-09-cotista main > section > .top {
        padding-inline: 20px;
    }
    .page-09-cotista main > section .group-title-1 {
        margin-top: 0;
    }
    .page-09-cotista main > section > .wrapper > .main-content {
        max-width: 800px;
    }
}
@media screen and (max-width: 1210px) {
    .page-09-cotista main > section > .wrapper > .main-content {
        max-width: 700px;
    }
}
@media screen and (max-width: 1110px) {
    .page-09-cotista main > section > .wrapper > .main-content {
        max-width: 600px;
    }
}
@media screen and (max-width: 1024px) {
    .page-09-cotista main > section > .wrapper {
        display: block;
    }
    .page-09-cotista main > section > .wrapper > .main-content {
        width: 100%;
        max-width: initial;
        padding-bottom: 30px;
    }
    .page-09-cotista main > section > .wrapper > .main-content .box-reservations {
        padding: 20px;
    }
    .page-09-cotista main > section > .wrapper > .main-content .box-reservations header {
        flex-direction: column-reverse;
        justify-content: flex-start;
    }
    .page-09-cotista main > section > .wrapper > .main-content .box-reservations header .hidden-mobile {
        display: none;
    }
    .page-09-cotista main > section > .wrapper > .main-content .box-reservations header .title {
        margin-right: auto;
    }
    .page-09-cotista main > section > .wrapper > .main-content .box-reservations header .status {
        margin-right: auto;
        margin-left: 0;
        margin-bottom: 10px;
    }
    .page-09-cotista main > section > .wrapper > .main-content .box-reservations .wrapper {
        -moz-column-gap: 40px;
        column-gap: 40px;
        row-gap: 32px;
    }
    .page-09-cotista main > section > .wrapper > .main-content .box-reservations .wrapper .item .text {
        font-size: 16px;
    }
    .page-09-cotista main > section > .wrapper > .main-content > .wrapper .box {
        padding: 20px;
    }
    .page-09-cotista main > section > .wrapper > .main-content > .wrapper .box .line .text {
        font-size: 16px;
    }
    .page-09-cotista main > section > .wrapper > .main-content > .wrapper .box .swiper-pneu {
        width: 100%;
        padding-right: 0;
        padding-bottom: 40px;
    }
    .page-09-cotista main > section > .wrapper > .main-content > .wrapper .box .swiper-pneu .swiper-pagination {
        display: block;
        bottom: 0;
    }
    .page-09-cotista main > section > .wrapper > .main-content > .wrapper .box .swiper-pneu .swiper-pagination .swiper-pagination-bullet {
        background-color: #CFD6EB;
        opacity: 1;
    }
    .page-09-cotista main > section > .wrapper > .main-content > .wrapper .box .swiper-pneu .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color: #0A0A0A;
    }
    .page-09-cotista main > section > .wrapper > .aside {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        transform: translateY(200%);
        background-color: rgba(0, 0, 0, 0.3);
        height: 100vh;
        display: flex;
        align-items: flex-end;
        z-index: 10;
        transition: 200ms;
        width: 100%;
    }
    .page-09-cotista main > section > .wrapper > .aside .calendar {
        width: 100%;
        position: static;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
        position: relative;
        padding-top: 110px;
        padding-inline: 20px;
    }
    .page-09-cotista main > section > .wrapper > .aside .calendar::before {
        content: "";
        display: block;
        width: 48px;
        height: 6px;
        border-radius: 15px;
        background-color: #D9E1E7;
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
    }
    .page-09-cotista main > section > .wrapper > .aside .calendar::after {
        content: "Agendar";
        border-bottom: 1px solid #D9E1E7;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        padding-top: 38px;
        padding-bottom: 25px;
        font-size: 20px;
        font-weight: 700;
        color: #0A0A0A;
        text-align: center;
    }
    .page-09-cotista main > section > .wrapper > .aside.active {
        transform: translateY(0);
    }
}
@media screen and (max-width: 769px) {
    .page-09-cotista main > section > .wrapper > .main-content .box-reservations .wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

.page-11-cotista-form main > section {
    padding-bottom: 0px;
}
.page-11-cotista-form main > section .group-title-4 {
    margin-top: 32px;
    margin-bottom: 16px;
}
.page-11-cotista-form main > section > form {
    height: calc(100vh - 180px);
    display: flex;
    flex-direction: column;
}
.page-11-cotista-form main > section > form .input-group-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}
.page-11-cotista-form main > section > form .input-group-checkbox input[type=checkbox] {
    -webkit-appearance: unset;
    -moz-appearance: unset;
    appearance: unset;
    width: 16px;
    height: 16px;
    border: 1px solid #0A0A0A;
    border-radius: 2px;
    cursor: pointer;
    background-image: url(../images/icon-check-2.svg);
    background-position: top center;
    transition: 200ms;
    background-repeat: no-repeat;
}
.page-11-cotista-form main > section > form .input-group-checkbox input[type=checkbox]:checked {
    background-position: center center;
    background-color: #EA3309;
    border-color: #EA3309;
}
.page-11-cotista-form main > section > form .input-group-checkbox input[type=checkbox]:checked + label {
    color: #0A0A0A;
}
.page-11-cotista-form main > section > form .input-group-checkbox label {
    font-size: 14px;
    font-weight: 500;
    color: #6C7797;
    margin-top: 3px;
    cursor: pointer;
}
.page-11-cotista-form main > section > form .line {
    display: flex;
    gap: 16px;
     margin-top: 32px;
}

.page-11-cotista-form main > section > form .line .input-group label {
    font-size: 14px;
    font-weight: 400;
    color: #6C7797;
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 22px;
}
.page-11-cotista-form main > section > form .line .input-group input {
    background-color: #FFFFFF;
}
.page-11-cotista-form main > section > form .line .input-group:first-of-type input {
    width: 205px;
}
.page-11-cotista-form main > section > form .line .input-group:last-of-type input {
    width: 205px;
}

.page-11-cotista-form.novaAgenda main > section > form .line .input-group:last-of-type input{
    widtH: 257px;
}

.page-11-cotista-form main > section > form .box-prevision {
    margin-block: 32px;
}
.page-11-cotista-form main > section > form .box-prevision .input-group {
    margin-bottom: 10px;
}
.page-11-cotista-form main > section > form .box-prevision .input-group label {
    font-size: 14px;
    font-weight: 400;
    color: #6C7797;
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 22px;
}
.page-11-cotista-form main > section > form .box-prevision .input-group input {
    background-color: #FFFFFF;
    width: 257px;
}
.page-11-cotista-form main > section > form > .input-group {
    margin-top: 32px;
    margin-bottom: 50px;
}
.page-11-cotista-form main > section > form > .input-group label {
    font-size: 14px;
    font-weight: 400;
    color: #6C7797;
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 22px;
}
.page-11-cotista-form main > section > form > .input-group input {
    background-color: #FFFFFF;
    width: 395px;
}
.page-11-cotista-form main > section > form footer {
    margin-top: auto;
    border-top: 1px solid #D0D5E5;
    padding-block: 32px;
}
.page-11-cotista-form main > section > form footer .btn-primary {
    width: -moz-max-content;
    width: max-content;
    padding-inline: 66px;
    height: 50px;
    font-size: 14px;
}
@media screen and (max-width: 993px) {
    .page-11-cotista-form main > section .group-title-4 {
        margin-top: 0;
        margin-bottom: 24px;
    }
    .page-11-cotista-form main > section .group-title-4 h1 {
        font-size: 20px;
        margin-block: 0;
    }
    .page-11-cotista-form main > section > form {
        height: auto;
    }
    .page-11-cotista-form main > section > form .line {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .page-11-cotista-form main > section > form .line .input-group label {
        font-size: 12px;
        margin-bottom: 4px;
        line-height: 100%;
    }
    .page-11-cotista-form main > section > form .line .input-group:first-of-type input, .page-11-cotista-form main > section > form .line .input-group:last-of-type input {
        width: 100%;
    }
    .page-11-cotista-form main > section > form .box-prevision {
        margin-bottom: 10px;
    }
    .page-11-cotista-form main > section > form .box-prevision .input-group {
        max-width: calc(50% - 10px);
    }
    .page-11-cotista-form main > section > form .box-prevision .input-group input {
        width: 100%;
    }
    .page-11-cotista-form main > section > form > .input-group {
        margin-top: 0;
    }
    .page-11-cotista-form main > section > form footer {
        padding-block: 20px;
        border-top: 0;
    }
}
@media screen and (max-width: 769px) {
    .page-11-cotista-form main > section > form {
        height: auto;
    }
    .page-11-cotista-form main > section > form .line {
        grid-template-columns: 1fr;
    }
    .page-11-cotista-form main > section > form .line .input-group:first-of-type input, .page-11-cotista-form main > section > form .line .input-group:last-of-type input {
        width: 100%;
    }
    .page-11-cotista-form main > section > form .box-prevision .input-group {
        max-width: 100%;
    }
    .page-11-cotista-form main > section > form > .input-group input {
        width: 100%;
    }
}

.page-15-cotista-reserva-ativa main > section {
    padding-bottom: 50px;
}
.page-15-cotista-reserva-ativa main > section .group-title-2 {
    margin-top: 32px;
    margin-bottom: 32px;
}
.page-15-cotista-reserva-ativa main > section .group-title-2 h1 {
    display: flex;
    align-items: center;
    gap: 16px;
}
.page-15-cotista-reserva-ativa main > section .box-check-in-check-out {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.page-15-cotista-reserva-ativa main > section .box-check-in-check-out .box {
    border: 1px solid #CFD5E5;
    border-radius: 16px;
    padding: 48px;
}
.page-15-cotista-reserva-ativa main > section .box-check-in-check-out .box h3 {
    font-size: 20px;
    font-weight: 500;
    color: #0A0A0A;
    margin-bottom: 24px;
}
.page-15-cotista-reserva-ativa main > section .box-check-in-check-out .box .list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 16px;
    column-gap: 16px;
    row-gap: 32px;
}
.page-15-cotista-reserva-ativa main > section .box-check-in-check-out .box .list .item {
    aspect-ratio: 1/1;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.page-15-cotista-reserva-ativa main > section .box-check-in-check-out .box .list .item span {
    position: absolute;
    top: 24px;
    left: 24px;
    background-color: #EA3309;
    height: 26px;
    padding-inline: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    border-radius: 16px;
}
.page-15-cotista-reserva-ativa main > section .box-check-in-check-out .box .list .item img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.page-15-cotista-reserva-ativa main > section .box-check-in-check-out .box .list .item .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 200ms;
    cursor: pointer;
}
.page-15-cotista-reserva-ativa main > section .box-check-in-check-out .box .list .item .overlay:hover {
    opacity: 1;
}
.page-15-cotista-reserva-ativa main > section .box-check-in-check-out .box.check-out p {
    font-size: 40px;
    font-weight: 700;
    color: #BAC2D7;
    line-height: 44px;
}
@media screen and (max-width: 1100px) {
    .page-15-cotista-reserva-ativa main > section .box-check-in-check-out .box .list {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 1024px) {
    .page-15-cotista-reserva-ativa main > section .group-title-2 {
        flex-direction: column;
        align-items: flex-end;
        gap: 20px;
    }
    .page-15-cotista-reserva-ativa main > section .box-check-in-check-out .box {
        padding: 24px;
    }
    .page-15-cotista-reserva-ativa main > section .box-check-in-check-out .box.check-out p {
        font-size: 24px;
        line-height: 140%;
    }
}
@media screen and (max-width: 769px) {
    .page-15-cotista-reserva-ativa main > section .box-check-in-check-out {
        grid-template-columns: 1fr;
    }
}

.page-16-cotista-documentos main > section .group-title-2 {
    margin-top: 32px;
    margin-bottom: 16px;
}
.page-16-cotista-documentos main > section .scroll-h {
    width: 100%;
    overflow-x: auto;
}
.page-16-cotista-documentos main > section .scroll-h::-webkit-scrollbar {
    height: 6px;
}
.page-16-cotista-documentos main > section .scroll-h::-webkit-scrollbar-thumb {
    background-color: #EA3309;
}
.page-16-cotista-documentos main > section .scroll-h::-webkit-scrollbar-track {
    background-color: #ccc;
}
.page-16-cotista-documentos main > section .scroll-h .table-inner {
    width: 1200px;
}
.page-16-cotista-documentos main > section .table-base.table-docs .table-header {
    grid-template-columns: 32.22% 13.97% 17.37% 20.99% 15.45%;
}
.page-16-cotista-documentos main > section .table-base.table-docs .table-body .line {
    grid-template-columns: 32.22% 13.97% 17.37% 20.99% 15.45%;
}
.page-16-cotista-documentos main > section .table-base.table-docs .table-body .line .col:last-of-type {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
@media screen and (max-width: 1400px) {
    .page-16-cotista-documentos main > section .table-base.table-docs .table-header {
        grid-template-columns: 32.22% 13.97% 21.37% 18.99% 15.45%;
    }
    .page-16-cotista-documentos main > section .table-base.table-docs .table-body .line {
        grid-template-columns: 32.22% 13.97% 21.37% 18.99% 15.45%;
    }
}
@media screen and (max-width: 1310px) {
    .page-16-cotista-documentos main > section .scroll-h .table-inner {
        width: 1230px;
    }
}
@media screen and (max-width: 1024px) {
    .page-16-cotista-documentos main > section {
        padding-bottom: 40px;
    }
    .page-16-cotista-documentos main > section .group-title-2 {
        margin-top: 0;
        margin-bottom: 32px;
        padding-bottom: 32px;
    }
    .page-16-cotista-documentos main > section .table-base {
        display: none;
    }
}

.page-19-colaborador-reserva-ativa main > section {
    padding-bottom: 50px;
}
.page-19-colaborador-reserva-ativa main > section .group-title-2 {
    margin-top: 32px;
    margin-bottom: 32px;
}
.page-19-colaborador-reserva-ativa main > section .group-title-2 h1 {
    display: flex;
    align-items: center;
    gap: 16px;
}
.page-19-colaborador-reserva-ativa main > section .general-data-form {
    margin-bottom: 32px;
}
.page-19-colaborador-reserva-ativa main > section .general-data-form h3 {
    font-size: 20px;
    font-weight: 500;
    color: #0A0A0A;
    margin-bottom: 16px;
}
.page-19-colaborador-reserva-ativa main > section .general-data-form .wrapper {
    display: grid;
    gap: 16px;
    grid-template-columns: 250px 194px 194px;
}
.page-19-colaborador-reserva-ativa main > section .general-data-form .wrapper .input-group label {
    white-space: nowrap;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 22px;
    color: #6C7797;
    text-transform: uppercase;
    font-weight: 400;
}
.page-19-colaborador-reserva-ativa main > section .general-data-form .wrapper .input-group input {
    background-color: #FFFFFF;
}
.page-19-colaborador-reserva-ativa main > section .general-data-form .wrapper .input-group input.icon-calendar {
    background-image: url(../images/icon-calendar.svg);
    background-repeat: no-repeat;
    background-position: right 24px center;
}
.page-19-colaborador-reserva-ativa main > section .box-general-data .wrapper {
    justify-content: flex-start;
    -moz-column-gap: 100px;
    column-gap: 100px;
}
.page-19-colaborador-reserva-ativa main > section .box-check-in-check-out .check-out .list-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 16px;
    column-gap: 16px;
    row-gap: 32px;
}
.page-19-colaborador-reserva-ativa main > section .box-check-in-check-out .check-out .list-images .item {
    border: 1px solid #CFD5E5;
    border-radius: 10px;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.page-19-colaborador-reserva-ativa main > section .box-check-in-check-out .check-out .list-images .item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.page-19-colaborador-reserva-ativa main > section .box-check-in-check-out .check-out .list-images .item input[type=file] {
    display: none;
}
.page-19-colaborador-reserva-ativa main > section .box-check-in-check-out .check-out .list-images .item .category {
    position: absolute;
    height: 26px;
    padding-inline: 24px;
    background-color: #EA3309;
    border-radius: 16px;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 24px;
    left: 24px;
    z-index: 10;
}
.page-19-colaborador-reserva-ativa main > section .box-check-in-check-out .check-out .list-images .item svg {
    margin-bottom: 18px;
}
.page-19-colaborador-reserva-ativa main > section .box-check-in-check-out .check-out .list-images .item p {
    font-size: 14px;
    font-weight: 400;
    color: #6C7797;
    text-align: center;
    margin-bottom: 12px;
}
.page-19-colaborador-reserva-ativa main > section .box-check-in-check-out .check-out .list-images .item p span {
    color: #EA3309;
    font-weight: 700;
    text-decoration: underline;
}
.page-19-colaborador-reserva-ativa main > section .box-check-in-check-out .check-out .list-images .item > span {
    font-size: 10px;
    line-height: 110%;
    font-weight: 400;
    color: #6C7797;
    text-align: center;
}

.page-19-colaborador-reserva-ativa main > section .box-check-in-check-out .check-out .list-images .item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
}

@media screen and (max-width: 1550px) {
    .page-19-colaborador-reserva-ativa main > section .box-check-in-check-out .check-out .list-images .item {
        aspect-ratio: 1/1.1;
    }
    .page-19-colaborador-reserva-ativa main > section .box-check-in-check-out .check-out .list-images .item .category {
        font-size: 12px;
        line-height: 12px;
        top: 20px;
        left: 20px;
    }
}
@media screen and (max-width: 1200px) {
    .page-19-colaborador-reserva-ativa main > section .box-check-in-check-out > .wrapper .box {
        padding: 24px;
    }
    .page-19-colaborador-reserva-ativa main > section .box-check-in-check-out .check-out .list-images {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 769px) {
    .page-19-colaborador-reserva-ativa main > section .general-data-form .wrapper {
        grid-template-columns: 1fr;
    }
    .page-19-colaborador-reserva-ativa main > section .box-check-in-check-out .check-out .list-images {
        gap: 16px;
    }
    .page-19-colaborador-reserva-ativa main > section .box-check-in-check-out .check-out .list-images .item {
        aspect-ratio: initial;
        min-height: 230px;
    }
    .page-19-colaborador-reserva-ativa main > section .box-check-in-check-out .check-out .list-images .item .category {
        top: 20px;
        left: 20px;
        font-size: 12px;
    }
}
@media screen and (max-width: 500px) {
    .page-19-colaborador-reserva-ativa main > section .box-general-data .wrapper {
        display: flex;
        -moz-column-gap: 0px;
        column-gap: 0px;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .page-19-colaborador-reserva-ativa main > section .box-general-data .wrapper .item {
        min-width: 110px;
    }
}

.page-20-colaborador-reserva-programada main > section .box-general-data {
    width: -moz-max-content;
    width: max-content;
}
.page-20-colaborador-reserva-programada main > section .box-check-in-check-out > .wrapper {
    display: block;
}
.page-20-colaborador-reserva-programada main > section .box-check-in-check-out .check-out .list-images {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    -moz-column-gap: 16px;
    column-gap: 16px;
    row-gap: 32px;
}
.page-20-colaborador-reserva-programada main > section .box-check-in-check-out .check-out .list-images .item {
    border: 1px solid #CFD5E5;
    border-radius: 10px;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.page-20-colaborador-reserva-programada main > section .box-check-in-check-out .check-out .list-images .item input[type=file] {
    display: none;
}
.page-20-colaborador-reserva-programada main > section .box-check-in-check-out .check-out .list-images .item .category {
    position: absolute;
    height: 26px;
    padding-inline: 24px;
    background-color: #EA3309;
    border-radius: 16px;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 24px;
    left: 24px;
    z-index: 20;
}
.page-20-colaborador-reserva-programada main > section .box-check-in-check-out .check-out .list-images .item svg {
    margin-bottom: 18px;
}
.page-20-colaborador-reserva-programada main > section .box-check-in-check-out .check-out .list-images .item p {
    font-size: 14px;
    font-weight: 400;
    color: #6C7797;
    text-align: center;
    margin-bottom: 12px;
}
.page-20-colaborador-reserva-programada main > section .box-check-in-check-out .check-out .list-images .item p span {
    color: #EA3309;
    font-weight: 700;
    text-decoration: underline;
}
.page-20-colaborador-reserva-programada main > section .box-check-in-check-out .check-out .list-images .item > span {
    font-size: 10px;
    line-height: 110%;
    font-weight: 400;
    color: #6C7797;
    text-align: center;
}

.page-20-colaborador-reserva-programada main > section .box-check-in-check-out .check-out .list-images .item .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
}

@media screen and (max-width: 1240px) {
    .page-20-colaborador-reserva-programada main > section .box-check-in-check-out > .wrapper .check-out .list-images {
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 769px) {
    .page-20-colaborador-reserva-programada main > section .box-general-data {
        width: 100%;
    }
    .page-20-colaborador-reserva-programada main > section .box-check-in-check-out > .wrapper .check-out .list-images {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .page-20-colaborador-reserva-programada main > section .box-check-in-check-out > .wrapper .check-out .list-images .item {
        aspect-ratio: initial;
        height: 230px;
    }
    .page-20-colaborador-reserva-programada main > section .box-check-in-check-out > .wrapper .check-out .list-images .item .category {
        top: 20px;
        left: 20px;
        font-size: 12px;
    }
}

.page-21-colaborador-revisao main > section .group-title-2 {
    margin-top: 32px;
    margin-bottom: 16px;
}
.page-21-colaborador-revisao main > section > .wrapper {
    display: grid;
    grid-template-columns: 1fr 442px;
    gap: 34px;
}
.page-21-colaborador-revisao main > section > .wrapper > .main-content {
    padding-bottom: 50px;
}
.page-21-colaborador-revisao main > section > .wrapper > .main-content .table-base .table-header {
    grid-template-columns: 21.24% 19.62% 47.85% 8.61% 8.61% 2.68%;
}
.page-21-colaborador-revisao main > section > .wrapper > .main-content .table-base .table-header .col:nth-child(3) {
    justify-content: flex-start;
}
.page-21-colaborador-revisao main > section > .wrapper > .main-content .table-base .table-header .col:nth-child(4) {
    justify-content: center;
}
.page-21-colaborador-revisao main > section > .wrapper > .main-content .table-base .table-body .line {
       grid-template-columns: 21.24% 19.62% 47.85% 8.61% 8.61% 2.68%;
}
.page-21-colaborador-revisao main > section > .wrapper > .main-content .table-base .table-body .line .col button {
    background-color: transparent;
    border: 0;
    cursor: pointer;
}
.page-21-colaborador-revisao main > section > .wrapper > .main-content .table-base .table-body .line .col:nth-child(3) {
    justify-content: flex-start;
}
.page-21-colaborador-revisao main > section > .wrapper > .main-content .table-base .table-body .line .col:nth-child(4) {
    justify-content: center;
    display: flex;
}

.page-21-colaborador-revisao.avarias main > section > .wrapper > .main-content .table-base .table-header,
.page-21-colaborador-revisao.avarias main > section > .wrapper > .main-content .table-base .table-body .line{
    grid-template-columns:11.24% 19.62% 47.85% 8.61% 8.61% 2.68%;
}

@media screen and (max-width: 1880px) {
    .page-21-colaborador-revisao main > section > .wrapper .table-base .table-filters {
        flex-direction: row;
    }
    .page-21-colaborador-revisao main > section > .wrapper .table-base .table-filters .form-search {
        width: -moz-max-content;
        width: max-content;
    }
    .page-21-colaborador-revisao main > section > .wrapper .table-base .table-filters .filters {
        width: 500px;
    }
    .page-21-colaborador-revisao main > section > .wrapper .table-base .table-filters .filters .input-group-select {
        width: 50%;
    }
}
@media screen and (max-width: 1600px) {
    .page-21-colaborador-revisao main > section > .wrapper .table-base .table-filters {
        flex-direction: column;
    }
    .page-21-colaborador-revisao main > section > .wrapper .table-base .table-filters .form-search {
        width: 100%;
    }
    .page-21-colaborador-revisao main > section > .wrapper .table-base .table-filters .filters {
        flex: 1;
        width: 100%;
        grid-template-columns: 1fr 1fr;
    }
    .page-21-colaborador-revisao main > section > .wrapper .table-base .table-filters .filters .input-group-select {
        width: 100%;
    }
}
@media screen and (max-width: 1850px) {
    .page-21-colaborador-revisao main > section > .wrapper > .main-content {
        max-width: 1000px;
    }
}
@media screen and (max-width: 1750px) {
    .page-21-colaborador-revisao main > section > .wrapper > .main-content {
        max-width: 900px;
    }
}
@media screen and (max-width: 1650px) {
    .page-21-colaborador-revisao main > section > .wrapper {
        grid-template-columns: 1fr 340px;
    }
    .page-21-colaborador-revisao main > section > .wrapper > .main-content {
        max-width: initial;
        width: 100%;
        flex: 1;
    }
}
@media screen and (max-width: 1024px) {
    .page-21-colaborador-revisao main > section > .wrapper {
        display: block;
    }
    .page-21-colaborador-revisao main > section > .wrapper > .main-content {
        max-width: initial;
        padding-bottom: 30px;
    }
    .page-21-colaborador-revisao main > section > .wrapper > .aside {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        transform: translateY(200%);
        background-color: rgba(0, 0, 0, 0.3);
        height: 100vh;
        display: flex;
        align-items: flex-end;
        z-index: 10;
        transition: 200ms;
    }
    .page-21-colaborador-revisao main > section > .wrapper > .aside .calendar {
        width: 100%;
        position: static;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
        position: relative;
        padding-top: 110px;
        padding-inline: 20px;
    }
    .page-21-colaborador-revisao main > section > .wrapper > .aside .calendar::before {
        content: "";
        display: block;
        width: 48px;
        height: 6px;
        border-radius: 15px;
        background-color: #D9E1E7;
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
    }
    .page-21-colaborador-revisao main > section > .wrapper > .aside .calendar::after {
        content: "Agendar";
        border-bottom: 1px solid #D9E1E7;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        padding-top: 38px;
        padding-bottom: 25px;
        font-size: 20px;
        font-weight: 700;
        color: #0A0A0A;
        text-align: center;
    }
    .page-21-colaborador-revisao main > section > .wrapper > .aside.active {
        transform: translateY(0);
    }
}
@media screen and (max-width: 1024px) {
    .page-21-colaborador-revisao main > section .group-title-2 {
        margin-top: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 32px;
        padding-bottom: 28px;
    }
    .page-21-colaborador-revisao main > section > .wrapper {
        display: block;
    }
    .page-21-colaborador-revisao main > section > .wrapper > .main-content .table-base {
        display: none;
    }
}

.page-22-colaborador-revisao-nova main > section .group-title-4 {
    margin-top: 32px;
    margin-bottom: 16px;
}
.page-22-colaborador-revisao-nova main > section .group-title-4 h1 {
    margin-block: 0;
}
.page-22-colaborador-revisao-nova main > section > form {
    margin-top: 32px;
    min-height: calc(100vh - 180px);
    display: flex;
    flex-direction: column;
}

.page-22-colaborador-revisao-nova.rodizio main > section > form .geral{
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap;
}

.page-22-colaborador-revisao-nova.rodizio main > section > form .right .posicao {
    display: flex;
    gap: 30px;
}

.page-22-colaborador-revisao-nova.rodizio main > section > form .right .posicao .input-group-select label{
    width: 300px;
}

.page-25-colaborador-pneus-nova.rodizio main > section > form .right .posicao .original .unique label{
    background-color: #CFD5E5;
    color: #6C7797;
}

.page-22-colaborador-revisao-nova main > section > form .line {
    max-width: 460px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: flex-end;
}
.page-22-colaborador-revisao-nova main > section > form .line + .line {
    margin-top: 32px;
}
.page-22-colaborador-revisao-nova main > section > form .line .input-group > label {
    font-size: 14px;
    font-weight: 400;
    color: #6C7797;
    text-transform: uppercase;
}
.page-22-colaborador-revisao-nova main > section > form .line .input-group input {
    height: 50px;
    background-color: #FFFFFF;
}
.page-22-colaborador-revisao-nova main > section > form .line .input-wrapper-select > label {
    font-size: 14px;
    font-weight: 400;
    color: #6C7797;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}
.page-22-colaborador-revisao-nova main > section > form .line .input-group-checkbox {
    margin-bottom: 17px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.page-22-colaborador-revisao-nova main > section > form .line .input-group-checkbox input {
    -webkit-appearance: unset;
    -moz-appearance: unset;
    appearance: unset;
    width: 24px;
    height: 24px;
    border-radius: 3px;
    border: 1px solid #C0C6CF;
    background-image: url(../images/icon-check.svg);
    background-position: top center;
    transition: 200ms;
    cursor: pointer;
    background-repeat: no-repeat;
}
.page-22-colaborador-revisao-nova main > section > form .line .input-group-checkbox input:checked {
    background-position: center center;
    background-color: #EA3309;
    border-color: #EA3309;
}
.page-22-colaborador-revisao-nova main > section > form .line .input-group-checkbox input:checked + label {
    color: #0A0A0A;
}
.page-22-colaborador-revisao-nova main > section > form .line .input-group-checkbox label {
    font-size: 14px;
    font-weight: 500;
    color: #6C7797;
    letter-spacing: 0;
    cursor: pointer;
    margin-top: 5px;
    display: block;
}
.page-22-colaborador-revisao-nova main > section > form .input-group {
    max-width: 460px;
    margin-top: 32px;
}
.page-22-colaborador-revisao-nova main > section > form .input-group > label {
    font-size: 14px;
    font-weight: 400;
    color: #6C7797;
    text-transform: uppercase;
}
.page-22-colaborador-revisao-nova main > section > form .input-group textarea {
    display: block;
    width: 100%;
    padding: 14px 32px;
    background-color: #FFFFFF;
    border: 1px solid #CFD5E5;
    border-radius: 8px;
    height: 145px;
    resize: none;
    font-size: 14px;
    font-weight: 500;
    color: #0A0A0A;
}
.page-22-colaborador-revisao-nova main > section > form .input-group textarea::-moz-placeholder {
    color: #A3AABE;
}
.page-22-colaborador-revisao-nova main > section > form .input-group textarea::placeholder {
    color: #A3AABE;
}
.page-22-colaborador-revisao-nova main > section > form .box-upload {
    margin-top: 32px;
    max-width: 460px;
}
.page-22-colaborador-revisao-nova main > section > form .box-upload .title {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    color: #6C7797;
    letter-spacing: 0;
    display: block;
    margin-bottom: 8px;
}
.page-22-colaborador-revisao-nova main > section > form .box-upload .box-file {
    gap: 32px;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    display: none;
}
.page-22-colaborador-revisao-nova main > section > form .box-upload .box-file .inner {
    flex: 1;
    max-width: 458px;
    border: 1px solid #0A0A0A;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 70px;
    padding-inline: 24px;
}
.page-22-colaborador-revisao-nova main > section > form .box-upload .box-file .inner span {
    font-size: 14px;
    font-weight: 500;
    color: #0A0A0A;
}
.page-22-colaborador-revisao-nova main > section > form .box-upload .box-file .btn-remove {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    border: 0;
}
.page-22-colaborador-revisao-nova main > section > form .box-upload .box-file .btn-remove span {
    font-size: 14px;
    font-weight: 500;
    color: #CB1E00;
    text-decoration: underline;
}
.page-22-colaborador-revisao-nova main > section > form .box-upload .box-file.has-content {
    display: flex;
}
.page-22-colaborador-revisao-nova main > section > form .box-upload input[type=file] {
    display: none;
}
.page-22-colaborador-revisao-nova main > section > form .box-upload .box {
    cursor: pointer;
    padding: 26px 20px;
    width: 100%;
    border: 1px solid #CFD5E5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    gap: 8px;
    flex-direction: column;
}
.page-22-colaborador-revisao-nova main > section > form .box-upload .box p {
    font-size: 14px;
    font-weight: 400;
    color: #6C7797;
}
.page-22-colaborador-revisao-nova main > section > form .box-upload .box p span {
    color: #EA3309;
    text-decoration: underline;
    font-weight: 500;
}
.page-22-colaborador-revisao-nova main > section > form .box-upload > span {
    font-size: 12px;
    font-weight: 400;
    color: #6C7797;
}
.page-22-colaborador-revisao-nova main > section > form footer {
    margin-top: auto;
    border-top: 1px solid #D0D5E5;
    padding-block: 32px;
}
.page-22-colaborador-revisao-nova main > section > form footer .btn-primary {
    width: -moz-max-content;
    width: max-content;
    padding-inline: 64px;
    font-size: 14px;
    height: 50px;
}
@media screen and (max-width: 769px) {
    .page-22-colaborador-revisao-nova main > section .group-title-4 {
        margin-top: 0;
    }
    .page-22-colaborador-revisao-nova main > section > form {
        margin-top: 0;
    }
    .page-22-colaborador-revisao-nova main > section > form .line {
        gap: 12px;
    }
    .page-22-colaborador-revisao-nova main > section > form .line .input-group > label {
        font-size: 12px;
        margin-bottom: 4px;
        line-height: 100%;
    }
    .page-22-colaborador-revisao-nova main > section > form .input-group > label {
        font-size: 12px;
        margin-bottom: 4px;
        line-height: 100%;
    }
    .page-22-colaborador-revisao-nova main > section > form .input-group textarea {
        padding: 20px;
    }
    .page-22-colaborador-revisao-nova main > section > form .box-upload .box p span {
        display: block;
    }
}

.page-23-colaborador-pneu-interna main > section {
    padding-bottom: 50px;
}
.page-23-colaborador-pneu-interna main > section .group-title-1 {
    margin-top: 32px;
    margin-bottom: 32px;
}
.page-23-colaborador-pneu-interna main > section > .wrapper {
    display: flex;
    gap: 138px;
    max-width: 1320px;
}
.page-23-colaborador-pneu-interna main > section > .wrapper .left {
    max-width: 655px;
}
.page-23-colaborador-pneu-interna main > section > .wrapper .left .box-general-datas {
    margin-bottom: 32px;
}
.page-23-colaborador-pneu-interna main > section > .wrapper .left .box-general-datas h2 {
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 500;
    color: #0A0A0A;
}
.page-23-colaborador-pneu-interna main > section > .wrapper .left .box-general-datas .box {
    border: 1px solid #CFD5E5;
    padding: 32px 48px;
    border-radius: 16px;
}
.page-23-colaborador-pneu-interna main > section > .wrapper .left .box-general-datas .box header {
    margin-bottom: 32px;
    display: flex;
    justify-content: space-between;
}
.page-23-colaborador-pneu-interna main > section > .wrapper .left .box-general-datas .box .item .title {
    font-size: 16px;
    font-weight: 400;
    color: #6C7797;
    display: block;
    text-transform: uppercase;
}
.page-23-colaborador-pneu-interna main > section > .wrapper .left .box-general-datas .box .item .text {
    font-size: 16px;
    font-weight: 500;
    color: #0A0A0A;
    display: block;
}
.page-23-colaborador-pneu-interna main > section > .wrapper .left .box-vehicle .group {
    margin-bottom: 40x;
}
.page-23-colaborador-pneu-interna main > section > .wrapper .left .box-vehicle .group h2 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #0A0A0A;
}
.page-23-colaborador-pneu-interna main > section > .wrapper .left .box-vehicle .group span {
    font-size: 16px;
    font-weight: 400;
    color: #6C7797;
}
.page-23-colaborador-pneu-interna main > section > .wrapper .left .box-vehicle .box-grafic {
    display: flex;
    align-items: center;
    gap: 40px;
}
.page-23-colaborador-pneu-interna main > section > .wrapper .left .box-vehicle .box-grafic .table {
    width: 325px;
    margin-top: 40px;
}
.page-23-colaborador-pneu-interna main > section > .wrapper .left .box-vehicle .box-grafic .table .row {
    padding-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.page-23-colaborador-pneu-interna main > section > .wrapper .left .box-vehicle .box-grafic .table .row + .row {
    border-top: 1px solid #C3C6CE;
    padding-block: 16px;
}
.page-23-colaborador-pneu-interna main > section > .wrapper .left .box-vehicle .box-grafic .table .row .person {
    display: flex;
    align-items: center;
    gap: 8px;
}
.page-23-colaborador-pneu-interna main > section > .wrapper .left .box-vehicle .box-grafic .table .row .person img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}
.page-23-colaborador-pneu-interna main > section > .wrapper .left .box-vehicle .box-grafic .table .row span {
    font-size: 16px;
    font-weight: 500;
    color: #0A0A0A;
}
.page-23-colaborador-pneu-interna main > section > .wrapper .left .box-vehicle .box-grafic .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}
.page-23-colaborador-pneu-interna main > section > .wrapper .left .box-vehicle .box-grafic .inner canvas {
    width: 193px !important;
    height: 193px !important;
}
.page-23-colaborador-pneu-interna main > section > .wrapper .left .box-vehicle .box-grafic .inner .legends .title {
    font-size: 16px;
    font-weight: 500;
    color: #384455;
    display: block;
    margin-bottom: 8px;
}
.page-23-colaborador-pneu-interna main > section > .wrapper .left .box-vehicle .box-grafic .inner .legends ul {
    list-style: none;
}
.page-23-colaborador-pneu-interna main > section > .wrapper .left .box-vehicle .box-grafic .inner .legends ul li {
    font-size: 16px;
    font-weight: 400;
    color: #7F9FB8;
    display: flex;
    align-items: center;
    gap: 8px;
}
.page-23-colaborador-pneu-interna main > section > .wrapper .left .box-vehicle .box-grafic .inner .legends ul li + li {
    margin-top: 16px;
}
.page-23-colaborador-pneu-interna main > section > .wrapper .left .box-vehicle .box-grafic .inner .legends ul li .bullet {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.page-23-colaborador-pneu-interna main > section > .wrapper .left .box-vehicle .box-grafic .inner .legends ul li .bullet.purple {
    background-color: #392F5A;
}
.page-23-colaborador-pneu-interna main > section > .wrapper .left .box-vehicle .box-grafic .inner .legends ul li .bullet.orange {
    background-color: #FF8811;
}
.page-23-colaborador-pneu-interna main > section > .wrapper .left .box-vehicle .box-grafic .inner .legends ul li .bullet .yellow {
    background-color: #F4D06F;
}
.page-23-colaborador-pneu-interna main > section > .wrapper .left .box-vehicle .box-grafic .inner .legends ul li .bullet .green {
    background-color: #9DD9D2;
}
.page-23-colaborador-pneu-interna main > section > .wrapper .right {
    flex: 1;
}
.page-23-colaborador-pneu-interna main > section > .wrapper .right h2 {
    font-size: 20px;
    font-weight: 500;
    color: #0A0A0A;
    margin-bottom: 16px;
}
.page-23-colaborador-pneu-interna main > section > .wrapper .right > img {
    display: block;
    width: 100%;
    aspect-ratio: 526/357;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 8px;
}
@media screen and (max-width: 1650px) {
    .page-23-colaborador-pneu-interna main > section > .wrapper {
        gap: 60px;
    }
}
@media screen and (max-width: 1500px) {
    .page-23-colaborador-pneu-interna main > section {
        padding-bottom: 40px;
    }
    .page-23-colaborador-pneu-interna main > section > .wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .page-23-colaborador-pneu-interna main > section > .wrapper .left,
    .page-23-colaborador-pneu-interna main > section > .wrapper .right {
        max-width: 655px;
    }
}
@media screen and (max-width: 769px) {
    .page-23-colaborador-pneu-interna main > section .group-title-1 {
        margin-top: 0;
        margin-bottom: 24px;
    }
    .page-23-colaborador-pneu-interna main > section > .wrapper {
        gap: 60px;
    }
    .page-23-colaborador-pneu-interna main > section > .wrapper .left .box-general-datas h2 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .page-23-colaborador-pneu-interna main > section > .wrapper .left .box-general-datas .box {
        padding: 20px;
    }
    .page-23-colaborador-pneu-interna main > section > .wrapper .left .box-general-datas .box .item .text {
        font-size: 16px;
        line-height: 140%;
    }
    .page-23-colaborador-pneu-interna main > section > .wrapper .left .box-vehicle .group h2 {
        font-size: 16px;
        margin-bottom: 4px;
    }
    .page-23-colaborador-pneu-interna main > section > .wrapper .left .box-vehicle .group span {
        font-size: 12px;
    }
    .page-23-colaborador-pneu-interna main > section > .wrapper .left .box-vehicle .box-grafic {
        flex-direction: column;
        gap: 0;
        justify-content: flex-start;
    }
    .page-23-colaborador-pneu-interna main > section > .wrapper .left .box-vehicle .box-grafic .table {
        width: 100%;
    }
    .page-23-colaborador-pneu-interna main > section > .wrapper .left .box-vehicle .box-grafic .inner {
        width: 100%;
        flex-direction: column;
        gap: 20px;
    }
    .page-23-colaborador-pneu-interna main > section > .wrapper .left .box-vehicle .box-grafic .inner .legends {
        margin-right: auto;
    }
    .page-23-colaborador-pneu-interna main > section > .wrapper .left .box-vehicle .box-grafic .inner .legends ul {
        display: flex;
        gap: 20px;
    }
    .page-23-colaborador-pneu-interna main > section > .wrapper .left .box-vehicle .box-grafic .inner .legends ul li + li {
        margin-top: 0;
    }
    .page-23-colaborador-pneu-interna main > section > .wrapper .right h2 {
        font-size: 16px;
        margin-bottom: 8px;
    }
}

.page-23-colaborador-pneu-interna.ver-rodizio main > section > .wrapper .left{
    width: 655px;
}

.page-23-colaborador-pneu-interna.ver-rodizio main > section > .wrapper{
    max-width: 1920px;
}

.page-23-colaborador-pneu-interna.ver-rodizio main > section > .wrapper .right {
    padding: 32px 48px;
    border: 1px solid #CFD5E5;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
}

.page-23-colaborador-pneu-interna.ver-rodizio main > section > .wrapper .right h2{
    margin-bottom: 0;
    text-align: left;
}

.page-23-colaborador-pneu-interna.ver-rodizio main > section > .wrapper .right h3{
    color: #6C7797;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: left;
}

.page-23-colaborador-pneu-interna.ver-rodizio main > section > .wrapper .right .outroflex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.page-23-colaborador-pneu-interna.ver-rodizio main > section > .wrapper .right .wrapper{
    padding: 32px 48px;
    border: 1px solid #CFD5E5;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
}

.page-23-colaborador-pneu-interna.ver-rodizio main > section > .wrapper .right .wrapper .cada {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.page-23-colaborador-pneu-interna.ver-rodizio main > section > .wrapper .right .wrapper .cada .item{
    flex: 1;
}

.page-23-colaborador-pneu-interna.ver-rodizio .input-group-select > label span{
    max-width: 150px;
    width: 150px;
}

.page-23-colaborador-pneu-interna.ver-rodizio main > section > .wrapper .right .wrapper .item h3{
    font-size: 14px;
    font-weight: 400;
    color: #6C7797;
    text-transform: uppercase;
    line-height: 22px;
}

.page-24-colaborador-pneu main > section .group-title-2 {
    margin-top: 32px;
    margin-bottom: 16px;
}
.page-24-colaborador-pneu main > section > .wrapper {
    display: grid;
    grid-template-columns: 1fr 442px;
    gap: 34px;
}
.page-24-colaborador-pneu main > section > .wrapper > .main-content {
    padding-bottom: 50px;
}
.page-24-colaborador-pneu main > section > .wrapper > .main-content .table-base .table-header {
    grid-template-columns: 21.42% 19.43% 19.43% 27.96% 4.74% 7.01%;
}
.page-24-colaborador-pneu main > section > .wrapper > .main-content .table-base .table-header .col:nth-child(3) {
    justify-content: flex-start;
}
.page-24-colaborador-pneu main > section > .wrapper > .main-content .table-base .table-header .col:nth-child(5) {
    justify-content: center;
}
.page-24-colaborador-pneu main > section > .wrapper > .main-content .table-base .table-body .line {
    grid-template-columns: 21.42% 19.43% 19.43% 27.96% 4.74% 7.01%;
}
.page-24-colaborador-pneu main > section > .wrapper > .main-content .table-base .table-body .line .col button {
    background-color: transparent;
    border: 0;
    cursor: pointer;
}
.page-24-colaborador-pneu main > section > .wrapper > .main-content .table-base .table-body .line .col:nth-child(3) {
    justify-content: flex-start;
}
.page-24-colaborador-pneu main > section > .wrapper > .main-content .table-base .table-body .line .col:nth-child(5) {
    justify-content: center;
    display: flex;
}
@media screen and (max-width: 1880px) {
    .page-24-colaborador-pneu main > section > .wrapper > .main-content {
        max-width: 1000px;
    }
    .page-24-colaborador-pneu main > section > .wrapper .table-base .table-filters .filters .input-group-select {
        width: 33%;
    }
}
@media screen and (max-width: 1750px) {
    .page-24-colaborador-pneu main > section > .wrapper > .main-content {
        max-width: 900px;
    }
}
@media screen and (max-width: 1650px) {
    .page-24-colaborador-pneu main > section > .wrapper {
        grid-template-columns: 1fr 340px;
    }
    .page-24-colaborador-pneu main > section > .wrapper > .main-content {
        max-width: initial;
        width: 100%;
        flex: 1;
    }
    .page-24-colaborador-pneu main > section > .wrapper .table-base .table-filters .filters {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .page-24-colaborador-pneu main > section > .wrapper .table-base .table-filters .filters .input-group-select {
        width: 100%;
    }
}
@media screen and (max-width: 1650px) {
    .page-24-colaborador-pneu main > section > .wrapper .table-base .table-filters .filters {
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 1024px) {
    .page-24-colaborador-pneu main > section > .wrapper {
        display: block;
    }
    .page-24-colaborador-pneu main > section > .wrapper > .main-content {
        max-width: initial;
        padding-bottom: 30px;
    }
    .page-24-colaborador-pneu main > section > .wrapper > .aside {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        transform: translateY(200%);
        background-color: rgba(0, 0, 0, 0.3);
        height: 100vh;
        display: flex;
        align-items: flex-end;
        z-index: 10;
        transition: 200ms;
    }
    .page-24-colaborador-pneu main > section > .wrapper > .aside .calendar {
        width: 100%;
        position: static;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
        position: relative;
        padding-top: 110px;
        padding-inline: 20px;
    }
    .page-24-colaborador-pneu main > section > .wrapper > .aside .calendar::before {
        content: "";
        display: block;
        width: 48px;
        height: 6px;
        border-radius: 15px;
        background-color: #D9E1E7;
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
    }
    .page-24-colaborador-pneu main > section > .wrapper > .aside .calendar::after {
        content: "Agendar";
        border-bottom: 1px solid #D9E1E7;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        padding-top: 38px;
        padding-bottom: 25px;
        font-size: 20px;
        font-weight: 700;
        color: #0A0A0A;
        text-align: center;
    }
    .page-24-colaborador-pneu main > section > .wrapper > .aside.active {
        transform: translateY(0);
    }
}
@media screen and (max-width: 1024px) {
    .page-24-colaborador-pneu main > section .group-title-2 {
        margin-top: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 32px;
        padding-bottom: 28px;
    }
    .page-24-colaborador-pneu main > section > .wrapper {
        display: block;
    }
    .page-24-colaborador-pneu main > section > .wrapper > .main-content .table-base {
        display: none;
    }
}

.page-25-colaborador-pneus-nova main > section .group-title-4 {
    margin-top: 32px;
    margin-bottom: 16px;
}
.page-25-colaborador-pneus-nova main > section > form .input-wrapper-select {
    max-width: 460px;
    margin-top: 32px;
}
.page-25-colaborador-pneus-nova main > section > form .input-wrapper-select > label {
    font-size: 14px;
    font-weight: 400;
    color: #6C7797;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}
.page-25-colaborador-pneus-nova main > section > form .input-wrapper-select .input-group-select > label {
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.page-25-colaborador-pneus-nova main > section > form .input-wrapper-select .input-group-select > label span {
    color: #0A0A0A;
    max-width: 200px;
}
.page-25-colaborador-pneus-nova main > section > form .box-upload {
    margin-bottom: 120px;
}
.page-25-colaborador-pneus-nova main > section > form .box-upload .wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.page-25-colaborador-pneus-nova main > section > form .box-upload .wrapper .item .box {
    position: relative;
    padding-block: 22px;
}
.page-25-colaborador-pneus-nova main > section > form .box-upload .wrapper .item .box p {
    font-size: 12px;
}
.page-25-colaborador-pneus-nova main > section > form .box-upload .wrapper .item .box .category {
    position: absolute;
    top: 8px;
    left: 8px;
    height: 20px;
    padding-inline: 18px;
    background-color: #EA3309;
    border-radius: 99px;
    font-size: 10px;
    font-weight: 400;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-25-colaborador-pneus-nova main > section > form .box-upload .wrapper .item > span {
    font-size: 10px;
    font-weight: 400;
    color: #6C7797;
    white-space: nowrap;
}
@media screen and (max-width: 769px) {
    .page-25-colaborador-pneus-nova main > section .group-title-4 {
        margin-top: 0;
        margin-bottom: 24px;
    }
    .page-25-colaborador-pneus-nova main > section > form .box-upload .wrapper {
        grid-template-columns: 1fr;
    }
}

.page-26-colaborador-pneu-troca main > section .group-title-1 {
    margin-top: 32px;
    margin-bottom: 32px;
}
.page-26-colaborador-pneu-troca main > section > .wrapper .right .box-before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    height: 360px;
}
.page-26-colaborador-pneu-troca main > section > .wrapper .right .box-before-after .box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
.page-26-colaborador-pneu-troca main > section > .wrapper .right .box-before-after .box .category {
    position: absolute;
    top: 20px;
    left: 16px;
    padding-inline: 18px;
    height: 20px;
    background-color: #EA3309;
    border-radius: 99px;
    font-size: 10px;
    font-weight: 500;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-26-colaborador-pneu-troca main > section > .wrapper .right .box-before-after .box img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media screen and (max-width: 769px) {
    .page-26-colaborador-pneu-troca main > section .group-title-1 {
        margin-top: 0;
        margin-bottom: 24px;
    }
    .page-26-colaborador-pneu-troca main > section > .wrapper .right .box-before-after {
        grid-template-columns: 1fr;
        height: auto;
    }
    .page-26-colaborador-pneu-troca main > section > .wrapper .right .box-before-after .box {
        aspect-ratio: 1/1;
    }
}

/* Estilo para o fundo do modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
}

/* Conteúdo do modal */
.modal-content2 {
    background: #fff;
    padding: 50px 35px;
    border-radius: 20px;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
}

/* Botão para fechar */
.modal-content2 .close {
    position: absolute;
    top: 30px;
    right: 30px;
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(21%) hue-rotate(340deg) brightness(100%) contrast(105%);
    cursor: pointer;
}

.modal-close:hover {
    background: #0056b3;
}
.swal2-styled{
    box-shadow: 0px 49px 79px 36px rgba(202, 209, 220, 0.1);
    border-radius: 8px;
}
.swal2-confirm{
    background: #EA3309 !important;
}

.swal2-styled.swal2-deny{
    background: #FFF !important;
    color: #EA3309 !important;
    border: solid 1px #d14529 !important;
}

.swal2-title{
    font-size: 1.3rem;
}

.swal2-html-container textarea{
    display: block;   
    border-radius: 8px;
    border: 1px solid #C0C6CF;
    background-color: transparent;
    font-size: 14px;
    color: #15161A;
    font-weight: 500;
    padding-inline: 30px;
    width: 100%;
}