@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg-daymode: #f2f4fc;
  --bg-darkmode: #151428;
  --bg-card-day: #ddd;
  --bg-card-night: #545454;
  --bg-sidebar-day: #3a0f9e;
  --bg-sidebar-night: #22213b;
  --bg-menu-active: #4a16bf;
  --dark-bg-menu-active: #3d3a8e;
  --bg-filter-btn: #3c15a4;
  --bg-secondary: #ffb400;
  --text-white: #fff;
  --text-black: #000;
  --text-primary: #4a16bf;
  /* --dark-text-primary: #d92d53; */
  --dark-text-primary: #00ffa3;
  --bg-input: #f1f2f6;
  --dark-bg-input: #151428;
  --badges-pending: #ffb400;
  --badges-inprogress: #ff5c00;
  --badges-completed: #01b713;
  --badges-partials: #4a629c;
  --badges-canceled: #dc3545;
  --badges-processing: #ac4006;
  --home-hero-top-text: #ff004d;
  --home-btn-hover: #36118b;
}
.navbar-light .navbar-toggler {
  color: var(--dark-text-primary);
}
a:hover {
  color: var(--text-white);
}
body {
  font-family: "Poppins", sans-serif;
}
body.noAuth {
  background: #161429 !important;
}
.hidden {
  display: none;
}
.dashboard {
  background: var(--bg-daymode);
}

#notLogin {
  padding-top: 73px;
}
#navbar {
  position: fixed;
  width: 100%;
  z-index: 99;
}
.text-home-primary {
  color: var(--dark-text-primary);
}

.nav__btn {
  border: none;
}
.nav__btn > img {
  width: 30px;
}

#main_container .sidebar {
  position: fixed;
  width: 300px;
  /* padding: 0px 20px; */
  min-height: 100vh;
  transition: 0.5s;
  z-index: 9;
}
#main_container .sidebar .sidebar_top {
  padding: 0px 20px;
}
#main_container.toogle_sidebar .sidebar {
  transform: translate(-300px);
}

#main_container .sidebar_menu::-webkit-scrollbar {
  display: none;
}
.order_history {
  position: relative;
}
.order_history > button {
  width: 100%;
  border: transparent;
}
.order_history .dropdown-menu {
  width: 100%;
  position: relative;
  background: #4a16bf;
  border-color: #631dff;
  border-width: 2px;
  border-radius: 10px;
  margin-bottom: 4px;
  padding: 5px;
}
#main_container .sidebar .logo {
  width: 85%;
  margin: 0 auto;
  margin-top: 5px;
  margin-bottom: 8px;
}
#main_container .sidebar .logo .logo_img {
  margin-top: 0px;
  margin-bottom: 10px;
}
a.navbar-brand img {
  max-width: 200px;
}
.sidebar_menu_icon {
  position: absolute;
  top: 40px;
  right: -38px;
  border: none;
  background-color: transparent;
  z-index: 9;
}

#main_container .sidebar_menu_icon img.close_nav_day {
  display: none;
}

#main_container .sidebar_menu_icon img.close_nav_night,
#main_container .sidebar_menu_icon img.open_nav_night {
  display: none;
}

#main_container.toogle_sidebar .sidebar_menu_icon {
  right: -40px;
}
#main_container.toogle_sidebar .sidebar_menu_icon img.open_nav_day {
  display: none;
}

#main_container.toogle_sidebar .sidebar_menu_icon img.close_nav_day {
  display: block;
}

.nightmode #main_container .sidebar_menu_icon img.close_nav_day {
  display: none !important;
}

.nightmode #main_container .sidebar_menu_icon img.open_nav_day {
  display: none !important;
}
.nightmode #main_container .sidebar_menu_icon img.open_nav_night {
  display: inline;
}
.nightmode
  #main_container.toogle_sidebar
  .sidebar_menu_icon
  img.close_nav_night {
  display: inline;
}
.nightmode
  #main_container.toogle_sidebar
  .sidebar_menu_icon
  img.open_nav_night {
  display: none;
}
.dashboard #main_container .sidebar {
  background: url(../images/xb8q18f8klhylm13.png),
    linear-gradient(45deg, var(--bg-sidebar-day), var(--bg-sidebar-day));
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
}

.dashboard.nightmode #main_container .sidebar {
  background: url(../images/di5o3mx3h3rlznac.png),
    linear-gradient(45deg, var(--bg-sidebar-night), var(--bg-sidebar-night));
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
}

#main_container .content_area {
  width: 100%;
  min-height: 100vh;
  padding-left: 305px;
  transition: 0.5s;
  z-index: -1;
  display: flex;
  align-items: center;
  flex-direction: column;
}
#main_container .content_area .content {
  padding-top: 70px;
  width: 100%;
}

#main_container .content_area .top_header {
  position: fixed;
  width: calc(100% - 325px);
  height: 65px;
  margin-top: 5px;
  border-radius: 10px;
  z-index: 1;
  transition: 0.5s;
}

#main_container.toogle_sidebar .content_area .top_header {
  width: 99%;
  margin-left: 12px;
}
.dashboard #main_container .top_header {
  background: var(--bg-sidebar-day);
  box-shadow: 0px -20px 20px #f1f2f6;
}
.dashboard.nightmode #main_container .top_header {
  background: var(--bg-sidebar-night);
  box-shadow: 0px -20px 20px var(--bg-darkmode);
}
#main_container.toogle_sidebar .content_area {
  padding-left: 0px;
}
.dashboard #main_container .content_area {
  background: var(--bg-daymode);
}
.dashboard.nightmode #main_container .content_area {
  background: var(--bg-darkmode);
}

/*
*
*
* Default Css Editor
*
*
*/
.nightmode h1,
.nightmode h2,
.nightmode h3,
.nightmode h4,
.nightmode h5,
.nightmode h6,
.nightmode p,
.nightmode ul,
.nightmode li,
.nightmode .help-block {
  color: #fff;
}

button.btn.btn-default.btn-big-secondary.clear-datetime {
  background: red;
  height: 100%;
  color: #fff;
}
.nav-pills .nav-link {
  color: var(--text-primary);
  border-radius: 10px;
  transition: 0.5s;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background: var(--text-primary);
}
.dashboard.nightmode .nav-pills .nav-link.active,
.dashboard.nightmode .nav-pills .show > .nav-link {
  background: var(--dark-text-primary);
  color: var(--text-black);
}
.tab_btn_wrap {
  background: #f6f3fa;
  display: inline-flex;
  padding: 10px;
  border-radius: 15px;
}
.tab_btn_wrap .nav-item input,
.tab_btn_wrap .nav-item input:focus {
  background: #dfdbf0;
}
.nightmode .tab_btn_wrap .nav-item input {
  background: #22213b;
}

.dashboard.nightmode .tab_btn_wrap {
  background: #151428;
}
.dashboard.nightmode .nav-pills .nav-link {
  color: #fff;
}
.dashboard label {
  font-family: "Poppins", sans-serif;
  margin-bottom: 0.35rem;
  font-size: 16px;
  font-weight: 500;
}
.dashboard.nightmode label {
  color: #fff;
}
.dashboard .form-group {
  margin-bottom: 1rem;
}
.dashboard .form-control {
  background: var(--bg-input);
  height: 45px;
  border-radius: 10px;
  border: none;
  color: var(--text-black);
  outline: 0 !important;
}
.dashboard .form-control:focus {
  background: var(--bg-input);
  box-shadow: none;
  border: 0;
}
.dashboard.nightmode .form-control {
  background: var(--dark-bg-input);
  color: #fff;
}
.dashboard .btn-primary {
  padding: 10px 10px;
  border-radius: 10px;
  font-size: 18px;
  color: #232323;
  background: var(--bg-secondary);
  border: none;
  font-weight: 700;
}
.dashboard.nightmode .btn-primary {
  background: var(--dark-text-primary);
  color: var(--text-black);
}

/* User avatar */
.user_data {
  background: var(--bg-menu-active);
  border-radius: 10px;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
}
.user_data .total_data {
  padding: 15px;
}
.nightmode .user_data {
  background: linear-gradient(#22213bdb, #22213bdb),
    url(../images/pattern.afd33a3d_a3iitl.svg),
    linear-gradient(#22213b, #22213b);
  border: 1px solid #00ffa3;
}
.user_data .user_wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.user_data .user_badges {
  position: absolute;
  width: 160px;
  height: 25px;
  background: var(--bg-secondary);
  top: 22px;
  transform: rotate(45deg);
  right: -48px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.nightmode .user_data .user_badges {
  background: #05ce85;
  color: var(--text-black);
}

.user_data .user_badges h4 {
  margin: 0;
  font-size: 14px;
  color: var(--text-primary);
  font-weight: bold;
}
.nightmode .user_data .user_badges h4 {
  color: var(--text-black);
}
.user_data .user_info .msg {
  font-size: 18px;
  font-weight: 500;
  color: var(--bg-secondary);
}
.v2_avatar img {
  width: 85px;
  margin-bottom: 8px;
  border: 2px solid #3a0f9e;
  border-radius: 50px;
}
.nightmode .v2_avatar {
  background: #22213b;
}
.nightmode .v2_avatar img {
  border-color: #05ce85;
}

.v2_user_info h5 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-transform: capitalize;
  margin: 0;
}
.nightmode .v2_user_info h5 {
  color: #fff;
}
.user_data .user_info h2 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}
.user_data .avatar {
  width: 60px;
}
.user_data .user_balance {
  width: 100%;
  padding: 8px 0;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  background: var(--bg-sidebar-day);
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 15px rgb(19, 5, 52);
  margin-bottom: 10px;
}
.nightmode .user_data .user_balance {
  /* background:#05ce85; */
  background: transparent;
  box-shadow: none;
  font-weight: 700;
  padding: 0;
  color: #fff;
}

.user_data .user_balance .balance {
  color: var(--bg-secondary);
}
.nightmode .user_data .user_balance .balance {
  color: #fff;
}
.sidebar_menu {
  margin-top: 25px;
  position: relative;
  height: calc(100vh - 311px);
  overflow: auto;
  padding: 0px 20px;
}
.sidebar_menu .menu_item {
  background: transparent;
  text-decoration: none;
  color: #fff;
  display: flex;
  gap: 8px;
  padding: 5px 15px;
  margin-bottom: 3px;
  font-size: 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.5s;
}

.sidebar_menu .menu_item:hover {
  background: #83838347;
}

.sidebar_menu .menu_item.active {
  background: var(--bg-menu-active);
  /* box-shadow:0 5px 10px rgb(0 0 0 / 77%); */
  border: 2px solid #631dff;
}

.nightmode .sidebar_menu .menu_item.active {
  background: var(--dark-text-primary);
  border-color: #01dd8e;
  color: var(--text-black);
}

.sidebar_menu .menu_item.active .menu_icon i {
  color: var(--bg-secondary);
}

.nightmode .sidebar_menu .menu_item.active .menu_icon i {
  color: var(--text-black);
}

/* Page infos and other infos*/
#page_info {
  display: flex;
  justify-content: space-between;
  margin: 20px 35px;
}
#page_info .item h4 {
  color: #232323;
  font-size: 18px;
  font-weight: 500;
}
#page_info .item h4 .sp_text_primary {
  color: var(--bg-menu-active);
  font-weight: 800;
}
.nightmode #page_info .item h4 {
  color: #fff;
}
.nightmode #page_info .item h4 .sp_text_primary {
  color: var(--dark-text-primary);
}
/* Card Design */

.card.card_v2 {
  background: #222242;
  border: 1px solid var(--dark-text-primary);
  border-radius: 15px;
}
.dashboard.nightmode .card.card_v2 {
  border-color: var(--dark-text-primary);
}
.card.card_v2 .card-body {
  padding: 1rem;
  margin: 0;
}
.dashboard .card.card_v2 {
  background: #fff;
  box-shadow: 0 5px 5px rgba(7, 7, 7, 10%);
  margin-bottom: 15px;
}
.card-body.shadow_top {
  box-shadow: inset 4px 10px 5px #9b9b9b;
  border-radius: 15px;
}

.card-body p {
  color: var(--text-white);
}

/* Table */
#table.services_page {
  padding: 10px;
}

#table .catetitle {
}
#table .catetitle td {
  padding: 8px 10px;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  background: var(--dark-text-primary);
  color: var(--text-black) !important;
  border-radius: 0;
}
.dashboard.nightmode #table .catetitle td {
  background: var(--dark-text-primary);
  color: var(--text-black);
}
#table .table tr {
  background: #22213b;
}

.dashboard.nightmode #table .table tr {
  background: #22213b;
  color: #fff !important;
}
#table .table tr:nth-child(even) {
  background: #2a2553;
}
#table .table tr th,
#table .table tr td {
  color: var(--text-white);
}

.dashboard.nightmode #table .table tr:nth-child(even) {
  background: #121028;
}
.dashboard #table .btn-primary.btn_serv {
  font-size: 14px;
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 50px;
  box-shadow: none;
  background: var(--text-primary);
}
.dashboard.nightmode #table .btn-primary.btn_serv {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-text-primary);
  color: var(--text-black);
}
.dashboard #table .btn-primary.btn_serv:hover {
  background: var(--bg-secondary);
}
.dashboard.nightmode #table .btn-primary.btn_serv:hover {
  background: var(--dark-text-primary);
}

.dashboard #table .btn-primary.btn_serv.btn_detail {
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-group-btn > button {
  background: var(--dark-text-primary);
  height: 100%;
  border-radius: 0px 10px 10px 0px;
  display: flex;
  align-items: center;
}
.input-group-btn > button i {
  color: var(--text-black);
}
.dashboard.nightmode .input-group-btn > button {
  background: var(--dark-text-primary);
  color: var(--text-black);
}
.nightmode .input-group-btn > button i {
  color: var(--text-black);
}
.noAuth #top_services {
  padding-top: 50px;
}
.noAuth #top_services .card.card_v2 {
  border: 1px solid #00ffa3;
}
.noAuth #top_services .card.card_v2 .card-body {
  background: linear-gradient(#22213bdb, #22213bdb),
    url(../images/pattern.afd33a3d_a3iitl.svg),
    linear-gradient(#22213b, #22213b);
  border-bottom: 1px solid #00ffa3;
  border-radius: 15px;
}
.service_button_filter {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, 50px));
  gap: 15px;
  margin-bottom: 20px;
  justify-content: center;
}
.service_button_filter .btn_ser_filter {
  background: gray;
  border: none;
  padding: 10px 0px;
  border-radius: 10px;
  box-shadow: none;
  color: #fff;
  font-size: 18px;
}
.btn_ser_filter.btn_all {
  background: var(--dark-text-primary);
  color: var(--text-black);
}
.dashboard.nightmode .btn_ser_filter.btn_all {
  background: var(--dark-text-primary);
  color: var(--text-black);
}
.btn_ser_filter.btn_fb {
  background: #3b5998;
  color: #fff;
}
.btn_ser_filter.btn_tw {
  background: #1da1f2;
  color: #fff;
}
.btn_ser_filter.btn_ig {
  background: linear-gradient(
    90.28deg,
    #5f1db9 -5.68%,
    #bb2c96 49.27%,
    #f0c33b 99.81%
  );
  color: #fff;
}
.btn_ser_filter.btn_in {
  background: #1da1f2;
  color: #fff;
}
.btn_ser_filter.btn_yt {
  background: #ff0000;
  color: #fff;
}
.btn_ser_filter.btn_sp {
  background: #3ce060;
  color: #fff;
}
.btn_ser_filter.btn_tik {
  background: #000;
}
.btn_ser_filter.btn_dis {
  background: #5865f2;
}
.btn_ser_filter.btn_traffic {
  background: #fee75c;
  color: #232323;
}
/*
*
*
* New Order Page Design
*
*/

/* category filte design */
.card {
  transition: 0.5s;
}
.dashboard.nightmode .card {
  background-color: var(--bg-sidebar-night);
}
.filter_btn_wrap {
  display: grid;
  gap: 8px 30px;
  grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
}

.filter_btn_wrap .btn_filter {
  font-size: 18px;
  text-transform: capitalize;
  border: none;
  padding: 3px;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  background: #fff;
  color: #fff;
  border: 2px solid var(--bg-filter-btn);
  color: var(--bg-filter-btn);
  /* box-shadow: inset 0 5px 10px rgba(31, 31, 31, 0.7), 0 2px 8px #0000005e; */
  transition: 0.4s;
}

.dashboard.nightmode .category_filter_wrap .card {
  background: transparent !important;
  box-shadow: none;
}

.category_filter_wrap .card.card_v2 {
  background: transparent;
  box-shadow: none;
  border: 0;
}

.category_filter_wrap .card.card_v2 .card-body {
  padding: 0 !important;
}
.dashboard.nightmode .filter_btn_wrap .btn_filter {
  background: var(--bg-sidebar-night);
  box-shadow: none;
  color: #fff;
  border: 2px solid var(--dark-text-primary);
}
.search-orders-at-new-order {
  margin-top: -5px;
  margin-bottom: 10px;
}

.dashboard.nightmode .filter_btn_wrap .btn_filter:hover,
.dashboard.nightmode .filter_btn_wrap .btn_filter.activeItem {
  background: var(--dark-text-primary);
  color: var(--text-black);
}

#minmax_value {
  color: #000;
}

.dashboard.nightmode #minmax_value {
  color: #fff;
}
.btn_filter:hover,
.btn_filter.activeItem {
  background: var(--bg-filter-btn);
  color: #fff;
}
.dashboard .details_data {
  margin-bottom: 15px;
}
.dashboard .details_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.dashboard .details_data .item {
  display: flex;
  align-items: center;
  height: 100px;
  gap: 15px;
  background: #f1f2f6;
  padding: 12px;
  border-radius: 15px;
}

.dashboard.nightmode .details_data .item {
  background: var(--bg-darkmode);
}

.dashboard .details_data .item .icon {
  width: 70px;
  height: 70px;
  font-size: 22px;
  text-align: center;
  line-height: 70px;
  background: #4916bf1a;
  color: var(--bg-sidebar-day);
  border-radius: 50px;
}

.dashboard.nightmode .details_data .item .icon {
  background: #22213b;
  color: var(--dark-text-primary);
}

.dashboard .descriptions_box {
  background: #f1f2f6;
  padding: 10px;
  border-radius: 15px;
}
.dashboard.nightmode .descriptions_box {
  background: var(--bg-darkmode);
}
.dashboard .details_data .item .item_content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
.dashboard .details_data .item .item_content p {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}
.dashboard.nightmode .details_data .item .item_content {
  color: #fff;
}
.dashboard.nightmode .descriptions_box {
  color: #fff;
}
/* Top Bar */
.top_head_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.user_settings {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 8px;
}
.user_settings .telegram {
  /* position: relative; */
  background-color: var(--bg-secondary);
  color: var(--bg-sidebar-day);
  font-size: 22px;
  text-align: center;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50px;
  text-decoration: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--bg-secondary);
}

