        * {
            box-sizing: content-box;
        }
        body, html {
            height: 100%;
            width: 100%;
            font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
            overflow: auto;
        }
        body {
            padding: 0px;
            margin: 0px;
        }
        h1, h2, h3, h4, h5, h6 {
            padding: 5px 3px;
            margin: 0px;
            font-weight: medium;
            text-shadow: none;
        }
        .btn-center {
            text-align: center;
        }
        button{
            cursor: pointer;
        }
        .contenedor_input {
            display: flex;
            width: 100%;
            margin-bottom: 10px;
        }
        .contenedor_input a, .contenedor_textarea a {
            display: inline-block;
            text-align: center;
            font-size: 11px;
            line-height: 18px;
            color: #ffffff;
            background: #293949;
            border-bottom-left-radius: 1px;
            border-top-left-radius: 1px;
            padding: 3px;
            box-sizing: border-box;
        }
        .contenedor_input input, .contenedor_input select, .contenedor_textarea textarea {
            display: inline-block;
            -webkit-appearance: none;
            -moz-appearance: none;
            font-size: 14px;
            // line-height: 16px;
            border: 1px solid #293949;
            border-bottom-right-radius: 1px;
            border-top-right-radius: 1px;
            border-bottom-left-radius: 0px;
            border-top-left-radius: 0px;
            padding: 3px;
            box-shadow: none;
            outline: none;
            resize: none;
            box-sizing: border-box;
            font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
            background: #ffffff;
        }
        .contenedor_input input:read-only {
            background: #e4e4e4;
        }
        /* =============== =============== */
        #app-container {
            height: 100%;
            width: 100%;
            background: #ffffff;
            position: absolute;
            right: 100%;
            top: 0px;
            transition: all ease .3s;
            overflow: auto;
        }
        #app-container.show {
            right: 0%;
        }
        #app-container #header_perfil {
            display: flex;
            background: #293949;
            color: #ffffff;
            margin-bottom: 20px;
        }
        #app-container #header_perfil button{
            background: none;
            border: none;
            margin-right: 10px;
            padding: 0px 10px;
            outline: none;
            color: #ffffff;
        }
        #app-container #header_perfil span {
            font-size: 10px;
            font-weight: bold;
            padding-top: 9px;
            padding-bottom: 9px;
        }
        #app-container #titulo_perfil {
            color: #888888;
            font-size: 14px;
            font-weight: bold;
            text-align: center;
            margin-bottom:20px;
        }
        #app-container .img-jugador {
            text-align: center;
        }
        #app-container .img-jugador img {
            width: 120px;
            border: 3px solid #293949;
            border-radius: 50%;
            margin-bottom: 20px;
        }
        .contenedor-centro {
            width: 60%;
            max-width: 400px;
            margin: auto;
            width: 90%;
        }
        .cuadro_seleccion{
            background-color: rgba(4, 57, 166, 1); 
            color: white; 
            border-radius:2px;
            padding:5px;
        }
        .cuadro_seleccion:HOVER{
            background-color: rgba(4, 57, 166, 0.5); 
            color: white; 
            border-radius:2px;
            padding:5px;
        }
        
       
        
        #app-container .contenedor_input a {
            width: 40%;
        }
        #app-container .contenedor_input input {
            width: 60%;
        }
        #app-container .descripcion_formulario {
            display: inline-block;
            width: 100%;
            text-align: center;
            font-weight: normal;
            color: #888888;
            font-size: 14.5px;
            font-style: italic;
            margin-top: 15px;
            margin-bottom: 15px;
        }
        #app-container .btn {
            display: inline-block;
            color: #ffffff;
            outline: none;
            /* border-radius: 6px; */
            background: #293949;
            /* padding: 12px 7px; */
            padding: 2px 7px;
            min-width: 100px;
            text-align: center;
            cursor: pointer;
            font-size: 13px;
            /* margin-bottom: 20px; */
            text-decoration: none;
            box-sizing: border-box;
            width: 100%;
            border: none;
        }
        #app-container .btn.check-in {
            background: #FF4C3E;
        }
        #app-container .btn.check-out {
            background: #0070C0;
        }
        /* =============== =============== */
       
        #img-loader {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
            
            display: inline-block;
            width: 100px;
            height: 60px;
            padding: 20px;
            background: rgba(0, 0, 0, 0.7);
            color: #ffffff;
            border-radius: 3px;
            text-align: center;
        }
        #img-loader i {
            font-size: 32px;
        }
        #img-loader p {
            margin: 5px;
            text-align: center;
        }
       
        path {
            stroke-width: 2px;
        }
        
        /*PUSH BAR*/
        html.pushbar_locked {
            overflow: hidden;
            -ms-touch-action: none;
            touch-action: none;
        }

        .pushbar_locked .pushbar_main_content.pushbar_blur {
            filter: blur(15px);
        }

        .pushbar_overlay {
            z-index: -999;
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            will-change: opacity;
            transition: opacity 0.5s ease;
            opacity: 0;
            background: #3c3442;
        }

        html.pushbar_locked .pushbar_overlay {
            opacity: 0.8;
            z-index: 999;
        }

        [data-pushbar-id] {
            z-index: 1000;
            position: fixed;
            overflow-y: auto;
            will-change: transform;
            transition: transform 0.5s ease;
            background: #fff;
        }

        [data-pushbar-direction="left"][data-pushbar-id], [data-pushbar-direction="right"][data-pushbar-id] {
            top: 0;
            width: 256px;
            max-width: 100%;
            height: 100%;
        }

        [data-pushbar-direction="top"][data-pushbar-id], [data-pushbar-direction="bottom"][data-pushbar-id] {
            left: 0;
            width: 100%;
            min-height: 150px;
        }

        [data-pushbar-direction="left"][data-pushbar-id] {
            left: 0;
            transform: translateZ(0) translateX(-100%);
        }

        [data-pushbar-direction="right"][data-pushbar-id] {
            right: 0;
            transform: translateZ(0) translateX(100%);
        }

        [data-pushbar-direction="top"][data-pushbar-id] {
            top: 0;
            transform: translateZ(0) translateY(-100%);
        }

        [data-pushbar-direction="bottom"][data-pushbar-id] {
            bottom: 0;
            transform: translateZ(0) translateY(100%);
        }

        [data-pushbar-id].opened {
            display: block;
            transform: translateX(0px) translateY(0px);
        }
        .pushbar{
          background-color: #293949;
          color: #fff;
          padding:20px;
        }
        .pushbar .btn-cerrar{
          text-align: right;
        }
        .pushbar .btn-cerrar button{
          background: none;
          color: #808080;
          border:none;
          cursor: pointer;
          font-size: 20px;
        }
        .menu_lateral a{
          display: block;
          color: #fff;
          padding:20px 0;
          border-bottom: 1px solid #fff;
          font-family: helvetica;
          font-size: 15px;
          transition: 3s ease color;
          text-decoration: none;
        }
        .menu_lateral a:hover{
          color: #aaa;
        }