:root {
  scrollbar-color: #13287f rgba(0, 0, 0, 1);
  scrollbar-width: thin;
  border-radius: 10px;
}

.sidebar_height {
  scrollbar-color: #13287f rgba(0, 0, 0, 1);
  scrollbar-width: thin;
  border-radius: 10px;
}

body {
  font-family: "Inter", sans-serif;
  background-image: url(../../assets/images/main_bg.png);
  background-size: 100% 100%;
  /* background-position: center; */
  background-repeat: repeat-y;
  color: #fff;
}

.review_card {
  /* border-radius: 12px; */
  background: black;
  overflow: hidden;
  box-shadow: 0px 1px 15px 2px rgb(32, 71, 244, 0.15);
  transition: all ease-in-out 500ms;
}

/* .text-danger {
    color: #e70000 !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 12px !important;
  } */

.store_prod_imgg {
  position: relative;
  height: 220px;
  overflow: hidden;
}

th,
td {
  color: #fff !important;
}

a.custom_nav {
  color: #fff !important;
  transition: all ease-in-out 300ms;
}

a.custom_nav:hover {
  color: #ff0055 !important;
}

a.custom_nav.active {
  color: #ff0055 !important;
}

.text_pink {
  color: #ff0055;
}

.text_light {
  color: #d9d9d9;
}

.text_justify {
  text-align: justify;
}

.text_limit_1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.text_limit_2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.text_limit_3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.text_limit_4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.text_limit_5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.dark_bg {
  background-color: #0f0f0f !important;
}

.text_dark {
  color: #0f0f0f !important;
}

.primary_btn {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  background-color: #010e1e;
  color: #fff;
  border: 1px solid #fff;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  /* Ensure it looks like a button */
  z-index: 0;
  /* Ensure the button content is above the pseudo-element */
}

.primary_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgb(255, 59, 255);
  background: linear-gradient(90deg,
      rgba(255, 59, 255, 1) 0%,
      rgba(236, 191, 191, 1) 38%,
      rgba(92, 36, 255, 1) 76%,
      rgba(217, 79, 213, 1) 100%);
  transition: left 0.3s ease-in-out;
  z-index: -1;
  /* Ensure the gradient is behind the button */
}

.primary_btn:hover::before {
  left: 0;
}

.small_circle {
  height: 38px;
  width: 38px;
  border-radius: 50%;
  border: 1px solid #373737;
  display: flex;
  justify-content: center;
  align-items: center;
}

.light_border {
  border: 1px solid #373737;
}

.featured_card {
  background-color: #010e1e;
  border-radius: 24px;
}