.nightmode .user_settings .telegram {
  background: transparent;
  border-color: var(--dark-text-primary);
  color: var(--dark-text-primary);
  box-shadow: 0px 0px 5px var(--dark-text-primary);
}

.nightmode #currencyToggler2 {
  background: transparent;
  border-color: var(--dark-text-primary);
  color: var(--dark-text-primary);
  box-shadow: 0px 0px 5px var(--dark-text-primary);
}

/* #orderform-category,
   #orderform-service{
      display: none;
   } */
#dropdownMenu3 {
  text-align: left;
}
#order-dd {
  text-align: left;
}
#newOrderTabsWrap .dropdown,
#newOrderTabsWrap .dropdown .form-control {
  min-height: 40px;
  height: auto;
}
#category-drop,
#orders-drop {
  width: 100%;
  height: 415px;
  overflow: auto;
}
#order-cItem,
#order-sItem {
  width: 100%;
  white-space: normal;
}
#category-drop .dropdown-item,
#orders-drop .dropdown-item {
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--text-primary);
  white-space: normal;
}
.nightmode #category-drop .dropdown-item,
.nightmode #orders-drop .dropdown-item {
  border-color: #00ffa354;
  border-width: 0.5px;
}
.fa.fa-caret-down.ml-auto {
  position: absolute;
  right: 8px;
  top: 35%;
}
.nightmode #category-drop .dropdown-item,
.nightmode #orders-drop .dropdown-item {
  color: #fff;
}
/* .user_settings .telegram i{
    position: absolute;
    top: 8px;
    left: 6px;
} */

.btn_profiles {
  background: var(--bg-secondary);
  margin-right: 10px;
  margin-right: 10px;
  padding: 3px 6px;
  border-radius: 15px;
  color: var(--bg-sidebar-day);
  font-size: 18px;
  font-weight: bold;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}

.btn-check:focus + .btn-secondary,
.btn-secondary:focus,
.btn-secondary:hover {
  background: var(--bg-secondary) !important;
}

.day_night_btn {
  width: 70px;
  position: relative;
  background: #fff;
  display: flex;
  justify-content: space-around;
  font-size: 20px;
  border-radius: 50px;
  color: #3c15a4;
}

.day_night_btn:hover {
  color: var(#3c15a4);
}

.day_night_btn .active_circle {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  top: -5px;
  right: -2px;
  z-index: 0;
  background: var(--bg-secondary);
  transition: 0.5s ease;
}
.nightmode .day_night_btn .active_circle {
  transform: translate(-34px);
}
.day_night_btn .day_mode {
  color: #fff;
  transition: 0.5s ease;
}

.nightmode .day_night_btn .day_mode {
  color: var(--bg-sidebar-day);
}
.day_night_btn .day_mode,
.day_night_btn .night_mode {
  display: block;
  z-index: 1;
}
.nightmode .night_mode {
  color: rgb(253, 56, 56);
  transition: 0.5s ease;
}
.logo_off_nav {
  display: none;
  padding: 10px;
  transition: 0.5;
}
.toogle_sidebar .logo_off_nav {
  display: inline-block;
  margin-top: -5px;
}

.toogle_sidebar .logo_off_nav img {
  max-width: 200px;
}

/* Mass Order */

.dashboard .form-control.massorder_textarea {
  height: 350px;
}

/* Order Page */
#orders_menu a .icon {
  font-size: 16px;
  margin-right: 10px;
}

#orders_menu.nav-pills .nav-link {
  border: 2px solid transparent;
}
#orders_menu.nav-pills .nav-link:hover {
  border-color: var(--text-primary);
}
.dashboard.nightmode #orders_menu.nav-pills .nav-link.active {
  background: var(--dark-text-primary);
}
.dashboard.nightmode #orders_menu.nav-pills .nav-link:hover {
  border-color: var(--dark-text-primary);
}
.order_page .order_link_wrap a.order_link {
  width: 330px;
  border: 1px solid #4a16bf;
  font-size: 16px;
  padding: 8px;
  border-radius: 10px;
  display: inline-block;
}
.dashboard.nightmode .order_page .order_link_wrap a.order_link {
  color: #fff;
  border-color: var(--dark-text-primary);
}
.order_link_wrap > input.form-control {
  padding: 5px;
  border-radius: 8px;
  border: 1px solid var(--text-primary);
  width: 100%;
  height: 40px;
}
.dashboard.nightmode .order_link_wrap > input.form-control {
  border-color: var(--dark-text-primary);
}
.order_link_wrap > .btn_order_link {
  right: 5px;
  background: var(--text-primary);
  height: 30px;
  top: 5px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
}

.order_page .order_id {
  display: block;
  background: var(--text-primary);
  text-align: center;
  color: #fff;
  padding: 3px 8px;
  border-radius: 10px;
}
.nightmode .order_id {
  background: var(--dark-text-primary) !important;
  color: var(--text-black) !important;
}

.order_page .order_date {
  width: 85px;
  font-size: 14px;
}
.order_page .order_service {
  width: 220px;
  /* white-space: nowrap;
    height: 40px; 
    overflow: hidden;
    text-overflow: ellipsis; */
}
.order_page a.serv_id {
  background: var(--text-primary);
  color: #fff;
  padding: 1px 13px;
  border-radius: 50px;
  font-size: 14px;
}
.dashboard.nightmode .order_page a.serv_id {
  background: var(--dark-text-primary);
}
.dashboard.nightmode .order_page .order_id {
  background: var(--dark-text-primary);
}
.dashboard.nightmode .order_link_wrap > .btn_order_link {
  background: var(--dark-text-primary);
}

.btn_action {
  background: var(--text-primary) !important;
  color: #fff;
  border-radius: 10px;
  border: none;
  box-shadow: none;
}

.dashboard.nightmode .btn_action {
  background: var(--dark-text-primary) !important;
}

.order_status_badges {
  color: #fff;
  display: block;
  /* min-width: 150px; */
  background: var(--text-primary);
  text-align: center;
  border-radius: 50px;
  padding: 3px 10px;
}

.dashboard.nightmode .order_status_badges {
  background: var(--dark-text-primary);
}

.order_status_badges.badges_pending {
  background: var(--badges-pending) !important;
  color: #000;
}
.order_status_badges.badges_inprogress {
  background: var(--badges-inprogress) !important;
}
.order_status_badges.badges_completed {
  background: var(--badges-completed) !important;
}
.order_status_badges.badges_partials {
  background: var(--badges-partials) !important;
}
.order_status_badges.badges_canceled {
  background: var(--badges-canceled) !important;
}
.order_status_badges.badges_processing {
  background: var(--badges-processing) !important;
}

/* Add Fund Page */
#addfundTable thead tr th:nth-child(1),
#addfundTable tbody tr td:nth-child(1) {
  width: 60px;
}
#addfundTable thead tr th:nth-child(2),
#addfundTable tbody tr td:nth-child(2) {
  width: 130px;
  font-size: 16px;
}
#addfundTable thead tr th:last-child,
#addfundTable tbody tr td:last-child {
  width: 150px;
  font-size: 16px;
}
#addfundTable tbody tr:nth-child(even) {
  background: #e8edff;
}
.dashboard.nightmode #addfundTable tbody tr:nth-child(even) {
  background: #121028;
}
.dashboard.nightmode #addfundTable thead tr th,
.dashboard.nightmode #addfundTable tbody tr td {
  color: #fff;
}
.tab_id {
  display: block;
  height: 30px;
  background: var(--dark-text-primary);
  text-align: center;
  line-height: 30px;
  color: #151428;
  font-size: 16px;
  padding: 0px 5px;
  border-radius: 10px;
}

/* def side */
.dashboard #def_side_title {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0;
  margin-bottom: 0px;
}

.dashboard #def_side_title .icon {
  width: 52px;
  height: 42px;
  line-height: 42px;
  font-size: 20px;
  color: var(--bg-sidebar-day);
  text-align: center;
  background: #f6f3fa;
  border-radius: 10px;
}

.dashboard.nightmode #def_side_title .icon {
  background: var(--dark-text-primary);
  color: var(--text-black);
}

.dashboard #def_side_title .name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.dashboard.nightmode #def_side_title .name {
  color: #fff;
}

/*
Global Accoridan 
*/
.site_accordion .accordion-item {
  margin-bottom: 10px;
  border: 1px solid var(--text-primary);
  border-radius: 10px;
  background: var(--text-white);
  transition: 0.5s;
}
.site_accordion .accordion-item .accordion-header button {
  box-shadow: none !important;
}
.site_accordion .accordion-item .accordion-button {
  background: var(--text-primary);
  color: #fff;
  font-size: 18px;
  border-color: var(--text-primary);
  border-radius: 5px 5px 0px 0px;
}
.site_accordion .accordion-item .accordion-button i {
  margin-right: 10px;
}
.site_accordion .accordion-item .accordion-button.collapsed {
  background: #f1f2f6;
  color: var(--text-black);
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
  transition: 0.5s;
}
.dashboard.nightmode .site_accordion .accordion-item .accordion-button {
  background: var(--dark-text-primary);
  color: var(--text-black);
}
.dashboard.nightmode
  .site_accordion
  .accordion-item
  .accordion-button.collapsed {
  background: var(--dark-bg-input);
  color: #fff;
}
.dashboard.nightmode .site_accordion .accordion-item {
  background: var(--dark-bg-input);
  color: var(--text-white) !important;
  border-color: var(--dark-text-primary);
}
.accordion-button:not(.collapsed)::after {
  background-image: "https://res.cloudinary.com/dw8lywl8p/image/upload/v1651083085/caret-down-solid_1_1_wl8it4.png" !important;
}

.site_accordion .accordion-item .accordion-header button {
  box-shadow: none !important;
  z-index: 0;
}

/*
* ticket page
*/
.ico-tw {
  position: relative;
  top: 2px;
}
#viewTicket .msg_user .ticket-message {
  background: var(--text-primary);
  padding: 25px;
  border-radius: 20px;
  color: #fff;
}
.dashboard.nightmode #viewTicket .msg_user .ticket-message {
  background: var(--dark-text-primary);
  color: var(--text-black);
}
#viewTicket .msg_user,
#viewTicket .msg_admin {
  margin-bottom: 20px;
}
#viewTicket .msg_user .info,
#viewTicket .msg_admin .info {
  padding: 4px 10px;
}

#viewTicket .msg_admin .ticket-message {
  background: var(--bg-secondary);
  padding: 25px;
  border-radius: 20px;
  color: #fff;
}

.dashboard.nightmode #viewTicket .msg_admin .ticket-message {
  background: var(--dark-text-primary);
  color: var(--text-black);
}

.dashboard.nightmode #viewTicket .msg_user .info,
.dashboard.nightmode #viewTicket .msg_admin .info {
  color: #fff;
}

.dashboard .ticket_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  margin: 10px 0px;
  padding: 15px 15px;
  background: #f1f2f6;
  border-left: 3px solid #ffb400;
  border-radius: 15px;
}
.dashboard .ticket_item.ticket_Closed {
  border-color: rgb(250, 21, 21);
}
.dashboard .ticket_item.ticket_Answered {
  border-color: rgb(4, 221, 4);
}
.dashboard .item_left h3 {
  font-size: 20px;
}
.dashboard.nightmode .ticket_item {
  background: #151428;
}
.dashboard .ticket_item p,
.dashboard .ticket_item h3 {
  margin: 0;
  padding: 0;
  color: #232323;
}
.dashboard.nightmode .ticket_item p,
.dashboard.nightmode .ticket_item h3 {
  color: #fff;
}
.dashboard .ticket_item .item_left {
  display: flex;
  gap: 10px;
  width: 48%;
  align-items: center;
}
.dashboard .ticket_item .item_left .ticket_icon {
  width: 60px;
  height: 60px;
  background: var(--text-primary);
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 60px;
  border-radius: 50px;
}

.dashboard.nightmode .ticket_item .item_left .ticket_icon {
  background: var(--dark-text-primary);
  color: var(--text-black);
}

#ticket_filter_wrap {
  margin: 10px 0px;
}
#ticket_filter_wrap button {
  background: transparent;
  border: 2px solid var(--text-primary);
  border-radius: 10px;
  color: #232323;
}
.dashboard.nightmode #ticket_filter_wrap button {
  border-color: var(--dark-text-primary);
  color: #fff;
}
.dashboard #ticket_filter_wrap button:hover {
  background: var(--text-primary) !important;
  color: #fff;
}
.dashboard.nightmode #ticket_filter_wrap button:hover {
  background: var(--dark-text-primary) !important;
  color: #fff;
}
.dashboard #ticket_filter_wrap .ticket_btn_active {
  background: var(--text-primary);
  color: #fff;
}

.dashboard.nightmode #ticket_filter_wrap .ticket_btn_active {
  background: var(--dark-text-primary);
  color: #232323;
}
/* Affiliate Page */

#affiliates .aff_item {
  display: flex;
  justify-content: space-between;
  margin: 20px 0px;
}

#affiliates .item_left {
  width: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
}

#affiliates .item_left .icon {
  width: 50px;
  height: 50px;
  background: #f6f3fa;
  text-align: center;
  line-height: 50px;
  border-radius: 10px;
  color: var(--text-primary);
}

#affiliates .item_right {
  display: flex;
  align-items: center;
}

#affiliates .affiliate_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

#affiliates .sm_aff_item .icon {
  background: #f6f3fa;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  color: var(--text-primary);
  text-align: center;
  line-height: 50px;
  font-size: 18px;
}

#affiliates .sm_aff_item {
  display: flex;
  gap: 12px;
}

#affiliates .sm_content h4 {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: bold;
}

#affiliates .sm_content p {
  margin: 0;
  padding: 0;
  font-size: 16px;
}

.nightmode #affiliates .item_left .icon {
  background: var(--dark-text-primary);
  color: var(--text-black);
}

.nightmode #affiliates .item_left {
  color: var(--text-white);
}

.nightmode #affiliates .item_right {
  color: var(--text-white);
}

.nightmode #affiliates .sm_aff_item .icon {
  background: var(--dark-text-primary);
  color: var(--text-black);
}

.nightmode .dns_info ul li,
.nightmode .dns_info {
  color: var(--text-black) !important;
}

/*
*
*
* NO Auth Page Css
* Design Started
*
*
*/

/* def side */
#def_side_title {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0;
}

#def_side_title .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 20px;
  color: var(--text-black);
  text-align: center;
  background: var(--dark-text-primary);
  border-radius: 10px;
}

#def_side_title .name {
  color: var(--text-white);
  font-size: 20px;
  font-weight: 700;
}

/* Reset Password */
.highlight-lside .hlight-box {
  margin-bottom: 30px;
  padding: 24px 30px;
  background: #fff;
  border-radius: 9px;
  box-shadow: 0px 10px 10px #7878780f;
}

.highlight-lside .hlight-box .hlight-first {
  font-size: 19px;
  line-height: 24px;
  color: #232323;
  font-weight: 800;
}

.highlight-lside .hlight-box .hlight-second {
  font-size: 14px;
  line-height: 25px;
  color: #232323;
  margin: 0;
  width: 100% !important;
}

.highlight-lside .hlight-box .icon {
  font-size: 60px;
  width: 70px;
  text-align: center;
  line-height: 100px;
}

.highlight-lside .hlight-box:nth-child(1) .icon {
  color: #ffb645;
}

.highlight-lside .hlight-box:nth-child(2) .icon {
  color: #117ec2;
}

.highlight-lside .hlight-box:nth-child(3) .icon {
  color: #16caba;
}

@media (max-width: 1199.98px) {
  .highlight-lside .hlight-box {
    text-align: center !important;
  }
}

.noAuth .form-control {
  background: #161429;
  height: 45px;
  border-radius: 10px;
  border: none;
  color: var(--text-white);
  outline: 0 !important;
}

.card-body.bg__custom .form-control {
  background: #161429;
  color: var(--text-white);
}
.noAuth .control-label {
  margin-bottom: 10px !important;
}
.noAuth .control-label .icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  color: var(--text-black);
  text-align: center;
  border-radius: 10px;
  background: var(--dark-text-primary);
}
.noAuth .control-label .name {
  color: var(--text-white);
}
.noAuth .btn.btn-primary {
  padding: 15px 10px;
  border-radius: 10px;
  font-size: 18px;
  color: #232323;
  background: var(--dark-text-primary);
  border: none;
  font-weight: 700;
}
#service-table .btn.btn-primary {
  padding: 5px 15px;
  background: var(--dark-text-primary);
  border-radius: 50px;
}
.reset_Card .card.card_v2 {
  box-shadow: 0px 10px 10px #7878780f;
}

/* API PAGE */
#notLogin #blog_post,
#notLogin #api {
  padding-top: 50px;
}

#api pre {
  background: #261f1f;
  padding: 50px 20px;
  border-radius: 20px;
  color: #fff;
}

/*
*
* Service Page
*
*/
.cat_btn_filter {
  background: var(--dark-text-primary);
  padding: 10px 10px;
  width: 100%;
  color: var(--text-black);
  font-size: 16px;
  text-align: center;
  border-radius: 10px;
}
#currency_changer .btn.btn-primary.dropdown-toggle {
  background: var(--dark-text-primary);
  padding: 10px 10px;
  width: 100%;
  color: var(--text-black);
  font-size: 16px;
  text-align: center;
  border-radius: 10px;
}
.dashboard.nightmode #currency_changer .btn.btn-primary.dropdown-toggle {
  background: var(--dark-text-primary);
  color: var(--text-black);
}
.cat_btn_filter:hover {
  color: #fff;
}

#catList {
  display: none;
}

#currency_changer {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.dashboard.nightmode .cat_btn_filter {
  background: var(--dark-text-primary);
  color: var(--text-black);
}

#currency_changer .dropdown .dropdown-toggle {
  width: 100%;
}
#currencies-list.openNow {
  display: block;
  width: 100%;
}
.dashboard.nightmode .dropdown-menu {
  background: #151428;
}
.dashboard.nightmode .dropdown-menu li a {
  color: #fff;
}
.dashboard.nightmode .dropdown-item:focus,
.dashboard.nightmode .dropdown-item:hover {
  background: var(--dark-text-primary);
  color: var(--text-black) !important;
}

#cat_filter {
  position: relative;
}
#cat_filter #catList {
  position: absolute;
  height: 400px;
  overflow: hidden;
  overflow-y: auto;
  background: var(--bg-input);
  z-index: 1;
}
.dashboard.nightmode #cat_filter #catList {
  background: var(--bg-sidebar-night);
}

#cat_filter #catList button {
  width: 100%;
  display: block;
  padding: 8px;
  text-align: left;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--dark-text-primary);
}
#cat_filter #catList button:hover {
  background: var(--dark-text-primary);
  color: var(--text-black);
}

.dashboard.nightmode #cat_filter #catList button:hover {
  background: var(--dark-text-primary);
  color: var(--text-black);
}
.dashboard.nightmode #cat_filter #catList button {
  color: #fff;
}

#catList.openFilter {
  display: block;
}
.text_imp {
  color: var(--text-primary);
}
.dashboard.nightmode .text_imp {
  color: var(--dark-text-primary);
}

