/* scrollbar css start */
::-webkit-scrollbar {
  width: 3px;
  border-radius: 12px;
  height: auto;
  direction: rtl;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-track-piece {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--secondary);
}

html {
  overflow-y: scroll;
  scrollbar-color: var(--secondary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/* scrollbar css end */

/* placeholder color start */
::placeholder {
  color: var(--dull);
  opacity: 1;
  font-weight: 400;
}

::-ms-input-placeholder {
  color: var(--dull);
}

/* placeholder color end */

.pointer {
  cursor: pointer;
}

.nav_bar {
  display: flex;
  padding: 15px 60px;
  background-color: var(--bg_light);
  align-items: center;
  justify-content: space-between;
  position: fixed;
  z-index: 1201;
  width: 100%;
  border-bottom: 1px solid var(--border);
}

.profile_icon {
  border-radius: 100%;
  height: 32px;
  width: 32px;
  cursor: pointer;
  position: relative;
}

.form_input {
  height: 52px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 0px 20px 1px 54px;
  font-size: 16px;
  background-color: transparent;
}

.input_icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
}

.btn_white {
  width: 332px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background-color: transparent;
  transition: all 0.5s ease;
}

.btn_white:hover {
  background-color: var(--light_primary);
  color: var(--default_font);
}

.section_layout {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.notfound_sec {
  max-width: 410px;
  width: 100%;
}

.notfound_sec h1 {
  font-size: 32px;
  font-weight: 600;
  color: var(--primary);
}

.go3573739049 {
  stroke-width: 4px !important;
}

.auth_layout {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.auth_sec {
  max-width: 424px;
  width: 100%;
}

.auth_sec h1 {
  font-size: 24px;
  font-weight: 600;
}

.auth_sec.signon h1 {
  font-weight: 500;
}

.auth_layout .form_input.phone_input {
  padding: 0px 20px 1px 98px;
}

.input_suffix {
  position: absolute;
  top: 14px;
  right: 16px;
}

.error_msg {
  font-size: 14px;
  color: #ff4949;
  text-align: left;
}

.btn_primary {
  width: 100%;
  border-radius: 12px;
  background-color: var(--primary);
  color: #ffffff;
  transition: all 0.5s ease;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  text-align: left;
  padding: 18px 22px 10px;
  border-radius: 12px;
}

.dropdown-content p {
  padding: 0px 0px 8px;
  display: block;
  text-wrap: nowrap;
}

.profile_icon:hover .dropdown-content {
  display: block I !important;
}

.signin_icon {
  height: 22px;
  cursor: pointer;
  position: relative;
  margin-top: 8px;
}

.admin_body {
  position: absolute;
  top: 65px;
  width: 100%;
  padding: 24px;
}

.card_body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background-color: var(--bg_light);
  padding-block: 24px;
  position: relative;
  cursor: pointer;
}

.card_body h1 {
  font-size: 26px;
  font-weight: 600;
  color: var(--primary);
}

.card_body:hover {
  background-color: var(--light_primary);
}

.card_right_arrow {
  position: absolute;
  top: 12px;
  right: 12px;
  color: var(--secondary);
}

.card_body:hover .card_right_arrow {
  color: var(--primary);
}

.MuiToolbar-root {
  border-radius: 20px 20px 0 0;
}

.modal_content {
  border-radius: 30px !important;
  overflow: hidden !important;
  padding: 30px 24px !important;
  min-height: 500px;
  max-height: 641px;
}

.show_post {
  height: 450px;
  width: 100%;
  border-radius: 30px;
}

.modal.show {
  z-index: 1202;
}

.modal-backdrop.show {
  z-index: 1201;
}

.topbar {
  display: flex;
  justify-content: space-between;
}

.delbtn {
  margin: 10px;
  padding: 10px 20px 10px 20px;
  height: fit-content;
  color: red;
  border-radius: 10%;
}