@import url('https://cdn-uicons.flaticon.com/uicons-regular-straight/css/uicons-regular-straight.css');


body#kt_body{
    background: #dcdfe1 !important;
}

body#kt_body:before{
    display: none !important;
}

.ovrlay-blk{
    position: relative;
}

.ovrlay-blk::before{
    content: "";
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    background: black;
    opacity: 0.6;
    z-index: -1;
}


.hdr-logo {
    width: 145px;
    margin: auto;
}

.hdr-logo img{
    width: 100%;
}

.input_pass{
    position: relative;
}

.input_pass i {
    cursor: pointer;
    width: 35px;
    height: 45px;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    line-height: 50px;
    text-align: center;
    font-size: 18px;
}



.custom_checkbox {
  display: block;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.custom_checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 3px;
}

/* On mouse-over, add a grey background color */
.custom_checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.custom_checkbox input:checked ~ .checkmark {
  background-color: #009ef7;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.custom_checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.custom_checkbox .checkmark:after {
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

input.is-invalid.is-invalid.is-invalid{
  background-image:none !important;
}

.invalid-feedback.invalid-feedback {
  color: #f1416c;
}