/* Dashboard page design */
#dashboard .user_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#dashboard .user_info .text_info h5 {
  font-size: 16px;
  margin: 0;
  margin-bottom: 5px;
  color: #232323;
}
#dashboard .user_info .text_info h4 {
  font-size: 16px;
  margin: 0;
  color: #232323;
  font-weight: bold;
}
#dashboard .user_info .icon_info {
  color: #232323;
}
.dashboard.nightmode #dashboard .user_info .text_info h5,
.dashboard.nightmode #dashboard .user_info .text_info h4 {
  color: #fff;
}
.dashboard.nightmode #dashboard .user_info .icon_info {
  color: #fff;
}
.btn_ac_benefit {
  position: absolute;
  width: 140px;
  align-items: center;
  height: 40px;
  border: none;
  font-size: 18px;
  gap: 10px;
  display: flex;
  color: #ffffff;
  top: 15px;
  background: var(--text-primary);
  border-radius: 10px;
  justify-content: center;
  right: 15px;
}
.dashboard.nightmode .btn_ac_benefit {
  background: var(--dark-text-primary);
}

.acc_benefit_cont {
  min-height: 280px;
}
.acc_spend_status {
  width: 87%;
  font-weight: bold;
  display: grid;
  grid-template-columns: 100px 50px 200px;
  margin-bottom: 5px;
}
.dashboard.nightmode .btn_ac_benefit {
  color: var(--text-black);
}
.dashboard.nightmode .acc_spend_status {
  color: var(--text-white);
}

/* Show more btn styles */

#show_more_wrap {
  color: #fff;
  padding: 5px 10px;
  border: 2px solid #631dff;
  background: #4a16bf;
  border-radius: 10px;
}
.dashboard.nightmode #show_more_wrap {
  background: var(--dark-text-primary);
  border-color: var(--dark-text-primary);
  color: var(--text-black);
}
#showMore {
  width: 100%;
  display: flex;
  background: transparent;
  margin: 0;
  padding: 0;
  border: 0;
  color: #fff;
  justify-content: space-between;
}
.nightmode #showMore {
  color: var(--text-black);
}
#more_menu {
  display: none;
  overflow: hidden;
  /* padding-top: 10px; */
  margin-top: 7px;
  transition: 0.5s;
  /* background: #1b07496e; */
  border-radius: 10px;
}
.dashboard.nightmode #more_menu {
  background: #2f2d4f;
}
#more_menu.active_more_menu {
  display: block;
}

.modal_status_close {
  position: absolute;
  right: 12px;
  font-size: 20px;
  width: 30px;
  height: 30px;
  background: var(--text-primary);
  border-radius: 50px;
  color: #fff;
  z-index: 999999;
  opacity: 1;
}

.nightmode .modal_status_close {
  background: var(--dark-text-primary);
}
.status_modal .nav-pills .nav-link {
  background: #80808036;
  color: var(--text-primary);
  border-radius: 10px;
  transition: 0.5s;
  margin-bottom: 5px;
}

.nightmode .status_modal .nav-pills .nav-link {
  background: #151428;
}

.status_modal .nav-pills .nav-link.active {
  background: var(--text-primary);
  color: #fff;
}

.status_modal .tab-content {
  background: #e4e4e4;
  height: 100%;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #4a16bf;
}

.nightmode .status_modal .tab-content {
  background: var(--bg-darkmode);
  border-color: var(--dark-text-primary);
  color: #fff !important;
}

.nightmode .modal-body.status_modal {
  background: var(--bg-sidebar-night);
}

ul.pagination li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #00ffa342;
  border-radius: 50px;
  text-align: center;
  line-height: 40px;
  margin-right: 5px;
}
ul.pagination li.active a {
  background: var(--dark-text-primary);
  color: var(--text-black);
}
ul.pagination li a {
  color: var(--dark-text-primary);
}
.nightmode ul.pagination li a {
  background: #d92d5330;
}

.nightmode ul.pagination li a {
  color: #d92d52;
}

.table tr th,
.table tr td {
  color: var(--text-white);
  border-bottom: 1px solid var(--text-white);
}
.table thead {
  border-bottom: 1px solid var(--dark-text-primary);
}
/*
*
*   Responsive area start 
*
*/
@media only screen and (max-width: 1600px) {
  .order_page .order_link_wrap a.order_link {
    width: 200px;
    font-size: 14px;
  }
  .order_page .order_service {
    width: 150px;
    font-size: 14px;
  }
  .order_page a.serv_id {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1250px) {
  #main_container .sidebar {
    transform: translate(-300px);
  }
  #main_container.toogle_sidebar .sidebar {
    transform: translate(0px);
  }
  #main_container .sidebar_menu_icon img.close_nav_day {
    display: inline;
    position: relative;
    top: 0 !important;
    right: -40px;
  }
  #main_container .sidebar_menu_icon img.open_nav_day {
    display: none;
  }

  #main_container.toogle_sidebar .sidebar_menu_icon img.close_nav_day {
    display: none !important;
  }
  #main_container.toogle_sidebar .sidebar_menu_icon img.open_nav_day {
    display: inline;
    position: relative;
    left: -40px;
  }

  .nightmode #main_container .sidebar_menu_icon img.open_nav_night {
    display: none;
  }

  .nightmode #main_container .sidebar_menu_icon img.close_nav_night {
    display: block;
    right: -40px;
    position: relative;
  }

  .nightmode
    #main_container.toogle_sidebar
    .sidebar_menu_icon
    img.open_nav_night {
    display: block;
    position: absolute;
    right: 40px;
  }
  .nightmode
    #main_container.toogle_sidebar
    .sidebar_menu_icon
    img.close_nav_night {
    display: none;
  }

  #main_container .content_area {
    padding-left: 0px;
  }
  #main_container .content_area .top_header {
    width: 98%;
  }
  .sidebar_menu_icon {
    right: 0px;
  }
  #main_container.toogle_sidebar .sidebar_menu_icon {
    right: -78px;
  }
  .logo_off_nav {
    display: inline-block;
    width: 250px;
    margin-top: -10px;
  }
  #page_info {
    flex-direction: column;
    align-items: center;
  }
  #page_info .item {
    text-align: center;
  }
  .dashboard .details_2 {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 991px) {
  #main_container .sidebar {
    transform: translate(-300px);
  }
  #main_container.toogle_sidebar .sidebar {
    transform: translate(0px);
  }
  #main_container .sidebar_menu_icon img.close_nav_day {
    display: inline;
    position: relative;
    top: 0 !important;
    right: -40px;
  }
  #main_container .sidebar_menu_icon img.open_nav_day {
    display: none;
  }

  #main_container.toogle_sidebar .sidebar_menu_icon img.close_nav_day {
    display: none !important;
  }
  #main_container.toogle_sidebar .sidebar_menu_icon img.open_nav_day {
    display: inline;
    position: relative;
    left: -40px;
  }

  .nightmode #main_container .sidebar_menu_icon img.open_nav_night {
    display: none;
  }

  .nightmode #main_container .sidebar_menu_icon img.close_nav_night {
    display: block;
    right: -40px;
    position: relative;
  }

  .nightmode
    #main_container.toogle_sidebar
    .sidebar_menu_icon
    img.open_nav_night {
    display: block;
    position: absolute;
    right: 40px;
  }
  .nightmode
    #main_container.toogle_sidebar
    .sidebar_menu_icon
    img.close_nav_night {
    display: none;
  }

  #main_container .content_area {
    padding-left: 0px;
  }
  #main_container .content_area .top_header {
    width: 98%;
  }
  .sidebar_menu_icon {
    right: 0px;
  }
  #main_container.toogle_sidebar .sidebar_menu_icon {
    right: -78px;
  }
  .logo_off_nav {
    display: inline-block;
  }
  #page_info {
    flex-direction: column;
    align-items: center;
  }
  #page_info .item {
    text-align: center;
  }
  .dashboard .details_2 {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 768px) {
  .user_settings .menu_text {
    display: none;
    margin-right: 4px;
  }
  .logo_off_nav {
    display: inline-block;
  }
}

@media only screen and (max-width: 550px) {
  .logo_off_nav img {
    width: 150px;
  }
  .user_settings .telegram {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 15px;
  }
  .day_night_btn {
    font-size: 15px;
    width: 55px;
  }
  .day_night_btn .active_circle {
    width: 30px;
    height: 30px;
    top: -4px;
    right: -2px;
  }
  .nightmode .day_night_btn .active_circle {
    transform: translate(-28px);
  }
  .dropdown-toggle.btn_profiles {
    padding: 2px;
    border-radius: 50px;
  }
  .dropdown-toggle.btn_profiles::after {
    display: none;
  }
  .dropdown-toggle.btn_profiles img {
    width: 100%;
    height: 100%;
  }
  .dashboard .details_2 {
    grid-template-columns: 1fr;
  }
  .filter_btn_wrap {
    grid-template-columns: repeat(4, 1fr);
    height: 150px;
    overflow: hidden;
    overflow-y: scroll;
    grid-gap: 8px 10px;
  }
  .filter_btn_wrap .btn_filter {
    font-size: 20px;
    padding: 5px;
    border-width: 1px;
  }
  .filter_btn_wrap .btn_filter .filter_txt {
    display: none;
  }
  .dashboard.nightmode .filter_btn_wrap .btn_filter {
    border-width: 1px;
  }
  .card.card_v2 .card-body {
    padding: 0.6rem;
  }
  .tab_btn_wrap {
    width: 100%;
    /* justify-content: space-between; */
    gap: 15px;
  }
  .nav-pills .nav-link {
    font-size: 16px;
    padding: 0.5rem 1rem;
  }
  .nav-pills .nav-link.active,
  .nav-pills .show > .nav-link {
    font-size: 16px;
    padding: 0.5rem 1rem;
  }
  .dashboard .details_data .item .item_content h3 {
    font-size: 16px;
  }
  .dashboard .details_data .item .item_content p {
    font-size: 14px;
  }
  .dashboard .details_data .item {
    height: 80px;
    gap: 10px;
    padding: 10px;
  }
  .dashboard .details_data .item .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
  }
  /* Table */

  #table {
    padding: 0px;
  }
  #table .table tr {
    font-size: 14px;
  }
  .dashboard #table .btn-primary.btn_serv {
    font-size: 14px;
    padding: 3px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .table-responsive table {
    width: 1500px;
  }
  #table .category_title {
    font-size: 16px;
  }

  #affiliates .affiliate_wrap {
    grid-template-columns: 1fr;
  }
  #currency_changer {
    margin-bottom: 1rem;
  }
  .drop_dwon_menu {
    margin-bottom: 1rem;
  }
  .hide_phone {
    display: none;
  }
  #page_info .item h4 {
    font-size: 14px;
    line-height: 1.1;
  }

  .user_data .user_balance {
    padding: 8px 0px;
    font-size: 16px;
    margin-bottom: 5px;
  }
  .user_data .user_wrap {
    margin-bottom: 5px;
  }
  .user_data {
    margin-bottom: -15px;
  }
  #main_container .sidebar .logo {
    margin-bottom: 0px;
  }
  .sidebar_menu {
    height: calc(100vh - 200px);
  }
  .user_data .total_data {
    padding: 10px 12px;
  }
  .v2_avatar img {
    width: 50px;
    margin-bottom: 0;
  }
  .v2_user_info h5 {
    font-size: 14px;
  }
  .user_data .user_balance {
    font-size: 14px;
  }
  .user_data .user_balance {
    padding: 5px 0px;
    box-shadow: 0 2px 4px rgb(19 5 52 / 61%);
    border-radius: 4px;
  }
  .user_data .user_info .msg {
    font-size: 14px;
  }
  .user_data .user_info h2 {
    font-size: 16px;
  }
  .user_data .avatar {
    width: 40px;
  }
  #main_container .sidebar .logo {
    text-align: center;
  }
  #main_container .sidebar .logo .logo_img {
    width: 180px;
  }
  .sidebar_menu .menu_item {
    padding: 3px 15px;
    margin-bottom: 2px;
  }
  .search-orders-at-new-order .input-group .form-control {
    height: 35px !important;
  }
}

@media only screen and (max-width: 480px) {
}

/*
*
*
*
*=================== SIGN IN PAGE CSS START FROM HERE =======================================
*
*
*/

section.formSec {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 150px 0 50px;
  overflow: hidden;
  margin: 0;
}

section.formSec h1 {
  margin: 0;
  font-size: 49px;
  font-weight: 600;
}

section.formSec p {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-primary);
  /* margin: 30px 0 50px; */
  width: 70%;
  margin: 10px 0 20px;
}
.banner-app-mock {
  position: relative;
  width: 272px;
}

.banner-app-mock .main-img {
  margin-top: 21px;
  width: 100%;
  height: 250px;
}

.input-group .btn {
  z-index: 0;
}
.noAuth .form-group.inputDiv {
  position: relative;
}

.noAuth .form-group.inputDiv span {
  position: absolute;
  background: var(--text-primary);
  display: flex;
  width: 46px;
  height: 46px;
  text-align: center;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  color: #ffffff;
  left: 6px;
  top: 4px;
}

.my-form input[type="text"],
.my-form input[type="password"],
.my-form input[type="email"] {
  background: none;
  box-shadow: none;
  border: 2px solid var(--text-primary);
  height: 55px;
  font-size: 14px;
  padding-left: 60px;
  border-radius: 50px;
  width: 100%;
}

.my-form .btn.btn-default {
  background: var(--text-primary);
  border-color: var(--text-primary);
  border-radius: 50px;
  width: auto;
  font-size: 14px;
  font-weight: 400;
  height: 55px;
  width: 100%;
  position: relative;
  color: #fff;
}

.checkbox label {
  color: var(--text-primary);
  font-size: 16px;
  margin: 0;
}

section.sclSlider {
  padding: 40px 0;
  text-align: center;
}

.noAuth .stat-wrap {
  background-color: #ffffff;
  box-shadow: none;
  display: block;
  border-radius: 0;
  background-image: none;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 0 10px #ddd;
  border-radius: 15px;
  border: 2px solid #4a16bf;
}

.noAuth .stat-icon {
  width: auto;
  height: auto;
  box-shadow: none;
  border: none;
}

.stat-icon i {
  font-size: 46px;
  color: var(--text-primary);
}

.stat-wrap:hover .stat-icon i {
  animation: tada 3s infinite;
}

.stat-desc {
  padding: 22px 22px 0;
}

.stat-desc h5 {
  font-size: 25px;
  font-weight: 600;
  margin: 0 0 20px;
  position: relative;
  padding: 0 0 25px;
}
.stat-desc h5::before {
  content: "";
  width: 112px;
  height: 8px;
  display: block;
  background-color: var(--text-primary);
  border-radius: 10px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 10px;
}
.stat-desc h5::after {
  content: "";
  width: 72px;
  height: 8px;
  display: block;
  background-color: var(--text-primary);
  border-radius: 10px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -5px;
}
.stat-desc p {
  font-size: 14px;
  font-weight: 300;
  margin: 0;
  margin-top: 25px;
}

.noAuth section {
  position: relative;
}

section.whatWeOffer {
  padding: 80px 0 40px;
  overflow: hidden;
}

section.whatWeOffer h2.heading ~ p {
  text-align: center;
  width: 65%;
  margin: 0 auto 60px;
}

section.weOffer .col-sm-3 {
  padding: 0 10px;
}

section.whatWeOffer .singleOfr {
  background-color: #ffffff;
  padding: 35px 25px;
  box-shadow: 0 10px 10px 5px #36268208;
  min-height: 330px;
}

section.whatWeOffer .singleOfr span {
  display: block;
  width: 100px;
  height: 110px;
  line-height: 110px;
  margin: 0 0 25px;
}

section.whatWeOffer img.mickeyMouse {
  right: -50px;
  top: -100px;
}

section.whatWeOffer .singleOfr h3.heading {
  position: relative;
  font-size: 25px;
  font-weight: 600;
  margin: 0 0 20px;
  padding: 0 0 35px;
}

section.whatWeOffer .singleOfr h4 {
  font-size: 82px;
  line-height: 62px;
  margin-top: 0;
  color: var(--text-primary);
}

.heading.bordered.l-b::before,
.heading.bordered.l-b::after {
  left: 0 !important;
  right: auto;
}

section.whatWeOffer .singleOfr p {
  font-size: 14px;
  font-weight: 300;
  margin: 0;
}

section.whatWeOffer .row.shadedRow {
  margin-bottom: 60px;
}

section.whatWeOffer .row.shadedRow::after,
section.stat-sec .row.shadedRow::after {
  content: "";
  height: 60px;
  width: 100%;
  display: block;
  background-size: 100%;
}

section.easyTo {
  padding: 0 0 80px;
}

section.easyTo img {
  margin: -20px 0 0 -30px;
}
.heading.bordered {
  position: relative;
  color: var(--text-primary);
}

h2.heading.l-b {
  text-align: left;
}

section.easyTo h2 ~ p {
  margin: 0 0 40px;
}

section.easyTo.connected {
  padding: 80px 0 160px;
}

section.easyTo.connected img {
  margin: 0 -10px 0 auto;
  display: block;
}

section.happyUser {
  text-align: center;
  background-color: #58a0ff;
  padding: 115px 0 40px;
  position: relative;
}

section.happyUser img.mickeyMouse {
  top: -205px;
  left: 0;
  right: 0;
  margin: auto;
}

section.happyUser h2 {
  color: #ffffff;
  font-size: 49px;
  font-weight: 600;
  margin: 0 0 10px;
}

section.happyUser h2 ~ h3 {
  font-size: 30px;
  color: #fff;
  margin: 0 0 60px;
  font-weight: 600;
}

.happyUser p,
.happyUser h4 {
  color: #fff;
}

section.happyUser .pInfo {
  display: flex;
  text-align: left;
  align-items: center;
  justify-content: center;
}

section.happyUser .pInfo span {
  background-color: #ffffff;
  border-radius: 70px;
  width: 110px;
  height: 110px;
  line-height: 110px;
  text-align: center;
  margin-right: 25px;
  box-shadow: 0 5px 10px 0 #36268233;
}

section.happyUser .pInfo span img {
  max-width: 70px;
}

section.happyUser .pInfo h3 {
  margin: 0 0 5px;
  font-size: 30px;
  font-weight: 600;
  color: #ffffff;
}

section.happyUser .pInfo p {
  margin: 0;
  color: #fff;
  font-weight: 400;
}

section.happyUser .uniBtn {
  margin: 60px auto 0;
  background-color: #816ad6;
}

section.serWeOffer {
  padding: 80px 0 50px;
  text-align: center;
}

section.serWeOffer h2.heading {
  margin: 0 0 50px;
}

.box .nav.nav-tabs {
  display: block;
  width: 96%;
  margin: 0;
  border: 0;
}

