:root {
  --roboto: "Roboto", sans-serif;
  --primary-color: #7e599c;
  --secondary-color: #3e1654;
  --light-green: #c5e9d6;
  --white-color: #ffffff;
  --white-grey: #f6f6f6;
  --black-color: #000000;
  --dark-grey: #888888;
  --light-grey-color: #d4d4d4;
  --input-border: 1px solid #d4d4d4;
  --black-border: 1px solid #505050;
  --button-border: 2px solid 056633;
  --inputbox-shadow: -3px 1px 5px rgba(0 0 0 / 10%);
  --box-shadow: -3px 2px 10px 2px #e0f2e9;
  --danger-color: #d4001a;
  --orange-color: #e96718;
  --warning-color: #ffc90b;
  --fs-14: 14px;
  --fs-16: 16px;
  --fs-18: 18px;
  --fs-22: 22px;
  --fs-26: 26px;
  --fs-28: 28px;
  --fs-30: 30px;
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
}

* {
  padding: 0px;
  margin: 0px;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
}

p {
  font-size: 16px;
  line-height: 1.2;
}

/* common css start */
img {
  max-width: 100%;
}
html body label {
  margin-bottom: 10px;
}

.form-title {
  margin-bottom: 20px;
  font-size: var(--fs-30);
  color: var(--black-color);
}

.green-text {
  color: var(--secondary-color);
}

select,
.form-control,
input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"],
input[type="date"],
input[type="time"] {
  padding: 7px 6px;
  font-size: var(--fs-16);
  color: var(--black-color);
  background-color: var(--white-grey);
  box-shadow: var(--inputbox-shadow);
  border: 1px solid var(--light-grey-color);
}
select.form-control {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  height: 40px;
}
.input-group {
  border-radius: 10px;
  overflow: hidden;
  border: var(--input-border);
  box-shadow: var(--inputbox-shadow);
}
.input-group input {
  box-shadow: none;
  border: 0;
}
#captcha input {
  background: url(../images/reset_icon1.png) no-repeat scroll 0 0 transparent;
  margin: 0px 5px -6px;
  padding: 0;
  border: medium none;
  cursor: pointer;
  width: 25px;
}
.input-group .input-group-text {
  border: none !important;
}
.input-group:focus-within {
  border-color: var(--secondary-color);
}
.input-group-text {
  background-color: var(--white-grey);
}

.form-control:focus {
  box-shadow: var(--inputbox-shadow);
  border-color: var(--secondary-color);
}

.primary-btn,
.button-danger {
  padding: 5px 12px;
  width: 100%;
  min-width: 80px;
  border: 2px solid transparent;
  border-radius: 4px;
  box-shadow: var(--inputbox-shadow);
  transition: ease 0.5s all;
  font-size: 16px;
  font-weight: 400;
}

.primary-btn {
  background: var(--primary-color);
  color: var(--white-color);
}

.primary-btn:hover {
  background: var(--secondary-color);
  border-color: transparent;
  color: var(--white-color);
}

.secondary-btn {
  background: var(--orange-color);
  color: var(--white-color);
}

.secondary-btn:hover {
  background: var(--orange-color);
  border-color: transparent;
  color: var(--white-color);
}

.button-danger {
  background-color: var(--danger-color);
  color: var(--white-color);
}

.button-danger:hover {
  color: var(--white-color);
}

.badge {
  display: inline-block;
  padding: 0.375em 0.625em;
  font-size: 0.875em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

/* dashboard css start */
.dashboard-section {
  padding: 40px 0;
}
.dashboard-section .nav-tabs {
  background-color: var(--white-color);
}

.nav-tabs .nav-link {
  position: relative;
  padding: 12px 30px;
  border: 0;
  border-radius: 0px;
  color: var(--black-color);
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  border-radius: 0;
  border-color: transparent;
  background-color: var(--orange-color);
  color: var(--white-color);
}

.dashboard-section .nav-tabs .nav-link.active {
  background-color: var(--orange-color);
  border-bottom: 2px solid var(--orange-grey);
  font-weight: 400;
  color: var(--white-color);
  font-size: 16px;
}

.dashboard-section .nav-tabs .nav-link.active:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid rgba(233 103 24 / 85%);
  content: " ";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.nav-tabs .nav-link:hover {
  background-color: rgba(233 103 24 / 85%);
  border-color: var(--orange-color);
  border-radius: 0px;
  transition: ease 0.3s all;
  color: var(--white-color);
}

.main-title {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.main-section .dashboard-section .dash-item{
  max-width: 100%;
  flex: 0 0 auto;
  width: 50%;
}

.dashboard-section .dash-item {
  max-width: 100%;
  flex: 1;
}

.dash-card {
  position: relative;
  height: 100%;
  min-height: 90px;
  padding: 10px;
  align-items: center;
  border: 1px solid #d4d4d4;
  box-shadow: 5px 5px 6px rgba(0 0 0 / 6%);
  transition: ease 0.2s all;
}
.dash-card:hover {transform: scale(1.05);}
.dash-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  font-size: 200%;
  transform: translateY(-50%);
}
.dash-card .title {display: inline-block;}
.dash-link,
.dash-card h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 120%;
  color: var(--orange-color);
  font-weight: bold;
}
.dash-link:hover{color: rgba(233 103 24 / 85%);}

