@import url("https://fonts.googleapis.com/css?family=Bangers|Comfortaa:400,700|Great+Vibes|Montserrat:400,700|Poiret+One|Poppins:400,700|Quicksand:400,700|Raleway:400,700|Roboto:400,700|Source+Sans+Pro:400,700|Questrial:400");
body {
  background-color: #fbfbfb;
  font-size: 14px;
  font-family: 'Questrial';
}
.ecc_container {
  margin-top: 2.5rem;
  background: white;
  padding: 2.5rem;
  max-width: 1100px;
}

.ecc_container2 {
  margin-top: 2.5rem;
  background: white;
  padding: 2.5rem;
  max-width: 1200px;
}

.ecc_container .card{
  border : 0;
}
.btn {
  padding: 4px 18px;
  border: none;
}
.table th {
  border-bottom: 3px solid #f5f5f5;
  border-top: 0;
  font-size: 13px;
  font-weight: 600;
}
.table td {
  border-bottom: 2px solid #fafafa;
  font-size: 13px;
}
.form-control {
  border-radius: unset;
}
/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
/* ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 2px grey;
  border-radius: 4px;
} */

/* Handle */
::-webkit-scrollbar-thumb {
  background: #d6d6d6;
  border-radius: 4px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #c2c0c0;
}

/*=== Pre Loader ===*/
.spinner-container {
  min-width: 225px;
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
}
.loading-text {
  color: #808080;
  font: 2.25rem "Montserrat" !important;
  letter-spacing: 3px;
}
.spinner {
  animation: 1s linear infinite spin;
  border: 5px solid #f5f5f5;
  border-top-color: #438efb;
  border-radius: 50%;
  box-sizing: border-box;
  display: inline-block;
  height: 30px;
  width: 30px;
}