h2.heading {
  font-size: 49px;
  font-weight: 600;
  margin: 0 0 30px;
  padding: 0 0 35px;
  text-align: center;
}
.heading.bordered::before,
.heading.bordered::after {
  content: "";
  width: 112px;
  height: 8px;
  display: block;
  background-color: var(--text-primary);
  border-radius: 10px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 15px;
}

.heading.bordered::after {
  width: 77px;
  bottom: 1px;
}
section.happyUser img.mickeyMouse {
  top: -80px;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
}

section.happyUser h2 {
  color: #ffffff;
  font-size: 49px;
  font-weight: 600;
  margin: 0 0 10px;
}
n.happyUser h2 ~ h3 {
  font-size: 30px;
  color: #fff;
  margin: 0 0 60px;
  font-weight: 600;
}
@media (max-width: 1024px) {
  .box .nav.nav-tabs li {
    margin: 3px 0 !important;
  }
}

section.serWeOffer .tab-content h2 {
  font-size: 49px;
  font-weight: 600;
  margin: 0 0 20px;
}
section.serWeOffer .nav-link {
  text-align: center;
}
.forActive {
  display: none;
}
.nav-link.active > img {
  display: none;
}
.nav-link.active .forActive {
  display: inline;
}
.social-slider .slick-slide img {
  text-align: center;
  display: inline;
}
section.serWeOffer .nav-link.active {
  background: transparent;
  text-align: center;
}

.uniBtn {
  text-decoration: none;
  background-color: var(--dark-text-primary);
  display: block;
  max-width: 210px;
  text-align: center;
  padding: 19px 20px;
  border-radius: 50px;
  font-size: 14px;
  color: #fff !important;
  font-weight: 600;
  margin: 0 auto;
  margin-top: 30px;
}
.testimonial .slick-slide .userReview .bg {
  background-color: var(--text-primary);
  color: #fff;
  padding: 30px 30px 40px;
}

.testimonial .slick-slide:nth-child(2n) .userReview .bg {
  background-color: var(--dark-text-primary);
}

.testimonial .slick-slide .userReview img.quote {
  display: block;
  margin: 0 0 -10px auto;
}

.testimonial .slick-slide .userReview span.userImg {
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 70px;
  overflow: hidden;
  margin: 0 0 30px;
}

.testimonial .slick-slide .userReview p {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.testimonial .slick-slide .userReview span.date {
  display: block;
  margin: 30px 0 0;
  font-size: 12px;
}

.testimonial .slick-slide .userReview span.date i {
  font-size: 16px;
  margin-right: 13px;
}

.testimonial .slick-slide .userReview .author {
  background-color: #fff;
  padding: 25px 10px;
  text-align: center;
}

.testimonial .slick-slide .userReview .author p {
  font-weight: 300;
  color: #29375a;
  margin: 0 0 5px;
}

.testimonial .slick-slide .userReview .author img.rating {
  display: block;
  margin: auto;
}

a {
  text-decoration: none !important;
}
footer {
  padding: 80px 0 0;
}

footer .col-sm-3:nth-child(2),
footer .col-sm-3:nth-child(3) {
  padding-left: 80px;
}

footer img.ftrLogo {
  margin-bottom: 15px;
}

footer p {
  font-size: 13px;
  color: #3f3b50;
  margin: 0 0 30px;
  font-weight: 400;
}

footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

footer ul.cntctInfo li {
  display: flex;
  margin: 0 0 15px;
}

footer ul li {
  margin: 0 0 4px;
}

footer ul.cntctInfo li i {
  font-size: 18px;
  color: #58a0ff;
  width: 28px;
  margin-right: 5px;
}

footer ul li a {
  font-size: 16px;
  color: #ffffff;
  transition: 0.5s;
}

footer ul li a:hover {
  color: var(--dark-text-primary);
}

footer .footer_image {
  margin-top: 30px;
}

footer h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-white);
  margin-top: 30px;
  margin-bottom: 10px;
}

footer .quick_links {
  margin-bottom: 20px;
}

footer div.input-group {
  border: 1px solid #362682;
  padding: 5px;
  border-radius: 40px;
  background-color: #ffffff;
}

footer div.input-group input {
  border-radius: 40px;
  border: 0;
  background-color: #ffffff;
  box-shadow: none !important;
  height: 40px;
  font-size: 13px;
}

footer div.input-group input::placeholder {
  color: #362682;
}

footer div.input-group .input-group-addon {
  border: 0;
  border-radius: 40px;
  background-color: transparent;
  padding: 0;
}

footer div.input-group .input-group-addon button.sendBtn {
  padding: 0;
  width: 40px;
  height: 40px;
  border: 0;
  background-color: transparent;
}

footer div.ftrStrip {
  background-color: #362682;
  padding: 20px 0;
  margin: 60px 0 0;
}

footer div.ftrStrip p {
  color: #ffffff;
  margin: 0;
  font-weight: 400;
}

footer div.ftrStrip ul {
  text-align: right;
}

footer div.ftrStrip ul li {
  display: inline-block;
  margin: 0 0 0 30px;
}

footer div.ftrStrip ul li a {
  text-decoration: none;
  color: #fff;
}

/* Keyframes */

@keyframes scaleIn {
  from {
    transform: scale(0.5, 0.5);
    opacity: 0.5;
  }
  to {
    transform: scale(2.5, 2.5);
    opacity: 0;
  }
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: rotate(0deg);
  }
  10% {
    -webkit-transform: rotate(-3deg);
  }
  20% {
    -webkit-transform: rotate(-3deg);
  }
  30% {
    -webkit-transform: rotate(3deg);
  }
  40% {
    -webkit-transform: rotate(-3deg);
  }
  50% {
    -webkit-transform: rotate(3deg);
  }
  60% {
    -webkit-transform: rotate(-3deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
  }
  80% {
    -webkit-transform: rotate(-3deg);
  }
  90% {
    -webkit-transform: rotate(3deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}

#order_average_time {
  display: none !important;
}

/* New Changes */
.card-header.v2_header {
  background: linear-gradient(#22213bdb, #22213bdb),
    url(../images/pattern.afd33a3d_a3iitl.svg),
    linear-gradient(#22213b, #22213b);
  border-bottom: 1px solid #00ffa3;
  border-radius: 14px 14px 0px 0px;
  padding: 20px;
}

.dashboard.nightmode .card-header.v2_header {
  background: linear-gradient(#22213bdb, #22213bdb),
    url(../images/pattern.afd33a3d_a3iitl.svg),
    linear-gradient(#22213b, #22213b);
  border-bottom: 1px solid #00ffa3;
}

.dashboard.nightmode .new_order_tabs .nav-pills .nav-link {
  color: var(--bg-darkmode);
  background: var(--bg-darkmode);
  border-color: var(--dark-text-primary);
  color: #fff;
}

.new_order_tabs .nav-link {
  background: #fff;
  margin: 0px 5px;
  border-radius: 8px;
  transition: 0.5s ease-in-out !important;
  border: 1px solid #fff;
}

.dashboard.nightmode .new_order_tabs .nav-link.active {
  border-color: var(--dark-text-primary) !important;
  background: var(--dark-text-primary) !important;
  color: var(--text-black) !important;
}

.new_order_tabs .nav-link .text_name {
  display: none;
}
.new_order_tabs .nav-link.active {
  background: var(--bg-secondary) !important;
  color: var(--text-black);
  border-color: var(--bg-secondary) !important;
}
.new_order_tabs .nav-link.active .text_name {
  display: inline-block;
}

.search_byId > .search {
  border-radius: 0px 10px 10px 0px;
}

/* Child Panel Order Page */
.card.card_v2.child_step {
  margin-bottom: 0px;
  border: none;
  background: #f1f2f6;
  box-shadow: none;
}
.nightmode .card.card_v2.child_step {
  background: var(--bg-darkmode);
}
.child_panel_step {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.child_panel_step .left_item h6 {
  background: #ffb40047;
  display: inline-block;
  padding: 5px 15px;
  color: #000;
  border-radius: 0;
  margin: 0;
  margin-bottom: 10px;
  border-left: 4px solid var(--bg-secondary);
}

.nightmode .child_panel_step .left_item h6 {
  background: #00ffa35e;
  color: #fff;
  border-left: 4px solid var(--dark-text-primary);
}

.child_panel_step .left_item p {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
}

.child_panel_step .right_item i {
  font-size: 35px;
  margin-right: 20px;
  color: var(--text-primary);
}
.nightmode .child_panel_step .right_item i {
  color: var(--dark-text-primary);
}

.dns_info {
  margin-top: 20px;
  margin-bottom: 32px;
}

/* Child Panel Page Accordian*/
#child_faq {
  padding: 1rem 0 3rem 0;
}
#child_faq .accordion-item {
  margin-bottom: 10px;
  border-radius: 10px;
  background: transparent;
}

#child_faq .accordion-item .accordion-collapse {
  background: #fff;
  border-radius: 0px 0px 10px 10px;
}
.nightmode .accordion-item .accordion-collapse {
  background: var(--bg-sidebar-night) !important;
}

.accordion-flush .accordion-item .accordion-button.collapsed {
  border-radius: 10px 10px 10px 10px;
  border-color: transparent;
  background: #fff;
}

.accordion-flush .accordion-item .accordion-button {
  border-radius: 10px 10px 0px 0px;
  border-color: transparent;
  transition: 0.5s;
}

.nightmode .accordion-flush .accordion-item .accordion-button {
  background: var(--bg-sidebar-night);
  color: #fff;
}

.accordion-button:not(.collapsed) {
  background: var(--text-primary);
  color: #fff;
}

.show_phone {
  display: none;
}

@media only screen and (max-width: 550px) {
  .hide_phone {
    display: none;
  }
  .show_phone {
    display: inline-block;
  }
  #newOrderTabsWrap #pills-tab {
    gap: 5px;
  }
  #newOrderTabsWrap #pills-tab .nav-item {
    width: calc(50% - 5px);
  }
  #newOrderTabsWrap #pills-tab .nav-item .nav-link {
    border-width: 1px;
    font-size: 14px;
  }
  #category-drop .dropdown-item,
  #orders-drop .dropdown-item {
    padding: 0.23rem 1rem;
    border-bottom: 1px solid var(--text-primary);
    font-size: 14px;
  }
  #category-drop,
  #orders-drop {
    /* height: 390px; */
    height: 444px;
    padding: 0px;
  }

  #orders-drop {
    height: 305px !important;
  }
  ul.pagination li a {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #4a16bf1c;
    border-radius: 50px;
    text-align: center;
    line-height: 30px;
    margin-right: 2px;
  }
  #child_panel .card.card_v2.child_step {
    margin-bottom: 8px;
  }
  #child_panel .card.card_v2.child_step .card-body {
    padding: 1rem;
  }
  .nightmode .alert.alert-info.dns_info {
    background: var(--dark-text-primary) !important;
    border-color: var(--dark-text-primary) !important;
    color: #fff !important;
  }
}

/* Footer Design Started */

footer {
  padding: 2rem 0;
}

#footerV2 {
  background: url(../images/a5k6spjlloriqokr.png);
  background-size: cover;
  background-position: top center;
}

#footerV2 .row.footer_top {
  padding: 3rem 0;
}

#footerV2 .footer_link .link_item {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 18px;
}
#footerV2 .footer_link .link_item .icon i {
  color: var(--bg-secondary);
}
#footerV2 .footer_link .link_item a {
  color: #fff;
  text-decoration: none;
  transition: 0.5s;
}
#footerV2 .footer_link .link_item a:hover {
  color: var(--bg-secondary);
}

#footerV2 .footer_bottom_links {
  padding: 1rem 0;
}

#footerV2 .footer_bottom_links {
  padding: 1rem 0;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  color: #fff;
}

#footerV2 .footer_bottom_links span,
#footerV2 .footer_bottom_links a {
  color: #fff;
  transition: 0.5s;
}
#footerV2 .footer_bottom_links a:hover {
  color: var(--bg-secondary);
}

#footerV2 .footer_v2_logo img {
  max-width: 260px;
}

.hr_primary {
  background: var(--bg-secondary);
  height: 3px !important;
  opacity: 1;
}

@media only screen and (max-width: 550px) {
  #footerV2 .footer_bottom_links {
    gap: 10px;
    column-gap: 18px;
  }
  .footer_v2_logo {
    text-align: center;
    margin-bottom: 15px;
  }
  #footerV2 .row.footer_top {
    padding: 2rem 0;
  }

  .hr_primary {
    height: 2px !important;
  }
  span.divid {
    display: none;
  }

  #footerV2 .footer_bottom_links span {
    width: 100%;
  }
}
/* Footer Design Ended */

/* Home Page Css Start  */
/* Hero Section Design Start From Here */
#hero {
  min-height: 1200px;
  background: url(../images/hero_bg_dt2xey.jpg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  overflow: hidden;
}
#hero .banner_content h1 {
  font-family: "Poppins", sans-serif;
  font-size: 55px;
  font-weight: bold;
  line-height: 1.3;
  color: var(--text-black);
  margin-bottom: 10px;
}

#hero .banner_content h1 > span.title_top {
  font-size: 30px;
  color: var(--home-hero-top-text);
}
#hero .banner_content p {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  color: #666666;
  margin-top: 10px;
}

#hero .banner_content .btn-hero {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--text-white);
  background: var(--text-primary);
  width: 200px;
  height: 60px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.5s;
}
#hero .banner_content .btn-hero:hover {
  background: var(--home-btn-hover);
}

#hero .banner_img {
  display: grid;
  grid-template-columns: 1fr 10fr 1fr;
}
#hero .banner_img .female_char {
  max-width: 150%;
  animation: float 3s ease infinite;
}

#hero .banner_img .left_side_icons,
#hero .banner_img .right_side_icons {
  position: relative;
}

#hero .banner_img .hero_icon {
  position: absolute;
}

#hero .banner_img .icon1 {
  top: 250px;
  animation: fade-up 2.3s infinite ease-in-out;
}
#hero .banner_img .icon2 {
  top: 330px;
  left: 70px;
  animation: tossing 1s infinite ease-in-out;
}
#hero .banner_img .icon3 {
  top: 420px;
  left: -60px;
  animation: wobble-bottom 1.3s infinite ease-in-out;
}
#hero .banner_img .icon4 {
  top: 480px;
  left: 70px;
  animation: tossing 1.3s infinite ease-in-out;
}
#hero .banner_img .icon5 {
  top: 560px;
  left: 5px;
  animation: tada 2s infinite ease-in-out;
}
#hero .banner_img .icon6 {
  top: 210px;
  left: -180px;
  animation: heartBeat 1.4s infinite ease-in-out;
}
#hero .banner_img .icon7 {
  top: 300px;
  left: -80px;
  animation: tossing 1s infinite ease-in-out;
}
#hero .banner_img .icon8 {
  top: 380px;
  left: -180px;
  animation: fade-up 2.2s infinite ease-in-out;
}
#hero .banner_img .icon9 {
  top: 450px;
  left: -60px;
  animation: wobble-bottom 1.5s infinite ease-in-out;
}
#hero .banner_img .icon10 {
  top: 560px;
  left: -150px;
  animation: wobble-bottom 2.2s infinite ease-in-out;
}
.showMob {
  display: none;
}

/* Login */
#login {
  margin-top: 30px;
}
#login .login_box {
  background: var(--text-white);
  padding: 50px 20px;
  border-radius: 15px;
}

.login_box .in_group {
  position: relative;
  margin-bottom: 15px;
}
.login_box .in_group .icon {
  position: absolute;
  font-size: 20px;
  top: 15px;
  left: 20px;
  color: var(--bg-secondary);
}

.login_box .in_group .in_control {
  width: 100%;
  height: 60px;
  font-size: 18px;
  padding-left: 50px;
  padding-right: 15px;
  border-radius: 50px;
  border: 2px solid #cdbef0 !important;
  background: #f7f5fc;
}
.login_box .in_group .in_control:focus,
.login_box .in_group .in_control:active {
  box-shadow: none;
}

.login_box .btn-signin {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 18px;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--text-primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.5s;
}

.login_box .btn-signin:hover {
  background: var(--home-btn-hover);
}

/* Counter Css */
#counter {
  padding: 100px 0px;
}

#counter .counter_item {
  display: flex;
  align-items: center;
  gap: 15px;
}

#counter .counter_item .counter_icon img {
  width: 100px;
}

#counter .counter_item .counter_content .count_num {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--text-black);
}

#counter .counter_item .counter_content .count_name {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #000;
  margin-bottom: 0;
}

/* Why Section Title */
#whySec {
  padding: 40px 0px;
  margin-top: 30px;
  background: url("../images/why_bg_btcmwi.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  padding-bottom: 120px;
}

#whySec .why_title {
  font-family: "Poppins", sans-serif;
  font-size: 55px;
  font-weight: bold;
  color: var(--text-black);
  text-align: center;
  margin-bottom: 50px;
}

#whySec .why_item {
  text-align: center;
  margin-top: 60px;
}

#whySec .why_item .why_item_wrap {
  position: relative;
  width: 95%;
  background: var(--text-white);
  margin: 0 auto;
  box-shadow: 0 0 15px #ddd;
  padding: 35px 40px;
  border-radius: 20px;
}

#whySec .why_item .why_item_wrap .icon {
  width: 100px;
  margin: 0 auto;
  margin-top: -80px;
  margin-bottom: 20px;
}

#whySec .why_item .why_item_title {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  color: var(--text-black);
  font-weight: bold;
  margin-bottom: 10px;
}

#whySec .why_item .why_content p {
  width: 90%;
  margin: 0 auto;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-black);
}

/* Default Section Css */
#deafultSec {
  padding: 150px 0;
}

#deafultSec.bg_color_1 {
  background: #f9f7fe;
}
#deafultSec.bg_color_1.has_bg {
  background: url(../images/user_friendly_dashboard_yjy8nn.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}
#deafultSec .def_sec_content h2 {
  font-family: "Poppins", sans-serif;
  font-size: 55px;
  font-weight: bold;
  color: var(--text-black);
  margin-bottom: 25px;
}

#deafultSec .def_sec_content p {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: normal;
  color: var(--text-black);
  line-height: 1.5;
  margin-bottom: 25px;
}

#deafultSec .def_sec_content .def_btn_wrap .def_btn {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 20px;
  width: 200px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--text-primary);
  color: var(--text-white);
  border-radius: 50px;
  transition: 0.5s;
}

#deafultSec .def_sec_content .def_btn_wrap .def_btn:hover {
  background: var(--home-btn-hover);
}

#deafultSec .def_right_img {
  position: relative;
}

#deafultSec .def_right_img .insc_size {
  max-width: 100%;
}

.sec_title .top_sm_title {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: bold;
  color: var(--home-hero-top-text);
  text-align: center;
  margin-bottom: 15px;
}

.sec_title .title_normal {
  font-family: "Poppins", sans-serif;
  font-size: 55px;
  font-weight: bold;
  color: var(--text-black);
  text-align: center;
  margin-bottom: 50px;
}

.def_animations {
  display: grid;
  grid-template-columns: 1fr 10fr 1fr;
  position: relative;
}

