﻿
:root {
    --accent: #36578C !important;
    --header-bacground-color-Grid: #3e67b9 !important;
    --header-color-Grid: #fff !important;
}

* {
    /*outline: 1px red solid;*/
}


/*Estilos de colores para las cartas de ruta*/

.one-day-left-row {
    background-color: #ebb201 !important;
}

.pass-day-row {
    background-color: #ffe19c !important;
}

.negative-days-row {
    background-color: #fe9a91 !important;
}

/*Fin de los estilos*/

/* Header color*/
.k-grid .k-grid-header .k-table-th {
    background-color: var(--header-bacground-color-Grid);
    color: var(--header-color-Grid);
}

.trv-error-message {
    font-size: 20px !important;
}


.trv-report-viewer .k-splitter {
    line-height: 1.25 !important;
}

.subTitle {
    color: #666666;
}

.k-grid .k-table .k-grid-header-sticky, .k-grid .k-table .k-grid-content-sticky, .k-grid .k-table .k-grid-footer-sticky {
    border-inline-width: 0 !important;
}

.k-table-thead, .k-table-header, .k-table-group-sticky-header {
    /*background-color: aqua;*/
}

.k-webkit {
    overflow-x: hidden;
}

.drawer-container {
    height: 100vh;
    /*background-color: red;*/
}

.toolBar-filters-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.k-grid-title {
    font-size: x-large;
    padding: 15px;
    font-weight: 500;
}

.sub-Title-Dashboard {
    font-size: large;
}

.alert-wrapper {
    position: absolute;
}

/*Con esto se corrige el dashboard*/
.k-drawer-content {
    background-color: #F5F8F9;
    overflow-y: auto;
    height: 91vh;
}

.config_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title-config {
    color: var(--header-bacground-color-Grid)
}

.subtitle-config {
    color: darkslategray;
}

.config_header img {
    height: 80px;
}

