/* common css  */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", serif;
}

.container {
  max-width: 1440px;
  margin: 0px auto;
  padding: 0px 32px;
}

:root {
  --text_primary: #0c1421;
  --text_secondary: #313957;
  --label_text_color: #0c1421;
  --alice_color: #f7fbff;
  --border_primary: #d4d7e3;
  --white: #fff;
  --black: #000;
  --btn_color: #162d3a;
}
body {
  height: 100vh;
  overflow: hidden;
}
/* common css for pages */

label {
  color: var(--label_text_color);
  line-height: 16px;
  font-size: 16px;
}

input {
  background-color: var(--alice_color);
  border-radius: 12px;
  color: var(--black);
  font-size: 14px;
  outline: none;
  border: 1px solid var(--border_primary);
  height: 48px;
  padding: 0px 16px;
  width: 100%;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #1e4ae9;
}

.global_button {
  background-color: var(--btn_color);
  border-radius: 12px;
  border: none;
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  width: 100%;
  padding: 16px 10px;
  cursor: pointer;
  transition: all 0.3s ease-in;
  border: 1px solid transparent;
}

.global_button:hover {
  background-color: transparent;
  color: var(--btn_color);
  border: 1px solid var(--btn_color);
}

main {
  height: 100vh;
  overflow-y: scroll;
}
main::-webkit-scrollbar {
  display: none;
}

.modal_buttons button{
  min-width: 180px;
}

.global_primary_button{
  font-size: 14px;
  font-weight: 400;
  background-color: #0067DB;
  border-radius: 8px;
  border: none;
  color: #fff;
  padding: 10px 20px;
}

/* alert box css  */
.notification_box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 30px 0px;
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #dcdcdc;
  box-shadow: 0px 7px 13px 0px #0000001a;
}

.notification_box .alert_content h2 {
  color: #292929 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  margin-bottom: 10px !important;
}

.notification_box .alert_content p {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #525252;
  margin-bottom: 0px !important;
}

/* header and navbar css starts from here  */
h6.card_header_forDash {
  font-size: 12px;
  color: #313131;
  font-weight: 600;
}
.dashboard_boxes {
  border-radius: 16px;
  padding: 15px;
  overflow: hidden;
  border: 2px solid #f3f3f3;
}

.sidebar {
  color: #fff;
  min-height: 100vh;
  border: 2px solid #e8ecf5;
  height: 100vh;
  position: sticky;
}
.sidebar a {
  color: #a4b4cb;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
}
.sidebar a.active {
  background-color: #e5f1ff;
  color: #004ba5;
}
.sidebar a:hover {
  color: #004ba5;
}
.profile {
  display: flex;
  gap: 10px;
}
.profile ul {
  margin-bottom: 15px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
}
.profile img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.main-content {
  background-color: #fcfcfc;
}
nav.left_navbar .logo img {
  width: 100%;
  max-width: 200px;
}
.left_navbar .nav-item:hover svg {
  fill: #004ba5;
}

.user_profile_details p {
  color: #000000;
  font-size: 14px;
  margin-bottom: 2px;
  font-size: 500;
}
.user_profile_details span {
  color: #64748b;
  font-size: 10px;
}

.mastercard_items {
  background-color: var(--white);
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 2px solid #f3f3f3;
  border-radius: 8px;
  position: relative;
}

.mastercard_items .dropdown-menu {
  width: 100%;
}

.mastercard_items .dropdown-item {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}
.balance_sec {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #141736;
  font-weight: 500;
}
.balance_sec:nth-child(2) {
  font-size: 14px;
  gap: 20px;
}

.menues_arrowe{
  margin-left: auto;
}

.inner_items li{
  padding-left: 30px;
  position: relative;
}
.inner_items li::before{
  content: "";
  left: 30px;
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #a4b4cb;
  top: 50%;
  transform: translateY(-50%);
}
.inner_items li:hover::before{
  background-color: #004ba5;
}

/* tabination and profile css for common pages  */
.profile-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
}
.profile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.profile-header img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.profile-card .tabs {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
  padding-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.profile-card .tabs a {
  text-decoration: none;
  margin-right: 20px;
  padding-bottom: 10px;
  color: #808080;
  border-bottom: 2px solid transparent;
  font-size: 16px;
}

.profile-card .tabs a.active {
  color: #004ba5;
  border-bottom: 2px solid #004ba5;
}
.profile-card .profile_image_folder {
  display: flex;
  align-items: center;
  gap: 20px;
  gap: 20px;
}
.profile-card .profile_details h5 {
  font-size: 20px;
  color: var(--black);
  margin: 0;
  margin-bottom: 5px;
}
.profile-card .profile_details p {
  font-size: 16px;
  color: #64748b;
  margin: 0;
  line-height: 20px;
}
.profile-card .user_buttons button {
  font-size: 16px;
  color: var(--white);
  border-radius: 8px;
  border: none;
  padding: 10px 25px;
}
.profile-card .user_buttons button.secondary {
  background-color: #bab6b6;
}
.profile-card .user_buttons button.primary {
  background-color: #4182f9;
  padding: 10px 25px;
  margin-left: 15px;
}

.profile-card .tabs a:nth-child(5) {
  margin-right: 0px;
}

@media screen and (max-width: 1024px) {
  input {
    height: 40px;
  }

  .global_button {
    padding: 12px 10px;
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  input {
    height: 35px;
  }

  label {
    font-size: 14px;
    line-height: 14px;
  }

  .global_button {
    padding: 10px 10px;
    font-size: 16px;
  }
}
