/*New Bus Scheme*/
.dss-order__wrap {
    margin: 30px 0 0 0;
}
.dss-order__box {
    margin: 0 0 30px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.dss-order .dss-order__col-wrap+.dss-order__col-wrap {
    margin: 0 0 0 60px;
}
.dss-order__col {
    width: 280px;
    border: 1px solid #9f9f9f;
    border-radius: 30px;
    padding: 20px;
}
.dss-order__itm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 0 -10px;
}
.place-busy {
    position: relative;
    background-color: #d9d9d9;
    border-radius: 5px;
}
.place-itm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(20% - 10px);
    margin: 0 0 14px 10px;
    height: 40px;
    pointer-events: none;
    overflow: hidden;
}
.place-busy::after, .place-busy::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 20px;
    height: 2px;
    background-color: #9f9f9f;
}
.place-itm span {
    font-size: 12px;
    font-weight: 600;
    color: var(--orange);
}
.place-itm p {
    font-size: 12px;
    font-weight: 500;
    margin: 0 0 0 0;
}
.place-busy::after {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}
.place-busy::before {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}




/*Zvit System*/
.zvit-tpl .filter-box {
    display: flex;
    align-items: flex-end;
}

.zvit-tpl .filter-box .blue-btn {
    padding: 14px 15px;
}

.zvit-block-currency {
    background-color: #F2F2F2;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 12px;
    margin-bottom: 10px;
}

.zvit-block-currency .title-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.zvit-block-currency .title-box .downloads a {
    margin-left: 10px;
    font-size: 14px;
}

.zvit-block-currency p {
    margin-bottom: 0;
}

.zvit-block-currency .title-box .title {
    font-size: 16px;
    font-weight: 600;
    color: #4C74FF;
}

.zvit-block-table table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    margin: 20px 0;
}

.zvit-block-table table thead {
    border-bottom: 2px solid #ddd;
}

.zvit-block-table table thead tr th {
    padding: 8px;
}

.zvit-block-table table tbody tr {
    border-bottom: 1px solid #ddd;
}

.zvit-block-table table tbody tr td {
    padding: 8px;
}

.zvit-tpl .filter-box label {
    min-width: 15%;
}



    /*reis list*/
.station-item p:nth-child(1) {
    width: 30px;
}

.station-item p:nth-child(2) {
    width: 250px;
}

.station-item p:nth-child(3) {
    width: 300px;
}

.station-item p:nth-child(4) {
    width: 200px;
}

.station-item p:nth-child(5) {
    width: 60px;
}

.station-item p:nth-child(6) {
    width: 60px;
}

.station-item p:nth-child(7) {
    width: 30px;
}

.add-station {
    flex-wrap: wrap;
    row-gap: 20px;
}

.add-station label input, .add-station label select {
    width: 100%;
}

.add-station label:nth-child(1) {
    width: 33%;
}

.add-station label input[type="checkbox"] {
    transform: scale(1.5); /* Збільшує розмір на 50% */
    margin: 0 0 0 20px; /* Додає відступи, щоб не виглядало тісно */
}

.marshrute-item .city-item-col:nth-child(1) {
    width: 60%;
}

.marshrute-item .city-item-col:nth-child(2) {
    width: 15%;
}

.marshrute-item .city-item-col:nth-child(3) {
    width: 15%;
}

.marshrute-item .city-item-col:nth-child(4) {
    width: 10%;
}

/*Login-page*/
.login-page {
    padding: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form-box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    max-width: 450px;
    padding: 40px;
    background-color: rgb(76 116 255 / 75%);
    color: #fff;
    border-radius: 10px;
}

.login-form-box .login-title {
    text-align: center;
    width: 100%;
    font-size: 24px;
    font-weight: 600;
}

.login-form-box label {
    margin-bottom: 20px;
}

.login-form-box .m-input {
    width: 350px;
    border: none;
}

.login-form-box .login-btn {
    background-color: #4C74FF;
    width: 100%;
    text-align: center;
}

.login-form-box .login-btn:hover {
    background-color: #385DE1;
    border: 1px solid #385DE1;
    transition: all .5s;
}

