/* @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;700&display=swap'); */
:root {
  --tp-root : hsl(211.7, 66.3%, 40.8%);
  --tp-root-dark : hsl(211.7, 66.3%, 20%);
  --tp-root-light : hsl(211.7, 66.3%, 90%);
  --tp-font-color : #000;
  font-size: .75em;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 1em;
  background-color: var(--tp-root-light);
}

/* navigation */
.bg-tp-color{
  background-color: var(--tp-root);
}

.tp-nav{
  background-color: var(--tp-root-dark);
  padding: .1rem 1rem;
  font-size: .9em;
  color: #fff;
  border-bottom: solid var(--tp-root-light) 2px;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 1);
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
  color: rgba(255, 255, 255, .7);
}

.tp-nav-btn{
  background-color: transparent;
  cursor: pointer;
  outline: none;
  border: none;
  box-shadow: 0 0 0 7px transparent inset;
  padding-left: 2px;
  padding-right: 2px;
}

.navbar-dark .navbar-toggler {
  padding-top: 5px;
  border: none;
}

.tp-nav-bg-color{
  background-color: var(--tp-root-dark);
  border: none;
}

.tp-nav-ft-color{
  color: rgba(255, 255, 255, 1);
}

.tp-nav-ft-color:hover{
  background-color: var(--tp-root);
}

/* end of navigation */

/* carosal img */
.tp-carosal-img{
  height: 400px;
  object-fit: fill;
}
/* end of carosal img */


/* main content */
.main-content{
  position: relative;
}
/* main content */

/* scroll bar */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}

::-webkit-scrollbar {
  width: 1rem;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
  background-color: #000000;
}
/* end scroll bar */

/* footer */
.tp-footer{
  background-color: var(--tp-root-dark);
  color: #fff;
  font-family: 'Open Sans', sans-serif;
}

hr.tp-hr1{
  border-top: 1px solid #fff;
  width: 70%;
}

ul.list-unstyled li a {
  text-decoration: none;
  color: hsl(0, 9.8%, 62.2%);
}
ul.list-unstyled li a:hover {
  color: hsl(0, 0%, 100%);
}

/* screen greater than 768 */
@media (min-width: 768px) {
  hr.tp-hr1 {
    margin-left: 0;
  }
  ul.list-unstyled li {
    padding-left: 2rem
  }
}

/* screen lower than 768 */
@media (max-width: 768px) {
  ul.list-unstyled li {
    padding-left: 3rem
  }
}
/* end of footer */

/* cards */
.tp-card-shadow {
  box-shadow: 0px 10px 5px rgba(0, 0, 0, 0.1);
}
.tp-card-shadow:hover {
  box-shadow: 0 12px 20px 12px rgba(0, 0, 0, 0.5);
}

.tp-card {
  border: solid var(--tp-root-dark) 1px;
}
.tp-card-header{
  background-color: var(--tp-root-dark);
  color: var(--tp-root-light);
}
/* end of cards */

/* login form */
div.form {
  position: relative;
  overflow: hidden;
}

div.form input {
  padding-top: 30px;
  border: none;
  width: 100%;
  font-size: 1.25em;
  outline: none;
  text-align: center;
}

[placeholder]:focus::-webkit-input-placeholder {
  transition: text-indent 0.4s 0.4s ease;
  text-indent: -100%;
  opacity: 1;
}

div.form label.inp-label {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-bottom: 1px solid var(--tp-root-dark);
}

div.form label.inp-label::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -4px;
  height: 100%;
  width: 100%;
  border-bottom: 3px solid var(--tp-root-dark);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

div.form label.inp-label span {
  position: absolute;
  left: 50%;
  bottom: 5px;
  bottom: 0px;
  transition: all 0.3s ease;
  color: #67686c;
  font-size: 1.25em;
  transform: translateX(-50%);
  white-space:nowrap;
}

div.form input:focus+label.inp-label span,
div.form input:valid+label.inp-label span {
  transform: translate(-50%, -110%);
}

div.form input:focus+label.inp-label::after,
div.form input:valid+label.inp-label::after {
  transform: translateX(0%);
}

div.form span.text-danger {
  position: absolute;
  right: 0px;
  top: 0px;
}

/* ./login form */

/* side navigation */

.bg-tp-nav-dark {
  background-color: var(--tp-root-dark);
  color: white;
}

.tp-side-navigation {
  position: -webkit-sticky;
  position: sticky;
  z-index: 1030;
}

[data-toggle="collapse"].tp-side-nav-item:after {
  position: absolute;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\276F";
  transition: all linear 0.25s;
  transform: rotate(90deg);
  float: right;
  right: 15px;
  top: 10px;
  font-weight: bolder;
}

[aria-expanded="false"].tp-side-nav-item:after {
  transform: rotate(0deg);
}

/* screen greater than 768 */
@media (min-width: 768px) {
  .tp-side-navigation {
    position: -webkit-sticky;
    position: sticky;
    top: 30px;
    z-index: 1030;
  }
}