/*=== Loader ===*/
.loading {
  position: relative;
}
.loading::before {
  animation: spin 1s linear infinite;
  border: 5px solid #f5f5f5;
  border-top-color: #438efb;
  border-radius: 50%;
  content: "";
  display: block;
  height: 30px;
  margin: auto;
  position: relative;
  width: 30px;
  top: 5rem;
  z-index: 2;
}
.loading::after {
  background-color: inherit;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hide {
  display: none;
}

.bg-light {
    background-color: #f5f5f5 !important;
}

.navbar{
  padding: 0px;
}


.navbar-brand {
  font-family: "Audiowide", cursive;
  margin-left: 1rem;
}

.navbar-nav {
  font-family: "Raleway", sans-serif;
}

*[role="button"] {
  cursor: pointer;
}

.navbar button[type="button"] {
  outline: 0;
}

.nav-link {
  font-size: 14px;
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}


.dropdown:hover > .dropdown-menu {
  display: block;
}

.dropdown-menu {
  box-shadow: 0 3px 5px 0 rgba(117, 117, 117, 0.2);
  border: none;
}

.dropdown-menu:not(.user-dropdown)::before {
  left: 16px;
}

.dropdown-menu.user-dropdown::before {
  right: 12px;
}

.navbar-nav .user-dropdown {
  position: absolute;
  right: 15px;
  left: initial;
}

.dropdown-item {
  font-size: 13px;
}

.steps {
  margin-top: 20px;
  margin-bottom: 70px;
}

.step {
  display: flex;
  font-size: 13px;
  min-height: 65px;
  margin-bottom: 8px;
}

.step > * {
  background-color: #f7f9fa;
  border: 1px solid #e0e0e0;
}

.step p {
  margin-bottom: 0;
}

.step > p {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  padding: 10px;
  min-width: 65px;
}

.step > div {
  display: flex;
  flex-grow: 1;
  padding: 10px 25px;
}

.step > .completed {
  background-color: #d4ecd0;
}

.step-detail {
  flex-grow: 1;
}

.step-heading {
  font-size: 14px;
  font-weight: 600;
}

.step-number {
  font-size: 15.5px;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

/* Search input style start */
.input-and-icon-wrapper {
  position: relative;
}
.input-and-icon-wrapper input,
.input-and-icon-wrapper select {
  margin: 0 !important;
  padding-right: 22px;
  padding-left: 22px;
}
.input-and-icon-wrapper input::placeholder {
  padding-left: 5px;
  font-style: italic;
  font-weight: 200;
  font-size: 12px;
  color: #bdbdbd;
}
.input-and-icon-wrapper i.fa.fa-times.right {
  position: absolute;
  color: #bdbdbd;
  top: 12px;
  right: 7px;
}
.input-and-icon-wrapper i.fa.fa-search.left {
  position: absolute;
  color: #bdbdbd;
  top: 13px;
  left: 8px;
}
.input-and-icon-wrapper input:focus + i.fa.fa-search.left {
  display: none;
}
.input-and-icon-wrapper input:focus + i.fa.fa-search.right {
  display: none;
}

.input-and-icon-wrapper input:focus ~ input::placeholder {
  padding-left: 0;
}

.input-and-icon-wrapper input:not(:placeholder-shown) + i.fa.fa-search.left {
  display: none;
}

.input-and-icon-wrapper input:not(:placeholder-shown) ~ i.fa.fa-times.right {
  cursor: pointer;
  color: #777;
}

.input-and-icon-wrapper input:not(:placeholder-shown) ~ i.fa.fa-times.right {
  cursor: pointer;
  color: #777;
}

select.form-control.template-status {
  padding-left: 25px;
}

select.form-control {
  font-size: 13px;
  color: #9e9e9e;
  font-style: italic;
}

/* Search input style end */

.load_more_btn {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #3490dc;
  cursor: pointer;
}

/* JS TOOL TIP START */
input.invalid + .js_tooltip {
  opacity: 1;
  z-index: 1;
}
.js_tooltip {
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: -1;
}
.js_tooltip .js_tooltiptext {
  background-color: #fafafa;
  box-shadow: 2px 1px 6px 0 rgba(33, 33, 33, 0.1);
  color: #f44336;
  font: 11px "Source Sans Pro", sans-serif;
  width: max-content;
  padding: 8px;
  position: absolute;
  top: -60px;
  text-align: center;
}
.js_tooltip .js_tooltiptext::after {
  content: "";
  height: 10px;
  width: 10px;
  background-color: #fafafa;
  position: absolute;
  top: 24px;
  left: 25px;
  transform: rotate(45deg);
  box-shadow: 2px 1px 0px 0 rgba(33, 33, 33, 0.1);
}
/* JS TOOL TIP END */

/* tooltip */

.our-custom-tooltip_parent {
  cursor: pointer;
}
.our-custom-tooltip {
  position: absolute;
  width: 90px;
  background: #fff;
  box-shadow: 2px 1px 6px 0 rgba(33, 33, 33, 0.1);
  padding: 8px;
  border-radius: 2px;
  top: -19px;
  left: -22px;
  background-color: #fafafa;
  visibility: hidden;
  text-align: center;
  color: #757575;
  font-size: 11px;
}
.our-custom-tooltip_parent:hover .our-custom-tooltip {
  visibility: visible;
  transition: all 0.2 ease-in-out;
}
.our-custom-tooltip::after {
  content: "";
  height: 10px;
  width: 10px;
  background-color: #fafafa;
  position: absolute;
  top: 24px;
  left: 25px;
  transform: rotate(45deg);
  box-shadow: 2px 1px 0px 0 rgba(33, 33, 33, 0.1);
}
.our-custom-tooltip .our-custom-tooltip-text {
  padding: 5px;
}
.our-custom-tooltip_parent::before {
  content: "";
  width: 1px;
  height: 10px;
  background-color: red;
  color: red;
}

.our-custom-tooltip_parent {
  position: relative;
}

.wrapper-small {
    background-color: #fff;
    margin: 4rem auto;
    max-width: 350px;
    padding: 35px;
}

.brand {
    color: #41484d;
    font-family: 'Audiowide', cursive;
    margin-bottom: 22px;
    text-align: center;
}

@media only screen and (max-width: 991px) {
  .navbar-toggler {
    margin-right: auto;
  }
  #app_nav {
    margin-left: 45px;
  }
  #user_nav {
    flex-direction: row;
    position: fixed;
    top: 0;
    right: 1rem;
  }
  #user_nav > .nav-item > .nav-link {
    padding-left: 1.25rem;
  }
  #user_nav > .nav-item:not(:last-of-type) > .nav-link {
    padding-right: 1.25rem;
  }
  .navbar-nav .nav-link {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  #user_nav .nav-item:not(:first-of-type)::before {
    background-color: #e0e0e0;
    content: "";
    height: 19px;
    position: absolute;
    top: 10px;
    width: 1px;
  }
}
@media only screen and (min-width: 992px) {
  .navbar-nav .nav-link {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1.25rem;
  }
  .nav-item:not(:first-of-type)::before {
    background-color: #e0e0e0;
    content: "";
    height: 19px;
    position: absolute;
    top: 10px;
    width: 1px;
  }
  .nav-item:not(:last-of-type) .nav-link {
    padding-right: 1.25rem;
  }
  .dropdown-toggle:not(#user_dropdown)::after {
    content: initial;
  }
  .dropdown-menu::before {
    border-top: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
    border-left: 8px solid transparent;
    content: "";
    position: absolute;
    top: -16px;
  }
}
.modal.fade .modal-dialog{
    -webkit-transform: none;
    transform: none;
}
}
