@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@font-face {
  font-family: SFLightFont;
  src: url(/assets/fonts/SF-Pro-Display-Light.woff);
}
@font-face {
  font-family: SFRegularFont;
  src: url(/assets/fonts/SF-Pro-Display-Regular.woff);
}
@font-face {
  font-family: SFMediumFont;
  src: url(/assets/fonts/SF-Pro-Display-Medium.woff);
}
@font-face {
  font-family: SFSemiBoldFont;
  src: url(/assets/fonts/SF-Pro-Display-Semibold.woff);
}
@font-face {
  font-family: SFBoldFont;
  src: url(/assets/fonts/SF-Pro-Display-Bold.woff);
}
/* Hover Transistion */
/* Custom scroll Bar */
/* Custom scroll Bar Inner */
/* Custom scroll Bar Inner */
:root {
  --vh: 1vh;
}

.sidebar_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 250px;
  padding: 12px 16px 16px 16px;
  gap: 24px;
  height: calc(var(--vh, 1vh) * 100);
  background: #f8f8f9;
  border-right: 1px solid #eaeaee;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
@media all and (max-width: 991px) {
  .sidebar_wrapper {
    transition: 0.5s;
    left: -100%;
  }
}
.sidebar_wrapper > div {
  width: 100%;
}
.sidebar_wrapper svg {
  color: #4e4e4e;
}
.sidebar_wrapper .logo_grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 40px);
  align-items: center;
  gap: 5px;
}
.sidebar_wrapper .logo_grid .logo {
  text-align: start;
}
.sidebar_wrapper .logo_grid .sidebar_expand_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.sidebar_wrapper .logo_grid .sidebar_expand_btn:hover {
  background-color: rgba(123, 125, 133, 0.4);
}
.sidebar_wrapper .logo_grid .short_logo {
  display: none;
  width: auto;
  max-width: 30px;
  max-height: 30px;
}
.sidebar_wrapper .accordion-item {
  border: none !important;
  outline: none;
  box-shadow: none;
  background-color: #f8f8f9;
}
.sidebar_wrapper .accordion-button {
  position: relative;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  box-shadow: none;
  background-color: #f8f8f9;
}
.sidebar_wrapper .accordion-button::after {
  position: absolute;
  top: 15px;
  right: 10px;
  background-image: url("/assets/icons/arrow-down-02.svg");
  background-size: 12px;
}
.sidebar_wrapper .accordion-button:not(.collapsed) {
  background-color: rgba(208, 213, 221, 0.4);
}
.sidebar_wrapper .accordion-button:not(.collapsed)::after {
  background-image: url("/assets/icons/arrow-up.svg") !important;
  transform: rotate(0) !important;
  -webkit-transform: rotate(0) !important;
  -moz-transform: rotate(0) !important;
  -ms-transform: rotate(0) !important;
  -o-transform: rotate(0) !important;
}
.sidebar_wrapper .accordion-body {
  padding-top: 8px;
  padding-right: 0;
  padding-bottom: 6px;
  background-color: #f8f8f9;
}
.sidebar_wrapper .accordion-body .menu_grid {
  padding-top: 4px;
  padding-bottom: 4px;
}
.sidebar_wrapper .top_menu_area {
  margin-top: 32px;
}
@media all and (max-width: 767px) {
  .sidebar_wrapper .top_menu_area {
    transition: 0.5s;
    margin-top: 24px;
  }
}
.sidebar_wrapper .menu_grid {
  display: grid;
  grid-template-columns: minmax(0, 18px) repeat(1, minmax(0, 1fr));
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  padding: 8px;
  width: 100%;
  margin-bottom: 6px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.sidebar_wrapper .menu_grid.menu_badge_grid {
  grid-template-columns: minmax(0, 18px) repeat(1, minmax(0, 1fr)) minmax(0, 30px);
}
.sidebar_wrapper .menu_grid.single_menu_grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.sidebar_wrapper .menu_grid:hover {
  background-color: rgba(208, 213, 221, 0.4);
}
.sidebar_wrapper .menu_grid .label {
  color: #343434;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.16px;
  margin-top: 3px;
}
@media all and (max-width: 767px) {
  .sidebar_wrapper .menu_grid .label {
    transition: 0.5s;
    font-size: 14px;
  }
}
.sidebar_wrapper .menu_grid .number {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 22px;
  padding: 1px 14px;
  border-radius: 16px;
  background: #ffcdb3;
}
.sidebar_wrapper .menu_grid .number span {
  color: #471e08;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}
.sidebar_wrapper .menu_grid.active_menu {
  background-color: #f1f1f1;
}
.sidebar_wrapper .menu_grid.active_menu svg {
  color: #235de4;
}
.sidebar_wrapper .menu_grid.active_menu label {
  color: #04050c;
}
.sidebar_wrapper .top_menu_area h4,
.sidebar_wrapper .main_menu_area h4 {
  color: #6a6a6a;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.12px;
  text-transform: uppercase;
}
.sidebar_wrapper .main_menu_area {
  margin-top: 41px;
}
@media all and (max-width: 991px) {
  .sidebar_wrapper .main_menu_area {
    transition: 0.5s;
    margin-top: 30px;
  }
}
.sidebar_wrapper .inner_main_menu {
  margin-top: 16px;
  max-height: calc(var(--vh, 1vh) * 100 - 260px);
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.sidebar_wrapper .inner_main_menu::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.sidebar_wrapper .inner_main_menu::-webkit-scrollbar-track {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 5px;
}
.sidebar_wrapper .inner_main_menu::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 5px;
}
.sidebar_wrapper .inner_main_menu::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}
.sidebar_wrapper .user_profile_grid {
  display: grid;
  grid-template-columns: minmax(0, 32px) repeat(1, minmax(0, 1fr)) minmax(0, 14px);
  align-items: center;
  gap: 12px;
  width: 100%;
}
.sidebar_wrapper .user_profile_grid .user_image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border-radius: 32px;
  border: 2px solid #fff;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
.sidebar_wrapper .user_profile_grid h3 {
  color: #343434;
  font-family: SFMediumFont;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sidebar_wrapper .user_profile_grid h4 {
  color: #6a6a6a;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 4px;
}
.sidebar_wrapper .notification_wrapper .notification_list_wrapper {
  display: none;
}
@media all and (min-width: 992px) {
  .sidebar_wrapper .notification_wrapper .notification_list_wrapper {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    display: block;
  }
}
.sidebar_wrapper .notification_wrapper:hover .notification_list_wrapper {
  top: 0;
  opacity: 1;
  visibility: visible;
}

.hide-sidebar .sidebar_wrapper,
.hide-sidebar .setting_sidebar_layout {
  left: 0;
}
@media all and (min-width: 992px) {
  .hide-sidebar .sidebar_wrapper,
  .hide-sidebar .setting_sidebar_layout {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    left: -100%;
  }
}

.short_sidebar_active .sidebar_wrapper {
  width: 50px !important;
  padding: 12px 10px !important;
}
.short_sidebar_active .sidebar_wrapper .logo_grid .desktop_logo {
  display: none;
}
.short_sidebar_active .sidebar_wrapper .logo_grid .short_logo {
  display: block;
}
.short_sidebar_active .sidebar_wrapper .logo_grid .sidebar_expand_btn {
  display: none;
}
.short_sidebar_active .sidebar_wrapper .top_menu_area {
  padding-bottom: 10px;
  border-bottom: 1px solid #eaeaee;
}
.short_sidebar_active .sidebar_wrapper .top_menu_area h4 {
  display: none;
}
.short_sidebar_active .sidebar_wrapper .inner_main_menu {
  max-height: calc(var(--vh, 1vh) * 100 - 250px);
}
.short_sidebar_active .sidebar_wrapper .menu_grid {
  display: block;
  padding: 0;
  margin: 14px 0;
  text-align: center;
}
.short_sidebar_active .sidebar_wrapper .menu_grid svg {
  max-width: 16px;
}
.short_sidebar_active .sidebar_wrapper .menu_grid .label,
.short_sidebar_active .sidebar_wrapper .menu_grid .number {
  display: none;
}
.short_sidebar_active .sidebar_wrapper .mobile_notificaton_btn {
  display: none;
}
.short_sidebar_active .sidebar_wrapper .accordion-button::after {
  display: none;
}
.short_sidebar_active .sidebar_wrapper .main_menu_area {
  margin-top: 16px;
}
.short_sidebar_active .sidebar_wrapper .main_menu_area h4 {
  display: none;
}
.short_sidebar_active .sidebar_wrapper .user_profile_grid {
  display: block;
  padding-top: 10px;
  border-top: 1px solid #eaeaee;
}
.short_sidebar_active .sidebar_wrapper .user_profile_grid > div,
.short_sidebar_active .sidebar_wrapper .user_profile_grid .user_icon {
  display: none;
}
.short_sidebar_active .accordion-button .icon {
  padding-top: 3px;
  padding-bottom: 3px;
}
.short_sidebar_active .accordion-collapse {
  display: none;
}
.short_sidebar_active .setting_sidebar_wrapper .setting_back img,
.short_sidebar_active .setting_nested_sidebar_wrapper .setting_back img {
  display: none;
}
.short_sidebar_active .setting_sidebar_wrapper .setting_back span,
.short_sidebar_active .setting_nested_sidebar_wrapper .setting_back span {
  font-size: 8px;
}

.setting_sidebar_wrapper .setting_back {
  gap: 10px 16px;
}
.setting_sidebar_wrapper .setting_back:hover {
  opacity: 0.8;
}
.setting_sidebar_wrapper .setting_back span {
  color: #151523;
  font-family: SFSemiBoldFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.setting_sidebar_wrapper .top_menu_area {
  margin-top: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid #e3e3e5;
}
@media all and (max-width: 767px) {
  .setting_sidebar_wrapper .top_menu_area {
    transition: 0.5s;
    padding-bottom: 12px;
  }
}
.setting_sidebar_wrapper .top_menu_area h4 {
  margin-bottom: 8px;
}
.setting_sidebar_wrapper .inner_main_menu {
  max-height: none;
}
.setting_sidebar_wrapper .main_top_area {
  margin-top: 40px;
  max-height: calc(var(--vh, 1vh) * 100 - 95px);
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.setting_sidebar_wrapper .main_top_area::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.setting_sidebar_wrapper .main_top_area::-webkit-scrollbar-track {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 5px;
}
.setting_sidebar_wrapper .main_top_area::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 5px;
}
.setting_sidebar_wrapper .main_top_area::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}
@media (min-width: 768px) and (max-width: 991px) {
  .setting_sidebar_wrapper .main_top_area {
    transition: 0.5s;
    margin-top: 30px;
  }
}
@media all and (max-width: 767px) {
  .setting_sidebar_wrapper .main_top_area {
    transition: 0.5s;
    margin-top: 20px;
  }
}

.setting_sidebar_layout {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
}
@media all and (max-width: 991px) {
  .setting_sidebar_layout {
    transition: 0.5s;
    left: -100%;
  }
}
.setting_sidebar_layout .sidebar_wrapper {
  position: static;
}
.setting_sidebar_layout .setting_nested_sidebar_wrapper {
  width: 300px;
  padding: 20px 24px 30px 30px;
  background: #fff;
  box-shadow: 0px 0px 0px 1px rgba(21, 21, 35, 0.08);
}
.setting_sidebar_layout .setting_nested_sidebar_wrapper .top_menu_area {
  padding-bottom: 0;
  border-bottom: none;
}
@media all and (max-width: 1199px) {
  .setting_sidebar_layout .setting_nested_sidebar_wrapper {
    transition: 0.5s;
    display: none;
  }
}

/*
!Utilities Or Helper CSS
*/
*,
::before,
::after {
  box-sizing: border-box;
}

body {
  background-color: white;
  font-family: SFRegularFont;
  font-size: 16px;
  min-height: calc(var(--vh, 1vh) * 100 - 20px);
}

html,
body {
  overflow-x: hidden;
  overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: SFRegularFont;
}

p {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: #000000;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
}

img,
svg {
  max-width: 100%;
}

a {
  color: unset;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

a,
span {
  display: inline-block;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

:focus {
  outline: none !important;
}

input,
select,
textarea {
  font-weight: 400;
  font-size: 16px;
  color: #101010;
}
input:disabled,
select:disabled,
textarea:disabled {
  color: #9da3bc !important;
  background-color: #eaeaee !important;
}

input:focus,
select:focus,
textarea:focus {
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid #235de4 !important;
}

.btn:focus {
  outline: none !important;
}

button:focus {
  outline: none !important;
}

button {
  cursor: pointer;
  border: none !important;
  padding: 0;
  background-color: transparent;
}
button:disabled {
  opacity: 0.6;
  pointer-events: none;
}

button:hover {
  border: none !important;
}

.niceSelect.disabled {
  background-color: #eaeaee !important;
}

*::-moz-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 20px;
  color: #696f8c !important;
  text-align: start;
}

*::placeholder,
*::-moz-placeholder,
.placeholder_text {
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 20px;
  color: #696f8c !important;
  text-align: start;
}

.emojionearea .emojionearea-editor:empty:before {
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 20px;
  color: #696f8c !important;
  text-align: start;
}

::-moz-selection {
  color: #000;
  background: #b4f3d1;
}

::selection {
  color: #000;
  background: #b4f3d1;
}

::-moz-selection {
  color: #000;
  background: #b4f3d1;
}

/*  Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Common Class */
@media all and (max-width: 575px) {
  .container {
    transition: 0.5s;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

.d-flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 7px 12px;
}

.d-hide {
  display: none;
}

@media all and (max-width: 767px) {
  .d-min-md-block {
    transition: 0.5s;
    display: none !important;
  }
}

.d-max-lg-block {
  display: none !important;
}
@media all and (max-width: 1199px) {
  .d-max-lg-block {
    transition: 0.5s;
    display: block !important;
  }
}

.d-min-lg-block {
  display: block !important;
}
@media all and (max-width: 1199px) {
  .d-min-lg-block {
    transition: 0.5s;
    display: none !important;
  }
}

.g-xs {
  gap: 10px 8px;
}

.g-sm {
  gap: 8px 12px;
}
@media all and (max-width: 767px) {
  .g-sm {
    transition: 0.5s;
    gap: 8px;
  }
}

.g-lg {
  gap: 10px 15px;
}

.text-sm {
  font-size: 14px;
}

@media all and (max-width: 767px) {
  .mm-30 {
    transition: 0.5s;
    margin-top: 30px;
  }
}

@media all and (max-width: 991px) {
  .mlg-30 {
    transition: 0.5s;
    margin-top: 30px;
  }
}

.mt-10 {
  margin-top: 10px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-24 {
  margin-top: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mt-28 {
  margin-top: 28px;
}

.mt-32 {
  margin-top: 32px;
}
@media all and (max-width: 991px) {
  .mt-32 {
    transition: 0.5s;
    margin-top: 20px;
  }
}

.mt-42 {
  margin-top: 42px;
}
@media all and (max-width: 991px) {
  .mt-42 {
    transition: 0.5s;
    margin-top: 28px;
  }
}

.mt-56 {
  margin-top: 56px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .mt-56 {
    transition: 0.5s;
    margin-top: 40px;
  }
}
@media all and (max-width: 767px) {
  .mt-56 {
    transition: 0.5s;
    margin-top: 30px;
  }
}

.mt-63 {
  margin-top: 63px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .mt-63 {
    transition: 0.5s;
    margin-top: 50px;
  }
}
@media all and (max-width: 767px) {
  .mt-63 {
    transition: 0.5s;
    margin-top: 30px;
  }
}

.mt-n10 {
  margin-top: -10px;
}

.w-90 {
  width: 90% !important;
}

.w-80 {
  width: 80% !important;
}

.w-70 {
  width: 70% !important;
}

.w-60 {
  width: 60% !important;
}

.text-1e {
  color: #1e8b34 !important;
}

.text-90 {
  color: #909090 !important;
}

.text-fe {
  color: #fe2828;
}

.text-e8 {
  color: #e82749 !important;
}

.text-primary {
  color: #235de4 !important;
}

.text-7b {
  color: #7b7b7b !important;
}

.text-ff {
  color: #ffae1b !important;
}

.text-17 {
  color: #17a584 !important;
}

.bg-primary {
  background-color: #235de4;
}

.bg-f1 {
  background-color: #f1f5fe;
}

.bg-ff {
  background-color: #ffecc9 !important;
}

.bg-b1 {
  background-color: #b1e5fc !important;
}

.bg-b6 {
  background-color: #b6f0b5 !important;
}

.default_section_gap {
  margin-top: 80px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .default_section_gap {
    transition: 0.5s;
    margin-top: 60px;
  }
}
@media all and (max-width: 767px) {
  .default_section_gap {
    transition: 0.5s;
    margin-top: 50px;
  }
}

.two-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-items: start;
  gap: 10px 20px;
}
@media all and (max-width: 767px) {
  .two-grid {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 500;
  display: none;
}
.overlay.hide_sidebar {
  z-index: 1001;
}
.overlay.inbox_overlay {
  z-index: 1001;
  background: rgba(0, 0, 0, 0.01);
}

.scrolltop {
  display: none;
}

.main_content_wrapper {
  margin-left: 282px;
  margin-top: 20px;
  margin-right: 24px;
  margin-bottom: 24px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
@media all and (max-width: 991px) {
  .main_content_wrapper {
    transition: 0.5s;
    margin-left: 24px;
  }
}
@media all and (max-width: 767px) {
  .main_content_wrapper {
    transition: 0.5s;
    margin-right: 16px;
    margin-left: 16px;
  }
}
@media all and (min-width: 1200px) {
  .main_content_wrapper {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
  }
  .main_content_wrapper.setting_grid_wrapper {
    margin-top: 0;
    margin-left: 586px;
  }
}

@media all and (min-width: 768px) {
  .content_no_space {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    margin-left: -32px;
    width: calc(100% + 32px);
  }
}

@media all and (min-width: 992px) {
  .hide-sidebar .main_content_wrapper {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    margin-left: 24px;
  }
}
@media all and (max-width: 767px) {
  .hide-sidebar .main_content_wrapper {
    transition: 0.5s;
    margin-left: 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hide-sidebar .content_md_no_space {
    transition: 0.5s;
    margin-left: -32px;
  }
}

.short_sidebar_active .main_content_wrapper {
  margin-left: 74px;
}
@media all and (min-width: 1200px) {
  .short_sidebar_active .main_content_wrapper.setting_grid_wrapper {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    margin-left: 120px;
  }
}

.setting_content_wrapper {
  margin-top: 40px;
}
@media all and (max-width: 767px) {
  .setting_content_wrapper {
    transition: 0.5s;
    margin-top: 30px;
  }
}

.modal-body {
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.modal-body::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.modal-body::-webkit-scrollbar-track {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 5px;
}
.modal-body::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 5px;
}
.modal-body::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}

.hide_dropdown_arrow::after {
  display: none;
}

.word-break-all {
  word-break: break-all;
}

.table-responsive {
  min-height: 300px;
  overflow: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.table-responsive::-webkit-scrollbar {
  width: 5px;
  height: 8px;
}
.table-responsive::-webkit-scrollbar-track {
  background: rgba(52, 64, 84, 0.6);
  border-radius: 5px;
}
.table-responsive::-webkit-scrollbar-thumb {
  background: #edeef2;
  border-radius: 5px;
}
.table-responsive::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}

.table_header_right {
  text-align: end;
  justify-content: end;
}

.table_action_right {
  justify-content: end;
}

@media all and (max-width: 767px) {
  .m-sm-30 {
    transition: 0.5s;
    margin-top: 30px;
  }
}

.niceSelect .list {
  width: 100%;
  max-height: 250px;
  overflow: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.niceSelect .list::-webkit-scrollbar {
  width: 5px;
  height: 8px;
}
.niceSelect .list::-webkit-scrollbar-track {
  background: rgba(52, 64, 84, 0.6);
  border-radius: 5px;
}
.niceSelect .list::-webkit-scrollbar-thumb {
  background: #edeef2;
  border-radius: 5px;
}
.niceSelect .list::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}
.niceSelect .current {
  display: flex;
  align-items: center;
  height: 100%;
}

.emojionearea-editor {
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.emojionearea-editor::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.emojionearea-editor::-webkit-scrollbar-track {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 5px;
}
.emojionearea-editor::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 5px;
}
.emojionearea-editor::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}

.skeleton {
  height: 32px;
  width: 32px;
  border-radius: 5px;
  background: rgba(130, 130, 130, 0.2);
  background: linear-gradient(to right, rgba(130, 130, 130, 0.2) 8%, rgba(130, 130, 130, 0.3) 18%, rgba(130, 130, 130, 0.2) 33%);
  background-size: 800px 100px;
  animation: wave-squares 2s infinite ease-out;
}
.skeleton.line {
  width: 100px;
  height: 30px;
}
.skeleton.button {
  width: 120px;
}
@media all and (max-width: 767px) {
  .skeleton.button {
    transition: 0.5s;
    width: 60px;
  }
}

@keyframes wave-lines {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
@keyframes wave-squares {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
.animate_scale_up_down {
  animation: animationScaleUpDown 1s linear infinite alternate;
  -webkit-animation: animationScaleUpDown 1s linear infinite alternate;
}

@keyframes animationScaleUpDown {
  from {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
  }
  to {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }
}
.blur-overlay {
  opacity: 1 !important;
  background-color: rgba(0, 0, 0, 0.0784313725);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.border_space {
  padding: 16px 24px 24px 24px;
  border-radius: 12px;
  border: 1px solid #eaeaee;
  background: #fff;
}
@media all and (max-width: 991px) {
  .border_space {
    transition: 0.5s;
    padding: 20px 16px;
  }
}
.border_space h6 {
  color: #000;
  font-family: SFMediumFont;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media all and (max-width: 767px) {
  .border_space h6 {
    transition: 0.5s;
    font-size: 16px;
  }
}

@media all and (min-width: 992px) {
  .is-show-status {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
  }
  .is-show-status .sidebar_wrapper,
  .is-show-status .setting_sidebar_layout {
    top: 37px;
  }
  .is-show-status .sidebar_wrapper {
    height: calc(var(--vh, 1vh) * 100 - 37px);
  }
  .is-show-status .sidebar_wrapper .inner_main_menu {
    max-height: calc(var(--vh, 1vh) * 100 - 307px);
  }
  .is-show-status .short_sidebar_active .sidebar_wrapper .inner_main_menu {
    max-height: calc(var(--vh, 1vh) * 100 - 297px);
  }
  .is-show-status .setting_sidebar_wrapper .inner_main_menu {
    max-height: none;
  }
}
.is-show-status .main_content_wrapper {
  margin-top: 57px;
}
@media all and (max-width: 991px) {
  .is-show-status .main_content_wrapper {
    transition: 0.5s;
    margin-top: 47px;
  }
}

.login_title {
  font-family: SFSemiBoldFont;
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  color: #0b1234;
}

.page_subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #0b1234;
}
@media all and (max-width: 767px) {
  .page_subtitle {
    transition: 0.5s;
    font-size: 16px;
    line-height: 26px;
  }
}

.page_inner_title {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.24px;
}
@media all and (max-width: 991px) {
  .page_inner_title {
    transition: 0.5s;
    font-size: 20px;
  }
}

.dashboard_title {
  color: #04050c;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.64px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .dashboard_title {
    transition: 0.5s;
    font-size: 28px;
  }
}
@media all and (max-width: 991px) {
  .dashboard_title {
    transition: 0.5s;
    font-size: 24px;
  }
}
.dashboard_title.lg_title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.credit_title {
  color: #000;
  font-family: SFMediumFont;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media all and (max-width: 767px) {
  .credit_title {
    transition: 0.5s;
    font-size: 18px;
  }
}

.inbox_template_title {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .inbox_template_title {
    transition: 0.5s;
    font-size: 22px;
    line-height: 30px;
  }
}
@media all and (max-width: 767px) {
  .inbox_template_title {
    transition: 0.5s;
    font-size: 20px;
    line-height: 28px;
  }
}
.inbox_template_title .user_name {
  font-size: 20px;
  line-height: 28px;
  color: #758194;
}
@media (min-width: 768px) and (max-width: 991px) {
  .inbox_template_title .user_name {
    transition: 0.5s;
    font-size: 18px;
    line-height: 26px;
  }
}
@media all and (max-width: 767px) {
  .inbox_template_title .user_name {
    transition: 0.5s;
    font-size: 16px;
    line-height: 24px;
  }
}

.payment_title {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}

.refer_title {
  color: #151523;
  font-family: SFSemiBoldFont;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .refer_title {
    transition: 0.5s;
    font-size: 24px;
  }
}
@media all and (max-width: 991px) {
  .refer_title {
    transition: 0.5s;
    font-size: 20px;
  }
}

.commission_sub_title {
  color: #151523;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
@media all and (max-width: 991px) {
  .commission_sub_title {
    transition: 0.5s;
    font-size: 14px;
    line-height: 22px;
  }
}

.tier_title {
  color: #000;
  text-align: center;
  font-family: SFSemiBoldFont;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .tier_title {
    transition: 0.5s;
    font-size: 32px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .tier_title {
    transition: 0.5s;
    font-size: 28px;
  }
}
@media all and (max-width: 767px) {
  .tier_title {
    transition: 0.5s;
    font-size: 24px;
  }
}

.login_btn {
  font-family: SFMediumFont;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: white;
  width: 100%;
  padding: 8px 12px 8px 12px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  background-color: #235de4;
  margin-top: 16px;
}
@media all and (max-width: 767px) {
  .login_btn {
    transition: 0.5s;
    font-size: 14px;
  }
}

.sidebar_open_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.sidebar_open_btn:hover {
  background-color: rgba(123, 125, 133, 0.4);
}
@media all and (min-width: 992px) {
  .sidebar_open_btn {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    display: none;
  }
}
.sidebar_open_btn img {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.amount_btn {
  color: #fff;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  padding: 8px 17px;
  border-radius: 8px;
  background: #235de4;
}
@media all and (max-width: 767px) {
  .amount_btn {
    transition: 0.5s;
    font-size: 14px;
  }
}
.amount_btn:hover {
  opacity: 0.8;
}

.plus_new_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
@media all and (max-width: 767px) {
  .plus_new_btn {
    transition: 0.5s;
    padding: 8px 12px;
  }
}
.plus_new_btn:hover {
  background-color: rgba(234, 234, 238, 0.8);
}
.plus_new_btn span {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.border_btn {
  color: #235de4;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-decoration-line: underline;
}
@media all and (max-width: 767px) {
  .border_btn {
    transition: 0.5s;
    font-size: 14px;
  }
}
.border_btn:hover {
  opacity: 0.8;
}

.cancel_btn {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
@media all and (max-width: 767px) {
  .cancel_btn {
    transition: 0.5s;
    font-size: 14px;
  }
}
.cancel_btn:hover {
  background-color: #e8e8eb;
}

.create_event_btn {
  color: white;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  padding: 8px 24px;
  border-radius: 8px;
  background-color: #235de4;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
@media all and (max-width: 767px) {
  .create_event_btn {
    transition: 0.5s;
    font-size: 14px;
    padding: 8px 20px;
  }
}
.create_event_btn:hover {
  opacity: 0.8;
}
.create_event_btn:disabled {
  color: #9da3bc;
  cursor: default;
  background-color: #edeff5;
}
.create_event_btn .save_icon {
  max-width: 16px;
  margin-right: 4px;
}

.delete_cancel_btn {
  color: #0b1234;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.16px;
  padding: 8px 12px;
  min-width: 110px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.delete_cancel_btn:hover {
  background-color: #eaeaee;
}

.delete_yes_btn {
  color: white;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.16px;
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  min-width: 110px;
  background: #235de4;
  box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 1px 2px 0px rgba(35, 93, 228, 0.4), 0px 0px 0px 1px #235de4;
}
.delete_yes_btn:hover:hover {
  opacity: 0.8;
}

.back_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.back_btn img {
  max-width: 8px;
}
.back_btn span {
  font-family: SFMediumFont;
  font-size: 16px;
  color: #0b1234;
  font-weight: 500;
}
.back_btn:hover {
  opacity: 0.8;
}

.create_template_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #235de4;
}
@media all and (max-width: 767px) {
  .create_template_btn {
    transition: 0.5s;
    padding: 10px 12px;
  }
}
.create_template_btn:hover {
  opacity: 0.8;
}
.create_template_btn img {
  max-width: 20px;
}
@media all and (max-width: 767px) {
  .create_template_btn img {
    transition: 0.5s;
    max-width: 16px;
  }
}
.create_template_btn span {
  color: #fff;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}
@media all and (max-width: 767px) {
  .create_template_btn span {
    transition: 0.5s;
    font-size: 14px;
  }
}
.create_template_btn.sub_account_btn {
  padding: 9.5px 12px;
}
@media all and (max-width: 767px) {
  .create_template_btn.sub_account_btn {
    transition: 0.5s;
    padding: 9.5px 8px;
  }
}
.create_template_btn.sub_account_btn span {
  font-size: 14px;
}
@media all and (max-width: 767px) {
  .create_template_btn.sub_account_btn span {
    transition: 0.5s;
    font-size: 12px;
  }
}
.create_template_btn.secondary_btn {
  background-color: #cbdbff;
}
.create_template_btn.secondary_btn span {
  color: #235de4;
}
.create_template_btn.outline_btn {
  border: 1px solid #235de4;
  background-color: white;
}
.create_template_btn.outline_btn span {
  color: #235de4;
}
.create_template_btn.gray_outline_btn {
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.create_template_btn.gray_outline_btn span {
  color: #0b1234;
}
.create_template_btn.credits_usage_btn {
  background: #cbdbff;
}
.create_template_btn.credits_usage_btn span {
  color: #235de4;
}
.create_template_btn.share_btn {
  background: #f4f4f8;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.2), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.create_template_btn.share_btn span {
  color: #0b1234;
}

.import_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.import_btn img {
  max-width: 20px;
}
.import_btn span {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}
@media all and (max-width: 767px) {
  .import_btn span {
    transition: 0.5s;
    font-size: 14px;
  }
}
.import_btn .btn_badge {
  margin-left: 4px;
}
.import_btn:hover {
  background-color: rgba(234, 234, 238, 0.8);
}
.import_btn.import_btn_fill {
  background-color: #235de4;
}
.import_btn.import_btn_fill span {
  color: white;
}
.import_btn.import_btn_fill:hover {
  opacity: 0.8;
}
.import_btn.import_btn_sm {
  padding: 4px 12px;
}
@media all and (max-width: 991px) {
  .import_btn.import_btn_sm {
    transition: 0.5s;
    padding: 4px 8px;
  }
}

.table_edit_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 4px 8px;
  border-radius: 6px;
  background: #f5f6f8;
}
.table_edit_btn img {
  max-width: 13px;
}
.table_edit_btn span {
  color: #0b1234;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}
.table_edit_btn:hover {
  opacity: 0.8;
  background: #f1f1f1;
}

.table_dot_btn {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.table_dot_btn:hover {
  background-color: rgba(123, 125, 133, 0.4);
}
.table_dot_btn img {
  max-width: 16px;
}
.table_dot_btn::after {
  display: none;
}

.merge_btn {
  padding: 6px 12px;
  border-radius: 6px;
  background: #fff !important;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.merge_btn:hover {
  opacity: 0.8;
}
.merge_btn span {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  margin-right: 8px;
}

.icon_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  border: 1px solid #e0e0e4 !important;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.icon_btn:hover {
  background-color: rgba(234, 234, 238, 0.8);
}

.bar_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.bar_btn:hover {
  background-color: rgba(123, 125, 133, 0.4);
}
.bar_btn i {
  font-size: 16px;
}

.table_delete_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.table_delete_btn:hover {
  background-color: rgba(123, 125, 133, 0.4);
}
.table_delete_btn img {
  max-width: 15px;
}

.ok_btn {
  padding: 4px 12px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 4px 2px -2px rgba(21, 21, 35, 0.15), 0px 0px 0px 1px rgba(21, 21, 35, 0.15);
}
.ok_btn:hover {
  background-color: rgba(234, 234, 238, 0.8);
}
.ok_btn span {
  color: #151523;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.42px;
}

.learn_more_btn {
  padding: 4px 12px;
  color: #151523;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.42px;
}
.learn_more_btn:hover {
  opacity: 0.8;
}

.schedule_btn {
  color: #0b1234;
  font-family: SFSemiBoldFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  max-width: 147px;
  width: 100%;
  height: 40px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
@media all and (max-width: 767px) {
  .schedule_btn {
    transition: 0.5s;
    font-size: 14px;
  }
}
.schedule_btn:hover {
  opacity: 0.8;
}
.schedule_btn.schedule_reset_btn {
  max-width: 93px;
  height: auto;
  min-height: 28px;
}

.msg_send_btn {
  color: #fff;
  font-family: SFSemiBoldFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  max-width: 178px;
  width: 100%;
  height: 40px;
  border-radius: 8px;
  background-color: #235de4;
}
@media all and (max-width: 767px) {
  .msg_send_btn {
    transition: 0.5s;
    font-size: 14px;
  }
}
.msg_send_btn:hover {
  opacity: 0.8;
}
.msg_send_btn.msg_generate_btn {
  font-size: 14px;
  max-width: 150px;
  height: auto;
  min-height: 28px;
  padding: 5px;
}

.payment_filter_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 8px;
  border: 1px solid #ddd !important;
  background: #fff;
}
.payment_filter_btn span {
  color: #3b3b3b;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media all and (max-width: 767px) {
  .payment_filter_btn {
    transition: 0.5s;
    padding: 8px 14px;
  }
  .payment_filter_btn span {
    font-size: 12px;
  }
}
.payment_filter_btn:hover {
  border: 1px solid #ddd !important;
  background: #b9b9b9;
}
.payment_filter_btn.active {
  background: #235de4;
}
.payment_filter_btn.active span {
  color: white;
}

.invoice_download_btn {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 9px;
  width: 100%;
}
.invoice_download_btn img {
  max-width: 20px;
}
@media all and (max-width: 991px) {
  .invoice_download_btn img {
    transition: 0.5s;
    max-width: 16px;
  }
}
.invoice_download_btn span {
  color: #5d5d5d;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media all and (max-width: 991px) {
  .invoice_download_btn span {
    transition: 0.5s;
    font-size: 14px;
  }
}
.invoice_download_btn:hover {
  opacity: 0.8;
}

.manage_plan_btn {
  display: flex;
  padding: 9px 20px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #235de4;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 8px;
  border: 1px solid #235de4 !important;
  background: #fff;
}
@media all and (max-width: 991px) {
  .manage_plan_btn {
    transition: 0.5s;
    padding: 10px 16px;
  }
}
.manage_plan_btn:hover {
  color: white;
  border: 1px solid #235de4 !important;
  background: #235de4;
}

.btn_badge {
  color: #471e08 !important;
  text-align: center !important;
  font-family: SFSemiBoldFont !important;
  font-size: 9px !important;
  font-style: normal;
  font-weight: 600 !important;
  padding: 1px 6px;
  border-radius: 16px;
  background: #ffcdb3;
}
.btn_badge.green {
  background: #b6f0b5;
}

.pending_btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: #471e08;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  padding: 6px 12px;
  border-radius: 4px;
  background: #ffcdb3;
}
@media all and (max-width: 991px) {
  .pending_btn {
    transition: 0.5s;
    padding: 6px 8px;
  }
}

.price_choose_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 9px 20px;
  border-radius: 10px;
  border: 1px solid #265fe4;
  background: #f4f7ff;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.price_choose_btn span {
  color: #265fe4;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.32px;
}
.price_choose_btn:hover {
  background: rgba(38, 95, 228, 0.3019607843);
}

.search_input_form {
  position: relative;
  border-radius: 8px;
  width: 100%;
  height: 40px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.search_input_form ::-moz-placeholder {
  color: #696f8c;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.search_input_form ::placeholder {
  color: #696f8c;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.search_input_form .input_field,
.search_input_form .input_search {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  color: #696f8c;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  padding-left: 38px;
  padding-right: 12px;
}
.search_input_form .input_field:focus,
.search_input_form .input_search:focus {
  border: none !important;
  outline: none !important;
}
@media all and (max-width: 767px) {
  .search_input_form .input_field,
  .search_input_form .input_search {
    transition: 0.5s;
    font-size: 14px;
  }
}
.search_input_form .search_icon {
  position: absolute;
  top: 7px;
  left: 12px;
}
.search_input_form .search_icon img {
  max-width: 17px;
}
.search_input_form .search_icon:hover {
  opacity: 0.8;
}
.search_input_form.search_input_form_sm {
  height: 36px;
}
.search_input_form.search_input_form_sm .input_field {
  font-size: 14px;
}
.search_input_form.search_input_form_sm .search_icon {
  top: 6px;
}

.chat_search_form {
  position: relative;
  width: 100%;
}
.chat_search_form .input_field {
  font-size: 14px;
  border-radius: 8px;
  width: 100%;
  padding-left: 8px;
  padding-right: 30px;
  height: 36px;
  overflow: hidden;
  border: 1px solid white;
  background-color: #fff;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.searchable_input_area .search_input_form {
  margin-bottom: 20px;
}
.searchable_input_area .search_input_form .input_field {
  padding-left: 38px !important;
}
.searchable_input_area.active .suggestion_list_area {
  top: 45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.suggestion_list_area {
  position: absolute;
  top: 55px;
  left: 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #eaeaee;
  background: #fff;
  box-shadow: 0px 5px 31px -2px rgba(6, 8, 16, 0.17);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.suggestion_list_area .list {
  max-height: 200px;
  min-height: 35px;
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.suggestion_list_area .list::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.suggestion_list_area .list::-webkit-scrollbar-track {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 5px;
}
.suggestion_list_area .list::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 5px;
}
.suggestion_list_area .list::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}
.suggestion_list_area li button {
  text-align: start;
  font-family: SFMediumFont;
  cursor: pointer;
  padding: 6px 8px;
  color: #0b1234;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  width: 100%;
}
.suggestion_list_area li button:hover {
  background-color: #f5f6f8;
}
.suggestion_list_area li button.selected {
  background-color: rgba(224, 224, 228, 0.5);
}

.password_active .eye_open_btn {
  display: none;
}
.password_active .eye_close_btn {
  display: flex !important;
}

.login_form_area .input_two_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}
@media all and (max-width: 991px) {
  .login_form_area .input_two_grid {
    transition: 0.5s;
    grid-template-columns: 1fr;
  }
}
.login_form_area .input_row {
  position: relative;
  margin-bottom: 16px;
}
.login_form_area .input_row label {
  font-family: SFMediumFont;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #353636;
  display: block;
  margin-bottom: 8px;
}
@media all and (max-width: 767px) {
  .login_form_area .input_row label {
    transition: 0.5s;
    margin-bottom: 4px;
  }
}
.login_form_area .input_row .input_filed {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #696f8c;
  width: 100%;
  height: 40px;
  padding: 10px 12px 10px 12px;
  border: 1px solid rgba(11, 18, 52, 0.1490196078);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
  background-color: white;
}
.login_form_area .input_row .input_filed.password_input_filed {
  padding-right: 40px;
}
.login_form_area .input_row .form-control {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #696f8c;
  height: 40px;
  padding: 10px 12px 10px 12px;
  border: 1px solid rgba(11, 18, 52, 0.1490196078);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
  background-color: white;
  background-clip: border-box;
}
.login_form_area .input_row .form-control.password_input_filed {
  padding-right: 40px;
}
.login_form_area .input-group-text {
  font-size: 14px;
}
.login_form_area .form-check-label {
  font-size: 16px;
}
.login_form_area .form-check-label a:hover {
  opacity: 0.8;
}
.login_form_area .forget_text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: right;
  display: block;
  color: #5b5b5b;
}
.login_form_area .forget_text:hover {
  opacity: 0.8;
}
.login_form_area .page_subtitle {
  color: #7b7d85;
  margin-bottom: 32px;
}
@media all and (max-width: 991px) {
  .login_form_area .page_subtitle {
    transition: 0.5s;
    margin-bottom: 24px;
  }
}
.login_form_area .or_divider {
  position: relative;
  text-align: center;
  margin-top: 24px;
}
@media all and (max-width: 767px) {
  .login_form_area .or_divider {
    transition: 0.5s;
    margin-top: 16px;
  }
}
.login_form_area .or_divider::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #e0e0e4;
}
.login_form_area .or_divider span {
  position: relative;
  color: #5b5b5b;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background-color: white;
  padding: 0 7px;
}
.login_form_area .others_option_area {
  margin-top: 28px;
}
@media all and (max-width: 767px) {
  .login_form_area .others_option_area {
    transition: 0.5s;
    margin-top: 20px;
  }
}
.login_form_area .others_option_area .google_login_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
  width: 100%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.login_form_area .others_option_area .google_login_btn img {
  max-width: 20px;
  max-height: 20px;
}
.login_form_area .others_option_area .google_login_btn span {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.login_form_area .others_option_area .google_login_btn:hover {
  background-color: rgba(123, 125, 133, 0.4);
}
.login_form_area .not_account {
  text-align: center;
  margin-top: 26px;
}
@media all and (max-width: 767px) {
  .login_form_area .not_account {
    transition: 0.5s;
    margin-top: 20px;
  }
}
.login_form_area .not_account span {
  color: #7b7d85;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media all and (max-width: 767px) {
  .login_form_area .not_account span {
    transition: 0.5s;
    font-size: 14px;
  }
}
.login_form_area .not_account a,
.login_form_area .not_account button {
  color: #235de4;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-decoration-line: underline;
}
@media all and (max-width: 767px) {
  .login_form_area .not_account a,
  .login_form_area .not_account button {
    transition: 0.5s;
    font-size: 14px;
  }
}
.login_form_area .not_account a:hover,
.login_form_area .not_account button:hover {
  opacity: 0.8;
}
.login_form_area .otp_area h4 {
  color: #344054;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.login_form_area .otp_area .fake-inputs {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 10px;
}
.login_form_area .otp_area .form-control {
  cursor: pointer;
  height: 40px;
  border-radius: 8px !important;
  border: 1px solid #d0d5dd;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  -webkit-border-radius: 8px !important;
  -moz-border-radius: 8px !important;
  -ms-border-radius: 8px !important;
  -o-border-radius: 8px !important;
  text-align: center;
  text-overflow: ellipsis;
  width: 100%;
}
.login_form_area .otp_area .otp-content {
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  color: #0c121e;
}
@media all and (max-width: 767px) {
  .login_form_area .otp_area .otp-content {
    transition: 0.5s;
    font-size: 14px;
  }
}

.eye_icon_area {
  position: absolute;
  top: 36px;
  right: 10px;
}
@media all and (max-width: 767px) {
  .eye_icon_area {
    transition: 0.5s;
    top: 30px;
  }
}
.eye_icon_area i {
  font-size: 16px;
  color: #696f8c;
}
.eye_icon_area button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.eye_icon_area button:hover {
  background-color: rgba(123, 125, 133, 0.4);
}
.eye_icon_area button img {
  max-width: 16px;
}
.eye_icon_area .eye_close_btn {
  display: none;
}

.logo img {
  max-width: 188px;
  max-height: 45px;
  width: 100%;
  height: 100%;
}

.back_arrow_area a {
  padding: 6px 10px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.back_arrow_area a:hover {
  background-color: rgba(123, 125, 133, 0.1);
}
.back_arrow_area span {
  color: #5b5b5b;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media all and (max-width: 767px) {
  .back_arrow_area span {
    transition: 0.5s;
    font-size: 16px;
  }
}

.custom_switch_area {
  display: flex;
  align-items: center;
  gap: 8px 12px;
  /* Rounded sliders */
}
@media all and (max-width: 767px) {
  .custom_switch_area {
    transition: 0.5s;
    gap: 8px 10px;
  }
}
.custom_switch_area .switch {
  position: relative;
  display: inline-block;
  min-width: 32px;
  width: 32px;
  height: 20px;
  margin-bottom: 0;
}
.custom_switch_area .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.custom_switch_area .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f2f4f7;
  transition: 0.4s;
}
.custom_switch_area .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: 0.4s;
  box-shadow: 0px 1px 3px 0px rgba(16, 24, 40, 0.1), 0px 1px 2px 0px rgba(16, 24, 40, 0.06);
}
.custom_switch_area input:checked + .slider {
  background-color: #235de4;
}
.custom_switch_area input:focus + .slider {
  box-shadow: 0 0 1px #235de4;
}
.custom_switch_area input:checked + .slider:before {
  transform: translateX(12px);
  -moz-transform: translateX(12px);
  -o-transform: translateX(12px);
}
.custom_switch_area .slider.round {
  border-radius: 34px;
  -webkit-border-radius: 34px;
  -moz-border-radius: 34px;
  -ms-border-radius: 34px;
  -o-border-radius: 34px;
}
.custom_switch_area .slider.round:before {
  border-radius: 50%;
}
.custom_switch_area .switch_title {
  color: #353636;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  margin-top: 2px;
}
.custom_switch_area .switch_title span {
  margin-left: 4px;
}

.date_range_input_area {
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  background: #edeff5;
}
@media all and (min-width: 992px) {
  .date_range_input_area {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    min-width: 256px;
    width: 100%;
  }
}
.date_range_input_area > span {
  color: #101438;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}
@media all and (max-width: 767px) {
  .date_range_input_area > span {
    transition: 0.5s;
    font-size: 14px;
  }
}

.range_area {
  padding-top: 16px;
  padding-right: 20px;
}
.range_area .noUi-base,
.range_area .noUi-handle {
  cursor: pointer;
}
.range_area .noUi-target {
  position: relative;
  border-radius: 16px;
  border: 1px solid #b1c8ff;
  background: #fafafa;
  box-shadow: none;
}
.range_area .noUi-connects {
  border-radius: 16px;
}
.range_area .noUi-connects .noUi-connect {
  background-color: #235de4;
}
.range_area .noUi-handle {
  right: -14px;
  top: -1.6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 1.5px solid white;
  box-shadow: none;
  background-color: #235de4;
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.15));
  -webkit-filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.15));
}
.range_area .noUi-handle::before, .range_area .noUi-handle::after {
  display: none;
}
.range_area .noUi-value {
  color: #5d5d5d;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 10px;
}
.range_area .noUi-value:last-child .percentage_icon {
  left: auto;
  right: 8px;
}
.range_area .percentage_icon {
  position: absolute;
  top: -65px;
  left: -5px;
}

.calender_full_area .fc-scroller {
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
  overflow: auto;
}
.calender_full_area .fc-scroller::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.calender_full_area .fc-scroller::-webkit-scrollbar-track {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 5px;
}
.calender_full_area .fc-scroller::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 5px;
}
.calender_full_area .fc-scroller::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}
.calender_full_area .fc-scrollgrid {
  border-radius: 8px;
  border: 1px solid #ebecef;
  background: #fff;
}
.calender_full_area .fc-col-header-cell-cushion {
  color: #080b19;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  text-transform: uppercase;
  text-align: start;
}
.calender_full_area .fc-col-header-cell {
  text-align: start;
  padding: 6px 16px;
  border: 1px solid #ebecef;
}
@media all and (max-width: 991px) {
  .calender_full_area .fc-col-header-cell {
    transition: 0.5s;
    padding: 6px 10px;
  }
}
.calender_full_area .fc-day {
  padding: 12px;
  text-align: start;
}
@media all and (max-width: 991px) {
  .calender_full_area .fc-day {
    transition: 0.5s;
    padding: 8px;
  }
}
.calender_full_area .fc-day .fc-daygrid-day-top {
  justify-content: start;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
.calender_full_area .fc-header-toolbar {
  margin-bottom: 16px !important;
}
.calender_full_area .fc-header-toolbar .fc-toolbar-title {
  color: #000;
  font-family: SFMediumFont;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media all and (max-width: 767px) {
  .calender_full_area .fc-header-toolbar .fc-toolbar-title {
    transition: 0.5s;
    font-size: 18px;
  }
}
.calender_full_area .fc-header-toolbar .fc-today-button {
  color: #5f6064;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 8px 16px;
  border-radius: 6px;
  text-transform: capitalize;
  border: 1px solid #e0e0e4 !important;
  background: #fff;
  box-shadow: 0px 1px 1px 0px rgba(7, 8, 18, 0.04);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.calender_full_area .fc-header-toolbar .fc-today-button:hover {
  background-color: rgba(224, 224, 228, 0.8);
}
.calender_full_area .fc-header-toolbar .fc-button-group {
  gap: 8px;
}
.calender_full_area .fc-header-toolbar .fc-button-group .fc-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #4e4e4e;
  font-size: 16px;
  width: 32px;
  height: 32px;
  padding: 8px 12px;
  border-radius: 6px !important;
  -webkit-border-radius: 6px !important;
  -moz-border-radius: 6px !important;
  -ms-border-radius: 6px !important;
  -o-border-radius: 6px !important;
  border: 1px solid #e0e0e4 !important;
  background: #fff;
  box-shadow: 0px 1px 1px 0px rgba(7, 8, 18, 0.04);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.calender_full_area .fc-header-toolbar .fc-button-group .fc-button:hover {
  background-color: rgba(224, 224, 228, 0.8);
}
@media all and (max-width: 767px) {
  .calender_full_area .fc-daygrid-event-harness .fc-event,
  .calender_full_area .fc-daygrid-event-harness .fc-event,
  .calender_full_area .fc-timegrid-event-harness .fc-event {
    transition: 0.5s;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    text-indent: -9999px;
    overflow: hidden;
  }
}
.calender_full_area .fc-event {
  border-color: #eef7ea;
  background-color: transparent;
}
.calender_full_area .fc-event-title-container {
  display: flex;
  align-items: center;
  padding: 4px 6px 4px 4px;
  border-radius: 4px;
  background: #eef7ea;
}
.calender_full_area .fc-event-title-container .fc-event-title {
  position: relative;
  color: #0d1020;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding-left: 10px;
}
@media all and (min-width: 768px) {
  .calender_full_area .fc-event-title-container .fc-event-title {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
  }
  .calender_full_area .fc-event-title-container .fc-event-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    border-radius: 6px;
    background: #54ac2b;
  }
}
.calender_full_area .fc-daygrid-event-dot {
  border-color: #54ac2b;
}
.calender_full_area .fc-day-today {
  background-color: rgba(35, 93, 228, 0.4) !important;
}
.calender_full_area .fc-daygrid-more-link {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  padding: 4px 4px;
  text-transform: capitalize;
  margin-top: 2px;
  background-color: #235de4;
}
.calender_full_area .fc-daygrid-more-link:hover {
  opacity: 0.9;
  background-color: #235de4;
}
.calender_full_area .fc-daygrid-day-frame {
  cursor: pointer;
}
.calender_full_area .fc-header-toolbar {
  flex-wrap: wrap;
}
.calender_full_area .send_event,
.calender_full_area .sms_event,
.calender_full_area .voice_event {
  display: flex;
  align-items: center;
  padding: 4px 6px 4px 4px;
  border-radius: 4px;
  background: #b4f3d1;
}
.calender_full_area .send_event .fc-daygrid-event-dot,
.calender_full_area .sms_event .fc-daygrid-event-dot,
.calender_full_area .voice_event .fc-daygrid-event-dot {
  display: none;
}
.calender_full_area .sms_event {
  background-color: #b1e5fc;
}
.calender_full_area .voice_event {
  background-color: #d0c5ff;
}
.calender_full_area .fc-event-time {
  padding-left: 4px;
}
.calender_full_area .fc-event-time,
.calender_full_area .fc-event-title {
  position: relative;
  color: #0b1234;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.calender_full_area .fc-day .fc-event-main-frame {
  align-items: center;
}
.calender_full_area .fc-day .fc-event {
  inset: auto;
}
@media all and (min-width: 768px) {
  .calender_full_area .fc-timeGridDay-view .fc-timegrid-event-harness .fc-event {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    width: 100%;
  }
}
.calender_full_area .fc-timeGridDay-view .fc-event-main-frame {
  flex-direction: row;
}
.calender_full_area .fc-timeGridWeek-view .fc-event-main-frame {
  flex-direction: row;
}

.calender_search_area {
  position: relative;
  width: 280px;
  height: 36px;
  border-radius: 8px;
  background: #f5f6f8;
}
.calender_search_area .search_icon,
.calender_search_area .slash_icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.calender_search_area .search_icon:hover {
  opacity: 0.8;
}
.calender_search_area .slash_icon {
  left: auto;
  right: 12px;
}
.calender_search_area .input_filed {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #696f8c;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  background-color: transparent;
  padding: 0 40px;
}
.calender_search_area ::-moz-placeholder {
  color: #696f8c !important;
  font-size: 12px !important;
  font-style: normal !important;
  font-weight: 400 !important;
}
.calender_search_area ::placeholder {
  color: #696f8c !important;
  font-size: 12px !important;
  font-style: normal !important;
  font-weight: 400 !important;
}

.common_modal .modal-dialog:not(.modal-xl):not(.modal-lg):not(.modal-sm) {
  max-width: 581px;
}
.common_modal .modal-content {
  padding: 4px;
  border-radius: 16px;
  border: 1px solid #e7eaeb;
  background: #fff;
}
.common_modal .modal-header {
  padding: 16px 20px;
  border-radius: 12px 12px 0px 0px;
  border-bottom: 1px solid #e1e5e7;
  background: #f0f1f2;
}
@media all and (max-width: 767px) {
  .common_modal .modal-header {
    transition: 0.5s;
    padding: 12px 10px;
  }
}
.common_modal .btn-close {
  font-size: 14px;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.common_modal .btn-close:hover {
  background-color: rgba(123, 125, 133, 0.4);
}
@media all and (max-width: 767px) {
  .common_modal .btn-close {
    transition: 0.5s;
    font-size: 12px;
  }
}
.common_modal .modal-title {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 20px !important;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 150% */
}
.common_modal.create_sms_modal_area .modal-dialog:not(.modal-xl):not(.modal-lg):not(.modal-sm) {
  max-width: 681px;
}
.common_modal.create_sms_modal_area .sms_template_left_row {
  border-right: 1px solid #e7eaeb;
}
.common_modal .generate_message_area {
  margin-top: 20px;
  max-height: 350px;
  padding-right: 10px;
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.common_modal .generate_message_area::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.common_modal .generate_message_area::-webkit-scrollbar-track {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 5px;
}
.common_modal .generate_message_area::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 5px;
}
.common_modal .generate_message_area::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}
.common_modal .generate_item {
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 16px;
  background-color: #eef2fe;
  box-shadow: 0px 0px 0px 1px rgba(37, 69, 163, 0.1019607843), 0px 1px 2px 0px rgba(35, 93, 228, 0.0705882353);
}
.common_modal .generate_item p {
  font-family: SFRegularFont;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #696f8c;
}

.carrier_history_modal .modal-dialog {
  max-width: 690px;
}
.carrier_history_modal .modal-content {
  padding: 24px;
  border: none;
  outline: none;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 130px 36px 0px rgba(5, 9, 31, 0), 0px 83px 33px 0px rgba(5, 9, 31, 0.01), 0px 47px 28px 0px rgba(5, 9, 31, 0.05), 0px 21px 21px 0px rgba(5, 9, 31, 0.09), 0px 5px 11px 0px rgba(5, 9, 31, 0.1), 0px 0px 0px 1px rgba(11, 18, 52, 0.15);
}
@media all and (max-width: 767px) {
  .carrier_history_modal .modal-content {
    transition: 0.5s;
    padding: 24px 16px;
  }
}
.carrier_history_modal .delete_btn {
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
@media all and (max-width: 991px) {
  .carrier_history_modal .delete_btn {
    transition: 0.5s;
    padding: 6px 8px;
  }
}
.carrier_history_modal .delete_btn:hover {
  background-color: #e8e8e9;
}
.carrier_history_modal .delete_btn img {
  max-width: 20px;
}
@media all and (max-width: 991px) {
  .carrier_history_modal .delete_btn img {
    transition: 0.5s;
    max-width: 16px;
  }
}
.carrier_history_modal .delete_btn span {
  color: #0b1234;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.14px;
}
.carrier_history_modal .close_icon {
  display: flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
@media all and (max-width: 767px) {
  .carrier_history_modal .close_icon {
    transition: 0.5s;
    position: absolute;
    top: 20px;
    right: 15px;
  }
}
.carrier_history_modal .close_icon:hover {
  background-color: #e8e8e9;
}
.carrier_history_modal .close_icon img {
  max-width: 20px;
}
@media all and (max-width: 991px) {
  .carrier_history_modal .close_icon img {
    transition: 0.5s;
    max-width: 14px;
  }
}
.carrier_history_modal .modal-header,
.carrier_history_modal .modal-body,
.carrier_history_modal .modal-footer {
  padding: 0;
}
.carrier_history_modal .modal-header {
  padding-bottom: 12px;
}
@media all and (max-width: 991px) {
  .carrier_history_modal .modal-header {
    transition: 0.5s;
    padding-bottom: 8px;
  }
}
@media all and (max-width: 767px) {
  .carrier_history_modal .modal-header {
    transition: 0.5s;
    gap: 10px;
    align-items: start;
    flex-direction: column;
  }
}
.carrier_history_modal .modal-title {
  color: #0b1234;
  font-family: "Inter", sans-serif;
  font-size: 18px !important;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.18px;
}
@media all and (max-width: 767px) {
  .carrier_history_modal .modal-title {
    transition: 0.5s;
    font-size: 16px !important;
    line-height: 22px;
    max-width: 85%;
  }
}

.event_form_area ::-moz-placeholder {
  color: #696f8c !important;
  text-align: start;
}

.event_form_area ::placeholder,
.event_form_area .placeholder_text,
.event_form_area .emojionearea-editor:before {
  color: #696f8c !important;
  text-align: start;
}
.event_form_area label {
  display: block;
  color: #353636;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 8px;
}
@media all and (max-width: 767px) {
  .event_form_area label {
    transition: 0.5s;
    margin-bottom: 5px;
  }
}
.event_form_area label .star {
  color: #e82749;
}
.event_form_area .helper_label {
  font-weight: 400;
  color: #7b7d85;
}
.event_form_area h3 {
  color: #353636;
  font-family: SFSemiBoldFont;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
.event_form_area .input_row {
  position: relative;
  margin-bottom: 16px;
}
.event_form_area .input_row .input_field,
.event_form_area .input_row .bootstrap_select,
.event_form_area .input_row .form-select,
.event_form_area .input_row .color_input_area {
  color: #0b1234;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  width: 100%;
  border: 1px solid #fff;
  padding: 9px 12px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.event_form_area .input_row .password_input_filed {
  padding-right: 40px;
}
.event_form_area .input_row .quantity_input_field {
  text-align: center;
  padding-left: 35px;
  padding-right: 35px;
}
.event_form_area .input_row .color_input_area {
  max-height: 41px;
}
.event_form_area .input_row .color_input_area .color_input {
  flex-grow: 1;
  color: #0b1234;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  border: none !important;
}
.event_form_area .input_row .textarea_field {
  height: auto;
}
.event_form_area .input_row .nice_select_top_height {
  height: 40px;
}
.event_form_area .input_row .niceSelect_area {
  height: 40px;
  line-height: 39px;
  width: 100%;
  border: 1px solid #fff;
  padding: 9px 12px;
  padding-right: 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.event_form_area .input_row .niceSelect_area .current {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.event_form_area .input_row .niceSelect_area::after {
  border-bottom: 1.5px solid #696f8c;
  border-right: 1.5px solid #696f8c;
  width: 7px;
  height: 7px;
}
.event_form_area .input_row .niceSelect_area .list {
  padding: 8px 8px 8px 8px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #eaeaee;
  background: #fff;
  box-shadow: 0px 5px 31px -2px rgba(6, 8, 16, 0.17);
}
.event_form_area .input_row .niceSelect_area .list .option {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  padding: 8px 12px;
  min-height: auto;
  line-height: normal;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  margin-top: 4px;
}
@media all and (max-width: 767px) {
  .event_form_area .input_row .niceSelect_area .list .option {
    transition: 0.5s;
    font-size: 14px;
  }
}
.event_form_area .input_row .niceSelect_area .list .selected {
  position: relative;
  padding-right: 28px;
}
.event_form_area .input_row .niceSelect_area .list .selected::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 14px;
  display: inline-block;
  transform: rotate(45deg);
  height: 11px;
  width: 5px;
  border-bottom: 1px solid #696f8c;
  border-right: 1px solid #696f8c;
}
.event_form_area .input_row .niceSelect_status_area {
  height: 40px;
  line-height: 39px;
  width: 100%;
  border: 1px solid #fff;
  padding: 9px 12px;
  padding-right: 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.event_form_area .input_row .niceSelect_status_area .current {
  position: relative;
  top: -8.5px;
  display: inline;
  color: #113206;
  font-family: SFRegularFont;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  padding: 4px 10px;
  background: #b6f0b5;
}
.event_form_area .input_row .niceSelect_status_area::after {
  border-bottom: 1.5px solid #696f8c;
  border-right: 1.5px solid #696f8c;
  width: 7px;
  height: 7px;
}
.event_form_area .input_row .niceSelect_status_area .list {
  padding: 8px 8px 8px 8px;
  width: 238px;
  border-radius: 8px;
  border: 1px solid #eaeaee;
  background: #fff;
  box-shadow: 0px 5px 31px -2px rgba(6, 8, 16, 0.17);
}
.event_form_area .input_row .niceSelect_status_area .list .option {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  padding: 8px 12px;
  min-height: auto;
  line-height: normal;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  margin-top: 4px;
}
@media all and (max-width: 767px) {
  .event_form_area .input_row .niceSelect_status_area .list .option {
    transition: 0.5s;
    font-size: 14px;
  }
}
.event_form_area .input_row .niceSelect_status_area .list .selected {
  position: relative;
  padding-right: 28px;
}
.event_form_area .input_row .niceSelect_status_area .list .selected::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 14px;
  display: inline-block;
  transform: rotate(45deg);
  height: 11px;
  width: 5px;
  border-bottom: 1px solid #696f8c;
  border-right: 1px solid #696f8c;
}
.event_form_area .input_row .refineText {
  border: 1px solid #fff;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.event_form_area .input_row h5 {
  color: #7b7d85;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-top: 8px;
}
.event_form_area .textarea_header_top {
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.event_form_area .textarea_header_top .input_field.textarea_field {
  border: none !important;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  box-shadow: none;
}
.event_form_area .textarea_header {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 8px;
  border-bottom: 1px solid #e6e6e7;
  background: #f5f6f8;
}
.event_form_area .eye_icon_area {
  top: 34px;
}
.event_form_area .quantity_btn {
  position: absolute;
  left: 5px;
  top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.event_form_area .quantity_btn:hover {
  background-color: rgba(123, 125, 133, 0.4);
}
.event_form_area .quantity_btn img {
  max-width: 16px;
}
.event_form_area .plus_quantity_btn {
  position: absolute;
  left: auto;
  right: 5px;
  top: 6px;
}
.event_form_area .quantity_btn .voice_type_area {
  gap: 10px 43px;
}
.event_form_area .quantity_btn .voice_type_area .form-check-label {
  font-family: SFRegularFont;
  color: #696f8c;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  cursor: pointer;
  margin-bottom: 0;
}
.event_form_area .quantity_btn .voice_type_area .form-check-label:hover {
  opacity: 0.8;
}
.event_form_area .voice_type_area {
  gap: 10px 43px;
}
.event_form_area .voice_type_area .form-check-label {
  position: relative;
  top: 2px;
  font-family: SFRegularFont;
  color: #696f8c;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  cursor: pointer;
  margin-bottom: 0;
}
.event_form_area .voice_type_area .form-check-label:hover {
  opacity: 0.8;
}
.event_form_area .bottom_text {
  color: #7b7d85;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-top: 8px;
}
.event_form_area .inactive .current {
  background-color: #ffbab6 !important;
}
.event_form_area .two_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 0px 16px;
}
@media all and (max-width: 767px) {
  .event_form_area .two_grid {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.event_form_area .inner_row_grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr)) minmax(0, 28px);
  align-items: center;
  gap: 10px;
}
.event_form_area .credit_amount_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}
.event_form_area .credit_amount_grid .input_row .input_field:disabled,
.event_form_area .credit_amount_grid .input_row .niceSelect:disabled {
  background-color: transparent !important;
}
.event_form_area .credit_amount_grid .input_row .input_field {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.event_form_area .credit_amount_grid .input_row .niceSelect {
  height: 41px;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.event_form_area .credit_amount_grid .input_row .niceSelect .current {
  justify-content: end;
}
.event_form_area .card_type_input {
  border: 1px solid #fff;
  padding: 9px 12px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.event_form_area .card_type_input .card_icon {
  max-height: 30px;
  max-width: 40px;
}
.event_form_area .card_type_input p {
  color: #0b1234;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
.event_form_area .participant_remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.event_form_area .participant_remove:hover {
  background-color: rgba(123, 125, 133, 0.4);
}
.event_form_area .checkbox_area {
  gap: 10px 60px;
  margin-bottom: 32px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .event_form_area .checkbox_area {
    transition: 0.5s;
    gap: 10px 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .event_form_area .checkbox_area {
    transition: 0.5s;
    gap: 10px 30px;
  }
}
@media all and (max-width: 767px) {
  .event_form_area .checkbox_area {
    transition: 0.5s;
    gap: 10px 20px;
    margin-bottom: 20px;
  }
}
.event_form_area .checkbox_area .form-check-label {
  margin-top: 3px;
  cursor: pointer;
}
.event_form_area .checkbox_area .form-check-label:hover {
  opacity: 0.8;
}
.event_form_area .switch_helper {
  color: #7b7d85;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-top: 4px;
}
.event_form_area .setting_action_btn_area {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: 32px;
}
.event_form_area .setting_action_btn_area .cancel_btn {
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.event_form_area .setting_action_btn_area .cancel_btn {
  padding: 8px 16px;
}
.event_form_area .setting_action_btn_area .create_event_btn {
  padding: 8px 16px;
}
.event_form_area .partipants_area {
  margin-top: 24px;
}
.event_form_area .participants_user_area .two_grid {
  margin-top: 12px;
}
.event_form_area .note_area {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.event_form_area .note_area .note_header {
  gap: 4px;
  padding: 6px 10px;
  border-bottom: 1px solid #e6e6e7;
  background: #f5f6f8;
}
.event_form_area .note_area .note_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.event_form_area .note_area .note_btn:hover {
  background-color: rgba(123, 125, 133, 0.4);
}
.event_form_area .note_area .note_btn img {
  max-width: 16px;
}
.event_form_area .note_area .emojionearea {
  border: none !important;
  background-color: transparent;
  box-shadow: none !important;
}
.event_form_area .note_area .emojionearea .emojionearea-picker {
  top: 0;
  left: 0;
  z-index: 50000;
}
.event_form_area .note_area .emojionearea-editor {
  padding: 0;
  height: 180px;
}
.event_form_area .note_area .emojionearea-button {
  display: flex;
  align-items: center;
  justify-content: center;
  left: 73px;
  top: -36px;
  width: 28px;
  height: 28px;
}
.event_form_area .note_area .emojionearea-button:hover {
  opacity: 0.9;
}
.event_form_area .nav-pills {
  padding: 4px;
  border-radius: 8px;
  background: #f6f9ff;
}
.event_form_area .nav-pills .nav-link {
  color: #353636;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  padding: 6px 16px;
}
@media all and (max-width: 767px) {
  .event_form_area .nav-pills .nav-link {
    transition: 0.5s;
    padding: 6px 12px;
  }
}
.event_form_area .nav-pills .nav-link:hover {
  opacity: 0.8;
}
.event_form_area .nav-pills .nav-link.active {
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(7, 9, 18, 0.16);
}
.event_form_area .tab-content {
  margin-top: 16px;
}
.event_form_area .permission_area {
  margin-top: 10px;
}
.event_form_area .permission_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 0px 20px;
  margin-top: 12px;
}
@media all and (max-width: 767px) {
  .event_form_area .permission_grid {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.event_form_area .permission_grid .custom_switch_area {
  margin-bottom: 14px;
}
@media all and (max-width: 767px) {
  .event_form_area .permission_grid .custom_switch_area {
    transition: 0.5s;
    margin-bottom: 12px;
  }
}

.event_modal_footer {
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid #e7eaeb;
}

.searchable_select .refineText {
  color: #0b1234;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  width: 100%;
  border: 1px solid #344054;
  padding: 9px 12px;
  padding-right: 30px;
  border-radius: 8px;
  background: #fff;
  width: 100% !important;
}
.searchable_select .searchBoxElement {
  position: absolute;
  top: 72px;
  z-index: 10;
  padding: 10px 16px;
  max-height: 200px;
  width: 100% !important;
  border-radius: 8px;
  border: 1px solid #eaeaee;
  background: #fff;
  box-shadow: 0px 5px 31px -2px rgba(6, 8, 16, 0.17);
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
  overflow-y: auto;
}
.searchable_select .searchBoxElement::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.searchable_select .searchBoxElement::-webkit-scrollbar-track {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 5px;
}
.searchable_select .searchBoxElement::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 5px;
}
.searchable_select .searchBoxElement::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}
.searchable_select .searchBoxElement li {
  font-family: SFMediumFont;
  cursor: pointer;
  padding: 6px 8px;
  color: #0b1234;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}
.searchable_select .searchBoxElement li:hover {
  background-color: #f5f6f8;
}
.searchable_select .searchBoxElement li span {
  font-size: 14px;
}
.searchable_select .searchBoxElement li:not(:first-child).selected {
  background-color: rgba(224, 224, 228, 0.5);
}
.searchable_select .down_arrow {
  position: absolute;
  top: 40px;
  right: 11px;
}

.icon_grid {
  display: grid;
  grid-template-columns: minmax(0, 16px) repeat(1, minmax(0, 1fr));
  align-items: start;
  gap: 8px;
}
.icon_grid h6,
.icon_grid a {
  color: #696f8c;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
@media all and (max-width: 767px) {
  .icon_grid h6,
  .icon_grid a {
    transition: 0.5s;
    font-size: 14px;
    line-height: 22px;
  }
}
.icon_grid h6.email,
.icon_grid a.email {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.icon_grid a:hover {
  opacity: 0.8;
}
.icon_grid.sm {
  gap: 6px;
}
.icon_grid.sm h6,
.icon_grid.sm a {
  font-size: 14px;
  color: #666;
  line-height: normal;
}

.delete_modal .modal-content {
  max-width: 500px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 130px 36px 0px rgba(5, 9, 31, 0), 0px 83px 33px 0px rgba(5, 9, 31, 0.01), 0px 47px 28px 0px rgba(5, 9, 31, 0.05), 0px 21px 21px 0px rgba(5, 9, 31, 0.09), 0px 5px 11px 0px rgba(5, 9, 31, 0.1), 0px 0px 0px 1px rgba(11, 18, 52, 0.15);
}
.delete_modal .modal-body {
  padding: 24px;
}
@media all and (max-width: 991px) {
  .delete_modal .modal-body {
    transition: 0.5s;
    padding: 16px;
  }
}
.delete_modal .content_area h2 {
  color: #0b1234;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.24px;
}
@media all and (max-width: 767px) {
  .delete_modal .content_area h2 {
    transition: 0.5s;
    font-size: 20px;
  }
}
.delete_modal .content_area h4 {
  color: #696f8c;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.28px;
  margin-top: 16px;
}
@media all and (max-width: 767px) {
  .delete_modal .content_area h4 {
    transition: 0.5s;
    margin-top: 10px;
  }
}
.delete_modal .delete_action_area {
  gap: 10px 16px;
  margin-top: 40px;
}

.bootstrap_dropdown .dropdown-menu {
  padding: 12px 0px;
  border-radius: 8px;
  border: 1px solid #eaeaee;
  background: white;
  box-shadow: 0px 5px 31px -2px rgba(6, 8, 16, 0.17);
}
.bootstrap_dropdown .dropdown-item {
  color: #0b1234;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding: 8px 12px;
}
@media all and (max-width: 767px) {
  .bootstrap_dropdown .dropdown-item {
    transition: 0.5s;
    font-size: 14px;
  }
}

.telephone_int_area .iti {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}
@media all and (max-width: 767px) {
  .telephone_int_area .iti {
    transition: 0.5s;
    gap: 12px;
  }
}
.telephone_int_area .iti__flag:not(.iti__globe) {
  display: none;
}
.telephone_int_area .iti__selected-country-primary {
  padding-left: 0;
}
.telephone_int_area .iti__selected-country {
  justify-content: center;
  border: 1px solid #fff;
  min-width: 70px;
  height: 40px;
  padding: 2px 4px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.telephone_int_area .iti__country-container {
  position: static;
}
.telephone_int_area .iti__tel-input {
  border: 1px solid #fff;
  height: 40px;
  width: 100%;
  padding: 0 12px !important;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.telephone_int_area .iti__dropdown-content {
  width: 100% !important;
}
.telephone_int_area .iti__dropdown-content .iti__search-input {
  font-size: 14px;
  height: 36px;
  border: 1px solid #0070c0;
}
.telephone_int_area .iti__arrow {
  border: none;
  border-bottom: 2px solid #696f8c;
  border-right: 2px solid #696f8c;
  content: "";
  display: block;
  height: 8px;
  top: 50%;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
  width: 8px;
}
.telephone_int_area .iti__country-list {
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.telephone_int_area .iti__country-list::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.telephone_int_area .iti__country-list::-webkit-scrollbar-track {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 5px;
}
.telephone_int_area .iti__country-list::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 5px;
}
.telephone_int_area .iti__country-list::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}

.inbox_template_table_area {
  margin-top: 16px;
}
.inbox_template_table_area .table-hover > tbody > tr:hover {
  background-color: rgba(224, 224, 228, 0.2);
}
.inbox_template_table_area .table-hover > tbody > tr:hover td:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.inbox_template_table_area .table-hover > tbody > tr:hover td:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.inbox_template_table_area .table > :not(caption) > * > * {
  box-shadow: none;
}
.inbox_template_table_area th {
  padding: 12px;
  border: none;
  vertical-align: middle;
  background-color: #f5f6f8;
}
.inbox_template_table_area th:first-child {
  border-radius: 8px 0px 0px 8px;
}
.inbox_template_table_area th:last-child {
  text-align: end;
  border-radius: 0px 8px 8px 0px;
}
@media all and (min-width: 992px) {
  .inbox_template_table_area th:last-child {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    padding-right: 20px;
  }
}
.inbox_template_table_area th:last-child .column_area {
  justify-content: end;
}
@media all and (max-width: 767px) {
  .inbox_template_table_area th {
    transition: 0.5s;
    padding: 8px;
  }
}
.inbox_template_table_area th .column_area {
  display: flex;
  align-items: center;
}
.inbox_template_table_area th span {
  color: #353636;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  margin-right: 8px;
}
.inbox_template_table_area th img {
  max-width: 9px;
}
.inbox_template_table_area td {
  padding: 16px 12px;
  border-bottom: 1px solid rgba(234, 234, 238, 0.5);
}
@media all and (max-width: 767px) {
  .inbox_template_table_area td {
    transition: 0.5s;
    padding: 12px 8px;
  }
}
.inbox_template_table_area td:last-child {
  text-align: end;
}
@media all and (min-width: 992px) {
  .inbox_template_table_area td:last-child {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    padding-right: 20px;
  }
}
.inbox_template_table_area td:last-child .table_dropdown_area {
  justify-content: end;
}
.inbox_template_table_area td p {
  color: #353636;
  font-family: SFRegularFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.inbox_template_table_area tr {
  vertical-align: middle;
}
.inbox_template_table_area tr:last-child td {
  border-bottom: none;
}
.inbox_template_table_area .table_dropdown_area {
  min-width: 100px;
}
.inbox_template_table_area .table_sm td {
  padding: 12px 12px;
}
@media all and (max-width: 767px) {
  .inbox_template_table_area .table_sm td {
    transition: 0.5s;
    padding: 10px 8px;
  }
}
.inbox_template_table_area .no-border td {
  border-bottom: none;
}
.inbox_template_table_area .checkbox_name_area,
.inbox_template_table_area .checkbox_name_cell_area {
  display: flex;
  align-items: center;
  gap: 10px 12px;
}
.inbox_template_table_area .icon_text_area {
  display: flex;
  align-items: start;
  gap: 8px;
}
.inbox_template_table_area .icon_text_area img {
  max-width: 16px;
}
.inbox_template_table_area .type_column {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 90px;
}
.inbox_template_table_area .send_time {
  min-width: 120px;
}
.inbox_template_table_area .time_cell {
  min-width: 130px;
}
.inbox_template_table_area .timezone {
  min-width: 80px;
}
.inbox_template_table_area .group_name {
  min-width: 90px;
}
.inbox_template_table_area .city_text {
  min-width: 100px;
}
.inbox_template_table_area .state_name {
  min-width: 90px;
}
.inbox_template_table_area .send_number {
  min-width: 120px;
}
.inbox_template_table_area .state_name {
  min-width: 120px;
}
.inbox_template_table_area .postal_code {
  min-width: 90px;
}
.inbox_template_table_area .phone_number {
  min-width: 150px;
}
.inbox_template_table_area .message_text {
  min-width: 110px;
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.inbox_template_table_area .remark_msg {
  display: inline-flex;
  padding: 6px 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: 250px;
  border-radius: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  border: 1px solid #dadada;
  background: #f4f4f4;
}
.inbox_template_table_area .badge_status_area {
  min-width: 80px;
}
.inbox_template_table_area .action_area {
  min-width: 90px;
}
.inbox_template_table_area .user_grid {
  display: grid;
  grid-template-columns: minmax(0, 24px) repeat(1, minmax(0, 1fr));
  align-items: center;
  gap: 8px;
  min-width: 160px;
}
.inbox_template_table_area .user_grid .img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 24px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
  background-color: #ffbab6;
}
.inbox_template_table_area .user_grid .img span {
  color: #4c1008;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
}
.inbox_template_table_area .user_grid .img img {
  width: 100%;
  height: 100%;
}
.inbox_template_table_area .user_grid.user_grid_sm {
  min-width: 100px;
}
.inbox_template_table_area .user_grid .number {
  color: #514f5b;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}
.inbox_template_table_area h4 {
  color: #0b1234;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
.inbox_template_table_area h4 span {
  color: #6a6a6a;
  margin-left: 4px;
}
@media all and (max-width: 767px) {
  .inbox_template_table_area h4 {
    transition: 0.5s;
    font-size: 14px;
  }
}
.inbox_template_table_area h5 {
  color: #514f5b;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
.inbox_template_table_area .customer_area {
  min-width: 150px;
}
.inbox_template_table_area .customer_name {
  color: #0c2245;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 5px;
  border: 1px solid #e3e8eb;
}
.inbox_template_table_area .log_status {
  color: #062753;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  padding: 2px 8px;
  border-radius: 4px;
  background: #b8d6ff;
}
.inbox_template_table_area .phone_number_area {
  min-width: 200px;
}
.inbox_template_table_area .phone_number_card_area {
  display: flex;
}
.inbox_template_table_area .phone_number_card_area .phone_number_area {
  cursor: pointer;
}
.inbox_template_table_area .phone_number_card_area .phone_number_area:hover {
  opacity: 0.8;
}
.inbox_template_table_area .phone_number_card {
  position: absolute;
  top: calc(100% + 10px);
  left: -10px;
  z-index: 10;
  padding: 8px;
  width: 310px;
  border-radius: 8px;
  border: 1px solid #eaeaee;
  background: #fff;
  display: none;
  box-shadow: 0px 5px 31px -2px rgba(6, 8, 16, 0.17);
}
.inbox_template_table_area .phone_number_card .title_grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr)) minmax(0, 70px);
  align-items: center;
  gap: 20px 8px;
  padding: 0 12px;
}
@media all and (max-width: 991px) {
  .inbox_template_table_area .phone_number_card .title_grid {
    transition: 0.5s;
    padding: 0 6px;
  }
}
.inbox_template_table_area .phone_number_card .title_grid p {
  color: #7b7d85;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.12px;
  text-transform: uppercase;
}
.inbox_template_table_area .phone_number_card .content {
  padding: 4px 12px;
}
.inbox_template_table_area .phone_number_card .content ul {
  padding-left: 24px;
}
.inbox_template_table_area .phone_number_card .content li {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  padding: 4px 0;
  list-style-type: disc;
}
@media all and (max-width: 991px) {
  .inbox_template_table_area .phone_number_card .content li {
    transition: 0.5s;
    font-size: 12px;
  }
}
.inbox_template_table_area .phone_number_card .niceSelect {
  width: 100%;
  padding: 0;
  padding-right: 10px;
  border: none;
  height: auto;
  min-height: auto;
  line-height: auto;
}
.inbox_template_table_area .phone_number_card .niceSelect .current {
  color: #7b7d85;
  font-family: SFMediumFont;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.12px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.inbox_template_table_area .phone_number_card .niceSelect::after {
  right: 0;
  border-bottom: 1.5px solid #696f8c;
  border-right: 1.5px solid #696f8c;
  width: 7px;
  height: 7px;
}
.inbox_template_table_area .phone_number_card .niceSelect .list {
  top: 30px;
  width: 150px;
}
.inbox_template_table_area .analytics_status {
  display: inline;
  color: #113206;
  font-family: SFMediumFont;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 4px;
  background-color: #fbf4e6;
}
.inbox_template_table_area .analytics_status.complete {
  background-color: #b6f0b5;
}
.inbox_template_table_area .analytics_status.schedule {
  background-color: #ffcdb3;
}
.inbox_template_table_area .analytics_status.processing {
  background-color: #b8d6ff;
}
.inbox_template_table_area .analytics_status.pause {
  background-color: #fbd5e2;
}
.inbox_template_table_area .analytics_status.fail {
  color: #d8424b;
  background: #ffeaeb;
}

.border_table {
  border-radius: 8px;
  border: 1px solid #eaeaee;
}

.table_checkbox_area .form-check-input {
  cursor: pointer;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
  border: none !important;
  border-color: transparent !important;
}
.table_checkbox_area .form-check-input:focus {
  border: none !important;
  border-color: transparent !important;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1) !important;
}

.status {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #113206;
  font-family: SFRegularFont;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  padding: 2px 8px;
  background: #b6f0b5;
}
.status.inactive {
  background-color: #ffbab6;
}

.ratio_status_area {
  position: relative;
  margin-top: 4px;
}
.ratio_status_area:hover .ratio_card {
  top: 20px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.ratio_status_area .ratio_card {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translate(-50%);
  z-index: 10;
  padding: 8px;
  border-radius: 8px;
  width: 300px;
  border: 1px solid #eaeaee;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0px 5px 31px -2px rgba(6, 8, 16, 0.17);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.ratio_status_area .ratio_card p {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}
@media all and (max-width: 991px) {
  .ratio_status_area .ratio_card p {
    transition: 0.5s;
    font-size: 12px;
  }
}
.ratio_status_area .ratio_card span {
  display: inline;
}
.ratio_status_area .ratio_card .title_grid {
  display: grid;
  grid-template-columns: minmax(0, 24px) repeat(1, minmax(0, 1fr));
  align-items: center;
  gap: 10px 12px;
  padding: 5px 20px;
  border-radius: 12px 12px 0px 0px;
  border-bottom: 1px solid #e1e5e7;
  background: #ffe2e0;
}
.ratio_status_area .ratio_card .title_grid p {
  color: #4c1008;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}
.ratio_status_area .ratio_card .content_area {
  padding: 0 12px;
  margin-top: 6px;
}
@media all and (max-width: 991px) {
  .ratio_status_area .ratio_card .content_area {
    transition: 0.5s;
    padding: 0 6px;
  }
}
.ratio_status_area .ratio_card .info_text {
  color: #7b7d85;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.14px;
}
@media all and (max-width: 991px) {
  .ratio_status_area .ratio_card .info_text {
    transition: 0.5s;
    font-size: 12px;
    line-height: 16px;
  }
}
.ratio_status_area .ratio_card ul {
  margin-top: 14px;
}
.ratio_status_area .ratio_card ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 7px 12px;
  padding-top: 4px;
  padding-bottom: 4px;
  margin-top: 8px;
}
@media all and (max-width: 991px) {
  .ratio_status_area .ratio_card ul li {
    transition: 0.5s;
    padding-top: 2px;
    padding-bottom: 2px;
  }
}
.ratio_status_area .ratio_card .suggestion_text {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #e3e3e5;
}
.ratio_status_area .ratio_card .create_template_btn {
  margin-top: 8px;
}

.ratio_status {
  cursor: pointer;
}
.ratio_status span {
  color: #e82749;
  font-family: SFSemiBoldFont;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
}

.table_dropdown_area .dropdown-menu {
  min-width: 221px;
  padding: 16px 8px 8px 8px;
  border-radius: 8px;
  border: 1px solid #eaeaee;
  background: #fff;
  box-shadow: 0px 5px 31px -2px rgba(6, 8, 16, 0.17);
}
.table_dropdown_area .dropdown-menu h4,
.table_dropdown_area .dropdown-menu h5 {
  color: #7b7d85;
  font-family: SFRegularFont;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  padding: 0px 12px;
  letter-spacing: 0.12px;
  text-transform: uppercase;
}
.table_dropdown_area .dropdown-item {
  display: grid;
  grid-template-columns: minmax(0, 17px) repeat(1, minmax(0, 1fr));
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  margin-top: 4px;
}
.table_dropdown_area .dropdown-item span {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.table_dropdown_area .dropdown-item:hover {
  background-color: #f5f6f8;
}
.table_dropdown_area .dropdown-item.border_top {
  border-top: 1px solid #eaeaee !important;
}
.table_dropdown_area .top_border {
  position: relative;
}
.table_dropdown_area .top_border::before {
  content: "";
  position: absolute;
  top: 0;
  left: -8px;
  width: calc(100% + 16px);
  height: 1px;
  background-color: #eaeaee;
}
.table_dropdown_area.single_menu .dropdown-item {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.table_dropdown_area.dropdown_md_area .dropdown-menu {
  min-width: 265px;
}

.pagination_area {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 1fr) minmax(0, 0.6fr);
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}
@media all and (max-width: 767px) {
  .pagination_area {
    transition: 0.5s;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
    gap: 16px 4px;
  }
}
.pagination_area .niceSelect {
  min-width: none;
  height: 32px;
  padding-left: 12px;
  border-radius: 8px;
  border: 1px solid #e1e3e4;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
@media all and (max-width: 767px) {
  .pagination_area .niceSelect {
    transition: 0.5s;
    padding-left: 6px;
  }
}
.pagination_area .niceSelect .list {
  border-radius: 8px;
  border: 1px solid #eaeaee;
  background: #fff;
  box-shadow: 0px 5px 31px -2px rgba(6, 8, 16, 0.17);
}
.pagination_area .niceSelect::after {
  width: 8px;
  height: 8px;
}
.pagination_area .niceSelect .current {
  color: #16141d;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
}
@media all and (max-width: 767px) {
  .pagination_area .niceSelect .current {
    transition: 0.5s;
    font-size: 12px;
  }
}
.pagination_area .number_list {
  gap: 4px;
}
@media all and (max-width: 767px) {
  .pagination_area .number_list {
    transition: 0.5s;
    grid-column: span 2;
  }
}
.pagination_area .number_list li a,
.pagination_area .number_list li button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--Gray-600, #475467);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  min-width: 26px;
  min-height: 26px;
  border-radius: 6px;
}
.pagination_area .number_list li a:hover,
.pagination_area .number_list li button:hover {
  background: #f8f8f9;
}
.pagination_area .number_list li a.pagination_active,
.pagination_area .number_list li button.pagination_active {
  color: #272e35;
  background-color: #f8f8f9;
}
@media all and (max-width: 767px) {
  .pagination_area .pagination_action_list {
    transition: 0.5s;
    grid-row: 1;
    grid-column: 2;
  }
}
.pagination_area .pagination_action_list a,
.pagination_area .pagination_action_list button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #e1e3e4;
  background: white;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
@media all and (max-width: 767px) {
  .pagination_area .pagination_action_list a,
  .pagination_area .pagination_action_list button {
    transition: 0.5s;
    padding: 8px 10px;
  }
}
.pagination_area .pagination_action_list a:hover,
.pagination_area .pagination_action_list button:hover {
  background-color: rgba(224, 224, 228, 0.8);
}
.pagination_area .pagination_action_list a span,
.pagination_area .pagination_action_list button span {
  color: #16141d;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
}
@media all and (max-width: 767px) {
  .pagination_area .pagination_action_list a span,
  .pagination_area .pagination_action_list button span {
    transition: 0.5s;
    font-size: 12px;
  }
}
.pagination_area.inbox_pagination_area {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.pagination_area.blog_pagination_area {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
@media all and (min-width: 1200px) {
  .pagination_area.blog_pagination_area {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    gap: 10px 50px;
  }
}
@media all and (min-width: 768px) {
  .pagination_area.blog_pagination_area {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    justify-content: end;
  }
}
@media all and (max-width: 767px) {
  .pagination_area.blog_pagination_area {
    transition: 0.5s;
    flex-direction: column;
  }
}

.summer_note_area .note-editor {
  border-radius: 8px;
  background: white;
  overflow: hidden;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.summer_note_area .note-toolbar {
  background-color: #f5f6f8;
}
.summer_note_area .note-placeholder {
  font-size: 14px;
  color: #696f8c !important;
}
.summer_note_area .note-btn-group .note-btn {
  background-color: transparent;
}
.summer_note_area .table_dropdown_area {
  display: none;
  position: absolute;
  top: 74px;
  left: 108px;
}
.summer_note_area .table_dropdown_area .dropdown-menu {
  min-width: 260px;
}
@media all and (max-width: 767px) {
  .summer_note_area .table_dropdown_area .dropdown-menu {
    transition: 0.5s;
    min-width: 210px;
  }
}
.summer_note_area .table_dropdown_area .dropdown-item {
  display: block;
}

.user_info_area {
  display: grid;
  grid-template-columns: minmax(0, 40px) repeat(1, minmax(0, 1fr));
  align-items: center;
  gap: 12px;
}
.user_info_area .user_top_img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #efefef;
}
.user_info_area h4 {
  color: #7b7d85 !important;
  font-family: SFMediumFont !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: 24px !important;
}
.user_info_area h5 {
  color: #0b1234 !important;
  font-family: SFSemiBoldFont !important;
  font-size: 18px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: 28px !important;
}
.user_info_area .copy_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.user_info_area .copy_icon:hover {
  background-color: rgba(123, 125, 133, 0.4);
}
.user_info_area .copy_icon img {
  max-width: 15px;
}

.user_info_grid {
  display: grid;
  grid-template-columns: minmax(0, 24px) repeat(1, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
  margin-top: 24px;
}
@media all and (max-width: 767px) {
  .user_info_grid {
    transition: 0.5s;
    margin-top: 16px;
  }
}
.user_info_grid h4 {
  color: #7b7d85;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.user_info_grid h5 {
  color: #353636;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin-top: 2px;
}

.template_header_area {
  padding-bottom: 16px;
  position: relative;
}
.template_header_area::after {
  content: "";
  position: absolute;
  left: -32px;
  bottom: 0;
  width: calc(100% + 64px);
  height: 1px;
  background-color: #eaeaee;
}
@media all and (max-width: 767px) {
  .template_header_area {
    transition: 0.5s;
    padding-bottom: 12px;
  }
}

@media all and (max-width: 767px) {
  .title_icon_grid {
    transition: 0.5s;
    display: grid !important;
    grid-template-columns: minmax(0, 32px) repeat(1, minmax(0, 1fr));
    align-items: start;
    gap: 20px 16px;
  }
}

.template_filter_area {
  margin-top: 20px;
}
@media all and (max-width: 575px) {
  .template_filter_area {
    transition: 0.5s;
    justify-content: end;
  }
}
.template_filter_area .search_input_form {
  order: 2;
  margin-top: 10px;
}
@media all and (min-width: 576px) {
  .template_filter_area .search_input_form {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    order: 1;
    margin-top: 0;
    max-width: 290px;
    width: 100%;
  }
}
.template_filter_area .filter_btn_area {
  order: 2;
}
@media all and (max-width: 575px) {
  .template_filter_area .filter_btn_area {
    transition: 0.5s;
    order: 1;
  }
}
.template_filter_area .table_dropdown_area .dropdown-menu {
  margin-top: 8px !important;
}

.file_upload_area {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  height: 226px;
  cursor: pointer;
  padding: 16px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border: 2px dashed #bfbfc3;
  background: rgba(245, 246, 248, 0.67);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .file_upload_area {
    transition: 0.5s;
    height: 200px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .file_upload_area {
    transition: 0.5s;
    height: 180px;
  }
}
@media all and (max-width: 767px) {
  .file_upload_area {
    transition: 0.5s;
    height: 150px;
  }
}
.file_upload_area.drag-over {
  transform: scale(1.01);
  border: 3px dashed #b6f0b5;
  -webkit-transform: scale(1.01);
  -moz-transform: scale(1.01);
  -ms-transform: scale(1.01);
  -o-transform: scale(1.01);
}
.file_upload_area .import_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.file_upload_area h4,
.file_upload_area h5 {
  color: #353636;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
@media all and (max-width: 767px) {
  .file_upload_area h4,
  .file_upload_area h5 {
    transition: 0.5s;
    font-size: 14px;
  }
}
.file_upload_area h4 span,
.file_upload_area h5 span {
  font-family: SFMediumFont;
  color: #235de4;
  font-weight: 500;
}

.uploading_status_area {
  position: relative;
  padding: 24px;
  border-radius: 8px;
  background: #f5f6f8;
}
@media (min-width: 768px) and (max-width: 991px) {
  .uploading_status_area {
    transition: 0.5s;
    padding: 20px;
  }
}
@media all and (max-width: 767px) {
  .uploading_status_area {
    transition: 0.5s;
    padding: 16px;
  }
}
.uploading_status_area .close_btn {
  position: absolute;
  top: 18px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.uploading_status_area .close_btn:hover {
  background-color: rgba(123, 125, 133, 0.4);
}
.uploading_status_area .file_name_grid {
  display: grid;
  grid-template-columns: minmax(0, 41px) repeat(1, minmax(0, 1fr));
  align-items: start;
  gap: 12px;
}
.uploading_status_area .file_name_grid h4 {
  color: #353636;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.uploading_status_area .file_name_grid h5 {
  color: #353636;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.uploading_status_area .progress_grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr)) minmax(0, 40px);
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}
.uploading_status_area .progress {
  height: 12px;
  border-radius: 24px;
  background: #e1e5e7;
}
.uploading_status_area .number {
  color: #353636;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.uploading_status_area .complete_status {
  display: grid;
  grid-template-columns: minmax(0, 20px) repeat(1, minmax(0, 1fr));
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.badge_status {
  text-align: center;
  color: #062753;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  padding: 2px 8px;
  border-radius: 4px;
  background: #b8d6ff;
}

.account_border {
  max-width: 692px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid #eaeaee;
}
@media (min-width: 768px) and (max-width: 991px) {
  .account_border {
    transition: 0.5s;
    padding: 20px;
  }
}
@media all and (max-width: 767px) {
  .account_border {
    transition: 0.5s;
    padding: 16px;
  }
}
.account_border.full_width {
  max-width: 100%;
}

.account_title_grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .account_title_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 0.5fr) minmax(0, 1fr);
  }
}
@media all and (max-width: 767px) {
  .account_title_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 1fr) minmax(0, 40px);
    grid-template-rows: 1fr 1fr;
  }
}
.account_title_grid .account_right_area {
  gap: 12px 16px;
}
@media all and (max-width: 767px) {
  .account_title_grid .account_right_area {
    transition: 0.5s;
    display: grid !important;
    grid-template-columns: 1fr 0.9fr;
    gap: 6px;
    grid-row: 2;
    grid-column: span 2;
  }
}
.account_title_grid .search_input_form {
  max-width: 218px;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .account_title_grid .search_input_form {
    transition: 0.5s;
    max-width: 200px;
  }
}
@media all and (max-width: 767px) {
  .account_title_grid .search_input_form {
    transition: 0.5s;
    max-width: 100%;
  }
}
@media all and (min-width: 768px) {
  .account_title_grid .table_dropdown_area {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    position: relative;
    padding-right: 16px;
  }
  .account_title_grid .table_dropdown_area::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    right: 0px;
    width: 1px;
    height: 26px;
    background-color: #eaeaee;
  }
}
@media all and (max-width: 767px) {
  .account_title_grid .table_dropdown_area {
    transition: 0.5s;
    position: absolute;
    top: 0;
    right: 0;
  }
}
.account_title_grid .table_dropdown_area.not_right_border {
  padding-right: 0;
}
.account_title_grid .table_dropdown_area.not_right_border::after {
  display: none;
}

.account_title_area .user_icon {
  max-width: 20px;
}
.account_title_area h2 {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}
@media all and (max-width: 767px) {
  .account_title_area h2 {
    transition: 0.5s;
    font-size: 18px;
  }
}

.warning_area {
  padding: 20px;
  border-radius: 12px;
  background: #fbf4e6;
}
@media (min-width: 768px) and (max-width: 991px) {
  .warning_area {
    transition: 0.5s;
    padding: 16px;
  }
}
@media all and (max-width: 767px) {
  .warning_area {
    transition: 0.5s;
    padding: 12px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
  }
}
.warning_area p {
  color: #523908;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
@media all and (max-width: 767px) {
  .warning_area p {
    transition: 0.5s;
    font-size: 14px;
    line-height: 22px;
  }
}
.warning_area p span {
  font-family: SFSemiBoldFont;
  font-weight: 600;
}
.warning_area .warning_btn_area {
  gap: 10px 12px;
  margin-top: 16px;
}
@media all and (max-width: 991px) {
  .warning_area .warning_btn_area {
    transition: 0.5s;
    margin-top: 12px;
  }
}

.active_check {
  position: relative;
  padding-right: 28px;
}
.active_check::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 14px;
  display: inline-block;
  transform: rotate(45deg);
  height: 11px;
  width: 5px;
  border-bottom: 1px solid #696f8c;
  border-right: 1px solid #696f8c;
}

.alert_message_area {
  display: grid;
  grid-template-columns: minmax(0, 36px) repeat(1, minmax(0, 1fr));
  align-items: start;
  gap: 12px 8px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #eaeaee;
  background: #f7f7f7;
}
@media all and (max-width: 767px) {
  .alert_message_area {
    transition: 0.5s;
    grid-template-columns: minmax(0, 30px) repeat(1, minmax(0, 1fr));
    padding: 10px;
  }
}
.alert_message_area .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 1px solid #eaeaee;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(93, 85, 96, 0.03);
}
@media all and (max-width: 767px) {
  .alert_message_area .icon {
    transition: 0.5s;
    width: 30px;
    height: 30px;
  }
}
.alert_message_area p {
  color: #0b1234;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.niceSelect_area {
  width: 106px;
  height: 36px;
  padding-left: 10px;
  border-radius: 8px;
  background: white;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.niceSelect_area:hover {
  background-color: #eaeaee;
}
.niceSelect_area::after {
  border-bottom: 1.5px solid #696f8c;
  border-right: 1.5px solid #696f8c;
  width: 7px;
  height: 7px;
}
.niceSelect_area .current {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.niceSelect_area .list {
  padding: 16px 8px 8px 8px;
  min-width: 200px;
  border-radius: 8px;
  border: 1px solid #eaeaee;
  background: #fff;
  box-shadow: 0px 5px 31px -2px rgba(6, 8, 16, 0.17);
}
.niceSelect_area .list .option {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  padding: 8px 12px;
  min-height: auto;
  line-height: normal;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  margin-top: 4px;
}
@media all and (max-width: 767px) {
  .niceSelect_area .list .option {
    transition: 0.5s;
    font-size: 14px;
  }
}
.niceSelect_area .list .selected {
  position: relative;
  padding-right: 28px;
}
.niceSelect_area .list .selected::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 14px;
  display: inline-block;
  transform: rotate(45deg);
  height: 11px;
  width: 5px;
  border-bottom: 1px solid #696f8c;
  border-right: 1px solid #696f8c;
}

.pagination_top_border {
  padding-top: 10px;
  border-top: 1px solid #eaecf0;
}

.custom_select_dropdown_area {
  position: relative;
}
.custom_select_dropdown_area .arrow_down_icon {
  position: absolute;
  top: 10px;
  right: 10px;
}
.custom_select_dropdown_area .input_field {
  position: relative;
  height: 40px;
  padding-right: 24px !important;
  border: 1px solid #fff !important;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1) !important;
}
.custom_select_dropdown_area .input_field::after {
  display: none;
}
.custom_select_dropdown_area .input_field .dropdown_grid {
  position: relative;
  top: -2.5px;
  display: grid;
  grid-template-columns: minmax(0, 24px) repeat(1, minmax(0, 1fr));
  align-items: center;
  gap: 8px;
}
.custom_select_dropdown_area .input_field .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
  background-color: #efefef;
}
.custom_select_dropdown_area .input_field .icon img {
  width: 100%;
  height: 100%;
}
.custom_select_dropdown_area .input_field .title {
  text-align: start;
  color: #0b1234;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.custom_select_dropdown_area .dropdown-menu {
  min-width: 283px;
  margin-top: 4px;
  padding: 8px 8px 8px 8px;
  border-radius: 8px;
  border: 1px solid #eaeaee;
  background: #fff;
  box-shadow: 0px 5px 31px -2px rgba(6, 8, 16, 0.17);
}
.custom_select_dropdown_area .dropdown-menu .dropdown_list {
  max-height: 200px;
  margin-top: 10px;
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.custom_select_dropdown_area .dropdown-menu .dropdown_list::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.custom_select_dropdown_area .dropdown-menu .dropdown_list::-webkit-scrollbar-track {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 5px;
}
.custom_select_dropdown_area .dropdown-menu .dropdown_list::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 5px;
}
.custom_select_dropdown_area .dropdown-menu .dropdown_list::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}
.custom_select_dropdown_area .dropdown-menu h4,
.custom_select_dropdown_area .dropdown-menu h5 {
  color: #7b7d85;
  font-family: SFRegularFont;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  padding: 0px 12px;
  letter-spacing: 0.12px;
  text-transform: uppercase;
}
.custom_select_dropdown_area .dropdown-item {
  display: grid;
  grid-template-columns: minmax(0, 17px) repeat(1, minmax(0, 1fr));
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 8px;
  margin-top: 4px;
}
.custom_select_dropdown_area .dropdown-item span {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.custom_select_dropdown_area .dropdown-item:hover {
  background-color: #f5f6f8;
}
.custom_select_dropdown_area .dropdown-item.border_top {
  border-top: 1px solid #eaeaee !important;
}
.custom_select_dropdown_area.single_menu .dropdown-item {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.custom_select_dropdown_area.contact_custom_select_area .dropdown-item {
  display: grid;
  grid-template-columns: minmax(0, 30px) repeat(1, minmax(0, 1fr)) minmax(0, 20px);
  align-items: center;
  gap: 8px;
}
@media all and (max-width: 767px) {
  .custom_select_dropdown_area.contact_custom_select_area .dropdown-item {
    transition: 0.5s;
    grid-template-columns: minmax(0, 24px) repeat(1, minmax(0, 1fr)) minmax(0, 20px);
  }
}
.custom_select_dropdown_area.contact_custom_select_area .dropdown-item .user_image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
@media all and (max-width: 767px) {
  .custom_select_dropdown_area.contact_custom_select_area .dropdown-item .user_image {
    transition: 0.5s;
    width: 24px;
    height: 24px;
  }
}
.custom_select_dropdown_area.contact_custom_select_area .dropdown-item span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notification_wrapper {
  position: relative;
}
.notification_wrapper .mobile_notificaton_btn {
  display: grid;
}
@media all and (min-width: 992px) {
  .notification_wrapper .mobile_notificaton_btn {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    display: none;
  }
}
.notification_wrapper .desktop_notification_btn {
  text-align: start;
}
@media all and (max-width: 991px) {
  .notification_wrapper .desktop_notification_btn {
    transition: 0.5s;
    display: none;
  }
}
.notification_wrapper .notification_list_wrapper {
  position: absolute;
  left: calc(100% + 17px);
  top: 0;
  width: 507px;
  padding: 12px 0px 20px 0px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 4px 15px 0px rgba(6, 8, 16, 0.14);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
@media all and (min-width: 992px) {
  .notification_wrapper .notification_list_wrapper {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    top: 20px;
    opacity: 0;
    visibility: hidden;
  }
}
.notification_wrapper .notification_list_wrapper .header {
  padding: 0px 16px 8px 16px;
  border-bottom: 1px solid #eaeaee;
}
.notification_wrapper .notification_list_wrapper h3 {
  color: #0b1234;
  font-family: SFSemiBoldFont;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
@media all and (max-width: 767px) {
  .notification_wrapper .notification_list_wrapper h3 {
    transition: 0.5s;
    font-size: 16px;
  }
}
.notification_wrapper .notification_chat_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.notification_wrapper .notification_chat_btn:hover {
  background-color: rgba(123, 125, 133, 0.4);
}
.notification_wrapper .notification_chat_btn img {
  max-width: 18px;
}
.notification_wrapper .notification_btn_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 12px;
  margin: 24px 16px;
}
@media all and (max-width: 767px) {
  .notification_wrapper .notification_btn_grid {
    transition: 0.5s;
    margin: 16px 12px;
  }
}
.notification_wrapper .notification_btn_grid button,
.notification_wrapper .notification_btn_grid a {
  color: v #0b1234;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.notification_wrapper .notification_btn_grid button:hover,
.notification_wrapper .notification_btn_grid a:hover {
  background-color: rgba(208, 213, 221, 0.4);
}
.notification_wrapper .notifciation_list {
  margin: 0 16px;
  max-height: 400px;
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.notification_wrapper .notifciation_list::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.notification_wrapper .notifciation_list::-webkit-scrollbar-track {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 5px;
}
.notification_wrapper .notifciation_list::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 5px;
}
.notification_wrapper .notifciation_list::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}
@media all and (max-width: 767px) {
  .notification_wrapper .notifciation_list {
    transition: 0.5s;
    margin: 0 12px;
  }
}
.notification_wrapper .notifciation_list li {
  display: grid;
  grid-template-columns: minmax(0, 40px) minmax(0, 1fr) minmax(0, 0.5fr);
  align-items: center;
  gap: 16px;
  padding: 8px 16px;
  border-radius: 8px;
}
@media all and (max-width: 767px) {
  .notification_wrapper .notifciation_list li {
    transition: 0.5s;
    padding: 4px 12px;
  }
}
.notification_wrapper .notifciation_list li:hover {
  background: #f8f8f9;
}
.notification_wrapper .notifciation_list li:hover .dot {
  width: 0;
  opacity: 0;
  visibility: hidden;
}
.notification_wrapper .notifciation_list li:hover .action_btn_list {
  opacity: 1;
  visibility: visible;
}
.notification_wrapper .notifciation_list .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #efefef;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.notification_wrapper .notifciation_list .icon img {
  max-width: 16px;
}
.notification_wrapper .notifciation_list h3 {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.notification_wrapper .notifciation_list h6 {
  color: #7b7d85;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  margin-top: 6px;
}
.notification_wrapper .notifciation_list .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #235de4;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.notification_wrapper .action_btn_list {
  display: flex;
  padding: 2px;
  align-items: center;
  gap: 2px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.notification_wrapper .action_btn_list button,
.notification_wrapper .action_btn_list a {
  padding: 2px 4px;
}
.notification_wrapper .action_btn_list button:hover,
.notification_wrapper .action_btn_list a:hover {
  opacity: 0.8;
}
.notification_wrapper .action_btn_list button img,
.notification_wrapper .action_btn_list a img {
  max-width: 16px;
}

.analytics_breadcrumb li a,
.analytics_breadcrumb li button {
  color: #000;
  font-family: SFBoldFont;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.analytics_breadcrumb li a:hover,
.analytics_breadcrumb li button:hover {
  opacity: 0.7;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .analytics_breadcrumb li a,
  .analytics_breadcrumb li button {
    transition: 0.5s;
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .analytics_breadcrumb li a,
  .analytics_breadcrumb li button {
    transition: 0.5s;
    font-size: 18px;
  }
}
@media all and (max-width: 767px) {
  .analytics_breadcrumb li a,
  .analytics_breadcrumb li button {
    transition: 0.5s;
    font-size: 16px;
  }
}
.analytics_breadcrumb li {
  color: #696969;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}
@media all and (max-width: 991px) {
  .analytics_breadcrumb li {
    transition: 0.5s;
    font-family: 16px;
  }
}

.analytics-tooltip.show {
  opacity: 1;
}
.analytics-tooltip .tooltip-arrow::before {
  border-bottom-color: #e8cece;
}
.analytics-tooltip .tooltip-inner {
  color: #551919;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 12px;
  padding: 12px;
  max-width: 320px;
  background: #e8cece;
}

.fitler_icon_select_area {
  position: relative;
}
.fitler_icon_select_area .niceSelect {
  height: auto;
  min-width: 130px;
  border-radius: 8px;
  border: none;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.fitler_icon_select_area .niceSelect::after {
  display: none;
}
.fitler_icon_select_area .niceSelect .list {
  border-radius: 8px;
  border: 1px solid #eaeaee;
  background: #fff;
  box-shadow: 0px 5px 31px -2px rgba(6, 8, 16, 0.17);
}
.fitler_icon_select_area .filter_icon {
  position: absolute;
  top: 12px;
  right: 8px;
  pointer-events: none;
}

.verify_modal_content_area h3 {
  color: #000;
  font-family: SFSemiBoldFont;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media all and (max-width: 767px) {
  .verify_modal_content_area h3 {
    transition: 0.5s;
    font-size: 18px;
  }
}
.verify_modal_content_area p {
  line-height: normal;
  margin-top: 12px;
}
@media all and (max-width: 767px) {
  .verify_modal_content_area p {
    transition: 0.5s;
    font-size: 14px;
  }
}
.verify_modal_content_area .info_area {
  margin-top: 30px;
}
.verify_modal_content_area .info_area a {
  display: grid;
  grid-template-columns: minmax(0, 24px) repeat(1, minmax(0, 1fr));
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.verify_modal_content_area .info_area a img {
  max-width: 24px;
}
.verify_modal_content_area .info_area a span {
  font-size: 18px;
}
@media all and (max-width: 767px) {
  .verify_modal_content_area .info_area a span {
    transition: 0.5s;
    font-size: 16px;
  }
}
.verify_modal_content_area .info_area a:hover {
  opacity: 0.8;
}

.delete_modal_content_area {
  text-align: center;
}
.delete_modal_content_area .delete_icon {
  max-width: 98px;
  max-height: 98px;
}
@media all and (max-width: 767px) {
  .delete_modal_content_area .delete_icon {
    transition: 0.5s;
    max-width: 60px;
    max-height: 60px;
  }
}
.delete_modal_content_area p {
  color: #353636;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin-top: 16px;
}
@media all and (max-width: 767px) {
  .delete_modal_content_area p {
    transition: 0.5s;
    font-size: 14px;
    line-height: 22px;
    margin-top: 10px;
  }
}

.permission_check_area {
  display: flex;
  align-items: start;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 24px 12px;
  padding: 16px;
  border-radius: 8px;
  width: 100%;
  border: 1px solid #eaeaee;
}
@media all and (max-width: 991px) {
  .permission_check_area {
    transition: 0.5s;
    gap: 12px;
  }
}
.permission_check_area .permission_check_item {
  width: 100%;
}
.permission_check_area .permission_check_item:not(:last-child) {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(208, 213, 221, 0.3);
}
@media all and (max-width: 767px) {
  .permission_check_area .permission_check_item:not(:last-child) {
    transition: 0.5s;
    padding-bottom: 12px;
  }
}
.permission_check_area .permission_check_item h4 {
  color: #0b1234;
  font-family: SFSemiBoldFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 16px;
}
@media all and (max-width: 767px) {
  .permission_check_area .permission_check_item h4 {
    transition: 0.5s;
    font-size: 14px;
    margin-bottom: 12px;
  }
}
.permission_check_area .permission_check_item .checkbox_area {
  gap: 16px;
}
@media all and (max-width: 767px) {
  .permission_check_area .permission_check_item .checkbox_area {
    transition: 0.5s;
    gap: 16px 12px;
  }
}
.permission_check_area .permission_check_item .checkbox_area .form-check {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px 8px;
  padding: 8px 12px 8px 36px;
  border-radius: 8px;
  cursor: pointer;
  background: #edeff5;
}
@media all and (max-width: 767px) {
  .permission_check_area .permission_check_item .checkbox_area .form-check {
    transition: 0.5s;
    border-radius: 6px;
  }
}
.permission_check_area .permission_check_item .checkbox_area .form-check .form-check-label {
  font-family: SFMediumFont;
  font-weight: 500;
}

.beep_animation {
  position: absolute;
  top: -4px;
  right: -6px;
  width: 8px;
  height: 8px;
  background-color: #fc544b;
  border-radius: 50%;
  animation: pulsate 1s ease-out;
  animation-iteration-count: infinite;
  opacity: 1;
}

@keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
.ai_intro_label {
  position: absolute;
  top: -10px;
  right: -14px;
  background-color: #ff6f61;
  color: white;
  padding: 2px 4px;
  font-size: 8px;
  border-radius: 4px;
  animation: slideIn 1s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.alert-badge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 20px;
  padding-right: 22px;
  text-align: center;
  margin: 0;
  overflow-x: hidden;
}
@media all and (max-width: 767px) {
  .alert-badge {
    transition: 0.5s;
    padding: 4px 16px;
    padding-right: 22px;
  }
}
.alert-badge a {
  text-decoration: underline;
  color: inherit;
  font-weight: 600;
}
.alert-badge i {
  font-size: 16px;
}
.alert-badge .close_icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
@media all and (max-width: 991px) {
  .alert-badge .close_icon {
    transition: 0.5s;
    right: 6px;
  }
}
.alert-badge .close_icon img {
  max-width: 14px;
}
@media all and (max-width: 991px) {
  .alert-badge .close_icon img {
    transition: 0.5s;
    max-width: 12px;
  }
}
.alert-badge .close_icon:hover {
  opacity: 0.8;
}
.alert-badge.alert {
  background-color: #fff5f5;
  color: #c53030;
}
.alert-badge.warning {
  background-color: #fefcbf;
  color: #975a16;
}
.alert-badge.success {
  background-color: #235de4;
  color: #ffffff;
}

.forward_list_area {
  padding: 12px;
  max-height: 285px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.forward_list_area::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.forward_list_area::-webkit-scrollbar-track {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 5px;
}
.forward_list_area::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 5px;
}
.forward_list_area::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}
.forward_list_area .number_list {
  display: grid;
  grid-template-columns: minmax(0, 32px) repeat(1, minmax(0, 1fr));
  align-items: center;
  gap: 20px 8px;
  padding: 8px 12px;
  border-radius: 8px;
  width: 100%;
}
@media all and (max-width: 991px) {
  .forward_list_area .number_list {
    transition: 0.5s;
    grid-template-columns: minmax(0, 28px) repeat(1, minmax(0, 1fr));
    padding: 6px 8px;
    border-radius: 4px;
  }
}
.forward_list_area .number_list:hover {
  background: #f5f6f8;
}
.forward_list_area .number_list img {
  width: 100%;
  height: 32px;
  border-radius: 50%;
}
@media all and (max-width: 991px) {
  .forward_list_area .number_list img {
    transition: 0.5s;
    height: 28px;
  }
}
.forward_list_area .number_list span {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  text-align: start;
}
@media all and (max-width: 991px) {
  .forward_list_area .number_list span {
    transition: 0.5s;
    font-size: 14px;
  }
}

.card_status {
  color: #348c46;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 4px 10px;
  border-radius: 48px;
  border: 1px solid #348c46;
  background: #daefde;
}

.auto_recharge_area {
  padding: 20px;
  border-radius: 12px;
  background: #f0f1f2;
}
@media all and (max-width: 991px) {
  .auto_recharge_area {
    transition: 0.5s;
    padding: 16px 14px;
    border-radius: 8px;
  }
}
.auto_recharge_area .title {
  color: #235de4;
  font-family: SFSemiBoldFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}
.auto_recharge_area .content {
  margin-top: 6px;
}
.auto_recharge_area .content p {
  color: #151523;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.42px;
}

.settings_status_area {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 7px 12px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background-color: white;
}
.settings_status_area .swiper {
  width: 100%;
}
.settings_status_area .swiper-slide {
  width: 100% !important;
}
.settings_status_area .swiper-slide-active .scroll_text.animate {
  animation-name: marquee;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}
.settings_status_area .scroll_container {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.settings_status_area .scroll_text {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
}

.settings_status {
  position: relative;
  padding: 12px;
  padding-right: 22px;
  text-align: center;
  border-radius: 4px;
  background: #235de4;
}
@media all and (max-width: 991px) {
  .settings_status {
    transition: 0.5s;
    padding: 8px 6px;
    padding-right: 22px;
  }
}
.settings_status p {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
@media all and (max-width: 991px) {
  .settings_status p {
    transition: 0.5s;
    font-size: 12px;
    line-height: 22px;
  }
}
.settings_status p span {
  font-family: SFSemiBoldFont;
  font-weight: 600;
}
.settings_status .close_icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
@media all and (max-width: 991px) {
  .settings_status .close_icon {
    transition: 0.5s;
    right: 6px;
  }
}
.settings_status .close_icon img {
  max-width: 14px;
}
@media all and (max-width: 991px) {
  .settings_status .close_icon img {
    transition: 0.5s;
    max-width: 12px;
  }
}
.settings_status .close_icon:hover {
  opacity: 0.8;
}
.settings_status.approve {
  background: #eff3ff;
}
.settings_status.approve_twilio {
  background: #e9fffa;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media all and (max-width: 767px) {
  .carrier_history_list {
    transition: 0.5s;
    padding: 0 4px;
  }
}
.carrier_history_list li {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px 16px;
  padding: 12px 0;
  border-bottom: 1px solid #e3e3e5;
}
@media all and (max-width: 767px) {
  .carrier_history_list li {
    transition: 0.5s;
    flex-direction: column;
    align-items: start;
  }
}
.carrier_history_list li:last-child {
  border: none;
}
@media (min-width: 768px) and (max-width: 991px) {
  .carrier_history_list li {
    transition: 0.5s;
    gap: 10px 12px;
  }
}
@media all and (max-width: 767px) {
  .carrier_history_list li {
    transition: 0.5s;
    gap: 4px 8px;
  }
}
.carrier_history_list li p {
  color: #353636;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
@media all and (max-width: 991px) {
  .carrier_history_list li p {
    transition: 0.5s;
    font-size: 14px;
    line-height: 22px;
  }
}
.carrier_history_list li .value {
  color: #696f8c;
}

.capability_status_area {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 160px;
}

.capability_status {
  color: #062753;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  padding: 2px 8px;
  border-radius: 4px;
  background: #b8d6ff;
}
.capability_status.sms {
  background-color: #ffcae7;
}
.capability_status.mms {
  background-color: #d0c5ff;
}

.not_found_area {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
.not_found_area .icon {
  max-width: 52px;
}
.not_found_area .description {
  color: #7b7d85;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.12px;
  margin-top: 3px;
}

.refer_link_area {
  padding: 24px;
  border-radius: 16px;
  border: 1.5px solid #e8e8e8;
  background: #fff;
}
@media all and (max-width: 991px) {
  .refer_link_area {
    transition: 0.5s;
    padding: 20px 16px;
    border-radius: 12px;
  }
}
.refer_link_area .label {
  color: #353636;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.refer_link_area .refer_input_grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: start;
  gap: 10px 16px;
  margin-top: 8px;
}
@media all and (max-width: 767px) {
  .refer_link_area .refer_input_grid {
    transition: 0.5s;
    grid-template-columns: 1fr 1fr;
  }
}
.refer_link_area .input_field {
  color: #000;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  padding: 10px 12px;
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
@media all and (max-width: 767px) {
  .refer_link_area .input_field {
    transition: 0.5s;
    grid-column: span 2;
  }
}
@media all and (min-width: 1200px) {
  .refer_link_area .create_template_btn {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    padding-right: 24px;
    padding-left: 24px;
  }
}

.landing_inner_title {
  color: #14358a;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 50.4px;
}
@media all and (min-width: 1200px) {
  .landing_inner_title {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    letter-spacing: -1.44px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .landing_inner_title {
    transition: 0.5s;
    font-size: 40px;
    line-height: 42.4px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .landing_inner_title {
    transition: 0.5s;
    font-size: 32px;
    line-height: 44.4px;
  }
}
@media all and (max-width: 767px) {
  .landing_inner_title {
    transition: 0.5s;
    font-size: 28px;
    line-height: 30.4px;
  }
}

.pricing_title {
  color: #14358a;
  font-family: "Inter", sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pricing_title {
    transition: 0.5s;
    font-size: 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .pricing_title {
    transition: 0.5s;
    font-size: 40px;
  }
}
@media all and (max-width: 767px) {
  .pricing_title {
    transition: 0.5s;
    font-size: 34px;
  }
}

.business_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #14348a;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border: 1px solid #14348a;
  background: #e5f9fe;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .business_btn {
    transition: 0.5s;
    padding: 18px 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .business_btn {
    transition: 0.5s;
    padding: 14px 24px;
  }
}
@media all and (max-width: 767px) {
  .business_btn {
    transition: 0.5s;
    font-size: 14px;
    padding: 12px 20px;
  }
}
.business_btn:hover {
  background: #dfedf0;
}

.choose_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 100%;
  height: 51px;
  border-radius: 10px;
  background: linear-gradient(52deg, #0097fe -5.7%, #14358a 94.69%);
}
@media all and (max-width: 767px) {
  .choose_btn {
    transition: 0.5s;
    font-size: 14px;
  }
}
.choose_btn:hover {
  color: #fff;
  background: linear-gradient(52deg, #1c8dd9 -5.7%, #2858d0 94.69%);
}

.submit_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  width: 196.823px;
  height: 50.823px;
  padding: 12px;
  border-radius: 5px;
  background: linear-gradient(86deg, #038aef 0%, #124097 100%);
}
@media all and (max-width: 991px) {
  .submit_btn {
    transition: 0.5s;
    font-size: 14px;
    width: 160px;
    height: 44px;
  }
}
.submit_btn:hover {
  background: linear-gradient(45deg, #1a92ed 0%, #1d5dd4 100%);
}

.contact_sale_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1b2f9b;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  width: 234px;
  height: 55px;
  border-radius: 5px;
  background: #fff;
}
.contact_sale_btn:hover {
  opacity: 0.9;
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact_sale_btn {
    transition: 0.5s;
    height: 48px;
  }
}
@media all and (max-width: 767px) {
  .contact_sale_btn {
    transition: 0.5s;
    font-size: 14px;
    height: 44px;
  }
}

/* Pricing Section */
.pricing_wrapper {
  margin-top: 147px;
  padding-bottom: 20px;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 991px) {
  .pricing_wrapper {
    transition: 0.5s;
    margin-top: 100px;
  }
}
@media all and (max-width: 767px) {
  .pricing_wrapper {
    transition: 0.5s;
    margin-top: 60px;
  }
}
.pricing_wrapper .header_area h5 {
  max-width: 598px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.pricing_wrapper .pricing_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 60px;
  margin-top: 161px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pricing_wrapper .pricing_grid {
    transition: 0.5s;
    gap: 30px 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .pricing_wrapper .pricing_grid {
    transition: 0.5s;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 40px;
    margin-top: 120px;
  }
}
@media all and (max-width: 767px) {
  .pricing_wrapper .pricing_grid {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 30px 40px;
    margin-top: 70px;
  }
}
.pricing_wrapper .pricing_item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 25px;
  border-radius: 24px;
  height: 100%;
  background: #e5f9fe;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
@media (min-width: 768px) and (max-width: 991px) {
  .pricing_wrapper .pricing_item {
    transition: 0.5s;
    padding: 26px 20px;
  }
}
@media all and (max-width: 767px) {
  .pricing_wrapper .pricing_item {
    transition: 0.5s;
    padding: 26px 16px;
  }
}
.pricing_wrapper .pricing_item:hover {
  transform: scale(1.02);
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -ms-transform: scale(1.02);
  -o-transform: scale(1.02);
}
.pricing_wrapper .pricing_item.premium_pricing_item {
  background: #005fe7;
}
.pricing_wrapper .pricing_item.premium_pricing_item h3,
.pricing_wrapper .pricing_item.premium_pricing_item .price {
  color: white;
}
.pricing_wrapper .pricing_item.premium_pricing_item h3 span,
.pricing_wrapper .pricing_item.premium_pricing_item .price span {
  color: rgba(255, 255, 255, 0.68);
}
.pricing_wrapper .pricing_item.premium_pricing_item ul li h4 {
  color: white;
}
.pricing_wrapper .pricing_item.premium_pricing_item .choose_btn {
  color: #005fe7;
  background: white;
}
.pricing_wrapper .pricing_item.premium_pricing_item .choose_btn:hover {
  color: #005fe7;
  background: rgb(238, 238, 238);
}
.pricing_wrapper .pricing_item h3,
.pricing_wrapper .pricing_item .price {
  color: #005fe7;
  font-family: "Inter", sans-serif;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media all and (max-width: 991px) {
  .pricing_wrapper .pricing_item h3,
  .pricing_wrapper .pricing_item .price {
    transition: 0.5s;
    font-size: 20px;
  }
}
.pricing_wrapper .pricing_item h3 span,
.pricing_wrapper .pricing_item .price span {
  color: #181059;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media all and (max-width: 991px) {
  .pricing_wrapper .pricing_item h3 span,
  .pricing_wrapper .pricing_item .price span {
    transition: 0.5s;
    font-size: 14px;
  }
}
@media all and (max-width: 767px) {
  .pricing_wrapper .pricing_item .price {
    transition: 0.5s;
    margin-top: 16px;
  }
}
.pricing_wrapper .pricing_item ul {
  margin-top: 22px;
}
.pricing_wrapper .pricing_item ul li {
  display: grid;
  grid-template-columns: minmax(0, 12px) repeat(1, minmax(0, 1fr));
  align-items: start;
  gap: 5px;
  margin-bottom: 15px;
}
@media all and (max-width: 991px) {
  .pricing_wrapper .pricing_item ul li {
    transition: 0.5s;
    margin-bottom: 12px;
  }
}
@media all and (max-width: 767px) {
  .pricing_wrapper .pricing_item ul li {
    transition: 0.5s;
    gap: 10px 12px;
  }
}
.pricing_wrapper .pricing_item ul .icon img {
  max-width: 12px;
}
.pricing_wrapper .pricing_item ul h4 {
  color: #68718b;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media all and (max-width: 767px) {
  .pricing_wrapper .pricing_item ul h4 {
    transition: 0.5s;
    font-size: 14px;
  }
}
.pricing_wrapper .choose_btn {
  margin-top: 24px;
}

/* Inclusive Section */
.inclusive_pricing_wrapper {
  overflow: hidden;
  margin-top: 218px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .inclusive_pricing_wrapper {
    transition: 0.5s;
    margin-top: 180px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .inclusive_pricing_wrapper {
    transition: 0.5s;
    margin-top: 140px;
  }
}
@media all and (max-width: 767px) {
  .inclusive_pricing_wrapper {
    transition: 0.5s;
    margin-top: 100px;
  }
}
.inclusive_pricing_wrapper .header_area h5 {
  max-width: 665px;
}
.inclusive_pricing_wrapper .pricing_grid {
  margin-top: 59px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .inclusive_pricing_wrapper .pricing_grid {
    transition: 0.5s;
    margin-top: 40px;
  }
}
@media all and (max-width: 767px) {
  .inclusive_pricing_wrapper .pricing_grid {
    transition: 0.5s;
    margin-top: 30px;
  }
}
.inclusive_pricing_wrapper .pricing_item h3 {
  text-align: start;
}
.inclusive_pricing_wrapper .pricing_item .price {
  text-align: center;
  margin-top: 38px;
}
@media all and (max-width: 991px) {
  .inclusive_pricing_wrapper .pricing_item .price {
    transition: 0.5s;
    margin-top: 16px;
  }
}
.inclusive_pricing_wrapper .pricing_item ul {
  margin-top: 43px;
}
@media all and (max-width: 991px) {
  .inclusive_pricing_wrapper .pricing_item ul {
    transition: 0.5s;
    margin-top: 20px;
  }
}
.inclusive_pricing_wrapper .pricing_item ul li {
  align-items: start;
  gap: 5px;
}
.inclusive_pricing_wrapper .choose_btn {
  height: 60px;
  margin-top: 36px;
}
@media all and (max-width: 991px) {
  .inclusive_pricing_wrapper .choose_btn {
    transition: 0.5s;
    height: 50px;
    margin-top: 20px;
  }
}

.dashboard_overview_wrapper .overview_grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 20px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .dashboard_overview_wrapper .overview_grid {
    transition: 0.5s;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media all and (max-width: 767px) {
  .dashboard_overview_wrapper .overview_grid {
    transition: 0.5s;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}
.dashboard_overview_wrapper .item_grid {
  display: grid;
  grid-template-columns: minmax(0, 25px) repeat(1, minmax(0, 1fr));
  align-items: center;
  gap: 16px;
  padding: 20px 20px 20px 24px;
  min-height: 108px;
  border-radius: 12px;
  background: #eceeff;
}
@media all and (max-width: 991px) {
  .dashboard_overview_wrapper .item_grid {
    transition: 0.5s;
    padding: 16px;
    min-height: auto;
  }
}
.dashboard_overview_wrapper .item_grid.responded_item {
  background: #f6f1ff;
}
.dashboard_overview_wrapper .item_grid.undelivered_item {
  background: #e5f9fe;
}
.dashboard_overview_wrapper .item_grid.stopped_item {
  background: #eee;
}
.dashboard_overview_wrapper .item_grid .icon {
  align-self: start;
  margin-top: 5px;
}
.dashboard_overview_wrapper .item_grid h3 {
  color: #101438;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.dashboard_overview_wrapper .item_grid h4 {
  color: #101438;
  font-family: SFSemiBoldFont;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 8px;
}
@media all and (max-width: 991px) {
  .dashboard_overview_wrapper .item_grid h4 {
    transition: 0.5s;
    font-size: 20px;
  }
}

.analytics_chart_section {
  padding: 16px 24px 24px 24px;
  border-radius: 12px;
  border: 1px solid #eaeaee;
  margin-top: 24px;
}
.analytics_chart_section .title_area h2 {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media all and (max-width: 767px) {
  .analytics_chart_section .title_area h2 {
    transition: 0.5s;
    font-size: 18px;
  }
}
.analytics_chart_section .month_area {
  padding: 4px;
  border-radius: 8px;
  background: #f6f6f6;
}
.analytics_chart_section .month_area button {
  color: #6d6e72;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.analytics_chart_section .month_area button:hover {
  background-color: rgba(224, 224, 228, 0.8);
}
@media all and (max-width: 767px) {
  .analytics_chart_section .month_area button {
    transition: 0.5s;
    font-size: 14px;
    padding: 8px 10px;
  }
}
.analytics_chart_section .active_month {
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0px 1px 2px 0px rgba(7, 9, 18, 0.16);
}
.analytics_chart_section .active_month:hover {
  background-color: #fff !important;
}
.analytics_chart_section .date_range_area h4 {
  color: #101438;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.analytics_chart_section .date_range_input_area {
  margin-right: 8px;
}
.analytics_chart_section .chart_area {
  position: relative;
  width: 100%;
  height: 450px;
  margin-top: 24px;
}
.analytics_chart_section .apexcharts-legend {
  flex-wrap: wrap;
  gap: 10px 24px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .analytics_chart_section .apexcharts-legend {
    transition: 0.5s;
    gap: 10px 20px;
  }
}
@media all and (max-width: 991px) {
  .analytics_chart_section .apexcharts-legend {
    transition: 0.5s;
    gap: 10px 16px;
  }
}
.analytics_chart_section .apexcharts-legend .apexcharts-legend-marker {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.analytics_chart_section .apexcharts-legend-series {
  gap: 5px;
}
.analytics_chart_section .apexcharts-legend-text {
  color: #101438 !important;
  font-size: 14px !important;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.analytics_chart_section .apexcharts-tooltip-text .apexcharts-tooltip-goals-group,
.analytics_chart_section .apexcharts-tooltip-text .apexcharts-tooltip-z-group {
  display: none;
}
.analytics_chart_section .apexcharts-legend.apexcharts-align-center {
  justify-content: start !important;
}

.credit_activity_wrapper .credit_outer_grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr);
  gap: 20px;
}
@media all and (max-width: 767px) {
  .credit_activity_wrapper .credit_outer_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 1fr);
  }
}
.credit_activity_wrapper .credit_area {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #eaeaee;
}
.credit_activity_wrapper .amount_area h4 {
  color: #04050c;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.credit_activity_wrapper .amount_area .number {
  color: #04050c;
  font-family: SFMediumFont;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #e8e8eb;
  background: #fafafa;
  margin-top: 6px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .credit_activity_wrapper .amount_area .number {
    transition: 0.5s;
    font-size: 24px;
  }
}
@media all and (max-width: 767px) {
  .credit_activity_wrapper .amount_area .number {
    transition: 0.5s;
    font-size: 20px;
    padding: 10px 12px;
  }
}
.credit_activity_wrapper .added_amount {
  color: #000;
  text-align: center;
  font-family: SFLightFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-top: 80px;
}
@media all and (max-width: 991px) {
  .credit_activity_wrapper .added_amount {
    transition: 0.5s;
    margin-top: 60px;
  }
}
.credit_activity_wrapper .bonus_outer_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 10px 7px;
  max-width: 550px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 18px;
}
.credit_activity_wrapper .bonus_grid {
  display: grid;
  grid-template-columns: minmax(0, 28px) repeat(1, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fafafa;
}
.credit_activity_wrapper .bonus_grid h4 {
  color: #000;
  font-family: SFLightFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.credit_activity_wrapper .bonus_grid h5 {
  color: #000;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 4px;
}
.credit_activity_wrapper .activity_area {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #eaeaee;
}
@media all and (min-width: 992px) {
  .credit_activity_wrapper .activity_area {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    padding: 20px;
  }
}
.credit_activity_wrapper .activity_area .credit_title {
  margin-bottom: 24px;
}
.credit_activity_wrapper .activity_item_area {
  padding-right: 8px;
  max-height: 387px;
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.credit_activity_wrapper .activity_item_area::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.credit_activity_wrapper .activity_item_area::-webkit-scrollbar-track {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 5px;
}
.credit_activity_wrapper .activity_item_area::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 5px;
}
.credit_activity_wrapper .activity_item_area::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}
.credit_activity_wrapper .acitivity_item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 28px) repeat(1, minmax(0, 1fr));
  align-items: start;
  gap: 8px;
  padding-bottom: 24px;
}
@media all and (max-width: 767px) {
  .credit_activity_wrapper .acitivity_item {
    transition: 0.5s;
    padding-bottom: 16px;
  }
}
.credit_activity_wrapper .acitivity_item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 14px;
  width: 1px;
  height: 100%;
  background-color: #f0f1f2;
}
.credit_activity_wrapper .acitivity_item .icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: 100%;
  height: 28px;
  background: #f0f1f2;
}
.credit_activity_wrapper .acitivity_item h4 {
  color: #5f6064;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.credit_activity_wrapper .acitivity_item h5 {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 4px;
}

.dashboard_calender_wrapper {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #eaeaee;
}
@media all and (min-width: 992px) {
  .dashboard_calender_wrapper {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    padding: 20px;
  }
}

.login_wrapper {
  min-height: calc(var(--vh, 1vh) * 100);
  background-color: #fafafa;
}
@media all and (max-width: 767px) {
  .login_wrapper .logo img {
    transition: 0.5s;
    max-width: 140px;
  }
}
.login_wrapper .login_grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  align-items: start;
  gap: 20px 32px;
  min-height: calc(var(--vh, 1vh) * 100);
}
@media (min-width: 768px) and (max-width: 991px) {
  .login_wrapper .login_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }
}
@media all and (max-width: 767px) {
  .login_wrapper .login_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 1fr);
  }
}
.login_wrapper .login_left_area {
  padding: 32px;
  padding-right: 0;
  height: 95%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .login_wrapper .login_left_area {
    transition: 0.5s;
    padding: 24px;
    padding-right: 0;
  }
}
@media all and (max-width: 767px) {
  .login_wrapper .login_left_area {
    transition: 0.5s;
    padding: 16px;
  }
}
.login_wrapper .create_account_btn {
  font-family: SFMediumFont;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: #235de4;
  text-decoration: underline;
}
@media (min-width: 768px) and (max-width: 991px) {
  .login_wrapper .create_account_btn {
    transition: 0.5s;
    font-size: 16px;
    line-height: 26px;
  }
}
@media all and (max-width: 767px) {
  .login_wrapper .create_account_btn {
    transition: 0.5s;
    font-size: 14px;
    line-height: 24px;
  }
}
.login_wrapper .create_account_btn:hover {
  opacity: 0.8;
}
.login_wrapper .login_form_area {
  margin-top: 20px;
  max-width: 400px;
  width: 100%;
}
@media all and (min-width: 992px) {
  .login_wrapper .login_form_area {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    margin-left: 32px;
  }
}
@media all and (max-width: 767px) {
  .login_wrapper .login_form_area {
    transition: 0.5s;
    margin-left: auto;
    margin-right: auto;
  }
}
.login_wrapper .login_content_area {
  padding-top: 33px;
  padding-left: 85px;
  height: 100%;
  background-color: #f4f4f6;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .login_wrapper .login_content_area {
    transition: 0.5s;
    padding-top: 33px;
    padding-left: 60px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .login_wrapper .login_content_area {
    transition: 0.5s;
    padding-top: 24px;
    padding-left: 40px;
  }
}
@media all and (max-width: 767px) {
  .login_wrapper .login_content_area {
    transition: 0.5s;
    padding-top: 16px;
    padding-left: 20px;
    display: none;
  }
}
.login_wrapper .login_content_area h4,
.login_wrapper .login_content_area h3 {
  color: #696f8c;
  font-family: SFSemiBoldFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.14px;
}
.login_wrapper .login_content_area .page_inner_title {
  max-width: 592px;
  width: 100%;
  margin-top: 6px;
  margin-bottom: 28px;
}
@media all and (max-width: 767px) {
  .login_wrapper .login_content_area .page_inner_title {
    transition: 0.5s;
    margin-bottom: 20px;
  }
}
.login_wrapper .login_content_area h3 {
  color: #0b1234;
}
.login_wrapper .user_tag {
  color: #696f8c;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: -0.24px;
}
.login_wrapper .user_tag:hover {
  opacity: 0.9;
}
.login_wrapper .login_img_area {
  margin-top: 52px;
}
@media all and (max-width: 991px) {
  .login_wrapper .login_img_area {
    transition: 0.5s;
    margin-top: 30px;
  }
}
.login_wrapper .login_img_area img {
  max-height: 640px;
}

.login_others_wrapper {
  padding-bottom: 5px;
  min-height: calc(var(--vh, 1vh) * 100);
  background-color: #edeff5;
}
.login_others_wrapper .logo {
  padding: 32px 0 0 32px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .login_others_wrapper .logo {
    transition: 0.5s;
    padding: 24px 0 0 24px;
  }
}
@media all and (max-width: 767px) {
  .login_others_wrapper .logo {
    transition: 0.5s;
    padding: 16px 0 0 16px;
  }
}
.login_others_wrapper .login_others_form_area {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 20px 0;
  min-height: calc(var(--vh, 1vh) * 100 - 119px);
}
@media all and (max-width: 767px) {
  .login_others_wrapper .login_others_form_area {
    transition: 0.5s;
    margin: 16px;
  }
}
.login_others_wrapper .login_form_area {
  max-width: 520px;
  width: 100%;
  padding: 24px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  background-color: #fff;
}
@media all and (max-width: 991px) {
  .login_others_wrapper .login_form_area {
    transition: 0.5s;
    padding: 16px;
  }
}
.login_others_wrapper .back_arrow_area {
  max-width: 520px;
  width: 100%;
  margin-bottom: 8px;
}

.calender_wrapper .calender_variant_list {
  gap: 10px 24px;
}
@media all and (max-width: 991px) {
  .calender_wrapper .calender_variant_list {
    transition: 0.5s;
    gap: 10px 16px;
  }
}
.calender_wrapper .calender_variant_list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.calender_wrapper .calender_variant_list li .send,
.calender_wrapper .calender_variant_list li .sms,
.calender_wrapper .calender_variant_list li .voice {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: #b4f3d1;
}
.calender_wrapper .calender_variant_list li .sms {
  background-color: #b1e5fc;
}
.calender_wrapper .calender_variant_list li .voice {
  background-color: #d0c5ff;
}
.calender_wrapper .calender_variant_list li span {
  color: #353636;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.calender_wrapper .calender_full_area {
  margin-top: 48px;
}
@media all and (max-width: 991px) {
  .calender_wrapper .calender_full_area {
    transition: 0.5s;
    margin-top: 30px;
  }
}
.calender_wrapper .calender_full_area .fc-toolbar-chunk .fc--button.fc-button.fc-button-primary {
  display: none;
}
.calender_wrapper .calender_full_area .fc-toolbar-chunk:nth-child(2) {
  padding: 2px;
  border-radius: 10px;
  background: #edeff5;
}
.calender_wrapper .calender_full_area .fc-toolbar-chunk:nth-child(2) .fc-button {
  color: #364050;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.32px;
  width: auto;
  height: auto;
  border-radius: 8px !important;
  -webkit-border-radius: 8px !important;
  -moz-border-radius: 8px !important;
  -ms-border-radius: 8px !important;
  -o-border-radius: 8px !important;
  padding: 4px 8px;
  border: none !important;
  background-color: transparent;
}
@media all and (max-width: 767px) {
  .calender_wrapper .calender_full_area .fc-toolbar-chunk:nth-child(2) .fc-button {
    transition: 0.5s;
    font-size: 14px;
  }
}
.calender_wrapper .calender_full_area .fc-toolbar-chunk:nth-child(2) .fc-button:hover {
  background-color: rgba(109, 110, 114, 0.4);
}
.calender_wrapper .calender_full_area .fc-toolbar-chunk:nth-child(2) .fc-button-active {
  color: #0b1234;
  font-weight: 500;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(25, 36, 58, 0.08), 0px 1px 1px 0px rgba(25, 36, 58, 0.05), 0px 1px 3px 0px rgba(25, 36, 58, 0.05);
}
.calender_wrapper .calender_full_area .fc-toolbar-chunk:nth-child(2) .fc-button-active:hover {
  background: #fff;
}
.calender_wrapper .calender_full_area .fc-toolbar-chunk:nth-child(3) .fc-button:nth-child(1) {
  width: auto;
}
.calender_wrapper .calender_full_area .fc-event-title-container {
  background: transparent;
}
.calender_wrapper .calender_full_area .fc-event {
  border-radius: 8px;
}
.calender_wrapper .calender_full_area .fc-event-title {
  padding: 4px 5px;
}
.calender_wrapper .calender_full_area .fc-event-title::before {
  display: none;
}
@media all and (max-width: 767px) {
  .calender_wrapper .calender_search_area {
    transition: 0.5s;
    width: 100%;
  }
}

.edit_event_modal .modal-content {
  border: none;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 130px 36px 0px rgba(5, 9, 31, 0), 0px 83px 33px 0px rgba(5, 9, 31, 0.01), 0px 47px 28px 0px rgba(5, 9, 31, 0.05), 0px 21px 21px 0px rgba(5, 9, 31, 0.09), 0px 5px 11px 0px rgba(5, 9, 31, 0.1), 0px 0px 0px 1px rgba(11, 18, 52, 0.15);
}
.edit_event_modal .modal-dialog {
  max-width: 661px;
}
.edit_event_modal .modal-body {
  padding: 24px;
}
@media all and (max-width: 767px) {
  .edit_event_modal .modal-body {
    transition: 0.5s;
    padding: 16px;
  }
}
.edit_event_modal .event_edit_grid {
  display: grid;
  grid-template-columns: minmax(0, 20px) minmax(0, 1fr) minmax(0, 0.6fr);
  align-items: start;
  gap: 20px;
}
@media all and (max-width: 767px) {
  .edit_event_modal .event_edit_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.6fr);
  }
}
.edit_event_modal .dot {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  margin-top: 4px;
  background: #b4f3d1;
}
@media all and (max-width: 767px) {
  .edit_event_modal .dot {
    transition: 0.5s;
    display: none;
  }
}
.edit_event_modal .content_area h2 {
  color: #0b1234;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.18px;
}
@media all and (max-width: 767px) {
  .edit_event_modal .content_area h2 {
    transition: 0.5s;
    font-size: 16px;
    line-height: 22px;
  }
}
.edit_event_modal .content_area h3,
.edit_event_modal .content_area h4 {
  color: #353636;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-top: 8px;
}
@media all and (max-width: 767px) {
  .edit_event_modal .content_area h3,
  .edit_event_modal .content_area h4 {
    transition: 0.5s;
    font-size: 14px;
    line-height: 22px;
    margin-top: 4px;
  }
}
.edit_event_modal .content_area h3 span,
.edit_event_modal .content_area h4 span {
  display: inline;
  color: #696f8c;
}
.edit_event_modal .icon_grid {
  margin-top: 12px;
}
@media all and (max-width: 767px) {
  .edit_event_modal .icon_grid {
    transition: 0.5s;
    margin-top: 8px;
  }
}
.edit_event_modal .two_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 0px 10px;
}
@media all and (max-width: 767px) {
  .edit_event_modal .two_grid {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.edit_event_modal .participant_area {
  margin-top: 24px;
}
.edit_event_modal .participant_area .participant_user_grid {
  display: grid;
  grid-template-columns: minmax(0, 16px) minmax(0, 1fr) minmax(0, 28px);
  align-items: start;
  gap: 8px;
  margin-top: 12px;
}
.edit_event_modal .participant_area .participant_user_grid h5,
.edit_event_modal .participant_area .participant_user_grid h6 {
  color: #696f8c;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
@media all and (max-width: 767px) {
  .edit_event_modal .participant_area .participant_user_grid h5,
  .edit_event_modal .participant_area .participant_user_grid h6 {
    transition: 0.5s;
    font-size: 14px;
    line-height: 22px;
  }
}
.edit_event_modal .delete_icon button,
.edit_event_modal .delete_icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.edit_event_modal .delete_icon button:hover,
.edit_event_modal .delete_icon a:hover {
  background-color: rgba(123, 125, 133, 0.4);
}
.edit_event_modal .action_area .action_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.edit_event_modal .action_area .action_btn:hover {
  background-color: rgba(123, 125, 133, 0.4);
}
.edit_event_modal .action_area .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 14px;
  padding: 2px;
  border-radius: 8px;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}

.inbox_fixed_height {
  height: calc(var(--vh, 1vh) * 100);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0px;
  overflow: hidden;
}

.inbox_wrapper {
  height: calc(100% - 20px);
  margin-top: 20px;
  padding-top: 1px;
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
  overflow: auto;
}
.inbox_wrapper::-webkit-scrollbar {
  width: 8px;
}
.inbox_wrapper::-webkit-scrollbar-track {
  background: #b4f3d1;
  border-radius: 5px;
}
.inbox_wrapper::-webkit-scrollbar-thumb {
  background: #235de4;
  border-radius: 5px;
}
.inbox_wrapper::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}
@media all and (min-width: 768px) {
  .inbox_wrapper.content_no_space {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    margin-left: -14px;
    width: calc(100% + 14px);
  }
}
.inbox_wrapper .inbox_grid {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr) minmax(0, 0.4fr);
  align-items: start;
  height: 100%;
  overflow: hidden;
}
@media (min-width: 1200px) and (max-width: 1299px) {
  .inbox_wrapper .inbox_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 350px) minmax(0, 1fr) minmax(0, 0.5fr);
  }
}
@media all and (max-width: 1280px) {
  .inbox_wrapper .inbox_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 350px) minmax(0, 1fr);
  }
}
@media all and (max-width: 767px) {
  .inbox_wrapper .inbox_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 1fr);
    padding: 0 10px;
  }
}
.inbox_wrapper .mobile_chat_header {
  position: relative;
  display: none;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.inbox_wrapper .mobile_chat_header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #eaeaee;
}
@media all and (max-width: 1199px) {
  .inbox_wrapper .mobile_chat_header {
    transition: 0.5s;
    border: none;
  }
  .inbox_wrapper .mobile_chat_header::after {
    width: calc(100% + 24px);
  }
}
@media all and (max-width: 767px) {
  .inbox_wrapper .mobile_chat_header {
    transition: 0.5s;
  }
  .inbox_wrapper .mobile_chat_header::after {
    left: -16px;
    width: calc(100% + 32px);
  }
}
@media all and (max-width: 767px) {
  .inbox_wrapper .mobile_chat_header {
    transition: 0.5s;
    display: block;
  }
}
.inbox_wrapper .mobile_chat_header h3 {
  color: #0b1234;
  font-family: SFSemiBoldFont;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
@media all and (max-width: 767px) {
  .inbox_wrapper .mobile_chat_header h3 {
    transition: 0.5s;
    font-size: 16px;
  }
}
.inbox_wrapper .mobile_chat_header .chat_list_btn {
  width: 20px;
}
.inbox_wrapper .mobile_chat_header .chat_list_btn i {
  font-size: 18px;
}
@media all and (max-width: 767px) {
  .inbox_wrapper .friends_chat_wrapper {
    transition: 0.5s;
    position: fixed;
    left: -100%;
    top: 0;
    height: calc(var(--vh, 1vh) * 100);
    width: 300px;
    z-index: 505;
    opacity: 0;
    visibility: hidden;
    background-color: white;
  }
  .inbox_wrapper .friends_chat_wrapper.chat_list_active {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
}
.inbox_wrapper .friends_chat_list_area {
  position: relative;
  padding-top: 1px;
}
.inbox_wrapper .friends_chat_list_area::after {
  content: "";
  position: absolute;
  top: -24px;
  right: 0;
  width: 1px;
  height: calc(100% + 24px);
  background-color: #eaeaee;
}
.inbox_wrapper .list_header_area {
  padding: 0 20px 16px 20px;
  border-bottom: 1px solid #eaeaee;
}
@media all and (max-width: 767px) {
  .inbox_wrapper .list_header_area {
    transition: 0.5s;
    padding: 12px 10px 12px 10px;
  }
}
@media all and (max-width: 767px) {
  .inbox_wrapper .list_header_area .sidebar_open_btn {
    transition: 0.5s;
    display: none;
  }
}
.inbox_wrapper .list_header_area h3 {
  color: #0b1234;
  font-family: SFSemiBoldFont;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
@media all and (max-width: 767px) {
  .inbox_wrapper .list_header_area h3 {
    transition: 0.5s;
    font-size: 16px;
  }
}
.inbox_wrapper .list_header_area .search_btn {
  position: absolute;
  top: 3px;
  right: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.inbox_wrapper .list_header_area .search_btn:hover {
  background-color: rgba(123, 125, 133, 0.4);
}
.inbox_wrapper .list_header_area .search_btn img {
  max-width: 16px;
}
.inbox_wrapper .list_header_area .chat_fitler_grid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
@media all and (max-width: 767px) {
  .inbox_wrapper .list_header_area .chat_fitler_grid {
    transition: 0.5s;
    margin-top: 12px;
  }
}
.inbox_wrapper .friend_list_header_grid {
  display: grid;
  grid-template-columns: minmax(0, 90px) repeat(1, minmax(0, 1fr));
  align-items: center;
  gap: 10px;
}
.inbox_wrapper .friend_list_header_grid .chat_search_form {
  height: 36px;
}
.inbox_wrapper .friend_list_header_grid .chat_search_form .input_field {
  position: absolute;
  right: 0;
  width: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.inbox_wrapper .friend_list_header_grid .chat_search_form.search_active .input_field {
  opacity: 1;
  visibility: visible;
  width: 100%;
}
.inbox_wrapper .all_chat_btn {
  display: grid;
  grid-template-columns: minmax(0, 17px) repeat(1, minmax(0, 1fr)) minmax(0, 17px);
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  height: 36px;
  width: 116px;
  border-radius: 8px;
  background: white;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.inbox_wrapper .all_chat_btn .folder_icon {
  max-width: 16px;
}
.inbox_wrapper .all_chat_btn span {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  text-align: start;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.inbox_wrapper .all_chat_btn .down_icon {
  max-width: 17px;
  margin-left: 2px;
  transition: all 0.15s ease-in-out;
}
.inbox_wrapper .all_chat_btn:hover {
  background-color: #eaeaee;
}
.inbox_wrapper .folder_dropdown_active .down_icon {
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
}
.inbox_wrapper .folder_filter_area {
  position: relative;
}
.inbox_wrapper .folder_dropdown_area {
  position: absolute;
  top: 42px;
  left: 0;
  z-index: 10;
  display: none;
  width: 299px;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #eaeaee;
  background: #fff;
  box-shadow: 0px 5px 31px -2px rgba(6, 8, 16, 0.17);
}
@media all and (max-width: 767px) {
  .inbox_wrapper .folder_dropdown_area {
    transition: 0.5s;
    width: 285px;
  }
}
.inbox_wrapper .folder_dropdown_area .search_input_form {
  height: 36px;
}
.inbox_wrapper .folder_dropdown_area h4 {
  color: #7b7d85;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.12px;
  text-transform: uppercase;
  margin-top: 16px;
}
@media all and (max-width: 767px) {
  .inbox_wrapper .folder_dropdown_area h4 {
    transition: 0.5s;
    margin-top: 10px;
  }
}
.inbox_wrapper .folder_dropdown_area .folder_list {
  max-height: 182px;
  margin-bottom: 5px;
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.inbox_wrapper .folder_dropdown_area .folder_list::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.inbox_wrapper .folder_dropdown_area .folder_list::-webkit-scrollbar-track {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 5px;
}
.inbox_wrapper .folder_dropdown_area .folder_list::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 5px;
}
.inbox_wrapper .folder_dropdown_area .folder_list::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}
.inbox_wrapper .folder_dropdown_area li button,
.inbox_wrapper .folder_dropdown_area li a,
.inbox_wrapper .folder_dropdown_area .all_folder button,
.inbox_wrapper .folder_dropdown_area .all_folder a {
  display: grid;
  grid-template-columns: minmax(0, 16px) repeat(1, minmax(0, 1fr));
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  width: 100%;
  margin-top: 4px;
}
.inbox_wrapper .folder_dropdown_area li button:hover,
.inbox_wrapper .folder_dropdown_area li a:hover,
.inbox_wrapper .folder_dropdown_area .all_folder button:hover,
.inbox_wrapper .folder_dropdown_area .all_folder a:hover {
  background: #f5f6f8;
}
.inbox_wrapper .folder_dropdown_area li button span,
.inbox_wrapper .folder_dropdown_area li a span,
.inbox_wrapper .folder_dropdown_area .all_folder button span,
.inbox_wrapper .folder_dropdown_area .all_folder a span {
  text-align: start;
  color: #0b1234;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
@media all and (max-width: 767px) {
  .inbox_wrapper .folder_dropdown_area li button span,
  .inbox_wrapper .folder_dropdown_area li a span,
  .inbox_wrapper .folder_dropdown_area .all_folder button span,
  .inbox_wrapper .folder_dropdown_area .all_folder a span {
    transition: 0.5s;
    font-size: 14px;
    line-height: 22px;
  }
}
.inbox_wrapper .folder_dropdown_area .all_folder {
  border-top: 1px solid #eaeaee;
}
.inbox_wrapper .folder_dropdown_area .active_dropdown {
  position: relative;
  padding-right: 28px !important;
}
.inbox_wrapper .folder_dropdown_area .active_dropdown::after {
  content: "";
  position: absolute;
  top: 11px;
  right: 14px;
  display: inline-block;
  transform: rotate(45deg);
  height: 11px;
  width: 5px;
  border-bottom: 1px solid #696f8c;
  border-right: 1px solid #696f8c;
}
.inbox_wrapper .niceSelect {
  width: 106px;
  height: 36px;
  padding-left: 10px;
  border-radius: 8px;
  border: none;
  background: white;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.inbox_wrapper .niceSelect:hover {
  background-color: #eaeaee;
}
.inbox_wrapper .niceSelect::after {
  border-bottom: 1.5px solid #696f8c;
  border-right: 1.5px solid #696f8c;
  width: 7px;
  height: 7px;
}
.inbox_wrapper .niceSelect .current {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.inbox_wrapper .niceSelect .list {
  padding: 16px 8px 8px 8px;
  width: 238px;
  border-radius: 8px;
  border: 1px solid #eaeaee;
  background: #fff;
  box-shadow: 0px 5px 31px -2px rgba(6, 8, 16, 0.17);
}
.inbox_wrapper .niceSelect .list .option {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  padding: 8px 12px;
  min-height: auto;
  line-height: normal;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  margin-top: 4px;
}
@media all and (max-width: 767px) {
  .inbox_wrapper .niceSelect .list .option {
    transition: 0.5s;
    font-size: 14px;
  }
}
.inbox_wrapper .niceSelect .list .selected {
  position: relative;
  padding-right: 28px;
}
.inbox_wrapper .niceSelect .list .selected::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 14px;
  display: inline-block;
  transform: rotate(45deg);
  height: 11px;
  width: 5px;
  border-bottom: 1px solid #696f8c;
  border-right: 1px solid #696f8c;
}
.inbox_wrapper .unread_btn {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  border-radius: 8px;
  padding: 8px 10px;
  height: 36px;
  background: white;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.08), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.inbox_wrapper .unread_btn:hover {
  background-color: #eaeaee;
}
.inbox_wrapper .friend_list_area {
  position: relative;
  padding: 16px 8px;
  height: calc(var(--vh, 1vh) * 100 - 130px);
}
@media (min-width: 768px) and (max-width: 1199px) {
  .inbox_wrapper .friend_list_area {
    transition: 0.5s;
    height: calc(var(--vh, 1vh) * 100 - 140px);
  }
}
@media all and (max-width: 767px) {
  .inbox_wrapper .friend_list_area {
    transition: 0.5s;
    height: calc(var(--vh, 1vh) * 100 - 160px);
  }
}
.inbox_wrapper .friend_list_area .friend_list {
  height: calc(100% - 50px);
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.inbox_wrapper .friend_list_area .friend_list li {
  position: relative;
}
.inbox_wrapper .friend_list_area .friend_list::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.inbox_wrapper .friend_list_area .friend_list::-webkit-scrollbar-track {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 5px;
}
.inbox_wrapper .friend_list_area .friend_list::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 5px;
}
.inbox_wrapper .friend_list_area .friend_list::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}
.inbox_wrapper .action_message_button_area {
  position: fixed;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 9999;
  width: 100%;
}
.inbox_wrapper .action_message_button_area.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.inbox_wrapper .action_message_button_area .action_list {
  gap: 10px 10px;
  padding: 6px 16px;
  border-radius: 8px;
  border: 1px solid #eaeaee;
  background: #fff;
  box-shadow: 0px 5px 31px 0px rgba(6, 8, 16, 0.17);
}
.inbox_wrapper .action_message_button_area .action_button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 28px;
  border-radius: 4px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.inbox_wrapper .action_message_button_area .action_button:hover {
  background: #f3f3f5;
}
.inbox_wrapper .message_dropdown_btn {
  display: none;
}
@media all and (max-width: 991px) {
  .inbox_wrapper .message_dropdown_btn {
    transition: 0.5s;
    display: block;
  }
}
.inbox_wrapper .hide_pagination .friend_list {
  height: 100%;
}
.inbox_wrapper .hide_pagination .new_msg_btn {
  bottom: 40px;
}
.inbox_wrapper .pagination_area {
  margin-top: 0;
  padding: 20px 0;
}
.inbox_wrapper .list_item {
  display: grid;
  grid-template-columns: minmax(0, 40px) repeat(1, minmax(0, 1fr)) minmax(0, 50px);
  align-items: start;
  gap: 4px;
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.inbox_wrapper .list_item:hover {
  background-color: #f5f6f8;
}
.inbox_wrapper .list_item .user_image {
  width: 40px;
  height: 40px;
}
.inbox_wrapper .list_item.active_chat {
  background-color: #f5f6f8;
}
.inbox_wrapper .list_item.active_chat:hover {
  background-color: #f5f6f8;
}
.inbox_wrapper .short_message_are {
  text-align: start;
  margin-left: 12px;
}
.inbox_wrapper .short_message_are h4 {
  color: #0b1234;
  font-family: SFSemiBoldFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media all and (max-width: 767px) {
  .inbox_wrapper .short_message_are h4 {
    transition: 0.5s;
    font-size: 14px;
  }
}
.inbox_wrapper .short_message_are p {
  color: #7b7d85;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.inbox_wrapper .time_area {
  text-align: right;
}
.inbox_wrapper .time_area h5 {
  color: rgba(53, 54, 54, 0.7);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}
.inbox_wrapper .time_area .number {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  padding: 3px 8px;
  border-radius: 16px;
  margin-top: 5px;
  background: #235de4;
}
.inbox_wrapper .unread_item .short_message_are p {
  font-family: SFMediumFont;
  color: #353636;
  font-weight: 500;
}
.inbox_wrapper .new_msg_btn {
  position: absolute;
  bottom: 80px;
  right: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #235de4;
}
.inbox_wrapper .new_msg_btn:hover {
  opacity: 0.8;
}
.inbox_wrapper .user_header_area {
  position: relative;
  padding: 0 24px 16px 24px;
  height: 68px;
}
.inbox_wrapper .user_header_area::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #eaeaee;
}
@media all and (max-width: 1199px) {
  .inbox_wrapper .user_header_area {
    transition: 0.5s;
    padding: 0 0px 12px 20px;
    border: none;
  }
  .inbox_wrapper .user_header_area::after {
    width: calc(100% + 24px);
  }
}
@media all and (max-width: 767px) {
  .inbox_wrapper .user_header_area {
    transition: 0.5s;
    padding-left: 0;
  }
  .inbox_wrapper .user_header_area::after {
    left: -16px;
    width: calc(100% + 32px);
  }
}
.inbox_wrapper .user_header_area {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr)) minmax(0, 105px);
  align-items: center;
  gap: 10px;
}
@media all and (max-width: 1199px) {
  .inbox_wrapper .user_header_area {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr)) minmax(0, 100px);
  }
}
@media all and (max-width: 767px) {
  .inbox_wrapper .user_header_area {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr)) minmax(0, 85px);
  }
}
.inbox_wrapper .user_info_area {
  display: grid;
  grid-template-columns: minmax(0, 40px) repeat(1, minmax(0, 1fr));
  align-items: center;
  gap: 12px;
}
.inbox_wrapper .user_info_area .user_top_img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #efefef;
}
.inbox_wrapper .user_info_area h4 {
  color: #7b7d85;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.inbox_wrapper .user_info_area h5 {
  color: #0b1234;
  font-family: SFSemiBoldFont;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
.inbox_wrapper .user_info_area .copy_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.inbox_wrapper .user_info_area .copy_icon:hover {
  background-color: rgba(123, 125, 133, 0.4);
}
.inbox_wrapper .user_info_area .copy_icon img {
  max-width: 15px;
}
@media all and (min-width: 768px) {
  .inbox_wrapper .header_action_area {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    gap: 8px;
  }
}
.inbox_wrapper .header_action_area button,
.inbox_wrapper .header_action_area a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.inbox_wrapper .header_action_area button:hover,
.inbox_wrapper .header_action_area a:hover {
  background-color: rgba(123, 125, 133, 0.4);
}
.inbox_wrapper .header_action_area button img,
.inbox_wrapper .header_action_area a img {
  max-width: 16px;
}
.inbox_wrapper .header_action_area .info_btn {
  display: none;
}
@media all and (max-width: 1280px) {
  .inbox_wrapper .header_action_area .info_btn {
    transition: 0.5s;
    display: block;
  }
}
.inbox_wrapper .message_area {
  height: 100%;
}
.inbox_wrapper .message_write_area {
  padding: 24px 24px 16px 24px;
  height: 100%;
}
@media all and (max-width: 1199px) {
  .inbox_wrapper .message_write_area {
    transition: 0.5s;
    padding: 20px 0px 12px 20px;
  }
}
@media all and (max-width: 767px) {
  .inbox_wrapper .message_write_area {
    transition: 0.5s;
    padding-left: 0;
  }
}
.inbox_wrapper .message_chat_area {
  padding-right: 8px;
  margin-bottom: 20px;
  height: calc(var(--vh, 1vh) * 100 - 314px);
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.inbox_wrapper .message_chat_area::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.inbox_wrapper .message_chat_area::-webkit-scrollbar-track {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 5px;
}
.inbox_wrapper .message_chat_area::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 5px;
}
.inbox_wrapper .message_chat_area::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}
@media all and (max-width: 767px) {
  .inbox_wrapper .message_chat_area {
    transition: 0.5s;
    height: calc(var(--vh, 1vh) * 100 - 362px);
  }
}
.inbox_wrapper .receive_msg,
.inbox_wrapper .sender_msg {
  margin-bottom: 20px;
}
@media all and (max-width: 767px) {
  .inbox_wrapper .receive_msg,
  .inbox_wrapper .sender_msg {
    transition: 0.5s;
    margin-bottom: 12px;
  }
}
.inbox_wrapper .receive_msg {
  display: grid;
  grid-template-columns: minmax(0, 38px) repeat(1, minmax(0, 1fr));
  align-items: end;
  gap: 16px;
}
.inbox_wrapper .receive_msg .recevier_user {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-bottom: 26px;
  background-color: #efefef;
}
.inbox_wrapper .text_area {
  position: relative;
  max-width: 315px;
  width: 100%;
}
.inbox_wrapper .text_area .msg {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  color: #353636;
  font-feature-settings: "liga" off, "clig" off;
  font-family: SFRegularFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  padding: 12px 15px;
  border-radius: 20px;
  min-width: 38px;
  text-align: start;
  background: #f4f4f5;
}
@media all and (max-width: 767px) {
  .inbox_wrapper .text_area .msg {
    transition: 0.5s;
    font-size: 14px;
    line-height: 20px;
    padding: 8px 10px;
    min-width: 28px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
  }
}
.inbox_wrapper .text_area .mms_msg {
  display: block;
}
.inbox_wrapper .text_area .mms_msg .mms_image {
  display: block;
  margin-bottom: 10px;
  max-width: 100%;
  max-height: 800px;
}
.inbox_wrapper .text_area .msg_shape {
  position: absolute;
  left: -7px;
  bottom: 28px;
  z-index: -1;
  max-width: 44px;
}
@media all and (max-width: 767px) {
  .inbox_wrapper .text_area .msg_shape {
    transition: 0.5s;
    left: -5px;
    bottom: 28px;
    max-width: 26px;
  }
}
.inbox_wrapper .text_area .time {
  color: #7b7d85;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  margin-top: 10px;
}
.inbox_wrapper .sender_msg .text_area {
  max-width: 328px;
  width: 100%;
  margin-left: auto;
  text-align: end;
}
.inbox_wrapper .sender_msg .text_area .msg {
  color: #fff;
  background-color: #235de4;
}
.inbox_wrapper .sender_msg .text_area .msg_shape {
  position: absolute;
  left: auto;
  bottom: 33px;
  right: -6px;
  z-index: -1;
  transform: scaleX(-1);
}
@media all and (max-width: 767px) {
  .inbox_wrapper .sender_msg .text_area .msg_shape {
    transition: 0.5s;
    bottom: 30px;
    right: -4px;
  }
}
.inbox_wrapper .sender_msg .time {
  text-align: end;
}
.inbox_wrapper .ai_content_area {
  position: absolute;
  top: -55px;
  left: 0;
  z-index: 1002;
  width: 100%;
  max-height: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  pointer-events: none;
}
.inbox_wrapper .ai_content_area.visible {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.inbox_wrapper .ai_content_area .swiper-wrapper {
  align-items: center;
}
.inbox_wrapper .ai_content_area .swiper-slide {
  width: auto !important;
  display: inline-block;
}
.inbox_wrapper .ai_content_area .ai_content_btn {
  max-width: 300px;
  max-height: 43px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #353636;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16.8px;
  text-align: start;
  padding: 6px 12px;
  border-radius: 12px;
  background: #f4f4f5;
}
@media (min-width: 768px) and (max-width: 991px) {
  .inbox_wrapper .ai_content_area .ai_content_btn {
    transition: 0.5s;
    border-radius: 8px;
    padding: 6px 10px;
  }
}
@media all and (max-width: 767px) {
  .inbox_wrapper .ai_content_area .ai_content_btn {
    transition: 0.5s;
    border-radius: 4px;
    padding: 4px 8px;
  }
}
.inbox_wrapper .chat_box_area {
  position: relative;
  padding: 4px;
  border-radius: 8px;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.inbox_wrapper .chat_box_area ::-moz-placeholder {
  color: #7b7d85 !important;
  font-size: 14px !important;
  font-style: normal;
  font-weight: 400;
}
.inbox_wrapper .chat_box_area ::placeholder {
  color: #7b7d85 !important;
  font-size: 14px !important;
  font-style: normal;
  font-weight: 400;
}
.inbox_wrapper .chat_box_header_area {
  padding: 8px;
  border-radius: 6px 6px 0px 0px;
  border-bottom: 1px solid #e1e5e7;
  background: #f0f1f2;
}
@media all and (max-width: 767px) {
  .inbox_wrapper .chat_box_header_area {
    transition: 0.5s;
    gap: 0 !important;
  }
}
.inbox_wrapper .chat_box_header_area .link_btn {
  position: relative;
  top: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.inbox_wrapper .chat_box_header_area .link_btn:hover {
  background-color: rgba(123, 125, 133, 0.4);
}
.inbox_wrapper .chat_box_header_area .link_btn img {
  max-width: 16px;
}
.inbox_wrapper .chat_box_header_area .magic_btn {
  position: relative;
  top: 1px;
  z-index: 1002;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.inbox_wrapper .chat_box_header_area .magic_btn:hover {
  background-color: rgba(123, 125, 133, 0.4);
}
.inbox_wrapper .chat_box_header_area .magic_btn img {
  max-width: 20px;
}
.inbox_wrapper .chat_box_header_area .emoji_btn {
  width: 28px;
}
.inbox_wrapper .chat_box_header_area .emoji_btn img {
  max-width: 16px;
}
.inbox_wrapper .chat_box_header_area .template_btn,
.inbox_wrapper .chat_box_header_area .calender_btn {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
@media all and (max-width: 1299px) {
  .inbox_wrapper .chat_box_header_area .template_btn,
  .inbox_wrapper .chat_box_header_area .calender_btn {
    transition: 0.5s;
    gap: 4px;
  }
}
.inbox_wrapper .chat_box_header_area .template_btn img,
.inbox_wrapper .chat_box_header_area .calender_btn img {
  max-width: 16px;
}
.inbox_wrapper .chat_box_header_area .template_btn span,
.inbox_wrapper .chat_box_header_area .calender_btn span {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
}
@media all and (min-width: 1500px) {
  .inbox_wrapper .chat_box_header_area .template_btn span,
  .inbox_wrapper .chat_box_header_area .calender_btn span {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
  }
  .inbox_wrapper .chat_box_header_area .template_btn span span,
  .inbox_wrapper .chat_box_header_area .calender_btn span span {
    font-size: 14px;
    margin-left: 5px;
  }
}
.inbox_wrapper .chat_box_header_area .template_btn:hover,
.inbox_wrapper .chat_box_header_area .calender_btn:hover {
  opacity: 0.8;
}
.inbox_wrapper .chat_box_header_area .template_btn {
  margin: 0 10px;
}
@media all and (max-width: 767px) {
  .inbox_wrapper .chat_box_header_area .template_btn {
    transition: 0.5s;
    margin: 0 5px;
  }
}
.inbox_wrapper .msg_input {
  padding: 8px 12px;
  color: #0b1234;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  border: none;
  margin-bottom: 55px;
  width: 100%;
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
  overflow: auto;
}
.inbox_wrapper .msg_input::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.inbox_wrapper .msg_input::-webkit-scrollbar-track {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 5px;
}
.inbox_wrapper .msg_input::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 5px;
}
.inbox_wrapper .msg_input::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}
@media all and (max-width: 767px) {
  .inbox_wrapper .msg_input {
    transition: 0.5s;
    margin-bottom: 28px;
  }
}
.inbox_wrapper .msg_input:focus {
  border: none !important;
  outline: none !important;
}
.inbox_wrapper .send_btn {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #235de4;
}
@media all and (max-width: 767px) {
  .inbox_wrapper .send_btn {
    transition: 0.5s;
    right: 10px;
    bottom: 10px;
  }
}
.inbox_wrapper .send_btn img {
  max-width: 17px;
}
.inbox_wrapper .send_btn:hover {
  opacity: 0.9;
}
.inbox_wrapper .emojionearea,
.inbox_wrapper .emojionearea.form-control {
  position: static !important;
}
.inbox_wrapper .emojionearea {
  max-height: 65px;
  box-shadow: none !important;
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.inbox_wrapper .emojionearea::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.inbox_wrapper .emojionearea::-webkit-scrollbar-track {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 5px;
}
.inbox_wrapper .emojionearea::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 5px;
}
.inbox_wrapper .emojionearea::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}
.inbox_wrapper .emojionearea.focused {
  box-shadow: none;
}
.inbox_wrapper .emojionearea .emojionearea-editor {
  padding: 0;
}
.inbox_wrapper .emojionearea .emojionearea-button {
  top: 14px;
  left: 47px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}
.inbox_wrapper .emojionearea .emojionearea-button:hover {
  opacity: 0.9;
}
@media all and (max-width: 767px) {
  .inbox_wrapper .emojionearea .emojionearea-button {
    transition: 0.5s;
    left: 41px;
  }
}
.inbox_wrapper .emojionearea .emojionearea-button img {
  max-width: 16px;
}
.inbox_wrapper .emojionearea .emojionearea-search input {
  border: 1px solid #eaeaee !important;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.inbox_wrapper .contact_info_warapper {
  height: 100%;
}
@media all and (max-width: 1280px) {
  .inbox_wrapper .contact_info_warapper {
    transition: 0.5s;
    position: fixed;
    right: -100%;
    top: 0;
    z-index: 505;
    width: 331px;
    height: calc(var(--vh, 1vh) * 100);
    background-color: white;
    opacity: 0;
    visibility: hidden;
  }
  .inbox_wrapper .contact_info_warapper.contact_active {
    right: 0;
    opacity: 1;
    visibility: visible;
  }
}
.inbox_wrapper .contact_info_area {
  position: relative;
  margin-right: 10px;
  height: 100%;
}
.inbox_wrapper .contact_info_area::after {
  content: "";
  position: absolute;
  top: -24px;
  left: 0;
  width: 1px;
  height: calc(100% + 24px);
  background-color: #eaeaee;
}
.inbox_wrapper .contact_header_area {
  padding: 10px 0px 30px 24px;
  border-bottom: 1px solid #eaeaee;
}
@media all and (max-width: 1199px) {
  .inbox_wrapper .contact_header_area {
    transition: 0.5s;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.inbox_wrapper .contact_header_area h3 {
  color: #1d2939;
  font-family: SFSemiBoldFont;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
.inbox_wrapper .info_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.inbox_wrapper .info_btn:hover {
  background-color: rgba(123, 125, 133, 0.4);
}
.inbox_wrapper .info_btn img {
  max-width: 20px;
}
.inbox_wrapper .user_name_area {
  text-align: center;
  margin: 16px 0;
}
.inbox_wrapper .user_name_area .user_right_img {
  width: 57px;
  height: 57px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .inbox_wrapper .user_name_area .user_right_img {
    transition: 0.5s;
    width: 50px;
    height: 50px;
  }
}
@media all and (max-width: 767px) {
  .inbox_wrapper .user_name_area .user_right_img {
    transition: 0.5s;
    width: 40px;
    height: 40px;
  }
}
.inbox_wrapper .user_name_area h4 {
  color: #1d2939;
  font-family: SFMediumFont;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  margin-top: 8px;
}
.inbox_wrapper .user_action_btn_list {
  gap: 8px;
  margin-top: 16px;
}
.inbox_wrapper .user_action_btn_list button,
.inbox_wrapper .user_action_btn_list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 4px;
  border-radius: 8px;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.inbox_wrapper .user_action_btn_list button img,
.inbox_wrapper .user_action_btn_list a img {
  max-width: 18px;
}
.inbox_wrapper .user_action_btn_list button:hover,
.inbox_wrapper .user_action_btn_list a:hover {
  background-color: #e1e5e7;
}
.inbox_wrapper .about_area {
  padding: 0px 24px;
  margin-top: 32px;
}
@media all and (max-width: 1199px) {
  .inbox_wrapper .about_area {
    transition: 0.5s;
    margin-top: 0;
  }
}
.inbox_wrapper .about_area h3 {
  color: #0b1234;
  font-family: SFSemiBoldFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.inbox_wrapper .about_area .edit_btn:hover {
  opacity: 0.8;
}
.inbox_wrapper .about_area .edit_btn img {
  max-width: 13px;
}
.inbox_wrapper .about_area .edit_btn span {
  color: #7b7d85;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.inbox_wrapper .about_number_area {
  margin-top: 24px;
  max-height: calc(var(--vh, 1vh) * 100 - 280px);
  padding-bottom: 20px;
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.inbox_wrapper .about_number_area::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.inbox_wrapper .about_number_area::-webkit-scrollbar-track {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 5px;
}
.inbox_wrapper .about_number_area::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 5px;
}
.inbox_wrapper .about_number_area::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}
@media all and (min-width: 992px) {
  .inbox_wrapper .about_number_area {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    max-height: calc(var(--vh, 1vh) * 100 - 300px);
  }
}
.inbox_wrapper .note_list_area {
  margin: 12px 0;
}
.inbox_wrapper .note_list_area p {
  color: #7b7d85;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  margin-top: 6px;
}
.inbox_wrapper .note_user_grid {
  display: grid;
  grid-template-columns: minmax(0, 24px) minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}
.inbox_wrapper .note_user_grid .user_image {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #eaeaee;
}
.inbox_wrapper .note_user_grid .name_times_area {
  gap: 4px 12px;
}
.inbox_wrapper .note_user_grid h4 {
  color: #0a1b33;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}
.inbox_wrapper .note_user_grid h5 {
  color: #7b7d85;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}
.inbox_wrapper .note_action_btn {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 15px;
}
.inbox_wrapper .note_action_btn a,
.inbox_wrapper .note_action_btn button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 23px;
  border-radius: 40px;
  background: #edeff5;
}
.inbox_wrapper .note_action_btn a:hover,
.inbox_wrapper .note_action_btn button:hover {
  opacity: 0.8;
}
.inbox_wrapper .note_area {
  margin-top: 24px;
}
.inbox_wrapper .note_area h3 {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 4px;
}
.inbox_wrapper .note_area .note_form {
  border-radius: 8px;
  padding: 12px;
  border: 1px solid #eaeaee;
}
.inbox_wrapper .note_area .note_form .emojionearea-button {
  top: auto;
  bottom: 10px;
  left: 63px;
}
.inbox_wrapper .note_area .note_input {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  border: none;
}
.inbox_wrapper .note_area .note_input:focus {
  border: none !important;
  outline: none !important;
}
.inbox_wrapper .note_action_grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr)) minmax(0, 20px);
  align-items: center;
  gap: 10px;
  width: 100%;
}
.inbox_wrapper .note_action_area {
  gap: 12px;
}
.inbox_wrapper .note_action_area button,
.inbox_wrapper .note_action_area a,
.inbox_wrapper .note_action_area .file_upload {
  cursor: pointer;
}
.inbox_wrapper .note_action_area button:hover,
.inbox_wrapper .note_action_area a:hover,
.inbox_wrapper .note_action_area .file_upload:hover {
  opacity: 0.8;
}
.inbox_wrapper .note_action_area button img,
.inbox_wrapper .note_action_area a img,
.inbox_wrapper .note_action_area .file_upload img {
  max-width: 16px;
}
.inbox_wrapper .note_submit_btn:hover {
  opacity: 0.8;
}
.inbox_wrapper .user_number_area {
  padding: 16px 24px 10px 24px;
  margin-top: 16px;
  border-top: 1px solid #eaeaee;
}
.inbox_wrapper .user_number_area h4 {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 4px;
}
.inbox_wrapper .user_number_area .number_grid {
  display: grid;
  grid-template-columns: minmax(0, 16px) repeat(1, minmax(0, 1fr));
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 10px 12px;
  width: 100%;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.inbox_wrapper .user_number_area .number_grid:hover {
  background-color: #eaeaee;
}
.inbox_wrapper .user_number_area .number_grid span {
  color: #0b1234;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.folder_modal .modal-dialog {
  max-width: 670px;
}
.folder_modal .folder_area {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #eaeaee;
  background: #fff;
}
@media all and (max-width: 767px) {
  .folder_modal .folder_area {
    transition: 0.5s;
    padding: 12px;
  }
}
.folder_modal .folder_area h4 {
  color: #7b7d85;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.12px;
  text-transform: uppercase;
  margin-top: 16px;
}
@media all and (max-width: 767px) {
  .folder_modal .folder_area h4 {
    transition: 0.5s;
    margin-top: 12px;
  }
}
.folder_modal .folder_list_area {
  max-height: 165px;
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.folder_modal .folder_list_area::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.folder_modal .folder_list_area::-webkit-scrollbar-track {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 5px;
}
.folder_modal .folder_list_area::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 5px;
}
.folder_modal .folder_list_area::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}
@media all and (min-width: 768px) {
  .folder_modal .folder_list_area .form-check {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    padding-left: 32px;
  }
}
.folder_modal .folder_list_area .form-check-input {
  border: none;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
@media all and (min-width: 768px) {
  .folder_modal .folder_list_area .form-check-input {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    width: 20px;
    height: 20px;
    margin-left: -32px;
  }
}
.folder_modal .folder_list_area .form-check-label {
  position: relative;
  top: 3px;
  color: #0b1234;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  cursor: pointer;
}
.folder_modal .folder_list_area .form-check-label:hover {
  opacity: 0.8;
}
.folder_modal .folder_list_item {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr)) minmax(0, 60px);
  align-items: center;
  gap: 12px;
  padding-right: 10px;
  margin-top: 16px;
  margin-left: 2px;
}
@media all and (max-width: 767px) {
  .folder_modal .folder_list_item {
    transition: 0.5s;
    margin-top: 12px;
  }
}
@media all and (min-width: 992px) {
  .folder_modal .folder_list_item:hover {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
  }
  .folder_modal .folder_list_item:hover .edit_folder_btn {
    width: 28px;
    opacity: 1;
    visibility: visible;
  }
}
.folder_modal .edit_folder_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.folder_modal .edit_folder_btn:hover {
  background-color: rgba(123, 125, 133, 0.4);
}
@media all and (min-width: 992px) {
  .folder_modal .edit_folder_btn {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    width: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
  }
}
.folder_modal .edit_folder_btn img {
  max-width: 16px;
}
.folder_modal .folder_create_btn {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  margin-left: 10px;
}
.folder_modal .folder_create_btn img {
  max-width: 16px;
}
.folder_modal .folder_create_btn span {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.folder_modal .folder_create_btn:hover {
  opacity: 0.8;
}
.folder_modal .input_row {
  margin-top: 12px;
}
.folder_modal .input_row label {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 8px;
}
.folder_modal .input_arae {
  position: relative;
  border-radius: 8px;
  width: 100%;
  height: 40px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.folder_modal .input_arae ::-moz-placeholder {
  color: #696f8c;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.folder_modal .input_arae ::placeholder {
  color: #696f8c;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.folder_modal .input_arae .input_field {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  color: #0b1234;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  padding-left: 38px;
  padding-right: 12px;
}
.folder_modal .input_arae .input_field:focus {
  border: none !important;
  outline: none !important;
}
@media all and (max-width: 767px) {
  .folder_modal .input_arae .input_field {
    transition: 0.5s;
    font-size: 14px;
  }
}
.folder_modal .input_arae .folder_icon {
  position: absolute;
  top: 10px;
  left: 12px;
}
.folder_modal .input_arae .folder_icon img {
  max-width: 17px;
}
.folder_modal .input_arae .folder_icon:hover {
  opacity: 0.8;
}

.manage_contact_wrapper .contact_header_area {
  padding-bottom: 16px;
  position: relative;
}
.manage_contact_wrapper .contact_header_area::after {
  content: "";
  position: absolute;
  left: -32px;
  bottom: 0;
  width: calc(100% + 64px);
  height: 1px;
  background-color: #eaeaee;
}
@media all and (max-width: 767px) {
  .manage_contact_wrapper .contact_header_area {
    transition: 0.5s;
    padding-bottom: 12px;
  }
}
.manage_contact_wrapper .import_btn span {
  font-size: 14px;
}
@media all and (max-width: 767px) {
  .manage_contact_wrapper .import_btn span {
    transition: 0.5s;
    font-size: 12px;
  }
}
.manage_contact_wrapper .contact_grid {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) repeat(1, minmax(0, 1fr));
  align-items: start;
  gap: 20px 12px;
  height: calc(var(--vh, 1vh) * 100 - 80px);
  padding-left: 1px;
  overflow: hidden;
}
@media all and (min-width: 1400px) {
  .manage_contact_wrapper .contact_grid {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    grid-template-columns: minmax(0, 370px) repeat(1, minmax(0, 1fr));
  }
}
@media all and (max-width: 767px) {
  .manage_contact_wrapper .contact_grid {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    height: auto;
    min-height: calc(var(--vh, 1vh) * 100 - 80px);
    overflow: visible;
  }
}
.manage_contact_wrapper .contact_grid h4 {
  color: #0b1234;
  font-family: SFSemiBoldFont;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
.manage_contact_wrapper .contact_list_wrapper {
  border-right: 1px solid #eaeaee;
}
@media all and (max-width: 767px) {
  .manage_contact_wrapper .contact_list_wrapper {
    transition: 0.5s;
    position: fixed;
    top: 0;
    left: -100%;
    width: 310px;
    height: calc(var(--vh, 1vh) * 100);
    opacity: 0;
    visibility: hidden;
    z-index: 505;
    padding-left: 16px;
    background-color: white;
    overflow-y: auto;
    /* width */
    /* Track */
    /* Handle */
    /* Handle on hover */
  }
  .manage_contact_wrapper .contact_list_wrapper::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  .manage_contact_wrapper .contact_list_wrapper::-webkit-scrollbar-track {
    background: rgba(153, 153, 153, 0.2);
    border-radius: 5px;
  }
  .manage_contact_wrapper .contact_list_wrapper::-webkit-scrollbar-thumb {
    background: #999999;
    border-radius: 5px;
  }
  .manage_contact_wrapper .contact_list_wrapper::-webkit-scrollbar-thumb:hover {
    background: #f84f4f;
    cursor: grab;
  }
  .manage_contact_wrapper .contact_list_wrapper.contact_list_active {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
}
.manage_contact_wrapper .contact_list_wrapper .search_input_form {
  margin-top: 12px;
}
.manage_contact_wrapper .list_header_area {
  position: relative;
  margin-top: 16px;
  padding: 0px 24px 16px 0;
  position: relative;
}
.manage_contact_wrapper .list_header_area::after {
  content: "";
  position: absolute;
  left: -32px;
  bottom: 0;
  width: calc(100% + 32px);
  height: 1px;
  background-color: #eaeaee;
}
.manage_contact_wrapper .create_template_btn {
  padding: 8px 12px;
}
.manage_contact_wrapper .create_template_btn span {
  font-size: 14px;
}
@media all and (max-width: 1199px) {
  .manage_contact_wrapper .create_template_btn {
    transition: 0.5s;
    padding: 5px 7px;
  }
}
.manage_contact_wrapper .list_area {
  margin-top: 16px;
  padding-right: 16px;
}
.manage_contact_wrapper .list_area ul {
  height: calc(var(--vh, 1vh) * 100 - 220px);
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.manage_contact_wrapper .list_area ul::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.manage_contact_wrapper .list_area ul::-webkit-scrollbar-track {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 5px;
}
.manage_contact_wrapper .list_area ul::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 5px;
}
.manage_contact_wrapper .list_area ul::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}
@media all and (max-width: 767px) {
  .manage_contact_wrapper .list_area ul {
    transition: 0.5s;
    height: calc(var(--vh, 1vh) * 100 - 140px);
  }
}
.manage_contact_wrapper .list_area li h4 {
  font-family: SFRegularFont;
  color: #7b7d85;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.12px;
  text-transform: uppercase;
}
.manage_contact_wrapper .list_area .dropdown-menu {
  height: auto;
}
.manage_contact_wrapper .list_area .list_btn {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr)) minmax(0, 140px);
  align-items: center;
  gap: 20px 12px;
  padding: 8px 12px;
  border-radius: 8px;
  margin-top: 8px;
}
.manage_contact_wrapper .list_area .list_btn:hover {
  background-color: #e7eaeb;
}
.manage_contact_wrapper .list_area .list_btn.active_list {
  background-color: #edeef2;
}
.manage_contact_wrapper .list_area .list_title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.manage_contact_wrapper .list_area .list_title,
.manage_contact_wrapper .list_area .user_number_area span {
  color: #353636;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.manage_contact_wrapper .list_area .user_number_area {
  gap: 4px;
}
.manage_contact_wrapper .list_area .user_number_area img {
  max-width: 20px;
}
.manage_contact_wrapper .list_area .dot_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.manage_contact_wrapper .list_area .dot_icon:hover {
  background-color: rgba(123, 125, 133, 0.4);
}
.manage_contact_wrapper .table_dropdown_area .dropdown-item {
  grid-template-columns: minmax(0, 16px) repeat(1, minmax(0, 1fr));
}
.manage_contact_wrapper .list_action_area {
  gap: 12px;
}
@media all and (max-width: 1199px) {
  .manage_contact_wrapper .list_action_area {
    transition: 0.5s;
    gap: 6px;
  }
}
@media all and (max-width: 991px) {
  .manage_contact_wrapper .list_action_details_area {
    transition: 0.5s;
    gap: 10px 7px;
  }
}
@media all and (max-width: 767px) {
  .manage_contact_wrapper .list_action_details_area {
    transition: 0.5s;
    grid-column: span 2;
  }
}
@media all and (max-width: 1199px) {
  .manage_contact_wrapper .icon_btn {
    transition: 0.5s;
    width: 30px;
    height: 30px;
  }
  .manage_contact_wrapper .icon_btn img {
    max-width: 16px;
  }
}
.manage_contact_wrapper .table_dropdown_area .dropdown-menu {
  min-width: 245px;
}
.manage_contact_wrapper .details_header_area .table_dropdown_area .dropdown-menu {
  min-width: 216px;
}
.manage_contact_wrapper .bar_btn {
  display: none;
}
@media all and (max-width: 767px) {
  .manage_contact_wrapper .bar_btn {
    transition: 0.5s;
    display: flex;
  }
}
.manage_contact_wrapper .details_header_form_area {
  margin: 16px 0;
  padding: 0 10px;
}
.manage_contact_wrapper .details_header_form_area .search_input_form {
  margin-top: 16px;
}
.manage_contact_wrapper .details_table_header_area {
  padding: 0 12px;
}
.manage_contact_wrapper .details_table_header_area .form-check-label {
  position: relative;
  top: 2px;
  left: 4px;
  color: #0b1234;
  font-family: SFSemiBoldFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  cursor: pointer;
}
@media all and (max-width: 767px) {
  .manage_contact_wrapper .details_table_header_area .form-check-label {
    transition: 0.5s;
    font-size: 14px;
  }
}
.manage_contact_wrapper .details_list_area {
  margin-top: 23px;
}
@media all and (min-width: 768px) {
  .manage_contact_wrapper .details_list_area {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    height: calc(var(--vh, 1vh) * 100 - 265px);
    overflow-y: auto;
    /* width */
    /* Track */
    /* Handle */
    /* Handle on hover */
  }
  .manage_contact_wrapper .details_list_area::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  .manage_contact_wrapper .details_list_area::-webkit-scrollbar-track {
    background: rgba(153, 153, 153, 0.2);
    border-radius: 5px;
  }
  .manage_contact_wrapper .details_list_area::-webkit-scrollbar-thumb {
    background: #999999;
    border-radius: 5px;
  }
  .manage_contact_wrapper .details_list_area::-webkit-scrollbar-thumb:hover {
    background: #f84f4f;
    cursor: grab;
  }
}
.manage_contact_wrapper.show_pagination .pagination_area {
  display: grid;
}
@media all and (min-width: 768px) {
  .manage_contact_wrapper.show_pagination .details_list_area {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    height: calc(var(--vh, 1vh) * 100 - 330px);
  }
}
.manage_contact_wrapper .deatils_list_grid {
  display: grid;
  grid-template-columns: minmax(0, 20px) minmax(0, 1fr) minmax(0, 0.6fr);
  align-items: center;
  gap: 12px;
  padding: 16px 12px;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid #eaeaee;
  background: white;
}
@media all and (max-width: 767px) {
  .manage_contact_wrapper .deatils_list_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 20px) minmax(0, 1fr);
  }
}
@media all and (max-width: 991px) {
  .manage_contact_wrapper .deatils_list_grid {
    transition: 0.5s;
    padding: 12px 10px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
  }
}
.manage_contact_wrapper .deatils_list_grid .dropdown-menu {
  min-width: 221px;
}
.manage_contact_wrapper .form-check-input {
  cursor: pointer;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
  border: none !important;
  border-color: transparent !important;
}
.manage_contact_wrapper .form-check-input:focus {
  border: none !important;
  border-color: transparent !important;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1) !important;
}
.manage_contact_wrapper .pagination_area {
  display: none;
}
@media (min-width: 768px) and (max-width: 1299px) {
  .manage_contact_wrapper .pagination_area {
    transition: 0.5s;
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 1fr);
  }
}
@media all and (max-width: 767px) {
  .manage_contact_wrapper .pagination_area {
    transition: 0.5s;
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .manage_contact_wrapper .pagination_area .number_list {
    transition: 0.5s;
    justify-content: end !important;
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .manage_contact_wrapper .pagination_area .pagination_action_list {
    transition: 0.5s;
    display: none !important;
  }
}
.manage_contact_wrapper .pagination_area .list {
  top: auto;
  bottom: 100%;
}

.user_details_modal .modal-dialog {
  max-width: 553px;
}
.user_details_modal .user_info_contact_area {
  margin-top: 24px;
}
.user_details_modal .user_info_grid {
  margin-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eaeaee;
}
@media all and (max-width: 767px) {
  .user_details_modal .user_info_grid {
    transition: 0.5s;
    margin-top: 12px;
    padding-bottom: 12px;
  }
}

.news_list_modal .modal-dialog {
  max-width: 553px;
}

.contact_import_modal .file_upload_area {
  height: 226px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact_import_modal .file_upload_area {
    transition: 0.5s;
    height: 180px;
  }
}
@media all and (max-width: 767px) {
  .contact_import_modal .file_upload_area {
    transition: 0.5s;
    height: 140px;
  }
}

.my_account_wrapper .user_change_image_area {
  max-width: 110px;
  max-height: 110px;
  margin-top: 18px;
  margin-bottom: 20px;
}
@media all and (max-width: 767px) {
  .my_account_wrapper .user_change_image_area {
    transition: 0.5s;
    margin-top: 12px;
    margin-bottom: 12px;
  }
}
@media all and (min-width: 1200px) {
  .my_account_wrapper .user_change_image_area:hover {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
  }
  .my_account_wrapper .user_change_image_area:hover .remove_img_btn {
    top: 2px;
    right: -16px;
    opacity: 1;
    visibility: visible;
  }
  .my_account_wrapper .user_change_image_area:hover label {
    top: 0;
    opacity: 1;
    visibility: visible;
  }
}
.my_account_wrapper .user_change_image_area label {
  color: #1a1d1f;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 4px;
  cursor: pointer;
  background: #efefef;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
@media all and (min-width: 1200px) {
  .my_account_wrapper .user_change_image_area label {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    position: relative;
    top: -10px;
    opacity: 0;
    visibility: hidden;
  }
}
.my_account_wrapper .user_change_image_area label:hover {
  opacity: 0.8;
}
.my_account_wrapper .user_img_area {
  position: relative;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-left: 12px;
  cursor: pointer;
  background-color: #b4f3d1;
}
@media all and (max-width: 991px) {
  .my_account_wrapper .user_img_area {
    transition: 0.5s;
    width: 50px;
    height: 50px;
  }
}
.my_account_wrapper .user_img_area .user_img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.my_account_wrapper .remove_img_btn {
  position: absolute;
  top: 2px;
  right: -16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #efefef;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
@media all and (min-width: 1200px) {
  .my_account_wrapper .remove_img_btn {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    right: -20px;
    opacity: 0;
    visibility: hidden;
  }
}
@media all and (max-width: 767px) {
  .my_account_wrapper .remove_img_btn {
    transition: 0.5s;
    width: 24px;
    height: 24px;
  }
}
.my_account_wrapper .remove_img_btn img {
  max-width: 12px;
}
.my_account_wrapper .remove_img_btn:hover {
  opacity: 0.8;
}
.my_account_wrapper .event_form_area .input_row {
  margin-bottom: 20px;
}
@media all and (max-width: 767px) {
  .my_account_wrapper .event_form_area .input_row {
    transition: 0.5s;
    margin-bottom: 12px;
  }
}
.my_account_wrapper .event_form_area .two_grid {
  gap: 0 20px;
}
.my_account_wrapper .event_form_area .file_upload_area {
  height: 165px;
}
.my_account_wrapper .voice_mail_type {
  margin-top: 12px;
}
@media all and (max-width: 767px) {
  .my_account_wrapper .voice_mail_type {
    transition: 0.5s;
    margin-top: 8px;
  }
}

.delete_account_wrapper h4 {
  color: #151523;
  font-family: SFMediumFont;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}
@media all and (max-width: 767px) {
  .delete_account_wrapper h4 {
    transition: 0.5s;
    font-size: 18px;
  }
}
.delete_account_wrapper p {
  color: #7b7d85;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-top: 6px;
}
.delete_account_wrapper .delete_btn {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.16px;
  padding: 8px 12px;
  border-radius: 8px;
  margin-top: 20px;
  background: linear-gradient(180deg, #ff5d79 0%, #e82749 100%);
  box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 1px 2px 0px rgba(182, 8, 39, 0.4), 0px 0px 0px 1px #b60827;
}
@media all and (max-width: 767px) {
  .delete_account_wrapper .delete_btn {
    transition: 0.5s;
    font-size: 14px;
  }
}
.delete_account_wrapper .delete_btn:hover {
  opacity: 0.8;
}

.change_password_wrapper h5 {
  color: #7b7d85;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-top: 8px;
}
@media all and (max-width: 767px) {
  .change_password_wrapper h5 {
    transition: 0.5s;
    margin-top: 4px;
  }
}
.change_password_wrapper .event_form_area {
  margin-top: 18px;
}

.sub_account_wrapper.account_border {
  max-width: 876px;
}
.sub_account_wrapper .pagination_area {
  padding-top: 10px;
  border-top: 1px solid #eaecf0;
}

.sub_account_modal .modal-dialog {
  max-width: 831px;
}

.logs_account_wrapper {
  max-width: 100% !important;
}
@media all and (max-width: 767px) {
  .logs_account_wrapper .account_right_area {
    transition: 0.5s;
    grid-template-columns: 1fr;
  }
}
.logs_account_wrapper .table_dropdown_area .dropdown-menu {
  width: 311px;
}

.dcl_regisgtration_wrapper.account_border {
  max-width: 876px;
  padding: 24px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .dcl_regisgtration_wrapper.account_border {
    transition: 0.5s;
    padding: 20px;
  }
}
@media all and (max-width: 767px) {
  .dcl_regisgtration_wrapper.account_border {
    transition: 0.5s;
    padding: 16px;
  }
}
.dcl_regisgtration_wrapper .alert_message_area {
  margin-top: 16px;
}
.dcl_regisgtration_wrapper .nav-pills {
  position: relative;
  gap: 8px 16px;
}
.dcl_regisgtration_wrapper .nav-pills::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #eaeaee;
}
.dcl_regisgtration_wrapper .nav-pills .nav-link {
  position: relative;
  color: #7b7d85;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  padding: 6px 0;
}
.dcl_regisgtration_wrapper .nav-pills .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  width: 100%;
  height: 2px;
}
@media all and (max-width: 767px) {
  .dcl_regisgtration_wrapper .nav-pills .nav-link {
    transition: 0.5s;
    font-size: 14px;
  }
}
.dcl_regisgtration_wrapper .nav-pills .nav-link:hover {
  color: rgba(123, 125, 133, 0.8);
}
.dcl_regisgtration_wrapper .nav-pills .nav-link.active {
  color: #235de4;
  background-color: transparent;
}
.dcl_regisgtration_wrapper .nav-pills .nav-link.active::after {
  background-color: #235de4;
}
.dcl_regisgtration_wrapper .tab-content {
  margin-top: 16px;
}
.dcl_regisgtration_wrapper h4 {
  color: #151523;
  font-family: SFSemiBoldFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
@media all and (max-width: 767px) {
  .dcl_regisgtration_wrapper h4 {
    transition: 0.5s;
    font-size: 14px;
    line-height: 22px;
  }
}
.dcl_regisgtration_wrapper .register_area p {
  color: #353636;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-top: 6px;
}
@media all and (max-width: 767px) {
  .dcl_regisgtration_wrapper .register_area p {
    transition: 0.5s;
    font-size: 12px;
    line-height: 18px;
  }
}
.dcl_regisgtration_wrapper .register_group {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #eaeaee;
}
@media all and (max-width: 767px) {
  .dcl_regisgtration_wrapper .register_group {
    transition: 0.5s;
    margin-top: 10px;
    padding-top: 10px;
  }
}
.dcl_regisgtration_wrapper .register_group h4 {
  margin-bottom: 16px;
}
.dcl_regisgtration_wrapper .event_form_area .content_attributes_grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.dcl_regisgtration_wrapper .event_form_area .content_attributes_grid h5 {
  color: #353636;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}
.dcl_regisgtration_wrapper .event_form_area .check_area {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-wrap: wrap;
  gap: 8px;
}
.dcl_regisgtration_wrapper .event_form_area .check_area .form-check {
  display: grid;
  grid-template-columns: minmax(0, 18px) repeat(1, minmax(0, 1fr));
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 8px;
  border: 1px solid #eaeaee;
  background: #fff;
}
@media all and (min-width: 768px) {
  .dcl_regisgtration_wrapper .event_form_area .check_area .form-check {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    min-width: 77px;
  }
}
.dcl_regisgtration_wrapper .event_form_area .check_area .form-check-input {
  cursor: pointer;
  float: none;
  margin: 0;
  width: 18px;
  height: 18px;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
.dcl_regisgtration_wrapper .event_form_area .check_area .form-check-label {
  color: #353636;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 0;
}

.get_number_wrapper {
  max-width: 100%;
}
.get_number_wrapper .number_status_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 12px 20px;
}
@media all and (max-width: 767px) {
  .get_number_wrapper .number_status_grid {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.get_number_wrapper .number_status_grid .status_item {
  display: grid;
  grid-template-columns: minmax(0, 30px) repeat(1, minmax(0, 1fr));
  gap: 10px 16px;
  min-height: 108px;
  padding: 20px 20px 20px 24px;
  border-radius: 12px;
  background: #eceeff;
}
.get_number_wrapper .number_status_grid .status_item.unregistered_item {
  background: #f6f1ff;
}
.get_number_wrapper .number_status_grid .status_item.total_covered_item {
  background: #e5f9fe;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .get_number_wrapper .number_status_grid .status_item {
    transition: 0.5s;
    grid-template-columns: minmax(0, 24px) repeat(1, minmax(0, 1fr));
    gap: 10px 14px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .get_number_wrapper .number_status_grid .status_item {
    transition: 0.5s;
    grid-template-columns: minmax(0, 20px) repeat(1, minmax(0, 1fr));
    gap: 10px 12px;
    padding: 20px 20px;
    border-radius: 10px;
  }
}
@media all and (max-width: 767px) {
  .get_number_wrapper .number_status_grid .status_item {
    transition: 0.5s;
    grid-template-columns: minmax(0, 16px) repeat(1, minmax(0, 1fr));
    gap: 10px;
    padding: 20px 16px;
    border-radius: 6px;
  }
}
.get_number_wrapper .number_status_grid .status_item p {
  color: #101438;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media all and (max-width: 991px) {
  .get_number_wrapper .number_status_grid .status_item p {
    transition: 0.5s;
    font-size: 14px;
  }
}
.get_number_wrapper .number_status_grid .status_item .number {
  color: #101438;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 4px;
}
@media all and (max-width: 991px) {
  .get_number_wrapper .number_status_grid .status_item .number {
    transition: 0.5s;
    font-size: 20px;
  }
}
.get_number_wrapper .number_buy_area {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: 20px 12px;
  margin-top: 12px;
}
@media all and (max-width: 767px) {
  .get_number_wrapper .number_buy_area {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.get_number_wrapper .event_form_area {
  border-radius: 8px;
  padding: 16px;
  max-width: 361px;
  width: 100%;
  border: 1px solid #eaeaee;
}
@media all and (max-width: 767px) {
  .get_number_wrapper .event_form_area {
    transition: 0.5s;
    padding: 12px;
  }
}
.get_number_wrapper .buy_action_grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  align-items: start;
  gap: 12px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .get_number_wrapper .buy_action_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  }
}
@media all and (max-width: 767px) {
  .get_number_wrapper .buy_action_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
.get_number_wrapper .buy_action_grid .input_row {
  margin-bottom: 0;
}
.get_number_wrapper .buy_action_grid .create_template_btn {
  flex-wrap: nowrap;
  padding: 8px 12px;
  height: 40px;
}
.get_number_wrapper .buy_action_grid .create_template_btn span {
  margin-left: 2px;
}
.get_number_wrapper .account_right_area {
  gap: 12px;
}
@media all and (max-width: 767px) {
  .get_number_wrapper .account_right_area {
    transition: 0.5s;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 110px);
  }
}
.get_number_wrapper .account_right_area .search_input_form {
  max-width: 298px;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .get_number_wrapper .account_right_area .search_input_form {
    transition: 0.5s;
    max-width: 200px;
  }
}
@media all and (max-width: 767px) {
  .get_number_wrapper .account_right_area .search_input_form {
    transition: 0.5s;
    max-width: 100%;
  }
}
.get_number_wrapper .account_right_area .niceSelect_area {
  height: 38px;
}
.get_number_wrapper .account_right_area .niceSelect_area .list {
  left: auto;
  right: 0;
}
.get_number_wrapper .table_dropdown_area .icon_btn {
  box-shadow: none;
  border: 1px solid #235de4 !important;
  background-color: #235de4;
}
.get_number_wrapper .table_dropdown_area .icon_btn:hover {
  opacity: 0.9;
}
@media all and (max-width: 767px) {
  .get_number_wrapper .number_btn_area {
    transition: 0.5s;
    justify-content: start !important;
  }
}
.get_number_wrapper .number_filter_area {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  align-items: start;
  gap: 12px 16px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .get_number_wrapper .number_filter_area {
    transition: 0.5s;
    grid-template-columns: 2fr 0.6fr 1fr 1fr 1fr;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .get_number_wrapper .number_filter_area {
    transition: 0.5s;
    grid-template-columns: 2fr 0.5fr 1fr 1fr 1fr;
  }
}
@media all and (max-width: 767px) {
  .get_number_wrapper .number_filter_area {
    transition: 0.5s;
    grid-template-columns: 1fr 1fr;
  }
  .get_number_wrapper .number_filter_area .search_input_form {
    grid-column: span 2;
  }
}
.get_number_wrapper .number_filter_area .niceSelect_area {
  width: 100%;
  border: none;
  height: 40px;
  background-color: white;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}

.confirm_purchase_modal .modal-dialog {
  max-width: 553px;
}
.confirm_purchase_modal .purchase_area {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.confirm_purchase_modal .purchase_area .cart_purchase_icon {
  max-width: 81px;
  max-height: 81px;
}
@media all and (max-width: 767px) {
  .confirm_purchase_modal .purchase_area .cart_purchase_icon {
    transition: 0.5s;
    max-width: 60px;
    max-height: 60px;
  }
}
.confirm_purchase_modal .purchase_area h3 {
  color: #353636;
  text-align: center;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.api_wrapper.account_border {
  max-width: 636px;
}
.api_wrapper .event_form_area {
  margin-top: 18px;
}

@media all and (min-width: 1200px) {
  .settings_wrapper_grid .setting_content_wrapper {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    margin-top: 52px;
  }
}
.settings_wrapper_grid .message_time_area .restrications_grid {
  grid-template-columns: 1fr 0.5fr;
}
@media all and (max-width: 767px) {
  .settings_wrapper_grid .message_time_area .restrications_grid {
    transition: 0.5s;
    grid-template-columns: 1fr;
  }
}
.settings_wrapper_grid .restrications_grid {
  display: grid;
  grid-template-columns: 1fr 0.2fr;
  align-items: center;
  gap: 20px 20px;
  margin-top: 20px;
}
.settings_wrapper_grid .restrications_grid:not(:last-of-type) {
  padding-bottom: 16px;
  border-bottom: 1px solid #eaeaee;
}
.settings_wrapper_grid .restrications_grid .content .title {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media all and (max-width: 767px) {
  .settings_wrapper_grid .restrications_grid .content .title {
    transition: 0.5s;
    font-size: 14px;
  }
}
.settings_wrapper_grid .restrications_grid .content p {
  color: #7b7d85;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 4px;
}
.settings_wrapper_grid .restrications_grid .time {
  color: #0b1234;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media all and (max-width: 767px) {
  .settings_wrapper_grid .restrications_grid .time {
    transition: 0.5s;
    font-size: 14px;
  }
}
.settings_wrapper_grid .restrications_grid .niceSelect_area {
  width: auto !important;
}
.settings_wrapper_grid .restrications_grid .niceSelect_area .list {
  min-width: 100px;
}
.settings_wrapper_grid .message_restraction_area .event_form_area .input_row .input_field {
  text-align: center;
  max-width: 145px;
}

.carrier_lookup_area .nav-pills {
  border-bottom: 1px solid #eaeaee;
}
.carrier_lookup_area .nav-link {
  color: #7b7d85;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  padding: 8px;
  border-radius: 0;
  border-bottom: 1.5px solid transparent !important;
  background-color: transparent !important;
}
.carrier_lookup_area .nav-link.active {
  color: #235de4;
  border-color: #235de4 !important;
}
.carrier_lookup_area .nav-link:hover {
  opacity: 0.8;
}
.carrier_lookup_area .carrier_tab_title {
  color: #151523;
  font-family: SFSemiBoldFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}

.bulk_wrapper .bulk_title_area {
  padding-bottom: 16px;
  border-bottom: 1px solid #eaeaee;
}
@media all and (max-width: 767px) {
  .bulk_wrapper .bulk_title_area {
    transition: 0.5s;
    padding-bottom: 12px;
  }
}
.bulk_wrapper .bulk_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 20px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .bulk_wrapper .bulk_grid {
    transition: 0.5s;
    gap: 16px;
  }
}
@media all and (max-width: 767px) {
  .bulk_wrapper .bulk_grid {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 10px;
  }
}
.bulk_wrapper .bulk_grid .bulk_item {
  display: grid;
  grid-template-columns: minmax(0, 30px) repeat(1, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
  min-height: 110px;
  padding: 20px 20px 20px 24px;
  border-radius: 12px;
  background: #eceeff;
}
.bulk_wrapper .bulk_grid .bulk_item .select_area {
  margin-top: 4px;
}
.bulk_wrapper .bulk_grid .bulk_item .niceSelect {
  width: auto;
  height: 40px;
}
.bulk_wrapper .bulk_grid .bulk_item h3 {
  color: #101438;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.bulk_wrapper .bulk_grid .bulk_item h4 {
  color: #153138;
  font-family: SFSemiBoldFont;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  margin-top: 4px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .bulk_wrapper .bulk_grid .bulk_item h4 {
    transition: 0.5s;
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .bulk_wrapper .bulk_grid .bulk_item h4 {
    transition: 0.5s;
    font-size: 18px;
  }
}
@media all and (max-width: 767px) {
  .bulk_wrapper .bulk_grid .bulk_item h4 {
    transition: 0.5s;
    font-size: 16px;
  }
}
.bulk_wrapper .bulk_grid .bulk_item.send_form_item {
  background: #f6f1ff;
}
.bulk_wrapper .bulk_grid .bulk_item.local_time_item {
  background: #e5f9fe;
}
.bulk_wrapper .message_grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px 24px;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid #eaeaee;
  background: #fff;
  margin-top: 16px;
}
@media all and (max-width: 991px) {
  .bulk_wrapper .message_grid {
    transition: 0.5s;
    padding: 12px;
    grid-template-columns: minmax(0, 1fr);
  }
}
.bulk_wrapper .setup_bulk_area h3 {
  color: #0b1234;
  font-family: SFSemiBoldFont;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .bulk_wrapper .setup_bulk_area h3 {
    transition: 0.5s;
    font-size: 18px;
  }
}
@media all and (max-width: 991px) {
  .bulk_wrapper .setup_bulk_area h3 {
    transition: 0.5s;
    font-size: 14px;
  }
}
.bulk_wrapper .setup_bulk_area .bluk_switch_title {
  color: #0b1234;
  font-family: SFSemiBoldFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
@media all and (max-width: 991px) {
  .bulk_wrapper .setup_bulk_area .bluk_switch_title {
    transition: 0.5s;
    font-size: 14px;
  }
}
.bulk_wrapper .setup_checkbox_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
@media all and (max-width: 767px) {
  .bulk_wrapper .setup_checkbox_grid {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
  }
}
.bulk_wrapper .custom_select_dropdown_area .dropdown-menu {
  width: 100%;
}
.bulk_wrapper .pick_list_area h3 {
  color: #0b1234;
  font-family: SFSemiBoldFont;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .bulk_wrapper .pick_list_area h3 {
    transition: 0.5s;
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .bulk_wrapper .pick_list_area h3 {
    transition: 0.5s;
    font-size: 16px;
  }
}
@media all and (max-width: 767px) {
  .bulk_wrapper .pick_list_area h3 {
    transition: 0.5s;
    font-size: 14px;
  }
}
.bulk_wrapper .group_sms_grid {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1fr);
  align-items: start;
  gap: 20px 32px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .bulk_wrapper .group_sms_grid {
    transition: 0.5s;
    gap: 20px 6px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .bulk_wrapper .group_sms_grid {
    transition: 0.5s;
    gap: 20px;
  }
}
@media all and (max-width: 767px) {
  .bulk_wrapper .group_sms_grid {
    transition: 0.5s;
    gap: 20px 10px;
  }
}
@media all and (max-width: 575px) {
  .bulk_wrapper .group_sms_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 1fr);
  }
}
.bulk_wrapper .group_sms_grid .nav-pills {
  padding: 4px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: #f6f9ff;
}
.bulk_wrapper .group_sms_grid .nav-pills .nav-link {
  color: #353636;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  border-radius: 6px;
  padding: 8px 16px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .bulk_wrapper .group_sms_grid .nav-pills .nav-link {
    transition: 0.5s;
    padding: 4px 6px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .bulk_wrapper .group_sms_grid .nav-pills .nav-link {
    transition: 0.5s;
  }
}
@media all and (max-width: 767px) {
  .bulk_wrapper .group_sms_grid .nav-pills .nav-link {
    transition: 0.5s;
  }
}
.bulk_wrapper .group_sms_grid .nav-pills .nav-link.active {
  background: white;
  box-shadow: 0px 1px 2px 0px rgba(7, 9, 18, 0.16);
}
.bulk_wrapper .sms_mms_contact_area .event_form_area .input_row .textarea_field {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: none;
}
.bulk_wrapper .sms_mms_contact_area .event_form_area .input_row .textarea_field:focus {
  border: none !important;
}
.bulk_wrapper .sms_mms_contact_area .dropdown-menu {
  margin-top: 8px;
}
.bulk_wrapper .split_area {
  padding-top: 16px;
  border-top: 1px solid #eaeaee;
}
.bulk_wrapper .split_area .custom_switch_area {
  align-items: center;
  margin-bottom: 36px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .bulk_wrapper .split_area .custom_switch_area {
    transition: 0.5s;
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .bulk_wrapper .split_area .custom_switch_area {
    transition: 0.5s;
    margin-bottom: 24px;
  }
}
@media all and (max-width: 767px) {
  .bulk_wrapper .split_area .custom_switch_area {
    transition: 0.5s;
    margin-bottom: 20px;
  }
}
.bulk_wrapper .split_area .switch_title span {
  margin-left: 8px;
}
.bulk_wrapper .split_area .switch_title span img {
  max-width: 16px;
  max-height: 16px;
}
.bulk_wrapper .split_area .switch_title span:hover {
  opacity: 0.8;
}
.bulk_wrapper .split_grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  align-items: start;
  gap: 20px 32px;
}
.bulk_wrapper .preview_area {
  padding: 16px;
  border-radius: 8px;
  background: #f5f6f8;
}
@media all and (max-width: 767px) {
  .bulk_wrapper .preview_area {
    transition: 0.5s;
    padding: 12px;
  }
}
.bulk_wrapper .bulk_btn_grid {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
}
.bulk_wrapper .file_upload_area {
  height: 137px;
}
.bulk_wrapper .file_upload_area h5 {
  color: #7b7d85;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.payment_settings_wrapper .inbox_template_table_area {
  margin-top: 24px;
}
.payment_settings_wrapper .payment_filter_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 20px 20px;
  margin-bottom: 33px;
}
@media all and (max-width: 991px) {
  .payment_settings_wrapper .payment_filter_grid {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.payment_settings_wrapper .date_range_input_area {
  border: 1px solid #ddd !important;
  background: #fff;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .payment_settings_wrapper .date_range_input_area {
    transition: 0.5s;
    min-width: 210px;
  }
}
@media all and (min-width: 1200px) {
  .payment_settings_wrapper .date_range_input_area {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    min-width: 236px;
  }
}

.plan_billing_wrapper .current_plan_area {
  margin-top: 22px;
  padding: 26px 29px 47px 29px;
  border-radius: 12px;
  border: 1px solid #eaeaee;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .plan_billing_wrapper .current_plan_area {
    transition: 0.5s;
    padding: 26px 24px 47px 24px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .plan_billing_wrapper .current_plan_area {
    transition: 0.5s;
    padding: 24px 20px 30px 20px;
  }
}
@media all and (max-width: 767px) {
  .plan_billing_wrapper .current_plan_area {
    transition: 0.5s;
    padding: 20px 16px 24px 16px;
  }
}
.plan_billing_wrapper .current_plan_area h3 {
  color: #3b3b3b;
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media all and (max-width: 991px) {
  .plan_billing_wrapper .current_plan_area h3 {
    transition: 0.5s;
    font-family: 18px;
  }
}
.plan_billing_wrapper .price_progress_grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.4fr);
  align-items: start;
  gap: 20px 30px;
  margin-top: 20px;
}
@media all and (max-width: 767px) {
  .plan_billing_wrapper .price_progress_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 1fr);
  }
}
.plan_billing_wrapper .price_area {
  margin-top: 30px;
}
@media all and (max-width: 991px) {
  .plan_billing_wrapper .price_area {
    transition: 0.5s;
    margin-top: 20px;
  }
}
.plan_billing_wrapper .price_area h4 {
  color: #5d5d5d;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 6px;
}
@media all and (max-width: 767px) {
  .plan_billing_wrapper .price_area h4 {
    transition: 0.5s;
    font-size: 14px;
  }
}
.plan_billing_wrapper .price_area h3 {
  color: #1f1f1f;
  font-family: "Inter", sans-serif;
  font-size: 46px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.84px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .plan_billing_wrapper .price_area h3 {
    transition: 0.5s;
    font-size: 36px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .plan_billing_wrapper .price_area h3 {
    transition: 0.5s;
    font-size: 32px;
  }
}
@media all and (max-width: 767px) {
  .plan_billing_wrapper .price_area h3 {
    transition: 0.5s;
    font-size: 28px;
  }
}
.plan_billing_wrapper .price_area h5 {
  color: #a4a4a4;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 10px;
}
@media all and (max-width: 767px) {
  .plan_billing_wrapper .price_area h5 {
    transition: 0.5s;
    font-size: 14px;
  }
}
.plan_billing_wrapper .progress_area h4 {
  color: #3b3b3b;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.plan_billing_wrapper .progress_area h5 {
  color: #b54015;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media all and (max-width: 767px) {
  .plan_billing_wrapper .progress_area h5 {
    transition: 0.5s;
    margin-top: 6px;
  }
}
.plan_billing_wrapper .progress {
  margin-top: 9px;
  height: 11px;
  border-radius: 26px;
  background: #e2e2e2;
}
.plan_billing_wrapper .progress .progress-bar {
  background: #235de4;
}
.plan_billing_wrapper .plan_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 49px;
}
@media all and (min-width: 1600px) {
  .plan_billing_wrapper .plan_grid {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .plan_billing_wrapper .plan_grid {
    transition: 0.5s;
    margin-top: 40px;
  }
}
@media all and (max-width: 991px) {
  .plan_billing_wrapper .plan_grid {
    transition: 0.5s;
    margin-top: 39px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .plan_billing_wrapper .plan_grid {
    transition: 0.5s;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media all and (max-width: 575px) {
  .plan_billing_wrapper .plan_grid {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.plan_billing_wrapper .plan_item {
  padding: 21px 30px;
  border-radius: 16px;
  border: 1px solid #eceeff;
  background: #eceeff;
}
.plan_billing_wrapper .plan_item.sub_account {
  background: #f6f1ff;
}
.plan_billing_wrapper .plan_item.phone_number {
  background: #e5f9fe;
}
.plan_billing_wrapper .plan_item .title_grid {
  display: grid;
  grid-template-columns: minmax(0, 18px) minmax(0, 1fr) minmax(0, 24px);
  align-items: start;
  gap: 20px 8px;
}
.plan_billing_wrapper .plan_item .title_grid h4 {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.plan_billing_wrapper .plan_item h3 {
  color: #1f1f1f;
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.88px;
  margin-top: 20px;
}
@media all and (max-width: 991px) {
  .plan_billing_wrapper .plan_item h3 {
    transition: 0.5s;
    font-size: 18px;
  }
}
.plan_billing_wrapper .payment_grid_area {
  margin-top: 37px;
}
.plan_billing_wrapper .payment_grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 0.5fr) minmax(0, 0.5fr);
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}
@media all and (max-width: 767px) {
  .plan_billing_wrapper .payment_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.6fr);
  }
}
.plan_billing_wrapper .payment_grid h4,
.plan_billing_wrapper .payment_grid h6 {
  color: #3b3b3b;
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media all and (max-width: 1199px) {
  .plan_billing_wrapper .payment_grid h4,
  .plan_billing_wrapper .payment_grid h6 {
    transition: 0.5s;
    font-size: 18px;
  }
}
.plan_billing_wrapper .card_number {
  display: grid;
  grid-template-columns: minmax(0, 38px) repeat(1, minmax(0, 1fr));
  align-items: center;
  gap: 20px 10px;
}
.plan_billing_wrapper .default {
  color: #348c46;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 6px 15px;
  border-radius: 48px;
  border: 1.5px solid #348c46;
  background: #daefde;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .plan_billing_wrapper .default {
    transition: 0.5s;
    font-size: 14px;
    padding: 6px 12px;
  }
}
@media all and (max-width: 767px) {
  .plan_billing_wrapper .default {
    transition: 0.5s;
    font-size: 12px;
    padding: 6px 10px;
  }
}
.plan_billing_wrapper .dot_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.plan_billing_wrapper .dot_icon:hover {
  background-color: #a4a4a4;
}

.credits_usages_area {
  margin-bottom: 16px;
}
.credits_usages_area .nav-pills {
  gap: 10px 2px;
  border-bottom: 1px solid #eaeaee;
}
.credits_usages_area .nav-link {
  color: #7b7d85;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding: 4px 8px;
  border-radius: 0;
  background-color: transparent !important;
  border-bottom: 1px solid transparent !important;
}
.credits_usages_area .nav-link.active {
  color: #235de4;
  border-color: #235de4 !important;
}
.credits_usages_area .credit_outer_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
}
@media all and (max-width: 767px) {
  .credits_usages_area .credit_outer_grid {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.credits_usages_area .credit_uses_item {
  padding: 20px 12px;
  border-radius: 12px;
  border: 1px solid #eaeaee;
  background: #fff;
}
@media (min-width: 768px) and (max-width: 991px) {
  .credits_usages_area .credit_uses_item {
    transition: 0.5s;
    border-radius: 8px;
  }
}
@media all and (max-width: 767px) {
  .credits_usages_area .credit_uses_item {
    transition: 0.5s;
    padding: 16px 10px;
    border-radius: 4px;
  }
}
.credits_usages_area .title_grid {
  display: grid;
  grid-template-columns: minmax(0, 24px) repeat(1, minmax(0, 1fr));
  align-items: center;
  gap: 10px 8px;
}
@media all and (max-width: 767px) {
  .credits_usages_area .title_grid {
    transition: 0.5s;
    grid-template-columns: minmax(0, 20px) repeat(1, minmax(0, 1fr));
  }
}
.credits_usages_area .title_grid p {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}
@media all and (max-width: 767px) {
  .credits_usages_area .title_grid p {
    transition: 0.5s;
    font-size: 16px;
  }
}
.credits_usages_area .credit_inner_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 12px 16px;
  margin-top: 16px;
}
@media all and (max-width: 767px) {
  .credits_usages_area .credit_inner_grid {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.credits_usages_area .credit_inner_grid p {
  color: #7b7d85;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.credits_usages_area .credit_inner_grid .credit_status {
  color: #0b1234;
  font-weight: 500;
  margin-top: 6px;
}
@media all and (max-width: 767px) {
  .credits_usages_area .credit_inner_grid .credit_status {
    transition: 0.5s;
    margin-top: 2px;
  }
}

@media all and (max-width: 767px) {
  .analytics_wrapper .import_btn {
    transition: 0.5s;
    padding: 8px 4px;
  }
}
.analytics_wrapper .nav-pills {
  margin-top: 16px;
}
.analytics_wrapper .nav-pills .nav-link {
  display: flex;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex: 1 0 0;
  border-radius: 8px;
  background: white;
  box-shadow: 0px 1px 2px 0px rgba(11, 18, 52, 0.15), 0px 0px 0px 1px rgba(11, 18, 52, 0.1);
}
@media all and (max-width: 767px) {
  .analytics_wrapper .nav-pills .nav-link {
    transition: 0.5s;
    padding: 8px 6px;
  }
}
.analytics_wrapper .nav-pills .nav-link:hover {
  opacity: 0.8;
}
.analytics_wrapper .nav-pills .nav-link.all_btn .label {
  margin: 0 4px;
}
.analytics_wrapper .nav-pills .nav-link .label {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}
.analytics_wrapper .nav-pills .nav-link .icon {
  flex-basis: 18px;
  margin-right: 2px;
}
.analytics_wrapper .nav-pills .nav-link .icon svg {
  color: #949494;
}
.analytics_wrapper .nav-pills .nav-link .animation_icon {
  animation: orbit 1.5s linear infinite;
  -webkit-animation: orbit 1.5s linear infinite;
}
.analytics_wrapper .nav-pills .nav-link .number {
  color: #471e08;
  text-align: center;
  font-family: SFSemiBoldFont;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  border-radius: 16px;
  padding: 2px 5px;
  background: #e0e0e4;
}
.analytics_wrapper .nav-pills .nav-link .number.schedule {
  background: #ffcdb3;
}
.analytics_wrapper .nav-pills .nav-link .number.complete {
  background: #b6f0b5;
}
.analytics_wrapper .nav-pills .nav-link .number.processing {
  background: #b8d6ff;
}
.analytics_wrapper .nav-pills .nav-link .number.paused {
  background: #fbd5e2;
}
.analytics_wrapper .nav-pills .nav-link .number.fail {
  color: #d8424b;
  background: #ffeaeb;
}
.analytics_wrapper .nav-pills .nav-link.active {
  background-color: #235de4;
}
.analytics_wrapper .nav-pills .nav-link.active .icon svg {
  color: white;
}
.analytics_wrapper .nav-pills .nav-link.active .label {
  color: white;
}
.analytics_wrapper .nav-pills .nav-link.active .number {
  background-color: white;
}
.analytics_wrapper .analytics_breadcrumb {
  margin-top: 40px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .analytics_wrapper .analytics_breadcrumb {
    transition: 0.5s;
    margin-top: 30px;
  }
}
@media all and (max-width: 767px) {
  .analytics_wrapper .analytics_breadcrumb {
    transition: 0.5s;
    margin-top: 20px;
  }
}
.analytics_wrapper .analytics_overview_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 20px;
  margin-top: 30px;
}
@media all and (max-width: 767px) {
  .analytics_wrapper .analytics_overview_grid {
    transition: 0.5s;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.analytics_wrapper .analytics_overview_grid .overview_item {
  padding: 20px 20px 20px 24px;
  border-radius: 12px;
  background: #eceeff;
  display: grid;
  grid-template-columns: minmax(0, 30px) repeat(1, minmax(0, 1fr));
  align-items: start;
  gap: 16px 16px;
}
@media all and (max-width: 1199px) {
  .analytics_wrapper .analytics_overview_grid .overview_item {
    transition: 0.5s;
    padding: 20px 16px 20px 16px;
  }
}
@media all and (max-width: 767px) {
  .analytics_wrapper .analytics_overview_grid .overview_item {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media all and (min-width: 1600px) {
  .analytics_wrapper .analytics_overview_grid .overview_item {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    padding: 30px 20px 30px 24px;
  }
}
.analytics_wrapper .analytics_overview_grid .overview_item.text_icon_item {
  grid-template-columns: minmax(0, 56px) repeat(1, minmax(0, 1fr));
}
@media (min-width: 992px) and (max-width: 1199px) {
  .analytics_wrapper .analytics_overview_grid .overview_item.text_icon_item {
    transition: 0.5s;
    grid-template-columns: minmax(0, 48px) repeat(1, minmax(0, 1fr));
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .analytics_wrapper .analytics_overview_grid .overview_item.text_icon_item {
    transition: 0.5s;
    grid-template-columns: minmax(0, 40px) repeat(1, minmax(0, 1fr));
  }
}
@media all and (max-width: 767px) {
  .analytics_wrapper .analytics_overview_grid .overview_item.text_icon_item {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.analytics_wrapper .analytics_overview_grid .overview_item.text_icon_item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #353636;
  font-family: SFBoldFont;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  width: 100%;
  height: 56px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: #ffbab6;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .analytics_wrapper .analytics_overview_grid .overview_item.text_icon_item .icon {
    transition: 0.5s;
    height: 48px;
  }
}
@media all and (max-width: 991px) {
  .analytics_wrapper .analytics_overview_grid .overview_item.text_icon_item .icon {
    transition: 0.5s;
    font-size: 20px;
    height: 40px;
  }
}
@media all and (max-width: 767px) {
  .analytics_wrapper .analytics_overview_grid .overview_item.text_icon_item .icon {
    transition: 0.5s;
    width: 40px;
    height: 40px;
  }
}
.analytics_wrapper .analytics_overview_grid .overview_item h4 {
  color: #101438;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media all and (max-width: 991px) {
  .analytics_wrapper .analytics_overview_grid .overview_item h4 {
    transition: 0.5s;
    font-size: 14px;
  }
}
.analytics_wrapper .analytics_overview_grid .overview_item h3 {
  color: #2e1a53;
  font-family: SFSemiBoldFont;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  margin-top: 6px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .analytics_wrapper .analytics_overview_grid .overview_item h3 {
    transition: 0.5s;
    font-size: 22px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .analytics_wrapper .analytics_overview_grid .overview_item h3 {
    transition: 0.5s;
    font-size: 20px;
  }
}
@media all and (max-width: 767px) {
  .analytics_wrapper .analytics_overview_grid .overview_item h3 {
    transition: 0.5s;
    font-size: 18px;
  }
}
.analytics_wrapper .performance_overview_area {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}
@media all and (max-width: 991px) {
  .analytics_wrapper .performance_overview_area {
    transition: 0.5s;
    margin-top: 30px;
  }
}
@media all and (max-width: 767px) {
  .analytics_wrapper .performance_overview_area {
    transition: 0.5s;
    grid-template-columns: minmax(0, 1fr);
  }
}
.analytics_wrapper .performance_overview_area h4 {
  color: #000;
  font-family: SFBoldFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}
.analytics_wrapper .search_input_form {
  max-width: 220px;
}
@media all and (max-width: 767px) {
  .analytics_wrapper .search_input_form {
    transition: 0.5s;
    max-width: inherit;
    margin-top: 0;
  }
}
.analytics_wrapper .date_range_input_area {
  min-width: 200px;
}
@media all and (max-width: 767px) {
  .analytics_wrapper .date_range_input_area {
    transition: 0.5s;
    min-width: auto;
    width: 100%;
  }
}
.analytics_wrapper .date_range_input_area {
  border: 1px solid #ddd !important;
  background: #fff;
}
.analytics_wrapper .search_date_area {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-wrap: wrap;
  gap: 16px;
}
@media all and (max-width: 767px) {
  .analytics_wrapper .search_date_area {
    transition: 0.5s;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 20px 16px;
  }
}
.analytics_wrapper .inbox_template_table_area .action_area {
  min-width: 130px;
}

.preview_sidebar_wrapper {
  position: fixed;
  top: 0;
  right: -50%;
  z-index: 1002;
  max-width: 560px;
  width: 90%;
  height: 100vh;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  background: white;
}
.preview_sidebar_wrapper::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.preview_sidebar_wrapper::-webkit-scrollbar-track {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 5px;
}
.preview_sidebar_wrapper::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 5px;
}
.preview_sidebar_wrapper::-webkit-scrollbar-thumb:hover {
  background: #f84f4f;
  cursor: grab;
}
@media all and (max-width: 767px) {
  .preview_sidebar_wrapper {
    transition: 0.5s;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
  }
}
.preview_sidebar_wrapper.active {
  right: 0;
  opacity: 1;
  visibility: visible;
}
.preview_sidebar_wrapper .preview_header {
  padding: 20px 22px;
  border-radius: 16px 16px 0px 0px;
  background: #f4f4f4;
}
@media all and (max-width: 767px) {
  .preview_sidebar_wrapper .preview_header {
    transition: 0.5s;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
  }
}
.preview_sidebar_wrapper .preview_header h3 {
  color: #101438;
  font-family: SFBoldFont;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}
@media all and (max-width: 991px) {
  .preview_sidebar_wrapper .preview_header h3 {
    transition: 0.5s;
    font-size: 18px;
  }
}
.preview_sidebar_wrapper .preview_header .close_icon:hover {
  opacity: 0.8;
}
.preview_sidebar_wrapper .preview_body_area {
  padding: 16px 24px;
}
.preview_sidebar_wrapper .preview_body_area .fail {
  display: flex;
  padding: 4px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #d8424b;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  border-radius: 8px;
  border: 1px solid #d8424b;
  background: #ffeaeb;
}
.preview_sidebar_wrapper .preview_body_area h5 {
  color: #b7b7b7;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.preview_sidebar_wrapper .preview_body_area h5 span {
  color: #1d2939;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}
@media all and (max-width: 991px) {
  .preview_sidebar_wrapper .preview_body_area h5 span {
    transition: 0.5s;
    font-size: 14px;
  }
}

@keyframes orbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.refer_content_area .page_subtitle {
  color: #7b7d85;
}
.refer_content_area .tier_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 22px;
}
@media all and (max-width: 767px) {
  .refer_content_area .tier_grid {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.refer_content_area .tier_item {
  text-align: center;
  padding: 20px;
  border-radius: 16px;
  border: 1.5px solid #ededed;
  background: #fff;
}
.refer_content_area .tier_item.tier_2 {
  border: 1.5px solid #e5f9ff;
  background: #f1fcff;
}
.refer_content_area .tier_item.tier_3 {
  border-radius: 16px;
  border: 1.5px solid #eee4fd;
  background: #f9f5ff;
}
@media all and (max-width: 991px) {
  .refer_content_area .tier_item {
    transition: 0.5s;
    padding: 20px 16px;
    border-radius: 12px;
  }
}
.refer_content_area .tier_item p {
  line-height: normal;
}
.refer_content_area .tier_item .icon img {
  max-height: 70px;
}
.refer_content_area .tier_item .content {
  margin-top: 16px;
}
.refer_content_area .tier_item .content .label {
  color: #000;
  text-align: center;
  font-family: SFSemiBoldFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.refer_content_area .refer_status_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 19px;
}
@media all and (max-width: 767px) {
  .refer_content_area .refer_status_grid {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.refer_content_area .status_item {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 24px;
  border-radius: 16px;
  background: #f3f7ff;
}
@media all and (max-width: 991px) {
  .refer_content_area .status_item {
    transition: 0.5s;
    padding: 20px 16px;
    border-radius: 12px;
  }
}
.refer_content_area .status_item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px !important;
  height: 60px;
  padding: 4px;
  border-radius: 16px;
  background: #e7eeff;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .refer_content_area .status_item .icon {
    transition: 0.5s;
    border-radius: 12px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .refer_content_area .status_item .icon {
    transition: 0.5s;
    border-radius: 8px;
    width: 50px !important;
    height: 50px;
  }
}
@media all and (max-width: 767px) {
  .refer_content_area .status_item .icon {
    transition: 0.5s;
    border-radius: 4px;
    width: 45px !important;
    height: 45px;
  }
}
.refer_content_area .status_item .icon img {
  max-width: 28px;
}
@media all and (max-width: 991px) {
  .refer_content_area .status_item .icon img {
    transition: 0.5s;
    max-width: 24px;
  }
}
.refer_content_area .status_item .commission_sub_title {
  color: #000;
}
@media all and (max-width: 991px) {
  .refer_content_area .status_item .dashboard_title {
    transition: 0.5s;
    font-size: 28px;
  }
}
.refer_content_area .status_item .create_template_btn {
  background-color: white;
}
@media all and (min-width: 1200px) {
  .refer_content_area .status_item .create_template_btn {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    padding-left: 24px;
    padding-right: 24px;
  }
}

.refer_withdraw_content_area .withdraw_grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 20px;
}
@media all and (max-width: 767px) {
  .refer_withdraw_content_area .withdraw_grid {
    transition: 0.5s;
    grid-template-columns: 1fr;
  }
}
.refer_withdraw_content_area .status_area {
  padding: 20px 24px;
  border-radius: 16px;
  border: 1.5px solid #e8e8e8;
  background: #fff;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .refer_withdraw_content_area .status_area {
    transition: 0.5s;
    border-radius: 14px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .refer_withdraw_content_area .status_area {
    transition: 0.5s;
    padding: 20px 20px;
    border-radius: 12px;
  }
}
@media all and (max-width: 767px) {
  .refer_withdraw_content_area .status_area {
    transition: 0.5s;
    padding: 20px 16px;
    border-radius: 8px;
  }
}
.refer_withdraw_content_area .status_title {
  color: #151523;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20.8px;
  margin-bottom: 16px;
}
.refer_withdraw_content_area .used_price {
  color: #235de4;
  font-family: SFSemiBoldFont;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .refer_withdraw_content_area .used_price {
    transition: 0.5s;
    font-size: 20px;
  }
}
@media all and (max-width: 991px) {
  .refer_withdraw_content_area .used_price {
    transition: 0.5s;
    font-size: 18px;
  }
}
.refer_withdraw_content_area .total_price {
  color: #151523;
  font-family: SFSemiBoldFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .refer_withdraw_content_area .total_price {
    transition: 0.5s;
    font-size: 14px;
  }
}
@media all and (max-width: 991px) {
  .refer_withdraw_content_area .total_price {
    transition: 0.5s;
    font-size: 12px;
  }
}
.refer_withdraw_content_area .progress {
  height: 12px;
  border-radius: 12px;
  background: #e4ecff;
}
@media all and (max-width: 991px) {
  .refer_withdraw_content_area .progress {
    transition: 0.5s;
    border-radius: 8px;
  }
}
.refer_withdraw_content_area .progress .progress-bar {
  border-radius: 12px;
  background-color: #235de4;
}
@media all and (max-width: 991px) {
  .refer_withdraw_content_area .progress .progress-bar {
    transition: 0.5s;
    border-radius: 8px;
  }
}
.refer_withdraw_content_area .previous_payout {
  color: #353636;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
.refer_withdraw_content_area .previous_payout a,
.refer_withdraw_content_area .previous_payout button {
  color: #235de4;
}
.refer_withdraw_content_area .previous_payout a:hover,
.refer_withdraw_content_area .previous_payout button:hover {
  opacity: 0.8;
}
.refer_withdraw_content_area .payment_title {
  color: #7b7d85;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 12px;
}
@media all and (max-width: 991px) {
  .refer_withdraw_content_area .payment_title {
    transition: 0.5s;
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.refer_withdraw_content_area .refer_link_area .refer_input_grid {
  grid-template-columns: 1fr auto;
}
.refer_withdraw_content_area .payout_method_area .form-check {
  padding: 0;
}
.refer_withdraw_content_area .payout_method_area .form-check-input {
  display: none;
}
.refer_withdraw_content_area .payout_method_area .form-check-input:checked ~ .form-check-label {
  background: #235de4;
}
.refer_withdraw_content_area .payout_method_area .form-check-input:checked ~ .form-check-label:hover {
  opacity: 1;
}
.refer_withdraw_content_area .payout_method_area .form-check-input:checked ~ .form-check-label span,
.refer_withdraw_content_area .payout_method_area .form-check-input:checked ~ .form-check-label svg {
  color: white;
}
.refer_withdraw_content_area .payout_method_area .form-check-label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #ddd;
  background: #fff;
}
.refer_withdraw_content_area .payout_method_area .form-check-label:hover {
  opacity: 0.8;
}
.refer_withdraw_content_area .payout_method_area .form-check-label span {
  color: #3b3b3b;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.refer_withdraw_content_area .status_info_area {
  gap: 15px;
}
.refer_withdraw_content_area .status_info_item {
  display: grid;
  grid-template-columns: auto repeat(1, minmax(0, 1fr));
  align-items: center;
  gap: 20px 16px;
  padding: 20px 24px;
  border-radius: 16px;
  border: 1.5px solid #e8e8e8;
  min-height: 108px;
  background: #fff;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .refer_withdraw_content_area .status_info_item {
    transition: 0.5s;
    border-radius: 14px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .refer_withdraw_content_area .status_info_item {
    transition: 0.5s;
    padding: 20px 20px;
    border-radius: 12px;
    min-height: 104px;
  }
}
@media all and (max-width: 767px) {
  .refer_withdraw_content_area .status_info_item {
    transition: 0.5s;
    padding: 20px 16px;
    border-radius: 8px;
    min-height: auto;
  }
}
.refer_withdraw_content_area .status_info_item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f5f8ff;
}
.refer_withdraw_content_area .status_info_item .icon img {
  max-width: 20px;
}
.refer_withdraw_content_area .status_info_item .status_price {
  color: #353636;
  font-family: SFMediumFont;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
}
@media all and (max-width: 991px) {
  .refer_withdraw_content_area .status_info_item .status_price {
    transition: 0.5s;
    font-size: 18px;
  }
}
.refer_withdraw_content_area .status_info_item .title {
  color: #7b7d85;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
@media all and (max-width: 991px) {
  .refer_withdraw_content_area .status_info_item .title {
    transition: 0.5s;
    font-size: 14px;
  }
}

.nft_wrapper {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}
.nft_wrapper .hero_area img {
  min-height: 243px;
  max-height: 300px;
  width: 100%;
}
.nft_wrapper .content_area {
  position: relative;
  z-index: 2;
  margin-top: -60px;
  padding: 0 24px 20px 24px;
}
.nft_wrapper .user_img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(to right, #ffd849, #7b30f3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nft_wrapper .user_img > img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  background: #ededed;
}
.nft_wrapper .user_info {
  margin-top: 20px;
}
.nft_wrapper .user_info h3 {
  color: #000;
  font-family: SFBoldFont;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 33.8px;
}
.nft_wrapper .user_info p {
  color: #666;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 10px;
  margin-bottom: 14px;
}
.nft_wrapper .icon_grid {
  margin-top: 6px;
}
.nft_wrapper .action_btn_area {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 10px 12px;
  margin-top: 24px;
}
.nft_wrapper .action_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 26px;
  border-radius: 12px;
  background: #265fe4;
}
.nft_wrapper .action_btn span {
  color: #fff;
  text-align: center;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.nft_wrapper .action_btn.message {
  background: #1c5b9e;
}
.nft_wrapper .action_btn.email {
  background: #4d55ee;
}
.nft_wrapper .action_btn.outline {
  border: 1px solid #265fe4 !important;
  background: #dce6fe;
}
.nft_wrapper .action_btn.outline span {
  color: #265fe4;
}
.nft_wrapper .action_btn:hover {
  opacity: 0.8;
}
.nft_wrapper .social_list {
  justify-content: center;
  gap: 10px 14px;
  margin-top: 20px;
}
@media all and (max-width: 374px) {
  .nft_wrapper .social_list {
    transition: 0.5s;
    gap: 10px 12px;
  }
}
.nft_wrapper .social_list a,
.nft_wrapper .social_list button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(to right, #ffd849, #7b30f3);
  overflow: hidden;
}
@media all and (max-width: 374px) {
  .nft_wrapper .social_list a,
  .nft_wrapper .social_list button {
    transition: 0.5s;
    width: 34px;
    height: 34px;
  }
}
.nft_wrapper .social_list a span,
.nft_wrapper .social_list button span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 50%;
  background-color: #ededed;
}
.nft_wrapper .about_area {
  margin-top: 24px;
}
.nft_wrapper .about_area h6 {
  color: #666;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.nft_wrapper .about_area p {
  color: #1b1a19;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  margin-top: 16px;
}
.nft_wrapper .footer_area {
  margin-top: 24px;
}
.nft_wrapper .footer_area .action_btn {
  padding: 12px 26px;
}

.qr_scan_modal_area .modal-content {
  max-width: 278px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 16px;
  border: none;
  background: #fff;
}
.qr_scan_modal_area .modal-body {
  padding: 6px 11px;
}

.launchpad_wrapper .content_area {
  padding: 0 40px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .launchpad_wrapper .content_area {
    transition: 0.5s;
    padding: 0 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .launchpad_wrapper .content_area {
    transition: 0.5s;
    padding: 0 20px;
  }
}
@media all and (max-width: 767px) {
  .launchpad_wrapper .content_area {
    transition: 0.5s;
    padding: 0;
  }
}
.launchpad_wrapper .checklist_area {
  border-radius: 12px;
  border: 1px solid #eaeaee;
  margin-top: 40px;
  padding: 20px 24px 28px 24px;
  background: #fff;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .launchpad_wrapper .checklist_area {
    transition: 0.5s;
    border-radius: 10px;
    padding: 20px 16px 24px 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .launchpad_wrapper .checklist_area {
    transition: 0.5s;
    border-radius: 8px;
    padding: 20px 14px 24px 14px;
  }
}
@media all and (max-width: 767px) {
  .launchpad_wrapper .checklist_area {
    transition: 0.5s;
    border-radius: 6px;
    padding: 20px 14px 20px 14px;
    margin-top: 30px;
  }
}
.launchpad_wrapper .progress_grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px 20px;
  margin-bottom: 30px;
}
@media all and (max-width: 991px) {
  .launchpad_wrapper .progress_grid {
    transition: 0.5s;
    margin-bottom: 20px;
  }
}
.launchpad_wrapper .progress_grid .progress {
  height: 16px;
  background: #e1eaff;
}
.launchpad_wrapper .progress_grid .progress .progress-bar {
  background-color: #235de4;
}
.launchpad_wrapper .progress_grid .progress,
.launchpad_wrapper .progress_grid .progress-bar {
  border-radius: 16px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .launchpad_wrapper .progress_grid .progress,
  .launchpad_wrapper .progress_grid .progress-bar {
    transition: 0.5s;
    border-radius: 12px;
  }
}
@media all and (max-width: 991px) {
  .launchpad_wrapper .progress_grid .progress,
  .launchpad_wrapper .progress_grid .progress-bar {
    transition: 0.5s;
    border-radius: 8px;
  }
}
.launchpad_wrapper .progress_grid p {
  color: #235de4;
  text-align: right;
  font-family: SFMediumFont;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .launchpad_wrapper .progress_grid p {
    transition: 0.5s;
    font-size: 16px;
  }
}
@media all and (max-width: 991px) {
  .launchpad_wrapper .progress_grid p {
    transition: 0.5s;
    font-size: 14px;
  }
}
.launchpad_wrapper .checklist_item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 46px) 1fr;
  align-items: start;
  gap: 20px 36px;
}
.launchpad_wrapper .checklist_item:not(:last-child) {
  padding-bottom: 52px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .launchpad_wrapper .checklist_item:not(:last-child) {
    transition: 0.5s;
    padding-bottom: 46px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .launchpad_wrapper .checklist_item:not(:last-child) {
    transition: 0.5s;
    padding-bottom: 40px;
  }
}
@media all and (max-width: 767px) {
  .launchpad_wrapper .checklist_item:not(:last-child) {
    transition: 0.5s;
    padding-bottom: 30px;
  }
}
.launchpad_wrapper .checklist_item:not(:last-child)::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 23px;
  width: 1px;
  height: 100%;
  background: #e9e8ed;
}
@media all and (max-width: 991px) {
  .launchpad_wrapper .checklist_item:not(:last-child)::before {
    transition: 0.5s;
    left: 20px;
  }
}
.launchpad_wrapper .checklist_item.completed::before {
  background-color: #235de4;
}
.launchpad_wrapper .checklist_item.completed .number {
  background-color: #235de4;
}
.launchpad_wrapper .checklist_item.completed .number span {
  display: none;
}
.launchpad_wrapper .checklist_item.completed .number img {
  display: block;
}
.launchpad_wrapper .checklist_item.completed .import_btn {
  background-color: #17a56f;
}
.launchpad_wrapper .checklist_item.completed .import_btn .arrow_icon {
  display: none;
}
.launchpad_wrapper .checklist_item.completed .import_btn .check_icon {
  display: block;
}
@media all and (max-width: 991px) {
  .launchpad_wrapper .checklist_item {
    transition: 0.5s;
    grid-template-columns: minmax(0, 40px) 1fr;
    gap: 20px 16px;
  }
}
.launchpad_wrapper .checklist_item .number {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 46px;
  border-radius: 50%;
  background-color: #e9e8ed;
}
@media all and (max-width: 991px) {
  .launchpad_wrapper .checklist_item .number {
    transition: 0.5s;
    height: 40px;
  }
}
.launchpad_wrapper .checklist_item .number span {
  color: #0b1234;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media all and (max-width: 991px) {
  .launchpad_wrapper .checklist_item .number span {
    transition: 0.5s;
    font-size: 14px;
  }
}
.launchpad_wrapper .checklist_item .number img {
  display: none;
}
.launchpad_wrapper .checklist_item .content {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px 16px;
}
@media all and (max-width: 767px) {
  .launchpad_wrapper .checklist_item .content {
    transition: 0.5s;
    grid-template-columns: 1fr;
  }
}
.launchpad_wrapper .checklist_item .check_title {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .launchpad_wrapper .checklist_item .check_title {
    transition: 0.5s;
    font-size: 16px;
  }
}
@media all and (max-width: 991px) {
  .launchpad_wrapper .checklist_item .check_title {
    transition: 0.5s;
    font-size: 14px;
  }
}
.launchpad_wrapper .checklist_item p {
  color: #7b7d85;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.launchpad_wrapper .checklist_item p:not(:first-child) {
  margin-top: 8px;
}
@media all and (max-width: 991px) {
  .launchpad_wrapper .checklist_item p:not(:first-child) {
    transition: 0.5s;
    margin-top: 4px;
  }
}
@media all and (max-width: 991px) {
  .launchpad_wrapper .checklist_item p {
    transition: 0.5s;
    font-size: 12px;
  }
}
.launchpad_wrapper .checklist_item .import_btn {
  gap: 8px;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .launchpad_wrapper .checklist_item .import_btn {
    transition: 0.5s;
    padding-top: 6px;
    padding-bottom: 6px;
  }
}
.launchpad_wrapper .checklist_item .import_btn .check_icon {
  display: none;
}

.group_queue_wrapper .template_filter_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 10px 30px;
}
@media all and (max-width: 991px) {
  .group_queue_wrapper .template_filter_grid {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media all and (max-width: 767px) {
  .group_queue_wrapper .template_filter_grid .search_input_form {
    transition: 0.5s;
    margin-top: 0;
    width: 50%;
  }
}
.group_queue_wrapper .filter_btn_area .table_dropdown_area .dropdown-menu {
  min-width: 290px;
}

.edit_queue_modal .modal-dialog {
  max-width: 703px;
}

.batch_queue_wrapper .batch_details_table_area {
  padding: 16px;
  margin-top: 16px;
  border-radius: 8px;
  border: 1px solid #eaeaee;
}
@media all and (max-width: 767px) {
  .batch_queue_wrapper .batch_details_table_area {
    transition: 0.5s;
    padding: 12px;
  }
}
.batch_queue_wrapper .batch_details_btn:hover {
  opacity: 0.8;
}
.batch_queue_wrapper .batch_details_btn span {
  color: #0b1234;
  font-family: SFSemiBoldFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.batch_queue_wrapper .batch_details_btn img {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.batch_queue_wrapper .batch_active .arrow_icon {
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
}
.batch_queue_wrapper .details_table_area {
  display: none;
  margin-top: 12px;
  margin-bottom: 24px;
}

.notification_page_wrapper .notification_list_wrapper {
  position: relative;
  top: 0;
  left: 0;
  width: auto;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
}
.notification_page_wrapper .notifciation_list {
  max-height: none;
}
.notification_page_wrapper .notifciation_list li {
  padding: 4px;
  background-color: transparent !important;
}
@media all and (max-width: 767px) {
  .notification_page_wrapper .notifciation_list li {
    transition: 0.5s;
    grid-template-columns: minmax(0, 40px) minmax(0, 1fr);
    align-items: start;
    gap: 12px;
  }
}
.notification_page_wrapper .action_area {
  gap: 10px;
}
@media all and (max-width: 767px) {
  .notification_page_wrapper .action_area {
    transition: 0.5s;
    grid-column: span 2;
  }
}
@media all and (max-width: 991px) {
  .notification_page_wrapper .action_btn_list,
  .notification_page_wrapper .dot {
    transition: 0.5s;
    opacity: 1;
    visibility: visible;
  }
}

@media all and (max-width: 767px) {
  .claims_section_wrapper .template_filter_area {
    transition: 0.5s;
    justify-content: end;
  }
}
@media all and (max-width: 767px) {
  .claims_section_wrapper .template_filter_area .filter_btn_area {
    transition: 0.5s;
    order: 1;
  }
}
@media all and (max-width: 767px) {
  .claims_section_wrapper .template_filter_area .import_btn {
    transition: 0.5s;
    padding: 8px 8px;
  }
  .claims_section_wrapper .template_filter_area .import_btn img {
    max-width: 16px;
  }
}
@media all and (max-width: 767px) {
  .claims_section_wrapper .template_filter_area .search_input_form {
    transition: 0.5s;
    order: 2;
    max-width: none;
    width: 100%;
  }
}

/* Price Section */
.pricing_wrapper {
  margin-top: 0px;
}
.pricing_wrapper .pricing_title {
  font-size: 34px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pricing_wrapper .pricing_title {
    transition: 0.5s;
    font-size: 30;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .pricing_wrapper .pricing_title {
    transition: 0.5s;
    font-size: 24;
  }
}
@media all and (max-width: 767px) {
  .pricing_wrapper .pricing_title {
    transition: 0.5s;
    font-size: 20;
  }
}
.pricing_wrapper .pricing_grid {
  margin-top: 40px;
}
@media all and (max-width: 1199px) {
  .pricing_wrapper .pricing_grid {
    transition: 0.5s;
    gap: 30px 20px;
  }
}
.pricing_wrapper.inclusive_pricing_wrapper {
  margin-top: 80px;
}

/* Success Page */
.success_page {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px 16px;
  text-align: center;
  min-height: calc(var(--vh, 1vh) * 100 - 96px);
}
@media all and (max-width: 767px) {
  .success_page {
    transition: 0.5s;
    min-height: calc(var(--vh, 1vh) * 100 - 86px);
  }
}
.success_page .success_image {
  max-width: 100px;
}
.success_page h1 {
  font-family: SFSemiBoldFont;
  font-size: 36px;
  font-weight: 600;
  color: #54ac2b;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .success_page h1 {
    transition: 0.5s;
    font-size: 34px;
  }
}
@media all and (max-width: 991px) {
  .success_page h1 {
    transition: 0.5s;
    font-size: 28px;
  }
}
.success_page p {
  font-family: SFMediumFont;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
}
@media (min-width: 768px) and (max-width: 991px) {
  .success_page p {
    transition: 0.5s;
    font-size: 16px;
  }
}
@media all and (max-width: 767px) {
  .success_page p {
    transition: 0.5s;
    font-size: 14px;
  }
}
.success_page h4 {
  font-size: 18px;
  font-weight: 400;
  margin-top: 20px;
}
@media all and (max-width: 767px) {
  .success_page h4 {
    transition: 0.5s;
    font-size: 16px;
  }
}
.success_page h4 span {
  color: #e82749;
}

/* Plan and Billng Section */
.plan_price_wrapper .pricing_grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px 27px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .plan_price_wrapper .pricing_grid {
    transition: 0.5s;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .plan_price_wrapper .pricing_grid {
    transition: 0.5s;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 20px;
  }
}
@media all and (max-width: 767px) {
  .plan_price_wrapper .pricing_grid {
    transition: 0.5s;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.plan_price_wrapper .pricing_grid .pricing_item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  text-align: start;
  padding: 24px;
  border-radius: 16px;
  border: 1.5px solid #eee;
  background: #fff;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.07);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.plan_price_wrapper .pricing_grid .pricing_item.features_item {
  background: #265fe4;
}
.plan_price_wrapper .pricing_grid .pricing_item.features_item .package_title,
.plan_price_wrapper .pricing_grid .pricing_item.features_item p,
.plan_price_wrapper .pricing_grid .pricing_item.features_item .price,
.plan_price_wrapper .pricing_grid .pricing_item.features_item .price span,
.plan_price_wrapper .pricing_grid .pricing_item.features_item .price .price_label,
.plan_price_wrapper .pricing_grid .pricing_item.features_item .free_trail,
.plan_price_wrapper .pricing_grid .pricing_item.features_item .free_trail span,
.plan_price_wrapper .pricing_grid .pricing_item.features_item .heading,
.plan_price_wrapper .pricing_grid .pricing_item.features_item .features_list .features_name,
.plan_price_wrapper .pricing_grid .pricing_item.features_item .price_footer p,
.plan_price_wrapper .pricing_grid .pricing_item.features_item .credit_usage_btn {
  color: white;
}
.plan_price_wrapper .pricing_grid .pricing_item.features_item .pricing_area::after {
  background: #4e7eee;
}
.plan_price_wrapper .pricing_grid .pricing_item.features_item .price_choose_btn:hover {
  opacity: 0.8;
  background: white;
}
.plan_price_wrapper .pricing_grid .pricing_item.enterprise_item {
  overflow: hidden;
}
.plan_price_wrapper .pricing_grid .pricing_item.enterprise_item .pricing_area .package_title,
.plan_price_wrapper .pricing_grid .pricing_item.enterprise_item .pricing_area p,
.plan_price_wrapper .pricing_grid .pricing_item.enterprise_item .pricing_area a,
.plan_price_wrapper .pricing_grid .pricing_item.enterprise_item .pricing_area .price {
  position: relative;
  z-index: 1;
}
.plan_price_wrapper .pricing_grid .pricing_item.enterprise_item .pricing_area::before {
  content: "";
  position: absolute;
  top: -24px;
  left: -24px;
  width: calc(100% + 48px);
  height: calc(100% + 48px);
  background: linear-gradient(0deg, #feffff 0%, #dde5f9 100%);
}
.plan_price_wrapper .pricing_grid .pricing_item.enterprise_item .price_choose_btn {
  background: #265fe4;
}
.plan_price_wrapper .pricing_grid .pricing_item.enterprise_item .price_choose_btn span {
  color: white;
}
.plan_price_wrapper .pricing_grid .pricing_item.enterprise_item .price_choose_btn:hover {
  background: rgba(38, 95, 228, 0.8980392157);
}
.plan_price_wrapper .pricing_grid .pricing_item:hover {
  transform: translateY(-10px);
}
@media all and (max-width: 991px) {
  .plan_price_wrapper .pricing_grid .pricing_item {
    transition: 0.5s;
    border-radius: 12px;
    padding: 24px 16px;
  }
}
.plan_price_wrapper .pricing_grid .pricing_item .pricing_area {
  position: relative;
  padding-bottom: 24px;
}
.plan_price_wrapper .pricing_grid .pricing_item .pricing_area::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -24px;
  width: calc(100% + 48px);
  height: 1.5px;
  background-color: #e9e7ec;
}
@media all and (max-width: 991px) {
  .plan_price_wrapper .pricing_grid .pricing_item .pricing_area::after {
    transition: 0.5s;
    left: -16px;
    width: calc(100% + 32px);
  }
}
.plan_price_wrapper .pricing_grid .pricing_item p {
  color: #666;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.28px;
}
.plan_price_wrapper .pricing_grid .pricing_item .price {
  color: #000;
  font-family: SFSemiBoldFont;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .plan_price_wrapper .pricing_grid .pricing_item .price {
    transition: 0.5s;
    font-size: 22px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .plan_price_wrapper .pricing_grid .pricing_item .price {
    transition: 0.5s;
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .plan_price_wrapper .pricing_grid .pricing_item .price {
    transition: 0.5s;
    font-size: 18px;
  }
}
@media all and (max-width: 767px) {
  .plan_price_wrapper .pricing_grid .pricing_item .price {
    transition: 0.5s;
    font-size: 16px;
  }
}
.plan_price_wrapper .pricing_grid .pricing_item .price span {
  color: #000;
  font-family: SFBoldFont;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .plan_price_wrapper .pricing_grid .pricing_item .price span {
    transition: 0.5s;
    font-size: 42px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .plan_price_wrapper .pricing_grid .pricing_item .price span {
    transition: 0.5s;
    font-size: 36px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .plan_price_wrapper .pricing_grid .pricing_item .price span {
    transition: 0.5s;
    font-size: 32px;
  }
}
@media all and (max-width: 767px) {
  .plan_price_wrapper .pricing_grid .pricing_item .price span {
    transition: 0.5s;
    font-size: 28px;
  }
}
.plan_price_wrapper .pricing_grid .pricing_item .price .price_label {
  color: #666;
  font-family: SFMediumFont;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media all and (max-width: 767px) {
  .plan_price_wrapper .pricing_grid .pricing_item .price .price_label {
    transition: 0.5s;
    font-size: 14px;
  }
}
.plan_price_wrapper .pricing_grid .pricing_item .free_trail {
  display: block;
  text-align: center;
  color: #666;
  font-family: SFMediumFont;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 12px;
}
.plan_price_wrapper .pricing_grid .pricing_item .free_trail span {
  color: #235de4;
}
@media all and (max-width: 991px) {
  .plan_price_wrapper .pricing_grid .pricing_item .free_trail {
    transition: 0.5s;
    margin-top: 8px;
  }
}
.plan_price_wrapper .pricing_grid .pricing_item .free_trail:hover {
  opacity: 0.8;
}
.plan_price_wrapper .pricing_grid .pricing_item .credit_usage_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  color: #265fe4;
  text-align: center;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
  letter-spacing: -0.28px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.plan_price_wrapper .pricing_grid .pricing_item .credit_usage_btn:hover {
  opacity: 0.8;
}
.plan_price_wrapper .pricing_grid .package_label {
  position: absolute;
  top: -16px;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
  padding: 5px 12px;
  border-radius: 14px;
  border: 1px solid #265fe4;
  max-width: 100%;
  min-width: 140px;
  background: #fff;
}
.plan_price_wrapper .pricing_grid .package_label.byong_package_label {
  min-width: 180px;
}
.plan_price_wrapper .pricing_grid .package_label span {
  color: #265fe4;
  text-align: right;
  font-family: SFSemiBoldFont;
  font-size: 13.258px;
  font-style: normal;
  font-weight: 600;
}
.plan_price_wrapper .pricing_grid .list_area {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 40px;
}
.plan_price_wrapper .pricing_grid .heading {
  color: #000;
  font-family: SFMediumFont;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .plan_price_wrapper .pricing_grid .heading {
    transition: 0.5s;
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .plan_price_wrapper .pricing_grid .heading {
    transition: 0.5s;
    font-size: 16px;
  }
}
@media all and (max-width: 767px) {
  .plan_price_wrapper .pricing_grid .heading {
    transition: 0.5s;
    font-size: 14px;
  }
}
.plan_price_wrapper .pricing_grid .features_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .plan_price_wrapper .pricing_grid .features_list {
    transition: 0.5s;
    gap: 12px;
  }
}
@media all and (max-width: 767px) {
  .plan_price_wrapper .pricing_grid .features_list {
    transition: 0.5s;
    gap: 8px;
  }
}
.plan_price_wrapper .pricing_grid .features_list li {
  display: grid;
  grid-template-columns: minmax(0, 24px) repeat(1, minmax(0, 1fr));
  align-items: center;
  gap: 20px 14px;
}
@media all and (max-width: 991px) {
  .plan_price_wrapper .pricing_grid .features_list li {
    transition: 0.5s;
    grid-template-columns: minmax(0, 18px) repeat(1, minmax(0, 1fr));
    gap: 20px 10px;
  }
}
.plan_price_wrapper .pricing_grid .features_list li .features_name {
  color: #000;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.28px;
}
.plan_price_wrapper .pricing_grid .price_footer {
  margin-top: auto;
}
.plan_price_wrapper .pricing_grid .price_footer p {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.28px;
}
.plan_price_wrapper .pricing_grid .price_footer p span {
  font-family: SFMediumFont;
  font-weight: 500;
}
.plan_price_wrapper .pricing_grid {
  margin-top: 50px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .plan_price_wrapper .pricing_grid {
    transition: 0.5s;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .plan_price_wrapper .pricing_grid {
    transition: 0.5s;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.credit_usages_modal .modal-dialog {
  max-width: 828px;
}
@media all and (max-width: 991px) {
  .credit_usages_modal .modal-dialog {
    transition: 0.5s;
    max-width: 95%;
  }
}
.credit_usages_modal .modal-content {
  border-radius: 16px;
  background: linear-gradient(119deg, #f0f4ff 3.41%, #fff 98.88%);
}
.credit_usages_modal .modal-header {
  align-items: start;
}
.credit_usages_modal .modal-header .title {
  color: #0b1234;
  font-family: SFMediumFont;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  margin-top: 0;
}
.credit_usages_modal .modal-header p {
  color: #666;
  margin-top: 4px;
}
.credit_usages_modal .modal-header .btn-close {
  font-size: 14px;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.credit_usages_modal .modal-header .btn-close:hover {
  background-color: #eaeaee;
}
.credit_usages_modal .table thead th {
  color: #353636;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  padding: 10px 12px;
  border: none;
  background: #e9f0ff;
}
.credit_usages_modal .table tbody td {
  color: #353636;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  padding: 14px 12px;
  border-bottom: 1px solid rgba(234, 234, 238, 0.5);
}
@media all and (max-width: 767px) {
  .credit_usages_modal .table tbody td {
    transition: 0.5s;
    padding: 12px 10px;
    min-width: 120px;
  }
}
.credit_usages_modal .table .name_grid {
  display: grid;
  grid-template-columns: minmax(0, 24px) repeat(1, minmax(0, 1fr));
  align-items: center;
  gap: 10px 12px;
}
.credit_usages_modal .table .name_grid img {
  max-width: 24px;
}
.credit_usages_modal .table .name_grid p {
  color: #353636;
  font-family: SFMediumFont;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}

.sidebar_wrapper .accordion-button::after {
  background-image: url("/assets/app/icons/arrow-down-02.svg") !important;
}

.sidebar_wrapper .accordion-button:not(.collapsed)::after {
  background-image: url("/assets/app/icons/arrow-up.svg") !important;
}/*# sourceMappingURL=style.css.map */