
/*=======================================================================
[01] TYPOGRAPHY
=========================================================================*/
@import url('https://fonts.googleapis.com/css2?family=Inder&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


:root {
  --inderfont: "Inder", sans-serif;;
  --robotofont: 'Roboto', sans-serif;
  --montfont: "Montserrat", sans-serif;
}


html {
  height: 100%;
  font-size: 62.5%;
}
body {
  font-size: 16px;
  font-family: var(--robotofont);
  font-weight: 400;
  height: 100%;
  line-height: 1.7;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  color: #646464;
}
p {
  margin: 0 0 20px 0;
  color: #646464;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  margin: 0 0 20px 0;
  color: #111111;
}
h1,
h2 {
  line-height: 1;
}
h3,
h4,
h5,
h6 {
  line-height: 1;
}
h1 {
  font-size: 36px;
}
h2 {
  font-size: 28px;
}
h3 {
  font-size: 22px;
}
@media only screen and (max-width: 991px) {
  h3 {
    font-size: 20px;
  }
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 18px;
}
h6 {
  font-size: 16px;
}

.fmi {
  font-family: var(--inderfont);
}


@media (min-width:1200px) {

  body .container-fluid {
      max-width: 100% !important;
      padding-inline: 70px;
  }

  .container {
    max-width: calc(100% - 100px);
}
}
/*=============== 3.3 Select 2 ==================*/
.select2-container .select2-selection--single {
  background-color: #f0f1f3;
  border-color: #f0f1f3;
  height: 50px;
}
.select2-container .select2-selection--single:focus {

  outline: none;
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
  border: 1px solid #aaaaaa;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 50px;
  color: #b4b4b4;
  padding-left: 20px;
  padding-right: 30px;
  font-size: 15px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 50px;
  top: 0;
  right: 15px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #000 transparent transparent transparent;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #000 transparent;
}
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  outline: none;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #71bfe4;
}
.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #444;
  color: #fff;
}
.select2-results__option {
  font-size: 15px;
}
/*=======================================================================
4. ELEMENTS CUSTOM STYLE
=========================================================================*/
/*=============== 4.1 Animation ==================*/
@-webkit-keyframes dropdownanimate {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    -webkit-transform: translate3d(0, 0px, 0);
    transform: translate3d(0, 0px, 0);
  }
}
@keyframes dropdownanimate {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    -webkit-transform: translate3d(0, 0px, 0);
    transform: translate3d(0, 0px, 0);
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #111111;
    box-shadow: 0 0 0 0 #111111;
  }
  40% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 194, 17, 0);
    box-shadow: 0 0 0 30px rgba(255, 194, 17, 0);
  }
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 194, 17, 0);
    box-shadow: 0 0 0 30px rgba(255, 194, 17, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
    box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
  }
}
@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #111111;
    box-shadow: 0 0 0 0 #111111;
  }
  40% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 194, 17, 0);
    box-shadow: 0 0 0 30px rgba(255, 194, 17, 0);
  }
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 194, 17, 0);
    box-shadow: 0 0 0 30px rgba(255, 194, 17, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
    box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
  }
}
/*=============== 4.2 Button ==================*/
.fw-btn-fill {
  overflow: hidden;
  position: relative;
  display: inline-block;
  height: 44px;
  width: 100%;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
  padding: 10px;
  cursor: pointer;
  z-index: 9;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.fw-btn-fill:hover {
  background: #042954;
}
.fw-btn-fill:focus {
  outline: none;
  box-shadow: none;
  border: none;
}
.btn-fill-lg {
  display: inline-block;
  border: none;
  background-color: var(--cui-danger);
  border-radius: 4px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 1px;
  padding: 10px 45px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.btn-fill-lg:focus {
  outline: none;
  box-shadow: none;
  border: none;
}


.btn-fill-xl {
  display: inline-block;
  border: none;
  background-color: transparent;
  padding: 12px 55px;
  cursor: pointer;
}
.btn-fill-xl:focus {
  outline: none;
  box-shadow: none;
  border: none;
}
.btn-fill-lmd {
  display: inline-block;
  border: none;
  background-color: transparent;
  padding: 12px 35px;
  cursor: pointer;
}
.btn-fill-lmd:focus {
  outline: none;
  box-shadow: none;
  border: none;
}
.btn-fill-md {
  display: inline-block;
  border: none;
  background-color: transparent;
  padding: 12px 30px;
  cursor: pointer;
}
.btn-fill-md:focus {
  outline: none;
  box-shadow: none;
  border: none;
}
.btn-fill-sm {
  display: inline-block;
  border: none;
  background-color: var(--cui-danger);
  padding: 8px 20px;
  cursor: pointer;
  border-radius: 25px;
  color: var(--cui-white);
  font-size: 16px;
}


.btn-style {
    display: inline-block;
    border: none;
    padding: 5px 25px;
    cursor: pointer;
    border-radius: 6px;
    font-size: 11px;
}

.btn-fill-sm:hover {
  background: var(--cui-danger);
  color: var(--cui-white);
}

.btn-fill-sm:focus {
  outline: none;
  box-shadow: none;
  border: none;
}
.btn-hover-bluedark:hover {
  background: #042954;
}
.btn-hover-yellow:hover {
  background: #ff9d01;
}

.outbtn {
    font-size: 16px;
    font-weight: 500;
    padding: 7px 10px;
    width: 100%;
    color: var(--cui-danger);
    border-radius: 10px;
}


/*=======================================================================
5. PAGE LAYOUT STYLE
=========================================================================*/
/*=============== 5.1 Content ==================*/
.breadcrumbs-area {
  padding: 34px 0 35px;
  position: relative;
  z-index: 1;
}
.breadcrumbs-area h3 {
  font-weight: 500;
  text-transform: capitalize;
  color: #111111;
  margin-bottom: 8px;
}
.breadcrumbs-area ul li {
  display: inline-block;
  color: #fea801;
  font-size: 16px;
  position: relative;
  margin-right: 15px;
  padding-right: 10px;
}
.breadcrumbs-area ul li:before {
  content: "\f107";
  font-family: Flaticon;
  position: absolute;
  font-size: 10px;
  font-weight: 600;
  right: -10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 5;
  color: #fea801;
}
.breadcrumbs-area ul li a {
  color: #646464;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.breadcrumbs-area ul li a:hover {
  color: #fea801;
}
.breadcrumbs-area ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.breadcrumbs-area ul li:last-child:before {
  display: none;
}
#preloader {
  background: #ffffff url('img/preloader.gif') no-repeat scroll center center;
  height: 100%;
  left: 0;
  overflow: visible;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999999;
}
#scrollUp {
  background-color: #042954;
  bottom: 60px;
  color: #ffffff;
  display: block;
  font-size: 18px;
  height: 44px;
  line-height: 40px;
  position: fixed;
  right: 20px;
  text-align: center;
  text-decoration: none;
  width: 44px;
  z-index: 99999;
  border: 2px solid #111111;
  border-radius: 50%;
  transition: all 0.3s ease-out;
}
#scrollUp i {
  color: #fff;
}
#scrollUp:hover,
#scrollUp:focus {
  background-color: rgba(11, 11, 11, 0.3);
}
#scrollUp:hover i,
#scrollUp:focus i {
  color: #ffffff;
}
#scrollUp {
  animation: blinker 10s infinite;
}
.heading-layout1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  border: none;
  margin-bottom: 12px;
}
.heading-layout1 .item-title h3 {
  color: #111111;
  font-weight: 500;
  margin-bottom: 0;
}
.heading-layout1 .dropdown .dropdown-toggle {
  color: #bcbcbc;
  font-size: 36px;
  display: inline-block;
  line-height: 1;
  padding-bottom: 15px;
  position: relative;
  right: -10px;
}
.heading-layout1 .dropdown .dropdown-toggle:after {
  border: none;
}
.heading-layout1 .dropdown .dropdown-menu {
  border: none;
  padding: 15px 0 18px;
}
.heading-layout1 .dropdown .dropdown-menu .dropdown-item {
  font-size: 15px;
  padding: 7px 20px;
}
.heading-layout1 .dropdown .dropdown-menu .dropdown-item i {
  margin-right: 14px;
  width: 22px;
}
/*=============== 5.2 Default ==================*/
a {
  text-decoration: none;
}
a:active,
a:hover,
a:focus {
  text-decoration: none;
}
a:active,
a:hover,
a:focus {
  outline: 0 none;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.bg-common {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
/*=============== 5.3 Footer ==================*/
.footer-wrap-layout1 {
  padding: 2rem 0 4rem;
}
.copyright {
  color: #707070;
}
@media only screen and (max-width: 767px) {
  .copyright {
    text-align: center;
  }
}
.copyright a {
  color: #111111;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.copyright a:hover {
  color: #707070;
}




/* n css  */

.inpureg input:-webkit-autofill {
  box-shadow: 0 0 0px 1000px transparent inset !important;
  -webkit-text-fill-color: #0d0d0d !important; /* text color - adjust if needed */
  transition: background-color 5000s ease-in-out 0s;
}




















/*=============== 5.4 Header Menu ==================*/
.header-menu-one {
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    background: #fff;
    height: 62px;
    padding-block: 0 !important;
}

.nav-bar-header-one {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 26rem;
}

.header-logo {
    width: 260px;
}

.header-logo img {
    width: 80%;
}

.desktop_menu {
  gap: 14.1px;
  align-items: center;
}


.desktop_menu .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #000;
    gap: 2px;
    font-size: 12px;
}

.desktop_menu .nav-link img {
    display: block;
    width: 22px;
}

.header_creatbtn a {
    width: 136px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    line-height: 39px;
}

.profile_with_wish {
  display: flex;
  gap: 21px;
  align-items: center;
}

.header_wish a {
  display: flex;
}

.header_wish i {
    font-size: 33px;
    color: var(--cui-black);
}

.admin-img img {
    width: 40px;
}

.radius-bottom {
  border-radius: 0 0 15px 15px;
}

.profile_side_header {
    padding: 25px 0 25px;
}

.profile_logo img {
  width: 99px;
  border: 4px solid #fff;
  border-radius: 50%;
  margin-bottom: 15px;
}


.title-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    margin-top: 0px;
    flex-wrap: wrap;
    gap: 20px;
}

.title-area h2 {
  font-size: 24px;
  font-weight: bold;
  color: #181818;
}

.creator_item {
  box-shadow: 0 0px 4px rgb(0 0 0 / 25%);
  border-radius: 5px;
  padding: 10px;
}

.creator_img img {
    border-radius: 5px;
    height: 150px;
    object-fit: cover;
    width: 100%;
}

.relative {
  position: relative;
}

.resover {
    position: absolute;
    top: 10px;
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
    padding-inline: 7px;
}

.resover a {
  background: #fff;
  border-radius: 25px;
  color: #565656;
  width: 71px;
  font-size: 9px;
  font-weight: 600;
  border: 1px solid #0000006b !important;
  text-transform: capitalize;
}

.resover i {
    color: #fff;
    -webkit-text-stroke: 1px;
    -webkit-text-stroke-color: #0000006b !important;
}

.resover a:hover {
    background: var(--cui-white);
}


.resover a:focus {
    background: var(--cui-danger);
    color: var(--cui-white) !important;
}

.categy {
    font-size: 10px;
    background: #DADADA;
    padding: 3px 20px;
    border-radius: 25px;
    color: var(--cui-black);
    margin-block: 10px;
    display: inline-block;
    font-weight: 500;
}

.create_title h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--cui-danger);
  text-transform: capitalize;
}

.chtminfo h5 {
    text-transform: capitalize;
}

.remot {
    font-size: 12px;
    color: var(--bs-gray);
}

.crdesc {
  font-size: 11px;
  color: #525252;
}

.creat_btns a {
    padding: 4px 5px;
    border-radius: 25px;
    box-shadow: 0px 0px 4px 0 rgb(0 0 0 / 25%);
    color: var(--bs-gray);
    font-size: 10px;
  }

  
  .owl-item .creat_btns a, .wish_page .creat_btns a, .create_list_grops .creat_btns a {
  flex: 1 1  auto;
}

.creat_btns {
    gap: 6px !important;
}


.creat_btns a:focus, .creat_btns a:hover {
    background: #fff !important;
    border-color: #fff!important;
}

.entelab {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: var(--bs-gray);
  font-size: 12px;
}

.invest_btn_price a {
    font-size: 13px;
    text-transform: capitalize !important;
    font-weight: 500;
    padding: 5px 13px;
    display: flex;
    align-items: center;
}

.invest_btn_price img {
  width: 15px !important;
  margin-left: 7px !important;
}