.dash-icon i {
  opacity: 0.6;
  color: #739cbf;
}

.bg-red {
  background-color: #fff6f6;
}

.bg-red .dash-icon i {
  color: #ef4949;
}

.bg-green {
  background-color: #f2fffb;
}

.bg-green .dash-icon i {
  color: #539978;
}

.bg-blue {
  background-color: #f0f4ff;
}

.bg-blue .dash-icon i {
  color: #5a5aa9;
}

.bg-yellow {
  background-color: #faebd7;
}

.bg-yellow .dash-icon i {
  color: #e5a856;
}

.chart_container {
  width: 100%;
}

.table-container {
  height: 500px;
}

.table-container .table thead {
  background-color: var(--white-color);
  position: sticky;
  top: 0;
  z-index: 1;
}

table th,
table td {
  font-size: 14px;
}
/* dashboard css end */
/** custom check box **/
input[type="checkbox"] {
  position: relative;
  cursor: pointer;
}

input[type="checkbox"]:before {
  display: inline-block;
  width: 17px;
  height: 17px;
  background: var(--white-color);
  content: "";
  border: 2px solid var(--secondary-color);
  border-radius: 0px;
}

input[type="checkbox"]:checked:before {
  background-color: var(--secondary-color);
}

input[type="checkbox"]:checked:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 7px;
  border-left: 2px solid;
  border-bottom: 2px solid;
  transform: rotate(-45deg);
  position: absolute;
  top: 3px;
  left: 2px;
  border-color: var(--white-color);
}
.primary-heading {
  font-size: 140%;
  font-family: var(--roboto);
}
/** custom radio css **/
input[type="radio"] {
  position: relative;
  cursor: pointer;
}

input[type="radio"]:before {
  content: "";
  width: 16px;
  height: 16px;
  background: var(--white-color);
  display: inline-block;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  position: absolute;
  top: 0;
}

input[type="radio"]:checked:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  display: inline-block;
  position: absolute;
  left: 3px;
  right: 0;
  margin: auto;
  top: 8px;
  transform: translateY(-50%);
}

/* common css end */
/* main header css start*/
.main_header {
  padding: 0 20px;
  background-color: var(--white-color);
  box-shadow: var(--inputbox-shadow);
}
.brand .logo {
  width: 80px;
}
.main_header .navbar-brand {
  padding: 0;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  font-size: 24px;
  color: var(--primary-color);
  font-weight: var(--fw-600);
}
.main_header .navbar-brand .secondary-color {
  color: var(--secondary-color);
}
.navbar .navbar-nav .nav-item:not(:last-child) {
  margin: 0 10px 0 0;
}
.navbar .view-profile span {
  display: inline-block;
  vertical-align: middle;
}
.navbar .view-profile .user-img {
  margin-left: 10px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0 0 0 / 5%);
  border: 1px solid var(--light-grey-color);
}
.navbar .view-profile .user-img img {
  margin-top: 5px;
}
.line {
  width: 30px;
  height: 5px;
  background-color: var(--primary-color);
  display: block;
  margin: 4px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}
