*,
*:before,
*:after {
  box-sizing: border-box;
}
body {
  padding: 0em;margin: 0;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  color: #555555;
  background-color: #e3e3e3;
}
h4 {
  color: #db842a;
}
button, [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}
a, button, .btn {
  outline: none !important;
}
input,
input[type="radio"] + label,
input[type="checkbox"] + label:before,
select option,
select {
  width: 100%;
  padding: 1em;
  line-height: 1.4;
  background-color: #f9f9f9;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
input:focus {
  outline: 0;
  border-color: #bd8200;
}
input:focus + .input-icon i {
  color: #db842a;
}
input:focus + .input-icon:after {
  border-right-color: #db842a;
}
input[type="radio"] {
  display: none;
}
input[type="radio"] + label,
select {
  display: inline-block;
  width: 50%;
  text-align: center;
  float: left;
  border-radius: 0;
}
input[type="radio"] + label:first-of-type {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
input[type="radio"] + label:last-of-type {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
input[type="radio"] + label i {
  padding-right: 0.4em;
}
input[type="radio"]:checked + label,
input:checked + label:before,
select:focus,
select:active {
  background-color: #db842a;
  color: #fff;
  border-color: #bd8200;
}
input[type="checkbox"] {
  display: none;
}
input[type="checkbox"] + label {
  position: relative;
  display: block;
  padding-left: 1.6em;
}
input[type="checkbox"] + label:before {
  position: absolute;
  top: 0.2em;
  left: 0;
  display: block;
  width: 1em;
  height: 1em;
  padding: 0;
  content: "";
}
input[type="checkbox"] + label:after {
  position: absolute;
  top: 0.45em;
  left: 0.2em;
  font-size: 0.8em;
  color: #fff;
  opacity: 0;
  font-family: FontAwesome;
  content: "\f00c";
}
input:checked + label:after {
  opacity: 1;
}
select {
  height: 3.4em;
  line-height: 2;
}
select:first-of-type {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
select:last-of-type {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
select:focus,
select:active {
  outline: 0;
}
select option {
  background-color: #db842a;
  color: #fff;
}
.input-group {
  margin-bottom: 1em;
  zoom: 1;
}
.input-group:before,
.input-group:after {
  content: "";
  display: table;
}
.input-group:after {
  clear: both;
}
.input-group-icon {
  position: relative;
}
.input-group-icon input:first-child {
  padding-left: 4.4em;
}
.input-group-icon input.noround {border-radius: 0;}
.input-group-icon input.noround:first-child {border-radius: 3px 0 0 3px;}
.input-group-icon input.noround:last-child {border-radius: 0 3px 3px 0;}
.input-group-icon .input-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 3.4em;
  height: 3.4em;
  line-height: 3.4em;
  text-align: center;
  pointer-events: none;
}
.input-group-icon .input-icon:after {
  position: absolute;
  top: 0.6em;
  bottom: 0.6em;
  left: 3.4em;
  display: block;
  border-right: 1px solid #e5e5e5;
  content: "";
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.input-group-icon .input-icon i {
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.container {
  max-width: 1180px;
  padding: 1em 3em 2em 3em;
  margin: 0em auto;
  background-color: #fff;
  border-radius: 4.2px;
  box-shadow: 0px 3px 10px -2px rgba(0, 0, 0, 0.2);
}
.row {
  zoom: 1;
}
.row:before,
.row:after {
  content: "";
  display: table;
}
.row:after {
  clear: both;
}
.col-half {
  padding-right: 10px;
  float: left;
  width: 50%;
}
.col-half:last-of-type {
  padding-right: 0;
}
.col-third {
  padding-right: 10px;
  float: left;
  width: 33.33333333%;
}
.col-third:last-of-type {
  padding-right: 0;
}
.app-container {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    margin: 0;
}
.fixed-header .app-header {
    position: relative;
    width: 100%;
    top: 0;
    background: #ffffff;
    padding: 10px 20px;box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);margin: 0;display: flex;
    align-items: center;
    align-content: center;
}
.app-header__logo {
    padding: 0 1.5rem 0 0;
    display: flex;
    align-items: center;
}
.app-header__logo img{max-width: 100px;width: 40%;margin-right: 20px;}
.app-header.header-text-light .app-header__logo .logo-src h1, .app-header__mobile-menu .logo-src h1 {
    color: #000000;
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 800;
    margin: 0;
}
.app-header.header-text-light .app-header__logo .logo-src h6, .app-header__mobile-menu .logo-src h6 {
    color: #383838;
    font-size: .8rem;
    text-transform: uppercase;
    font-weight: 700;margin: 0;
}

.form-title-header{margin: 0 auto;font-size: 1.6rem;color: #db842a;font-weight: 700;padding-right: 300px;}
.d-flex{display: flex;flex-direction: row;}
.w-100 {width: 100% !important;}
.text-left {text-align: left !important;}
.capitlize{text-transform: uppercase;}
::placeholder{text-transform: capitalize;}

.to-repo, .to-reset {
    display: inline-flex;
    background: #db842a;
    color: #fff;
    border-radius: 5px;
    padding: 0.8em 1.5em;min-width: 250px;cursor: pointer;text-align: center;align-items: center;justify-content: center;margin-top: 15px;
    text-decoration: none;
    align-items: center;
    border: 0;
    transition: background 0.2s ease-out;
}
.to-repo svg, .to-reset svg {
    width: 1.125rem;
    height: 1.125rem;
    margin-right: 0.75em;
}
.to-repo:hover, .to-reset:hover {
    background: #000;
}

.app-main{padding:20px;}
.app-header .app-header-right {
  align-items: center;
  display: flex;
  margin-left: auto;
}
.pr-0, .px-0 {
  padding-right: 0 !important;
}
.widget-content {
  padding: 1rem;
  flex-direction: row;
  align-items: center;
  position: relative;
}
.p-0 {
  padding: 0 !important;
}
.widget-content .widget-content-wrapper {
  display: flex;
  flex: 1;
  position: relative;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.btn-group, .btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.rounded-circle {
  border-radius: 50% !important;
}
.btn-group a{display: flex;align-items: center;
  flex-direction: row;}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 15rem;
  padding: 0.65rem 0;
  margin: 0.125rem 0 0;
  font-size: .88rem;
  color: #495057;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 0.25rem;
  position: absolute;
  will-change: transform;
  top: 0px;
  left: 0px;
  transform: translate3d(-170px, 44px, 0px);
}
.dropdown-menu.dropdown-menu-right {
    right: 0 !important;
}
.dropdown-menu {
  box-shadow: 0 0.46875rem 2.1875rem rgba(4,9,20,0.03), 0 0.9375rem 1.40625rem rgba(4,9,20,0.03), 0 0.25rem 0.53125rem rgba(4,9,20,0.05), 0 0.125rem 0.1875rem rgba(4,9,20,0.03);
  margin: 0.125rem;
}
.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.4rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-menu .dropdown-item {
  font-size: .88rem;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  z-index: 6;
  position: relative;
}
.dropdown-item:first-child {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #e0f3ff;
}
.btn-group.open .dropdown-menu {
  animation: fade-in2 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;display: block;
}
@keyframes fade-in2 {
  0% {
    margin-top: -50px;
    visibility: hidden;
    opacity: 0;
  }
  100% {
      margin-top: 0px;
      visibility: visible;
      opacity: 1;
  }
}

@media only screen and (max-width: 1100px) {
    .app-header__logo img{max-width: 80px;width: 30%;margin-right: 10px;}
    .app-header.header-text-light .app-header__logo .logo-src h1, .app-header__mobile-menu .logo-src h1 {
        font-size: 1.2rem;
    }
    .app-header.header-text-light .app-header__logo .logo-src h6, .app-header__mobile-menu .logo-src h6 {
        font-size: .6rem;
    }
    .form-title-header {
        font-size: 1.3rem;
        padding-right: 150px;
    }
}
  
@media only screen and (max-width: 767px) {
  .col-half {
    width: 100%;
    padding-right: 0;
  }
  .app-header__logo img{max-width: 60px;width: 40%;}
    .app-header.header-text-light .app-header__logo .logo-src h1, .app-header__mobile-menu .logo-src h1 {
        font-size: 1.1rem;
    }
    .app-header.header-text-light .app-header__logo .logo-src h6, .app-header__mobile-menu .logo-src h6 {
        font-size: .6rem;
    }
    .form-title-header {
        font-size: 1.1rem;
        padding-right: 0px;
        text-align: right;
        margin-left: auto;
        margin-right: 0;
    }
    .d-flex {
        display: flex;
        flex-direction: column;
    }
    .to-repo, .to-reset{width: 100%;}
}
@media only screen and (max-width: 450px) {
    .app-header__logo{    padding: 0 .5rem 0 0;min-width: 150px;}
    .app-header__logo img{max-width: 50px;width: 40%;}
    .app-header.header-text-light .app-header__logo .logo-src h1, .app-header__mobile-menu .logo-src h1 {
        font-size: 1rem;
    }
    .app-header.header-text-light .app-header__logo .logo-src h6, .app-header__mobile-menu .logo-src h6 {
        font-size: .5rem;
    }
    .form-title-header {
        font-size: 1rem;
        padding-right: 0px;
        text-align: right;
        margin-left: auto;
        margin-right: 0;
    }
    .container {padding: 20px;}
}