.tp-sidenav-hidden{
  transition: max-height 500ms ease-in-out 0ms;
}

/* screen lower than 768 */
@media (max-width: 768px) {
  .tp-sidenav-hidden {
    position: sticky;
    width: 100%;
    max-height: 0px;
    top: 30px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    overflow-x: hidden;
  }

}

.tp-sidenav-show {
  max-height: 1000px;
}

#tp-side-nav li.nav-item a.nav-link{

  color: var(--tp-root-light);
  padding-left: 10px;
  padding-right: 10px;

}

#tp-side-nav li.nav-item a.nav-link:hover{

  background-color: var(--tp-root-light);
  color: var(--tp-root-dark);

}
.tpside-nav-menu-header{
  margin-top: 7px;
  padding-bottom: 7px;
  /* border-bottom: solid var(--tp-root-light) 1px; */
}
/* side navigation */

/* height setting in large screen */
@media (min-width: 768px) {
  .set-height{
    min-height: 55vh;
  }
}
/* height setting in large screen */

/* progress pills */
ul.progress-tp {
  width: 100%;
  padding: 0;
}

ul.progress-tp li.progress-item {
  list-style: none;
  box-sizing: border-box;
  position: relative;
}

ul.progress-tp li.progress-item:nth-child(1) {

  padding: 0 0 20px 20px;

}

ul.progress-tp li.progress-item:last-child {

  padding: 20px 0 0 20px;

}

ul.progress-tp li.progress-item:nth-child(n+2):nth-last-child(n+2) {
  padding: 20px 0 20px 20px;
}

ul.progress-tp li.progress-item h5 {
  font-size: .9rem;
  margin-top: 10px;
  margin-left: 50px;
}

ul.progress-tp li.progress-item span.progress-line {
  height: 80px;
  list-style: none;
  position: absolute;
  bottom: -40px;
  left: 37px;
  z-index: 1;
}

ul.progress-tp li.progress-item p {
  display: block;
}

ul.progress-tp li.progress-item span.success {
  border-left: 6px solid rgba(31, 134, 62, 1);
}

ul.progress-tp li.progress-item span.waiting {
  border-left: 6px solid rgb(122, 132, 124);
}

ul.progress-tp li.progress-item::before {
  content: '';
  position: absolute;
  float: right;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  /* display: inline-block; */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 15px;
  z-index: 5;
}

ul.progress-eilp li.failed::before {
  content: '\26CC';
  background-color: #ce192a;
  color: var(--tp-font-color);
}

ul.progress-tp li.success::before {
  content: '\2714';
  background-color: rgba(31, 134, 62, 1);
  color: var(--tp-font-color);
}

ul.progress-tp li.current::before {
  animation: growSrink 1s infinite;
}

@keyframes growSrink {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.1);
  }

  50% {
    transform: scale(1.2);
  }

  75% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

ul.progress-tp li.failed::before {
  content: '\26CC';
  background-color: #ce192a;
  color: var(--tp-font-color);
}

ul.progress-tp li.waiting::before {
  background-color: rgb(122, 132, 124);
}
/* progress pills */

/* form css */
div.form-group label.tp-form-required::after {
  content: "* ";
  color: red;
}
.form-control.always-valid{
  border-color: #28a745;
  padding-right: calc(1.5em + .75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(.375em + .1875rem) center;
  background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}
.form-control.is-invalid{
  background-position: right calc(2em + .1875rem) center;
}
.form-control.is-valid{
  background-position: right calc(2em + .1875rem) center;
}

.docs {
  border-radius: 5px;
  border: solid grey 1px;
  background-color: #f7f7f7;
}

/* form css */

/* table css */
table.info-table tbody tr td:nth-child(1) {
  font-weight: bold;
  text-align: right;
  width: 35%;
}

table.info-table tbody tr:nth-child(odd) {
  background-color: var(--tp-root-light);
}

table.info-table tbody tr td:nth-child(1)::after {
  content: " :";
}
/* table css */

/* span pilla */
span.tp-span-pills {
  display: inline-block;
  background-color: #fff;
  border: solid rgb(164, 164, 164) 1px;
  padding: 2px;
  padding-left: 5px;
  padding-right: 5px;
  /* margin: 2px; */
  border-radius: 3px;
}

table.doc-table tbody tr td:nth-child(1) {
  font-weight: bold;
  text-align: right;
  width: 50%;
}
table.doc-table tbody tr td:nth-child(1)::after {
  content: " :";
}
table.doc-table tbody tr.set-color {
  background-color: var(--tp-root-light);
}
table.doc-table tr.set-color:nth-child(even) td {
  border-top: 1px solid #cfd9e4;
}
/* span pilla */

/* overlay */
div.overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 100000;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  overflow-x: hidden;
}

div.overlay div.overlay-content {
  position: relative;
  top: 40%;
  width: 100%;
  text-align: center;
}

div.overlay div.overlay-content img {
  vertical-align: middle;
}

/* ./overlay */