.def_animations .animations_left img {
  position: absolute;
}

.def_animations .animations_right img {
  position: absolute;
}

.def_animations .main_img {
  max-width: 90%;
}
.def_animations .main_img img {
  animation: float 3s infinite;
}
.def_animations .def_icon1 {
  top: 250px;
  left: 130px;
  animation: tada 2s infinite;
}

.def_animations .def_icon2 {
  top: 350px;
  left: 130px;
  animation: float 4s infinite;
}

.def_animations .def_icon3 {
  top: 500px;
  left: 150px;
  animation: wobble-bottom 2s infinite;
}

.def_animations .def_icon4 {
  top: 190px;
  right: 100px;
  animation: heartBeat 3s infinite;
}

.def_animations .def_icon5 {
  top: 290px;
  right: 65px;
  animation: rotation 7s infinite;
}

.animations_float {
  animation: float 4s infinite;
}

/* Payment Methods */

#paymentSec {
  padding: 150px 0px;
  background: url(../images/payment_method_bg_p4xqrp.jpg);
  background-size: cover;
  background-position: 0px -415px;
  overflow: hidden;
  background-repeat: no-repeat;
}

.payment_item {
  position: relative;
  left: 0px;
  animation: paymentItem1 30s infinite;
}
.payment_item_2 {
  position: relative;
  right: 0px;
  animation: paymentItem2 30s infinite;
}

@keyframes paymentItem1 {
  0% {
    left: -500px;
  }
  50% {
    left: 0px;
  }
  100% {
    left: -500px;
  }
}

@keyframes paymentItem2 {
  0% {
    right: -500px;
  }
  50% {
    right: 0px;
  }
  100% {
    right: -500px;
  }
}

/* FAQ's Page */

#faqPage.notAuth {
  padding: 50px 0px;
}

#faqPage.notAuth .site_accordion .accordion-item .accordion-button {
  font-weight: bold;
  background: var(--dark-text-primary);
  color: var(--text-black);
  border-color: var(--dark-text-primary);
}

#faqPage.notAuth .site_accordion .accordion-item .accordion-button::after {
  filter: brightness(0.5);
}

#faqPage.notAuth .site_accordion .accordion-item {
  border-color: var(--dark-text-primary);
}

#faqPage.notAuth .accordion-body {
  background: #161429;
  border-radius: 0px 0px 10px 10px;
}

#faqPage.authed {
  padding: 0px !important;
  background: none !important;
}

.faqAccordian .accordion-item {
  margin-bottom: 20px;
  border: none;
}

.faqAccordian .accordion-item .accordion-button {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  margin-bottom: 0;
  font-weight: bold;
  color: var(--text-black);
  text-align: left;
  border: none;
}

.faqAccordian .accordion-item .accordion-button::after {
  background-image: url(../images/arrow_xxwzfo.png);
}

.faqAccordian .accordion-item .accordion-button:not(.collapsed) {
  background: var(--text-white);
}

.accordion-button:focus {
  box-shadow: none;
}

/* Testimonials */
#testimonials {
  padding: 150px 0;
  background: url(../images/payment_method_bg_p4xqrp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.testimonial_item .testimonials_wraper {
  position: relative;
  width: 92%;
  margin: 0 auto;
  background: var(--text-white);
  padding: 30px 50px;
  margin-bottom: 20px;
  box-shadow: 0 10px 37px #ddddddb0;
  margin-top: 60px;
  margin-bottom: 60px;
  top: -50px;
  cursor: pointer;
}
.testimonials
  .slick-slide:nth-child(odd)
  .testimonial_item
  .testimonials_wraper {
  top: 0px;
}

.testimonial_item .testimonials_wraper .testimoni_content p {
  font-size: 18px;
  line-height: 30px;
  font-weight: normal;
  color: var(--text-black);
  margin-bottom: 20px;
  min-height: 180px;
  max-height: 180px;
}

.testimonial_item .testimonials_wraper .testimoni_content h4 {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 24px;
  color: var(--text-black);
  line-height: 30px;
}

.testimonial_item .testimonials_wraper .testimoni_content img {
  margin-bottom: 20px;
}

.testimonials
  .slick-slide:nth-child(odd)
  .testimonial_item
  .testimonials_wraper {
  background: var(--text-primary) !important;
}

.testimonial_item .testimonials_wraper .item_icon::after {
  content: "";
  background: url(../images/quote_1_svjvm7.png);
  width: 45px;
  height: 45px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 20px;
}

.testimonials
  .slick-slide:nth-child(odd)
  .testimonial_item
  .testimonials_wraper
  .item_icon::after {
  background: url(../images/quote_2_z1gerb.png);
  width: 45px;
  height: 45px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 20px;
}

.testimonials
  .slick-slide:nth-child(odd)
  .testimonial_item
  .testimonials_wraper
  .testimoni_content
  p,
.testimonials
  .slick-slide:nth-child(odd)
  .testimonial_item
  .testimonials_wraper
  .testimoni_content
  h4 {
  color: #fff;
}

.blog_wraper {
  background: #222242;
  padding: 15px;
  border: 1px solid var(--dark-text-primary);
  margin-bottom: 25px;
  box-shadow: 0 0 10px #00ffa38c;
  border-radius: 10px;
}

.blog_content h4 {
  font-family: "Poppins", sans-serif;
  color: var(--text-white);
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
  max-height: 100px;
}

.blog_content .blog_content {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: var(--text-white);
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5; /* number of lines to show */
  -webkit-box-orient: vertical;
}
.blog_content .blog_content > p span,
.blog_content .blog_content > * {
  color: var(--text-white) !important;
  background: transparent !important;
}

.blog_btn_wrap {
  margin-top: 15px;
}

.blog_btn_wrap .btn.btn-primary {
  background: var(--dark-text-primary);
  border-color: var(--dark-text-primary);
  border-radius: 10px;
  color: #000;
  font-weight: bold;
  padding: 10px 30px;
  font-size: 16px;
}

.blog_btn_wrap .btn.btn-primary:hover {
  background: var(--dark-text-primary);
  box-shadow: 0 0 5px #141e31;
}
/* v2 qna section */
.sig_qna_wrap {
  width: 95%;
  margin: 0 auto !important;
  position: relative;
  background: #ffffff4d;
  padding: 10px 20px;
  border-radius: 15px;
  border: 2px solid #4a16bf94;
  min-height: 470px;
  max-height: 470px;
  cursor: pointer;
}

.sig_qna_wrap .num_item {
  color: #4a16bf;
  width: 70px;
  display: flex;
  height: 70px;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: bold;
  border-radius: 50px;
  margin-bottom: 15px;
  border: 2px solid #4a16bf94;
}
.sig_qna_wrap .qna_cont h4 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: bold;
}

.sig_qna_wrap .itm_btn {
  text-align: right;
  position: absolute;
  bottom: 20px;
  right: 25px;
}

.sig_qna_wrap .itm_btn a {
  font-size: 18px;
  font-weight: bold;
  color: var(--text-black);
  text-decoration: none;
  transition: 0.5s;
}

.sig_qna_wrap .itm_btn a:hover {
  color: var(--text-primary);
}

.sig_qna_wrap .qna_cont .txt {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: var(--text-black);
  font-weight: normal;
  overflow: auto;
  max-height: 250px;
  margin-top: 15px;
}

/* width */
.sig_qna_wrap .qna_cont .txt::-webkit-scrollbar {
  width: 4px;
}

/* Track */
.sig_qna_wrap .qna_cont .txt::-webkit-scrollbar-track {
  background: #ffffffd3;
}

/* Handle */
.sig_qna_wrap .qna_cont .txt::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
.sig_qna_wrap .qna_cont .txt::-webkit-scrollbar-thumb:hover {
  background: #555;
}

#faqSlider .slick-dots {
  bottom: -50px;
}

#faqSlider .slick-dots li button:before {
  font-size: 16px;
  color: var(--text-primary);
}
#faqSlider .slick-dots li {
  margin: 0;
}
/*
*
*
*
* Responsive Area Start For Home Page
*
*
*
*/

@media only screen and (max-width: 1260px) {
  #hero {
    min-height: 800px;
    overflow: hidden;
  }
  #hero .banner_content h1 > span.title_top {
    font-size: 30px;
  }
  #hero .banner_content h1 {
    font-size: 45px;
  }
  #hero .banner_content p {
    font-size: 18px;
    margin-bottom: 10px;
  }
  #hero .banner_content .btn-hero {
    font-size: 18px;
    height: 50px;
  }
  #hero .banner_img .icon1 {
    left: 50px;
    top: 245px;
    width: 50px;
  }
  #hero .banner_img .icon2 {
    top: 337px;
    left: 100px;
    width: 55px;
  }
  #hero .banner_img .icon3 {
    top: 437px;
    width: 60px;
    left: 31px;
  }
  #hero .banner_img .icon4 {
    top: 526px;
    left: 110px;
  }
  #hero .banner_img .icon5 {
    top: 590px;
    left: 15px;
    width: 50px;
  }
  #hero .banner_img .icon6 {
    top: 215px;
    width: 60px;
    left: -152px;
  }

  #hero .banner_img .icon7 {
    top: 300px;
    left: -70px;
    width: 50px;
  }
  #hero .banner_img .icon8 {
    top: 400px;
    left: -128px;
    width: 60px;
  }
  #hero .banner_img .icon9 {
    top: 480px;
    left: -30px;
    width: 60px;
  }
  #hero .banner_img .icon10 {
    top: 600px;
    left: -98px;
    width: 60px;
  }
  #login .login_box {
    padding: 30px 12px;
  }
  .login_box .btn-signin {
    height: 50px;
    font-size: 18px;
  }
  .login_box .in_group .in_control {
    height: 50px;
    font-size: 18px;
    padding-left: 40px;
  }
  .login_box .in_group .icon {
    font-size: 18px;
    top: 12px;
    left: 13px;
  }
  .forgot_password a {
    color: var(--text-black);
    font-size: 18px;
    text-decoration: none;
  }
  .no_account a {
    font-size: 18px;
    color: var(--text-black);
    text-decoration: none;
  }
  #counter {
    padding: 50px 0px;
  }
  #counter .counter_item {
    gap: 12px;
  }
  #counter .counter_item .counter_icon img {
    width: 60px;
  }
  #counter .counter_item .counter_content .count_num {
    font-size: 30px;
    margin-bottom: 5px;
  }
  #counter .counter_item .counter_content .count_name {
    font-size: 16px;
  }
  #whySec {
    margin-top: 0px;
    padding-bottom: 50px;
  }
  #whySec .why_title {
    font-size: 35px;
  }
  #whySec .why_item {
    margin-top: 50px;
  }
  #whySec .why_item .why_item_wrap {
    width: 100%;
    padding: 30px 22px;
    border-radius: 10px;
  }
  #whySec .why_item .why_item_wrap .icon {
    width: 90px;
    margin-top: -75px;
  }
  #whySec .why_item .why_item_title {
    font-size: 25px;
  }
  #whySec .why_item .why_content p {
    width: 100%;
    font-size: 16px;
  }
  #deafultSec {
    padding: 40px 0;
  }
  #deafultSec .def_sec_content h2 {
    font-size: 35px;
    margin-bottom: 15px;
  }
  #deafultSec .def_sec_content p {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  #deafultSec .def_sec_content .def_btn_wrap .def_btn {
    height: 50px;
    font-size: 18px;
  }

  #deafultSec .def_right_img .insc_size {
    max-width: 100%;
  }
  #paymentSec {
    padding: 50px 0;
  }
  .sec_title .top_sm_title {
    font-size: 25px;
    margin-bottom: 12px;
  }
  .sec_title .title_normal {
    font-size: 35px;
    margin-bottom: 35px;
  }
  .sec_title.mb-5 {
    margin-bottom: 2rem !important;
  }
  #paymentSec {
    background-position: 0px -40px;
  }
  .payment_item img {
    max-width: 1400px;
  }
  .payment_item_2 img {
    max-width: 1400px;
  }
  @keyframes paymentItem1 {
    0% {
      left: -800px;
    }
    50% {
      left: 400px;
    }
    100% {
      left: -800px;
    }
  }

  @keyframes paymentItem2 {
    0% {
      right: -200px;
    }
    50% {
      right: 1000px;
    }
    100% {
      right: -200px;
    }
  }
  #faq {
    padding: 50px 0px;
    background-position: 0px -454px;
  }
  .faqAccordian .accordion-item .accordion-button {
    font-size: 18px;
  }
  .faqAccordian .accordion-body {
    font-size: 16px;
  }
  .sig_qna_wrap .qna_cont h4 {
    font-size: 20px;
  }
  .sig_qna_wrap .num_item {
    font-size: 25px;
    width: 60px;
    height: 60px;
  }
  .sig_qna_wrap .itm_btn a {
    font-size: 16px;
  }
  #testimonials {
    padding: 50px 0px;
  }
  .testimonial_item .testimonials_wraper {
    width: 90%;
    padding: 19px 20px;
  }
  .testimonial_item .testimonials_wraper .testimoni_content p {
    font-size: 18px;
    min-height: 150px;
    max-height: 150px;
    line-height: 28px;
  }
  .testimonials
    .slick-slide:nth-child(odd)
    .testimonial_item
    .testimonials_wraper
    .item_icon::after {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
  }
  .testimonial_item .testimonials_wraper .testimoni_content img {
    margin-bottom: 12px;
    width: 120px;
  }
  .testimonial_item .testimonials_wraper .item_icon::after {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
  }
  .testimonial_item .testimonials_wraper .testimoni_content h4 {
    font-size: 24px;
  }
  .def_animations .def_icon1 {
    top: 200px;
    left: 125px;
    width: 60px;
  }
  .def_animations .def_icon2 {
    top: 300px;
    width: 60px;
    left: 170px;
  }
  .def_animations .def_icon3 {
    top: 390px;
    left: 115px;
    width: 60px;
  }
  .def_animations .def_icon4 {
    top: 160px;
    right: 70px;
    width: 60px;
  }
  .def_animations .def_icon5 {
    top: 250px;
    width: 60px;
    right: 100px;
  }
}

@media only screen and (max-width: 992px) {
  #hero {
    min-height: 800px;
    overflow: hidden;
  }
  #hero .banner_content h1 > span.title_top {
    font-size: 22px;
  }
  #hero .banner_content h1 {
    font-size: 35px;
  }
  #hero .banner_content p {
    font-size: 16px;
    margin-bottom: 0px;
  }
  #hero .banner_content .btn-hero {
    font-size: 16px;
    height: 45px;
  }
  #hero .banner_img .icon1 {
    left: 20px;
    top: 160px;
    width: 40px;
  }
  #hero .banner_img .icon2 {
    top: 225px;
    left: 55px;
    width: 45px;
  }
  #hero .banner_img .icon3 {
    top: 285px;
    width: 45px;
    left: 0px;
  }
  #hero .banner_img .icon4 {
    top: 340px;
    left: 45px;
  }
  #hero .banner_img .icon5 {
    top: 415px;
    left: -5px;
    width: 40px;
  }
  #hero .banner_img .icon6 {
    top: 130px;
    width: 45px;
    left: -85px;
  }

  #hero .banner_img .icon7 {
    top: 210px;
    left: -40px;
    width: 45px;
  }
  #hero .banner_img .icon8 {
    top: 308px;
    left: -74px;
    width: 50px;
  }
  #hero .banner_img .icon9 {
    top: 358px;
    left: -15px;
    width: 45px;
  }
  #hero .banner_img .icon10 {
    top: 440px;
    left: -50px;
    width: 50px;
  }
  #login .login_box {
    padding: 30px 12px;
  }
  .login_box .btn-signin {
    height: 45px;
    font-size: 16px;
  }
  .login_box .in_group .in_control {
    height: 45px;
    font-size: 16px;
    padding-left: 35px;
  }
  .login_box .in_group .icon {
    font-size: 16px;
    top: 10px;
    left: 14px;
  }
  .forgot_password a {
    color: var(--text-black);
    font-size: 16px;
    text-decoration: none;
  }
  .no_account a {
    font-size: 16px;
    color: var(--text-black);
    text-decoration: none;
  }
  #counter {
    padding: 40px 0px;
  }
  #counter .counter_item {
    gap: 10px;
  }
  #counter .counter_item .counter_icon img {
    width: 50px;
  }
  #counter .counter_item .counter_content .count_num {
    font-size: 25px;
    margin-bottom: 0px;
  }
  #counter .counter_item .counter_content .count_name {
    font-size: 14px;
  }
  #whySec {
    margin-top: 0px;
    padding-bottom: 40px;
  }
  #whySec .why_title {
    font-size: 30px;
  }
  #whySec .why_item {
    margin-top: 40px;
  }
  #whySec .why_item .why_item_wrap {
    width: 100%;
    padding: 30px 22px;
    border-radius: 10px;
  }
  #whySec .why_item .why_item_wrap .icon {
    width: 90px;
    margin-top: -75px;
  }
  #whySec .why_item .why_item_title {
    font-size: 20px;
  }
  #whySec .why_item .why_content p {
    width: 100%;
    font-size: 14px;
  }
  #deafultSec {
    padding: 40px 0;
  }
  #deafultSec .def_sec_content h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  #deafultSec .def_sec_content p {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  #deafultSec .def_sec_content .def_btn_wrap .def_btn {
    height: 45px;
    font-size: 16px;
  }

  #deafultSec .def_right_img .insc_size {
    max-width: 100%;
  }
  #paymentSec {
    padding: 40px 0;
  }
  .sec_title .top_sm_title {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .sec_title .title_normal {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .sec_title.mb-5 {
    margin-bottom: 1.5rem !important;
  }
  #paymentSec {
    background-position: 0px -40px;
  }
  .payment_item img {
    max-width: 1400px;
  }
  .payment_item_2 img {
    max-width: 1400px;
  }
  @keyframes paymentItem1 {
    0% {
      left: -800px;
    }
    50% {
      left: 400px;
    }
    100% {
      left: -800px;
    }
  }

  @keyframes paymentItem2 {
    0% {
      right: -200px;
    }
    50% {
      right: 1000px;
    }
    100% {
      right: -200px;
    }
  }
  #faq {
    padding: 40px 0px;
    background-position: 0px -454px;
  }
  .faqAccordian .accordion-item .accordion-button {
    font-size: 16px;
  }
  .faqAccordian .accordion-body {
    font-size: 14px;
  }
  #testimonials {
    padding: 40px 0px;
  }
  .testimonial_item .testimonials_wraper {
    width: 95%;
    padding: 19px 20px;
  }
  .testimonial_item .testimonials_wraper .testimoni_content p {
    font-size: 16px;
    line-height: 24px;
  }
  .testimonials
    .slick-slide:nth-child(odd)
    .testimonial_item
    .testimonials_wraper
    .item_icon::after {
    width: 35px;
    height: 35px;
    margin-bottom: 5px;
  }
  .testimonial_item .testimonials_wraper .testimoni_content img {
    margin-bottom: 10px;
    width: 100px;
  }
  .testimonial_item .testimonials_wraper .item_icon::after {
    width: 35px;
    height: 35px;
    margin-bottom: 5px;
  }
  .testimonial_item .testimonials_wraper .testimoni_content h4 {
    font-size: 20px;
  }
  .def_animations .def_icon1 {
    top: 120px;
    left: 50px;
    width: 40px;
  }
  .def_animations .def_icon2 {
    top: 195px;
    width: 60px;
    left: 85px;
  }
  .def_animations .def_icon3 {
    top: 265px;
    left: 40px;
    width: 50px;
  }
  .def_animations .def_icon4 {
    top: 90px;
    right: 40px;
    width: 50px;
  }
  .def_animations .def_icon5 {
    top: 185px;
    width: 50px;
    right: 25px;
  }
}