.flex-bet {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-end {
  display: flex;
  justify-content: end;
  align-items: center;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}


.invprice {
  font-size: 24px;
  font-weight: 800;
  margin: 0;
  color: var(--cui-danger);
}

.entelab img {
  width: 20px !important;
}

.slick-track {
  gap: 0px !important;
  display: flex;
  justify-content: start;
  margin-block: 20px;
  margin-left: 27px;
}
.slick-slide {
  margin-right: 12px;
  margin-left: 5px;
}

.next-arrow {
  background: transparent !important;
  font-size: 20px;
  color: #2b2b2b;
}


.owl-nav {
    left: auto;
    right: -6px !important;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto !important;
    height: 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

button.owl-prev {
    position: absolute;
    left: -20px;
}
button.owl-prev i {
    font-size: 22px;
}

button.owl-next {
    position: absolute;
    right: -13px;
}
 button.owl-next i {
    font-size: 22px;
}

 .owl-carousel .owl-nav.disabled {
  display: block !important;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: transparent !important;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    color: unset;
}

.creator_area_wrap {
    padding-top: 0;
    padding-bottom: 30px;
}

.footer_inner img {
  width: 200px;
}

footer a {
    color: #404040;
    font-family: 'Roboto';
}

.fcon_info a {
  display: flex;
  align-items: center;
}

#notification-container .intauser {
    width: 60px !important;
    height: 60px;
    object-fit: cover !important;
}

.socilinks {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.socilinks a, .socilinks svg {
  width: 30px !important;
  height: 30px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #3B5998;
  color: #fff;
  border-radius: 50%;
}

.socilinks a:nth-child(1) {
  background: #3B5998;
}

.socilinks a:nth-child(2), .socilinks svg:nth-child(2) {
  background: #000;
}
.socilinks a:nth-child(3),.socilinks svg:nth-child(3) {
  background: #FF000E;
}
.socilinks a:nth-child(4), .socilinks svg:nth-child(4) {
  background: #55ACEE;
}

.socilinks svg {
    padding: 8px;
}

.foter_title {
  font-size: 16px;
  font-weight: 700;
}

.footer_links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer_top {
    padding: 40px 0;
    background: #EEEEEE;
}

footer {
  background: #EEEEEE;
}

.footer_bottom {
  border-top: 2px solid #C7C7C7;
}

@media only screen and (max-width: 767px) {
  .nav-bar-header-one {
    display: block;
    text-align: center;
    min-width: 20rem;
  }

  .footer_top {
    padding: 40px 20px;
}
}
.nav-bar-header-one .header-logo {
  padding-left: 10px;
  max-width: 200px;
}
@media only screen and (max-width: 767px) {
  .nav-bar-header-one .header-logo {
    padding-left: 0;
    padding-right: 12px;
  }
}
.nav-bar-header-one .header-logo a {
  display: block;
  padding: 10px 0;
}
/* @media only screen and (max-width: 767px) {
  .nav-bar-header-one .toggle-button {
    display: none;
  }
} */
.nav-bar-header-one .toggle-button .item-link {
  padding: 26px 15px;
  display: block;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.nav-bar-header-one .toggle-button .item-link .btn-icon-wrap {
    width: 28px;
    height: 18px;
    display: block;
    position: relative;
    transform: rotate(180deg);
}
.nav-bar-header-one .toggle-button .item-link .btn-icon-wrap span {
    position: absolute;
    right: 0;
    height: 2px;
    width: 100%;
    background-color: #000000;
    display: block;
    opacity: 1;
    transform: rotate(0deg);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.nav-bar-header-one .toggle-button .item-link .btn-icon-wrap span:nth-child(1n) {
  top: 0;
}
.nav-bar-header-one .toggle-button .item-link .btn-icon-wrap span:nth-child(2n) {
  width: 80%;
  top: 8px;
}
.nav-bar-header-one .toggle-button .item-link .btn-icon-wrap span:nth-child(3n) {
  top: 16px;
}
.nav-bar-header-one .toggle-button .item-link:focus {
  outline: none;
}
.nav-bar-header-two {
  background: linear-gradient(to right, #ff9d01, #ffaa01);
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 18rem;
  margin-top: -5px;
  margin-bottom: -5px;
  margin-left: -10px;
  padding: 11px 0;
}
.mobile-nav-bar .navbar-toggler {
  font-size: 20px;
  color: #444444;
  padding: 15px 10px;
}
.mobile-nav-bar .navbar-toggler:focus {
  outline: none;
}
.mobile-nav-bar .pulse-animation i {
  animation: pulse 1500ms infinite;
  border-radius: 50%;
}
.header-main-menu {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .header-main-menu .navbar-nav {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.header-main-menu .navbar-nav .navbar-item {
  margin-right: 28px;
}
@media only screen and (max-width: 767px) {
  .header-main-menu .navbar-nav .navbar-item {
    margin-right: 0;
    border-bottom: 1px solid #e8e3e3;
  }
  .header-main-menu .navbar-nav .navbar-item:first-child {
    margin-top: 15px;
  }
  .header-main-menu .navbar-nav .navbar-item:last-child {
    margin-bottom: 10px;
    border-bottom: none;
  }
  .header-main-menu .navbar-nav .navbar-item .navbar-nav-link {
    padding: 15px 0;
    display: flex !important;
    align-items: center;
  }
}
.header-main-menu .navbar-nav .navbar-item:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 991px) {
  .header-main-menu .navbar-nav .header-search-bar {
    display: none;
  }
}
.header-main-menu .navbar-nav .header-search-bar .stylish-input-group {
  border: none;
  height: 60px;
  width: 400px;
}
@media only screen and (max-width: 1199px) {
  .header-main-menu .navbar-nav .header-search-bar .stylish-input-group {
    width: 265px;
  }
}
.header-main-menu .navbar-nav .header-search-bar .stylish-input-group .form-control {
  border: none;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
  color: #111111;
  font-size: 16px;
  height: 60px;
}
.header-main-menu .navbar-nav .header-search-bar .stylish-input-group .input-group-addon {
  display: flex;
  padding-right: 11px;
  border: none;
  border-radius: 0;
  background: transparent !important;
}
.header-main-menu .navbar-nav .header-search-bar .stylish-input-group .input-group-addon button {
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header-main-menu .navbar-nav .header-search-bar .stylish-input-group .input-group-addon button span:before {
  color: #bebebe;
  font-size: 24px;
  margin-left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header-main-menu .navbar-nav .header-search-bar .stylish-input-group .input-group-addon button:focus {
  outline: none;
}
.header-main-menu .navbar-nav .header-search-bar .stylish-input-group input.form-control::-webkit-input-placeholder,
.header-main-menu .navbar-nav .header-search-bar .stylish-input-group textarea.form-control::-webkit-input-placeholder {
  color: #b1b1b1;
}
.header-main-menu .navbar-nav .header-search-bar .stylish-input-group input.form-control:-moz-placeholder,
.header-main-menu .navbar-nav .header-search-bar .stylish-input-group textarea.form-control:-moz-placeholder {
  color: #b1b1b1;
}
.header-main-menu .navbar-nav .header-search-bar .stylish-input-group input.form-control:-ms-input-placeholder,
.header-main-menu .navbar-nav .header-search-bar .stylish-input-group textarea.form-control:-ms-input-placeholder {
  color: #b1b1b1;
}
.header-main-menu .navbar-nav .header-language {
  margin-right: 42px;
  position: relative;
}
.header-main-menu .navbar-nav .header-language .navbar-nav-link {
  font-size: 15px;
  color: #444444;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 20px 0 12px;
}
.header-main-menu .navbar-nav .header-language .navbar-nav-link i {
  font-size: 18px;
  color: #ffab01;
  margin-right: 10px;
}
.header-main-menu .navbar-nav .header-language .navbar-nav-link:after {
  content: "\f107";
  font-family: Font Awesome\ 5 Free;
  font-weight: 600;
  font-size: 14px;
  border: none;
  position: absolute;
  top: 0;
  right: 9px;
}
@media only screen and (max-width: 767px) {
  .header-main-menu .navbar-nav .header-language .navbar-nav-link:after {
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    height: auto;
    width: auto;
  }
}
@media only screen and (max-width: 767px) {
  .header-main-menu .navbar-nav .header-language .navbar-nav-link {
    padding: 10px 0;
  }
}
.header-main-menu .navbar-nav .header-language .dropdown-menu {
  top: 46px;
  border: none;
  animation: dropdownanimate 200ms ease-in;
}
@media only screen and (max-width: 767px) {
  .header-main-menu .navbar-nav .header-language .dropdown-menu {
    animation: none;
  }
}
.header-main-menu .navbar-nav .header-message {
  margin-right: 38px;
}
@media only screen and (max-width: 767px) {
  .header-main-menu .navbar-nav .header-message {
    margin-right: 0;
  }
}
.header-main-menu .navbar-nav .header-message .navbar-nav-link {
  position: relative;
  color: #828282;
  font-size: 20px;
  display: block;
}
.header-main-menu .navbar-nav .header-message .navbar-nav-link span {
  position: absolute;
  top: -14px;
  right: -20px;
  height: 30px;
  width: 30px;
  line-height: 28px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  background-color: #2ad7c5;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: block;
  text-align: center;
  -webkit-box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 767px) {
  .header-main-menu .navbar-nav .header-message .navbar-nav-link span {
    top: 47%;
    right: 0;
    transform: translateY(-50%);
  }
}
.header-main-menu .navbar-nav .header-message .navbar-nav-link:after {
  display: none;
}
.header-main-menu .navbar-nav .header-message .dropdown-menu {
  min-width: 350px;
  border: none;
  top: 51px;
  animation: dropdownanimate 200ms ease-in;
}
@media only screen and (max-width: 767px) {
  .header-main-menu .navbar-nav .header-message .dropdown-menu {
    animation: none;
    margin-bottom: 15px;
    min-width: 200px;
  }
}
.header-main-menu .navbar-nav .header-message .dropdown-menu .item-header {
  text-align: center;
  background-color: #2ad7c5;
  padding: 20px 25px;
  border-radius: 4px 4px 0 0;
  position: relative;
}
.header-main-menu .navbar-nav .header-message .dropdown-menu .item-header:after {
  content: "";
  height: 0;
  width: 0;
  border-bottom: 10px solid #2ad7c5;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  position: absolute;
  top: -8px;
  right: 14px;
}
@media only screen and (max-width: 767px) {
  .header-main-menu .navbar-nav .header-message .dropdown-menu .item-header:after {
    display: none;
  }
}
.header-main-menu .navbar-nav .header-message .dropdown-menu .item-header .item-title {
  margin-bottom: 0;
  color: #fff;
}
.header-main-menu .navbar-nav .header-message .dropdown-menu .item-content {
  padding: 20px 25px;
}
.header-main-menu .navbar-nav .header-message .dropdown-menu .item-content .media .item-img {
  border-radius: 50%;
}
.header-main-menu .navbar-nav .header-message .dropdown-menu .item-content .media .item-img img {
  border-radius: 50%;
}
.header-main-menu .navbar-nav .header-message .dropdown-menu .item-content .media .author-online {
  position: relative;
}
.header-main-menu .navbar-nav .header-message .dropdown-menu .item-content .media .author-online:after {
  content: "";
  height: 10px;
  width: 10px;
  background-color: #08b13c;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  right: 2px;
}
.header-main-menu .navbar-nav .header-message .dropdown-menu .item-content .media .media-body .item-title {
  margin-bottom: 4px;
}
.header-main-menu .navbar-nav .header-message .dropdown-menu .item-content .media .media-body .item-title a {
  display: block;
}
.header-main-menu .navbar-nav .header-message .dropdown-menu .item-content .media .media-body .item-title a .item-name {
  font-size: 14px;
  font-weight: 600;
  color: #444444;
  display: inline-block;
}
.header-main-menu .navbar-nav .header-message .dropdown-menu .item-content .media .media-body .item-title a .item-time {
  float: right;
  font-size: 14px;
  color: #848484;
}
.header-main-menu .navbar-nav .header-message .dropdown-menu .item-content .media .media-body p {
  font-size: 14px;
}
.header-main-menu .navbar-nav .header-notification .navbar-nav-link {
  position: relative;
  color: #828282;
  font-size: 20px;
  display: block;
}
.header-main-menu .navbar-nav .header-notification .navbar-nav-link span {
  position: absolute;
  top: -14px;
  right: -20px;
  height: 30px;
  width: 30px;
  line-height: 28px;
  color: #ffffff;
  font-size: 14px;
  background-color: #ff3131;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: block;
  text-align: center;
  -webkit-box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 767px) {
  .header-main-menu .navbar-nav .header-notification .navbar-nav-link span {
    top: 47%;
    right: 0;
    transform: translateY(-50%);
  }
}
.header-main-menu .navbar-nav .header-notification .navbar-nav-link:after {
  display: none;
}
.header-main-menu .navbar-nav .header-notification .dropdown-menu {
  min-width: 275px;
  border: none;
  top: 51px;
  animation: dropdownanimate 200ms ease-in;
}
@media only screen and (max-width: 767px) {
  .header-main-menu .navbar-nav .header-notification .dropdown-menu {
    animation: none;
    margin-bottom: 15px;
    min-width: 200px;
  }
}
.header-main-menu .navbar-nav .header-notification .dropdown-menu .item-header {
  text-align: center;
  background-color: #ff3131;
  padding: 20px 25px;
  border-radius: 4px 4px 0 0;
  position: relative;
}
.header-main-menu .navbar-nav .header-notification .dropdown-menu .item-header:after {
  content: "";
  height: 0;
  width: 0;
  border-bottom: 10px solid #ff3131;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  position: absolute;
  top: -8px;
  right: 14px;
}
@media only screen and (max-width: 767px) {
  .header-main-menu .navbar-nav .header-notification .dropdown-menu .item-header:after {
    display: none;
  }
}
.header-main-menu .navbar-nav .header-notification .dropdown-menu .item-header .item-title {
  margin-bottom: 0;
  color: #fff;
}
.header-main-menu .navbar-nav .header-notification .dropdown-menu .item-content {
  padding: 20px 25px;
}
.header-main-menu .navbar-nav .header-notification .dropdown-menu .item-content .media {
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 14px;
  margin-bottom: 18px;
}
.header-main-menu .navbar-nav .header-notification .dropdown-menu .item-content .media:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.header-main-menu .navbar-nav .header-notification .dropdown-menu .item-content .media .item-icon {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  line-height: 31px;
  text-align: center;
}
.header-main-menu .navbar-nav .header-notification .dropdown-menu .item-content .media .item-icon i {
  color: #ffffff;
  font-size: 12px;
}
.header-main-menu .navbar-nav .header-notification .dropdown-menu .item-content .media .media-body .post-title {
  font-size: 14px;
  font-weight: 500;
  color: #444444;
}
.header-main-menu .navbar-nav .header-notification .dropdown-menu .item-content .media .media-body span {
  font-size: 12px;
}
.header-main-menu .navbar-nav .header-admin .navbar-nav-link {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .header-main-menu .navbar-nav .header-admin .navbar-nav-link {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
}
.header-main-menu .navbar-nav .header-admin .navbar-nav-link .admin-img img {
  border-radius: 50%;
}
.header-main-menu .navbar-nav .header-admin .navbar-nav-link .admin-title {
  text-align: right;
  padding-right: 26px;
}
@media only screen and (max-width: 767px) {
  .header-main-menu .navbar-nav .header-admin .navbar-nav-link .admin-title {
    padding: 0 0 0 15px;
    text-align: left;
  }
}
.header-main-menu .navbar-nav .header-admin .navbar-nav-link .admin-title .item-title {
  font-size: 15px;
  color: #111111;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0;
}
.header-main-menu .navbar-nav .header-admin .navbar-nav-link .admin-title span {
  font-size: 13px;
  color: #646464;
  display: block;
}
.header-main-menu .navbar-nav .header-admin .navbar-nav-link:after {
  color: #999898;
  position: absolute;
  top: 8px;
  right: 47px;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .header-main-menu .navbar-nav .header-admin .navbar-nav-link:after {
    top: 25px;
    right: 10px;
  }
}
.header-main-menu .navbar-nav .header-admin .dropdown-menu {
    min-width: 310px;
    border: none;
    top: 54px;
    animation: dropdownanimate 200ms ease-in;
    box-shadow: 0 0px 2.2px 0 rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 767px) {
  .header-main-menu .navbar-nav .header-admin .dropdown-menu {
    animation: none;
    margin-bottom: 15px;
    min-width: 200px;
  }
}
.header-main-menu .navbar-nav .header-admin .dropdown-menu .item-header {
    text-align: center;
    background-color: var(--cui-white);
    padding: 20px 25px;
    border-radius: 4px 4px 0 0;
    position: relative;
}
.header-main-menu .navbar-nav .header-admin .dropdown-menu .item-header:after {
  content: "";
  height: 0;
  width: 0;
  border-bottom: 10px solid var(--cui-white);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  position: absolute;
  top: -8px;
  right: 14px;
}
@media only screen and (max-width: 767px) {
  .header-main-menu .navbar-nav .header-admin .dropdown-menu .item-header:after {
    display: none;
  }
}
.header-main-menu .navbar-nav .header-admin .dropdown-menu .item-header .item-title {
  margin-bottom: 0;
  color: #fff;
}
.header-main-menu .navbar-nav .header-admin .dropdown-menu .item-content .settings-list {
  padding: 10px 0;
  border-top: 1px solid #c9c9c9;
}
.header-main-menu .navbar-nav .header-admin .dropdown-menu .item-content .settings-list li a {
    color: #333;
    font-size: 16px;
    display: block;
    padding: 8px 25px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    border-bottom: 1px solid #E4E4E4;
}

.settings-list li:last-child a {
    border: 0 !important;
}

.header-main-menu .navbar-nav .header-admin .dropdown-menu .item-content .settings-list li a i:before {
  margin-left: 0;
  margin-right: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #444444;
}
.header-main-menu .navbar-nav .header-admin .dropdown-menu .item-content .settings-list li a:hover {
  background-color: #f6f6f6;
}

.owl-carousel .owl-stage {
    margin-left: 1px;
    margin-bottom: 5px;
    margin-top: 2px;
}

/*=============== 5.5 Sidebar Menu ==================*/
.sidebar-menu-one {
  width: 360px;
  position: fixed;
  top: 62px;
  bottom: 0;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  z-index: 10;
  overflow-y: auto;
}
.sidebar-chat-one {
  width: 360px;
  position: fixed;
  top: 62px;
  bottom: 0;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  z-index: 10;
  overflow-y: auto;
}

.sidebar-menu-one .sidebar-menu-content::-webkit-scrollbar {
  display: none;
}
.sidebar-menu-one::-webkit-scrollbar {
  display: none !important;
}


.sidebar-chat::-webkit-scrollbar {
  width: 10px;  
}

.sidebar-chat::-webkit-scrollbar-track {
  background: #f0f0f0;
}

.sidebar-chat::-webkit-scrollbar-thumb {
  background-color: #888;   
  border-radius: 10px;     
  border: 2px solid #f0f0f0;
}

.sidebar-chat::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}









.sidebar-menu-one .sidebar-menu-content {
  border: none;
  border-radius: 0;
  background-color: transparent;
  padding-bottom: 3rem;
  position: fixed;
  top: 68px;
  bottom: 0;
  overflow-y: scroll;
  width: inherit;
}

.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}

.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .nav-item > .nav-link i:before {
  color: #ffa901;
  font-size: 18px;
  margin-right: 15px;
  margin-left: 0;
}

.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .nav-item .nav-link.menu-active, .sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .nav-item .nav-link:hover {
  background-color: var(--white);
}
.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .nav-item .nav-link.menu-active span {
  color: #ffa901;
}
.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .nav-item .sub-group-menu {
  display: none;
  background-color: #051f3e;
  padding: 10px 0;
}
.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .nav-item .sub-group-menu > .nav-item .nav-link {
  font-size: 14px;
  color: #a3aab3;
  padding: 8px 20px 8px 60px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .nav-item .sub-group-menu > .nav-item .nav-link i {
  margin-right: 10px;
}
.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .nav-item .sub-group-menu > .nav-item .nav-link:hover {
  background-color: #042954;
  color: #ffffff;
}
.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .nav-item .sub-group-menu > .nav-item .nav-link.menu-active {
  background-color: #042954;
  color: #ffa901;
}
.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .nav-item .sub-group-menu.sub-group-active {
  display: block;
}
.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu .sidebar-nav-item > .nav-link:after {
  content: "\f107";
  font-family: Flaticon;
  font-size: 10px;
  font-weight: 700;
  color: #b0b8c2;
  position: absolute;
  right: 22px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(0deg);
  -ms-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* .sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu .nav-item.active .nav-link span {
  color: #ffffff;
} */
.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu .nav-item.active .nav-link:after {
  color: #ffab01;
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
.sidebar-menu-one .mobile-sidebar-header {
  border-bottom: 1px solid #021933;
}
.sidebar-menu-one .mobile-sidebar-header .header-logo {
  text-align: center;
}
.sidebar-menu-one .mobile-sidebar-header .header-logo a {
  display: block;
  padding: 18px;
}
.sidebar-menu-two {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 18rem;
  background-color: #042954;
  box-sizing: content-box;
  z-index: 10;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.sidebar-menu-two .sidebar-menu-content {
  border: none;
  border-radius: 0;
  background-color: transparent;
}
.sidebar-menu-two .sidebar-menu-content .nav-sidebar-menu {
  flex-direction: column;
}
.sidebar-menu-two .sidebar-menu-content .nav-sidebar-menu > .nav-item {
  border-bottom: 1px solid #021933;
  position: relative;
}
.sidebar-menu-two .sidebar-menu-content .nav-sidebar-menu > .nav-item > .nav-link {
  position: relative;
  padding: 12px 25px;
  text-align: center;
}
.sidebar-menu-two .sidebar-menu-content .nav-sidebar-menu > .nav-item > .nav-link i:before {
  color: #fea801;
  font-size: 24px;
  margin-left: 0;
}
.sidebar-menu-two .sidebar-menu-content .nav-sidebar-menu > .nav-item > .nav-link span {
  display: block;
  font-size: 14px;
  color: #9ea8b5;
}
.sidebar-menu-two .sidebar-menu-content .nav-sidebar-menu > .nav-item .sub-group-menu {
  width: 26rem;
  display: none;
  background-color: #051f3e;
  padding: 12px 0;
  border-radius: 0px 4px 4px 0px;
  border-left: .4px solid #f0f1f3;
  position: absolute;
  top: 0;
  right: -26rem;
  z-index: 10;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.sidebar-menu-two .sidebar-menu-content .nav-sidebar-menu > .nav-item .sub-group-menu > .nav-item .nav-link {
  font-size: 14px;
  color: #a3aab3;
  padding: 10px 25px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sidebar-menu-two .sidebar-menu-content .nav-sidebar-menu > .nav-item .sub-group-menu > .nav-item .nav-link i {
  margin-right: 10px;
}
.sidebar-menu-two .sidebar-menu-content .nav-sidebar-menu > .nav-item .sub-group-menu > .nav-item .nav-link:hover {
  background-color: #042954;
  color: #ffffff;
}
.sidebar-menu-two .sidebar-menu-content .nav-sidebar-menu > .nav-item:hover {
  background-color: #042040;
}
.sidebar-menu-two .sidebar-menu-content .nav-sidebar-menu > .nav-item:hover > .nav-link i:before {
  color: #fea901;
}
.sidebar-menu-two .sidebar-menu-content .nav-sidebar-menu > .nav-item:hover > .nav-link span {
  color: #ffffff;
}
.sidebar-menu-two .sidebar-menu-content .nav-sidebar-menu > .nav-item:hover .sub-group-menu {
  display: block;
}
.sidebar-menu-two .sidebar-menu-content .nav-sidebar-menu .nav-item.active .nav-link span {
  color: #ffffff;
}
.sidebar-main {
  left: 0px;
}
.sidebar-chat {
  left: 0px;
}
@media only screen and (min-width: 768px) {
  .sidebar-expand-md {
    position: static;
    overflow: visible;
  }
  .sidebar-menu-one .sidebar-menu-content {
    position: static;
    overflow: visible;
    width: auto;
  }
}
.sidebar-collapsed .nav-bar-header-one {
  min-width: 8rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .sidebar-collapsed .nav-bar-header-one {
    min-width: 26rem;
  }
}
.sidebar-collapsed .nav-bar-header-one .header-logo {
  display: none;
}
@media only screen and (max-width: 767px) {
  .sidebar-collapsed .nav-bar-header-one .header-logo {
    display: block;
  }
}
.sidebar-collapsed .nav-bar-header-one .toggle-button .item-link .btn-icon-wrap span:nth-child(1n) {
  top: 7px;
  transform: rotate(135deg);
}
.sidebar-collapsed .nav-bar-header-one .toggle-button .item-link .btn-icon-wrap span:nth-child(2n) {
  right: 40px;
  opacity: 0;
  visibility: hidden;
}
.sidebar-collapsed .nav-bar-header-one .toggle-button .item-link .btn-icon-wrap span:nth-child(3n) {
  top: 7px;
  transform: rotate(-135deg);
}
.sidebar-collapsed .sidebar-menu-one {
    width: 385px;
}
.sidebar-collapsed .sidebar-menu-one .sidebar-menu-content .sidebar-menu-header .sidebar-logo {
  display: none;
}
.sidebar-collapsed .sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .nav-item {
  position: relative;
}
.sidebar-collapsed .sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .nav-item > .nav-link {
  padding: 12px 20px;
  text-align: center;
}
.sidebar-collapsed .sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .nav-item > .nav-link i:before {
  margin: 0;
}
/* .sidebar-collapsed .sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .nav-item > .nav-link span {
  display: none;
} */
.sidebar-collapsed .sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .nav-item > .nav-link:after {
  display: none;
}
.sidebar-collapsed .sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .nav-item .sub-group-menu {
  width: 26rem;
  display: block !important;
  position: absolute;
  top: 0;
  left: 8rem;
  visibility: hidden;
  opacity: 0;
  border-left: 0.4px solid #cccccc;
  padding-left: 2px;
  z-index: 100;
}
.sidebar-collapsed .sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .nav-item .sub-group-menu > .nav-item > .nav-link {
  padding: 10px 25px;
}
.sidebar-collapsed .sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .nav-item .sub-group-menu > .nav-item > .nav-link i {
  display: none;
}
.sidebar-collapsed .sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .nav-item:hover .sub-group-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.sidebar-collapsed-mobile .sidebar-main {
  left: 0;
}
.sidebar-collapsed-mobile .sidebar-chat {
  left: 0;
}
/*=======================================================================
6. TEMPLATE STYLE
=========================================================================*/
/*=============== 6.1 Student Page Style ==================*/
.single-info-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 1199px) {
  .single-info-details {
    display: block;
  }
}
.single-info-details .item-img {
  margin-right: 40px;
}
@media only screen and (max-width: 1199px) {
  .single-info-details .item-img {
    margin: 0 0 40px 0;
    text-align: center;
  }
}
.single-info-details .item-content {
  flex: 1;
}
@media only screen and (max-width: 575px) {
  .single-info-details .item-content .item-header {
    display: block;
  }
}
@media only screen and (max-width: 575px) {
  .single-info-details .item-content .item-header .header-elements {
    margin-bottom: 15px;
  }
}
.single-info-details .item-content .item-header .header-elements ul li {
  display: inline-block;
  margin-right: 5px;
}
.single-info-details .item-content .item-header .header-elements ul li:last-child {
  margin-right: 0;
}
.single-info-details .item-content .item-header .header-elements ul li a {
  display: block;
  background-color: #f0f1f3;
  border-radius: 4px;
  color: #646464;
  font-size: 14px;
  padding: 7px 12px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.single-info-details .item-content .item-header .header-elements ul li a:hover {
  background-color: #ff9d01;
  color: #fff;
}
.single-info-details .item-content p {
  width: 50%;
}
@media only screen and (max-width: 1499px) {
  .single-info-details .item-content p {
    width: 80%;
  }
}
@media only screen and (max-width: 1199px) {
  .single-info-details .item-content p {
    width: 100%;
  }
}
.single-info-details .item-content .info-table .table {
  width: 50%;
}
@media only screen and (max-width: 1499px) {
  .single-info-details .item-content .info-table .table {
    width: 70%;
  }
}
@media only screen and (max-width: 991px) {
  .single-info-details .item-content .info-table .table {
    width: 100%;
  }
}
.single-info-details .item-content .info-table .table tr td {
  border: none;
  padding: 10px;
}
.new-added-form .form-group {
  position: relative;
  margin-bottom: 2.3rem;
}
.new-added-form .form-group:last-child {
  margin-bottom: 0;
}
.new-added-form .form-group label {
  margin-bottom: 12px;
  display: block;
}
.new-added-form .form-group .form-control, .new-added-form .select2-selection--single  {
    background-color: #fff;
    height: 45px;
    border: 1px solid #00000026;
}

textarea.form-control {
    height: auto !IMPORTANT;
}
.new-added-form .form-group i {
  position: absolute;
  top: 56px;
  right: 34px;
  font-size: 15px;
  color: #000;
}
.new-added-form .form-group .textarea {
  height: auto;
}
.new-added-form .form-group .form-control-file {
  display: inline-block;
  width: auto;
}
.new-added-form .form-group .form-control-file:focus {
  outline: none;
}
.new-added-form .form-group .btn-fill-lg {
  margin-right: 10px;
  margin-bottom: 10px;
}
.new-added-form .form-group .btn-fill-lg:last-child {
  margin-right: 0;
  margin-bottom: 0;
}
/*=============== 6.2 Notice Board ==================*/
.notice-board-wrap {
  max-height: 900px;
  overflow-y: scroll;
  padding-right: 20px;
}
.notice-board-wrap .notice-list {
  border-bottom: 1px solid #ededed;
  padding-bottom: 14px;
  margin-bottom: 18px;
}
.notice-board-wrap .notice-list .post-date {
  display: inline-block;
  font-size: 14px;
  color: #ffffff;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.notice-board-wrap .notice-list .notice-title {
  font-weight: 500;
  margin-bottom: 8px;
}
.notice-board-wrap .notice-list .notice-title a {
  color: #111111;
}
.notice-board-wrap .notice-list .entry-meta {
  font-size: 15px;
  color: #646464;
}
.notice-board-wrap .notice-list .entry-meta span {
  color: #a4a4a4;
}
/*=============== 6.3 Messaging ==================*/
.message-box-wrap .card-body .message-success-box {
  text-align: center;
  padding: 5rem 2rem;
}
@media only screen and (max-width: 1399px) {
  .message-box-wrap .card-body .message-success-box {
    padding: 5rem 1rem;
  }
}
.message-box-wrap .card-body .message-success-box .item-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  .message-box-wrap .card-body .message-success-box .item-content {
    display: block;
  }
}
.message-box-wrap .card-body .message-success-box .item-content .item-title {
  font-size: 16px;
  color: #646464;
  font-style: italic;
  margin-bottom: 0;
  flex: 1;
}
.message-box-wrap .card-body .message-success-box .item-content .item-icon {
  margin-right: 45px;
  text-align: center;
  display: inline-block;
  font-size: 14px;
  color: #ffffff;
  height: 44px;
  width: 44px;
  line-height: 44px;
  border-radius: 50%;
  background-color: #92c755;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .message-box-wrap .card-body .message-success-box .item-content .item-icon {
    margin: 0 0 35px 0;
  }
}
.message-box-wrap .card-body .message-success-box .item-content .item-icon:before {
  content: "";
  height: 58px;
  width: 58px;
  border: 8px solid rgba(146, 199, 85, 0.7);
  border-radius: 50%;
  position: absolute;
  top: -7px;
  left: -7px;
}
.message-box-wrap .card-body .message-success-box .item-content .item-icon:after {
  content: "";
  height: 78px;
  width: 78px;
  border: 10px solid rgba(146, 199, 85, 0.3);
  border-radius: 50%;
  position: absolute;
  top: -17px;
  left: -17px;
}
.message-box-wrap .card-body .message-error-box {
  text-align: center;
  padding: 5rem 2rem;
}
@media only screen and (max-width: 1399px) {
  .message-box-wrap .card-body .message-error-box {
    padding: 5rem 1rem;
  }
}
.message-box-wrap .card-body .message-error-box .item-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  .message-box-wrap .card-body .message-error-box .item-content {
    display: block;
  }
}
.message-box-wrap .card-body .message-error-box .item-content .item-title {
  font-size: 16px;
  color: #646464;
  font-style: italic;
  margin-bottom: 0;
  flex: 1;
}
.message-box-wrap .card-body .message-error-box .item-content .item-icon {
  margin-right: 45px;
  text-align: center;
  display: inline-block;
  font-size: 18px;
  color: #ffffff;
  height: 44px;
  width: 44px;
  line-height: 44px;
  border-radius: 50%;
  background-color: #ee0d0d;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .message-box-wrap .card-body .message-error-box .item-content .item-icon {
    margin: 0 0 35px 0;
  }
}
.message-box-wrap .card-body .message-error-box .item-content .item-icon:before {
  content: "";
  height: 58px;
  width: 58px;
  border: 8px solid rgba(238, 13, 13, 0.5);
  border-radius: 50%;
  position: absolute;
  top: -7px;
  left: -7px;
}
.message-box-wrap .card-body .message-error-box .item-content .item-icon:after {
  content: "";
  height: 78px;
  width: 78px;
  border: 10px solid rgba(238, 13, 13, 0.3);
  border-radius: 50%;
  position: absolute;
  top: -17px;
  left: -17px;
}
/*=============== 6.4 Account Settings ==================*/
.account-settings-box .user-details-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 1499px) {
  .account-settings-box .user-details-box {
    display: block;
  }
}
.account-settings-box .user-details-box .item-img {
  margin-right: 40px;
}
@media only screen and (max-width: 1499px) {
  .account-settings-box .user-details-box .item-img {
    margin: 0 0 40px 0;
  }
}
@media only screen and (max-width: 575px) {
  .account-settings-box .user-details-box .item-img {
    text-align: center;
  }
}
.account-settings-box .user-details-box .item-img img {
  border-radius: 50%;
}
.account-settings-box .user-details-box .item-content {
  flex: 1;
}
.account-settings-box .user-details-box .item-content .info-table .table {
  width: 100%;
}
.account-settings-box .user-details-box .item-content .info-table .table tr td {
  border: none;
  padding: 15px 10px;
  font-size: 16px;
}
.account-settings-box .all-user-box .media {
  align-items: center;
  background-color: #f7f7f7;
  padding: 20px 30px;
  margin-bottom: 2px;
  border-radius: 4px;
  cursor: pointer;
}
@media only screen and (max-width: 575px) {
  .account-settings-box .all-user-box .media {
    text-align: center;
  }
}
.account-settings-box .all-user-box .media .item-img img {
  border-radius: 50%;
}
.account-settings-box .all-user-box .media .media-body .item-title {
  font-weight: 500;
  color: #111111;
  margin-bottom: 5px;
  font-size: 16px;
}
.account-settings-box .all-user-box .media .media-body .item-subtitle {
  font-size: 15px;
}
.account-settings-box .all-user-box .media.active {
  background-color: #debbbb;
}
/*=============== 6.5 UI Elements ==================*/
.ui-btn-wrap ul li {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 14px;
}
.ui-btn-wrap ul li:last-child {
  margin-right: 0;
}
.ui-grid-box {
  background-color: #f2f2f2;
  padding: 12px 25px;
  margin-bottom: 30px;
}
.progress-bar-card {
  height: auto;
}
.progress-bar-card .card-body .basic-progress-bar .progress {
  margin-bottom: 30px;
  height: 7px;
}
.progress-bar-card .card-body .stripe-progress-bar .progress {
  height: 20px;
  margin-bottom: 20px;
}
.progress-bar-card .card-body .gradient-progress-bar .progress {
  height: 30px;
  margin-bottom: 20px;
}
.progress-bar-card .card-body .gradient-progress-bar .progress .progress-bar {
  text-align: right;
  padding-right: 10px;
  font-size: 18px;
}
.progress-bar-card .card-body .vertical-progress-bar .progress-bar-vertical {
  width: 70px;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  margin-right: 20px;
  margin-bottom: 20px;
  float: left;
}
.progress-bar-card .card-body .vertical-progress-bar .progress-bar-vertical .progress-bar {
  width: 100%;
  height: 0;
  -webkit-transition: height 0.6s ease;
  -o-transition: height 0.6s ease;
  transition: height 0.6s ease;
  font-size: 18px;
  font-weight: 500;
}
.ui-tab-card {
  height: auto;
}
.ui-tab-card .card-body .basic-tab .nav-tabs .nav-item .nav-link {
  color: #646464;
  padding: 10px 50px;
}
@media only screen and (max-width: 991px) {
  .ui-tab-card .card-body .basic-tab .nav-tabs .nav-item .nav-link {
    padding: 10px 30px;
  }
}
@media only screen and (max-width: 575px) {
  .ui-tab-card .card-body .basic-tab .nav-tabs .nav-item .nav-link {
    padding: 10px;
  }
}
.ui-tab-card .card-body .basic-tab .nav-tabs .nav-item .nav-link.active {
  color: #3d5afe;
}
.ui-tab-card .card-body .basic-tab .tab-content .tab-pane {
  border: 1px solid #dee2e6;
  border-top: none;
  padding: 25px 30px 5px;
}
.ui-tab-card .card-body .custom-tab .nav-tabs {
  border-bottom: 4px solid #dee2e6;
}
.ui-tab-card .card-body .custom-tab .nav-tabs .nav-item .nav-link {
  margin-right: 20px;
  padding-bottom: 8px;
  border: none;
  color: #646464;
  position: relative;
}
.ui-tab-card .card-body .custom-tab .nav-tabs .nav-item .nav-link:after {
  content: "";
  height: 4px;
  width: 0;
  background-color: #80deea;
  position: absolute;
  bottom: -3px;
  left: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.ui-tab-card .card-body .custom-tab .nav-tabs .nav-item .nav-link:hover:after {
  width: 100%;
}
.ui-tab-card .card-body .custom-tab .nav-tabs .nav-item .nav-link.active {
  background-color: transparent;
  color: #80deea;
}
.ui-tab-card .card-body .custom-tab .nav-tabs .nav-item .nav-link.active:after {
  width: 100%;
}
.ui-tab-card .card-body .custom-tab .tab-content .tab-pane {
  padding-top: 25px;
}
.ui-tab-card .card-body .border-nav-tab .nav-tabs {
  border: 1px solid #dee2e6;
}
.ui-tab-card .card-body .border-nav-tab .nav-tabs .nav-item .nav-link {
  color: #646464;
  border-top: none;
  border-left: none;
  border-right: 1px solid;
  border-color: #dee2e6;
  border-radius: 0;
  padding: 10px 30px;
}
.ui-tab-card .card-body .border-nav-tab .nav-tabs .nav-item .nav-link:hover {
  background-color: #f57c00;
  border-color: #f57c00;
  color: #ffffff;
  box-shadow: 0px 5px 13px 0px rgba(245, 124, 0, 0.4);
}
.ui-tab-card .card-body .border-nav-tab .nav-tabs .nav-item .nav-link.active {
  background-color: #f57c00;
  color: #ffffff;
  box-shadow: 0px 5px 13px 0px rgba(245, 124, 0, 0.4);
  border-color: #f57c00;
}
.ui-tab-card .card-body .border-nav-tab .tab-content {
  padding-top: 30px;
}
.ui-tab-card .card-body .vertical-tab {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .ui-tab-card .card-body .vertical-tab {
    display: block;
  }
}
.ui-tab-card .card-body .vertical-tab .nav-tabs {
  min-width: 140px;
  margin-right: 30px;
  border-bottom: none;
}
@media only screen and (max-width: 767px) {
  .ui-tab-card .card-body .vertical-tab .nav-tabs {
    margin-bottom: 30px;
  }
}
.ui-tab-card .card-body .vertical-tab .nav-tabs .nav-item .nav-link {
  color: #646464;
  border: 1px solid;
  border-color: #dee2e6;
  border-radius: 4px;
  padding: 10px 30px;
  position: relative;
  height: 100%;
}
.ui-tab-card .card-body .vertical-tab .nav-tabs .nav-item .nav-link:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid #ff1744;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  visibility: hidden;
  opacity: 0;
}
.ui-tab-card .card-body .vertical-tab .nav-tabs .nav-item .nav-link:hover {
  background-color: #ff1744;
  border-color: #ff1744;
  color: #ffffff;
}
.ui-tab-card .card-body .vertical-tab .nav-tabs .nav-item .nav-link:hover:after {
  visibility: visible;
  opacity: 1;
  right: -10px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.ui-tab-card .card-body .vertical-tab .nav-tabs .nav-item .nav-link.active {
  background-color: #ff1744;
  color: #ffffff;
  border-color: #ff1744;
}
.ui-tab-card .card-body .vertical-tab .nav-tabs .nav-item .nav-link.active:after {
  visibility: visible;
  opacity: 1;
  right: -10px;
}
.ui-tab-card .card-body .icon-tab .nav-tabs {
  border: none;
}
.ui-tab-card .card-body .icon-tab .nav-tabs .nav-item .nav-link {
  margin-right: 6px;
  padding-bottom: 8px;
  color: #646464;
  border-radius: 4px;
  padding: 10px 20px;
}
.ui-tab-card .card-body .icon-tab .nav-tabs .nav-item .nav-link:hover {
  background-color: #7cc576 !important;
  border-color: #7cc576 !important;
}
.ui-tab-card .card-body .icon-tab .nav-tabs .nav-item .nav-link:hover i {
  color: #ffffff !important;
}
.ui-tab-card .card-body .icon-tab .nav-tabs .nav-item .nav-link.active {
  background-color: #7cc576 !important;
  border-color: #7cc576 !important;
}
.ui-tab-card .card-body .icon-tab .nav-tabs .nav-item .nav-link.active i {
  color: #ffffff !important;
}
.ui-tab-card .card-body .icon-tab .tab-content {
  padding-top: 26px;
}
.ui-alart-box .dismiss-alart .alert-dismissible .close {
  top: 50%;
  transform: translateY(-50%);
}
.ui-alart-box .dismiss-alart .alert-dismissible .close span {
  font-size: 24px;
  color: #7c7c7c;
}
.ui-alart-box .icon-color-alart .icon-alart {
  color: #ffffff;
  padding-left: 75px;
  position: relative;
  border: none;
}
.ui-alart-box .icon-color-alart .icon-alart i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 3px 0 0 3px;
  font-size: 16px;
  height: 99%;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ui-modal-box .modal-box {
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 25px;
  margin-bottom: 10px;
}
.ui-modal-box .modal-box:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.ui-modal-box .modal-box label {
  display: block;
  margin-bottom: 10px;
}
.ui-modal-box .modal-box .modal .success-modal-content .modal-content .modal-body {
  padding: 40px;
}
@media only screen and (max-width: 479px) {
  .ui-modal-box .modal-box .modal .success-modal-content .modal-content .modal-body {
    text-align: center;
  }
}
.ui-modal-box .modal-box .modal .success-modal-content .modal-content .modal-body .success-message {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 479px) {
  .ui-modal-box .modal-box .modal .success-modal-content .modal-content .modal-body .success-message {
    display: block;
  }
}
.ui-modal-box .modal-box .modal .success-modal-content .modal-content .modal-body .success-message .item-title {
  font-size: 16px;
  color: #646464;
  font-style: italic;
  margin-bottom: 0;
  flex: 1;
}
.ui-modal-box .modal-box .modal .success-modal-content .modal-content .modal-body .success-message .item-icon {
  margin-right: 45px;
  text-align: center;
  display: inline-block;
  font-size: 14px;
  color: #ffffff;
  height: 44px;
  width: 44px;
  line-height: 44px;
  border-radius: 50%;
  background-color: #92c755;
  position: relative;
}
@media only screen and (max-width: 479px) {
  .ui-modal-box .modal-box .modal .success-modal-content .modal-content .modal-body .success-message .item-icon {
    margin: 0 0 35px 0;
  }
}
.ui-modal-box .modal-box .modal .success-modal-content .modal-content .modal-body .success-message .item-icon:before {
  content: "";
  height: 58px;
  width: 58px;
  border: 8px solid rgba(146, 199, 85, 0.7);
  border-radius: 50%;
  position: absolute;
  top: -7px;
  left: -7px;
}
.ui-modal-box .modal-box .modal .success-modal-content .modal-content .modal-body .success-message .item-icon:after {
  content: "";
  height: 78px;
  width: 78px;
  border: 10px solid rgba(146, 199, 85, 0.3);
  border-radius: 50%;
  position: absolute;
  top: -17px;
  left: -17px;
}
.ui-modal-box .modal-box .left-slide-modal .modal-dialog {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.ui-modal-box .modal-box .left-slide-modal .modal-dialog .modal-content {
  height: 100%;
}
.ui-modal-box .modal-box .left-slide-modal.show .modal-dialog {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.ui-modal-box .modal-box .right-slide-modal .modal-dialog {
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.ui-modal-box .modal-box .right-slide-modal .modal-dialog .modal-content {
  height: 100%;
}
.ui-modal-box .modal-box .right-slide-modal.show .modal-dialog {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.ui-modal-box .modal-box .sign-up-modal .modal-dialog .modal-content .modal-body {
  position: relative;
  padding: 50px 50px 30px;
}
@media only screen and (max-width: 479px) {
  .ui-modal-box .modal-box .sign-up-modal .modal-dialog .modal-content .modal-body {
    padding: 50px 20px 30px;
  }
}
.ui-modal-box .modal-box .sign-up-modal .modal-dialog .modal-content .modal-body .close-btn {
  border-bottom: none;
  position: absolute;
  top: 10px;
  right: 10px;
}
.ui-modal-box .modal-box .sign-up-modal .modal-dialog .modal-content .modal-body .close-btn .close {
  font-size: 24px;
  height: 40px;
  width: 40px;
  background-color: #f8f8f8;
  border-radius: 50%;
  opacity: 1;
}
.ui-modal-box .modal-box .sign-up-modal .modal-dialog .modal-content .modal-body .close-btn .close:focus {
  outline: none;
}
.ui-modal-box .modal-box .sign-up-modal .modal-dialog .modal-content .modal-body .close-btn .close span {
  text-shadow: none;
  color: #444444;
}
.ui-modal-box .modal-box .sign-up-modal .modal-dialog .modal-content .modal-body .item-logo {
  text-align: center;
  margin-bottom: 40px;
}
.ui-modal-box .modal-box .sign-up-modal .modal-dialog .modal-content .modal-body .login-form .form-group {
  position: relative;
  margin-bottom: 15px;
}
.ui-modal-box .modal-box .sign-up-modal .modal-dialog .modal-content .modal-body .login-form .form-group .form-control {
  background-color: transparent;
  border: 1px solid #c2c2c2;
  padding: 5px 35px 5px 20px;
}
.ui-modal-box .modal-box .sign-up-modal .modal-dialog .modal-content .modal-body .login-form .form-group > input {
  height: 50px;
}
.ui-modal-box .modal-box .sign-up-modal .modal-dialog .modal-content .modal-body .login-form .form-group i {
  position: absolute;
  top: 60%;
  right: 18px;
  font-size: 15px;
  color: #9f9f9f;
}
.ui-modal-box .modal-box .sign-up-modal .modal-dialog .modal-content .modal-body .login-form .form-group input.form-control::-webkit-input-placeholder,
.ui-modal-box .modal-box .sign-up-modal .modal-dialog .modal-content .modal-body .login-form .form-group textarea.form-control::-webkit-input-placeholder {
  color: #cccccc;
  font-size: 15px;
}
.ui-modal-box .modal-box .sign-up-modal .modal-dialog .modal-content .modal-body .login-form .form-group input.form-control::-moz-placeholder,
.ui-modal-box .modal-box .sign-up-modal .modal-dialog .modal-content .modal-body .login-form .form-group textarea.form-control::-moz-placeholder {
  color: #cccccc;
  font-size: 15px;
}
.ui-modal-box .modal-box .sign-up-modal .modal-dialog .modal-content .modal-body .login-form .form-group input.form-control:-ms-input-placeholder,
.ui-modal-box .modal-box .sign-up-modal .modal-dialog .modal-content .modal-body .login-form .form-group textarea.form-control:-ms-input-placeholder {
  color: #cccccc;
  font-size: 15px;
}
.ui-modal-box .modal-box .sign-up-modal .modal-dialog .modal-content .modal-body .login-form .form-group .form-check .form-check-label {
  cursor: pointer;
  font-size: 14px;
  padding-left: 30px;
  font-weight: 500;
  color: #444444;
}
.ui-modal-box .modal-box .sign-up-modal .modal-dialog .modal-content .modal-body .login-form .form-group .form-check .form-check-label:before {
  top: 1px;
}
.ui-modal-box .modal-box .sign-up-modal .modal-dialog .modal-content .modal-body .login-form .form-group .form-check .form-check-label:after {
  top: 2px;
}
.ui-modal-box .modal-box .sign-up-modal .modal-dialog .modal-content .modal-body .login-form .form-group .login-btn {
  cursor: pointer;
  width: 100%;
  border: none;
  position: relative;
  text-align: center;
  display: block;
  font-weight: 700;
  color: #ffffff;
  background: -webkit-gradient(linear, left bottom, left top, from(#042954), to(#0b4776));
  background: -o-linear-gradient(bottom, #042954, #0b4776);
  background: linear-gradient(to top, #042954, #0b4776);
  border-radius: 4px;
  padding: 16px 10px;
  z-index: 1;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.ui-modal-box .modal-box .sign-up-modal .modal-dialog .modal-content .modal-body .login-form .form-group .login-btn:after {
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(to top, #0b4776, #042954);
  border-radius: 4px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.ui-modal-box .modal-box .sign-up-modal .modal-dialog .modal-content .modal-body .login-form .form-group .login-btn:hover:after {
  visibility: visible;
  opacity: 1;
}
.ui-modal-box .modal-box .notification-modal .modal-dialog {
  position: absolute;
  bottom: 20px;
  right: 0;
  margin: 50px;
  max-width: 300px;
}
.ui-modal-box .modal-box .notification-modal .modal-dialog .modal-content {
  background-color: #042954;
}
.ui-modal-box .modal-box .notification-modal .modal-dialog .modal-content .modal-body {
  text-align: center;
  padding: 50px 20px 20px;
}
.ui-modal-box .modal-box .notification-modal .modal-dialog .modal-content .modal-body .item-title {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}
.ui-modal-box .modal-box .notification-modal .modal-dialog .modal-content .modal-body p {
  color: #dedede;
}
.ui-modal-box .modal-box .notification-modal .modal-dialog .modal-content .modal-body .close-btn button {
  cursor: pointer;
  display: block;
  margin: 0 auto 15px;
}
.ui-modal-box .modal-box .notification-modal .modal-dialog .modal-content .modal-body .close-btn button:focus {
  outline: none;
}
.ui-modal-box .modal-box .notification-modal .modal-dialog .modal-content .modal-body .close-btn .item-btn {
  background-color: #ffffff;
  border-radius: 4px;
  border: none;
  color: #111111;
  font-weight: 500;
  width: 100%;
  padding: 8px 10px;
}
.ui-modal-box .modal-box .notification-modal .modal-dialog .modal-content .modal-body .close-btn .close-btn {
  background: none;
  border: none;
  color: #ffffff;
}
.ui-modal-box .modal-box .feedback-modal .modal-dialog {
  position: absolute;
  bottom: 20px;
  right: 0;
  margin: 50px;
  max-width: 300px;
}
@media only screen and (max-width: 767px) {
  .ui-modal-box .modal-box .feedback-modal .modal-dialog {
    top: 0;
  }
}
.ui-modal-box .modal-box .feedback-modal .modal-dialog .modal-content .modal-body {
  text-align: center;
  padding: 50px 20px 20px;
}
.ui-modal-box .modal-box .feedback-modal .modal-dialog .modal-content .modal-body .close-btn {
  border-bottom: none;
  position: absolute;
  top: 15px;
  right: 20px;
}
.ui-modal-box .modal-box .feedback-modal .modal-dialog .modal-content .modal-body .close-btn .close {
  font-size: 24px;
  height: 40px;
  width: 40px;
  background-color: #f8f8f8;
  border-radius: 50%;
  opacity: 1;
}
.ui-modal-box .modal-box .feedback-modal .modal-dialog .modal-content .modal-body .close-btn .close:focus {
  outline: none;
}
.ui-modal-box .modal-box .feedback-modal .modal-dialog .modal-content .modal-body .close-btn .close span {
  text-shadow: none;
  color: #444444;
}
.ui-modal-box .modal-box .feedback-modal .modal-dialog .modal-content .modal-body .item-title {
  font-size: 24px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 10px;
}
.ui-modal-box .modal-box .feedback-modal .modal-dialog .modal-content .modal-body .feedback-form .form-group {
  text-align: left;
}
.ui-modal-box .modal-box .feedback-modal .modal-dialog .modal-content .modal-body .feedback-form .form-group .form-check label {
  padding-left: 30px;
  font-weight: 500;
  color: #444444;
}
.ui-modal-box .modal-box .feedback-modal .modal-dialog .modal-content .modal-body .feedback-form .form-group .item-btn {
  margin-top: 20px;
  background-color: #042954;
  border-radius: 4px;
  border: none;
  color: #ffffff;
  font-weight: 500;
  width: 100%;
  padding: 8px 10px;
  cursor: pointer;
  display: block;
  margin: 0 auto 15px;
}
.ui-modal-box .modal-box .feedback-modal .modal-dialog .modal-content .modal-body .feedback-form .form-group .item-btn:focus {
  outline: none;
}
/*=============== 6.6 Login Page ==================*/
.login-page-wrap {
  background-image: url('img/figure/login-bg.jpg');
  background-repeat: no-repeat;
  background-position: top;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .login-page-wrap {
    position: relative;
    height: auto;
  }
}
.login-page-content {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 50px;
}
@media only screen and (max-width: 575px) {
  .login-page-content {
    padding: 50px 20px;
  }
}
.login-page-content .login-box {
  min-width: 470px;
  padding: 6rem 7rem;
  border-radius: 4px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 5px 49px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 5px 49px 0px rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
}
@media only screen and (max-width: 575px) {
  .login-page-content .login-box {
    min-width: 300px;
    padding: 6rem 4rem;
  }
}
@media only screen and (max-width: 479px) {
  .login-page-content .login-box {
    padding: 6rem 2rem;
  }
}
.login-page-content .login-box .item-logo {
  text-align: center;
  margin-bottom: 40px;
}
.login-page-content .login-box .login-form .form-group {
  position: relative;
  margin-bottom: 18px;
}
.login-page-content .login-box .login-form .form-group > label {
  font-size: 15px;
  font-weight: 500;
  color: #444444;
  margin-bottom: 10px;
}
.login-page-content .login-box .login-form .form-group .form-control {
  background-color: transparent;
  border: 1px solid #c2c2c2;
  padding: 5px 35px 5px 20px;
}
.login-page-content .login-box .login-form .form-group > input {
  height: 50px;
}
.login-page-content .login-box .login-form .form-group i {
  position: absolute;
  top: 60%;
  right: 18px;
  font-size: 15px;
  color: #9f9f9f;
}
.login-page-content .login-box .login-form .form-group input.form-control::-webkit-input-placeholder,
.login-page-content .login-box .login-form .form-group textarea.form-control::-webkit-input-placeholder {
  color: #adadad;
  font-size: 15px;
}
.login-page-content .login-box .login-form .form-group input.form-control::-moz-placeholder,
.login-page-content .login-box .login-form .form-group textarea.form-control::-moz-placeholder {
  color: #adadad;
  font-size: 15px;
}
.login-page-content .login-box .login-form .form-group input.form-control:-ms-input-placeholder,
.login-page-content .login-box .login-form .form-group textarea.form-control:-ms-input-placeholder {
  color: #adadad;
  font-size: 15px;
}
.login-page-content .login-box .login-form .form-group .form-check .form-check-label {
  cursor: pointer;
  font-size: 14px;
  padding-left: 30px;
  font-weight: 500;
  color: #444444;
}
.login-page-content .login-box .login-form .form-group .form-check .form-check-label:before {
  top: 1px;
}
.login-page-content .login-box .login-form .form-group .form-check .form-check-label:after {
  top: 2px;
}
.login-page-content .login-box .login-form .form-group .forgot-btn {
  font-size: 14px;
  color: #ff0000;
  font-weight: 500;
}
.login-page-content .login-box .login-form .form-group .login-btn {
  cursor: pointer;
  width: 100%;
  border: none;
  margin-top: 30px;
  position: relative;
  text-align: center;
  display: block;
  font-weight: 700;
  color: #ffffff;
  background: -webkit-gradient(linear, left bottom, left top, from(#042954), to(#0b4776));
  background: -o-linear-gradient(bottom, #042954, #0b4776);
  background: linear-gradient(to top, #042954, #0b4776);
  border-radius: 4px;
  padding: 16px 10px;
  z-index: 1;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.login-page-content .login-box .login-form .form-group .login-btn:after {
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(to top, #0b4776, #042954);
  border-radius: 4px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.login-page-content .login-box .login-form .form-group .login-btn:hover:after {
  visibility: visible;
  opacity: 1;
}
.login-page-content .login-box .login-social {
  text-align: center;
}
.login-page-content .login-box .login-social p {
  margin-bottom: 0;
}
.login-page-content .login-box .login-social ul {
  margin-top: 10px;
}
.login-page-content .login-box .login-social ul li {
  display: inline-block;
  margin-right: 2px;
}
.login-page-content .login-box .login-social ul li:last-child {
  margin-right: 0;
}
.login-page-content .login-box .login-social ul li a {
  width: 45px;
  height: 42px;
  line-height: 42px;
  display: inline-block;
  border-radius: 4px;
  color: #ffffff;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.login-page-content .login-box .login-social ul li a:hover {
  background-color: #ffaa01;
}
.login-page-content .sign-up {
  color: #ffffff;
}
.login-page-content .sign-up a {
  color: #ffffff;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.login-page-content .sign-up a:hover {
  color: #ffaa01;
}
/*=======================================================================
7. DASHBOARD STYLES 
=========================================================================*/
/*=============== 7.1 Dashboard Page One ==================*/
.dashboard-page-one {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-left: auto;
    width: calc(100% - 360px);
}

.dashboard-content-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.dashboard-content-chat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #f8f8f8;
}

.create_list_grops {
    padding: 40px 0px 30px 40px;
    margin-right: 57px;
}

.creator_item .create_title h3, .creator_item .create_title span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.declgo{
  display: none;
}

@media only screen and (max-width: 767px) {
  /* .dashboard-content-one {
    padding: 0 15px;
  } */

.pstdtlwdth .container {
    width: 95% !important;
}

body .posimgtf img {
    height: 200px !important;
}

.profile_area {
    padding:20px !important;
}

.profle-btn-collabs a {
    min-width: 150px !important;
}

.profile_card {
    padding:20px !important;
}

.admin_profile img {
    width: 100px !important;
    height: 100px !important;
}

.proflile_wrapds .admin_profile img {
    width: 100px !important;
    height: 80px !important;
}

.moblgo{
  display: none !important;
}

.mobmnu  .declgo{
  display: block !important;
}

.declgo img{
width: 30px !important;
}

.wish_page .nopadd {
    padding: 15px !important;
}

.notifi_cnt h6 {
    line-height: 20px;
}

.notifi_area .creator_item {
    padding: 15px 15px !important;
}


.mobmnu {
    display: flex;
    gap: 15px;
}

.desktop_menu .nav-link {
    font-size: 8px !important;
}

.desktop_menu .nav-link img {
    display: block;
    width: 15px !important;
}

.nav-bar-header-one .header-logo a {
    padding: 10px 0;
    display: flex;
}

body small#notification-count-container span {
    top: -32px !important;
    left: 7px !important;
    width: 15px !important;
    height: 15px !important;
    font-size: 8px !important;
}

.posnfg {
    padding: 0;
}

.frntmdl .modal-dialog, .frntmdlse .modal-dialog {
    max-width: 95% !important;
    width: 95% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    /* transform: translate(-50%, -50%) !important; */
    z-index: 1050;
    margin: auto;
    right: 0;
    bottom: 0;
    display: table;
}

.inpureg input {
    background: transparent !important;
    color: #000 !important;
}

.inpureg label {
    color: #000 !important;
}

.mobile-header-wrapper{
  display: block !important;
}

.sidebar-menu-one .sidebar-menu-content {
    padding-bottom: 80px;
}

footer {
    padding-bottom: 60px;
}

.btn-area {
    gap: 10px;
    flex-wrap: nowrap !important;
}

.filter-btn {
    padding: 6px 8px !important;
    font-size: 12px;
}

.btnalted {
    gap: 8px !important;
}

.filter-btn img {
    width: 11px !important;
}

.create_list_grops .btn-area {
    align-items: start !important;
}


body .filter-dropdown {
    width: 300px;
    left: -160px !important;
}

.btn_inner_areass h2 {
    font-size: 16px;
}

.rbnl {
    padding: 0px 25px 20px !important;
}
body .inner_section {
    padding: 40px 10px !important;
}

.memts {
    font-size: 16px !important;
    margin-bottom: 15px !important;
}

.btn-area h2 {
    font-size: 16px !important;
}

.btn-area {
    padding-bottom: 10px !important;
}

.wallet-balance-box {
    padding: 12px 10px !important;
    font-size: 10px !important;
    min-width: 140px !important;
}

body h2.wlet {
    font-size: 15px !important;
}

.withd_inner {
    padding: 15px !important;
}

.cardgst {
    padding: 25px 15px !important;
}

.withral_page {
    padding: 40px 10px;
}

.gstcrd ul li button {
    padding: 7px 20px !important;
}

.main_profile_section .profile_card {
    flex-direction: column;
}

.nav-tabs .nav-link.active {
    font-size: 14px;
}

.nav-tabs .nav-link {
    font-size: 14px;
}

.form_wrap {
    padding: 0 0px !important;
}

.social_links {
    padding: 20px 10px 0 !important;
}

.form-label-editable, .citylb {
    font-size: 16px !important;
}

.form_wrap .row {
    gap: 11px !important;
}

.pytmmdl .modal-dialog {
    max-width: 100% !important;
    margin-left: 0 !important;
}

.img_notifi {
    flex: 1 1 15%;
}

.notifi_cnt {
    flex: 1 1 80%;
}

/* img.intauser {
    width: 100% !important;
} */

.img_notifi {
    width: auto !important;
    height: auto !important;
}

#notification-container .intauser {
      width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.header-logo {
    width: 170px !important;
}



.labcnt label {
    font-size: 16px !important;
}

.labcnt input::placeholder,
.labcnt textarea::placeholder {
    font-size: 14px !important;

}

.create_vlog {
    padding: 8px 15px 30px !important;
}

.adicnd {
    flex: 1 1 14% !important;
}

button.owl-next i {
    font-size: 16px;
}

button.owl-prev i {
    font-size: 16px;
}

button.owl-next {
    right: 0px;
}

button.owl-prev {
    left: -18px;
}

.btn-style {
    padding: 5px 15px;
}

.tab-pane{
  overflow-x: auto;
-webkit-overflow-scrolling: touch;
}

/* .myclton{
  margin-left: -15px;
} */

small#chat-count-container span {
    line-height: 11px;
    padding: 4px 7px;
}

.title-aresa h2 {
    font-size: 16px;
}

.posbft .post_hed h5 {
    font-size: 16px !important;
}

.tab-pane table {
    width: max-content !important;
}

.owl-nav {
    display: none;
}
.profile_intersed_cmpt {
    padding: 0px 15px 15px !important;
    margin-bottom: 25px;
    display: block !important;
    justify-content: space-between;
}
.admin_intersed img {
    width: 70px !important;
    height: 70px !important;
}

body .btn_edtis_itsd .sbrt {
    font-size: 8px !important;
    padding: 4px 8px !important;
}

.proflile_intersed_inner {
    gap: 10px !important;
}

.btn_edtis_itsd .totl {
    gap: 10px !important;
}

.intersed_area_wrap .prgntrs {
    display: flex !important;
    width: 100%;
    justify-content: space-between;
}

.intrde {
    align-items: center !important;
    gap: 15px;
}

.dolor {
    font-size: 25px !important;
}

.notifi_cnt h6 {
    font-size: 11px !important;
    line-height: 16px !important;
}

.decntcfy {
    display: none;
}

.mobntcfy {
    display: block !important;
}

.tble-inv table {
    width: max-content;
}

.prgntrs {
    display: flex !important;
    width: 100%;
    justify-content: space-between;
}

.admin-img img {
    border-radius: 50px;
}

.fade:not(.show) {
    display: none;
}

.mobntcfy {
    padding: 0px 20px;
}

.profile_intersed_all {
    padding: 25px 15px !important;
}

.profile_intersed_all.acceuse {
    display: block;
}

.acceuse .proflile_intersed_inner {
    align-items: start;
}

.acceuse .intrde {
    justify-content: space-between;
    flex-direction: unset !important;
    gap: 7px;
}

.acceuse .btnpr a {
    padding: 6px 15px;
    font-size: 10px !important;
}

.acceuse .btnalg {
    padding: 4px 15px;
    border-radius: 6px !important;
}


.acceuse .intersed_area_wrap .prgntrs {
    margin: unset !important;
}

body .acceuse .btn_edtis_itsd .sbrt {
    font-size: 8px !important;
    padding: 6px 12px !important;
}

.acceuse .totl {
    display: block !important;
}

.interuse.profile_intersed {
    padding: 25px 15px !important;
    display: block !important;
}

.interuse .proflile_intersed_inner {
    align-items: start !important;
}


.interuse .intrde {
    justify-content: space-between;
    flex-direction: unset !important;
    gap: 7px;
}

.acceuse .intersed_area_wrap .prgntrs {
    margin: unset !important;
}

body .interuse .btn_edtis_itsd .sbrt {
    font-size: 8px !important;
    padding: 1px 10px !important;
}

.lndgmob.land_header {
    padding: 0px 10px;
}

.faqarea_landing{
  padding: 40px 10px !important;
}

.notifi_area {
    padding: 20px 0 !important;
}



.decswo {
    display: none !important;
}

body .mobswo {
    display: block !important;
}


.badge.awaiting, .badge.created, .badge.bg-success, .badge.bg-danger, .badge.bg-dark {
    font-size: 9px !important;
    gap: 3px !important;
}



body .btnpr.progtn .viwprlf {
    padding: 5px 15px !important;
    font-size: 10px !important;
}

.prgntrs .dolor{
  margin: 0;
  
}
.prgntrs {
 align-items: center;

}

.btn_edtis_itsd a {
    font-size: 13px !important;
}



.infochtbntmob {
    display: block !important;
}

.nav-bar-header-one .toggle-button .item-link .btn-icon-wrap {
    width: 20px !important;
}

 .sidebar-menu-content .nav-sidebar-menu .nav-link::before {
    content: '\ea6e';
    font-family: 'remixicon' !important;
    font-size: 18px;
    color: #ffffff;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
  }

   .sidebar-menu-content .nav-sidebar-menu .nav-item.active .nav-link::before{
      color: #000000;
   }

  .creator-section_wrp .creator_img img {
    height: 170px !important;
}

.infoprfl .sbrt {
    font-size: 10px;
    background: #fff !important;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 1px 0px 5px 1px rgb(0 0 0 / 19%);
}

.infoprfl{
display: block !important;
}

.gmtdstly{
  display: none;
}

.btn_edtis_itsd {
    flex: 1;
}
.infoprfl .totl {
    display: flex !important;
    gap: 7px !important;
}

.infoprfl .text-15 {
    margin-bottom: 4px;
}

.side_profile_info {
    align-items: start;
}

.profile_side_header {
    display: flex;
    gap: 20px;
    padding: 20px 10px;
}

#preferredCategorySelectedChips span {
    font-size: 15px !important;
    font-weight: 500 !important;
}

.icncrd {
    width: 40px !important;
    margin: auto;
}

.frntmdl .modal-body {
    padding: 20px 30px !important;
}

.tglmobs {
    display: flex;
}

.admin-img {
    width: 30px !important;
}

.admin-img img {
    width: 100% !important;
}

.header-logo img {
    width: 100% !important;
}

.inmobl .settings-list li:last-child {
    border-color: #b7b7b7;
}

body .frntmdlse .modal-body {
    padding: 30px 30px !important;
}

body .frcrd {
    padding: 40px 30px !important;
}

.profile_section, .main_profile_section {
    padding: 20px 0 !important;
}

.chnmobfle {
    display: none;
}

.chndecfle {
    display: block !important;
}

.chndealle{
  display: none ;
}

.chndecalle{
  display: block !important;
}

.infoprflnifo{
  display: none;
}

.decmob {
    display: block !important;
}

.infoprflnifo.decmob.infoprfl .totl p {
    margin-bottom: 6px;
}

.infoprflnifo.decmob.infoprfl {
    margin-top: 10px;
}

.infodtl{
  gap: 15px !important;
}

body .infodtl .admin_profile img {
    width: 80px !important;
}

.sharemobss{
  display: none !important;
}

.btn_edtis.pglas {
    width: 70%;
}

.chn_grup {
    padding: 25px 15px !important;
}


}



.decmob {
    display: none;
}


.chndealle {
    display: none;
}



.chndecfle {
    display: none;
}

.infoprfl{
display: none;
}


.infochtbntmob {
    display: none;
}

.mobswo {
    display: none !important;
}


.every-colbs .subtitle {
    margin-bottom: 0px;
}

.tdchek .form-check-label {
    color: #000000;
    font-size: 16px;
    font-weight: 800;
    padding: 3px;
}


.owl-carousel .resover.flex-bet {
    justify-content: end;
}

.resover.flex-bet{
    justify-content: end;
}



.mobntcfy {
    display: none;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 10px;
    justify-content: center;
    margin-top: -60px;
}

.stat-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 270px;
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card h6 {
    font-size: 11px;
    margin: 0;
}





.stat-card .icon {
  font-size: 40px;
  color: #FF5733; /* Example color */
}

/* .stat-card .text {
 
  margin-top: 10px;
  font-size: 16px;
} */


.stat-card p {
    font-size: 9px;
    margin-bottom: 0;
    line-height: 13px;
    color: #000;
}

.stat-card .urmg {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    object-fit: cover;
}

span.text {
    font-size: 18px !important;
    font-weight: 900;
    color: #000;
    display: block;
    line-height: 10px;
    margin-top: 7px;
    margin-bottom: 0px;
}

.stat-card small {
    font-size: 12px;
    font-weight: 600;
    color: #000;
}

.profile-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* Media Queries for Responsiveness */
@media (min-width: 768px) {
  .stats-container {
    flex-wrap: nowrap;
  }
  .stat-card {
    width: calc(21% - 20px); /* 5 items per row */
  }
}



   .inmobl .dropdown-menu.show {
    position: fixed !important;
    top: 60px !important; /* navbar ke height ke hisab se adjust kar lena */
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100vh !important;
    overflow-y: auto !important; 
    border-radius: 0 !important;
    margin-top: 0 !important;
    z-index: 1 !important;
    background: #fff !important;
  }

  .inmobl .dropdown-menu.show::-webkit-scrollbar {
    width: 2px;
  }

  .inmobl .dropdown-menu.show::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
  }


.inmobl .settings-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.inmobl .settings-list li {
  border-bottom: 1px solid #f0f0f0;
}

.inmobl .settings-list li a {
  position: relative;
  display: block;
  padding: 12px 35px 12px 15px;
  color: #222;
  text-decoration: none;
  transition: all 0.3s ease;
}


.inmobl .settings-list li a::after {
  content: '\ea6e'; 
  font-family: 'remixicon' !important;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #999;
  transition: all 0.3s ease;
}


.inmobl .settings-list li a:hover {
  background: #f8f8f8;
  color: #000;
}

.inmobl .settings-list li a:hover::after {
  right: 8px; 
  color: #000;
}









.inmobl .dropdown-menu .item-header {
    text-align: center;
    background-color: var(--cui-white);
    padding: 20px 25px;
    border-radius: 4px 4px 0 0;
    position: relative;
}

.inmobl .dropdown-menu .item-content .settings-list {
    padding: 10px 0;
    border-top: 1px solid #c9c9c9;
}

.inmobl .dropdown-menu .item-content .settings-list li a {
    color: #333;
    font-size: 16px;
    display: block;
    padding: 8px 25px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    border-bottom: 1px solid #E4E4E4;
}

.inmobl .text-24 {
    font-size: 16px;
    margin-bottom: 10px;
}

.inmobl .text-17 {
    font-size: 14px;
}



.mobile-header-wrapper{
  display: none;
}

.inprofl{
  display: flex;
  gap: 10px;
}


.botmmnu img{
width: 25px;
}
.botmmnu ul a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.botmmnu ul a span {
  font-size: 10px !important;
  color: #000;
}






.dashboard-summery-one {
  margin-bottom: 30px;
  background-color: #ffffff;
  padding: 22px 28px;
  border-radius: 4px;
  box-shadow: 0px 10px 20px 0px rgba(229, 229, 229, 0.75);
}
.dashboard-summery-one .item-icon {
  position: relative;
  height: 85px;
  width: 85px;
  line-height: 85px;
  border-radius: 50%;
  text-align: center;
}
.dashboard-summery-one .item-icon i:before {
  margin-left: 0;
  font-size: 44px;
}
.dashboard-summery-one .item-content {
  text-align: right;
}
.dashboard-summery-one .item-content .item-title {
  color: #a8a8a8;
  margin-bottom: 2px;
}
.dashboard-summery-one .item-content .item-number {
  font-size: 20px;
  font-weight: 500;
  color: #111111;
}
@media only screen and (max-width: 991px) {
  .dashboard-summery-one .item-content .item-number {
    font-size: 20px;
  }
}
.dashboard-card-one .card-body .earning-report {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 28px;
}
@media only screen and (max-width: 991px) {
  .dashboard-card-one .card-body .earning-report {
    margin-bottom: 20px;
    display: block;
  }
}
.dashboard-card-one .card-body .earning-report .item-content .single-item {
  display: inline-block;
  margin-right: 40px;
  padding-left: 34px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .dashboard-card-one .card-body .earning-report .item-content .single-item {
    margin-bottom: 20px;
  }
}
.dashboard-card-one .card-body .earning-report .item-content .single-item:after {
  content: "";
  height: 18px;
  width: 18px;
  border: 3px solid #ffffff;
  -webkit-box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}
.dashboard-card-one .card-body .earning-report .item-content .single-item:last-child {
  margin-right: 0;
}
.dashboard-card-one .card-body .earning-report .item-content .single-item h4 {
  color: #9f9f9f;
  margin-bottom: 4px;
  font-size: 16px;
}
.dashboard-card-one .card-body .earning-report .item-content .single-item span {
  padding-left: 13px;
  font-size: 22px;
  font-weight: 500;
  color: #222222;
  position: relative;
  display: inline-block;
}
@media only screen and (max-width: 991px) {
  .dashboard-card-one .card-body .earning-report .item-content .single-item span {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .dashboard-card-one .card-body .earning-report .item-content .single-item span {
    font-size: 18px;
  }
}
.dashboard-card-one .card-body .earning-report .item-content .single-item span:after {
  content: "$";
  font-size: 16px;
  color: #646464;
  font-weight: 500;
  position: absolute;
  top: 3px;
  left: 0;
}
.dashboard-card-one .card-body .earning-report .dropdown {
  text-align: right;
}
@media only screen and (max-width: 991px) {
  .dashboard-card-one .card-body .earning-report .dropdown {
    display: none;
  }
}
.dashboard-card-one .card-body .earning-report .dropdown .date-dropdown-toggle {
  color: #a7a7a7;
  position: relative;
  padding-right: 24px;
}
.dashboard-card-one .card-body .earning-report .dropdown .date-dropdown-toggle:after {
  content: "\f108";
  font-family: Flaticon;
  position: absolute;
  font-size: 12px;
  font-weight: 600;
  right: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 5;
  color: #222222;
}
.dashboard-card-one .card-body .earning-report .dropdown .dropdown-menu {
  top: 20px !important;
  min-width: 15rem;
  animation: none;
}
.dashboard-card-one .card-body .earning-report .dropdown .dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
}
.dashboard-card-one .card-body .earning-chart-wrap {
  position: relative;
}
.dashboard-card-two .card-body .expense-report {
  display: flex;
  margin-bottom: 38px;
}
.dashboard-card-two .card-body .expense-report .monthly-expense {
  position: relative;
  margin-right: 40px;
}
@media only screen and (max-width: 1699px) {
  .dashboard-card-two .card-body .expense-report .monthly-expense {
    margin-right: 13px;
  }
}
@media only screen and (max-width: 1499px) {
  .dashboard-card-two .card-body .expense-report .monthly-expense {
    margin-right: 30px;
  }
}
@media only screen and (max-width: 1299px) {
  .dashboard-card-two .card-body .expense-report .monthly-expense {
    margin-right: 13px;
  }
}
@media only screen and (max-width: 1199px) {
  .dashboard-card-two .card-body .expense-report .monthly-expense {
    margin-right: 40px;
  }
}
@media only screen and (max-width: 479px) {
  .dashboard-card-two .card-body .expense-report .monthly-expense {
    margin-right: 15px;
  }
}
.dashboard-card-two .card-body .expense-report .monthly-expense:last-child {
  margin-right: 0;
}
.dashboard-card-two .card-body .expense-report .monthly-expense:after {
  content: "";
  height: 4px;
  width: 100%;
  border-radius: 6px;
  position: absolute;
  bottom: -7px;
  left: 0;
  right: 0;
}
.dashboard-card-two .card-body .expense-report .monthly-expense .expense-date {
  font-size: 15px;
  color: #9f9f9f;
}
.dashboard-card-two .card-body .expense-report .monthly-expense .expense-amount {
  color: #222222;
  font-weight: 600;
  font-size: 16px;
}
.dashboard-card-two .card-body .expense-report .monthly-expense .expense-amount span {
  font-size: 16px;
  color: #646464;
}
.dashboard-card-three .card-body .doughnut-chart-wrap {
  padding: 5px 0 50px;
  display: flex;
  justify-content: center;
}
.dashboard-card-three .card-body .student-report {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.dashboard-card-three .card-body .student-report:before {
  content: "";
  height: 58px;
  width: 1px;
  background-color: #d7d7d7;
  position: absolute;
  top: -15px;
  right: 50%;
  transform: translateX(-50%);
}
.dashboard-card-three .card-body .student-report .student-count {
  position: relative;
}
.dashboard-card-three .card-body .student-report .student-count .item-title {
  font-size: 14px;
  color: #a5a5a5;
  margin-bottom: 2px;
}
.dashboard-card-three .card-body .student-report .student-count .item-number {
  font-size: 16px;
  color: #111111;
  font-weight: 500;
}
.dashboard-card-three .card-body .student-report .student-count:after {
  content: "";
  height: 6px;
  width: 49px;
  border-radius: 6px;
  position: absolute;
  top: -18px;
  left: 0;
}
.dashboard-card-three .card-body .student-report .student-count:last-child:before {
  display: none;
}
.dashboard-card-four .card-body .calender-wrap .fc-calender .fc-view-container .fc-basicWeek-view table .fc-head .fc-head-container .fc-day-header {
  font-size: 14px;
}
.dashboard-card-five .card-body .traffic-title {
  color: #a5a5a5;
  margin-bottom: 10px;
}
.dashboard-card-five .card-body .traffic-number {
  font-size: 30px;
  font-weight: 700;
  color: #222222;
  line-height: 1;
  margin-bottom: 25px;
}
.dashboard-card-five .card-body .traffic-bar {
  display: flex;
  margin-bottom: 18px;
}
.dashboard-card-five .card-body .traffic-bar .direct {
  flex: 0 0 50%;
  max-width: 50%;
  min-height: 10px;
  background-color: #1de9b6;
  border-radius: 40px 0 0 40px;
}
.dashboard-card-five .card-body .traffic-bar .search {
  flex: 0 0 27%;
  max-width: 27%;
  min-height: 10px;
  background-color: #304ffe;
}
.dashboard-card-five .card-body .traffic-bar .referrals {
  flex: 0 0 16%;
  max-width: 16%;
  min-height: 10px;
  background-color: #ffea00;
}
.dashboard-card-five .card-body .traffic-bar .social {
  flex: 0 0 7%;
  max-width: 7%;
  min-height: 10px;
  background-color: #ed1c24;
  border-radius: 0 40px 40px 0;
}
.dashboard-card-five .card-body .traffic-table .table tbody tr {
  border-bottom: 1px dashed #e1e1e1;
}
.dashboard-card-five .card-body .traffic-table .table tbody tr:last-child {
  border-bottom: none;
}
.dashboard-card-five .card-body .traffic-table .table tbody tr td {
  color: #111111;
  font-weight: 500;
  border-top: none;
  padding: 20px 15px;
}
.dashboard-card-five .card-body .traffic-table .table tbody tr .t-title {
  position: relative;
  padding-left: 34px;
}
.dashboard-card-five .card-body .traffic-table .table tbody tr .t-title:after {
  content: "";
  height: 17px;
  width: 17px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  -webkit-box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
}
.dashboard-card-six ::-webkit-scrollbar {
  width: 10px;
  background: #f0f1f2;
  border-radius: 30px;
}
.dashboard-card-six ::-webkit-scrollbar-track {
  border-radius: 30px;
  background: #f0f1f2;
}
.dashboard-card-six ::-webkit-scrollbar-thumb {
  border-radius: 30px;
  background: #3751fe;
}
.dashboard-card-six .card-body .notice-box-wrap {
  max-height: 358px;
  overflow-y: scroll;
  padding-right: 20px;
}
.dashboard-card-six .card-body .notice-box-wrap .notice-list {
  border-bottom: 1px solid #ededed;
  padding-bottom: 14px;
  margin-bottom: 18px;
}
.dashboard-card-six .card-body .notice-box-wrap .notice-list .post-date {
  display: inline-block;
  font-size: 14px;
  color: #ffffff;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.dashboard-card-six .card-body .notice-box-wrap .notice-list .notice-title {
  font-weight: 500;
  margin-bottom: 8px;
}
.dashboard-card-six .card-body .notice-box-wrap .notice-list .notice-title a {
  color: #111111;
}
.dashboard-card-six .card-body .notice-box-wrap .notice-list .entry-meta {
  font-size: 15px;
  color: #646464;
}
.dashboard-card-six .card-body .notice-box-wrap .notice-list .entry-meta span {
  color: #a4a4a4;
}
.dashboard-card-seven .social-media {
  border-radius: 4px;
  padding: 30px 20px;
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.dashboard-card-seven .social-media .media {
  align-items: center;
  justify-content: center;
}
.dashboard-card-seven .social-media .media .social-icon {
  font-size: 24px;
  color: #ffffff;
}
.dashboard-card-seven .social-media .media .media-body {
  flex: inherit;
}
.dashboard-card-seven .social-media .media .media-body .item-title {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 15px;
}
@media only screen and (max-width: 1199px) {
  .dashboard-card-seven .social-media .media .media-body {
    margin-top: 10px;
  }
}
.dashboard-card-seven .social-media .social-like {
  font-size: 26px;
  color: #ffffff;
}
/*=============== 7.2 Dashboard Page Two ==================*/
.dashboard-card-ten .card-body .student-info .media {
  margin-bottom: 6px;
}
@media only screen and (max-width: 1499px) {
  .dashboard-card-ten .card-body .student-info .media {
    margin-bottom: 30px;
  }
}
.dashboard-card-ten .card-body .student-info .media .item-img {
  background-color: #4dd0e1;
  height: 115px;
  width: 115px;
  line-height: 129px;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
}
.dashboard-card-ten .card-body .student-info .media .item-img img {
  margin-right: 5px;
}
.dashboard-card-ten .card-body .student-info .media .media-body .item-title {
  color: #111111;
  font-weight: 500;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1499px) {
  .dashboard-card-ten .card-body .student-info .info-table .table {
    width: 70%;
  }
}
@media only screen and (max-width: 991px) {
  .dashboard-card-ten .card-body .student-info .info-table .table {
    width: 100%;
  }
}
.dashboard-card-ten .card-body .student-info .info-table .table tbody tr td {
  border: none;
  padding: 8px;
}
.dashboard-card-eleven .card-body .table-box-wrap .search-form-box {
  margin-bottom: 18px;
}
/*=============== 7.3 Dashboard Page Three ==================*/
.dashboard-card-twelve .card-body .kids-details-wrap .kids-details-box {
  display: flex;
  background-color: #fafafa;
  padding: 40px 30px 28px;
}
@media only screen and (max-width: 575px) {
  .dashboard-card-twelve .card-body .kids-details-wrap .kids-details-box {
    display: block;
  }
}
.dashboard-card-twelve .card-body .kids-details-wrap .kids-details-box .item-img {
  height: 8rem;
  width: 8rem;
  background-color: #4dd0e1;
  border-radius: 50%;
  text-align: center;
  overflow: hidden;
  margin-right: 3rem;
}
@media only screen and (max-width: 575px) {
  .dashboard-card-twelve .card-body .kids-details-wrap .kids-details-box .item-img {
    margin: 0 auto 30px;
  }
}
.dashboard-card-twelve .card-body .kids-details-wrap .kids-details-box .item-content {
  flex: 1;
}
.dashboard-card-twelve .card-body .kids-details-wrap .kids-details-box .item-content .table tbody tr td {
  border: none;
  padding: 0 10px;
  color: #333333;
}
/*=============== 7.4 Dashboard Page Four ==================*/
.dashboard-summery-two {
  margin-bottom: 30px;
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 4px;
  box-shadow: 0px 10px 20px 0px rgba(229, 229, 229, 0.75);
  text-align: center;
}
.dashboard-summery-two .item-icon {
  position: relative;
  height: 85px;
  width: 85px;
  line-height: 85px;
  border-radius: 50%;
  text-align: center;
  margin: 0 auto 6px;
}
.dashboard-summery-two .item-icon i:before {
  margin-left: 0;
  font-size: 44px;
}
.dashboard-summery-two .item-content .item-title {
  color: #a8a8a8;
  margin-bottom: 2px;
}
@media only screen and (max-width: 1199px) {
  .dashboard-summery-two .item-content .item-title {
    font-size: 14px;
  }
}
.dashboard-summery-two .item-content .item-number {
  font-size: 28px;
  font-weight: 500;
  color: #111111;
}
@media only screen and (max-width: 1499px) {
  .dashboard-summery-two .item-content .item-number {
    font-size: 26px;
  }
}
@media only screen and (max-width: 1199px) {
  .dashboard-summery-two .item-content .item-number {
    font-size: 20px;
  }
}
/*=======================================================================
8. HELPER CLASSES
=========================================================================*/
/*=============== 8.1 Background ==================*/
.bg-transparent {
  background-color: transparent;
}
.bg-dark-high {
  background-color: #000000;
}
.bg-dark-medium {
  background-color: #111111;
}
.bg-dark-normal {
  background-color: #222222;
}
.bg-dark-low {
  background-color: #444444;
}

.bg-ash {
  background-color: #f0f1f3 !important;
}
.bg-red {
  background-color: #ff0000;
}
.bg-orange-red {
  background-color: #ff0000;
}

.bg-fb {
  background-color: #546ca9;
}
.bg-fb2 {
  background-color: #5867dd;
}
.bg-fb3 {
  background-color: #4655c8;
}


.text-gray {
  color: var(--bs-gray);
}

.bg-gray {
  background: var(--bs-gray);
}


.no-radius {
  border-radius: 0 !important;
}
.radius-4 {
  border-radius: 4px;
}
.radius-30 {
  border-radius: 30px;
}
.radius-50 {
  border-radius: 50%;
}
/*=============== 8.3 Height ==================*/
.height-auto {
  height: auto !important;
}
.m-height-580 {
  max-height: 58rem !important;
}
.m-height-440 {
  max-height: 44rem !important;
}
.m-height-660 {
  max-height: 66rem !important;
}
/*=============== 8.4 Margin ==================*/
.mg-0 {
  margin: 0;
}
.mg-x-0 {
  margin-top: 0;
  margin-bottom: 0;
}
.mg-y-0 {
  margin-right: 0;
  margin-left: 0;
}
.mg-t-0 {
  margin-top: 0;
}
.mg-r-0 {
  margin-right: 0;
}
.mg-b-0 {
  margin-bottom: 0;
}
.mg-l-0 {
  margin-left: 0;
}
.mg-t-4 {
  margin-top: 4px;
}
.mg-t-5 {
  margin-top: 5px;
}
.mg-t-6 {
  margin-top: 6px !important;
}
.mg-t-7 {
  margin-top: 7px;
}
.mg-t-8 {
  margin-top: 8px;
}
.mg-t-9 {
  margin-top: 9px;
}
.mg-t-10 {
  margin-top: 10px;
}
.mg-t-11 {
  margin-top: 11px;
}
.mg-t-12 {
  margin-top: 12px;
}
.mg-t-13 {
  margin-top: 13px;
}
.mg-t-14 {
  margin-top: 14px;
}
.mg-t-15 {
  margin-top: 15px;
}
.mg-t-16 {
  margin-top: 16px;
}
.mg-t-17 {
  margin-top: 17px;
}
.mg-t-18 {
  margin-top: 18px;
}
.mg-t-19 {
  margin-top: 19px;
}
.mg-t-20 {
  margin-top: 20px;
}
.mg-t-22 {
  margin-top: 22px;
}
.mg-t-23 {
  margin-top: 23px;
}
.mg-t-24 {
  margin-top: 24px;
}
.mg-t-25 {
  margin-top: 25px;
}
.mg-t-26 {
  margin-top: 26px;
}
.mg-t-27 {
  margin-top: 27px;
}
.mg-t-28 {
  margin-top: 28px;
}
.mg-t-29 {
  margin-top: 29px;
}
.mg-t-30 {
  margin-top: 30px;
}
.mg-l-4 {
  margin-left: 4px;
}
.mg-l-5 {
  margin-left: 5px;
}
.mg-l-6 {
  margin-left: 6px;
}
.mg-l-7 {
  margin-left: 7px;
}
.mg-l-8 {
  margin-left: 8px;
}
.mg-l-9 {
  margin-left: 9px;
}
.mg-l-10 {
  margin-left: 10px;
}
.mg-l-11 {
  margin-left: 11px;
}
.mg-l-12 {
  margin-left: 12px;
}
.mg-l-13 {
  margin-left: 13px;
}
.mg-l-14 {
  margin-left: 14px;
}
.mg-l-15 {
  margin-left: 15px;
}
.mg-l-16 {
  margin-left: 16px;
}
.mg-l-17 {
  margin-left: 17px;
}
.mg-l-18 {
  margin-left: 18px;
}
.mg-l-19 {
  margin-left: 19px;
}
.mg-l-20 {
  margin-left: 20px;
}
.mg-l-22 {
  margin-left: 22px;
}
.mg-b-4 {
  margin-bottom: 4px;
}
.mg-b-5 {
  margin-bottom: 5px;
}
.mg-b-6 {
  margin-bottom: 6px !important;
}
.mg-b-7 {
  margin-bottom: 7px;
}
.mg-b-8 {
  margin-bottom: 8px;
}
.mg-b-9 {
  margin-bottom: 9px;
}
.mg-b-10 {
  margin-bottom: 10px;
}
.mg-b-11 {
  margin-bottom: 11px;
}
.mg-b-12 {
  margin-bottom: 12px;
}
.mg-b-13 {
  margin-bottom: 13px;
}
.mg-b-14 {
  margin-bottom: 14px;
}
.mg-b-15 {
  margin-bottom: 15px;
}
.mg-b-16 {
  margin-bottom: 16px;
}
.mg-b-17 {
  margin-bottom: 17px;
}
.mg-b-18 {
  margin-bottom: 18px;
}
.mg-b-19 {
  margin-bottom: 19px;
}
.mg-b-20 {
  margin-bottom: 20px;
}
.mg-b-22 {
  margin-bottom: 22px;
}
.mg-b-25 {
  margin-bottom: 25px;
}
.mg-r-4 {
  margin-right: 4px;
}
.mg-r-5 {
  margin-right: 5px;
}
.mg-r-6 {
  margin-right: 6px;
}
.mg-r-7 {
  margin-right: 7px;
}
.mg-r-8 {
  margin-right: 8px;
}
.mg-r-9 {
  margin-right: 9px;
}
.mg-r-10 {
  margin-right: 10px;
}
.mg-r-11 {
  margin-right: 11px;
}
.mg-r-12 {
  margin-right: 12px;
}
.mg-r-13 {
  margin-right: 13px;
}
.mg-r-14 {
  margin-right: 14px;
}
.mg-r-15 {
  margin-right: 15px;
}
.mg-r-16 {
  margin-right: 16px;
}
.mg-r-17 {
  margin-right: 17px;
}
.mg-r-18 {
  margin-right: 18px;
}
.mg-r-19 {
  margin-right: 19px;
}
.mg-r-20 {
  margin-right: 20px;
}
.mg-r-22 {
  margin-right: 22px;
}
/*=============== 8.5 Misc ==================*/

.header-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}


/*=============== 8.6 Padding ==================*/
.pd-0 {
  padding: 0;
}
.pd-x-0 {
  padding-right: 0;
  padding-left: 0;
}
.pd-y-0 {
  padding-top: 0;
  padding-bottom: 0;
}
.pd-y-45 {
  padding-top: 45px !important;
  padding-bottom: 45px !important;
}
.pd-t-0 {
  padding-top: 0;
}
.pd-r-0 {
  padding-right: 0;
}
.pd-b-0 {
  padding-bottom: 0;
}
.pd-l-0 {
  padding-left: 0;
}
.pd-t-4 {
  padding-top: 4px;
}
.pd-t-5 {
  padding-top: 5px;
}
.pd-t-6 {
  padding-top: 6px;
}
.pd-t-7 {
  padding-top: 7px;
}
.pd-t-8 {
  padding-top: 8px;
}
.pd-t-9 {
  padding-top: 9px;
}
.pd-t-10 {
  padding-top: 10px;
}
.pd-t-11 {
  padding-top: 11px;
}
.pd-t-12 {
  padding-top: 12px;
}
.pd-t-13 {
  padding-top: 13px;
}
.pd-t-14 {
  padding-top: 14px;
}
.pd-t-15 {
  padding-top: 15px;
}
.pd-t-16 {
  padding-top: 16px;
}
.pd-t-17 {
  padding-top: 17px;
}
.pd-t-18 {
  padding-top: 18px;
}
.pd-t-19 {
  padding-top: 19px;
}
.pd-t-20 {
  padding-top: 20px;
}
.pd-t-22 {
  padding-top: 22px;
}
.pd-l-4 {
  padding-left: 4px;
}
.pd-l-5 {
  padding-left: 5px;
}
.pd-l-6 {
  padding-left: 6px;
}
.pd-l-7 {
  padding-left: 7px;
}
.pd-l-8 {
  padding-left: 8px;
}
.pd-l-9 {
  padding-left: 9px;
}
.pd-l-10 {
  padding-left: 10px;
}
.pd-l-11 {
  padding-left: 11px;
}
.pd-l-12 {
  padding-left: 12px;
}
.pd-l-13 {
  padding-left: 13px;
}
.pd-l-14 {
  padding-left: 14px;
}
.pd-l-15 {
  padding-left: 15px;
}
.pd-l-16 {
  padding-left: 16px;
}
.pd-l-17 {
  padding-left: 17px;
}
.pd-l-18 {
  padding-left: 18px;
}
.pd-l-19 {
  padding-left: 19px;
}
.pd-l-20 {
  padding-left: 20px;
}
.pd-l-22 {
  padding-left: 22px;
}
.pd-b-4 {
  padding-bottom: 4px;
}
.pd-b-5 {
  padding-bottom: 5px;
}
.pd-b-6 {
  padding-bottom: 6px;
}
.pd-b-7 {
  padding-bottom: 7px;
}
.pd-b-8 {
  padding-bottom: 8px;
}
.pd-b-9 {
  padding-bottom: 9px;
}
.pd-b-10 {
  padding-bottom: 10px;
}
.pd-b-11 {
  padding-bottom: 11px;
}
.pd-b-12 {
  padding-bottom: 12px;
}
.pd-b-13 {
  padding-bottom: 13px;
}
.pd-b-14 {
  padding-bottom: 14px;
}
.pd-b-15 {
  padding-bottom: 15px;
}
.pd-b-16 {
  padding-bottom: 16px;
}
.pd-b-17 {
  padding-bottom: 17px;
}
.pd-b-18 {
  padding-bottom: 18px;
}
.pd-b-19 {
  padding-bottom: 19px;
}
.pd-b-20 {
  padding-bottom: 20px;
}
.pd-b-22 {
  padding-bottom: 22px;
}
.pd-r-4 {
  padding-right: 4px;
}
.pd-r-5 {
  padding-right: 5px;
}
.pd-r-6 {
  padding-right: 6px;
}
.pd-r-7 {
  padding-right: 7px;
}
.pd-r-8 {
  padding-right: 8px;
}
.pd-r-9 {
  padding-right: 9px;
}
.pd-r-10 {
  padding-right: 10px;
}
.pd-r-11 {
  padding-right: 11px;
}
.pd-r-12 {
  padding-right: 12px;
}
.pd-r-13 {
  padding-right: 13px;
}
.pd-r-14 {
  padding-right: 14px;
}
.pd-r-15 {
  padding-right: 15px;
}
.pd-r-16 {
  padding-right: 16px;
}
.pd-r-17 {
  padding-right: 17px;
}
.pd-r-18 {
  padding-right: 18px;
}
.pd-r-19 {
  padding-right: 19px;
}
.pd-r-20 {
  padding-right: 20px;
}
.pd-r-22 {
  padding-right: 22px;
}

/*=============== 8.8 Text ==================*/
.text-8 {
  font-size: 8px;
}
.text-9 {
  font-size: 9px;
}
.text-10 {
  font-size: 10px;
}
.text-11 {
  font-size: 11px;
}
.text-12 {
  font-size: 12px;
}
.text-13 {
  font-size: 13px;
}
.text-14 {
  font-size: 14px;
}
.text-15 {
  font-size: 15px;
}
.text-16 {
  font-size: 16px;
}
.text-17 {
  font-size: 17px;
}
.text-18 {
  font-size: 18px;
}
.text-19 {
  font-size: 19px;
}
.text-20 {
  font-size: 20px;
}
.text-22 {
  font-size: 22px;
}
.text-24 {
  font-size: 24px;
}
.text-28 {
  font-size: 28px;
}
.text-30 {
  font-size: 30px;
}
.text-32 {
  font-size: 32px;
}
.text-34 {
  font-size: 34px;
}

/*=============== Sidebar ==================*/

.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .nav-item > .nav-link {
  position: relative;
  padding-left: 4vw;
  border-radius: 10px;
  display: flex;
  align-items: center;
  height: 54px;
  font-family: var(--montfont);
  font-weight: 500;
}

.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .nav-item > .nav-link span {
  font-size: 18px;
  color: var(--cui-white);
}

.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .nav-item > .nav-link:hover, .sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .nav-item.active > .nav-link {
  background: var(--cui-white);
  color: var(--cui-black);
}

.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .nav-item:hover > .nav-link span, .sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .nav-item.active > .nav-link span {
  color: var(--cui-black);
}

.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .nav-item > .nav-link img {
    width: 30px;
    filter: invert(1);
}
.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .nav-item:hover > .nav-link:hover img, .sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .nav-item.active > .nav-link img {
  filter: invert(0);
}

.side_profile_info {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.side_profile_info * {
  color: var(--white);
  margin: 0;
}

.loadbtn a {
    padding: 5px 25px;
    font-weight: 500;
    font-size: 15px;
}

.filtrdrop > a {
    font-size: 15px;
    font-weight: 600;
    color: #8E8E93;
    border: 1px solid #C1C1C1;
    padding: 6px 22px;
    border-radius: 5px;
    width: 200px;
}

.filtrdrop .dropdown-toggle::after {
    margin-inline-start: 45px;
    vertical-align: 0;
    content: "";
    border-top: 8px solid;
    border-right: 8px solid transparent;
    border-bottom: 0;
    border-left: 8px solid transparent;
}

.dropdown-menu {
  width: 100%;
}

.filtrdrop .dropdown-menu {
    border: 0;
    padding: 5px 15px 15px 15px;
    font-size: 14px;
}

.filtitle {
    font-size: 14px;
    margin-bottom: 10px;
    margin-top: 15px;
}




@media (min-width: 1921px) {

.slick-track {
  margin-left: 0;
}

.creator_img img {
    height: 250px !important;
}



}

@media (min-width: 1922px) and (max-width:2500px) {


.creator_img img {
    height: 250px !important;
}



}

@media (min-width: 1700px) {

.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .nav-item > .nav-link {
  padding-left: 2vw;
}

}


@media (max-width: 1299px) {

.dashboard-page-one {
    width: 100%;
}

.sidebar-menu-one {
    width: 0;
}

.create_list_grops {
    margin-right: 40px;
}

.nav-bar-header-one {
    justify-content: end;
}

.sidebar-collapsed .sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .nav-item > .nav-link {
    padding: 12px 80px;
}

}


@media (min-width: 768px) and (max-width: 1199px) {

  .header-logo img {
    width: 70%;
}

  .header-menu-one {
    -webkit-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1);
    padding-inline: 20px;
}

.nav-bar-header-one {
    min-width: 20rem;
}

}


@media (max-width: 767px) {

.create_list_grops {
    padding: 20px;
    margin-right: 0px;
}

.Post_item {
    padding: 0px 10px;
}

.mobile-nav-bar .nav-bar-header-one {
    display: flex;
    width: 100% !important;
    justify-content: space-between !important;
}

.mobile-nav-bar {
    width: 100% !important;
}

.sidebar-menu-one .sidebar-menu-content {
    position: relative;
    top: 0;
}

.sidebar-collapsed .sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .nav-item > .nav-link {
    padding: 12px 20px;
}

.sidebar-collapsed .sidebar-menu-one {
    width: 100%;
}
.title-area h2 {
    font-size: 16px
}

.inndop img {
    width: 25px;
}


.mobtb{
  display: block !important;
}

.dectb{
    display: none;
}

.posimgtf{
  padding-bottom: 20px !important;
}

.Post_item .post_hed {
    margin-bottom: 11px !important;
}

.post_hed h6 {
    font-size: 14px !important;
}

.Post_item .post_hed h4 {
    font-size: 16px !important;
}

.btn-post a {
    padding: 2px 14px !important;
}



}

.mobtb{
  display: none;
}


/* login ragister css ........................ */

.logo img {
    width: 50%;
    margin: auto;
    padding: 10px 0;
}
.logo h6 {
    font-size: 25px;
    font-weight: 700;
    text-align: center;
}
.rbnl{
    background: white;
    padding: 0px 55px 20px;
}




.inpureg input {
    border: none;
    font-size: 16px;
    padding: 0;
    box-shadow: none !important;
}

.inpureg input:focus {
    border: none !important;
    outline: none !important;
}

.inpureg label{
    font-size: 12px !important;
}
button.btn-custom {
    margin-top: 15.33px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 23.99px;
    letter-spacing: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF0000;
    padding: 15px 76px;
    color: white;
    width: 100%;
}
.inpureg {
    border: 1px solid #00000021;
    padding: 10px;
    border-bottom: none;
}

.brakeor h6{
font-size: 10.9px;
font-weight: 400;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.icon {
  width: 50px;
  height: 50px;
  background: #f1f1f1;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}

.icon:hover {
  transform: scale(1.1);
}

.google {
  background: #db4437; /* or multicolor if using a custom icon */
}

.twitter {
  background: #1da1f2;
}

.facebook {
  background: #1877f2;
}

.regicon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 11px;
}
.regicon img {
    width: 43.07px;
    height: 43.07px;
}
.alredy{
  font-size: 12px;
}
a.resetpass {
    font-size: 12px;
    display: flex;
    justify-content: right;
    margin: 10px 0 0px;
    color: #FF0000;
    text-decoration: underline;
    font-weight: 600;
}
a.Stilllog {
    font-size: 13px;
    display: flex;
    justify-content: right;
    margin: 10px 0 0px;
    color: #919191;
    font-weight: 700;
}
span.stilllog {
    color: #FF0000;
    margin-left: 4px;
}

.resth {
    font-size: 22px;
    text-align: center;
    font-weight: 700;
}
button.forgetbtn {
    margin-top: 15.33px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 23.99px;
    letter-spacing: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF0000;
    padding: 15px 89px;
    color: white;
}

.inner_section {
    padding: 70px 0 !important;
}

.mne_inner {
    padding: 20px 0;
}

.frntmdl .modal-dialog {
    max-width: 60%;
    top: 60px;
    left: -7px;
}


.frntmdlse .modal-dialog {
    max-width: 50%;
    top: 60px;
    left: -7px;
}

.icncrd img {
    width: 100% !important;
}

.icncrd {
    width: 90px;
    margin: auto;
}

.frntmdl .modal-content {
    background: #ffffff !important;
}

.frntmdl .modal-body {
    padding: 70px 30px;
}

.frntmdlse .modal-body {
    padding: 50px 30px !important;
}

.frcrd {
    padding: 60px 30px !important;
}

.flxclns{
  display: flex;
  justify-content: end;
  align-items: center;
}
.proviewbtns a {
    font-size: 16px;
    font-weight: 500;
    padding: 5px 19px !important;
}

.proviewbtns {
    display: flex;
    align-items: center;
    gap: 10px;
}

.proviewbtns .intarow {
    width: 16px;
    margin-top: -2px;
}

.send-interest-btn.btn-white {
    background: #D0D0D0 !important;
    color: #000 !important;
    box-shadow: none !important;
    border-color: #d0d0d0 ! important;
}


.send-interest-btn.btn-white:focus, .send-interest-btn.btn-danger {
    box-shadow: none !important;
    border: 0 !important;
}

.send-interest-btn.btn-white img {
    filter: brightness(0) !important;
}

.form-check-label {
    color: #f4f4f4;
}
    /* .form-check-input:checked + .form-check-label {
      color: white;
    } */
    .accordion-button {
      background-color: black;
      color: white;
    }
  .colepsinr .accordion-item {
    background: #ffffff00 !important;
    border: 0 !important;
}

.colepsinr .accordion-button {
    background: #ffffff00 !important;
    color: #fff !important;
    padding: 15px 40px 15px 60px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid #fff;
    font-family: 'Roboto';
}

.accordion-button:not(.collapsed), .accordion-button {
    box-shadow: none !important;
}
.accordion-button.collapsed {
    margin-bottom: 10px;
}

.colepsinr .accordion-body {
     padding: 15px 40px 15px 60px;
}

.colepsinr .accordion-button::after {
  display: none !important;
}

.filter-header {
    background-color: #000;
    color: white;
     padding: 15px 40px 15px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-title {
  font-weight: 600;
  font-size: 16px;
}

.filter-icon {
  font-size: 1.4rem;
}

   .flxcln i {
      font-size: 23px;
     color: #fff;
    }

.cancel-option {
    display: none;
    margin-top: 10px;
    color: red !important;
    font-weight: 500;
    position: absolute;
    background: #fff !important;
    padding: 1px 10px;
    right: 27px;
    border-radius: 5px !important;
    font-size: 12px !important;
    top: -4px;
    text-align: center;
}

/* .loadbtn a:hover {
    background: transparent !important;
    color: #000 !important;
}

.edit_btn a:hover {
    background: transparent !important;
    color: #e62315 !important;
}
.edit_btn a:active {
    background: transparent !important;
    color: #e62315 !important;
}

.profile_edt a:active {
  border-color: #000 !important;
} */


.pend_btn, .btn_rtd {
    padding: 4px 30px;
    background: #F0B359;
    font-size: 11px;
    color: #fff;
    font-weight: 500;
    text-transform: capitalize !important;
    border-radius: 2px;
}

.btn_rtd{
  background: #DE4646 !important;
}

.btn_cre_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.outsle {
    border: 1px solid #000;
    color: #000;
    padding: 4px 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 21px;
}
.tab-btn.active {
    background-color: var(--cui-danger) !important; /* Matches btn-danger */
    color: white !important;
    border-color: var(--cui-danger) !important;
}

.outdgr {
    padding: 7px 20px;
    margin-bottom: 20px;
   
}

.outdgr {
    border: 1px solid #000;
    color: #000;
    padding: 4px 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 21px;
}
.btnalted {
    display: flex;
    gap: 15px;
}

.admin_profile img {
    width: 155px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid red;
    object-fit: cover;
}
.profile_section, .main_profile_section {
    padding: 40px 0;
    background: #F8F8F8;
}

.profile_card {
    background: #fff;
    padding: 25px 35px;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.eduit_btn {
    font-size: 18px;
    font-weight: 600;
    color: #676767;
}

.btn_edti {
    display: flex;
    gap: 13px;
    padding-top: 20px;
}

.form_profile {
    padding: 25px 0;
}



small#notification-count-container {
    position: relative;
}

small#notification-count-container span {
    position: absolute;
    top: -40px !important;
    left: 13px !important;
}

.header-menu-one {
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    background: #fff;
    height: 62px;
    padding-block: 0 !important;
    position: relative;
    width: 100%;
}

.header_profiule {
    border-bottom: 1px solid #d3d3d3;
    padding: 0 20px;
}

.header_profiule h3 {
    color: #FF0000;
    font-weight: 600;
}

.form_wrap{
  padding: 0 20px;
}

.form-label-editable , .citylb {
    font-size: 21px;
    font-family: 'Roboto';
    font-weight: 600;
    color: #000;
}

.form_profile input, .form_profile textarea, .form_profile select {
    font-size: 18px;
    font-weight: 500;
    color: #5a5a5a;
}


.cuntreg {
    font-size: 18px;
    font-weight: 500;
    color: #7c7c7c;
}



.form-label-editable img {
    width: 15px;
    height: 15px;
}

.form_wrap input, .form_wrap textarea, .form_wrap select {
    padding: 11px;
    background: #fff !important;
}

.social_links {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 20px 0;
}

.form_brn button{
    padding: 7px 35px;
    font-size: 15px;
}

.social_inner {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon_wrap {
    width: 30px;
    height: 30px;
}


.socli_fild {
    padding: 20px;
}

.icon_hde h4 {
    margin: 0;
    color: #292929;
    font-weight: 400;
}

.social_fild_btn {
    display: flex;
}

.icon_viev {
    display: flex;
    align-items: center;
    gap: 6px;
}

.socil_mani {
    display: flex;
    justify-content: space-between;
    border: 1px solid #ccc;
    padding: 8px 20px;
}

.icon_viev h5 {
    margin: 0;
    color: #a4a4a4;
    font-size: 14px;
}

.social_fild_btn {
    display: flex;
    gap: 18px;
}

.icon_viev i {
    color: #f00;
    font-size: 19px;
}

.main_profile_section .profile_card {
    display: flex;
    justify-content: space-between;
}
.main_profile_section .proflile_wrapds {
    display: flex;
    gap: 30px;
}

.btn_edtis p {
    margin: 0;
}

.totl {
    display: flex;
    gap: 20px;
}

.btn_edtis a {
    font-size: 20px;
    font-weight: 600;
    color: #f00;
}

.user_name {
    font-size: 18px;
    font-weight: 500;
    color: #3a3a3a;
}

.btn_edtis_itsd .addre_profile {
    font-size: 12px;
}

.sbrt {
    font-size: 18px;
    font-weight: 500;
    color: #7f7f7f;
}

.gam_profile {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.pro_full img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}


.profile_edt {
    display: flex;
    gap: 0px;
}

.btnpr a {
    padding: 6px 35px;
    font-size: 16px;
    border-radius: 10px;
    color: #f00;
    text-transform: capitalize;
}

  a.padbtn.pending {
                background: #f5d79e !important;
                color: #a35b00 !important;
            }

.btnchre i {
    font-size: 23px;
    color: #000;
}

.proflile_about h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.proflile_about p {
    margin: 0;
}

.adlnk {
    padding: 15px 20px 0;
}

.icon_viev a, .icon_viev button {
    font-size: 14px;
    color: #858585;
    display: flex;
    gap: 5px;
    align-items: center;
}


.popup {
    display: none;
    position: absolute;
    background: #FAFAFA;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgb(0 0 0 / 6%);
    padding: 20px;
    z-index: 9999;
    width: 300px;
    text-align: center;
    top: 190px !important;
    border: 1px solid #e2e2e2;
}
 
    .popup img {
        width: 60px;
        margin-bottom: 10px;
    }
 
    .popup h4 {
        margin-bottom: 10px;
        font-size: 20px;
    }
 
    .popup input {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }
 
    .popup button {
        padding: 10px 20px;
        background-color: black;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }
 

    .popup p {
    background: #000;
    padding: 8px;
    border-radius: 5px;
    color: #ffff;
}

    .popup .close-btn {
        position: absolute;
        top: 8px;
        right: 10px;
        cursor: pointer;
        font-weight: bold;
    }
 
    .socli_fild {
        margin-bottom: 20px;
    }
 
    .social_links {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        position: relative; /* important for popup absolute positioning */
    }
 
    .social-icon {
        width: 40px;
        cursor: pointer;
    }
 
    .social_fild_btn {
        display: flex;
        gap: 10px;
        margin-top: 10px;
    }
 
    .icon_viev {
        display: flex;
        align-items: center;
        gap: 5px;
        color: red;
        cursor: pointer;
    }
 
    .popup {
    top: 190px;
    left: 81px;
    display: block;
}

.invest_btn_price .intauser {
    width: 15px !important;
    margin-right: 7px;
}

.profile_area{
      background: #fff;
    padding: 25px 35px;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.btnalted .actv {
    padding: 7px 70px;
    background: #000;
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    border: 1px solid #000;
    margin-bottom: 15px ;
}
.btnalted .comlt {
    padding: 7px 70px;
    background: #00000000;
    color: #000000;
    font-weight: 700;
    border-radius: 50px;
    border: 1px solid #000;
    margin-bottom: 15px ;
}

.creator_Recent p {
    margin: 10px 0;
}


.accntsoc{
  gap: 25px !important;
}

.header_acont h3 {
    font-size: 22px;
    font-weight: 700;
}

.sidebar_profile {
    padding: 15px;
}

.cnle_hed {
    display: flex;
}

.cnle_hed h3 {
    font-size: 12px;
    margin: 0;
    text-transform: uppercase;
}

.brn_vies {
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: underline;
    color: #f00;
}


.vive_cnlc h4 {
    margin: 0;
    text-align: center;
    font-size: 32px;
    color: #f00;
}
.vive_cnlc p {
    margin: 0;
    text-align: center;
}

.nie_cncl {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 14px 35px;
    background: #F3F3F3;
    margin-bottom: 15px;
    align-items: center;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
}

.abs_cncl {
    display: flex;
    gap: 15px;
    padding: 10px;
    background: #F3F3F3;
    margin-bottom: 5px;
    align-items: center;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
}

.abs_cnlc_dtl p, .abs_cnlc_dtl h4 {
    margin: 0;
}

.abs_cnlc_dtl h4 {
    font-size: 15px;
    font-weight: 600;
}

p.sophe {
    font-size: 12px;
}

.spn_absd {
    display: flex;
    gap: 6px;
}

.spn_absd p {
    font-size: 11px;
}

.colbs{
  background: #ececec;
}




.log button {
    border: 0;
    background: transparent;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    width: 100%;
    text-align: start;
    padding: 8px 25px !important;
}



.trysvr {
    border: 0;
}
.trysvr a {
    text-decoration: none !important;
}








.link-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 15px;
    margin-top: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #f9f9f900;
    margin: 20px;
}

.platform-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.link-actions {
    display: flex;
    gap: 12px;
}

.view-link {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 4px;
}

.view-link:hover {
    background-color: #e8f0fe;
}

.remove-btn {
    background: none;
    border: none;
    color: #d93025;
    font-weight: 500;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 4px;
}


.cnle_hed {
    display: flex;
    justify-content: space-between;
    align-items: center;
}




.profile_intersed{
      background: #fff;
    padding: 25px 35px;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 1px 0px 5px 1px rgb(0 0 0 / 19%);
    display: flex;
    justify-content: space-between;
}

.proflile_intersed_inner {
    display: flex;
    gap: 15px;
    align-items: center;
}

.admin_intersed img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #f00;
}

.btn_edtis_itsd a {
    font-size: 16px;
    font-weight: 600;
    color: #f00;
}

.btn_edtis_itsd .user_name {
    font-size: 12px;
    font-weight: 500;
    color: #525252c2;
    margin: 0;
}



.btn_edtis_itsd .totl p {
  margin: 0;
}

.gam_profile_itsd {
    display: flex;
    align-items: center;
    gap: 0px;
    font-size: 18px;
    font-weight: 600;
    color: #404040;
    margin-top: 6px;
    margin-bottom: 7px;
}


.btn_edtis_itsd .sbrt {
    font-size: 10px !important;
    color: #606060 !important;
    padding: 2px 12px;
    box-shadow: 1px 0px 5px 1px rgb(0 0 0 / 19%);
    border-radius: 20px;
    line-height: 23px;
    font-weight: 400 !important;
}

.btn_edtis_itsd .totl {
  gap: 15px;
}


 .padbtn, .pendbtn {
    padding: 6px 20px !important;
    font-size: 13px !important;
    border-radius: 20px !important;
    background: #dbffc5 !important;
    color: #2d892b !important;
}

.pendbtn {
    background: #ffe6c1 !important;
    color: #a66600 !important;
}


.btntogl {
    line-height: 29px;
}

.intrde {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: space-between;
}


.btnalg{
  padding: 5px 25px;
  border-radius: 6px !important;
}

.dolor {
    font-size: 30px;
    color: #f00;
    font-weight: 700;
}
                                     


.profile_intersed_all{
      background: #FBFBFB;
    padding: 25px 35px;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 1px 0px 5px 1px rgb(0 0 0 / 19%);
    display: flex;
    justify-content: space-between;
}

.viwprlf {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 28px !important;
}   


.profile_intersed_cmpt{
    padding:0px 35px 25px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
}

.trvlbg{
    border-radius: 25px;
    box-shadow: 1px 0px 5px 1px rgb(0 0 0 / 19%);
          background: #FBFBFB;
}

.vilig h5 {
    padding: 10px;
    background: #000000;
    color: #fff;
    width: auto;
    text-align: center;
    border-radius: 25px 0;
    margin: 0;
    font-size: 10px;
    font-weight: 400;
    max-width: 100px;
}

.btngry{
  background: #AFAFAF;
  padding: 6px 25px !important;
  color: #fff;
}
.btngry:hover{
  background: #f00;
  padding: 6px 25px !important;
  color: #fff;
}


.btngry {
    background: #AFAFAF;
    padding: 6px 25px !important;
    color: #fff;
    line-height: 23px;
}


.btnlin {
    line-height: 23px;
    font-size: 14px;
}

.creator_img_post img {
    /* height:65% !important; */
    width: 100%;
    object-fit: cover;
    border-radius: 7px;
}

/* .post_profile .creator_item{
  padding: 18px;
} */


.post_profile{
  padding: 20px 0;
}

.post_hed h6 {
    font-size: 16px;
    font-weight: 400;
}

.btn-post a {
    padding: 5px 25px;
    background: #fff;
    box-shadow: 1px 2px 10px 0px #0000001c;
    border-radius: 20px;
    color: #000;
    border: 1px solid #0000002e;
}


.post_Items{
  padding: 70px 0;  
  background: #F8F8F8;
}


.notifi_area{
  padding: 60px 0;
   background: #F8F8F8;
}

.notifi_cnt h6 {
    margin: 0;
    font-weight: 400;
}
.notifi_cnt p {
    margin: 0;
}

.notifay {
    background: #FFEEEE;
    padding: 15px 30px;
}
.notifay_gry {
    background: #F3F3F3;
    padding: 15px 30px;
}

.img_notifi img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.img_notifi {
    width: 60px;
    height: 60px;
}

.notifi_icon i {
    font-size: 28px;
    color: #000;
    font-weight: 800;
}
.notifi_icon a {
 background: transparent;
}


.notifi_area .creator_item{
  padding: 15px 25px;
}


.bg-gray{
background: #F8F8F8;
}

.profile_side_chat {
    padding: 25px 75px 10px;
    background: #f8f8f8;
}

.profile_side_chat h5 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.img_chat i {
    position: relative;
    left: 37px;
    font-size: 12px;
    color: #5AB264;
    top: -17px;
}


.img_chat {
    height: 55px;
    width: 55px;
}
.img_chat img {
    height: 100% !important;
  object-fit: cover;
  border-radius: 50%;
}

.chat_cnt h6 {
    font-size: 17px;
    font-weight: 500 !important;
    margin: 0;
}

.chat_cnt p {
    font-size: 12px;
    font-weight: 400;
    margin: 10px 0 0;
}

.chatnotif {
    background: #FFEEEE;
    padding: 12px;
}

.active .chatnotif {
    border-left: 3px solid #f00;
}

.active .chat_cnt h6 {
    color: #f00;
}

.priv_cnt p {
    font-size: 12px;
}
.priv_cnt a {
color: #f00;
text-decoration: none;
}


.create_list_chat {
    padding-left: 40px;
    margin-right: 80px;
}

.chat_card {
    background: #fff;
    margin-bottom: 25px;
    border-radius:0;
    box-shadow: 0px 0px 3px 1px rgb(0 0 0 / 14%);
}

.chatcat {
    padding: 8px 11px;
    border-bottom: 1px solid #cccccc69;
}


.chat_edt {
    padding: 15px 30px;
}

.trvg {
    font-size: 11px !important;
    color: #fff !important;
    font-weight: 500 !important;
    padding: 5px 20px;
    border-radius: 27px;
    line-height: 18px;
    margin-bottom: 10px;
}

 .prgntrs {
    position: relative;
    display: inline-block;
    /* margin-top: auto !important; */
}
.intersed_area_wrap .prgntrs {
    position: relative;
    display: inline-block;
    margin-top: auto !important;
}

   .prgntrs .dropdown-btn {
    padding: 2px 20px;
    border: 1px solid #000;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 150px;
}

    .prgntrs .dropdown-btn i {
      font-size: 18px;
      transition: transform 0.2s ease;
    }

    .prgntrs .dropdown-content {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #fff;
      min-width: 100%;
      border: 1px solid #ccc;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      z-index: 10;
    }

    .prgntrs .dropdown-content div {
      padding: 10px;
      text-align: center;
      border-bottom: 1px solid #eee;
      cursor: pointer;
    }

    .prgntrs .dropdown-content div:last-child {
      border-bottom: none;
    }

    .prgntrs .dropdown-content div:hover {
      background-color: #f9f9f9;
    }

    .prgntrs .show {
      display: block;
    }

.modal-footer button, .btn-nxt button{
    padding: 7px 40px;
    font-size: 16px;
}


.frntmdl .modal-footer button:hover {
    background: red !important;
    color: #fff !important;
    border-color: red !important;
}

.modal-footer {
    padding-inline: 30px !important;
}


.create_post_cart {
    background: #fff;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0px 0px 3px 1px rgb(0 0 0 / 14%);
}


.create_post_cart .header_vlog {
    padding: 8px 30px;
    border-bottom: #cccccc63;
}

.create_vlog {
    padding: 8px 30px 30px;
}

.create_post_cart .header_vlog {
    padding: 8px 30px;
    border-bottom: 1px solid #d8d8d8a1;
}

.labcnt label {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.labcnt select, .labcnt textarea, .labcnt input {
    padding: 13px;
    font-size: 18px;
    font-weight: 500;
     color: #626262;
}
.labcnt select::placeholder, .labcnt textarea::placeholder, .labcnt input::placeholder {
     font-size: 18px;
      font-weight: 500;
      color: #626262;
}

.labcnt select.form-select option:first-child {
  font-size: 16px !important;
}

.chat_area {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 35px;
    background: #fff;
    width: max-content;
    margin: auto;
    border-radius: 20px;
    border: 1px solid #ccc;
}

.chat_area h6 {
    margin: 0;
}


  .chat_user .chat-container {
      margin: 0 auto;
      height: 100vh;
      display: flex;
      flex-direction: column;
    }

   .chat_user .chat-body {
      flex: 1;
      padding: 15px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

   .chat_user .message {
    max-width: 70%;
    padding: 10px 15px;
    border-radius: 10px 10px 0px 10px;
    position: relative;
    font-size: 14px;
}

   .chat_user .message.left {
    align-self: flex-start;
    background: #e9edf3;
    color: #000;
    border-radius: 0px 10px 10px 10px;
}

   .chat_user .message.right {
      align-self: flex-end;
      background: red;
      color: white;
    }

 .chat_user .time {
    font-size: 10px;
    color: #666;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 5px;
}

 .chat_user .time i {
    font-size: 16px;
}

 .chat_user .chat-footer {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-top: 1px solid #ddd;
  background-color: #fafafa;
}

.chat_user .chat-footer i {
  font-size: 20px;
  color: #555;
  margin: 0 10px;
  cursor: pointer;
}

.chat_user .chat-footer input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  background: transparent;
}
    .chat_user .chat-body::-webkit-scrollbar {
  display: none;
}

.cncl-icon {
    flex: 1 1 50px;
    max-width: 50px;
}

.vive_cnlc {
    flex: 1 1 60%;
    max-width: 60%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
     .select2-container--default .select2-selection--multiple .select2-selection__choice {
        color: #000;
        background-color: #e4e4e4;
        border: 1px solid #ccc;
        padding: 2px 10px;
        margin: 2px;
    }


    .slct textarea {
    margin: 0 !important;
    min-height: 35px;
}

.slct .select2-selection {
    padding: 12px;
    border-color: #dfdfdf !important;
}
.slct .select2-selection--clearable {
    padding: 10px !important;
    line-height: 33px;
}

.slct .select2-selection__choice{
  margin: 0 !important;
}


.frm_chanel {
    width: 80%;
    margin: auto;
}

.frm_chanel input {
    padding: 9px;
    font-size: 18px;
}

.frm_cnt h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-family: 'Roboto';
}

.chan_section{
  padding: 20px 0;
}

.chn_grup button {
    width: 100%;
    font-size: 20px;
    border-radius: 20px;
}

.chn_grup .form-group input {
    padding: 12px 13px;
    font-size: 18px;
}

.chn_grup {
    padding: 55px 45px;
    box-shadow: 0px 0px 25px 2px #0000000d;
}


.btn-vew {
    padding: 5px 20px !important;
    font-size: 16px;
    color: #f00;
    border: 1px solid #adadad; 
    border-radius: 5px;
}

.pstvwe a {
    padding: 5px 10px;
    background: #fff;
}

.pstvwe {
    gap: 7px !important;
}

  .mdlsub .modal-content {
    border-radius: 20px;
    overflow: hidden;
  }

  .mdlsub .modal-body {
    background: #f1f8ff;
    text-align: center;
    padding: 20px;
  }

.mdlsub .modal-body::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 50%;
    background: #ba0500;
    z-index: 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.mdlsub .modal-body img {
    position: relative;
    z-index: 1;
    width: 60px;
    margin-top: -50px;
    filter: invert(1);
}

  .mdlsub .card {
    position: relative;
    z-index: 2;
    text-align: left;
    border-radius: 10px;
    border:0;
  }

.mdlsub .modal-body h2 {
    font-size: 22px;
    font-weight: bold;
    margin: 10px;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

  .mdlsub .modal-body p.subtext {
    color: #fff;
    font-size: 14px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
  }

.mdlsub .btn-danger {
    border-radius: 6px;
    padding: 6px 30px;
    font-size: 18px;
    color: #fff;
}

  .mdlsub .btn-close {
    position: relative;
    z-index: 9;
    color: #fff;
     filter: brightness(0) invert(1);
}

.mdlsub .card-body {
    background: #eff8fe;
    text-align: center;
}

.mdlsub .modal-dialog.modal-md {
    max-width: 400px;
}

.mdlsub .card-body p {
    margin: 7px;
    color: #000;
}

.creator_Recent h4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4em;
}

.delete-option.opt {
    margin-top: 10px;
    color: red !important;
    font-weight: 500;
    position: absolute;
    background: #fff !important;
    padding: 6px 25px;
    right: 27px;
    width: 47% !important;
    border-radius: 5px !important;
    font-size: 12px !important;
    top: 27px;
}

.setl .ts-control {
    border: 0;
}

.setl .item {
    padding: 13px;
    font-size: 18px;
    font-weight: 500;
    color: #626262;
}

.reject-option, .report-option, .block-option {
    margin-top: 10px;
    color: red !important;
    font-weight: 500;
    position: absolute;
    background: #fff !important;
    padding: 1px 10px;
    right: 27px;
    border-radius: 5px !important;
    font-size: 12px !important;
    top: 27px;
    text-align: center;
}

.rjtn{
  top:-6px !important;
}

.bktn {
    top: 63px;
}

/* .nav-sidebar-menu li:nth-child(3) img {
    width: 32px !important;
    margin-right: 16px !important;
    margin-left: -4px;
}

.nav-sidebar-menu li:nth-child(4) img {
    width: 23px !important;
    margin-right: 20px !important;
}


.nav-sidebar-menu li:nth-child(5) img {
    width: 30px !important;
    margin-right: 19px !important;
    margin-left: -4px;
}

.nav-sidebar-menu li:nth-child(6) img {
    width: 23px !important;
    margin-right: 22px !important;
} */


.filter-btn img {
    margin-right: 12px;
    margin-top: -3px;
}

.filter-btn {
    color: #8E8E93 !important;
}

.filter-btn i {
    margin-left: 30px !important;
}

.ctrgnm {
    width: 16px !important;
    display: none;
}
.btnalted a {
    text-transform: capitalize !important;
    display: inline-flex;
    align-items: center !important;
}


.btn_cre_info .btn-success {
    background: #4CAF50 !important;
}

.modal-header {
    padding-inline: 30px !important;
}

#preferredCategorySelectedChips span {
    font-size: 18px;
    font-weight: 500;
    padding-left: 1px;
    color: #626262 !important;
}

/* .bg-gray-100 {
  background: var(--cui-gray-100) !important;
} */
.bg-gray-100 {
  background: #F9FAFB !important;
}

.btnalted a.active {
    background: var(--cui-danger);
    color: var(--cui-white) !important;
    border-color: var(--cui-danger);
}

.btnalted a:not(.active) {
    background: var(--cui-white) !important;
    border-color: var(--cui-dark) !important;
}

.btnalted a:hover:not(.active) {
    color: var(--cui-dark) !important;
}



.btnchre {
        position: relative;
        display: inline-block;
    }
 
    .dropdown-menu-custom {
        position: absolute;
        top: 0;
        right: 13px;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 6px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        padding: 5px 0;
        display: none;
        min-width: 120px;
        z-index: 999;
    }
 
    .dropdown-menu-custom a {
        display: block;
        padding: 8px 12px;
        color: #333;
        text-decoration: none;
        font-size: 14px;
    }
 
    .dropdown-menu-custom a:hover {
        background-color: #f2f2f2;
    }



    .btnalted a.actv {
        background: #f00 !important;
        border-color: #f00 !important;
        color: #fff !important;
    }

    .btn-area {
        padding-bottom: 30px;
    }

    .btn_cre_info a.categy, .creator_info .categy {
    color: var(--cui-dark);
}

.sendbtn a {
    background: #D0D0D0;
    color: #303030 !important;
    border-color: #d0d0d0 !important;
}

.sendbtn a:hover {
    background: #D0D0D0 !important;
    color: #303030 !important;
    border-color: #D0D0D0 !important;
}


.sendbtn img {
    filter: brightness(0);
}

body .btn-close {
    color: #000 ;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.payinfobody {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 10px;
    padding: 10px 30px 30px 30px !important;
}

.payinfobody a, .payinfobody p, .payinfobody button {
    font-size: 16px;
    padding: 10px;
    margin: 0 !important;
}

button#rzp-button {
    margin: 50px auto;
    display: table;
    background: #000;
    border: 0;
    color: #fff;
    padding: 6px 25px;
    border-radius: 6px;
}

/* .post_profile .categy {
    margin-bottom: 20px !important;
} */

.post_profile h3 {
    font-weight: 600;
    text-transform: capitalize !important;
    margin-bottom: 8px !important;
}

.post_profile .crdesc {
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize !important;
}


.form-select.completion-status-select {
    font-size: 12px !important;
}

.center-el {
    top: 60% !important;
}

.gam_profile_itsd + .btn {
    font-size: 16px;
}

img.intauser {
    width: 16px;
}

.profle-btn-collabs {
  display: inline-flex;
  gap: 15px !important;
}

.profle-btn-collabs a {
    font-size: 17px;
    margin: 0 !important;
    padding: 7px 32px !important;
    border-radius: 25px;
    color: #000 !important;
    border: 1px solid #000 !important;
    min-width: 180px;
}

.profle-btn-collabs .actv {
    background: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}

.modal-body .frcrd h5 {
    margin: 0;
}

.canord .all-tgl {
    font-size: 22px !important;
}

.resover .fa-heart {
    font-size: 22px !important;
}

.resover a:focus {
    background: #fff !important;
    border-color: #949494 !important;
    color: #565656 !important;
}

/* .invest_btn_price .btn:hover {
    background: #000 !important;
    border-color: #000 !important;
} */

.profle-btn-collabs a:focus {
    background: transparent !important;
}

.slct .form-control {
    display: flex;
    align-items: center;
}

/* #preferredCategorySelectedChips span {
    padding: 5px 10px 5px 0px !important;
    font-size: 16px;
    font-weight: 500 !important;
} */

#preferredCategorySelectedChips {
    padding: 10px 13px;
}



#preferredCategorySelectedChips input:focus, #preferredCategorySelectedChips input:hover {
    box-shadow: none !important;
    cursor: pointer;
}

@media (min-width: 1024px) {

.gx-md-7 {
    --cui-gutter-x: 6rem;
}

}

@media (min-width: 1441px) {

.creat_btns a {
    padding: 4px 6px;
}

.creat_btns {
    gap: 8px !important;
}

}

/* landing page css */

.topconinfo {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 30px;
}

.iconbx i {
    width: 50px;
    height: 50px;
    display: flex;
    background: #ff000014;
    color: var(--cui-danger);
    justify-content: center;
    align-items: center;
    font-size: 19px;
    border-radius: 50%;
}

.info_inner {
    display: flex;
    align-items: center;
    gap: 15px;
}

.jonbtn {
    font-size: 16px;
    padding: 10px 50px;
    height: fit-content;
    margin-top: 20px;
}

.btnbnr img {
    position: absolute;
    top: 30px;
    right: 40px;
}

.hero_landarea {
    padding-block: 40px;
    /* background: linear-gradient(90deg, rgba(254, 233, 231, 1) 0%, rgb(0 0 0 / 7%) 100%, rgb(0 0 0 / 7%) 100%, rgba(251, 216, 214, 1) 38%); */
}

.hero_landarea .hero_info {
    padding-top: 40px;
}

.hero_heading h2 {
    font-size: 47px;
    line-height: 60px;
    font-weight: 800;
    text-transform: capitalize;
}

.hero_img img {
    height: auto;
    width: 100%;
    object-fit: contain;
    object-position: 100% 60%;
    border-radius: 20px;
}

.py-10 {
  padding-block: 60px;
}

.heading_md {
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 30px;
    line-height: normal;
}


.whyacrd {
  border-radius: 15px;
  overflow: hidden;
  background-color: #fff;
  font-family: Arial, sans-serif;
  position: relative;
  transition: transform 0.3s ease;
}

.whyactv{
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 0;
}

.whyacrd:hover {
  transform: translateY(-5px);
}

.whyacrd .card-image img {
  width: 100%;
     height: 300px !important;
  display: block;
object-fit: cover;
}



.whyacrd .card-content {
  padding: 20px;
  position: relative;
  text-align: left;
}

.whyacrd .card-icon {
    width: 70px;
    height: 70px;
    background-color: #FB2C36;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -45px;
    right: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.whyacrd .card-icon img {
    width: 44px !important;
    height: 44px;
}

.whyacrd .card-title {
    font-size: 30px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.whyacrd .card-description {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}



.creator-section {
  text-align: center;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}


.creator-section_wrp h2 {
    font-size: 49px;
}

.creator-section_wrp p {
  color: #666;
  margin-bottom: 30px;
}

.creator-section_wrp .tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: left;
}

.creator-section_wrp{
  padding: 60px 0px;
}

.creator-section_wrp .tab {
    padding: 4px 29px;
    border: none;
    border-radius: 11px;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    transition: 0.3s ease;
    background: transparent;
    border: 1px solid #959595;
}

.creator-section_wrp .tab.active,
.creator-section_wrp .tab:hover {
  background-color: red;
  color: white;
 border: 1px solid #fff;
}

.creator-section_wrp .creators-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.creator-section_wrp .creator-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 100%;
  max-width: 300px;
  text-align: left;
}


.creator-section_wrp .view-all {
  margin-top: 40px;
}

.creator-section_wrp .view-all a {
    padding: 8px 30px;
    border-radius: 20px;
    font-size: 16px;
    background: linear-gradient(238deg, #FB2C36 0%, #E51E0F 60%);
}

.creator-section_wrp .creator_item {
    padding: 0;
    box-shadow: 0 2px 10px rgb(0 0 0 / 11%);
}

.creator-section_wrp .creator_info {
    padding: 0 15px 15px;
    text-align: left;
}

.creator-section_wrp .creator_img img{
  border-radius: 10px 10px 0px 0px;
  height: 220px;
}
.creator_slidersstb .owl-nav {
    display: none;
}

.creator-section_wrp .owl-nav.disabled, .creator-section_wrp .owl-dots, .cosarea .owl-dots{
display: none !important;
}

.colallcarb{
  background: #f00;
  padding: 20px;
  width: max-content;
position: absolute;
bottom: -30px;
right: 0;
border-radius: 20px;
}

.testimonials_wrap{
  padding: 60px 0;
}

.badgequto {
    width: 40px;
    height: 40px;
    background: #f00;
    display: flex;
    justify-content: center;
}





.how-it-works, .every-colbs {
  text-align: center;
  padding: 60px 20px;
  background: #F9FAFB;
}



.section-title span {
  color: #ff3c3c;
}

.subtitle {
  color: #666;
  margin-top: 10px;
  font-size: 15px;
  margin-bottom: 50px;
}


.heding_landing{
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}




.how-it-works .step-box {
    height: 220px;
}
.step-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-top: 30px;
}

.step-box:hover {
  transform: translateY(-5px);
}

.iconwrk {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.iconwrk {
  color: #fff;
  font-size: 25px;
}

.pink {background: linear-gradient(238deg,rgba(246, 51, 154, 1) 0%, rgba(173, 70, 255, 1) 60%); }
.blue { background: linear-gradient(238deg,rgba(43, 127, 255, 1) 0%, rgba(0, 184, 219, 1) 60%);d: #3498db; }
.green { background: linear-gradient(238deg,rgba(0, 201, 80, 1) 0%, rgba(0, 187, 167, 1) 60%); }
.orange {background: linear-gradient(238deg,rgba(255, 105, 0, 1) 0%, rgba(251, 44, 54, 1) 60%); }


.pink-text{
   background: linear-gradient(238deg,rgba(43, 127, 255, 1) 0%, rgba(0, 184, 219, 1) 60%);d: #3498db;
    -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.blue-text{
      background: linear-gradient(238deg,rgba(246, 51, 154, 1) 0%, rgba(173, 70, 255, 1) 60%);
    -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.green-text{
     background: linear-gradient(238deg,rgba(0, 201, 80, 1) 0%, rgba(0, 187, 167, 1) 60%); 
    -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.orange-text{
    background: linear-gradient(238deg,rgba(255, 105, 0, 1) 0%, rgba(251, 44, 54, 1) 60%);
    -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.step-number {
    font-size: 15px;
    font-weight: 600;
    margin: 10px;
}

.step-title {
  font-size: 17px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.step-box p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.iconwrkss {
    width: 55px;
    height: 55px;
    background: #f00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 25px;
}

.every-colbs .step-box {
    text-align: left;
     transition: unset;
     box-shadow:  none !important;
     border: 1px solid #cccccc85;
}

.every-colbs .btn-center a {
    padding: 9px 25px;
    font-size: 14px;
}



.btn-center {
  margin-top: 20px;
}

.how-it-works .btn-center a {
    background: linear-gradient(238deg,rgba(229, 30, 15, 1) 0%, rgba(251, 44, 54, 1) 60%);
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
}

.start-btn:hover {
  background: linear-gradient(90deg, #ff5a5a, #ff3c3c);
}


.collab-tools p {
    line-height: 1.6;
    font-size: 16px;
}

.collab-tools{
  padding: 60px 0;
}

.tranking-section{
padding: 50px 0;
}







.infoclbtl1 img {
    border-radius: 20px;
}

.infoclbtl2, .infoclbtl3 {
    height: 290px;
    object-fit: cover;
    object-position: left;
}

.icon-boxss {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #cccccc4f;
    border-radius: 18px;
    border: 1px solid #89898973;
}
.icon-boxss {
 font-size: 28px;
 color: #f00;
}

.traking_crad h2 {
    font-size: 30px !important;
    margin-bottom: 10px;
}

.trk_wrap {
    padding: 30px;
    border: 1px solid #cccccc69;
    border-radius: 15px;
    box-shadow: 0px 4px 8px #0000001a;
}

.infotrakng {
    text-align: center;
    background: #E9EBEF80;
    padding: 20px;
    border-radius: 15px;
}

.infotrakng p {
    margin: 0;
    padding-top: 15px;
}

.trkimg {
    height: 50px;
    width: 50px;
    margin: auto;
    display: flex;
    align-items: anchor-center;
    justify-content: center;
    border-radius: 10px;
}

.trkimg.yellow {
      background: #F0B100;
}
.trkimg.blue {
      background:#2B7FFF;
}
.trkimg.green {
      background: #00C950;
}
.trkimg.red {
      background: #FB2C36;
}



.all-categroy{
  padding: 60px 0;
  background: #000;
}

.all-categroy .featur-box {
    display: flex;
    align-items: center;
    gap: 30px;
}

.innerctryall {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
}

.all-categroy .icon-boxss {
    background: #ff0000;
    border-radius: 50px;
}

.clins p {
    font-size: 16px;
    line-height: 24px;
     color: #fff;
     margin: 0;
}


.testimonial-card {
  background: #F9FAFB;
  box-shadow: 0px 4px 8px #0000001a;
  padding: 15px;
}

.testimonials_wrap .card-body:before {
    content: "";
    background: #ff000012;
    width: 70px;
    height: 70px;
    position: absolute;
    right: 30px;
    border-radius: 50px;
    top: 20px;
    box-shadow: 2px 3px 27px 6px #ff00001f;
}

.infocuntr {
    background: #FB2C360D;
    padding: 20px;
    height: 100%;
    border-radius: 10px;
}


.testimonial-card i {
  font-size: 18px;
}

.tystmg img {
    height: 50px;
      object-fit: cover;
}

.testimonial-card img {
  object-fit: cover;
}

/* Counter Styling */
.testimonials .row.mt-5 h4 {
  font-size: 28px;
}

.testimonials .text-warning i {
  margin-right: 2px;
}


.faqarea_landing{
  background: #F9FAFB;
  padding: 60px 0;
}



.faqarea_landing .accordion-button::after {
  display: none;
}

.faqarea_landing .acc-icon {
    margin-left: 0.75rem;
    font-weight: 700;
    font-size: 2.2rem;
    display: inline-block;
    text-align: center;
    width: 30px;
    height: 30px;
    background: #f00;
    border-radius: 50px;
    line-height: 30px;
    color: #fff !important;
}

.faqarea_landing button {
    padding: 13px 25px !important;
}

.faqarea_landing .accordion-body {
    border: 0  !important;
    padding: 10px 25px 20px !important;
}

.faqarea_landing .accordion-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 7px 15px -3px #0000001A !important;
}
.faqarea_landing .active .accordion-button, .accordion-button:not(.collapsed) {
    box-shadow: unset !important;
}

.faqarea_landing .active .accordion-body {
     box-shadow: 0px 7px 15px -3px #0000001A !important;
}

.cntsuptm{
  color: #9810FA;
}

.faqarea_landing .accordion-button.collapsed .acc-icon::before {
  content: "+";
}

.faqarea_landing .accordion-button:not(.collapsed) .acc-icon::before {
  content: "−"; 
}

.faqarea_landing .accordion-button { display: flex; align-items: center; justify-content: space-between; }
.faqarea_landing .accordion-button .acc-icon { margin-left: auto; }



.crdlastnd {
     background: linear-gradient(90deg, #ff0000 0%, #ff7676 100%);
    padding: 35px;
    border-radius: 20px;
}

.crdlastnd h2 {
    color: #fff;
     margin: 9px;
}

.btnlst a {
    padding: 12px 35px;
    background: #101828;
    color: #fff;
    border-radius: 20px;
}

.crdlastnd p {
    color: #e9e9e9;
    margin-bottom: 16px;
}

.lndgmob {
    display: none;
}

.lndgmob.land_header {
  position: relative;
  z-index: 1000;
}

/* Custom Toggle (Hamburger) */
.lndgmob  .toggle-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  gap: 5px;
  width: 25px;
}
.lndgmob .toggle-btn span {
  height: 3px;
  background: #000;
  border-radius: 3px;
  transition: 0.3s;
}
.lndgmob .toggle-btn.open span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.lndgmob .toggle-btn.open span:nth-child(2) {
  opacity: 0;
}
.lndgmob .toggle-btn.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* Sidebar Menu */
.lndgmob .side-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 105vh;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    padding: 20px;
    transition: 0.3s ease;
    z-index: 1050;
}
.lndgmob .side-menu.active {
  left: 0;
}

.lndgmob.land_header ul {
    gap: 0px !important;
}

.lndgmob .side-menu .nav-link {
  color: #333;
  padding: 10px 0;
  display: block;
  font-weight: 500;
  transition: 0.2s;
}
.lndgmob .side-menu .nav-link:hover {
  color: #dc3545;
}

.lndgmob .close-btn {
  border: none;
  background: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

/* Overlay */
.lndgmob .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1040;
}
.lndgmob .overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive */
@media (min-width: 992px) {
  .toggle-btn, .side-menu, .overlay {
    display: none;
  }
}

.jonbtn {
  font-weight: 500;
  border-radius: 50px;
  padding: 6px 16px;
}

.text.fw-bold.cnldd {
    font-size: 13px;
    text-transform: capitalize !important;
    font-weight: 500;
    padding: 5px 13px;
    display: flex;
    align-items: center;
    background: #2a2a2c;
    color: #f2f2ef;
    border-radius: 4px;
}




/* landing pages */

@media(max-width:767px){
  .hero_landarea .col-md-5 img {
    display: none;
}

.lndgdec {
    display: none;
}

.lndgmob {
    display: block;
}

.hero_landarea .row {
    flex-direction: column-reverse;
}

.hero_landarea .hero_info {
    padding-top: 0;
   
}

.stats-container {
    flex-wrap: unset;
    gap: 8px;
    justify-content: center;
    margin-top: -40px;
}

span.text {
    font-size: 8px !important;
     margin-top: 1px;
}

.stat-card small {
    font-size: 6px;
}

.stat-card p {
    font-size: 5px;
    line-height: 8px;
}

.stat-card .urmg {
    width: 30px;
    height: 30px;
    border-radius: 50px;
    object-fit: cover;
}

.stat-card img {
    width: 14px;
}

.stat-card h6 {
    font-size: 5px;
    margin: 0;
}

.stat-card {
    padding: 4px !important;
}

.hero_heading h2 {
    font-size: 35px !important;
    line-height: 45px !important;
    text-align: center;
    margin-bottom: 5px;
}

.gtnstg {
    margin-top: 20px !important;
    background: #FB2C36;
}

.whyarea.py-10 {
    padding-block: 20px;
}

.whyacrd .card-icon img {
    width: 30px !important;
    height: 30px;
}

.whyacrd .card-icon {
    width: 50px !important;
    height: 50px !important;
    top: -25px !important;
}

p.shortdesc {
    text-align: center !important;
}

p.shortdesc br {
    display: none;
}

.jonbtn {
    border-radius: 10px !important;
    padding: 6px 40px !important;
}

.loginbtnldn {
    border-radius: 3px !important;
    padding: 5px 20px !important;
    margin: 0;
    border: 1px solid #f00;
    color: #f00 !important;
    font-size: 12px;
}

.hero_landarea .btnbnr {
    justify-content: center !important;
}

.regstn{
  display: none;
}

.whyinfo .heading_md {
    font-size: 32px !important;
}

.collaphead {
    margin-bottom: 20px !important;
}

.creator-section_wrp h2 {
    font-size: 36px !important;
}

.creator-section_wrp .tab {
    padding: 4px 15px !important;
    font-size: 12px;
}

.creator-section_wrp {
    padding: 40px 15px !important;
}

.owl-item.active {
    margin-right: 15px !important;
}

.step-box {
    margin-top: 10px !important;
    margin-bottom: 30px;
}

.heding_landing {
    font-size: 35px !important;
}

.infoclbtl1 .row .col-lg-6 {
    display: none;
}

.featur-box {
    padding: 0 10px;
}

.collab-tools p {
    font-size: 11px !important;
}

.featur-box h5 {
    margin-bottom: 10px;
}

.trkimg {
    height: 30px !important;
    width: 30px !important;
}

.trkimg img {
    width: 20px;
}

.trk_wrap {
    padding:  20px 15px !important;
}

.infotrakng p {
    padding-top: 5px !important;
    font-size: 8px !important;
}

.infotrakng {
    padding: 10px !important;
}

.traking_crad h2 {
    font-size: 22px !important;
}

.traking_crad p {
    font-size: 11px;
}

.every-colbs .heding_landing {
    font-size: 31px !important;
}

.how-it-works, .every-colbs {
    padding: 60px 10px !important;
}

.innerctryall {
    font-size: 25px !important;
}

.infocla p {
    font-size: 10px;
}

.all-categroy .featur-box {
    gap: 10px;
    padding: 5px;
}

.hero_landarea {
    padding: 20px 12px;
}

.hero_landarea .col-md-5 {
    margin-top: 15px;
}



.creator-section_wrp .view-all a {
    font-size: 12px;
}



.all-categroy .icon-boxss {
    width: 40px;
    height: 50px;
    flex: 1 1 9%;
}

.boxss-cnt {
    flex: 1 1 75%;
}

.all-categroy .infoclbtl1 {
    margin-top: 30px;
    height: 346px;
}

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

.infocuntr {
    height: 100px;
}

.faqarea_landing .acc-icon {
    font-size: 15px;
    width: 25px;
    height: 25px;
    line-height: 25px;
}

.faqarea_landing .heding_landing {
    font-size: 25px !important;
}

.faqarea_landing p.text-secondary {
    font-size: 10px;
}

.faqarea_landing button {
    padding: 13px 15px !important;
    font-size: 11px !important;
}

.faqarea_landing .accordion-body p {
    font-size: 9px;
    text-align: left !important;
}

.crdlastnd {
    padding: 35px 15px !important;
}

.crdlastnd p {
    font-size: 9px;
}

.footer_inner{
  margin-bottom: 20px;
}

.footer-landing {
    padding-bottom: 10px;
}

.whyacrd .card-title {
    font-size: 20px;
    margin-top: 10px;
}

.whyacrd .card-content {
    padding: 20px 20px 0;
}

.whyacrd .card-image img {
    height: 230px !important;
}

.infoneltr{
  display: none;
}

.creator-section_wrp .creator_info {
    padding: 0 10px 10px !important;
}

.collab-tools {
    padding: 60px 10px 20px;
}

.tranking-section {
    padding: 0px;
}

.subtitle {
    margin-bottom: 10px;
}

.testimonials_wrap {
    padding: 60px 10px;
}

.all-categroy {
    padding: 60px 10px;
}

.loginbtnldn:hover, .loginbtnldn:active {
    border: 1px solid #f00;
}

body .profile-icon img {
    width: 30px !important;
}

.lndgmob  .toggle-btn {
    gap: 5px !important;
    width: 25px !important;
    margin-right: 15px !important;
}

.logo_wrap img {
    height: 42px !important;
}



}

.profile-icon img {
    width: 40px !important;
}

.gtnstg {
    padding: 7px 60px;
    font-size: 16px;
    margin-top: 30px;
}

.footer-landing .footer_top {
    padding: 50px 10px 20px;
}

.infoneltr{
  margin-top: 30px;
}

.ingonewltr h5 {
  margin-bottom: 7px;
}
.ingonewltr p {
    font-size: 12px;
}

    .newsletter-input {
      position: relative;
      width: 100%;
    }

   .newsletter-input input {
    width: 100%;
    padding: 10px 130px 10px 20px;
    border-radius: 50px;
    border: 1px solid #ddd;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

    .newsletter-input input:focus {
      border-color: #ff5a3b;
      box-shadow: 0 0 0 0.25rem rgba(255, 90, 59, 0.2);
    }

    .newsletter-input button {
    position: absolute;
    right: 0px;
    border: none;
    background: linear-gradient(135deg, #ff3b3b, #ff8a3b);
    color: #fff;
    border-radius: 0px 50px 50px 0px;
    padding: 10px 25px;
    font-weight: 600;
    transition: 0.3s;
}

    .newsletter-input button:hover {
      background: linear-gradient(135deg, #ff8a3b, #ff3b3b);
    }


    .ingonewltr {
    padding-left: 100px;
}

   .hmft .ingonewltr {
    padding-left: 50px !important;
}

.fthmnr .footer_top{
  padding-bottom: 20px !important;
}










.whyinfo .heading_md {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 48px;
    line-height: normal;
}

.find_info {
    padding: 25px;
    background: linear-gradient(180deg, rgb(255 255 255) 0%, rgb(233 233 233) 100%);
    z-index: 99;
    position: relative;
    width: 90%;
    margin: -61px auto;
    border-radius: 1em;
}

.findarea {
    padding: 70px 0 130px;
}

.find_info h4, .smrtinfo h4 {
    font-size: 18px;
    line-height: 24px;
}

.bg-gray {
    background: #fff6f6;
}

.mnyarea p {
    color: #dbdbdb !important;
}

.bg-mix {
    background: linear-gradient(180deg, rgb(43 43 43) 0%, rgb(0 0 0) 100%);
}

.whycrd {
    padding: 25px;
    background: linear-gradient(180deg, rgba(254, 233, 231, 1) 0%, rgb(0 0 0 / 7%) 100%, rgb(0 0 0 / 7%) 100%, rgba(251, 216, 214, 1) 38%);
    border-radius: 15px;
}

.earn-area .whyicon img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffeaea;
    border-radius: 8px;
    padding: 10px;
}

.earn-area .whyicon {
    width: 180px;
    height: 80px;
}

.earn-area .eacmg {
    width: 200px !important;
}

.samrt-ctn {
    background: linear-gradient(90deg, rgba(254, 233, 231, 1) 0%, rgb(0 0 0 / 7%) 100%, rgb(0 0 0 / 7%) 100%, rgba(251, 216, 214, 1) 38%);
}

.crdifo {
    height: 340px;
}
.crdifo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 5px 5px 5px 100px ;

}

 .whyicon img {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
}



.whytxt h4 {
    margin-bottom: 10px;
}

.earn-area{
  height: 100%;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 0 70px;
}


.whylist p {
    color: #262626;
}

.smartcrd img {
    width: 50%;
}

.smartcrd {
    background: #fff3f3;
    padding: 25px 35px;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 1em;
}

.faqarea .accordion-item {
    margin-bottom: 20px;
    background: transparent;
    border: 0;
}

.faqarea button {
    font-size: 18px;
    font-weight: 600;
    padding: 25px 25px;
    color: #000;
    /* border: 1px solid #0000001c; */
    border-radius: 10px 10px 0px 0px !important;
    background: #fff;
}

.faqarea .accordion-button:not(.collapsed) {
    box-shadow: 0px 4px 0px #f00;
    background: #fff;
    color: var(--cui-danger);
}

.faqarea .accordion-body {
    padding: 20px 25px;
    background: #fff;
    border-top: 1px solid #cccccc87;
}



.faqdsc h3 {
    /* position: absolute; */
    /* padding: 30px; */
    font-size: 30px;
}

.safeinner {
    background: #fff;
    padding: 35px;
    border-radius: 1em;
}

.safeinner li {
    color: #000;
    display: inline-flex;
    font-size: 14px;
}

.heading_sm {
    margin-bottom: 35px !important;
    font-size: 22px;
}

/* .mnyarea {
    mix-blend-mode: luminosity;
} */


body  .landing_frt .footer_bottom {
    border-top: 2px solid #e51e0f !important;
}

.page_header {
    background-size: cover !important;
    background-position: center !important;
    height: 300px;
    background-repeat: no-repeat !important;
    position: relative;
}

.woverlay:before {
    content: '';
    width: 100%;
    height: 100%;
    background: #00000073;
    position: absolute;
    z-index: 1;
}

.page_header .row {
    z-index: 2;
    position: relative;
}

.heading_lg {
    font-size: 40px;
    font-weight: 700;
}

.labels a {
    font-size: 14px;
    padding: 5px 20px;
    border-radius: 25px;
}

.blog_card_inner {
    background: #ff00000d;
    padding: 30px;
    border-radius: 1em;
    border: 1px solid #ff00001f;
}

.pagination .page-link {
    font-size: 14px;
}

.pagination .page-link:not(.page-item:first-child, .page-item:last-child) {
    padding: 10px 19px;
}

ul.pagination {
    justify-content: center;
}

.vsnimg img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.vsnbody {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    padding: 40px;
    width: 50%;
    height: 75%;
}

.msnbody {
  left: 0;
  right: auto;
}

.nopadd {
    padding-inline: 0 !important;
    margin: 0;
}

/* .send-interest-btn:hover, .send-interest-btn:focus {
    background: var(--cui-danger) !important;
    border-color: var(--cui-danger) !important;
    color: #fff !important;
} */

.cont_form {
    padding: 35px;
    border-radius: 10px;
}

.cont_form .form-control, .cont_form .form-select {
    font-size: 14px;
    text-indent: 10px;
    padding: 10px;
    border-radius: 8px;
}

.contact_left_img img {
    height: 460px;
    width: 100%;
    object-fit: cover;
}

.form-select:focus, .form-control:focus {
    border-color: #ff000042 !important;
    box-shadow: 0px 0px 4px 0px #ff000052;
}

.infob .icn {
    width: 60px;
    padding: 12px;
    background: #f00;
    border-radius: 5px;
    display: flex;
    align-items: center;
    height: 60px;
}





.chtminfo small {
    line-height: 16px;
}

.chtcrepostsm .chtpimg {
    width: 32px;
    margin-right: 8px;
}

.vsninfo {
    padding: 35px;
}

ul.list-styled {
    list-style: disc;
    padding-left: 20px;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: #000000;
    color: #fff !important;
  }
  
body .nav-pills .nav-link {
    padding: 3px 10px;
    font-size: 12px;
}

.messenger-listView .nav-pills{
  gap: 6px;
}

.messenger-listView .nav-link {
    background: #ededed;
}

    .active-link img {
        filter: invert(15%) sepia(80%) saturate(7285%) hue-rotate(2deg) brightness(96%) contrast(89%);
    }

     .filter-wrapper {
                position: relative;
                display: inline-block;
            }

        .filter-btn {
    background-color: white;
    border: 0.18px solid #c1c1c17d;
    padding: 6px 28px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 6px;
    min-width: 140px;
    /* position: relative;
    top: 18px; */
}

.create_list_grops .btn-area h2 {
    margin: 0;
}

.btn_inner_areass a {
    margin-bottom: 0;
}

            .filter-dropdown {
                display: none;
                position: absolute;
                z-index: 99;
                background-color: white;
                width: 280px;
                max-height: 500px;
                overflow-y: auto;
                border: 1px solid #ddd;
                border-radius: 10px;
                padding: 15px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
                top: 100%;
                left: -100px !important;
            }

            .filter-section {
                margin-bottom: 15px;
            }

            .filter-section strong {
                display: block;
                margin-bottom: 5px;
                color: red;
            }

            .filter-section label {
                display: block;
                font-size: 14px;
                margin-bottom: 5px;
            }

            .apply-btn {
                background-color: red;
                color: white;
                padding: 8px 16px;
                border: none;
                border-radius: 6px;
                cursor: pointer;
                font-weight: bold;
                width: 100%;
            }

            /* Show dropdown on toggle */
            .show-filter {
                display: block !important;
            }

            .show-filter {
                display: block !important;
            }

            .create_list_grops .btn-area {
    align-items: center;
}

.table td {
    color: #000 !important;
}

.plusicn {
    font-size: 27px;
}

.wishlist_icon {
    width: 30px;
}


img.intauser {
    width: 16px;
    margin-top: -3px;
}

.canord {
    display: flex;
    align-items: center;
}

.btnalted.w-100 a {
    margin-bottom: 0;
}

/* .btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    border-color: #000 !important;
} */

.paympost .admin_intersed img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.paywadv {
    width: 100%;
    height: 100%;
    background: #ffdada;
    border-radius: 10px;
    text-align: center;
    padding-top: 20px;
}

.paywadv {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
}

.wallicn {
    font-size: 30px;
    width: 60px;
    height: 60px;
    background: #ffeaea;
    color: #e51e0f;
    border-radius: 10px;
    margin: 0 auto 20px;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.thnicn i {
    font-size: 30px;
    width: 55px;
    height: 55px;
    background: #e71c0b;
    color: #fff;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.thanky_inner {
    padding: 40px 30px;
    background: #ffefef !important;
}

body .btn-close-white {
    filter: invert(0);
    opacity: 1;
}

body .btn-close:focus {
    border: 0;
    box-shadow: none;
}

body .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-width: 0 6px 8px 6px !important;
}


.profile_edt a {
    color: #f20000 !important;
}
.profile_edt a:hover {
    color: #f20000 !important;
    background-color: #fff !important;
}

.pst {
    display: flex;
    align-items: center;
}

.land_header ul {
    gap: 40px;
}

.logo_wrap {
    max-width: 200px;
}

.land_header .navbar-nav .nav-link.active, .land_header .navbar-nav .nav-link.show {
    color: rgb(229 30 15);
}

.whylist {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testi_card {
    background: #fff1f1;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #ff00001c;
}

.mytsti .owl-nav.disabled, .cosarea .owl-nav.disabled {
    display: none !important;
}

.chatrightside {
    background: #fff1f1;
    padding: 10px;
    height: 100%;
    border: 1px solid #ffd9d9;
}

.cchtfirts {
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0px 0px 1px #000000bd;
}

.chatrightside hr {
    opacity: 0;
}

.chtpinfo h4 {
    color: #e51e0f;
}

.chtviewlnk, .chtpinfo a {
    font-weight: 600 !important;
    color: var(--cui-danger) !important;
}

.messenger {
    margin-bottom: 0px;
}

body .messenger-list-item td b {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #f00;
}

body .m-list-active b {
    color: #e51e0f !important;
}

#disputeForm .btn-close {
    /* filter: invert(1); */
    font-size: 14px;
    opacity: 1 !important;
}

.profile_intersed .profile_edt a:hover {
    background: #f5d79e !important;
    color: #a35b00 !important;
}



.crecv {
    width: max-content !important;
    padding: 6px 15px !important;
}

.pricv {
    font-size: 24px;
    font-weight: 800;
    line-height: 0;
}
button.ptnbtn:active{
  border-color: #000 !important;
}

.profile_intersed .profile_edt a.text-success {
    color: #2d892b !important;
}
.profile_intersed .profile_edt a.text-success:hover {
    color: #2d892b !important;
    background: #dbffc5 !important;
}

.creaprnm .btnmap h3 {
    font-size: 35px !important;
}



.gmryl {
    width: 25px;
}

.poshdf h4, .poshdf h6 {
    margin-bottom: 10px !important;
    font-size: 15px;
}

.posbtndf  a {
    font-size: 12px !important;
}

.posprofl .creat_btns a {
    font-size: 11px !important;
}

.posclb .colid {
    font-size: 13px;
    margin-bottom: 0;
    font-weight: 700;
    color: #000;
    line-height: 12px;
}

.posnfg{
   flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.propostfull {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
    min-height: 190px !important;
}

.btnmap .psdinf {
    padding-top: 15px !important;
    font-size: 18px !important;
    color: #404040 !important;
}
.pstvwe {
    flex-wrap: wrap;
}

/* .proviewbtns.posbtndf {
    flex-wrap: wrap;
} */

.btnmap a {
    padding-top: 10px !important;
    font-size: 15px;
    color: #000;
    font-weight: 600;
}

.loctnpos i {
    font-size: 30px;
    color: #ffffff;
    line-height: 30px;
    -webkit-text-stroke: 1px;
    -webkit-text-stroke-color: #0000006b !important;
}

.loctnpos {
    display: flex;
    align-items: center;
}

 
.posprofl, .propostfull {
  box-shadow: 0 0px 4px rgb(0 0 0 / 15%);
}

.pstfulmor {
    display: flex;
}

.txtbtncmp .btn.btn-light {
    font-weight: 600;
}

.txtbtncmp .btn.btn-secondary {
    background: #e51e0f !important;
    border-color: #e51e0f !important;
    opacity: 1 !important;
    padding: 6px 20px;
    font-size: 13px;
    font-weight: 600;
}

.txtbtncmp .btn.btn-success {
    opacity: 1;
    padding: 6px 20px;
    font-size: 13px;
    font-weight: 600;
}

.txtbtncmp .bg-danger {
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 20px !important;
}
.txtbtncmp .bg-danger:hover {
    color: #fff !important;
    background: #e51e0f !important;
}
.txtbtncmp .bg-danger img {
    filter: none;
}




.poshdf h4{
    font-size: 18px !important;
}

.postygtf h6 {
    margin-bottom: 20px;
}


.loctnpos .gam_profile_itsd{
  margin-left: -7px;
}

.creaprnm .btnmap h3{
  margin-bottom: 0 !important;
}

.posgbt a {
    padding: 4px 10px !important;
    font-size: 13px;
    /* margin-bottom: 10px; */
}


body .poscrgtf a.categys {
    margin: 0 !important;
    padding: 2px 17px;
    font-size: 9px;
    margin-bottom: 0 !important;
    background: #DADADA;
    border-radius: 25px;
    margin-block: 10px;
    display: inline-block;
    font-weight: 500;
    color:#6d6d6d;
}



.posbft .post_hed h5, .post_hed h5 {
    margin-bottom: 6px;
}


.positmg{
  box-shadow: unset !important;
}

.posimgtf {
    border-radius: 5px;
    margin-right: 15px;
}

.posimgtf img {
    height: 435px !important;
}

.poscrgtf .intarow {
    width: 15px;
    margin-right: 4px !important;
}

.intarow {
    width: 15px;
    margin-right: 4px !important;
    margin-left: 0 !important;
}

.posctgtf h4 {
    margin-bottom: 13px;
}


.Post_item .post_hed p {
    text-align: justify;
    margin-bottom: 0;
   
}

.btnlin .intarow {
    width: 15px !important;
}



.dposce p{
  font-size: 14px;
}

.posbtfdd span {
    font-size: 15px;
    margin-right: 15px;
}


.lanlog {
    border: 2px solid #e51e0f;
    border-radius: 6px;
    font-weight: 700;
    color: #e51e0f !important;
    margin-top: 0;
}

.roundtlan {
    border-radius: 6px !important;
    font-weight: 700;
    margin-top: 0;
}

.lanlog:hover {
    border: 2px solid #e51e0f;
}

.btnmap {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    line-height: 0;
}

.posprofl .gam_profile_itsd {
    font-size: 20px;
}

.Post_item .post_hed {
    margin-bottom: 25px;
}

.btnntsd span {
    padding: 5px 18px 5px 17px;
    font-size: 14px;
}

.pb-10{
  padding-bottom: 60px;
}

.text.fw-bold.cmld {
    font-size: 13px;
    text-transform: capitalize !important;
    font-weight: 500;
    padding: 5px 13px;
    display: flex;
    align-items: center;
    background: #4CAF50;
    color: #f2f2ef;
    border-radius: 4px;
}
.text.fw-bold.cnld {
    font-size: 13px;
    text-transform: capitalize !important;
    font-weight: 500;
    padding: 5px 13px;
    display: flex;
    align-items: center;
    background: #ff1e00;
    color: #f2f2ef;
    border-radius: 4px;
}


 .youtube-cretors .influencer-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: relative;
    height: 320px;
}
.youtube-cretors .influencer-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.youtube-cretors .profile-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255,255,255,0.9);
    padding: 8px 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    width: 92%;
}
  .youtube-cretors  .profile-badge img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      margin-right: 8px;
    }
   .youtube-cretors .platform {
      font-size: 20px;
      font-weight: bold;
      color: #000;
      margin-top: 10px;
    }
   .youtube-cretors .price {
      font-weight: bold;
      color: #000;
      font-size: 18px;
      margin-top: 5px;
    }

.post_detail h5 {
    font-size: 13px;
    font-weight: 800;
    border-bottom: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 10px;
}

.outer_div {
    padding: 0 10px 10px 10px;
}

    .how-it-works .card {
      border: none;
      border-radius: 20px;
      padding: 25px;
      height: 100%;
    }
    .card-icon {
      font-size: 35px;
    }
    .bg-blue { background: #EAF2FF; }
    .bg-orange { background: #FFF1E6; }
    .bg-yellow { background: #FFF9E6; }
    .bg-lightblue { background: #E6F7FF; }

   

    .works h2, .works p {
    margin: 5px;
}

.workm img {
    height: 750px;
    width: 100%;
}

.faqimg span {
    font-size: 22px;
    font-weight: 600;
    color: #f00;
    margin-bottom: 15px !important;
    padding-bottom: 15px !important;
}



.samrt-ctn .whyicon {
    width: 240px;
}

p.shortdesc {
    text-align: left;
    color: #000;
    margin: 0;
}

.hero_landarea .btnbnr {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.inrclm h4{
  color: #000 !important;
}

.abs_cnlc_dtl {
    flex: 1 1 50%;
}
.text-danger-500{
  color: #f00 !important;
}

 .posdtlpfl .posbtndf a {
    padding: 5px 10px !important;
}

span.chtctry {
    background: #cccccc38;
    padding: 5px 13px;
    border-radius: 50px;
    color: #000;
    border: 1px solid #cccccc63;
    font-size: 11px;
}

.regicon a {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #ccc;
    padding: 7px 20px;
    border-radius: 50px;
    font-weight: 600;
    width: 100%;
    justify-content: center;
}

.edititsd-inr h3 {
    font-size: 11px;
    text-align: end;
}

.colndf span {
    background: #ffffff;
    padding: 5px 15px;
    border-radius: 5px;
}

.colndf {
   margin-bottom: 15px;
}

.pstdtlwdth .container {
    width: 86%;
}

small#chat-count-container {
    position: relative;
    top: -40px;
    left: 14px;
    text-align: center;

}
small#chat-count-container span {
    line-height: 11px
}


.frmun:focus {
    border-color: #dbdfe6 !important;
    box-shadow: unset !important;
}

  .nfogo .badge {
      display: inline-flex;
      align-items: center;
      font-size: 14px;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 20px;
      gap: 6px;
    }
  .nfogo  .awaiting {
      background: #fce9d6;
      color: #8a4d00;
      border: 1px solid #f5c089;
    }
  .nfogo  .created {
      background: #e6f0ff;
      color: #0052cc;
      border: 1px solid #9bbdf7;
    }
   .nfogo .badge i {
      font-size: 16px;
    }

    .settings-list small {
    padding: 8px 25px;
    font-size: 16px;
    border-bottom: 1px solid #cccccc85;
}

.notifhdr span {
    width: 20px;
    height: 20px;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resover a:active {
    background: #fff !important;
}

.resover a:first-child {
    pointer-events: none;
    cursor: default; 
}




.badge.awaiting {
    background-color: #fff3cd;
    color: #856404;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 20px;
    font-weight: 600;
    display: flex;
    gap: 8px;
    align-items: center;
}
 
.badge.created {
    background-color: #DBEAFE;
    color: #155724;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 20px;
    font-weight: 600;
    display: flex;
    gap: 8px;
    align-items: center;
}
 
.badge.bg-success, .badge.bg-danger {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 20px;
    font-weight: 600;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.main_profile_section .profile_edt {
    gap: 20px;
}

.create_vlog button {
    background: #4f4f4f;
    border-color: #4f4f4f;
    padding: 5px 20px;
}
.create_vlog button:hover {
    background: #f00;
    border-color: #f00;
}

.frmun {
    background: #e7e7e7;
}

.gstin{
    font-size: 18px !important;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.gst-reason-box {
  font-size: 14px;
  color: #212529;
}

.gst-reason-box .form-check {
  margin-bottom: 8px;
}

.gst-reason-box .form-check-input {
  margin-top: 4px;
  margin-right: 6px;
}

.gst-reason-box label {
    font-size: 12px !important;
    font-weight: 400 !important;
    margin-bottom: 0px !important;
    line-height: 27px;
}

.gst-reason-box input{
  padding: 7px !important;
}

.gst-reason-box .form-check-input:checked + .form-check-label {
    color: black;
}

.dwnvic{
    display: flex;
}
.progtn {
    display: flex;
}

.progtn a{
  padding: 3px 35px !important;
}

.alifogst{
font-size: 18px !important;
}

.trans_page .trahis th {
    font-size: 14px !important;
}

.ctryblgtag span {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.nptgst button {
    font-size: 16px;
    padding: 9px 45px;
}

.nptgst input {
    max-width: 80%;
}

.btnbilng button {
    padding: 10px 40px;
    font-size: 16px;
}

.cardgst  .fade:not(.show) {
    display: none;
}



    /* Your existing CSS styles */
    .memts {
        text-align: center !important;
        font-weight: 700;
        font-size: 30px;
        margin-bottom: 40px;
    }
    .member_card {
        border-radius: 15px;
        position: relative;
        overflow: hidden;
        max-width: 100%;
        transition: all 0.4s ease-in-out;
        border: 1px solid #00003b2e;
        height: 100%;
    }
    .mehead {
        background: #ff00000d;
        padding-block: 20px;
        display: flex;
        justify-content: space-between;
        padding-inline: 20px;
    }
    .price_title {
        color: #111;
        font-size: 20px;
        font-weight: 700;
        letter-spacing: 1px;
        margin-top: 15px;
        margin-bottom: 0;
    }
    .mehead img {
        width: 18%;
    }
    .memprice {
        color: #000;
        font-size: 29px;
        font-weight: 800;
    }
    .member_body {
        padding: 25px 20px;
    }
    .memprice small {
        color: #8f8f8f;
        font-size: 16px;
        font-weight: 600;
    }
    .packlist li {
        font-size: 13px;
        display: flex;
        gap: 7px;
    }
    .packlist i {
        color: #ff000073;
        margin-top: 5px;
    }
    .upbtn {
        font-size: 15px;
        width: 100%;
        font-weight: 500;
        text-transform: uppercase;
        margin-bottom: 15px;
        margin-top: 5px;
    }
    @media (max-width:767px) {
        .memts { font-size: 22px; }
    }
    
    .payment-summary { font-size: 14px; }
    .payment-summary h6 { color: #333; margin-bottom: 15px; }
    
    .toast { opacity: 1 !important; }
    .toast-success { background-color: #28a745 !important; }
    .toast-error { background-color: #dc3545 !important; }
    .toast-warning { background-color: #ffc107 !important; color: #000 !important; }
    .toast-info { background-color: #17a2b8 !important; }
    
    /* Low balance warning */
    .low-balance { color: #dc3545; font-weight: bold; }
    .insufficient-balance { background-color: #ffebee; border-left: 4px solid #dc3545; padding: 10px; }
    .low-balance {
    color: #dc3545 !important;
    font-weight: bold;
}

.insufficient-balance {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
    color: #856404;
}

.text-danger {
    color: #ff0000 !important;
}

.mobile-header small#chat-count-container {
    position: relative;
    top: 7px !important;
    left: 23px !important;
    text-align: center;
}

.icn i {
    font-size: 46px;
    color: #fff !important;
}

.whtap{
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.fw-bold {
    font-weight: bold !important;
}


.gstcrd .labcnt select, .gstcrd .labcnt textarea, .gstcrd .labcnt input {
    padding: 11px;
    font-size: 15px;
    font-weight: 500;
    color: #626262;
}

.gstcrd .labcnt input::placeholder,
.gstcrd .labcnt textarea::placeholder,
.gstcrd .labcnt select::placeholder {
    font-size: 15px;
    font-weight: 500;
    color: #626262;
}

.cardgst {
    background: #fff;
    padding: 25px 35px;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.cardgst .labcnt label {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}


.btnbilng {
    margin: auto;
    display: table;
}

.gstcrd ul li button {
    padding: 7px 40px;
    background: #00000024;
    color: #000 !important;
    border-radius: 5px;
}

.gstcrd button.active {
    color: #fff !important;
    font-weight: 500;
    background: #000;
    border-radius: 5px;
    margin-bottom: 10px;
}
.gstcrd ul {
  gap: 15px;
  border-bottom:1px solid #cccccc;
}

.pndtls button {
    padding: 7px 25px;
    font-size: 12px;
    font-weight: 500;
}

.form-checkinfo p {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 800;
    color: #000;
}

.form-checkinfo span {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.colidbs span {
    font-size: 13px;
    margin-bottom: 0;
    font-weight: 700;
    color: #000;
}


.membrship .modal-header{
  padding-inline: 15px !important;
}

.membrship .table.table-borderless tr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
}

.alert.alert-warning {
    display: none;
}

.membrship .modal-dialog.modal-dialog-centered {
    max-width: 400px !important;
}

.membrship .modal-footer {
    border-top: 0 !important;
    padding-inline: 15px !important;
    padding-top: 0;
}

.membrship .modal-footer button {
  width: 100%;
}

body .pstmtn {
    width: 15px !important;
    filter: invert(0) !important;
    margin-left: 0 !important;
}

.Milebtn {
    padding-top: 7px !important;
}

.inptymbtn .creat_btns a{
  background: #fff !important;
}



 .summary-box {
      background: #fff;
      box-shadow: 0px 0px 3px 0px #ccc;
      border-radius: 10px;
    }

    .tblefo {
    border: 1px solid #ddd;
    border-radius: 5px;
}
   .ptmsmmry .summary-box h3 {
      margin: 0 0 15px;
      font-size: 18px;
      font-weight: 600;
      color: #111;
    }
    
    .summary-table {
      border-collapse: collapse;
      width: 100%;
    }
    
    .summary-table tr {
    display: flex;
    justify-content: space-between;
    margin: 6px 0;
    font-size: 15px;
    color: #333;
    padding: 0px 13px;
}
    .summary-table tr.subtotal {
      border-top: 1px solid #ddd;
      margin-top: 0px;
      padding-top: 8px;
    }
.summary-table tr.total {
      border-top: 1px solid #ddd;
      margin-top: 0px;
      padding-top: 8px;
      font-weight: bold;
      font-size: 16px;
    }
   .ptmsmmry .note {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.inmiston .pay-btn {
    background: #ff1300;
    color: #fff;
    width: 100%;
    padding: 10px 14px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}
.inmiston .pay-btn:hover {
      background: #000;
    }

    .inmiston .pay-btn:active {
     color: #fff !important;
    }
   .ptmsmmry .terms {
      margin-top: 6px;
      text-align: center;
      font-size: 12px;
      color: #888;
    }

  .ptmsmmry h3 {
    border-bottom: 1px solid #ddd;
    padding: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
}

    .pytmmdl img {
    height: 150px;
    width: 100%;
    object-fit: cover;
}



    .sidebar h3 {
      font-size: 18px;
      margin-bottom: 20px;
      color: #222;
    }

    .sidebar-item {
      margin-bottom: 15px;
    }

   .adicnd {
	width: 40px;
	height: 40px;
	background: #ffebeb;
	text-align: center;
	line-height: 40px;
	border-radius: 50px;
	margin-bottom: 7px;
}
    .adicnd i {
      font-size: 16px;
      color: #f00;
      font-weight: 700;
}

.sidebar-item {
	display: flex;
	gap: 15px;
}

     

    .sidebar-item div h4 {
      font-size: 14px;
      margin: 0 0 5px;
      color: #111;
    }

    .sidebar-item div p {
      margin: 0;
      font-size: 13px;
      color: #555;
      line-height: 1.4;
    }

    .pytmmdl .modal-dialog {
    max-width: 800px !important;
    margin-left: 30%;
}
    .pytmmdlss .modal-dialog {
    max-width: 800px !important;
}

.loadbtn a:active {
    background: transparent !important;
    color: #000 !important;
    border-color: #000 !important;
}

.pgniton p.small.text-muted {
    display: none;
}

.pgniton .flex-sm-fill {
    justify-content: center !important;
}


.inmiston{
    width: 100%;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0px 0px 6px 0px #00000021;

}

/* .cnflgn {
    padding: 9px 30px 7px !important;
    border-radius: 3px;
    width: 100% !important;
} */

.btnalg:active {
    background: transparent !important;
    border-color: transparent !important;
}
.btnalg:hover {
    background: transparent !important;
    border-color: #000 !important;
    color: #000 !important;
}


.whyimg > img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-top: -80px;
    border-radius: 16px;
}

.collaphead {
    margin-bottom: 40px;
}

.cosarea .whyicon {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50%;
    padding: 0 0 0px 20px;
    background: linear-gradient(0deg,rgba(0, 0, 0, 0.48) 0%, rgba(251, 216, 214, 0) 100%);
    margin: 0 !important;
    border-radius: 16px;
}

.title-area a:active {
    background: #000 !important;
    border-color: #000 !important;
}

.btnatv{
  background: #000 !important;
  border-color: #000 !important;
}

.gstcrd .form-check-input:checked {
    background-color: #000;
    border-color: #000;
    box-shadow: unset !important;
}

.stasclt {
    padding: 9px;
    font-size: 20px;
    color: #717171;
}

.clbid {
	padding: 6px 14px;
	background: #dadada75;
	border-radius: 50px;
}

.clbid p {
	font-weight: 400 !important;
  font-size: 9px !important;
}

.clbid span {
	font-weight: 700 !important;
  font-size: 9px !important;
}

.mginfopy {
    padding: 10px 10px 0;
    box-shadow: 0px 0px 3px 0px #ccc;
    margin-bottom: 15px;
    border-radius: 10px;
}

.tab-pane input {
    padding: 11px;
    font-size: 16px;
    font-weight: 500;
}

.adicnd {
	flex: 1 1 10%;
}

.adcntn {
	flex: 1 1 90%;
}

.mobile-bottom-nav .badge.bg-success, .mobcht {
    padding: 4px 4px !important;
}

.mobile-bottom-nav small#chat-count-container {
    top: 11px !important;
    left: 24px !important;
}


.mobile-bottom-nav {
  position: fixed;
  bottom: -1px;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #ddd;
  z-index: 1000;
}

.botmmnu {
  display: flex;
  justify-content: space-around; /* equal spacing */
  align-items: center;
  position: relative;
}

.botmmnu a {
  text-decoration: none;
  color: #000;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.botmmnu a img {
  height: 24px;
}

.botmmnu span {
  font-size: 11px;
  color: #000;
}

/* Center Floating Button */
.create-btn {
    position: absolute;
    top: 0px;
    left: 47%;
    transform: translateX(-50%);
    z-index: 2;
}

.create-btn button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: red !important;
  border: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
}

.myclb {
    margin-left: -20px;
}

.notify{
   margin-left: 40px;
}

.myclton {
    margin-left: -20px;
}

  /* Responsive fix */
  @media(max-width: 480px) {
  .mobile-bottom-nav .botmmnu ul {
      gap: 15px;
    }
   .mobile-bottom-nav .create-btn button {
      width: 45px !important;
      height: 45px !important;
    }
   .mobile-bottom-nav .create-btn span {
      font-size: 22px;
    }
  }


  .info-note {
  background: #fdf5f5;
  border: 1px solid #eee;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

.sidebar-item:nth-child(3) {
    margin-bottom: 0 !important;
}

.info-note .info-icon {
    background: #f1f1f1;
    border-radius: 50%;
    padding: 5px;
    width: 70px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-note .info-icon i {
    font-size: 18px;
    color: #6c757d !important;

}



.info-note a.link {
  color: #e74c3c;
  text-decoration: none;
  font-weight: 500;
}

.info-note a.link:hover {
  text-decoration: underline;
}

.info-note p {
    font-size: 11px;
}

.Milebtn img {
    margin-top: -4px;
}

