@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700;800;900&family=Poppins:wght@500;600;800;900&display=swap');

* {
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
}

*:after,
*::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

html {
  scroll-behavior: smooth;
}

:root {
  --primary2-textcolor: #9B51E0;
  --primary-textcolor: #283593;
  --success-textcolor: #30B21A;
  --primary-bgGray: #e1e1e7;
  --primary-textSecondary: #919397;
  --primary-fontFamily: 'Poppins';
  --secondary-fontFamily: 'Inter';
}

a {
  text-decoration: none !important;
}

.btn-app-outline {
  border: 1px solid var(--primary-textcolor) !important;
  transition: 0.3s ease-in;
  font-size: 14px;
  font-weight: 600;
}

.btn-app-outline:hover {
  background-color: var(--primary-textcolor) !important;
  color: #fff;
}

.card-title-new {
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0;
}

.bootstrap-tagsinput .tag {
  display: inline-block;
  margin: 3px;
  padding: 5px 10px;
  background-color: var(--primary2-textcolor);
  color: white;
  border-radius: 5px;
}


/* Guest navbar */
#top-navbar .circle-logo {
  width: 34px;
  height: 34px;
  background-color: var(--primary-textcolor);
  border-radius: 50%;
}

/* welcome page */
#welcome .center-div {
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  height: 100vh;
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  padding: 10px; */
}

#welcome .center-div h1 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 13px;
}

#welcome .center-div p {
  color: #fff;
  font-size: 16px;
  line-height: 1.5rem;
}

#welcome .bg-img {
  background-image: url('../images/dashboard/aut-theme2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

#welcome .overlay {
  background: linear-gradient(to left, #28349396, #28349362, #28349362);
  position: absolute;
  width: 100%;
  height: 100vh;
}

/* Register/Login Page ************************** */
.sign-page {
  font-family: var(--secondary-fontFamily);
  /* height: 100vh !important; */
}

.sign-page .reg-left-side {
  background-size: cover;
  background-position: center;
  background-image: url('../images/dashboard/reg-image.jpg');
  background-repeat: no-repeat;

}

.sign-page .login-left-side {
  background-size: cover;
  background-image: url('../images/dashboard/autism.jpg');
  background-position: center;
  background-repeat: no-repeat;
}

.sign-page .right-side {
  background-color: var(--primary-textcolor);
}

.sign-page .right-side .form-container {
  width: 70%;
}

.sign-page .right-side .page-title {
  font-size: 30px;
  font-weight: 600;
}

.sign-page .right-side label {
  font-size: 14px;
  letter-spacing: 1px;
  margin-top: 7px;
  margin-bottom: 3px;
  color: #e0e3f4;
}

.sign-page .right-side .form-control {
  background-color: #e2d8eb !important;
  color: #000;
  border: none;
}

.sign-page .right-side .form-control:focus {
  border: 0px !important;
  outline: none;
}

.sign-page .sign-btn {
  background: #fff;
  padding: 5px 0px;
  color: var(--primary-textcolor);
  transition: 0.5s ease;
  border: 1px solid var(--primary-textcolor);
}

.sign-page .sign-btn:hover {
  color: #fff;
  background: var(--primary-textcolor);
  border: 1px solid #fff;
}

/* Dashboard CSS ************************************/
.dashboard_layout {
  color: #000;
  font-family: var(--primary-fontFamily) !important;
}

.stat_container {
  background-color: #fff;
  padding: 14px;
  border: 1px solid var(--primary-bgGray);
}

.stat_container:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.stat_container .stat_content .title {
  font-size: 17px;
  font-weight: 600;
}

.stat_container .stat_content .amount {
  font-size: 30px;
  font-weight: 800;
}

.stat_container img {
  width: 50px;
  height: 50px;
}

.active-location {
  background: var(--primary2-textcolor);
  color: #fff;
}

/* Category expense container */

.category_expense_container .heading {
  font-weight: 600;
  font-size: 18px;
  display: block;
}

.category_expense_container .subtitle {
  font-weight: 500;
  font-size: 14px;
}

.category_expense_container .category_expense_container_inner {
  margin-top: 12px;
  border-bottom: 1px solid var(--primary-bgGray);
  padding-bottom: 5px;
}

.category_expense_container .category_expense_container_inner .title {
  font-size: 15px;
  font-weight: 500;
}

.category_expense_container .category_expense_container_inner .date {
  font-size: 13px;
  font-weight: 500;
}

.layout-fixed .main-sidebar {
  box-shadow: none !important;
}

.progress-circle {
  width: 150px;
  height: 150px;
  position: relative;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--primary-bgGray);
}

.progress-bar {
  width: 0;
  height: 100%;
  background-color: #ce99ff !important;
  transition: width 0.5s ease-in-out;
}

.progress-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-textcolor);
}

.nav-sidebar .nav-item>.nav-link .right {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}


/* Show Record Page Design for member */

#show-record-div .text-primary {
  color: #ceaa4d !important;
}

#show-record-div .text-secondary {
  color: var(--primary-textcolor) !important;
}

#show-record-div .bg-secondary {
  background: var(--primary-textcolor) !important;
}

#show-record-div .card-style1 {
  box-shadow: 0px 0px 10px 0px rgb(89 75 128 / 9%);
}


#show-record-div .section-title {
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

#show-record-div .section-title-badge {
  letter-spacing: 2px;
  padding: 5px 10px;
  margin: 0 3px 3px 0px;
  border: 1px solid #DEE2E6;
  display: inline-block;
}


#show-record-div .font-weight-600 {
  font-weight: 600;
}

#show-record-div .display-26 {
  font-size: 1.3rem;
}

#show-record-div .rounded {
  border-radius: 0.25rem !important;
}


@media only screen and (min-width: 990px) {
  .sign-page .right-side {
    height: 100vh !important;
  }

}



@media only screen and (max-width: 990px) {

  .center-div h1 {
    font-size: 24px !important;
  }

  .sign-page .left-side {
    height: 65vh !important;
  }

  .sign-page .right-side .form-container,
  .welcome-container {
    width: 90%;
  }

}