@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

:root {
    --dark-blue: #1a2035;
    --dark-blue-2: rgb(32, 41, 64);
    --dark-blue-3: rgb(41, 52, 80);
    --dark-blue-4: rgb(50, 62, 94);
    --blue-gradient: linear-gradient(90deg, rgb(55, 80, 193) 0%, rgba(93, 17, 180, 1) 100%);
    --blue-gradient-2: linear-gradient(90deg, rgb(60, 88, 212) 0%, rgb(104, 39, 223) 100%);
    --lightblue-gradient: linear-gradient(90deg, rgb(28, 141, 156) 0%, rgb(36, 176, 194) 100%);
    --blue: rgb(55, 80, 193);
    --blue-alpha-gradient: linear-gradient(90deg, rgba(55, 80, 193, 0.5) 0%, rgba(93, 17, 180, 0.5) 100%);
    --blue-alpha-gradient-2: linear-gradient(90deg, rgba(74, 98, 206, 0.5) 0%, rgba(113, 39, 197, 0.5) 100%);
    --soft-gray: rgb(200, 200, 200);
    --gray: #8b92a9;
    --hover-transparent-light: rgba(255, 255, 255, 0.1);
    --orange-gradient: linear-gradient(90deg, rgb(214, 96, 16) 0%, rgb(246, 172, 11) 100%);
    --orange-gradient: linear-gradient(90deg, rgb(212, 127, 30) 0%, rgb(226, 165, 34) 100%);
    --orange: rgba(246, 116, 11, 1);
    --red-gradient: linear-gradient(90deg, rgb(245, 5, 1) 0%, rgba(217, 70, 66, 1) 100%);
    --red: rgba(211, 42, 38, 1);
    --green-gradient: linear-gradient(90deg, rgb(72, 170, 83) 0%, rgb(157, 199, 85) 100%);
    --green-gradient-2: linear-gradient(90deg, rgb(37, 150, 51) 0%, rgb(107, 155, 24) 100%);
    --green-gradient-3: linear-gradient(90deg, rgb(60, 133, 69) 0%, rgb(111, 168, 63) 100%);
    --green: rgba(50, 181, 66, 1);
}

html, body {
    display: block;
    margin: 0px;
    height: 100%;
    background-color: var(--dark-blue) !important;
    overflow-x: hidden !important;
}

* {
    color: var(--soft-gray);
    scrollbar-width: thin;
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

input.ph-hide:placeholder {
    opacity: 0 !important;
}

input.ph-hide::placeholder {
    opacity: 1 !important;
}

::-webkit-scrollbar {
    width: 11px;
    height: 11px;
}

::-webkit-scrollbar-track {
    background: var(--dark-blue);
}

::-webkit-scrollbar-thumb {
    background: var(--blue-alpha-gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--blue-alpha-gradient-2);
}

::-webkit-scrollbar-corner {
    background-color: rgba(0, 0, 0, 0);
}

input[type="text"]:disabled, input[type="text"]:read-only {
    cursor: default;
}

.bg-blue {
    background: var(--blue-gradient) !important;
}

.bg-lightblue {
    background: var(--lightblue-gradient) !important;
}

.bg-blue-2 {
    background: var(--blue-gradient-2) !important;
}

.bg-darkblue {
    background: var(--dark-blue) !important;
}

.bg-darkblue-2 {
    background: var(--dark-blue-2) !important;
}

.bg-darkblue-3 {
    background: var(--dark-blue-3) !important;
}

.bg-blue-alpha {
    background: var(--blue-alpha-gradient) !important;
}

.bg-gray {
    background: var(--gray) !important;
}

.bg-orange {
    background: var(--orange-gradient) !important;
}

.bg-orange-2 {
    background: var(--orange-gradient) !important;
}

.bg-green {
    background: var(--green-gradient) !important;
}

.bg-green-2 {
    background: var(--green-gradient-2) !important;
}

.bg-green-3 {
    background: var(--green-gradient-3) !important;
}

.bg-red {
    background: var(--red-gradient) !important;
}

.border-orange {
    border: 1px solid var(--orange) !important;
}

.border-green {
    border: 1px solid var(--green) !important;
}

.c-pointer {
    cursor: pointer;
}

.toBack {
    z-index: -10 !important;
}

.border-red {
    border: 1px solid var(--red) !important;
}

.btn-outline-green {
    background-color: rgba(0, 0, 0, 0) !important;
    border: 1px solid var(--green) !important;
    transition: 0s !important;
}

.btn-outline-green:hover {
    background: var(--green-gradient) !important;
}

.btn-outline-blue {
    background-color: rgba(0, 0, 0, 0) !important;
    border: 1px solid var(--blue) !important;
    transition: 0s !important;
}

.btn-outline-blue:hover {
    background: var(--blue-gradient) !important;
}

.btn-outline-red {
    background-color: rgba(0, 0, 0, 0) !important;
    border: 1px solid var(--red) !important;
    transition: 0s !important;
}

.btn-outline-red:hover {
    background: var(--red-gradient) !important;
}

.btn-outline-orange {
    background-color: rgba(0, 0, 0, 0) !important;
    border: 1px solid var(--orange) !important;
    transition: 0s !important;
}

.btn-outline-orange:hover {
    background: var(--orange-gradient) !important;
}

.btn-outline-green * {
    color: var(--green);
}

.btn-outline-red * {
    color: var(--red);
}

.btn-outline-orange * {
    color: var(--orange) !important;
}

.btn-outline-blue * {
    color: var(--blue);
}

.btn-outline-green:hover *, .btn-outline-red:hover *, .btn-outline-orange:hover *, .btn-outline-blue:hover * {
    color: white !important;
}

.btn-outline-blue:disabled, .btn-outline-green:disabled, .btn-outline-red:disabled, .btn-outline-orange:disabled {
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
}

.btn-outline-blue:disabled *, .btn-outline-green:disabled *, .btn-outline-red:disabled *, .btn-outline-orange:disabled * {
    color: rgba(255, 255, 255, 0.5) !important;
}

.pill-green {
    border-radius: 100px !important;
    padding: 2px 10px 2px 10px !important;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid var(--green);
    color: var(--green) !important;
}

.pill-green:hover {
    background: var(--green-gradient);
    color: white !important;
    box-shadow: 0 0 5px var(--green);
}

.pill-red {
    border-radius: 100px !important;
    padding: 2px 10px 2px 10px !important;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid var(--red);
    color: var(--red) !important;
}

.pill-red:hover {
    background: var(--red-gradient);
    color: white !important;
    box-shadow: 0 0 5px var(--red);
}

.pill-orange {
    border-radius: 100px !important;
    padding: 2px 10px 2px 10px !important;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid var(--orange);
    color: var(--orange) !important;
}

.pill-orange:hover {
    background: var(--orange-gradient);
    color: white !important;
    box-shadow: 0 0 5px var(--orange);
}

.pill-blue {
    border-radius: 100px !important;
    padding: 2px 10px 2px 10px !important;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid var(--blue);
    color: var(--blue) !important;
}

.pill-blue:hover {
    background: var(--blue-gradient);
    color: white !important;
    box-shadow: 0 0 5px var(--blue);
}

.pill-green i {
    color: var(--green);
}

.pill-red i {
    color: var(--red);
}

.pill-orange i {
    color: var(--orange);
}

.pill-blue i {
    color: var(--blue);
}

.pill-green:hover>i, .pill-red:hover>i, .pill-orange:hover>i, .pill-blue:hover>i {
    color: white !important;
}

div.bonos-btn {
    transform: translateY(-15px);
}

.add-bono:hover {
    cursor: pointer;
    color: white;
}

.round-blue {
    border-radius: 100% !important;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid var(--blue);
    color: var(--blue) !important;
}

.round-blue:hover {
    background: var(--blue-gradient);
    color: white !important;
    box-shadow: 0 0 5px var(--blue);
}

.txt-blue {
    color: var(--blue) !important;
}

.txt-orange {
    color: var(--orange) !important;
}

.txt-alert {
    color: #e0a121 !important;
}

.txt-green {
    color: var(--green) !important;
}

.txt-red {
    color: var(--red) !important;
}

.txt-black {
    color: black !important;
}

.txt-white {
    color: white !important;
}

fieldset {
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 4px;
    padding: 0 10px 0 10px !important;
}

fieldset legend {
    transform: translate(0px, -15px);
    font-size: 17px;
    background-color: var(--dark-blue-2);
    width: min-content;
}

#fecha_liquidacion~span {
    position: absolute;
    right: 0px;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-blue);
    height: 100%;
    width: 36px;
    border-radius: 0px 4px 4px 0px;
}