@media (max-width: 767px) {
    .login-page {
        padding: 30px 10px;
    }
    .login-form-box {
        width: 100%;
    }
    .login-form-box label {
        width: 100%;
    }
    .login-form-box .m-input {
        width: 100%;
    }
}






.cities-list-tpl h4 {
    margin-top: 30px;
}

.add-station button {
    margin-top: 24px;
}

/*Station edit*/
.filter-box.add-station label{
    min-width: 20px;
}

.station-edit {
    margin: 40px 0 20px 0;
}

.station-edit label {
    width: 25%;
}

.station-edit label .m-input, .station-edit label .m-select {
    width: 100%;
}

.station-edit .bus-services {
    width: 100%;
}

/*Cities list*/
.main-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cities-list {
    margin: 40px 0;
}

.city-item {
    padding: 15px;
    background-color: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    border-radius: 5px;
    transition: all .5s;
}

.city-item:hover {
    background-color: #E9E9E9;
    transition: all .5s;
}

.city-item p {
    margin-bottom: 0;
}

.city-edit {
    margin: 40px 0 20px 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    column-gap: 20px;
}

.city-edit label {
    min-width: 30%;
}

.city-edit input {
    width: 100%;
}

.filter-box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    column-gap: 20px;
    margin: 20px 0 0 0;
    width: 100%;
}

.filter-box label {
    min-width: 25%;
}

.filter-box label select {
    width: 100%;
}



/*Change places*/
.change-places-section {
    padding: 20px;
    background-color: #F2F2F2;
    border-radius: 5px;
}

.change-places-section .title {
    margin-bottom: 20px;
}

.change-places-bus-box {
    display: flex;
    align-items: flex-start;
}

.change-places-bus-box .bus-box {
    margin-top: 0;
}

.change-places-bus-box .info {
    font-size: 12px;
    color: #929292;
    margin-left: 30px;
}

.new-tickets {
    margin-top: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #4C74FF;
    max-width: 600px;
}

.new-tickets-box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    column-gap: 20px;
}

.new-tickets-box .nt-item {
    margin-bottom: 10px;
}

.new-tickets-box .nt-item .place {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 35px;
    max-width: 35px;
    min-height: 35px;
    background-color: #BCCAFC;
    text-align: center;
    font-weight: 400;
    border-radius: 5px;
    margin-bottom: 5px;
    vertical-align: middle;
    color: white;
    cursor: pointer;
}

.new-tickets-box .label-text {
    font-size: 12px;
    color: #929292;
}

.new-tickets-box .nt-item .m-input {
    padding: 6px 10px 6px 10px;
}

.new-tickets-box .nt-item .m-select {
    padding: 6px 10px 6px 10px;
    height: 35px;
}

.new-tickets-box .nt-item .price {
    margin: 22px 0 0 0;
    color: #4C74FF;
}

.manager .ad-info {
    display: none;
}

.manager .bus-template .row {
    justify-content: flex-start !important;
}



    /*Order Edit*/
.btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
    border-radius: 5px;
    padding: 8px;
    width: 195px
}

.btn--blue {
    background-color: #4c74ff
}

.btn--green {
    background-color: #3d9128
}

.btn--orange {
    background-color: #DB4212
}

.m-page--column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.m-page__innerr {
    margin: 0 0 20px 0;
    padding: 20px;
    border-radius: 5px;
    background: #f2f2f2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 14px;
}

.m-col+.m-col {
    margin: 0 0 0 30px
}