@media only screen and (max-width: 767px) {
  #hero {
    overflow: hidden;
  }
  #hero .banner_content {
    margin-top: 70px;
  }
  #hero .banner_content h1 {
    text-align: center;
    font-size: 30px;
  }
  #hero .banner_content h1 > span.title_top {
    font-size: 20px;
  }
  #hero .banner_content p {
    font-size: 14px;
    text-align: center;
    margin: 0;
  }
  #hero .banner_content .btn-hero {
    margin: 0 auto;
    font-size: 14px;
    width: 150px;
    height: 40px;
  }
  #hero .banner_img {
    margin-top: -70px;
  }
  #hero .banner_img .icon1 {
    top: 170px;
    left: 20px;
    width: 40px;
  }
  #hero .banner_img .icon2 {
    top: 240px;
    left: 45px;
    width: 50px;
  }
  #hero .banner_img .icon3 {
    top: 320px;
    left: 6px;
    width: 45px;
  }
  #hero .banner_img .icon4 {
    top: 371px;
    left: 55px;
    width: 43px;
  }
  #hero .banner_img .icon5 {
    top: 446px;
    left: 25px;
    width: 34px;
  }
  #hero .banner_img .icon6 {
    top: 145px;
    left: -90px;
    width: 50px;
  }
  #hero .banner_img .icon7 {
    top: 215px;
    width: 45px;
    left: -40px;
  }
  #hero .banner_img .icon8 {
    top: 290px;
    left: -100px;
    width: 50px;
  }
  #hero .banner_img .icon9 {
    top: 340px;
    left: -40px;
    width: 50px;
  }
  #hero .banner_img .icon10 {
    top: 427px;
    left: -64px;
    width: 50px;
  }
  #login .login_box {
    padding: 35px 15px;
    box-shadow: 0 5px 10px #ddd;
  }
  .login_box .in_group .in_control {
    height: 45px;
    padding-left: 35px;
    font-size: 16px;
  }
  .login_box .in_group .icon {
    font-size: 18px;
    top: 10px;
    left: 14px;
  }
  .login_box .btn-signin {
    font-size: 14px;
    height: 40px;
    margin-top: 30px;
  }
  .login_box .in_group {
    margin-bottom: 10px;
  }
  .remember_me {
    margin-top: -70px;
  }
  .remember_me_has_cap {
    margin-top: -149px;
  }
  .noAuth .stat-wrap {
    margin-bottom: 10px;
  }
  .forgot_password {
    margin-top: 10px;
    text-align: center;
  }
  .forgot_password a {
    color: var(--text-black);
    text-decoration: none;
  }
  .no_account {
    margin-top: 10px;
    text-align: center;
  }
  .no_account a {
    color: var(--text-black);
    text-decoration: none;
  }
  #counter {
    padding: 40px 0px;
  }
  #counter .counter_item .counter_icon img {
    width: 60px;
  }
  #counter .counter_item .counter_content .count_num {
    font-size: 30px;
    margin-bottom: 0px;
  }
  #counter .counter_item .counter_content .count_name {
    font-size: 14px;
  }
  #counter .counter_item {
    margin-bottom: 20px;
    margin-left: 50px;
  }
  #whySec {
    margin-top: 0px;
    padding: 40px 0;
  }
  #whySec .why_title {
    font-size: 25px;
  }
  #whySec .why_item .why_item_wrap .icon {
    margin: 0 auto;
    margin-top: -75px;
    width: 80px;
    margin-bottom: 10px;
  }

  #whySec .why_item {
    margin-top: 55px;
  }
  #whySec .why_item .why_item_title {
    font-size: 20px;
  }
  #whySec .why_item .why_content p {
    font-size: 16px;
    line-height: 1.4;
  }
  #deafultSec {
    padding: 40px 0px;
  }
  #deafultSec .def_sec_content h2 {
    font-size: 25px;
    text-align: center;
    margin-bottom: 10px;
  }
  #deafultSec .def_sec_content h2 br {
    display: none;
  }
  #deafultSec .def_sec_content p {
    font-size: 16px;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 10px;
  }
  #deafultSec .def_sec_content .def_btn_wrap {
    text-align: center;
    margin-bottom: 20px;
  }
  #deafultSec .def_sec_content .def_btn_wrap .def_btn {
    width: 150px;
    height: 40px;
    font-size: 14px;
    margin: 0 auto;
  }
  #deafultSec .def_right_img .insc_size {
    max-width: 100%;
  }
  #paymentSec {
    padding: 40px 0px;
  }
  .sec_title .top_sm_title {
    font-size: 20px;
    margin-bottom: 10px !important;
  }
  .sec_title .title_normal {
    font-size: 25px;
    margin-bottom: 10px;
  }

  .payment_item img {
    display: none;
  }

  .payment_item_2 img {
    display: none;
  }

  .showMob {
    display: block;
  }

  #paymentSec > .container > .row > .mb-5 {
    margin-bottom: 1rem !important;
  }
  #paymentSec {
    background-position: 0px 0px;
  }

  #faq {
    padding: 40px 0px;
  }
  #faq .sec_title.mb-5 {
    margin-bottom: 1rem !important;
  }
  #faq .sec_title .title_normal {
    font-size: 25px;
    text-align: center;
    margin-bottom: 10px;
  }
  .faqAccordian .accordion-item {
    margin-bottom: 5px;
  }
  .faqAccordian .accordion-item .accordion-button {
    font-size: 14px;
    padding: 8px;
  }
  #faq {
    background-position: 0px -278px;
  }
  .faqAccordian .accordion-item .accordion-body {
    font-size: 14px;
  }
  .faqAccordian .accordion-item .accordion-button::after {
    width: 0.7rem;
    height: 0.7rem;
    background-size: contain;
  }
  #testimonials {
    padding: 40px 0px;
  }
  .testimonial_item .testimonials_wraper {
    width: 95%;
  }
  .testimonial_item .testimonials_wraper .item_icon::after {
    width: 35px;
    height: 35px;
  }
  .testimonials
    .slick-slide:nth-child(odd)
    .testimonial_item
    .testimonials_wraper
    .item_icon::after {
    width: 35px;
    height: 35px;
  }
  .testimonial_item .testimonials_wraper {
    padding: 20px 15px;
  }
  .testimonial_item .testimonials_wraper .testimoni_content p {
    font-size: 14px;
    line-height: 1.5;
  }
  .testimonial_item .testimonials_wraper .testimoni_content img {
    width: 90px;
    margin-bottom: 10px;
  }
  .testimonial_item .testimonials_wraper .testimoni_content h4 {
    font-size: 18px;
  }
  .def_animations .def_icon1 {
    top: 100px;
    left: 50px;
    width: 40px;
  }
  .def_animations .def_icon2 {
    top: 180px;
    left: 45px;
    width: 70px;
  }
  .def_animations .def_icon3 {
    top: 278px;
    left: 30px;
  }
  .def_animations .def_icon4 {
    top: 75px;
    right: 20px;
    width: 50px;
  }
  .def_animations .def_icon5 {
    top: 160px;
    right: 20px;
    width: 55px;
  }

  .sig_qna_wrap .qna_cont h4 {
    font-size: 18px;
  }
  .sig_qna_wrap .qna_cont .txt {
    font-size: 14px;
  }
  #faqSlider .slick-dots li button:before {
    font-size: 14px;
  }
}

#blog_post {
  background: url(../images/7qxq323fbhohcabk.png);
  background-repeat: no-repeat;
  background-position: right top 170px;
}

#single_blog_post {
  margin-top: 35px;
}

#single_blog_post .blog_img > img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 20px;
}

#single_blog_post .signle_blog_title {
  color: var(--text-white) !important;
}
.blog_content p,
.blog_content span,
.blog_content h1,
.blog_content h2,
.blog_content h3,
.blog_content h4,
.blog_content h5,
.blog_content h6,
.blog_content a,
.blog_content h6,
#single_blog_post p,
#single_blog_post span,
#single_blog_post ul,
#single_blog_post ul li,
#single_blog_post ul li.MsoNormal,
#single_blog_post h3 ul li,
#single_blog_post .post_content a,
#single_blog_post .post_content font,
#single_blog_post .post_content span,
#single_blog_post h1,
#single_blog_post h2,
#single_blog_post h3,
#single_blog_post h4,
#single_blog_post h5,
#single_blog_post h6 {
  color: var(--text-white) !important;
  background: transparent !important;
}

.post_content {
  border: 2px solid var(--dark-text-primary);
  background: #222242;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  margin-top: 30px;
}

.post_content .blog_content > * {
  color: #fff !important;
  background: transparent !important;
}

.post_content .blog_content ul {
  padding-left: 30px;
}

.btn.btn-primary.back_btn {
  margin-bottom: 100px;
  padding: 10px 30px;
}

.benifit_name h4 {
  color: var(--text-primary);
}

.dashboard.nightmode .benifit_name h4 {
  color: var(--dark-text-primary);
}

/*
*
*
* Home Design CSS END
*
*/

#howItworks {
  min-height: 750px;
  background: url(../images/7qxq323fbhohcabk.png);
  padding: 150px 0px;
  background-repeat: no-repeat;
  background-position: right top 72px;
}
.blog__page .how_it_content h1,
#howItworks .how_it_content h1 {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 55px;
  line-height: 1.2;
  color: var(--text-white);
}

#howItworks .how_it_content p {
  color: var(--text-white);
}
#howItworks .how_it_content h1 > span {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: bold;
  color: var(--dark-text-primary);
}
.blog__page .how_it_content .how_btn .btn_how,
#howItworks .how_it_content .how_btn .btn_how {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--text-black);
  background: var(--dark-text-primary);
  width: 200px;
  height: 60px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.5s;
}
.blog__page .how_it_content .how_btn .btn_how:hover,
#howItworks .how_it_content .how_btn .btn_how:hover {
  background: var(--dark-text-primary);
  color: var(--text-black);
}
.blog__page .how_img img,
#howItworks .how_img img {
  animation: float 3s ease infinite;
}

#howItWorksBox {
  padding: 150px 0px;
}

.how_works_btn_wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-between;
}
.how_works_btn_wrap .nav-link {
  font-family: "Poppins";
  display: flex;
  gap: 10px;
  align-items: center;
  background: var(--text-white);
  border-radius: 50px;
  padding: 8px;
  min-width: 260px;
  font-size: 20px;
  color: var(--text-black);
  font-weight: bold;
  box-shadow: 0 0 10px #272745;
  border: 2px solid var(--text-white);
}

.how_works_btn_wrap .nav-link .btn_serial {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  background: #04c47f;
  color: var(--text-black);
  font-weight: bold;
  border-radius: 50px;
}

.how_works_btn_wrap .nav-link.active {
  background: var(--dark-text-primary) !important;
  color: var(--text-black);
  border-color: var(--dark-text-primary) !important;
  cursor: pointer;
}

.how_it_works_tab_content {
  margin-top: 45px;
}

.how_item_content h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--text-white);
}

.how_item_content p {
  font-size: 16px;
  color: var(--text-white);
}
.how_item_content p > strong {
  font-weight: bolder;
  color: var(--dark-text-primary);
}

.how_it_works_tab_content .tab-pane {
  background: #222242;
  min-height: 750px;
  box-shadow: 0 0 20px #272745;
  border-radius: 25px;
  padding: 30px;
}

.how_item_img {
  text-align: right;
}

.how_item_info {
  background: #f6f7fb;
  border: 2px solid var(--text-primary);
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 15px;
}

.info_title h4 {
  font-size: 24px;
  font-weight: bold;
  color: var(--text-black);
}
.info_title h4 > span {
  font-size: 36px;
  color: var(--text-primary);
}

.info_content p {
  font-size: 16px;
  font-weight: normal;
  color: var(--text-black);
}

.noAuth .navbar.navbar-expand-lg.navbar-light.bg-light {
  background: transparent !important;
  padding: 15px 0;
}

.noAuth .navbar-light .navbar-nav .nav-link {
  color: var(--text-white);
}
.noAuth .navbar-light .navbar-nav .nav-link.active {
  color: var(--dark-text-primary);
}
#navbar {
  transition: 0.5s ease;
}
#navbar.shrink.fixed-top {
  background: #161429a6 !important;
  backdrop-filter: blur(10px);
}
#navbar.top__navfixer {
  background: #161429c1 !important;
  backdrop-filter: blur(14px);
}

.noAuth .navbar-brand img {
  margin-top: -15px;
}

.noAuth .nav-link {
  font-size: 18px;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
}

.noAuth .nav-link.active {
  font-weight: 800;
}

.terms__btn__card .nav-pills .nav-link.active,
.terms__btn__card .nav-pills .show > .nav-link {
  background: var(--dark-text-primary);
  color: var(--text-black) !important;
}

.terms__btn__card .nav-pills .nav-link {
  background: #161429;
  margin-right: 5px;
  color: var(--text-white);
}

#terms .card-body ul li,
#terms .card-body a,
#terms .card-body strong,
#terms .card-body p {
  color: var(--text-white) !important;
}

#signUp {
  background: url(../images/7qxq323fbhohcabk.png);
  background-position: right top 72px;
  background-repeat: no-repeat;
  overflow: hidden;
}

.sigup_title h1 {
  text-align: center;
  font-weight: 800;
  color: var(--text-white);
  margin-top: 50px;
}

@media only screen and (max-width: 1280px) {
  .how_works_btn_wrap {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 15px;
  }
  .how_works_btn_wrap .nav-link {
    min-width: 100%;
    width: 100%;
    gap: 10px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 992px) {
  #howItworks {
    padding: 50px 0px;
  }
  .blog__page .how_it_content,
  #howItworks .how_it_content {
    margin-bottom: 20px;
  }
  .blog__page .how_it_content h1,
  #howItworks .how_it_content h1 {
    font-size: 35px;
  }
  .blog__page .how_it_content h1 > span,
  #howItworks .how_it_content h1 > span {
    font-size: 25px;
  }
  .blog__page .how_it_content .how_btn .btn_how,
  #howItworks .how_it_content .how_btn .btn_how {
    height: 50px;
    font-size: 18px;
  }

  .how_img {
    text-align: center;
    margin-top: 15px;
  }
  .how_img img {
    width: 90%;
  }
  #howItWorksBox {
    padding: 50px 0px;
  }
  .how_works_btn_wrap {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 5px;
  }
  .how_works_btn_wrap .nav-link {
    min-width: 100%;
    width: 100%;
    gap: 5px;
    font-size: 14px;
  }

  .how_works_btn_wrap .nav-link .btn_serial {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }
  .how_it_works_tab_content .tab-pane {
    padding: 20px;
    min-height: 500px;
  }

  .how_item_content h2 {
    font-size: 28px;
  }
  .how_item_content p {
    font-size: 16px;
  }
  .how_item_info {
    padding: 15px;
    margin-bottom: 10px;
  }
  .info_title h4 {
    font-size: 18px;
  }
  .info_title h4 > span {
    font-size: 22px;
  }
  .info_content p {
    font-size: 16px;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  #howItworks {
    padding: 70px 0px;
  }
  .blog__page .how_it_content,
  #howItworks .how_it_content {
    margin-bottom: 15px;
  }
  .blog__page .how_it_content h1,
  #howItworks .how_it_content h1 {
    font-size: 30px;
    text-align: center;
  }
  .blog__page .how_it_content h1 > span,
  #howItworks .how_it_content h1 > span {
    font-size: 20px;
  }
  .blog__page .how_it_content .how_btn .btn_how,
  #howItworks .how_it_content .how_btn .btn_how {
    height: 40px;
    font-size: 16px;
    margin: 0 auto;
  }
  .how_img {
    text-align: center;
    margin-top: 15px;
  }
  .how_img img {
    width: 80%;
  }
  #howItWorksBox {
    padding: 70px 0px;
  }
  .how_works_btn_wrap {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  .how_works_btn_wrap .nav-link {
    min-width: 45%;
    width: 100%;
    gap: 5px;
    font-size: 12px;
  }

  .how_works_btn_wrap .nav-link .btn_serial {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
  .how_works_btn_wrap .nav-link.active {
    font-size: 12px;
    padding: 8px;
  }
  .how_it_works_tab_content .tab-pane {
    padding: 15px;
    min-height: 300px;
  }

  .how_item_content h2 {
    font-size: 24px;
  }
  .how_item_content p {
    font-size: 14px;
  }
  .how_item_info {
    padding: 15px;
    margin-bottom: 10px;
  }
  .info_title h4 {
    font-size: 18px;
  }
  .info_title h4 > span {
    font-size: 22px;
  }
  .info_content p {
    font-size: 14px;
    margin-bottom: 0;
  }
}

/* Mobile navigation without login */
#navMob {
  transform: translateY(2000px);
  position: fixed;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s ease-in-out;
}

@media only screen and (max-width: 990px) {
  #navMob {
    bottom: 0px;
    z-index: 9999999999;
    width: 100%;
    background: #fff;
    border-radius: 30px 30px 0px 0px;
    box-shadow: 0 0 10px #d3cfcf;
    padding-bottom: 29px;
  }
  #navMob.active {
    transform: translateY(0px);
    opacity: 1;
    pointer-events: auto;
    bottom: 0;
  }
}

.nav_content {
  width: 90%;
  margin: 0 auto;
}

.menu_mobs {
  list-style-type: none;
  padding: 0;
  margin-top: 20px;
}

.menu_mobs li a {
  font-size: 16px;
  color: #000;
  font-weight: bold;
  display: block;
  margin-bottom: 15px;
}

.menu_mobs li a.active {
  color: var(--text-primary);
}

#navMob .nav_content .btn {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0;
  margin: 0;
}
#cls {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #4a16bf59;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  font-size: 20px;
  color: #4a16bf;
  z-index: 999;
}
.btn_icon {
  position: absolute;
  background: #2b0a74;
  width: 30px;
  height: 30px;
  border-radius: 50px;
  display: inline-block;
  line-height: 30px;
  right: 8px;
  top: 7px;
}

#navMob .nav_content .btn a:first-child {
  background: #e5e5e5;
  color: #232323;
}
#navMob .nav_content .btn a:last-child {
  position: relative;
}
#navMob .nav_content .btn a {
  background: var(--text-primary);
  padding: 10px 0px;
  border-radius: 50px;
  color: #ffff;
  font-weight: bold;
  font-size: 16px;
}