button[aria-expanded="true"] .line:nth-child(2) {
  opacity: 0;
}
button[aria-expanded="true"] .line:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(45deg);
  -ms-transform: translateY(9px) rotate(45deg);
  -o-transform: translateY(9px) rotate(45deg);
  transform: translateY(9px) rotate(45deg);
}
button[aria-expanded="true"] .line:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(-45deg);
  -ms-transform: translateY(-9px) rotate(-45deg);
  -o-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-9px) rotate(-45deg);
}
.navbar {
  position: relative;
}
.navbar .dropdowns {
  position: absolute;
  top: 50px;
  min-width: 150px;
  padding: 0px;
  background-color: rgb(255, 255, 255);
  box-shadow: var(--inputbox-shadow);
  border-radius: 6px;
  border: 1px solid var(--light-grey-color);
  overflow: auto;
  z-index: 1020;
}
.navbar-nav .nav-item .nav-link {
  color: var(--black-color);
  font-size: 15px;
  padding: 8px;
  line-height: 1.2;
  transition: ease.3s all;
}
.navbar-nav .nav-item .nav-link:hover {
  background-color: var(--orange-color);
  color: var(--white-color);
}
.navbar .navbar-nav .parent-menu {
  position: relative;
  cursor: pointer;
}
.navbar .navbar-nav .parent-menu .sub-menus {
  position: absolute;
  width: 200px;
  right: 0;
  top: 200%;
  border: 1px solid var(--light-grey-color);
  z-index: 5;
  visibility: hidden;
  background-color: var(--secondary-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.navbar .navbar-nav .parent-menu:hover .sub-menus {
  top: 100%;
  visibility: visible;
  opacity: 1;
}
.navbar .navbar-nav .parent-menu .sub-menus .nav-item {
  margin: 0;
  list-style: none;
}
.navbar .navbar-nav .parent-menu .sub-menus .nav-item .nav-link {
  color: var(--white-color);
}
.main-content {
  min-height: 100vh;
  width: 100%;
}
.main-content.no-scroll {
  min-height: calc(100vh - 129px);
}
/* login css start */
.login-section {
  padding: 80px 0;
}

.login-form .right-side {
  padding: 40px;
  box-shadow: var(--inputbox-shadow);
  background-color: var(--white-color);
}
/* login css end */

/* view request detail css start */
.request-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
}
.request-info li {
  margin-bottom: 5px;
  list-style: none;
  flex-basis: calc(25% - 10px);
  flex: 0 0 1;
  max-width: 100%;
}
/* view request detail css start */
/** custom radio box **/
.form-checked input[type="radio"] {
  position: relative;
  cursor: pointer;
}
.form-checked input[type="radio"]:before {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--white-color);
  content: "";
  border: 2px solid var(--secondary-color);
  border-radius: 3px;
  position: absolute;
  top: -6px;
}
.form-checked input[type="radio"]:checked:before {
  background-color: var(--secondary-color);
}
.form-checked input[type="radio"]:checked:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 10px;
  border-left: 2px solid;
  border-bottom: 2px solid;
  transform: rotate(-45deg);
  position: absolute;
  top: -2px;
  left: 2px;
  border-color: var(--white-color);
}
/* survey form css end */
/* main-section start */
.main-section {
  min-height: calc(100vh - 95px);
}
/* main-section end */
/* my-account css start */
.userimg {text-align: center;}
.userimg .image {
  width: 70px;
  height: 70px;
  line-height: 70px;
  display: inline-block;
  font-size: 240%;
  border: 1px solid var(--primary-color);
  border-radius: 100%;
  color: #514358;
  background-color: var(--white-color);
  margin-bottom: 15px;
}
.user-detail .user-name {text-align: center;font-weight: 700;}
.other-details li {
  list-style: none;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  border-bottom: 1px solid #d4d4d4;
  padding-bottom: 10px;
}
.other-detail .icon .fas {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: var(--secondary-color);
  border-radius: 50%;
  color: var(--white-color);
  font-size: 14px;
}
.other-detail .info {max-width: 120px;width: 100%;}
/* my-account css end */
/* footer css start */
footer {
  position: relative;
  z-index: 1;
}
.copyright {
  padding: 10px 20px;
  background-color: var(--primary-color);
}
.copyright p,
.copyright p a {
  color: var(--white-color);
}
.copyright .f-menu li {
  list-style: none;
  display: inline-block;
}
.copyright .f-menu li:not(:last-child) {
  margin-right: 10px;
}
.copyright .f-menu li a {
  color: var(--white-color);
  transition: ease 0.3s all;
}
.copyright .f-menu li a:hover {
  color: var(--secondary-color);
}
/* footer css end */
/* main header css end */
/* media css start */
@media screen and (min-width: 768px) {
  .login-form .right-side {
    max-width: 465px;
    margin-left: auto;
  }
}
@media screen and (min-width: 1700px) {
}

@media screen and (max-width: 991px) {
  .login-form .right-side {
    padding: 20px;
  }
}

@media screen and (max-width: 810px) {
}

@media screen and (max-width: 767px) {
  .dashboard-section .nav-tabs{flex-direction: row;flex-wrap: nowrap;}
  .main-section .dashboard-section .dash-item{
    width: 100%;
  }
}
