/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

/*===== VARIABLES CSS =====*/
:root {
  --header-height: 3rem;
  --nav-width: 68px;

  /*===== Colors =====*/
  --main-color: #394867;
  --white-color: #F5F8FA;
  --red-color: #D64543;
  --orange-color: #CC7044;
  --green-color: #93B14E;

  /*===== Font and typography =====*/
  --body-font: "Poppins", sans-serif;
  --normal-font-size: 0.9rem;
  --small-font-size: 0.8rem;

  /*===== z index =====*/
  --z-fixed: 100;
}


.text-orange {
  color: var(--orange-color);
}

.text-green {
  color: var(--green-color);
}

.text-red {
  color: var(--red-color);
}

/*? ============================ BODY ============================== */
/*? ================================================================ */
html,
body {
  margin: 0;
  padding: 0;
  font-size: var(--normal-font-size);
}

a {
  text-decoration: none !important;
  color: var(--orange-color) !important;
}

/*? ============================ HEADER ============================ */
/*? ================================================================ */
.header {
  height: var(--header-height);
  width: calc(100% + var(--nav-width) - 68px);
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: var(--z-fixed);
  transition: 0.5s;

  backdrop-filter: blur(5px) !important;
  color: var(--main-color) !important;

  /* border: 1px solid red; */
}

.header__toggle {
  color: var(--main-color);
  font-size: 1.5rem;
  cursor: pointer;
}

.header__img {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--main-color);
}

.header__img img {
  width: 40px;
}

.header-right-side {
  display: flex;
  /* text-align: right; */
  align-items: center;

  width: 250px;
  height: 22px;
  vertical-align: middle;
}


.user-info-sparator {
  height: 40px;
  width: 1px;
  background-color: #222222;
  margin-left: 25px;
  margin-right: 25px;
}

.user-name {
  font-weight: 600;
  font-size: 1.05em;
}

/*===== NAV =====*/
.l-navbar {
  position: fixed;
  top: 0;
  left: -30%;
  width: var(--nav-width);
  height: 100vh;
  background: var(--main-color);
  padding: 0.5rem 1rem 0 0;
  transition: 0.5s;
  z-index: var(--z-fixed);
}

.nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.nav__logo,
.nav__link {
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: center;
  column-gap: 1rem;
  padding: 0.5rem 0 0.5rem 1.6rem;
}

.nav__logo {
  margin-bottom: 2rem;
}

.nav__logo-icon {
  font-size: 1.25rem;
  color: var(--white-color);
}

.nav__logo-name {
  color: var(--white-color);
  font-weight: 700;
  letter-spacing: 2px;
}

.nav__link {
  position: relative;
  color: var(--white-color) !important;
  margin-bottom: 1.5rem;
  transition: 0.3s;
}

.nav__link:hover {
  color: var(--orange-color) !important;
  cursor: pointer;
}

.nav__icon {
  font-size: 1.3rem !important;
}

.show-navbar {
  left: 0;
}


/*Active links*/
.active {
  color: var(--white-color) !important;
}

.active::before {
  content: "";
  position: absolute;
  left: 0;
  width: 2px;
  height: 32px;
  background-color: var(--white-color) !important;
}


.title-content {
  /* border: 1px solid red; */
  margin-top: 10px;
  margin-bottom: 10px;
  color: var(--main-color);
  font-variant: small-caps;
  font-weight: 800 !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-icon {
  width: 28px;
}


.button-action {
  background-color: var(--main-color);
  color: #ffffff !important;
  padding-top: 5px;
  padding-left: 8px;
  padding-right: 8px;
  margin: 2px;
  transition: 0.3s;
  font-size: 1.5em;
}

.button-action-red {
  background-color: var(--red-color) !important;
}

.button-action:hover {
  /* filter: brightness(90%); */
  background-color: var(--orange-color) !important;
}


.tooltip-ballon {
  --balloon-color: rgba(240, 169, 59, 100%);
}

.span {
  font-variant: normal;
  font-size: 0.7em;
  font-weight: bold;
  color: var(--orange-color);
}

input {
  font-family: var(--body-font) !important;
}

input::placeholder,
textarea::placeholder {
  color: #ccc !important;
}

.form-control {
  font-size: var(--normal-font-size);
}


.container-fluid {
  transition: 0.5s;
}

/*? ========================== DASHBOARD SECTION =================== */
/*? ================================================================ */
.order-card {
  color: #fff;
}

.bg-c-blue {
  background: linear-gradient(45deg, var(--main-color), #53a1ad);
}

.bg-c-green {
  background: linear-gradient(45deg, #41974e, #55bb65);
}

.bg-c-yellow {
  background: linear-gradient(45deg, var(--orange-color), #ffcb80);
}

.bg-c-pink {
  background: linear-gradient(45deg, #FF5370, #ff869a);
}


.card {
  border-radius: 5px;
  -webkit-box-shadow: 0 1px 2.94px 0.06px rgba(4, 26, 55, 0.16);
  box-shadow: 0 1px 2.94px 0.06px rgba(4, 26, 55, 0.16);
  border: none;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.card:hover {
  filter: brightness(110%)
}

.card:active {
  filter: brightness(90%)
}

.card .card-block {
  padding: 25px;
}

.order-card i {
  font-size: 26px;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}


.container-sub-level-role {
  display: flex;
  flex-wrap: wrap;
}

.sub-level-role {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px;
  margin: 3px;
  border-radius: 10px;
  width: fit-content;
}


/* .tr-scroll {
  overflow: visible;
  overflow-y: scroll !important;
  overflow-x: hidden !important;
  max-height: 450px !important;
} */

.note-quote {
  font-size: .8rem;
  color: #394867;
}