.k-overlay {
    background-color: rgb(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(5px) !important;
    opacity: initial;
}

.btn_return_icon {
    display: flex;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    background-color: skyblue;
    color: white;
    justify-content: center;
    align-items: center;
}

    .btn_return_icon:hover {
        color: skyblue;
        background-color: white;
    }

@media (max-width: 1833px) {
    .container-logIn {
        border-radius: 2rem !important;
    }

    .layoud-login {
        width: 50vw !important;
    }
}

.car-movement {
    overflow: hidden;
    font-size: 40px;
    height: 50px;
}

    .car-movement > .car {
        position: relative;
        display: inline-block;
        animation: linear infinite;
        animation-name: run;
        animation-duration: 15s;
    }


@keyframes run {
    0% {
        transform: rotateY(180deg);
        left: -100px;
    }

    50% {
        transform: rotateY(180deg);
        left: 100%;
    }

    51% {
        transform: rotateY(0deg);
        left: calc(100% + 100px);
    }

    100% {
        transform: rotateY(0deg);
        left: -100px;
    }
}

/*No aplicar estylo*/
.k-tabstrip-content.k-active, .k-tabstrip > .k-content.k-active {
    /*padding-inline: 0;*/
}
/*
.btn_gridSetting {
    background-color: var(--header-bacground-color-Grid);
    color: var(--header-color-Grid);
}

    .btn_gridSetting:hover {
        background-color: var(--header-color-Grid);
        color: var(--header-bacground-color-Grid)
    }
*/
/*.txt-default-label ul {
    font-size: 15px;
}*/

.card-footer-alter {
    display: flex;
    justify-content: space-between;
    padding-inline: 0;
    margin-top: 20px;
}

.k-card-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.general-modal-container {
    background-color: #ffff;
    border-radius: 15px;
    /*width: max-content;*/
}
/*modal animation*/
.k-window {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out !important;
    animation: fadeInUp 0.5s ease-in-out !important;
}
/*.reports_window {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out !important;
    animation: fadeReport 0.5s ease-in-out !important;
}*/

.k-grid-right {
    text-align: right !important;
}

.k-grid-justify {
    text-align: center !important;
}

table tbody tr .k-grid-right {
    padding-right: 20px !important;
}
/* non-sortable headers */
.k-grid th.k-grid-right {
    text-align: right;
}
/* sortable headers */
th.k-grid-right .k-cell-inner > .k-link {
    justify-content: right;
    /*justify-content: left;*/
}
/*Modal Titulo*/
.k-window-titlebar {
    /*    background-color: #2196F3;
    color: white;*/
}

.alert-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    margin: 0px auto;
    padding: 0px auto;
    left: 0;
    top: 0;
    overflow: hidden;
    position: fixed;
    /*background: rgb(0, 0, 0, 0.3);*/
    z-index: 123456678;
}
/*
@keyframes fadeReport {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}*/

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes open-frame {
    0% {
        transform: scale(0.90);
    }

    25% {
        transform: scale(0.95);
    }

    50% {
        transform: scale(0.97);
    }

    75% {
        transform: scale(0.93);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes open-frame-modal {
    /*Abre hacia los lados*/
    /*0% {
        opacity: 0;
        transform: translateX(-500px);
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }*/
    /*Abre desde el centro*/

    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes OpenIconAnimation {
    from {
        font-size: 20px;
    }

    to {
        font-size: 74px;
    }
}

.k-centered {
    position: static !important;
    transform: translate(0%, 0%);
}

.alert {
    padding-right: 20px;
    padding-left: 20px;
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.alert-header {
    display: flex;
    flex-direction: column;
    height: 157px;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.alert-frame {
    background: #fff;
    min-height: 200px;
    min-width: 400px;
    box-shadow: 5px 5px 10px rgb(0, 0, 0, 0.2);
    border-radius: 10px;
    animation: open-frame 0.3s linear;
    z-index: 999999;
    transition: min-height ease 0.3s;
}

.loading-container {
    display: flex;
    flex-direction: row;
}

.message_user_name {
    font-size: 14px;
    text-align: left;
    margin: 8px;
}

.alert-img {
    height: 80px;
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    align-self: center;
    animation: OpenIconAnimation ease 0.5s;
}

.alert-close {
    width: 30px;
    height: 30px;
    color: rgb(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Dosis", sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    line-height: 30px;
    transition: color 0.5s;
    margin-left: auto;
    margin-right: 5px;
    margin-top: 5px;
}

.alert-close-circle {
    width: 30px;
    height: 30px;
    background: #e4eae7;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 17.5px;
    margin-top: -15px;
    margin-right: -15px;
    font-family: "Dosis", sans-serif;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    line-height: 30px;
    transition: background 0.5s;
    margin-left: auto;
}

    .alert-close-circle:hover {
        background: #fff;
    }

.alert-close:hover {
    color: rgb(0, 0, 0, 0.5);
}

.alert-body {
    padding: 0px 30px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.alert-title {
    font-size: 18px !important;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 5px;
    color: #222;
    align-self: center;
}

.alert-warning_message {
    font-size: 15px !important;
    color: #666;
    font-family: "Open Sans", sans-serif;
    font-weight: 800;
    font-size: 15px;
    text-align: left;
    margin-bottom: 35px;
    line-height: 1.6;
    align-self: flex-start;
}

.alert-button {
    min-width: 140px;
    height: 35px;
    border-radius: 20px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.5s;
    padding: 0 15px;
    align-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


    .alert-button:focus {
        outline: 0;
    }

.question-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 12px;
}

.confirm-button {
    min-width: 100px;
    height: 35px;
    border-radius: 20px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.5s;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .confirm-button:focus {
        outline: 0;
    }

.cancel-button {
    min-width: 100px;
    height: 35px;
    border-radius: 20px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: white;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-right: 10px;
    line-height: 1.6;
    transition: background 0.5s;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .cancel-button:focus {
        outline: 0;
    }

.error-bg {
    color: #d85261;
}

.success-bg {
    color: #2dd284;
}

.warning-bg {
    color: #fada5e;
}

.question-bg {
    color: #779ecb;
}

.info-timer {
    background: rgb(195 229 249 / 20%);
}

.info-bg {
    color: #88cef7;
}

.alert-Error {
    border-left: 5px solid #F8132C;
}

.alert-Confirm {
    border-left: 5px solid #008FFF;
}

.alert-Alert {
    border-left: 5px solid #FFD600;
}

/*.alert-warning {
    border-left: 5px solid #FFD600;
}*/

.alert-Success {
    border-left: 5px solid rgb(100, 219, 167);
}

.alert-Info {
    border-left: 5px solid #008FFF;
}


.error-timer {
    background: rgb(219 84 99 / 20%);
    backdrop-filter: blur(3px);
}

.warning-timer {
    background: rgb(248 221 110 / 20%);
    backdrop-filter: blur(3px);
}

.success-timer {
    background: rgb(100 219 167 / 20%);
    backdrop-filter: blur(3px);
}


.question-timer {
    background: rgb(121 156 200 / 20%);
    backdrop-filter: blur(3px);
}


.info-timer {
    background: rgb(195 229 249 / 20%);
    backdrop-filter: blur(3px);
}

.modalEditar-content {
    display: flex;
    justify-content: space-between;
}

.EstructureModalEditar {
    display: flex;
    flex-wrap: wrap;
    width: auto;
    justify-content: space-between;
}

.estruc-modal-content {
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 15px;
}

.page-description {
    margin-bottom: 10px;
}

h3 {
    font-size: 1.2em;
    margin: 10px 0;
}

.btn_toolBar, .btn_toolBar button {
    /*background-color: #3369A7 !important;*/
}

.AppBar-color-alter {
    background-color: #3369A7 !important;
}

/*Color Rojo*/
.requeridField {
    color: #f31700;
    margin-left: 2px;
}

.k-title {
    font-size: 30px;
    font-weight: 600;
}

.btn-edit {
}

.btn-save {
}

.btn-delete {
}

.btn-edit {
}

.bg-white {
    background-color: #fff;
}
/*Spinner personalizado*/
.windows-spinner {
    box-sizing: border-box;
    color: #3A5489;
    width: 60px;
    height: 60px;
    padding: 3px;
    overflow: visible;
}

    .windows-spinner > circle {
        fill: none;
        stroke: currentColor;
        cx: 50%;
        cy: 50%;
        r: 50%;
        stroke-width: 6px;
        stroke-linecap: round;
        transform-origin: center;
    }

.accionColumn {
    display: flex !important;
    justify-content: center !important;
}
/**/