#navbar.shrink {
  top: -73px;
  transition: 0.5s ease-in-out;
}

#navbar.shrink.fixed-top {
  top: 0px;
  background: #fff;
  transition: 0.5s ease-in-out;
}

/* Sevice page modal design */

.serv_modal_close {
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--dark-text-primary);
  top: 15px;
  right: 15px;
  border-radius: 50px;
  z-index: 9;
  opacity: 1;
  color: #fff;
  border: none;
}

.servicesHead {
  min-height: 250px;
  background: linear-gradient(rgba(221, 221, 221, 5%), rgba(221, 221, 221, 5%)),
    linear-gradient(rgba(221, 221, 221, 5%), rgba(221, 221, 221, 5%)),
    url(../images/08xz2nr05ora49hs.png);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  padding-top: 50px;
  border-radius: 20px 20px 0px 0px;
}

#servDescriptionDialog .modal-body {
  padding: 0;
}

#servId {
  font-size: 18px;
  background: var(--dark-text-primary);
  padding: 5px 30px;
  display: inline-block;
  border-radius: 50px;
  color: var(--text-black);
  font-weight: bold;
}

#servDescriptionDialog .modal-content {
  background: var(--bg-darkmode);
  border-radius: 20px;
  border: none;
}

#serv_names {
  display: inline-block;
  width: 90%;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-white);
  margin: 0 auto;
  margin-top: 10px;
}

#serv_details {
  width: 85%;
  margin: 0 auto;
  background: var(--dark-text-primary);
  margin-top: -50px;
  padding: 15px;
  border-radius: 20px;
  box-shadow: 0 0 10px #1e1e1e63;
}

.serv_more_infos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: 50px;
  padding-bottom: 30px;
  width: 95%;
  margin: 0 auto;
}
.buyNOwBtn {
  width: 85%;
  margin: 0 auto;
  padding-bottom: 20px;
}
#buyNow {
  width: 100%;
  background: var(--dark-text-primary);
  display: block;
  padding: 10px 30px;
  border-radius: 50px;
  text-align: center;
  color: var(--text-black);
  font-size: 18px;
  font-weight: bold;
}

.ser_more_item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.serv_more_icon {
  width: 75px;
  height: 75px;
  background: linear-gradient(#00ffa3, #06a96e);
  color: #fff;
  font-size: 35px;
  line-height: 75px;
  border-radius: 50px;
  box-shadow: inset 0 0 10px #dddddd70;
}

.more_infos h5 {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  color: var(--text-white);
}

.more_infos > span {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark-text-primary);
}

.dashboard.nightmode .modal-content {
  background: var(--bg-sidebar-night);
}

.dashboard.nightmode #serv_names {
  color: var(--text-white);
}

.dashboard.nightmode #serv_details {
  background: var(--dark-bg-input);
  color: #fff !important;
}

.dashboard.nightmode #buyNow {
  background: var(--dark-text-primary);
}

.dashboard.nightmode .more_infos h5 {
  color: #fff;
}
.dashboard.nightmode .serv_more_icon {
  background: linear-gradient(#f9446c, #d92d53);
}
@media (min-width: 576px) {
  #servDescriptionDialog {
    max-width: 600px;
  }
}

@media (max-width: 576px) {
  .more_infos h5 {
    font-size: 13px;
  }
  .more_infos > span {
    font-size: 16px;
  }
  .servicesHead {
    min-height: 200px;
    padding-top: 10px;
  }
  .serv_modal_close {
    width: 30px;
    height: 30px;
  }

  .serv_more_infos {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .serv_more_icon {
    width: 60px;
    line-height: 60px;
    font-size: 20px;
    height: 60px;
  }
  #serv_details {
    font-size: 14px;
  }
  .logo_off_nav {
    width: 150px;
  }
}
#currency_changer5 {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#currency_changer5,
#currencyToggler2 {
  margin-bottom: 0px !important;
}
#currencyToggler2 {
  width: 45px;
  height: 45px;
  background-color: var(--bg-secondary);
  color: var(--bg-sidebar-day);
  font-size: 22px;
  padding: 0px;
  text-align: center;
  border-radius: 50px;
  border: 1px solid var(--bg-secondary);
  transition: 0.1s;
}
#currencyToggler2::after {
  display: none;
}

@media only screen and (max-width: 550px) {
  #currencyToggler2 {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 15px;
  }
  .user_settings {
    gap: 5px;
  }
}

#orders-drop {
  position: absolute !important;
  inset: 0px auto auto 0px !important;
  margin: 0px !important;
  transform: translate(0px, 42px) !important;
}

#orders-drop.line3 {
  transform: translate(0px, 62px) !important;
}

#category-drop {
  position: absolute !important;
  inset: 0px auto auto 0px !important;
  margin: 0px !important;
  transform: translate(0px, 42px) !important;
}

.show#dropdownMenu3,
.show#order-dd {
  box-shadow: 0 0 2px var(--text-primary);
}

@media only screen and (max-width: 550px) {
  #order-dd,
  #dropdownMenu3 {
    font-size: 12px;
  }
  #orders-drop {
    transform: translate(0px, 50px) !important;
  }
  .line3#orders-drop {
    transform: translate(0px, 69px) !important;
  }
  #orders-drop .dropdown-item {
    font-size: 12px;
  }
  .item_content .serviceLink {
    font-size: 10px;
  }
  .line2#category-drop {
    transform: translate(0px, 50px) !important;
  }
}

.gizli {
  display: none !important;
}

#proFile {
  border-radius: 150px;
  object-fit: cover;
}
.user_top_avatar {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: var(--dark-bg-input);
  border-radius: 50px;
  object-fit: cover;
}
.user_top_avatar img {
  border-radius: 50px;
  object-fit: cover;
}

.v2_avatar {
  width: 85px;
  height: 85px;
  background: #3a0f9e;
  border-radius: 85px;
  object-fit: cover;
  margin-bottom: 5px;
}

.v2_avatar img {
  width: 85px;
  height: 85px;
  object-fit: cover;
}
.btn_whatsapp {
  background: #25d366;
  padding: 15px 35px;
  border-radius: 50px;
  color: #ffff;
  font-size: 16px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn_whatsapp > i {
  font-size: 25px;
}
.support__btn__wrap {
  text-align: center;
}
.contact__item {
  background: #222242b5;
  padding: 50px 30px;
  margin-top: 20px;
  border: 2px solid #00ffa3;
  border-radius: 20px;
  min-height: 330px;
}

.contact__item__icon {
  text-align: center;
  margin-bottom: 20px;
}

.contact__item__icon img {
  width: 100px;
}

.contact__item__info {
  text-align: center;
}

.contact__item__info h2 {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  margin-bottom: 5px;
  text-align: center;
  color: var(--text-white);
}

.contact__item__info h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  color: var(--dark-text-primary);
}

.contact__item__info h3 > a {
  color: var(--dark-text-primary);
}

/* Drop Dwon Design */

.settings_drop {
  margin: 0;
  padding: 0;
  width: 350px;
  border-radius: 10px;
  border: 1px solid #4a16bf;
  padding: 10px;
  background: #4a16bf;
  box-shadow: 0 0 10px #000;
}

.nightmode .settings_drop {
  border-color: var(--dark-text-primary);
}
.user_menu_wraper {
  padding: 5px;
}
.user__menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.user__menu a {
  display: flex;
  background: #5815ed;
  padding: 5px;
  border-radius: 5px;
  align-items: center;
  gap: 10px;
  color: #fff;
  box-shadow: 0 3px 6px #040303;
}
.nightmode .user__menu a {
  background: var(--dark-text-primary);
}
span.user_menu_icon {
  width: 30px;
  height: 30px;
  background: #fff;
  color: #3a0f9e;
  text-align: center;
  line-height: 30px;
  border-radius: 5px;
}
.nightmode span.user_menu_icon {
  color: var(--dark-text-primary);
}
a.logout_btn {
  display: flex;
  background: #5815ed;
  padding: 5px;
  border-radius: 5px;
  align-items: center;
  gap: 10px;
  color: #fff;
  box-shadow: 0 3px 6px #040303;
  justify-content: center;
  min-height: 40px;
}
.nightmode a.logout_btn {
  background: var(--dark-text-primary);
}
@media only screen and (max-width: 550px) {
  .settings_drop {
    width: 300px;
    padding: 5px;
  }
  a.logout_btn {
    font-size: 14px;
    min-height: 30px;
  }
  span.user_menu_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    width: 25px;
    height: 25px;
  }
  .card-header.v2_header {
    padding: 15px;
  }
  .new_order_tabs .nav-link {
    border-radius: 6px;
    margin: 0px 2px;
    padding: 0.5rem 0.8rem;
  }
  .user__menu {
    gap: 7px;
    margin-bottom: 5px;
  }
}

@media only screen and (max-width: 320px) {
  .logo_off_nav {
    width: 102px;
  }
}

.mr__css {
  margin-right: 5px;
}
.dashboard .dayIcon {
  display: none;
}

.dashboard.nightmode .nightIcon {
  display: none;
}

.dashboard.nightmode .dayIcon {
  display: block;
}

.nightmode .table tr th,
.nightmode .table tr td {
  color: var(--text-white);
}

.nightmode .bg__custom {
  background: linear-gradient(#22213bdb, #22213bdb),
    url(../images/pattern.afd33a3d_a3iitl.svg),
    linear-gradient(#22213b, #22213b);
  border-radius: 30px;
}
.support__item > h4 {
  font-size: 22px;
  margin-bottom: 13px;
}

.support__item > h4 small {
  font-size: 12px;
}

.support__item .btn-primary {
  padding: 5px 10px;
  font-size: 14px;
}

.banner__image {
  border-radius: 15px;
  overflow: hidden;
}

@media only screen and (max-width: 550px) {
  .new_order_tabs.has_justify_mob > ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
  .new_order_tabs.has_justify_mob > ul > li button {
    width: 100%;
  }
  .dashboard .ticket_item .item_left .ticket_icon {
    display: none;
  }
  .dashboard .item_left h3 {
    font-size: 18px;
  }
  .support__item > h4 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .support__item > h4 small {
    font-size: 10px;
  }
}

/*
*
*
* Home Version 3
*
*
*
*/

.signup_btn_nav {
  min-width: 140px;
  height: 50px;
  display: flex;
  align-items: center;
  font-weight: 700;
  justify-content: center;
  background: #00ffa3;
  font-size: 20px;
  color: #000000;
  text-decoration: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.5s ease;
}

.btn__home:hover,
.signup_btn_nav:hover {
  background: #03d588;
}

.btn__home {
  display: inline-flex;
  width: auto;
  height: 50px;
  align-items: center;
  padding: 30px 40px;
  font-weight: 700;
  justify-content: center;
  background: #00ffa3;
  font-size: 20px;
  color: #000000;
  text-decoration: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.5s ease;
}

.btn__home.btn_outline {
  background: transparent;
  border: 2px solid #00ffa3;
}

.btn__home.btn_outline:hover {
  background: #00ffa3;
}

.why-item .btn__home {
  padding: 30px 25px;
  height: 40px;
}

.header_v3 .signup_btn_nav {
  min-width: 140px;
  height: 50px;
  display: flex;
  align-items: center;
  font-weight: 700;
  justify-content: center;
  background: #00ffa3;
  font-size: 20px;
  color: #000000;
  text-decoration: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.5s ease;
}

.btn__home:hover,
.header_v3 .signup_btn_nav:hover {
  background: #03d588;
}

#hero_v3 {
  position: relative;
  height: 900px;
  display: flex;
  align-items: center;
}

.hero__dott__1 {
  position: absolute;
  left: -70px;
  pointer-events: none;
  animation: float 10s ease infinite;
}

.hero_nion {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  pointer-events: none;
}

#hero_v3 .hero_content_v3 h4 {
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 48px;
  color: #00ffa3;
}

#hero_v3 .hero_content_v3 h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  color: #fff;
}

#hero_v3 .hero_content_v3 p {
  width: 70%;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 20px;
}
#hero_v3 .hero_login {
  width: 90%;
}
#hero_v3 .hero_login .login_group .form-control {
  font-size: 16px;
  font-weight: normal;
  padding: 10px 15px;
  background: #f4f7ff;
  color: var(--text-black);
  box-shadow: none;
  height: 50px;
  border-radius: 10px;
  margin-bottom: 10px;
}

#hero_v3 .hero_login a {
  color: #fff;
  text-decoration: none;
}

#hero_v3 .tools__login {
  color: #fff;
}
#hero_v3 .dont_have_an_acc a,
#hero_v3 .tools__login a {
  color: #fff;
  text-decoration: none;
}
#hero_v3 .rememberme,
#hero_v3 .restpassword,
#hero_v3 .dont_have_an_acc {
  color: #fff;
}

#hero_v3 .btn__signin {
  display: flex;
  gap: 5px;
  font-size: 18px;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  background: #00ffa3;
  width: 100%;
  height: 50px;
  border-radius: 10px;
  transition: 0.5s;
}

#hero_v3 .btn__signin:hover {
  background: #03d588;
}
#hero_v3 .hero__image {
  position: relative;
  text-align: center;
}
#hero_v3 .hero__image > .pos_absoulte {
  position: absolute;
}

#hero_v3 .hero__image .icon_tw {
  top: 80px;
  left: 130px;
  animation: wobble-bottom 2.2s infinite ease-in-out;
}

#hero_v3 .hero__image .icon_ig {
  top: 270px;
  left: 70px;
  animation: tada 2.3s infinite ease-in-out;
}

#hero_v3 .hero__image .icon_fb {
  right: 75px;
  bottom: 50%;
  animation: heartBeat 1.4s infinite ease-in-out;
}

#hero_v3 .hero__image .icon_lv {
  bottom: 30px;
  right: 175px;
  animation: wobble-bottom 1.3s infinite ease-in-out;
}

#hero_v3 .dot_icon2 {
  position: absolute;
  top: 70%;
  right: 50px;
  z-index: -1;
  animation: float 5s ease infinite;
}
#hero_v3 .hero_content_v3 a {
  color: #00ffa3 !important;
}

#top_smm {
  padding: 70px 0px;
  background: url(../images/sn29agphz9dedpmg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  margin-bottom: 7 0px;
}

.website-title {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  color: #fff;
  text-transform: capitalize;
}

.website-descriptions {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
}

.section__v3__tts {
  margin-bottom: 30px;
}

.top_smm_services_group {
  display: flex;
  width: 100%;
  gap: 30px;
}

.service_groups {
  display: flex;
  width: 100%;
  gap: 30px;
  justify-content: space-around;
}

.service_groups .service__item {
  position: relative;
  background: #fff;
  width: 170px;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}
.service_groups .service__item.item5,
.service_groups .service__item.item3,
.service_groups .service__item.item1 {
  top: 20px;
}

.service_groups .service__item.item6,
.service_groups .service__item.item4,
.service_groups .service__item.item2 {
  top: 70px;
}
.service_groups .service__item .icon {
  margin-bottom: 5px;
}

.service_groups .service__item .txt {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  text-transform: capitalize;
  color: #000000;
}

#statistics {
  padding: 120px 0px;
  position: relative;
}
.statis_bg,
.dotted_img {
  position: absolute;
  z-index: -1;
}

.dotted_img {
  bottom: 80px;
  left: 190px;
}

.statis_bg {
  top: -500px;
}

#statistics .statistics_wraper {
  background: #222242;
  box-shadow: 0px 0px 44px rgba(0, 0, 0, 0.4);
  padding: 70px;
  border-radius: 50px;
}

#statistics .statistic_content {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.stastics_wraper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.statics__item {
  display: flex;
  background: #161429;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border-radius: 20px;
}

.statics__item .ss_text {
  color: #fff;
}

.statics__item .ss_text h6 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  margin-bottom: 5px;
  color: #fff;
}
.statics__item .ss_text h4 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  margin-bottom: 5px;
  color: #fff;
}

#whyChooseUs {
  position: relative;
  padding: 70px 0px;
}

#whyChooseUs h2 {
  margin-bottom: 40px;
}

#whyChooseUs .why-item {
  position: relative;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 25px;
  min-height: 320px;
}

#whyChooseUs .why-item.why_first_item {
  height: 97%;
  background: linear-gradient(180deg, #ffffff 33.65%, #d8e8ff 100%);
}

#whyChooseUs .why-item.fourth_item {
  background: #222242;
}

#whyChooseUs .why-item .why-item-title {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 42px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

#whyChooseUs .why-item.fourth_item {
  color: #fff;
}

#whyChooseUs .why-item p {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}

#whyChooseUs .why-item .why-item-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.why_itme_imggss {
  position: absolute;
  bottom: 30px;
  right: 15px;
  z-index: 0;
}

.bg__nion > .whybg1 {
  position: absolute;
  top: -500px;
  right: 0px;
  z-index: -1;
  pointer-events: none;
}

.bg__nion > .whybg2 {
  position: absolute;
  top: -100px;
  left: 0px;
  z-index: -1;
  pointer-events: none;
}

.bg__nion > .why_rign {
  position: absolute;
  right: 0px;
  bottom: -50px;
}

.dotted_img {
  position: absolute;
  left: 75%;
  bottom: 30px;
}

#ourFeatures {
  padding: 100px 0px;
}

#ourFeatures h2 {
  margin-bottom: 50px;
}

.feature-item {
  background: #fff;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 400px;
  border-radius: 20px;
  margin-bottom: 70px;
}

.swiper-slide .feature-item {
  background: url(../images/8n5acxjh7lkcu0qk.webp), #fff;
  background-position: -35px -40px;
  background-repeat: no-repeat;
}

.swiper-slide:nth-child(3n - 2) .feature-item {
  background: url(../images/409tzaef0rm4iu95.webp), #fff;
  background-position: -35px -40px;
  background-repeat: no-repeat;
}

.swiper-slide:nth-child(3n - 1) .feature-item {
  background: url(../images/1d9jmgpxr86ndlmy.webp), #fff;
  background-position: -35px -40px;
  background-repeat: no-repeat;
}

.feature-item h3 {
  width: 75%;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  text-align: center;
}

.feature-item p {
  text-align: center;
}

#ourFeatures .swiper-pagination-bullet {
  width: 18px;
  border-radius: 5px;
  background: #dee9f3;
  transition: 0.5s;
}

#ourFeatures .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 30px;
  background: #00ffa3;
}

#faq {
  position: relative;
  padding: 100px 0px;
  display: flex;
  align-items: center;
  min-height: 700px;
  background: linear-gradient(#16142973, #16142973),
    url(../images/ftx3z1904qe3yabc.webp);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}
.ring__faq,
.ploygon1__faq,
.ploygon2__faq {
  position: absolute;
}

.ring__faq {
  top: 100px;
  right: 150px;
}

.ploygon1__faq {
  bottom: 150px;
  left: 50px;
}

.ploygon2__faq {
  top: 50px;
  left: 450px;
}

