html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.app-brand-logo {
    display: block;
    flex-grow: 0;
    flex-shrink: 0;
    overflow: hidden;
    min-height: 1px;
}

    .app-brand-logo img,
    .app-brand-logo svg {
        display: block;
    }


input {
    position: relative;
    width: 150px;
    height: 20px;
    color: white;
}

    input:before {
        position: absolute;
        top: 3px;
        left: 3px;
        content: attr(data-date);
        display: inline-block;
        color: black;
    }

 /*   input::-webkit-datetime-edit, input::-webkit-inner-spin-button, input::-webkit-clear-button {
        display: none;
    }*/

    input::-webkit-calendar-picker-indicator {
        position: absolute;
        top: 3px;
        right: 0;
        color: black;
        opacity: 1;
    }

.date-selector {
    position: relative;
}

    .date-selector > input[type=date] {
        text-indent: -500px;
    }


password-section {
    position: relative;
    display: inline-block;
}

.password-section .ri-eye-line {
    position: absolute;
    top: 40%;
    right: 20px;
    transform: translateY(-50%);
    cursor: pointer;
}

.password-section .ri-eye-off-line {
    position: absolute;
    top: 40%;
    right: 20px;
    transform: translateY(-50%);
    cursor: pointer;
}

@media print {
    /* properties for printed page */
}

@media print {
    footer, header, non-printable-part {
        display: none;
    }
}
 