.m-col.m--btn {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.m-col {
    width: auto;
}

.m-col p {
    margin: 0
}

.m-col>strong {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 10px 0
}

.m-col strong {
    color: #000;
    font-size: 14px;
    font-weight: 700;
    line-height: 17px
}

.m-col .btn {
    margin: 0 0 6px 0
}

.m-page__innerr-large {
    margin: 20px 0 50px 0;
    width: 100%
}

.m-page__innerr-large .m-col {
    width: calc(33.33333% - 30px)
}

.m-page__innerr-large .m-col:first-child {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.m-page__innerr-large .m-col__item {
    width: 100%
}

.m-page__innerr-large .m-col__item span {
    width: 135px;
    margin: 0 20px 0 0
}

.m-page__innerr-large strong {
    margin: 0 5px 0 0
}

.m-col__item {
    margin: 0 0 5px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.m-col__item span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #929292;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    width: 90px
}

.m-col__item-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.m-page__info {
    width: 100%
}

.m-page__info {
    margin: 0 0 10px 0
}

.m-page__table {
    width: 100%
}

.m-page__table-top {
    padding: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 0 0 -25px;
    color: #4c74ff;
    border-bottom: 1px solid #b1b1b1
}

.m-page__table-item {
    padding: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 0 0 -25px;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px
}

.m-page__table-col {
    margin: 0 0 0 25px
}

.m-page__table-col:nth-child(1) {
    width: 3%
}

.m-page__table-col:nth-child(2) {
    width: 25%
}

.m-page__table-col:nth-child(3) {
    width: 4%
}

.m-page__table-col:nth-child(4) {
    width: 7%
}

.m-page__table-col:nth-child(5) {
    width: 20%
}

.m-page__table-col:nth-child(6) {
    width: 15%;
    text-align: right;
    font-weight: 700
}

.m-page__sum {
    margin: 15px 0 0 0;
    width: 100%;
    display: block;
    text-align: right;
    color: #4c74ff;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px
}

.m-col__item .m-status {
    width: 120px;
}


/*Orders-list*/
.orders-list-page .filter-box {
    column-gap: 0;
}

.orders-list-page .filter-box label select {
    min-width: 120px;
}

.orders-list-page .filter-box label {
    width: 100%;
}

.filter-search .f-input {
    width: 100%;
}


.filter-box {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.filter-box-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 10px;
    border-right: 1px solid #4C74FF;
}

.filter-box-col:first-child {
    padding-left: 0;
}

.filter-box-col:last-child {
    border-right: none;
}

.filter-box .filter-box-col label:first-child {
    margin-bottom: 10px;
}

.filter-box .filter-box-col .label-text {
    font-size: 12px;
    color: #929292;
}

.filter-box-col label {

}

.filter-box-col .dates {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    column-gap: 10px;
}

.filter-box-col .m-datepicker {
    padding: 2px 5px 2px 5px;
}

.f-select {
    padding: 5px 30px 5px 10px;
    border: 1px solid #cccccc;
    border-radius: 3px;
    font-size: 12px;
    line-height: 1;
    height: 25px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxOSAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE4LjIxMzQgMC42MDY3ODVMOS43Mjg3MSA5LjA5MjdMMS4yNDI3OSAwLjYwNjc4NCIgc3Ryb2tlPSIjNEM3NEZGIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=);
    background-size: 13px;
}

.f-input {
    padding: 5px 30px 5px 10px;
    border: 1px solid #cccccc;
    border-radius: 3px;
    font-size: 12px;
    line-height: 1;
    height: 25px;
}

.f-button {
    padding: 5px 10px 5px 10px;
    border: 1px solid #4C74FF;
    background-color: #4C74FF;
    color: #fff;
    text-align: center;
    border-radius: 3px;
    font-size: 12px;
    line-height: 1;
    height: 25px;
    width: 100px;
}

.f-button-grey {
    border: 1px solid #929292;
    background-color: #929292;
}



.orders-list-box {

}

.orders-list-box .order-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background-color: #F2F2F2;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 12px;
    margin-bottom: 10px;
}

.oi-number {
    width: 100px;
}

.oi-name {
    width: 120px;
}

.oi-contact {
    width: 130px;
}

.oi-route {
    width: 200px;
}

.oi-time {
    width: 100px;
}

.oi-action {
    width: 200px;
}

.oi-number .date {
    color: #929292;
}

.oi-contact .mail {
    overflow-x: hidden;
    transition: all .5s;
}

.oi-contact .mail:hover {
    overflow-x: visible;
    background-color: #f2f2f2;
    transition: all .5s;
}

.oi-route {
    background-image: url("/wp-content/uploads/2024/10/arrow-icon-vertical.svg");
    background-size: 7px;
    background-position: left center;
    background-repeat: no-repeat;
    padding-left: 10px;
}