.featured_card_img {
  height: 214px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.featured_card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.readmore_btn {
  background-color: #444c56;
  color: #fff;
  border-radius: 6px;
  transition: all ease-in-out 300ms;
}

.readmore_btn:hover {
  box-shadow: 0px 0px 5px 1px rgba(92, 36, 255, 0.5);
  color: #fff;
}

.subscribe_section {
  background-color: #3a3b3e;
  border: none;
}

.subscribe_section input {
  border: none;
  color: #fff;
  background-color: transparent;
}

.subscribe_section input:focus {
  box-shadow: none;
  background-color: transparent;
  color: #fff;
}

.subscribe_section button,
.btn_light_blue {
  background-color: #4194fd;
  color: #fff;
}

.our_blog_img {
  height: 216px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.our_blog_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.blog_bg {
  background-image: url(../../assets/images/ellipse_6.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.second_blog {
  background-color: #1c182f;
  border: 1px solid #262626;
  border-radius: 27px;
}

.second_blog_img {
  height: 153px;
  width: 153px;
  border-radius: 14px;
  overflow: hidden;
}

.second_blog_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.card_read_button {
  background-color: #28253a;
  border: 1px solid #262626;
  color: #fff !important;
  text-align: center;
  position: relative;
  transition: all ease-in-out 300ms;
}

.card_read_button:hover {
  background-color: #565c63;
  border: 1px solid #262626;
}

.testimonial_card {
  background-color: #18224a;
  border-radius: 14px;
}

.testimonial_card_img {
  height: 258px;
  border-radius: 10px;
  background-color: #fff;
  overflow: hidden;
}

.testimonial_card_img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}

.footer_bg {
  background-image: url(../../assets/images/main_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.header_img {
  width: 100%;
  max-height: 400px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.header_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blog_user {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.blog_user img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.blog_search_input {
  height: 48px;
  max-width: 300px;
  border: 1px solid #e8e8e9;
  border-radius: 6px;
  color: #fff;
  background-color: transparent;
  font-size: 14px;
}

.blog_search_input span,
.blog_search_input input,
.blog_search_input input:focus {
  background-color: transparent;
  border: none;
  color: #fff;
  box-shadow: none;
}

.blog_search_input input::placeholder {
  color: rgba(255, 255, 255, 0.228) !important;
  opacity: 1;
  font-size: 14px;
}

button.nav-link.blog_tabs {
  height: 48px;
  border: 1px solid #e8e8e9;
  border-radius: 7px;
  background-color: transparent;
  color: #fff;
  transition: all ease-in-out 300ms;
}

button.nav-link.blog_tabs:hover,
button.nav-link.blog_tabs.active {
  background-color: #4194fd;
  border: 1px solid #4194fd;
}

.blog_categories_card {
  background-color: #232528;
  border-radius: 8px;
  border: none;
  color: #fff;
  height: 96px;
  transition: all ease-in-out 300ms;
}

.blog_categories_card:hover {
  background-color: #4194fd;
}

.article_primary_card {
  background: rgb(248, 69, 198);
  background: linear-gradient(135deg,
      rgba(248, 69, 198, 1) 0%,
      rgba(94, 91, 232, 1) 59%,
      rgba(24, 176, 166, 1) 76%);
  border-radius: 16px;
}

.article_secondary_card {
  background-color: #342b60;
  border-radius: 16px;
}

.product_card {
  background-color: #1a1e2e;
  border: 1px solid #f1f1f3;
  border-radius: 12px;
}

.product_card_img {
  height: 245px;
  border-radius: 8px;
  overflow: hidden;
}

.product_card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.see_detail_btn {
  background-color: #f7f7f8;
  border: 1px solid #f7f7f8;
  border-radius: 8px;
  color: #262626;
}

.see_detail_btn:hover {
  background-color: #262626;
  border: 1px solid #f7f7f8;
  color: #f7f7f8;
}

.bg_with_lines {
  background-image: url(../../assets/images/lines_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.get_started_btn {
  background-color: #4194fd;
  border: 1px solid #4194fd;
  color: #fff;
  border-radius: 6px;
  transition: all ease-in-out 300ms;
}

.get_started_btn:hover {
  background-color: transparent;
  border: 1px solid #4194fd;
  color: #fff;
}

.about_gallery_section {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.about_gallery_img {
  height: 200px;
  width: 148px;
  border-radius: 10px;
  overflow: hidden;
}

.about_gallery_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.our_mission_card {
  background-color: #4f5153;
  border-radius: 20px;
  overflow: hidden;
}

.our_mission_img {
  height: 450px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  position: relative;
  overflow: hidden;
}

.our_mission_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.vid_play_btn {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease-in-out 300ms;
}

.vid_play_btn img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  margin: 0 auto;
}

.vid_play_btn:hover {
  box-shadow: 0px 0px 12px 2px #0f0f0f;
}

.team_card {
  background-color: #1a1e2e;
  border: 1px solid #e8e8e9;
  border-radius: 14px;
  text-align: center;
}

.resource_category_bg {
  background-image: url(../../assets/images/resources/globe.png);
  background-size: fill;
  background-position: center;
  background-repeat: no-repeat;
}

.resource_category_card {
  background-color: rgb(28, 18, 31, 0.55);
  border: 1px solid #e8e8e9;
  border-radius: 27px;
  text-align: center;
}

.resource_featured_card {
  border: 1px solid #e8e8e9;
  border-radius: 10px;
  /* background-color: #1c121f; */
  overflow: hidden;
}

.resource_featured_card_main_img {
  height: 300px;
  overflow: hidden;
}

.resource_featured_card_main_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.resource_featured_card_secondary_img {
  height: 200px;
  width: 240px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e8e8e9;
}

.resource_featured_card_secondary_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.review_user_img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  overflow: hidden;
}

.review_user_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact_card {
  background-color: #342b60;
  border-radius: 20px;
  border: 1px solid #e8e8e9;
}

.input_white {
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #e8e8e9;
  color: #686877;
}

.input_white:focus {
  box-shadow: none;
}

.light_gradient_bg {
  background: rgb(22, 37, 95);
  background: linear-gradient(135deg,
      rgba(22, 37, 95, 0.2) 46%,
      rgba(22, 37, 95, 0.17) 79%,
      rgba(22, 37, 95, 0.48) 100%);
}

.custom_accordion {
  background-color: transparent;
  border-radius: 12px !important;
  border: 1px solid #3a3b3e !important;
  overflow: hidden;
}

.custom_accordion .accordion-button {
  background-color: transparent;
  color: #fff;
}

.custom_accordion .accordion-button:focus {
  box-shadow: none;
}

.custom_accordion .accordion-button::after {
  background-image: url(../../assets/images/svg/down_angle.svg);
}

.blog_detail_main_card {
  border-radius: 10px;
  overflow: hidden;
  height: 400px;
  position: relative;
}

.blog_list_main_card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.blog_detail_title_bg {
  background-color: rgb(0, 0, 0, 0.7);
}

.blog_category_bg {
  background-color: #f1ecff;
  color: #6c40ff;
  display: inline-flex;
  align-items: center;
}

.blog_category_dot {
  background-color: #6c40ff;
  height: 16px;
  width: 16px;
  border-radius: 50%;
}

.table-responsive {
  border: 2px solid white;
  border-radius: 15px;
}

.table-responsive table {
  margin-bottom: 0px;
}

.comparison_table thead {
  border-top: 1px solid #1179fc;
  background-color: #1179fc;
}

.comparison_table tbody {
  background-color: #28253a;
}

.comparison_table th,
.comparison_table td {
  text-align: center;
  color: #fff;
  padding: 20px 0px;
}

.comparison_table th {
  padding: 10px 0px;
}

.comparison_table tbody tr:last-child {
  border-bottom: 0px;
}

.comparison_table tbody tr td:first-child,
.comparison_table thead tr th:first-child {
  border-left: 0px;
  border-bottom: 0px;
}

.comparison_table tbody tr td:last-child,
.comparison_table thead tr th:last-child {
  border-right: 0px;
  border-bottom: 0px;
}

.choose_plan_btn {
  background-color: #231d4f;
  color: #fff !important;
}

.choose_plan_btn:hover {
  background-color: #1179fc;
}

.pricing_card {
  border-radius: 26px;
}

.pricing_card:hover {
  background-color: #231d4f;
  box-shadow: 0px 42px 34px 0px rgb(82, 67, 194, 0.3);
}

.pricing_card:hover .choose_plan_btn {
  background-color: #1179fc;
}

.share_card_bg {
  background-image: url(../../assets/images/share_icon_bg.png);
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

.rating_star {
  color: #fbbc05;
}

.custom_progress_bar {
  height: 10px;
  border-radius: 20px;
  width: 100%;
}

.comment_user_profile {
  height: 55px;
  width: 55px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #1179fc;
}

.comment_user_profile img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.comment_box {
  border-radius: 28px;
  overflow: hidden;
  background-color: #fff;
}

.blogger_card {
  border-radius: 15px;
  background: rgb(46, 46, 50);
  background: linear-gradient(90deg,
      rgba(46, 46, 50, 1) 0%,
      rgba(20, 34, 86, 1) 100%);
}

.blogger_img {
  width: 109px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
}

.blogger_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.blog_features_card {
  border: 1px solid #18beff;
  border-radius: 12px;
  overflow: hidden;
}

.blog_features_list {
  list-style-type: none;
  padding-left: 0px;
  margin-bottom: 0px;
}

.blog_features_list li {
  padding: 20px 0px 20px 15px;
  border-bottom: 1px solid rgb(255, 255, 255, 0.8);
}

.blog_features_list li:last-child {
  border: none;
}

.blog_features_list li:hover {
  cursor: pointer;
  background: rgb(3, 20, 85);
  background: linear-gradient(90deg,
      rgba(3, 20, 85, 1) 0%,
      rgba(67, 87, 163, 1) 100%);
}

.recent_blog_card {
  background-color: #28253a;
  border: 1px solid #342b60;
  border-radius: 10px;
}

.recent_blog_img {
  width: 120px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
}

.recent_blog_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.sidebar_nav_text {
  font-size: 13px;
  text-align: start;
  padding: 12px 5px;
  display: flex;
  align-items: center;
  color: #fff !important;
  border-radius: 10px;
}

.sidebar_nav_text:hover {
  color: #fff !important;
  border-radius: 10px;
  background: rgb(248, 69, 198);
  background: linear-gradient(135deg,
      rgba(248, 69, 198, 1) 0%,
      rgba(94, 91, 232, 1) 59%,
      rgba(24, 176, 166, 1) 76%);
}

.sidebar_nav_text.active {
  background: rgb(248, 69, 198);
  background: linear-gradient(135deg,
      rgba(248, 69, 198, 1) 0%,
      rgba(94, 91, 232, 1) 59%,
      rgba(24, 176, 166, 1) 76%);
  border-radius: 10px;
}

.admin_inputs {
  border-radius: 10px;
  border: 1px solid #fff;
  background-color: transparent;
  color: black !important;
}

.admin_inputs::placeholder {
  color: rgba(255, 255, 255, 0.228) !important;
  opacity: 1;
  /* color: #fff !important; */
}

.form-select option {
  /* Example styles */
  background-color: #28253a;
  color: #fff;
  padding: 0.5rem;
}

/* Styling the selected option */
.form-select option:checked {
  /* Example styles */
  background-color: #007bff;
  color: #fff;
}

.admin_inputs:focus {
  border: 1px solid #4194fd;
  box-shadow: none;
  background-color: transparent;
}

.admin_inputs_checkbox {
  height: 20px;
  width: 20px;
  /* background-color: transparent;
  border: 1px solid #fff; */
}

.admin_inputs_checkbox:focus,
.admin_inputs_checkbox:checked {
  box-shadow: none;
  /* background-color: transparent;
  border: 1px solid #fff; */
}

.error {
  color: #f51d3a;
  font-weight: 300;
  letter-spacing: 1px;
  font-size: 14px;
}

.dropzone_main {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background: transparent;
  min-height: 150px;
  display: flow-root;
}

/* .dropzone.dz-drag-hover {
      border: 1px solid #FA8443 !important;
  } */

.dz-message.needsclick img {
  display: block;
  margin: auto;
  /* height: 100px;
      width: 100px !important; */
  margin-bottom: 10px;
  object-fit: cover;
}

.dropzone.dz-started .dz-message {
  /* display: inline-block !important; */
  width: 120px;
  float: right;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  height: 120px;
  margin: 16px;
  transition: 0.2s;
}

.dropzone.dz-started .dz-message span.text {
  display: none;
}

.dropzone.dz-started .dz-message span.plus {
  display: block;
  font-size: 70px;
  color: #aaa;
  line-height: 110px;
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
  border: 1px solid #e0e0e0 !important;
  border-radius: 6px !important;
  background-color: transparent !important;
  width: 100% !important;
}

.select2-container .select2-selection--single,
.select2-container--default .select2-selection--multiple {
  min-height: 48px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  /* color: #fff; */
  line-height: 38px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 38px;
}

.select2-dropdown {
  /* background: linear-gradient(90deg,
      rgba(46, 46, 50, 1) 0%,
      rgba(20, 34, 86, 1) 100%); */
  border: 1px solid black;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  background-color: transparent;
  color: #262626;
}

.select2-container--default .select2-results__option--selected {
  background: linear-gradient(135deg,
      rgba(248, 69, 198, 1) 0%,
      rgba(94, 91, 232, 1) 59%,
      rgba(24, 176, 166, 1) 76%) !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background: linear-gradient(135deg,
      rgba(248, 69, 198, 1) 0%,
      rgba(94, 91, 232, 1) 100%) !important;
  border: 1px solid #fff;
  border-radius: 4px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #fff;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #fff transparent transparent transparent;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  /* color: #fff !important; */
  line-height: 45px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 45px !important;
}

.rounded_btn {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 1px solid #fff;
  /* background-color: rgb(3, 20, 85); */
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.rounded_btn:hover {
  background-color: rgb(15, 15, 15);
  color: #fff;
}

.rounded_btn:focus {
  box-shadow: none;
}

.user_img {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid white;
}

.user_img img {
  height: 100%;
  width: 100%;
  object-fit: fill;
  object-position: center;
}

.admin_list_img {
  height: 60px;
  width: 60px;
  border-radius: 12px;
  overflow: hidden;
}

.admin_list_img img {
  height: 100%;
  width: 100%;
  /* object-fit: fill; */
  object-fit: cover;
  object-position: center;
}

.pagination {
  margin-top: 20px;
  margin-bottom: 0px;
}

.pagination .page-item .page-link {
  background-color: #0f0f0f;
}

.pagination .page-item .page-link:hover {
  background-color: #1179fc;
}

.pagination .page-item.active .page-link {
  background-color: #1179fc;
}

.pagination .page-item .page-link {
  height: 30px;
  width: 30px;
  border-radius: 50% !important;
  display: flex;
  justify-content: center;
  font-size: 13px;
  align-items: center;
  border: 1px solid #fff !important;
  color: #fff;
}

.light_green_bg {
  background: rgba(22, 171, 130, 0.1) !important;
}

.light_red_bg {
  background: rgba(189, 0, 0, 0.1) !important;
}

.light_yellow_bg {
  background: rgb(253, 196, 0, 0.1) !important;
}

.product_next_item {
  padding: 16px 12px;
  background: #fafafa;
  border-radius: 12px;
  box-shadow: 0px 1px 15px 2px rgb(32, 71, 244, 0.15);
}

.text_success {
  color: #16ab82 !important;
}

.text_danger {
  color: #e70000 !important;
}

.text_warning {
  color: #fdc400 !important;
}

.new_request_block {
  padding: 24px;
  /* background: #f8f9ff; */
  border-radius: 12px;
  display: flex;
  align-items: center;
}

.limited_description_2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  -webkit-box-orient: vertical;
}

.blog_comparison_table .select2-container--default .select2-selection--single .select2-selection__rendered {
  width: 150px !important;
}

[data-tooltip] {
  /* cursor: pointer;
  display: inline-block;
  line-height: 1; */
  position: relative;
}

[data-tooltip]::after {
  /* background-color: rgba(51, 51, 51, 0.9); */
  background-color: #e5e6ee;
  border-radius: 0.3rem;
  /* color: #fff; */
  color: #020b31;
  content: attr(data-tooltip);
  /* font-size: 1rem; */
  /* font-family: "Inter"; */
  font-family: "General Sans";
  font-style: normal;
  font-size: 11px;
  /* font-weight: normal; */
  font-weight: 400;

  /* line-height: 1.15rem; */
  opacity: 0;
  padding: 0.25rem 0.5rem;
  position: absolute;
  text-align: center;
  text-transform: none;
  transition: opacity 0.2s;
  visibility: hidden;
  white-space: nowrap;
  z-index: 1;
}

[data-tooltip].tooltip-top::before {
  border-style: solid;
  border-width: 0.3rem;
  content: "";
  opacity: 0;
  position: absolute;
  transition: opacity 0.2s;
  visibility: hidden;
  /* border-color: rgba(51, 51, 51, 0.9) transparent transparent transparent; */
  border-color: #e5e6ee transparent transparent transparent;
  top: 0;
  left: 50%;
  margin-left: -0.3rem;
}

[data-tooltip].tooltip-top::after {
  bottom: 100%;
  left: 50%;
  transform: translate(-50%);
}

[data-tooltip].tooltip-bottom::before {
  border-style: solid;
  border-width: 0.3rem;
  content: "";
  opacity: 0;
  position: absolute;
  transition: opacity 0.2s;
  visibility: hidden;
  /* border-color: transparent transparent rgba(51, 51, 51, 0.9) transparent; */
  border-color: transparent transparent #e5e6ee transparent;
  bottom: 0;
  left: 50%;
  margin-left: -0.3rem;
}

[data-tooltip].tooltip-bottom::after {
  top: 100%;
  left: 50%;
  transform: translate(-50%);
}

[data-tooltip].tooltip-left::before {
  border-style: solid;
  border-width: 0.3rem;
  content: "";
  opacity: 0;
  position: absolute;
  transition: opacity 0.2s;
  visibility: hidden;
  /* border-color: transparent transparent transparent rgba(51, 51, 51, 0.9); */
  border-color: transparent transparent transparent #e5e6ee;
  top: 0.3rem;
  right: calc(110% - 0.2rem);
  margin-top: -0.3rem;
}

[data-tooltip].tooltip-left::after {
  top: -0.3rem;
  right: calc(110% + 0.3rem);
}

[data-tooltip].tooltip-right::before {
  border-style: solid;
  border-width: 0.3rem;
  content: "";
  opacity: 0;
  position: absolute;
  transition: opacity 0.2s;
  visibility: hidden;
  /* border-color: transparent rgba(51, 51, 51, 0.9) transparent transparent; */
  border-color: transparent #e5e6ee transparent transparent;
  top: 50%;
  top: 0.3rem;
  left: calc(110% - 0.3rem);
  margin-top: -0.3rem;
}

[data-tooltip].tooltip-right::after {
  top: -0.3rem;
  left: calc(110% + 0.2rem);
}

@media (max-width: 767px) {
  [data-tooltip].tooltip-mobile::before {
    display: none;
  }

  [data-tooltip].tooltip-mobile:after {
    font-size: 1rem;
    max-width: 20rem;
    position: fixed;
    bottom: auto;
    top: 50%;
    left: 50%;
    text-align: left;
    transform: translate(-50%);
    white-space: normal;
  }
}

[data-tooltip]:hover::after,
[data-tooltip][class*="tooltip-"]:hover::before {
  visibility: visible;
  opacity: 1;
}

.load_more_btn {
  background-color: transparent;
  border: 1px solid #4194fd;
  color: #fff;
  border-radius: 6px;
  transition: all ease-in-out 300ms;
}

.load_more_btn:hover {
  background-color: #4194fd;
  border: 1px solid #4194fd;
  color: #fff;
}

/* .form-control:disabled,
.form-control[readonly] {
  background-color: #4f4775 !important;
  opacity: 1;
} */






table p,
table a {
  font-size: 14px;
}

#loadMore {
  width: 153px;
  margin: auto;
}

.rte-toggleborder img {
  width: 100%;
}

.title_link {
  text-decoration: none;
  color: #fff;
}

.subscribe_message {
  display: none;
  background: #d1e7dd;
  color: #0f5132;
  padding: 15px;
  margin-bottom: 11px;
}

.select2-results__option--selectable,
.select2-results__option {
  color: #262626;
}

.btn-primary a {
  text-decoration: none;
  color: white;
  transition: all ease-in-out 300ms;
}

.btn-primary a:hover {
  color: white;
  letter-spacing: 1px;
}

.badge-circle {
  width: 50px;
  height: 50px;
  background-color: white; /* Pink color */
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  font-size: 16px;
  border: none;
}
.display_username{
  text-align: center;
    margin: 5px;
    font-size: 26px;
}