.b-1 {
    border: 1px solid white;
}

.b-05 {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bl-1 {
    border-left: 1px solid white;
}

.bt-1 {
    border-top: 1px solid white;
}

.br-1 {
    border-right: 1px solid white;
}

.bl-05 {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.br-05 {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.bb-0 {
    border-bottom: none !important;
}

.total-row {
    width: 100%;
    position: relative;
    height: 50px;
}

.total-row div {
    display: flex;
    justify-content: flex-end;
}

td a button {
    min-width: 28px;
    min-height: 28px;
}

.total-cubicacion {
    border: solid 1px rgba(255, 255, 255, 0.2);
    padding: 7px;
    font-size: 16px;
    width: min-content;
    display: table-cell;
    background-color: var(--dark-blue-2);
    white-space: nowrap !important;
}

.title-xl {
    font-family: 'Lato', sans-serif;
    font-size: 35px;
}

.title-l {
    font-family: 'Lato', sans-serif;
    font-size: 30px;
}

.title-tr {
    font-family: 'Lato', sans-serif;
}

.item-partida {
    width: CALC(100% - 45px) !important;
    height: 35px;
}

.tr-item td, .tr-item-cuadrilla td {
    color: rgba(255, 255, 255, 0.6) !important;
}

.tr-partida {
    background-color: var(--dark-blue);
}

.tr-partida td {
    color: white !important;
}

.tr-partida td input {
    border: solid 1px rgba(255, 255, 255, 0.3);
    width: 100%;
}

.btn-remove-item {
    height: 35px;
    width: 35px;
    position: relative;
}

.btn-remove-item i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.progress {
    border: 1px solid var(--dark-blue) !important;
    height: 20px !important;
}

.login {
    width: 100%;
    height: CALC(100% - 100px);
}

.login .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.form-container {
    width: 60%;
    max-width: 500px;
    margin: auto;
    position: relative;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    background-color: var(--dark-blue-2);
}

.form-container h4, .form-container h5 {
    font-weight: 300;
    text-align: center;
}

.form-container li {
    color: darkgray;
    font-size: 12px;
}

.float-form li {
    color: darkgray;
    font-size: 12px;
}

form {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.form-group {
    height: 65px !important;
    position: relative;
}

.float-form .scroll-form {
    min-height: 200px !important;
    max-height: 400px !important;
    overflow-y: scroll;
}

.scroll-form .form-group {
    height: auto !important;
}

.tip-pw {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: var(--dark-blue-3);
}

.form-group input, .form-group select, .form-group textarea, .input-group input {
    background-color: var(--dark-blue) !important;
    border-style: none;
    outline-style: none;
    width: 100%;
    color: white !important;
}

.input-group .input-group-text {
    background-color: var(--dark-blue) !important;
    border-style: none;
    outline-style: none;
    color: white !important;
    cursor: default;
}

.form-group input:focus, .form-group select:focus, .input-group select:focus, .input-group input:focus {
    box-shadow: none;
    box-shadow: 0 0 5px var(--blue);
}

.form-group label {
    position: absolute;
    bottom: 35px;
    left: 10px;
    color: grey;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus~label, .form-group input:valid~label, .form-group input:read-only~label {
    transform: translate(-9px, -30px);
    font-size: 14px;
}

label.input-label {
    font-size: 14px;
    color: grey;
}

input:read-only {
    cursor: default;
}

.form-group label span.required {
    color: var(--red);
    font-weight: lighter;
}

.active-label {
    transform: translate(-9px, -30px);
    font-size: 14px;
}

.app {
    display: flex;
    height: 100%;
    position: relative;
}

body {
    background-image: url("cartographer.png");
    background-color: rgb(11, 20, 53) !important;
}

hr {
    margin: 0px !important;
    color: white !important;
    width: 100% !important;
}

.nav-container {
    height: 100%;
    max-height: 100%;
    background-image: url("navbar-wallpaper.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: fixed;
    overflow-y: scroll;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
    z-index: 11;
}

.nav-container, .notificaciones-msg {
    scrollbar-width: none;
}

.nav-container::-webkit-scrollbar {
    display: none;
}

.navbar {
    width: 250px;
    position: fixed;
    top: 0px;
    left: 0px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

a {
    text-decoration: none !important;
}

.navbar ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    list-style: none;
    padding: 0px;
}

.navbar ul li i {
    padding-right: 5px;
}

.navbar ul li h2 {
    font-weight: 200;
    margin: 0 auto 10px auto;
}

.navbar ul li {
    border-radius: 4px;
    width: 100%;
    margin-left: 0px;
    padding: 12px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.navbar ul a {
    color: rgba(0, 0, 0, 0);
    border-radius: 4px;
    margin-bottom: 10px;
}

.navbar ul a:hover {
    transition: all 0.1s ease-in;
    background: var(--hover-transparent-light);
}

.navbar ul a>* {
    font-weight: 100;
}

.nav-col {
    margin-left: 20px;
    border-radius: 4px;
}

.nav-item-selected {
    background: var(--blue-alpha-gradient) !important;
}

.navbar ul li i.ri-arrow-down-s-line {
    padding: 0 2px 0 2px;
}

nav .nav-item-selected li i.ri-arrow-down-s-line {
    transform: rotate(-180deg);
    transition: .2s;
}

nav .collapsed li i.ri-arrow-down-s-line {
    transform: rotate(0deg);
    transition: .2s;
}

.all-container {
    width: CALC(100% - 250px);
    margin-left: 250px;
    padding: 15px 30px 15px 30px;
}

.number-span {
    background-color: red !important;
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    font-weight: bolder;
    top: -10px;
    right: -10px;
    font-size: 14px;
}

.flex-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
    margin-top: 20px;
}

.info-card {
    position: relative;
    display: flex;
    flex-direction: column !important;
    border-radius: 4px;
    background: var(--dark-blue-2);
}

.info-card {
    font-weight: lighter;
    padding: 15px;
}

.info-card i {
    font-size: 50px;
    position: absolute;
    left: 10px;
    top: -20px;
    width: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    border-radius: 4px;
}

.info-card hr {
    width: 100% !important;
}

.info-card h4 {
    text-align: right;
}

.info-card h6 {
    text-align: right;
}

.info-card p {
    text-align: right;
    padding-bottom: 10px;
}

.info-card a {
    width: 90px;
    margin-top: 2px;
}

i.new {
    position: relative;
    font-size: 20px;
}

i.new div {
    background: var(--red-gradient) !important;
    width: 15px;
    height: 15px;
    position: absolute;
    top: -7px;
    right: -10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

i.new div h6 {
    margin: 0px !important;
}

.all-container .table-container-all {
    background: var(--dark-blue-2);
    border-radius: 4px;
    padding: 10px;
    position: relative;
    margin-top: 25px;
}

.table-container {
    max-height: 520px !important;
    position: relative;
}

.head-table {
    background: var(--blue-gradient);
    padding: 10px 15px 10px 15px;
    border-radius: 4px;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    width: CALC(100% - 20px);
    margin: 0px 10px 0px 10px;
    position: relative;
    transform: translateY(-25px);
}

.head-table>* {
    color: #d9dadf !important;
}

.head-table h1, .head-table h2, .head-table h3, .head-table h4, .head-table h5 {
    font-weight: 400 !important;
}

.head-table p {
    font-weight: 300 !important;
    margin-bottom: 5px;
}

.all-container .table-container-all .table-container table tbody tr td {
    color: var(--soft-gray);
    font-weight: 300;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.all-container .table-container-all .table-container table tbody tr:hover td {
    background-color: var(--dark-blue-3) !important;
}

td.items-2 {
    min-width: 70px;
}

td.items-3 {
    min-width: 111px;
}

.td-btn button {
    width: 26px;
    height: 26px;
    position: relative;
}

.td-btn button i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

button {
    border-radius: 4px !important;
    border-style: none;
    outline-style: none;
    color: var(--soft-gray) !important;
    position: relative;
}

button:hover {
    color: white !important;
}

button.bg-blue:hover {
    box-shadow: 0 0 5px var(--blue);
}

button.bg-orange:hover {
    box-shadow: 0 0 5px var(--orange);
}

button.bg-red:hover {
    box-shadow: 0 0 5px var(--red);
}

button.bg-green:hover {
    box-shadow: 0 0 5px var(--green);
}

.ml5 {
    margin-left: 5px;
}

.top-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.options-bar input {
    border-bottom: 1px solid rgb(55, 80, 193);
}

.options-bar .form-group {
    width: 300px;
}

.form-group input:focus~label, .form-group input:valid~label {
    transform: translate(-9px, -30px);
    font-size: 14px;
}

.all-container::after {
    content: "<br>";
    opacity: 0;
}


.optMaterial {
    background-color: var(--dark-blue-2);
    padding: 10px;
}

.btn-2-options {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    margin-bottom: 10px;
}

.btn-2-options button, .btn-2-options a {
    width: 49%;
}

.btn-2-options a button {
    width: 100%;
}

.nav-back-transparent {
    height: min-content;
    min-height: 100%;
    width: 250px;
    background-color: rgba(41, 43, 63, 0.9);
}

.cubicacion-titulo {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cubicacion-titulo h4, .cubicacion-titulo h5 {
    font-weight: 400;
}

.cubicacion-titulo h5 {
    font-size: 15px;
}

.mt-75 {
    margin-top: 75px !important;
}

.mt-90 {
    margin-top: 90px !important;
}

.mt-custom-1 {
    margin-top: 55px;
}

td input {
    width: 70px;
    margin-right: 20px;
    background-color: var(--dark-blue);
    border-radius: 4px;
    border-style: none;
    outline-style: none;
}

.cubicacion-btn {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 20px;
}

.input-td-no-style {
    background-color: rgba(0, 0, 0, 0) !important;
}

.td-input-btn {
    position: relative;
    width: 123px !important;
    min-width: 123px !important;
}

.td-input-btn input {
    width: 70px;
    margin-right: 20px;
    background-color: var(--dark-blue);
    border-radius: 4px;
    border-style: none;
    outline-style: none;
}

.td-input-btn button {
    position: absolute;
    right: 0px;
    margin-right: 10px;
}

td {
    white-space: nowrap !important;
}

.ws-nowrap {
    white-space: nowrap !important;
}

.table-responsive table thead {
    background: var(--dark-blue-2);
    position: sticky;
    top: 0;
    z-index: 1;
}

.modal-content {
    background: var(--dark-blue-2) !important;
}

.modal-header {
    border: none !important;
}

.modal-body {
    top: -15px;
    padding: 0 1rem 0 1rem !important;
}

.modal-body * {
    color: var(--gray);
}

.modal-footer {
    border: none !important;
    padding: 0 1rem 1rem 1rem !important;
}

.sin-estilo {
    background: none;
    border: none;
    border-radius: 0;
}

.bg-none {
    background-color: rgba(0, 0, 0, 0);
    color: white;
}

.td-a {
    position: absolute;
    left: 0px;
    transform: translateY(-4px);
    height: 33px;
    width: 100%;
}

.navbar-top {
    display: none;
    width: 100%;
    height: 57px;
    position: fixed;
    z-index: 10;
    padding: 5px 30px 5px 30px;
    background: var(--dark-blue);
}

.navbar-top button {
    background-color: var(--dark-blue);
    font-weight: 700;
    font-size: 25px;
    z-index: 11;
}

.back-float-form {
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.back-float-form p {
    font-weight: lighter;
}

.back-float-form-2 {
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.float-form {
    position: relative;
    width: 50%;
    background-color: var(--dark-blue-2);
    padding: 10px;
    border-radius: 4px;
}

.tr-alert {
    position: relative;
    background-color: rgba(223, 208, 0, 0.4);
}

.tr-alert:hover {
    background-color: rgba(223, 208, 0, 0.6) !important;
}

.tr-danger {
    position: relative;
    background-color: rgba(255, 0, 0, 0.4);
}

.tr-danger:hover {
    background-color: rgba(255, 0, 0, 0.6) !important;
}

.p-0 {
    padding: 0px !important;
}

.m-0 {
    margin: 0px !important;
}

.toast {
    top: 15px;
    right: 15px;
    z-index: 1200;
}

.toast strong {
    font-size: 18px;
}

.toast i {
    font-size: 24px;
    padding: 0 15px 0 5px;
}

.arrow-traslado-x {
    display: block !important;
}

.arrow-traslado-y {
    display: none !important;
}

@media (max-width: 1200px) {
    .hoja .orden-buttons {
        right: -40px !important;
        width: 37.6px;
    }

    .hoja .orden-buttons i {
        font-size: 14px;
    }

    .buttons-liquidacion {
        right: -50px !important;
    }
}

@media (max-width: 992px) {

    .hoja h6, .hoja input, .hoja textarea, .hoja table {
        font-size: 1.5vw !important;
    }

    .options-bar {
        margin-top: 0px;
    }

    .notificaciones {
        position: fixed;
        top: 20px;
        right: 25px;
    }

    .nav-container {
        position: fixed;
        transform: translateX(-100%);
    }

    .all-container {
        display: block;
        width: 100% !important;
        margin-top: 60px;
        margin-left: 0px;
    }

    .navbar-top {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .navbar-top button {
        position: absolute;
        top: 10px;
        left: 30px;
    }

    .navbar-top h2 {
        position: absolute;
        top: 10px;
        right: 30px;
    }

    /*Animaciones NavBar*/
    .show-nav {
        animation: show-nav-animation 0.5s ease forwards;
    }

    @keyframes show-nav-animation {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(0%);
        }
    }

    .hidde-nav {
        animation: hidde-nav-animation 0.5s ease forwards;
    }

    @keyframes hidde-nav-animation {
        0% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    /*Animaciones Button*/
    .to-right-btn-nav {
        animation: to-right-btn-animation 0.5s ease forwards;
    }

    @keyframes to-right-btn-animation {
        0% {
            left: 30px;
        }

        100% {
            left: 260px;
        }
    }

    .to-left-btn-nav {
        animation: to-left-btn-animation 0.5s ease forwards;
    }

    @keyframes to-left-btn-animation {
        0% {
            left: 260px;
        }

        100% {
            left: 30px;
        }
    }

    /*Animaciones Titulo*/
    .to-right-h2-nav {
        animation: to-right-h2-animation 0.5s ease forwards;
    }

    @keyframes to-right-h2-animation {
        0% {
            right: 30px;
        }

        100% {
            right: -250px;
        }
    }

    .to-left-h2-nav {
        animation: to-left-h2-animation 0.5s ease forwards;
    }

    @keyframes to-left-h2-animation {
        0% {
            right: -250px;
        }

        100% {
            right: 30px;
        }
    }

    /*Animaciones all container*/
    .reduce-all-container {
        animation: reduce-all-animation 0.5s ease forwards;
    }

    @keyframes reduce-all-animation {
        100% {
            transform: translateX(291px);
        }
    }

    .expand-all-container {
        animation: expand-all-animation 0.5s ease forwards;
    }

    @keyframes expand-all-animation {
        0% {
            transform: translateX(291px);
        }

        100% {
            transform: translateX(0px);
        }
    }

    .buttons-liquidacion button>span {
        display: none;
    }
}

.hoja-horizontal * {
    font-size: 14px;
}

@media (max-width: 768px) {
    .form-container {
        width: 90%;
    }

    .options-bar .form-group {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .w-md-50 {
        width: 50% !important;
    }
}

@media (max-width: 676px) {
    .progreso .paso:not(.active) {
        display: none !important;
    }

    .progreso .paso.active {
        margin: auto;
    }
}


@media (max-width: 576px) {
    .total-row div {
        flex-direction: column;
    }

    .total-row h5 {
        margin: 0;
        width: 100%;
        text-align: end;
    }

    .hoja-horizontal * {
        font-size: 1.5vw !important;
    }

    .hoja-horizontal i {
        font-size: 14px !important;
    }

    .hoja-horizontal .buttons-liquidacion button {
        font-size: 14px;
        height: 34px;
    }

    .hoja-horizontal {
        width: 80% !important;
    }

    .hoja img {
        width: 70% !important;
    }

    .form-container {
        width: 100%;
    }

    .options-bar .buttons {
        margin-bottom: 15px;
        white-space: nowrap !important;
    }

    .float-form {
        width: 90%;
    }

    .arrow-traslado-x {
        display: none !important;
    }

    .arrow-traslado-y {
        display: block !important;
    }

    .w-sm-100 {
        width: 100% !important;
    }

    .btn-2-options {
        flex-direction: column;
    }

    .btn-2-options button, .btn-2-options a {
        width: 100%;
    }

    .btn-2-options button:nth-child(1) {
        margin-bottom: 10px !important;
        background-color: red !important;
    }
}

.legend-241 {
    width: 241px;
}

@media (max-width: 450px) {
    .mt-custom-1 {
        margin-top: 90px;
    }

    .legend-241 {
        width: 200px;
    }

    .notificaciones-msg {
        width: 250px !important;
    }
}

.th-01 {
    background-color: rgba(0, 0, 0, 0.1) !important;
}

.th-02 {
    background-color: rgba(0, 0, 0, 0.2) !important;
}

table.table-space th, table.table-space td {
    padding-left: 10px;
    padding-right: 10px;
}

.hoja {
    background: white;
    max-width: 830px;
    position: relative;
    min-width: min-content;
    margin: 30px auto 50px auto;
    padding-top: 15px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hoja b {
    color: black;
}

.hoja.generada input, .hoja.generada textarea {
    border: none;
}

.hoja .orden-buttons {
    position: absolute;
    display: flex;
    flex-direction: column;
    right: -100px;
    top: 0px;
}

.hoja .orden-buttons button, .hoja .orden-buttons a {
    width: 100%;
    margin-bottom: 10px;
}

.hoja h6 {
    margin-bottom: 0px !important;
    color: black !important;
    padding-bottom: 5px;
}

.hoja img {
    width: 50%;
    padding-left: 10px;
}

.hoja h6, .hoja input, .hoja textarea, .hoja table {
    font-size: 14px;
}

.hoja table {
    width: 97%;
    margin: 0px auto 15px auto;
}

.hoja .n-orden {
    padding: 5px;
    margin-right: 12px;
    border: solid 1px black;
    border-radius: 4px;
    text-align: center;
}

.hoja .head-info {
    display: flex;
    width: 97%;
    padding: 10px;
    margin: 10px auto 10px auto;
    border: solid 1px black;
    border-radius: 4px;
    position: relative;
}

.hoja table thead tr th, .hoja table tbody tr td {
    padding: 0px !important;
    color: black !important;
}

.hoja .head-info .head-left, .hoja .head-info .head-right {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.hoja .head-info h6.title-info {
    text-align: start;
    font-weight: bold;
}

.input-field-head {
    display: flex;
    justify-content: space-between !important;
    align-items: center;
}

.input-field-head input, .input-field-head textarea {
    width: 72%;
    margin-left: 5px;
    color: black !important;
}

.input-field-head h6 {
    width: min-content;
    text-align: start;
}

.bottom-container-orden {
    display: flex;
    width: 90%;
    margin: 0 auto 0 auto;
}

.bottom-container-orden .bottom-left {
    display: flex;
    flex-direction: column;
    width: 60%;
}

.bottom-container-orden .bottom-left .input-field-bottom-son {
    display: flex;
}

.bottom-container-orden .bottom-left .input-field-bottom-son h6 {
    margin-top: 4px !important;
}

.bottom-container-orden .bottom-left .input-field-bottom-son textarea {
    width: 90%;
    margin-left: 5px;
    padding-right: 10px;
    color: black !important;
}

.bottom-container-orden .bottom-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 216px;
    margin: auto;
}

.bottom-container-orden .input-field-bottom {
    display: flex;
    align-items: center;
}

.bottom-container-orden .input-field-bottom input {
    width: 100px;
    margin-left: 5px;
    color: black !important;
}

.w-85 {
    width: 85% !important;
}

.orden-footer {
    margin-top: 80px;
    display: flex;
    width: 100%;
}

.orden-footer .orden-footer-grid {
    width: 33%;
    text-align: center;
}

.hoja .total {
    font-weight: bold;
}

.hoja .total {
    font-weight: bold;
}

.hoja .field-total {
    border-top: solid 1px black;
    padding-top: 2px;
}

td.hidde-on-print, th.hidde-on-print {
    width: 10px !important;
}

#material:focus~.coincidencias {
    display: block !important;
}

.coincidencias {
    background-color: var(--dark-blue);
    position: absolute;
    right: 0px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px;
    z-index: 1;
}

.coincidencias p {
    padding: 0px;
    margin: 0px;
    font-size: 14px;
}

.div-spinner-btn {
    width: 28px !important;
    height: 28px !important;
}

/* .hoja-horizontal {
    width: 415px;
    padding-bottom: 10px;
    background-color: white;
    position: relative;
} */

.hoja-horizontal {
    width: 11cm;
    height: 21.59;
    padding-bottom: 10px;
    background-color: white;
    position: relative;
}

.hoja-horizontal div.title div img {
    width: 70%;
}

.hoja-horizontal div.title div {
    display: flex;
    align-items: flex-end;
}

.hoja-horizontal div.title div p {
    font-size: 10px;
    color: black;
    width: 100%;
    margin: 0px;
}

div.empresa p, .hoja-horizontal .footer-1 p {
    font-size: 9px;
    color: black;
    margin: 0px;
}

.hoja-horizontal .footer-2 div span {
    font-size: 10px;
    color: black;
    margin: 0px;
}

.hoja-horizontal .head, .hoja-horizontal .body, .hoja-horizontal .footer-1, .hoja-horizontal .footer-2 {
    border: solid 1px black;
    padding: 0 5px 0 5px;
    margin-bottom: 1px;
}

.hoja-horizontal .head span, .hoja-horizontal .head p, .hoja-horizontal .head div div, .hoja-horizontal .body span, .hoja-horizontal .body div div {
    color: black;
    font-size: 10px;
    margin: 0px;
}

.show-on-print {
    display: none;
}

.col-print-liquidacion {
    width: 100%;
}

.buttons-liquidacion {
    position: absolute;
    display: flex;
    flex-direction: column;
    right: -100px;
}

.buttons-liquidacion button {
    margin-bottom: 5px;
}

table.anticipos tbody tr td {
    border: solid 1px black;
    vertical-align: bottom;
    height: 6vw;
}

table.anticipos tbody tr td:last-child {
    width: 25vw;
}

@media print {

    /* nuevo */
    @page {
        margin: 0;
    }

    .hide-on-print, .hide-on-print * {
        display: none !important;
    }

    body, .all-container {
        margin: 0 !important;
        padding: 0 !important;
    }

    .p-ms-2 {
        margin-left: 1cm !important;
    }

    .navbar-top, .nav-container, .buttons-liquidacion, .orden-buttons {
        display: none !important;
    }

    .show-on-print-flex {
        display: flex !important;
    }

    .show-on-print {
        display: inline !important;
    }

    .hoja-horizontal {
        width: 100% !important;
        height: 100% !important;
        display: flex;
        align-items: center;
        padding-top: .3cm !important;
    }

    .hoja-horizontal .row * {
        white-space: nowrap !important;
    }

    .hoja {
        width: 18.5cm !important;
        height: 100% !important;
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
        margin: 0px auto 0px auto !important;
        font-size: 14px;
    }

    .hoja *, .hoja-horizontal * {
        font-size: 14px;
    }

    .hoja table *, .hoja-horizontal table * {
        font-size: 12px;
    }

    .hoja-horizontal .liq-cp-1 {
        padding: 0 5px 0 0 !important;
    }

    .hoja-horizontal .liq-cp-2 {
        padding: 0 5px 5px 0 !important;
    }

    .hoja-horizontal .liq-cp-3 {
        padding: 0 0 0 5px !important;
    }

    .options-bar, .nav-buttons, .progreso * {
        display: none !important;
    }

    input, textarea {
        border: none;
    }

    html, body {
        height: auto;
    }
}

.logo-v {
    position: relative;
    width: 100%;
    height: 40px;
}

.logo-v>img {
    position: absolute;
    width: 120px;
    height: 60px;
    left: 50%;
    transform: translate(-50%, -40px);
}

h1, h1, h3, h4, h5, h6, p {
    color: var(--gray);
    margin: 0;
    padding: 0;
}

.disabled-text {
    color: var(--gray);
}

.td-acciones>* {
    margin: 0 7.5px 0 7.5px;
    font-size: 1.1rem;
}

.td-acciones a {
    vertical-align: middle;
}

a {
    color: var(--soft-gray) !important;
}

a:hover {
    color: white !important;
}

.notificaciones {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
}

.notificaciones .icon {
    position: relative;
}

.notificaciones.lock {
    opacity: 0.5;
    cursor: default;
}

.notificaciones i {
    font-size: 22px !important;
}

.notificaciones .count {
    background: var(--red);
    border-radius: 30px;
    min-width: 17px;
    min-height: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    transform: translate(15px, -33px);
}

.notificaciones .count span {
    font-size: 12px;
}

.notificaciones-msg {
    background: var(--dark-blue-3) !important;
    padding: 5px !important;
    z-index: 1;
    position: absolute !important;
    top: 30px;
    right: -10px;
    width: 300px;
    max-height: 400px;
    overflow-y: scroll;
    cursor: default;
}

#collapse-notifications.show:after {
    content: '';
    width: 20px;
    height: 15px;
    position: absolute;
    top: 17px;
    right: 16px;
    background-color: var(--dark-blue-4);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

#borrar_notificaciones:hover {
    color: #ccd2e8 !important;
}

.show {
    animation: fade-in;
    animation-duration: .2s;
}

.hidde {
    animation: fade-out;
    animation-duration: .2s;
}

.notificaciones-msg ul {
    width: 100%;
    padding: 5px !important;
    margin: 0px !important;
}

.notificaciones-msg div {
    cursor: default;
    padding: 0 10px 5px 0 !important;
    text-align: end;
}

.notificaciones-msg div span {
    padding: 0 !important;
    cursor: pointer;
    font-size: 12px;
}

.notificaciones-msg span:nth-child(1):hover {
    background: none;
}

.notificaciones-msg span:nth-child(1), .notificaciones-msg span:nth-child(2) {
    border-top: none !important;
}

.notificaciones-msg span {
    width: 100%;
    padding: 5px 10px 5px 10px !important;
    border-radius: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 100 !important;
    color: var(--gray) !important;
    cursor: pointer;
}

.notificaciones-msg span:hover {
    background: rgba(255, 255, 255, 0.05);
}

.detalles-asignacion {
    position: absolute !important;
    top: 27px;
    left: 0;
    z-index: 10;
    background-color: var(--dark-blue-3) !important;
    padding: 5px;
}

.detalles-asignacion.show {
    animation: fade-in;
    animation-duration: .2s;
}

.detalles-asignacion.hidde {
    animation: fade-out;
    animation-duration: .2s;
}

.detalles-asignacion div .fa-times {
    position: absolute;
    top: 1px;
    right: 1px;
    cursor: pointer;
    font-size: 12px;
}

.detalles-asignacion div p {
    padding: 5px 15px 5px 5px;
    margin: 0 !important;
}

.detalles-asignacion div p b {
    color: var(--gray);
}

.detalles-asignacion div p hr {
    color: rgba(255, 255, 255, 0.3) !important;
    margin: 3px 0 3px 0 !important;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-out {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.popover {
    background: var(--dark-blue-3) !important;
    border: 1px solid var(--dark-blue) !important;
}

.popover-header {
    background: var(--dark-blue-2) !important;
    color: #acb4cf !important;
    border-bottom: none !important;
}

.popover-body {
    white-space: pre-line;
    color: var(--gray) !important;
}

.form-group input.form-control:required:not(#buscar, #search, #searchMermasObra, #searchMermasMaterial, .login-input, :read-only)~label::after, select:required~label::after {
    content: " *";
    color: var(--red);
}

label.input-label.required::after  {
    content: " *";
    color: var(--red);
}

select~label, input[type='date']~label {
    transform: translate(-9px, -30px);
    font-size: 14px;
}

tbody.simple tr td {
    font-weight: lighter;
    padding: 5px;
}

.icono-casas i:nth-child(1) {
    font-size: 12px;
    transform: translate(-5px, 1.5px);
    z-index: 0;
    position: absolute;
}

.icono-casas i:nth-child(2) {
    margin-left: 8px;
    transform: translateX(-5px);
    z-index: 1;
}

.icono-casas i:nth-child(3) {
    font-size: 12px;
    transform: translate(15px, 1.5px);
    position: absolute;
    z-index: 0;
}

/* The container of radio button */

label.container {
    display: block;
    position: relative;
    width: min-content;
    padding-left: 30px;
    margin: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

label.container:not(.disabled), label.container:not(.disabled) * {
    cursor: pointer;
}

/* Hide the browser's default radio button */

label.container input {
    position: absolute;
    opacity: 0;
}

/* Create a custom radio button */

span.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: var(--dark-blue);
    border-radius: 50%;
    transform: translate(5px, 5px);
}

/* On mouse-over, add a grey background color */

label.container:not(:read-only):hover input~span.checkmark {
    background-color: var(--dark-blue-3) !important;
}

/* When the radio button is checked, add a blue background */

label.container input:checked~span.checkmark {
    padding: 2px;
    background-color: #2196F3;
    transform: translate(5px, 5px);
}

label.container:hover input:checked~span.checkmark {
    background-color: #44abff !important;
}

/* Create the indicator (the dot/circle - hidden when not checked) */

span.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */

label.container input:checked~span.checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */

label.container span.checkmark:after {
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dark-blue-2);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: .4s;
    transition: .4s;
}

.switch .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.switch input:checked+.slider {
    background-color: #2196F3;
}

.switch input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

.switch input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.switch .slider.round {
    border-radius: 34px;
}

.switch .slider.round:before {
    border-radius: 50%;
}

.progreso {
    padding: 0 10px 0 14px;
}

.progreso .paso {
    background-color: var(--dark-blue-3);
    /* clip-path: polygon(90% 0%, 100% 50%, 90% 100%, 0% 100%, 10% 50%, 0% 0%); */
    /* padding: 1px 1px 1px 2px; */
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 1px var(--dark-blue-4);
    padding: 0;
}

.progreso .paso.active * {
    color: #6dbdff !important;
    font-weight: 600;
}

.progreso .paso .content {
    position: relative;
    background-color: var(--dark-blue-2);
    padding: 10px 30px 10px 30px;
    cursor: default;
    width: 100%;
    height: 100%;
}

.progreso .paso:not(.active) * {
    color: #627686 !important;
}

.progreso .paso a {
    width: 100%;
    height: 100%;
}

.progreso .paso .content::after {
    content: '';
    position: absolute;
    top: 0;
    right: -20px;
    z-index: 2;
    width: 20px;
    height: 100%;
    background: var(--dark-blue-2);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.progreso .paso .content::before {
    content: '';
    position: absolute;
    top: 0;
    right: -21px;
    z-index: 1;
    width: 20px;
    height: 100%;
    background: var(--dark-blue-4);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.progreso .paso:first-child, .progreso .paso:first-child .content {
    border-radius: 4px 0 0 4px;
}

.progreso .paso:last-child, .progreso .paso:last-child .content {
    border-radius: 0 4px 4px 0;
}

.progreso .paso:last-child .content::after {
    display: none;
}

.progreso .paso:last-child .content::before {
    display: none;
}


.progreso .paso.active .content::after {
    background: var(--dark-blue);
}

.progreso .paso a .content:hover, .progreso .paso a .content:hover::after {
    background-color: var(--dark-blue-3) !important;
    cursor: pointer;
}

.progreso .paso.active .content {
    background-color: var(--dark-blue);
}

.h-min {
    height: min-content !important;
}

.alert.alert-primary * {
    color: #084298 !important;
}

.alert.alert-primary a {
    text-decoration: underline !important;
}

.alert.alert-primary a:hover {
    color: #5994ee !important;
}

.btn {
    min-height: 37.6px;
    min-width: 37.6px;
}

.td-acciones a:hover *, .td-acciones button:not(:disabled):hover * {
    color: #fff !important;
}

.td-acciones button:disabled {
    opacity: .2 !important;
}

.op-1 {
    opacity: 0.1 !important;
}

div.alert-msg {
    margin: 10px 10px 15px 10px;
    border: solid 1px var(--blue);
    box-shadow: 0 0 5px var(--blue);
    color: #a8b5f0;
}

.options-bar+.login {
    margin-top: 30px;
}

[data-bs-toggle='tooltip'] * {
    pointer-events: none !important;
}

.c-default {
    cursor: default !important;
}

select {
    background-image:
        linear-gradient(45deg, transparent 50%, var(--gray) 50%),
        linear-gradient(135deg, var(--gray) 50%, transparent 50%),
        linear-gradient(to right, #1f2539, #1f2539);
    background-position:
        calc(100% - 20px) calc(1em + 2px),
        calc(100% - 15px) calc(1em + 2px),
        100% 0;
    background-size:
        5px 5px,
        5px 5px,
        2.5em 2.5em;
    background-repeat: no-repeat;
    cursor: pointer;
}

select:hover {
    background-image:
        linear-gradient(45deg, transparent 50%, var(--gray) 50%),
        linear-gradient(135deg, var(--gray) 50%, transparent 50%),
        linear-gradient(to right, #20273b, #20273b);
}

.msg-documento {
    color: rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 72px;
}

tr.item {
    background-color: var(--dark-blue);
}

tr.item td {
    color: white !important;
}

tr.item td input {
    border: solid 1px rgba(255, 255, 255, 0.3);
    width: 100%;
}

.dropdown-toggle.icon::after {
    display: none !important;
}

.dropdown-toggle.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 25px;
}

.dropdown-toggle.icon:hover * {
    color: white;
}

.dropdown-menu {
    background: var(--dark-blue-2) !important;
    border: solid 1px rgba(255, 255, 255, 0.1) !important;
}

.dropdown-menu .dropdown-item:hover {
    background: var(--dark-blue-3) !important;
}

.dropdown-menu .dropdown-item:focus {
    background: var(--dark-blue-4) !important;
}

td.sticky, th.sticky {
    position: sticky !important;
    left: 0 !important;
    background: var(--dark-blue-2) !important;
    z-index: 3;
}

th.sticky {
    z-index: 4;
}

td .dropdown {
    width: min-content;
}

td .dropdown-menu {
    z-index: 2 !important;
}

.dropdown-menu li a {
    cursor: pointer;
}

tr.item td.sticky, tr.item th.sticky {
    background: var(--dark-blue) !important;
}

/* label.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
} */

/* Hide the browser's default checkbox */
label.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark-checkbox {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: rgb(62, 75, 110);
    border-radius: 2px;
}

label.container:hover input~.checkmark-checkbox {
    background-color: rgb(81, 96, 137);
}

label.container input:checked~.checkmark-checkbox {
    background-color: #2196F3;
}

label.container input.saving~.checkmark-checkbox {
    background-color: orange;
}

.checkmark-checkbox:after {
    content: "";
    position: absolute;
    display: none;
}

label.container input:checked~.checkmark-checkbox:after {
    display: block;
}

label.container .checkmark-checkbox:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

button#guardar-cambios, button#cancelar-cambios {
    position: fixed;
    right: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    font-size: 24px;
    z-index: 4;
}

button#guardar-cambios {
    bottom: 75px;
}

button#cancelar-cambios {
    bottom: 15px;
}