.oi-time .time img, .oi-time .date img {
    margin-right: 5px;
}

.oi-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.oi-action .actions-box .tickets {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 14px;
}

.oi-action .actions-box .tickets .tickets-count {
    margin: 0 10px 0 5px;
}

.oi-action .status-box .status {
    width: 17px;
    height: 17px;
    border-radius: 20px;
    margin-top: 3px;
}

.oi-action .edit-button-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.oi-action .edit-button {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4C74FF;
    border-radius: 3px;
}

.pagination {
    column-gap: 5px;
}

.pagination .page-numbers {
    padding: 3px;
    background-color: #4c74ff;
    border: 1px solid #4c74ff;
    color: #fff;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 3px;
}

.pagination .current {
    background-color: #fff;
    color: #4c74ff;
}

.pagination .next {
    width: auto;
}

.pagination .prev {
    width: auto;
}


    /*Sales*/
.sale-form .label-text {
    font-size: 14px;
    color: #929292;
    margin-bottom: 5px;
}

.sale-title, .sale-title input {
    width: 100%;
}

.field-group {
    margin-top: 20px;
}

.field-group-box {
    border: 1px solid #BCCAFC;
    border-radius: 5px;
    padding: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    column-gap: 20px;
}

.sale-form form button {
    margin-top: 20px;
}





/*End Sales*/
/*Bus template*/
.bus-box {
    margin-top: 30px;
}

.bus-template .choose-place {
    border: 1px solid #BCCAFC;
    min-height: 200px;
    max-width: 720px;
    border-radius: 30px 5px 5px 30px;
    padding: 20px 20px 20px 20px;
    display: flex;
    user-select: none; /* Вимикаємо стандартне виділення */
}

.bus-template .choose-place .first-row {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
}

.bus-template .choose-place .col-md-1 img {
    margin-bottom: 5px;
}

.bus-template .choose-place .col-md-1 {
    flex-direction: column;
    display: flex;
    width: 40px;
    justify-content: space-between;
    height: 100%;
    min-height: 160px;
}

.bus-template .choose-place .col-md-1 {
    flex-direction: column;
    display: flex;
    width: 40px;
    justify-content: space-between;
    height: 100%;
}

.bus-template .choose-place .place {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-width: 30px;
    max-width: 30px;
    min-height: 30px;
    background-color: #BCCAFC;
    text-align: center;
    font-weight: 400;
    border-radius: 5px;
    margin-bottom: 5px;
    vertical-align: middle;
    color: white;
    cursor: pointer;
}

.bus-template .choose-place .place.closed {
    background-color: #929292;
}

.bus-template .choose-place .place.sold {
    background-color: #DB4212; /* Колір для виділених місць */
}

.bus-template .choose-place .place.selected {
    background-color: #4C74FF; /* Колір для виділених місць */
}

.bus-template .choose-place .place .prs {
    font-size: 10px;
    height: 15px;
    margin-top: -9px;
    display: none;
}





.bus-template .choose-place .place.reserved {
    background-color: #cf8080;
    cursor: default;
}

.bus-template .choose-place .place span {
    vertical-align: text-top;
}

.bus-template .floor-title {
    margin-bottom: 5px;
    margin-top: 20px;
}

.buttons-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 20px;
    margin-top: 20px;
}










/*End Bus template*/

.m-page-subtitle {
    color: #4C74FF;
}

.marshrute-prices {
    margin-top: 30px;
    border: 1px solid #f2f2f2;
    border-radius: 5px;
}

.m-curr-prices {
    padding: 10px 15px;
}

.m-curr-prices .item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.m-curr-prices .item p {
    margin-bottom: 0;
}

.m-curr-prices .item .date {
    width: 250px;
    font-family: Courier New, monospace;
    margin-top: 3px;
}

.m-curr-prices .item .price {
    color: #4C74FF;
}

.change-price-box {
    margin-top: 30px;
}

.change-price {
    margin-top: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    column-gap: 20px;
}

.change-price .title {
    font-size: 18px;
    color: #4C74FF;
    font-weight: 500;
}

