/*------------------------------------------------------------------

Author           : @andikachamberlin
Author URI       : flamecore.cloud

-------------------------------------------------------------------*/
/*------------------------------------------------------------------
Load
-------------------------------------------------------------------*/
._load {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 999999;
}

._load ._middle {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*------------------------------------------------------------------
End Load
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
Login Admin
-------------------------------------------------------------------*/
._login_background {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

._login_background:before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0.93)));
  background-image: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.93));
}

._login_background ._login_container {
  position: relative;
  z-index: 10;
  max-width: 330px;
  margin: auto;
  margin-top: 10%;
  margin-bottom: 10%;
  padding: 40px 30px 50px 30px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 25px 25px 45px 25px;
  border-radius: 12px;
}

._login_background ._login_container form {
  display: block;
}

._login_background ._login_container form input {
  width: 100%;
  display: block;
  border-bottom: 1px solid #eee;
  padding: 12px 0;
  margin-bottom: 16px;
}

._login_background ._login_container form input::-webkit-input-placeholder {
  color: #aaa;
}

._login_background ._login_container form input:-ms-input-placeholder {
  color: #aaa;
}

._login_background ._login_container form input::-ms-input-placeholder {
  color: #aaa;
}

._login_background ._login_container form input::placeholder {
  color: #aaa;
}

._login_background ._login_container form button {
  padding: 16px 16px;
  width: 100%;
  display: block;
  border-radius: 8px;
  background-image: -webkit-gradient(linear, left top, right top, from(#eee), to(#fff));
  background-image: linear-gradient(to right, #eee, #fff);
  color: #777;
  font-weight: 600;
  font-size: 17px;
}

/*------------------------------------------------------------------
End Login Admin
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
Modal by Jake Albaugh
Remake by Andika Chamberlin
License MIT
-------------------------------------------------------------------*/
._target-content {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 100;
  pointer-events: none;
  display: none;
  -webkit-transition: opacity 200ms;
  transition: opacity 200ms;
}

._target-content:target {
  pointer-events: all;
  display: block;
}

._target_inner {
  z-index: 100;
  position: absolute;
  display: block;
  padding: 30px;
  line-height: 1.8;
  top: 45%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  border-radius: 12px;
  width: 90%;
}

@media (min-width: 600px) {
  ._target_inner {
    width: 400px;
  }
  ._target_inner._source_form {
    width: 500px;
  }
}

._target_close {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: transparent;
  cursor: default;
}

/*------------------------------------------------------------------
End Modal
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
Custom DatePicker by Shaheen Md. Foisal
Remake by Andika Chamberlin
License MIT
-------------------------------------------------------------------*/
._datepicker table {
  border-collapse: collapse;
  border-spacing: 0;
}

._datepicker label {
  width: 100%;
  display: block;
}

._datepicker input {
  display: block;
  border-bottom: 1px solid #eee;
  line-height: 1.5rem;
  padding: 16px 0;
  width: 100%;
  margin-top: 0.5rem;
}

._datepicker input::-webkit-input-placeholder {
  color: #aaa;
}

._datepicker input:-ms-input-placeholder {
  color: #aaa;
}

._datepicker input::-ms-input-placeholder {
  color: #aaa;
}

._datepicker input::placeholder {
  color: #aaa;
}

._datepicker input:focus {
  outline: none;
}

#ui-datepicker-div {
  display: none;
  background-color: #fff;
  -webkit-box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
  margin-top: 0.25rem;
  border-radius: 0.5rem;
  padding: 0.5rem;
}

.ui-datepicker-calendar thead th {
  padding: 0.25rem 0;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 400;
  color: #78909C;
  border: none;
}

.ui-datepicker-calendar tbody td {
  border: none;
  width: 2.5rem;
  text-align: center;
  padding: 0;
}

.ui-datepicker-calendar tbody td a {
  display: block;
  border-radius: 0.25rem;
  line-height: 2rem;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #546E7A;
  font-size: 0.875rem;
  text-decoration: none;
}

.ui-datepicker-calendar tbody td a:hover {
  background-color: #E0F2F1;
}

.ui-datepicker-calendar tbody td a.ui-state-active {
  background-color: #009688;
  color: white;
}

.ui-datepicker-header a.ui-corner-all {
  cursor: pointer;
  position: absolute;
  top: 0;
  width: 2rem;
  height: 2rem;
  margin: 0.5rem;
  border-radius: 0.25rem;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.ui-datepicker-header a.ui-corner-all:hover {
  background-color: #ECEFF1;
}

.ui-datepicker-header a.ui-datepicker-prev {
  left: 0;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-size: 0.5rem;
  background-position: 50%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.ui-datepicker-header a.ui-datepicker-next {
  right: 0;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: 50%;
}

.ui-datepicker-header a > span {
  display: none;
}

.ui-datepicker-title {
  text-align: center;
  line-height: 2rem;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  padding-bottom: 0.25rem;
}

.ui-datepicker-week-col {
  color: #78909C;
  font-weight: 400;
  font-size: 0.75rem;
}

/*------------------------------------------------------------------
End Picker
-------------------------------------------------------------------*/
/*# sourceMappingURL=node.elements.css.map */