#faq-acc .accordion-item {
  margin-bottom: 15px;
  border-radius: 10px;
  background: #21213d;
  color: #fff;
  border: none;
}

#faq-acc .accordion-header .accordion-button {
  background: transparent !important;
  box-shadow: none;
  color: #fff;
}
#faq-acc .accordion-header .accordion-button h4 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 36px;
  margin-bottom: 0px;
}
.accordion-button::after {
  background-image: url(../images/4fpxl7m545304wl3.webp);
}
.accordion-button:not(.collapsed)::after {
  background-image: url(../images/4fpxl7m545304wl3.webp);
}

#blog {
  position: relative;
  padding: 100px 0px;
}

.blog__effects {
  position: absolute;
  z-index: -1;
  top: -150px;
}

#blog .blog-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

#blog .blog_item {
  background: #fff;
  height: 100%;
  border-radius: 17px;
}

#blog .blog_item .blog_banner > img {
  width: 100%;
  border-radius: 15px 15px 0 0;
}

#blog .blog_item .blog_body {
  padding: 30px;
}

#blog .blog_item h3 {
  width: 85%;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
}

#blog .blog_item p {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

#blog .blog_item .btn__home {
  padding: 25px 25px;
  height: 40px;
}

#registerToday .register-today-inner {
  background: url(../images/4c0niuiiim5srdrl.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 650px;
  border-radius: 50px;
  overflow: hidden;
}

#registerToday .register-today-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 80px;
  padding-left: 70px;
  padding-right: 70px;
}

#registerToday .register-today-inner .left {
  width: 50%;
}

#registerToday .register-today-inner .left h2 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 72px;
}
#registerToday .register-today-inner .left p {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
}

#registerToday .register-today-inner .right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
}

#registerToday .register-today-inner .btn__home.btn_black {
  background: #21213d;
  color: #fff;
}

footer#v3 {
  padding: 120px 0px 0px 0px;
}

footer#v3 .payment_logs {
  text-align: right;
}

footer#v3 .footer__contact {
  display: flex;
  justify-content: space-between;
  margin: 40px 0px;
  margin-top: 10px;
}

footer#v3 .footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer#v3 .footer__contact .contact_item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
}

footer#v3 .footer__contact .contact_item a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

footer#v3 .footer__contact .contact_item .icon {
  font-size: 25px;
  color: #00ffa3;
}

footer#v3 .footer__contact .right {
  display: flex;
  gap: 15px;
  align-items: center;
}
footer#v3 .footer__contact .right .text {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #fff;
}
footer#v3 .footer__contact .right .social_media {
  display: flex;
  align-items: center;
  gap: 10px;
}
footer#v3 .footer__contact .right .social_media .social_item {
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 20px;
  width: 45px;
  height: 45px;
  background: #00ffa3;
  color: #000000;
}

footer#v3 .footer_bottom p {
  border-top: 1px solid #ddd;
  padding: 25px 0px;
  color: #fff;
  text-align: center;
}

footer#v3 .footer_bottom p > a {
  color: #fff;
  text-decoration: none;
}

.hide_desktop {
  display: none;
}

.forgot__pass_phone {
  color: var(--text-white);
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
}

@media only screen and (max-width: 1300px) {
  #hero_v3 {
    height: 800px;
  }
  #hero_v3 .hero_login {
    width: 100%;
  }
  #hero_v3 .hero__image .icon_tw {
    top: 60px;
    left: 85px;
  }
  #hero_v3 .hero__image .icon_fb {
    right: 30px;
  }
  #hero_v3 .hero__image .icon_ig {
    left: 25px;
  }
  #hero_v3 .hero__image .icon_lv {
    right: 120px;
  }
  .hero__dott__1 {
    opacity: 0.3;
  }
  .service_groups {
    gap: 14px;
  }
  .top_smm_services_group {
    gap: 14px;
  }
  #statistics .statistics_wraper {
    padding: 40px;
    border-radius: 30px;
  }
  #ourFeatures {
    padding: 50px 0px;
  }
  .ploygon2__faq {
    top: 50px;
    left: 20px;
  }
  .ploygon1__faq {
    bottom: 1px;
  }
  .ring__faq {
    top: 10px;
  }
}

@media only screen and (max-width: 992px) {
  #hero_v3 .col-lg-6.col-md-6.col-12.hero____content {
    width: 100%;
  }
  #hero_v3 .col-lg-6.col-md-6.col-12.banner___Images {
    display: none;
  }
  #hero_v3 {
    height: 700px;
    padding-top: 100px;
  }
  .hero__dott__1 {
    opacity: 0.3;
  }
  .hero_nion {
    display: none;
  }
  #hero_v3 {
    background: url(../images/5s35ykq2y8buurip.webp);
    background-repeat: no-repeat;
  }
  .top_smm_services_group {
    flex-direction: column;
  }
  .service_groups {
    gap: 10px;
  }
  #top_smm {
    background: transparent;
  }
  .service_groups .service__item.item6,
  .service_groups .service__item.item4,
  .service_groups .service__item.item2 {
    top: 0px;
  }
  .service_groups .service__item.item5,
  .service_groups .service__item.item3,
  .service_groups .service__item.item1 {
    top: 0px;
  }
  #statistics {
    padding: 30px 0px;
  }
  #statistics .statistics_wraper {
    padding: 50px;
    border-radius: 20px;
  }

  #statistics .statistic_content {
    margin-bottom: 30px;
    display: block;
  }

  .stastics_wraper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .website-title {
    font-size: 40px;
    line-height: 50px;
  }
  .website-title br {
    display: none;
  }
  .why_itme_imggss {
    width: 100px;
  }

  .why-item.fourth_item .why_itme_imggss {
    width: 300px;
  }
  .ploygon2__faq {
    top: 50px;
    left: 20px;
  }
  .ploygon1__faq {
    bottom: 20px;
    left: 50px;
  }
  .ring__faq {
    top: 40px;
    right: 65px;
  }
  #faq .col-lg-6.col-md-12.col-12 {
    margin-bottom: 20px;
  }
  #blog .blog-title {
    margin-bottom: 30px;
  }
  #registerToday .register-today-inner .left h2 {
    font-size: 30px;
    line-height: 1.3;
  }
  #registerToday .register-today-inner .left p {
    font-size: 14px;
  }
  #registerToday .register-today-inner {
    padding-bottom: 10px;
  }
  footer#v3 .payment_logs {
    /* width: 200px; */
  }
  footer#v3 .footer__contact .left {
    flex-direction: column;
    gap: 10px;
  }
  #hero_v3,
  #top_smm,
  #statistics,
  #whyChooseUs,
  #ourFeatures,
  #faq,
  #blog,
  #registerToday {
    overflow: hidden;
  }
}

@media only screen and (max-width: 768px) {
  #hero_v3 {
    height: 900px;
  }
}

.for_desktop {
  display: block;
}

.for_phone {
  display: none;
}

@media only screen and (max-width: 550px) {
  #hero_v3 {
    padding: 100px 0px;
    height: auto;
  }
  .for_desktop {
    display: none;
  }
  .for_phone {
    display: block;
  }

  .forgot__pass_phone {
    display: block;
  }

  #hero_v3 .hero_content_v3 h4 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 0;
    line-height: auto;
  }

  #hero_v3 .hero_content_v3 h1 {
    font-size: 38px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 15px;
  }

  #hero_v3 .hero_content_v3 p {
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
  }
  #hero_v3 .hero_login {
    width: 100%;
  }
  #hero_v3 .hero_login .col-lg-6.col-12 {
    margin-bottom: 10px;
  }
  #hero_v3 .row.my-3 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  #hero_v3 .dont_have_an_acc {
    text-align: center;
  }
  .hero__dott__1 {
    z-index: -1;
    opacity: 0.2;
  }

  .hero__image .main_image {
    width: 90%;
    margin: 0 auto;
  }

  #hero_v3 .hero__image .icon_tw {
    width: 60px;
    top: 65px;
    left: 35px;
  }

  #hero_v3 .hero__image .icon_ig {
    width: 50px;
    top: 220px;
    left: 0px;
  }

  #hero_v3 .hero__image .icon_fb {
    width: 60px;
    right: 0px;
    bottom: 50%;
  }

  #hero_v3 .hero__image .icon_lv {
    width: 50px;
    bottom: 35px;
    right: 70px;
  }

  #hero_v3 .dot_icon2 {
    top: 60%;
    right: -2px;
  }

  #hero_v3 .col-lg-6.col-md-6.col-12.banner___Images {
    display: block;
  }
  .website-title {
    font-size: 35px;
    line-height: 1.3;
  }

  .website-descriptions {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 300;
  }

  #top_smm {
    padding: 50px 0px;
  }

  .top_smm_services_group {
    flex-direction: column;
    gap: 80px;
  }
  .service_groups {
    position: relative;
  }
  .service_groups.services_group2::before {
    content: "";
    position: absolute;
    width: 110%;
    height: 350px;
    background: url(../images/79dwb0ckc860ma5f.webp);
    background-repeat: no-repeat;
    background-size: contain;
    top: 41px;
  }
  .service_groups.services_group1::before {
    content: "";
    position: absolute;
    width: 110%;
    height: 350px;
    background: url(../images/bb28c8wrej7kqpp1.webp);
    background-repeat: no-repeat;
    background-size: contain;
    top: 65px;
  }
  .service_groups .service__item .icon > img {
    width: 40px;
  }
  .service_groups {
    gap: 10px;
  }
  .service_groups .service__item {
    width: 120px;
    height: 98px;
  }
  .statis_bg {
    display: none;
    top: 0px;
  }
  .service_groups .service__item.item6,
  .service_groups .service__item.item4,
  .service_groups .service__item.item2 {
    top: 30px;
  }
  .service_groups .service__item.item5,
  .service_groups .service__item.item3,
  .service_groups .service__item.item1 {
    top: 10px;
  }
  .service_groups .service__item .icon {
    margin-bottom: 0px;
  }
  .service_groups .service__item .txt {
    font-size: 14px;
  }
  #top_smm {
    background: transparent;
  }
  #statistics .statistics_wraper {
    border-radius: 30px;
    padding: 40px 20px;
    text-align: center;
  }

  #statistics .statistic_content {
    display: block;
    margin-bottom: 35px;
  }
  .stastics_wraper {
    display: grid;
    grid-template-columns: 1fr;
  }
  .statics__item {
    padding: 20px 30px;
  }
  .statics__item .ss_text {
    text-align: left;
  }

  .btn__home {
    padding: 25px 30px;
    font-size: 16px;
  }
  .dotted_img {
    left: 0;
  }
  .bg__nion > .whybg2 {
    top: 600px;
  }
  .why-item .btn__home {
    padding: 25px 30px;
    height: 30px;
  }
  #whyChooseUs .why-item .why-item-title {
    font-size: 28px;
  }
  #whyChooseUs .why-item .why-item-title br {
    display: none;
  }
  #whyChooseUs .why-item.why_first_item {
    height: auto;
  }
  #whyChooseUs .why-item.why_first_item .why-item-content {
    margin-bottom: 30px;
  }
  #whyChooseUs .why-item {
    margin-bottom: 35px;
  }
  .why-item.fourth_item .w-50 {
    width: 100% !important;
  }
  .why-item.fourth_item .why_itme_imggss {
    position: relative;
    bottom: 0;
  }
  #whyChooseUs .dotted_img {
    left: 40%;
  }

  .bg__nion > .why_rign {
    position: absolute;
    right: 0px;
    bottom: -50px;
  }
  #faq .website-title {
    text-align: center;
  }
  #faq .website-descriptions {
    text-align: center;
  }
  #faq .col-lg-6.col-md-6.col-12 {
    text-align: center;
    margin-bottom: 25px;
  }
  .ring__faq {
    position: absolute;
    top: 520px;
    left: -17px;
    z-index: 1;
  }
  #faq-acc {
    position: relative;
    z-index: 9;
  }
  #faq-acc .accordion-header .accordion-button > h4 {
    font-size: 16px;
    line-height: 1.3;
  }
  .ploygon1__faq {
    bottom: 40px;
    left: 50px;
  }
  #blog .blog-title {
    flex-direction: column;
    margin-bottom: 30px;
  }
  #blog .blog-title .btn__home {
    display: none;
  }
  #blog {
    padding: 50px 0px;
  }
  #blog .blog_item {
    height: auto;
    margin-bottom: 50px !important;
  }
  #blog .blog_item h3 {
    width: 100%;
  }
  .blog__effects {
    top: 518px;
  }
  .hide_desktop {
    display: block;
  }

  #registerToday .register-today-inner {
    flex-direction: column;
    padding: 20px;
    border-radius: 20px;
    background: url(../images/sybufhkut31j2dx5.webp);
    background-size: contain;
    background-repeat: no-repeat;
    justify-content: center;
  }
  #registerToday .register-today-inner .left {
    width: 100%;
  }
  #registerToday .register-today-inner .left h2 {
    font-size: 35px;
    text-align: center;
    margin-top: 120px;
    margin-bottom: 0px;
    line-height: 1.3;
  }
  #registerToday .register-today-inner .left p {
    text-align: center;
  }
  #registerToday .register-today-inner .right {
    width: 100%;
    flex-direction: row;
    gap: 10px;
  }
  #registerToday .register-today-inner .right > a.mb-3 {
    margin: 0px !important;
  }
  footer#v3 {
    padding: 0;
  }
  footer .payment_logs {
    display: none;
  }
  .footer_v3_logo {
    text-align: center;
  }
  footer#v3 .footer__contact {
    margin: 20px 0px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  footer#v3 .footer__contact .left {
    flex-direction: column;
    gap: 20px;
  }
  footer#v3 .footer__contact .right {
    flex-direction: column;
  }
  footer#v3 .footer_bottom p {
    margin-top: 50px;
  }
  .footer_image {
    text-align: center;
  }
}

/* 
* ------------------------ Designed By Yunus -------------------------
*SEO REALTED PAGES CSS 
* ------------------------ Whatsapp +8801303260848 -------------------------
*/

#seo__hero {
  padding: 140px 0px;
  background: url(../images/banner-bg-top.webp);
  background-repeat: no-repeat;
  background-position: top right;
}

#seo__hero .seo_content_wrap h1 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 48px;
  line-height: 120%;
  color: #fff;
  margin-bottom: 10px;
}

#seo__hero .seo_content_wrap > p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #fff;
  margin-bottom: 20px;
}

.seo_content_image {
  text-align: right;
}

#ourFeatures .title_wraper h2 {
  margin-bottom: 10px;
  line-height: 110%;
}

#ourFeatures .title_wraper h3 {
  font-size: 18px;
  color: var(--text-white);
  font-weight: 700;
  margin-bottom: 8px;
}

#ourFeatures .title_wraper p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-white);
}

.features_serv {
  justify-content: start;
  min-height: 380px;
}
.feature-item.features_serv h3 {
  width: 100%;
}

.feature-item.features_serv p {
  margin-bottom: 0px;
}
.features_serv .icon {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}
#howToOrder,
#serviceFeatures {
  padding: 80px 0px;
  position: relative;
}

.shades__light {
  position: absolute;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

#serviceFeatures .shades__light.light-1 {
  bottom: -250px;
}

#serviceFeatures .shades__light.light-2 {
  top: -250px;
  right: 0;
}

.section__title__wrap {
  margin-bottom: 35px;
}

.section__title__wrap h2 {
  font-family: "Poppins", sans-serif;
  color: var(--text-white);
  text-align: center;
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
}
.card.card__serv__fs,
.card.card__serv__fe {
  padding: 20px 20px;
  border-radius: 20px;
  height: 100%;
}

.card.card__serv__fe {
  background: url(../images/features-items-bg.webp), #fff;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.card.card__serv__fs {
  background: url(../images/service-item-bg.webp), #fff;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.card.card__serv__fs .icon,
.card.card__serv__fe .icon {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}
.card.card__serv__fs h3,
.card.card__serv__fe h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-black);
  margin-bottom: 8px;
}
.card.card__serv__fs p,
.card.card__serv__fe p {
  font-size: 16px;
  color: var(--text-black);
  margin-bottom: 10px;
}
.card.card__serv__fs .btn-sm,
.card.card__serv__fe .btn-sm {
  padding: 8px 25px;
  border-radius: 8px;
}

.how-it-work-item-wrap {
  padding: 40px 25px 30px 25px;
  border-radius: 14px;
  border: 1px dashed #00ffa3;
  background: #222242;
  height: 100%;
  position: relative;
}
#howToOrder .section__title__wrap {
  margin-bottom: 75px;
}
.how-it-work-item-wrap .icon {
  margin-bottom: 10px;
}
.how-it-work-item-wrap h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
  margin-bottom: 8px;
}

.how-it-work-item-wrap p {
  font-size: 16px;
  color: #fff;
}

.how-it-work-item-wrap .step_number {
  width: 80px;
  height: 80px;
  position: absolute;
  background: var(--dark-text-primary);
  transform: translateY(-80px) rotate(45deg);
  left: calc(50% - 40px);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.how-it-work-item-wrap .step_number .step_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  transform: rotate(-45deg);
}

.how-it-work-item-wrap .step_number .step_text .number {
  font-size: 20px;
  color: var(--text-black);
  font-weight: 800;
}

.how-it-work-item-wrap .step_number .step_text .text {
  font-size: 16px;
  font-weight: normal;
}
#faqFull {
  padding: 70px 0px;
}
@media only screen and (max-width: 992px) {
  #seo__hero .seo_content_wrap h1 {
    font-size: 34px;
  }
  #seo__hero .seo_content_wrap > p {
    font-size: 16px;
  }
  .section__title__wrap h2,
  #ourFeatures .title_wraper h2 {
    font-size: 28px;
    line-height: 120%;
  }
  #ourFeatures .title_wraper h2 br {
    display: block;
  }
  #ourFeatures .title_wraper p {
    font-size: 16px;
  }
  #ourFeatures .title_wraper p br {
    display: none;
  }
  .card.card__serv__fs,
  .card.card__serv__fe {
    padding: 10px;
  }
  .card.card__serv__fs .icon,
  .card.card__serv__fe .icon {
    width: 60px;
    height: 60px;
  }
  #howToOrder .col-lg-3.col-md-6.col-12.mb-3 {
    margin-bottom: 70px !important;
  }
}

@media only screen and (max-width: 768px) {
}

@media only screen and (max-width: 550px) {
  #seo__hero {
    padding: 100px 0px;
  }
  #seo__hero .seo_content_wrap {
    text-align: center;
    margin-bottom: 20px;
  }
  #seo__hero .seo_content_wrap h1 {
    text-align: center;
  }
  #seo__hero .seo_content_wrap > p {
    text-align: center;
  }
  #faqFull,
  #howToOrder,
  #serviceFeatures {
    padding: 50px 0px;
  }
  .features_serv .icon {
    width: 60px;
    height: 60px;
  }
  .features_serv {
    min-height: 350px;
  }
  .feature-item.features_serv h3 {
    font-size: 22px;
  }
  footer#v3 .footer__contact {
    gap: 5px;
  }
}