.change-price .label-text {
    font-size: 14px;
    color: #929292;
    margin-bottom: 5px;
}

.m-datepicker {
    padding: 15px 20px 15px 20px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 14px;
}

.m-input {
    padding: 15px 20px 15px 20px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 14px;
}







.marshrutes {
    margin-top: 50px;
}

.marshrute {
    padding: 15px;
    background-color: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    border-radius: 5px;
    transition: all .5s;
}

.marshrute:hover {
    background-color: #E9E9E9;
    transition: all .5s;
}

.marshrute .cities {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.marshrute .cities .city-start {
    min-width: 300px;
}

.marshrute .cities p {
    margin: 0;
}

.marshrute .cities img {
    margin: 6px 20px 0;
}

.marshrute .cities .station {
    font-size: 12px;
}

.marshrutes a {
    text-decoration: none;
}

.time img {
    margin-right: 10px;
}

.link-edit-blue {
    display: flex;
    padding: 5px;
    background-color: #4C74FF;
    border-radius: 3px;
    width: 20px;
    height: 20px;
    text-align: center;
    transition: all .5s;
}

.link-edit-blue:hover {
    background-color: #385DE1;
    transition: all .5s;
}






.m-select {
    padding: 15px 50px 15px 20px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 14px;
    height: 50px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxOSAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE4LjIxMzQgMC42MDY3ODVMOS43Mjg3MSA5LjA5MjdMMS4yNDI3OSAwLjYwNjc4NCIgc3Ryb2tlPSIjNEM3NEZGIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=);
}

.select-reis {
    display: flex;
    align-items: flex-end;
}

.select-reis label {
    margin-right: 20px;
}

.select-reis .label-text {
    font-size: 14px;
    color: #929292;
    margin-bottom: 5px;
}

.blue-btn {
    background-color: #4C74FF;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #4C74FF;
    border-radius: 5px;
    color: #fff !important;
    text-decoration: none;
    cursor: pointer;
    transition: all .5s;
}

.blue-btn:hover {
    background-color: #385DE1;
    border: 1px solid #385DE1;
    transition: all .5s;
}

.btn:first-child:hover, :not(.btn-check)+.btn:hover {
    color: inherit !important;
    background-color: inherit !important;
    border-color: inherit !important;
}

.btn:visited {
    color: #fff;
}


/*Sidebar*/
.manager {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    height: 100vh;
}

.m-sidebar {
    max-width: 300px;
    width: 300px;
    background-color: #F2F2F2;
    height: 100vh;
    position: fixed;
}

.m-page {
    width: calc( 100% - 300px );
    padding: 20px 30px;
    margin-left: 300px;
}

.m-page h1 {
    font-size: 21px;
    color: #4C74FF;
    margin: 0 0 10px 0;
}

.m-page-title {
    margin: 0 0 30px 0;
}

.menu-man, .menu-man ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-man li a {
    text-decoration: none;
    padding: 10px;
    display: block;
    background-color: transparent;
    color: #000;
}

.menu-level-2 li a {
    padding-left: 40px;
    font-size: 14px;
}

.menu-level-1 svg {
    margin-right: 5px;
    width: 20px;
}

.menu-man .active a {
    background-color: #4C74FF;
    color: #fff;
}

.menu-man .active>ul li a {
    background-color: #385DE1;
}

.menu-man li a:hover {
    background-color: #2850DF !important;
    color: #fff;
    transition: all .5s;
}

.menu-man .active>ul .active {
    font-weight: 600;
}

.menu-man .active svg path {
    fill: #fff;
}

.m-sidebar .account {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px 10px;
    border-bottom: 1px solid #4C74FF;
    margin-bottom: 20px;
}

.m-sidebar .account .left {
    max-width: 70%;
    width: 70%;
}

.m-sidebar .account p {
    margin: 0;
}

.m-sidebar .account .name {
    font-weight: 600;
}

.m-sidebar .account .role {
    font-size: 14px;
    color: #929292;
}

.m-sidebar .account .logout {
    font-size: 14px;
}






body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
}

a, a:visited, a:hover {
    color: inherit;
}

p {
    margin: 0 0 20px 0;
}