@import url('https://fonts.googleapis.com/css?family=Barlow&display=swap');

html, body {
    font-family: Barlow!important;
}


.hidden{
	display:none
}

.login-form,
.login-form * {
    box-sizing: border-box;
}

.login-form {
    max-width: 350px;
    margin: 0 auto;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.login-form__logo-container {
    padding: 30px;
    background: rgba(0, 0, 0, 0.25);
}

.login-form__logo {
    display: block;
    max-width: 285px;
    margin: 0 auto;
}

.login-form__content {
    padding: 30px;
    background: #eeeeee;
}

.login-form__header {
    margin-bottom: 15px;
    text-align: center;
    color: #333333;
}

.login-form__input {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid #dddddd;
    background: #ffffff;
    outline: none;
    transition: border-color 0.5s;
}

.login-form__input:focus {
    border-color: #000;
}

.login-form__input::placeholder {
    color: #aaaaaa;
}

.login-form__button {
    padding: 10px;
    color: #ffffff;
    font-weight: bold;
    background: #343333;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
}

.login-form__button:active {
    background: #a6ccc9;
}

.login-form__links {
    margin-top: 15px;
    text-align: center;
}

.login-form__link {
    font-size: 0.9em;
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: #f5f5f5;
    z-index: 9998;
}

.logo{
    width: 150px;
    margin-left: 20px;
    border-radius: 5px;
}

/** redifinicion de estilos para cambiar los originales de bootstrap **/
.font-weight-bold {
    font-weight: 700!important;
}

.row{
    margin-bottom: 15px;
}

hr {
    margin-top: 10px;
    margin-bottom: 10px;
    border: 0;
    border-top: 2px solid #a6ccc9;
}

.navbar-header{
    z-index: 99999;
}

.navbar-nav {
    margin: 6.5px -15px;
    /*background-color: #222!important;*/
    color: #000!important;
}

.mr-10{
    margin-left: 10px;
    margin-right: 10px;
}

.highlight {
    padding: 9px 14px;
    margin-bottom: 14px;
    background-color: #e6fbeb;
    border: 1px solid #000;
    border-radius: 4px;
}

.width70{
    width: 70px;
}

input[type="time"]{
    padding: 4px;
    border-radius: 5px;
    border: solid 1px;
    border-color: #ccc;
}


/**************** SWITCH ***************/


.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.clear{
    clear: both; 
}

.fs-7{
    font-size: 0.8rem!important;
}

/*canvas*/
.wrapper {
    position: relative;
    column-width: 450px;
}
canvas {
display: block;
background-color: #ffffff;
border: 1px solid black;
margin-bottom: 10px;
}
#canvas {
cursor: url(http://icons.iconarchive.com/icons/designcontest/vintage/32/Patent-Pen-icon.png) 0 30, progress;
}




/* colores aplicacion*/
:root {
    /*--verde-color:#70d78c;*/
    --verde-color:#198754;
   
}

/* seteo del menu de la app, que cuando haces click se muestre color negro de fondo y no el azul por defecto.*/
.nav-item.dropdown .dropdown-item:active { 
    background-color: rgb(0, 0, 0) !important;
}

.form-check-input:checked{
    background-color: rgb(25 135 84) !important;
    border-color: rgb(0, 0, 0) !important;
}

.card-disabled {
    background-color: #e9ecef !important;
    opacity: 0.7;
    cursor: not-allowed;
}