.coachEdit .file-upload {
  position: relative;
  display: block;
  width: 100%;
  padding: 15px;
  text-align: center;
  border: 2px dashed #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}
.coachEdit .file-upload:hover {
  border-color: #ff1563;
}
.coachEdit .upload-icon {
  font-size: 24px;
  color: #757575;
  margin-bottom: 10px;
}
.coachEdit .file-input,.coachEdit .file-input-new {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.coachEdit .upload-text {
  display: block;
  margin-bottom: 5px;
}
.coachEdit .upload-hint {
  display: block;
  font-size: 12px;
  color: #757575;
}
.coachEdit .uploaded-file {
  display: flex;
  align-items: center;
  background-color: #f4f4f4;
  padding: 8px 12px;
  border-radius: 5px;
  margin-top: 10px;
}
.coachEdit .file-name {
  flex: 1;
  font-size: 14px;
}
.coachEdit .file-remove {
  color: #F44336;
  cursor: pointer;
}


.mw-20 {
  min-width: 20px;
}

.main-content .content-inner {
  padding-top: 30px !important;
  margin-top: 0 !important;
  padding-bottom: 30px !important;
  min-height: calc(100vh - 105px);
}
.main-content .content-inner .card {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .main-content .content-inner {
    padding: 15px !important;
  }
}

.custom-dropdown .dropdown-toggle::after {
  display: none;
}

.help-text {
  font-size: 12px;
  color: #afafb3;
}

.imgPreview_remove {
  width: 16px;
  height: 16px;
  background-color: #dc3545;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -10px;
  right: -10px;
  cursor: pointer;
  border: 0;
  box-shadow: none;
}
.imgPreview_remove svg {
  width: 10px;
  height: 10px;
  stroke-width: 2px;
  stroke: #fff;
  flex-shrink: 0;
}
.imgPreview_box {
  position: relative;
  border: 1px solid #eee;
  padding: 8px;
  width: 75px;
  height: 80px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.imgPreview_box img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  align-items: center;
}
.imgPreview-document img {
  width: 35px;
}

.validationError {
  font-size: 14px;
  color: #dc3545;
}

.sidebar-default .navbar-nav .nav-item .nav-link:not(.disabled).active,
.sidebar-default .navbar-nav .nav-item .nav-link:not(.disabled)[aria-expanded=true] {
  background-color: #1d1761;
  box-shadow: 0 10px 20px -10px rgba(29, 23, 97, 0.4);
}

.sidebar-default .navbar-nav .nav-item .nav-link:not(.disabled):hover:not(.active):not([aria-expanded=true]) {
  background-color: #edebff;
  color: #1d1761;
}

th.hide-search input {
  display: none;
}

.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 6px solid #f3f3f3;
  border-top: 6px solid #ff1563;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.client-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 5px;
}

.client-chip img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 8px;
}

.client-chip.selected {
  background-color: #0d6efd;
  color: white;
  border-color: #0d6efd;
}

.no-clients-message,
.loading-clients,
.error-message,
.no-slots-message,
.loading {
  width: 100%;
  padding: 15px;
  text-align: center;
  color: #6c757d;
  background-color: #f8f9fa;
  border: 1px dashed #ddd;
  border-radius: 4px;
}

.error-message {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}

.time-slot {
  margin: 5px;
}

.time-slot.unavailable {
  opacity: 0.5;
  text-decoration: line-through;
}

@media (max-width: 1199px) {
  .earningPage .card-body .bg-primary svg {
    width: 30px;
  }
  .earningPage .card-body h4 {
    font-size: 20px;
  }
  .earningPage .card-body p {
    font-size: 14px;
  }
}

@media (max-width: 1199px) {
  .notificationPage #notificationList .card-body {
    padding: 12px;
  }
  .notificationPage #notificationList .time {
    font-size: 14px;
  }
}

@media (max-width: 1199px) {
  .reviewsList .card h6 {
    line-height: 1;
  }
  .reviewsList .card p {
    font-size: 14px;
  }
}

.dark .no-clients-message,
.dark .loading-clients,
.dark .error-message,
.dark .no-slots-message,
.dark .loading {
  background-color: #2d3242;
  border-color: #30384f;
}

.signupPage {
  padding-top: 30px;
}
.signupPage .form-progress {
  display: flex;
  padding: 15px 0;
  overflow-x: auto;
}
.signupPage .progress-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 5px;
  min-width: 100px;
}
.signupPage .progress-container {
  width: 100%;
  margin-bottom: 25px;
  background-color: #f4f4f4;
  height: 5px;
  border-radius: 4px;
  overflow: hidden;
}
.signupPage .progress-bar {
  height: 100%;
  background-color: #ff1563;
  width: 0;
  transition: width 0.3s ease;
}
.signupPage .step-number {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #e0e0e0;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 8px;
  position: relative;
  z-index: 2;
  font-size: 14px;
}
.signupPage .step-number.active {
  background-color: #ff1563;
}
.signupPage .step-label {
  font-size: 14px;
  color: #757575;
}
.signupPage .step-label.active {
  color: #ff1563;
  font-weight: 600;
}
.signupPage .form-body {
  visibility: hidden; /* Page load hone tak form hidden rahe */
  opacity: 0;
}
.signupPage .form-section {
  display: none;
  height: 100%;
  overflow: hidden auto;
  position: relative;
}
.signupPage .form-section.active {
  display: block;
}
.signupPage .section-header {
  margin-bottom: 20px;
}
.signupPage .section-title {
  font-size: 20px;
  color: #ff1563;
}
.signupPage .section-description {
  color: #757575;
  font-size: 14px;
}
.signupPage .section-bottom {
  margin-top: 30px;
  justify-content: end;
}
.signupPage .file-upload {
  position: relative;
  display: block;
  width: 100%;
  padding: 15px;
  text-align: center;
  border: 2px dashed #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}
.signupPage .file-upload:hover {
  border-color: #ff1563;
}
.signupPage .upload-icon {
  font-size: 24px;
  color: #757575;
  margin-bottom: 10px;
}
.signupPage .file-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.signupPage .upload-text {
  display: block;
  margin-bottom: 5px;
}
.signupPage .upload-hint {
  display: block;
  font-size: 12px;
  color: #757575;
}
.signupPage .uploaded-file {
  display: flex;
  align-items: center;
  background-color: #f4f4f4;
  padding: 8px 12px;
  border-radius: 5px;
  margin-top: 10px;
}
.signupPage .file-name {
  flex: 1;
  font-size: 14px;
}
.signupPage .file-remove {
  color: #F44336;
  cursor: pointer;
}

.dark .signupPage .step-number {
  background-color: #2d3242;
}

.packagePage .nav-tabs .nav-link .badge {
  background-color: #ffe3ec !important;
  color: #000 !important;
}
.packagePage .package-card {
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.packagePage .package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.packagePage .package-header {
  padding: 15px;
  padding-right: 55px;
  color: white;
  position: relative;
}
.packagePage .package-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--bs-gray-dark);
}
.packagePage .package-category {
  font-size: 14px;
  color: #333;
}
.packagePage .package-actions {
  position: absolute;
  top: 15px;
  right: 15px;
}
.packagePage .action-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  color: #333;
}
.packagePage .action-icon svg {
  width: 18px;
  height: 18px;
}
.packagePage .action-icon:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
.packagePage .package-body {
  padding: 15px;
}
.packagePage .package-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.packagePage .stat-item {
  text-align: center;
  flex: 1;
  padding: 10px;
  background-color: #f4f4f4;
  border-radius: 5px;
  margin: 0 5px;
}
.packagePage .stat-value {
  font-size: 20px;
  font-weight: bold;
  color: #ff1563;
  margin-bottom: 5px;
}
.packagePage .stat-label {
  font-size: 12px;
  color: #757575;
}
.packagePage .package-details {
  margin-bottom: 15px;
}
.packagePage .detail-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #e0e0e0;
}
.packagePage .detail-item:last-child {
  border-bottom: none;
}
.packagePage .detail-label {
  font-weight: 500;
  color: #757575;
}
.packagePage .package-description {
  font-size: 14px;
  color: #757575;
  margin-bottom: 15px;
  line-height: 1.5;
}
.packagePage .package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: #f4f4f4;
  border-top: 1px solid #e0e0e0;
  margin-top: auto;
}
.packagePage .price-tag {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}
.packagePage .earnings {
  font-size: 14px;
  color: #757575;
}
.packagePage .client-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.packagePage .client-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 10px;
}
.packagePage .client-info {
  flex: 1;
}
.packagePage .client-name {
  font-weight: 500;
  margin-bottom: 3px;
  color: #000;
  word-break: break-all;
}
.packagePage .client-package {
  font-size: 12px;
  color: var(--gray);
}
.packagePage .session-status {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
}
.packagePage .status-upcoming {
  background-color: rgba(33, 150, 243, 0.1);
  color: #2196f3;
}
.packagePage .status-live {
  background-color: rgba(76, 175, 80, 0.1);
  color: #4caf50;
}
.packagePage .status-completed {
  background-color: rgba(158, 158, 158, 0.1);
  color: var(--gray);
}
.packagePage .status-cancelled {
  background-color: rgba(244, 67, 54, 0.1);
  color: #f44336;
}
.packagePage .package-card.success .package-header {
  background-color: #d3eaec;
}
.packagePage .package-card.success .stat-value {
  color: #4caf50;
}
.packagePage .package-card.info .package-header {
  background-color: #cde4f4;
}
.packagePage .package-card.info .stat-value {
  color: #2196F3;
}
.packagePage .package-card.purple .package-header {
  background-color: #e4e0fb;
}
.packagePage .package-card.purple .stat-value {
  color: #9C27B0;
}
.packagePage .package-card.primary .package-header {
  background-color: #f8dbe5;
}
.packagePage .package-card.primary .stat-value {
  color: #FF5722;
}
.packagePage .duration-options {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.packagePage .duration-option {
  cursor: pointer;
  padding: 2px 5px;
  border-radius: 4px;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}
.packagePage .duration-option:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.packagePage .duration-option.active {
  background-color: rgba(255, 255, 255, 0.25);
  font-weight: bold;
}
.packagePage .duration-separator {
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 1199px) {
  .packagePage .package-title,
  .packagePage .stat-value {
    font-size: 16px;
  }
  .packagePage .detail-label {
    font-size: 14px;
  }
  .packagePage .price-tag {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .packagePage .package-footer {
    display: block;
  }
}

.dark .packagePage .package-footer ,.dark .packagePage .package-body,.dark .packagePage .package-card.purple .package-header{
  background-color: #2d3242;
  border-top-color: #242835;
}
.dark .packagePage .client-name,.dark .packagePage .package-title,.dark .packagePage .package-category{
  color: #8A92A6;
}
.dark .packagePage .package-body{
  border-top:1px solid #242835;
}

.dark .packagePage .stat-item {
  background-color: #2d3242;
}
.dark .packagePage .detail-item {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.addSession .timeSlot {
  padding: 8px 20px;
  text-align: center;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
}
.addSession .timeSlot.selected {
  background-color: #ff1563;
  color: white;
  border-color: #ff1563;
}
.addSession .timeSlot:hover:not(.selected) {
  background-color: #f4f4f4;
}
.addSession .client-chip {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  background-color: #f4f4f4;
  border-radius: 20px;
  gap: 5px;
  cursor: pointer;
  transition: all 0.3s;
  color: #5f5c5c;
  font-size: 14px;
}
.addSession .client-chip.selected {
  background-color: #ff1563;
  color: white !important;
}
.addSession .client-chip img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.dark .addSession .client-chip {
  /* background-color: #2d3242; */
  border-color: #30384f;
  color: #8A92A6;
}

.messagesPage {
  position: relative;
  background-size: cover;
}
.messagesPage .usersToggle {
  width: 35px;
  height: 35px;
  padding: 0;
  display: none;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .messagesPage .usersToggle {
    display: flex;
  }
}
.messagesPage .msgSec .listing {
  width: 330px;
  border-right: 1px solid #ebe8e8;
}
.messagesPage .msgSec .messaging {
  width: calc(100% - 330px);
}
@media (max-width: 1599px) {
  .messagesPage .msgSec .listing {
    width: 280px;
  }
  .messagesPage .msgSec .messaging {
    width: calc(100% - 280px);
  }
}
@media (max-width: 991.98px) {
  .messagesPage .msgSec .listing {
    width: 300px;
  }
  .messagesPage .msgSec .messaging {
    width: calc(100% - 300px);
  }
}
@media (max-width: 767.98px) {
  .messagesPage .msgSec .listing {
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    z-index: 11;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
  }
  .messagesPage .msgSec .listing.show {
    left: 0;
    opacity: 1;
    visibility: visible;
    padding-top: 0;
    z-index: 999;
  }
  .messagesPage .msgSec .messaging {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .messagesPage .msgSec .listing {
    left: -275px;
    width: 275px;
  }
  .messagesPage .msgSec .messaging {
    width: 100%;
  }
}
.messagesPage .msgSec_list {
  position: relative;
  height: 100%;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
}
.messagesPage .msgSec_list .search {
  padding: 20px 5px;
}
.messagesPage .msgSec_list .search .closeIcon {
  display: none;
}
.messagesPage .msgSec_list .search input {
  padding-left: 32px;
  font-size: 14px;
  border: 0;
  color: #000;
  height: 42px;
  background-color: #f1f1f1;
}
.messagesPage .msgSec_list .search .form-group {
  position: relative;
}
.messagesPage .msgSec_list .search .form-group .searchIcon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 11px;
  color: #acaaaa;
  pointer-events: none;
}
.messagesPage .msgSec_list .search .form-group .searchIcon svg {
  width: 16px;
}
.messagesPage .msgSec_list ul {
  max-height: calc(100vh - 270px);
  overflow-y: auto;
}
.messagesPage .msgSec_list .user {
  padding: 0 10px;
}
.messagesPage .msgSec_list .user.active a {
  background-color: #e6ebf5;
  border-radius: 5px;
}
.messagesPage .msgSec_list .user a {
  padding: 12px 5px;
  transition: all 0.3s;
}
.messagesPage .msgSec_list .user a:hover {
  background-color: #e6ebf5;
  border-radius: 5px;
}
.messagesPage .msgSec_list .user:not(:last-child) {
  margin-bottom: 1px;
}
.messagesPage .msgSec_list .userImg {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  position: relative;
}
.messagesPage .msgSec_list .userImg img {
  width: 100%;
  height: 100%;
}
.messagesPage .msgSec_list .userCaption {
  padding-left: 12px;
  flex: 1;
}
.messagesPage .msgSec_list .userCaption h6 {
  font-size: 15px;
  margin-bottom: 3px;
  flex: 1;
}
.messagesPage .msgSec_list .userCaption p {
  color: #72848c;
  font-size: 12px;
}
.messagesPage .msgSec_list .userCaption span {
  font-size: 12px;
  color: #72848c;
}
.messagesPage .msgSec_list .userCaption .badge {
  width: 18px;
  height: 18px;
  background-color: #ff1563 !important;
  border-radius: 2px;
  color: #fff;
  font-size: 10px;
}
.messagesPage .msgSec_list .user .status-indicator {
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid white;
}
.messagesPage .msgSec_list .user .status-indicator.online {
  background-color: #28a745;
}
.messagesPage .msgSec_list .user .status-indicator.offline {
  background-color: #6c757d;
}
@media (max-width: 1599px) {
  .messagesPage .msgSec_list .user {
    padding: 0 5px;
  }
  .messagesPage .msgSec_list .userImg {
    width: 40px;
    height: 40px;
  }
  .messagesPage .msgSec_list ul {
    max-height: calc(100vh - 275px);
  }
}
@media (max-width: 991.98px) {
  .messagesPage .msgSec_list .search {
    padding: 12px;
  }
  .messagesPage .msgSec_list .search .form-group::before {
    left: 12px;
  }
  .messagesPage .msgSec_list .search input {
    padding-left: 36px;
  }
  .messagesPage .msgSec_list .userImg {
    width: 35px;
    height: 35px;
  }
  .messagesPage .msgSec_list .userCaption h6 {
    font-size: 13px;
  }
  .messagesPage .msgSec_list .userCaption span {
    font-size: 11px;
  }
  .messagesPage .msgSec_list .userCaption .badge {
    width: 16px;
    height: 16px;
    font-size: 9px;
  }
  .messagesPage .msgSec_list .user {
    padding: 0 12px;
  }
  .messagesPage .msgSec_list .user a {
    padding: 12px 0;
  }
}
@media (max-width: 767.98px) {
  .messagesPage .msgSec_list {
    border-radius: 0;
  }
  .messagesPage .msgSec_list ul {
    max-height: calc(100vh - 70px);
  }
  .messagesPage .msgSec_list .search .closeIcon {
    display: block;
  }
  .messagesPage .msgSec_list .search .form-group {
    width: 80%;
  }
  .messagesPage .msgSec_list .search .form-group .searchIcon svg {
    width: 20px;
  }
}
.messagesPage .msgSec_right {
  background-color: #eee;
  overflow: hidden;
  border-radius: 0 10px 10px 0;
}
.messagesPage .msgSec_right_header {
  padding: 15px;
  background-color: #fff;
  box-shadow: 0 4px 8px 0px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}
.messagesPage .msgSec_right_header .userProfile img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.messagesPage .msgSec_right_header .userProfile_caption {
  margin-left: 12px;
}
.messagesPage .msgSec_right_header .userProfile_caption h5 {
  font-size: 15px;
}
.messagesPage .msgSec_right_header .userProfile_caption p {
  font-size: 12px;
  color: rgba(0, 35, 51, 0.5);
}
.messagesPage .msgSec_right_header .userProfile .dropdown .profilePage_moreBtn {
  width: auto;
  height: auto;
  line-height: 20px;
  background-color: transparent;
}
.messagesPage .msgSec_right_header .userProfile .dropdown-menu {
  border-radius: 10px 0px 10px 10px;
  min-width: 120px;
  padding: 20px;
}
.messagesPage .msgSec_right_header .userProfile .dropdown li:not(:last-child) {
  margin-bottom: 5px;
}
.messagesPage .msgSec_right_header .userProfile .dropdown-item {
  color: #002333;
  padding: 0;
  font-size: 14px;
  line-height: 25px;
  display: block;
}
.messagesPage .msgSec_right_header .userProfile .dropdown-item:focus, .messagesPage .msgSec_right_header .userProfile .dropdown-item:hover {
  color: #ff1563;
  background-color: transparent;
}
.messagesPage .msgSec_right_header .callAction li + li {
  margin-left: 10px;
}
.messagesPage .msgSec_right_header .callAction .btnIcon {
  box-shadow: none;
  border: 0;
  color: #a4a5a5;
  background: transparent;
  padding: 0;
}
.messagesPage .msgSec_right_header .callAction .btnIcon:hover {
  color: #ff1563;
}
.messagesPage .msgSec_right_middle {
  padding: 0 15px;
  padding-right: 0;
  height: calc(100vh - 370px);
}
.messagesPage .msgSec_right_middle .msg_wrap {
  overflow-y: auto;
  max-height: 100%;
  padding-right: 5px;
}
.messagesPage .msgSec_right_middle .rcv-msg .chatBox,
.messagesPage .msgSec_right_middle .send-msg .chatBox {
  padding: 10px;
  color: #002333;
  max-width: 395px;
  display: inline-block;
}
.messagesPage .msgSec_right_middle .rcv-msg,
.messagesPage .msgSec_right_middle .send-msg {
  margin-bottom: 20px;
}
.messagesPage .msgSec_right_middle .rcv-msg .chatBox {
  background-color: #fff;
  border-radius: 0 5px 5px 5px;
}
.messagesPage .msgSec_right_middle .send-msg {
  text-align: right;
}
.messagesPage .msgSec_right_middle .send-msg .chatBox {
  background: #ff1563;
  border-radius: 5px 0 5px 5px;
  color: #fff;
}
.messagesPage .msgSec_right_middle .nametx {
  font-size: 13px;
  margin-bottom: 5px;
  color: #72848c;
  display: block;
}
.messagesPage .msgSec_right_middle .time {
  font-size: 12px;
  margin-top: 12px;
  color: #72848c;
  display: block;
}
.messagesPage .msgSec_right_middle .timeRow {
  text-align: center;
  position: relative;
  margin: 40px 0;
}
.messagesPage .msgSec_right_middle .timeRow::after {
  content: "";
  background-color: rgba(114, 132, 140, 0.2);
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.messagesPage .msgSec_right_middle .timeRow span {
  color: rgba(114, 132, 140, 0.5);
  display: inline-block;
  background-color: #f9f9f9;
  padding: 3px 15px;
  z-index: 1;
  position: relative;
  font-size: 14px;
}
.messagesPage .msgSec_right_middle .imgUpload {
  background-color: #fff;
  padding: 5px;
  border-radius: 5px;
  max-width: 200px;
  display: inline-block;
}
.messagesPage .msgSec_right_middle .fileUpload {
  padding: 10px;
  border-radius: 5px;
  width: 300px;
  border: 1px solid #f1f1f1;
  display: flex;
  align-items: center;
  flex-direction: row;
}
.messagesPage .msgSec_right_middle .fileUpload_icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='628.027' height='786.012' viewBox='0 0 628.027 786.012'%3E%3Cdefs%3E%3ClinearGradient id='linear-gradient' x1='0.5' x2='0.5' y2='1' gradientUnits='objectBoundingBox'%3E%3Cstop offset='0' stop-color='%238a97ac'/%3E%3Cstop offset='1' stop-color='%235d6c83'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Group_5' data-name='Group 5' transform='translate(-646 -92.988)'%3E%3Cpath id='Union_2' data-name='Union 2' d='M40,786A40,40,0,0,1,0,746V40A40,40,0,0,1,40,0H501V103h29v24h98V746a40,40,0,0,1-40,40Z' transform='translate(646 93)' fill='url(%23linear-gradient)'/%3E%3Cpath id='Intersection_2' data-name='Intersection 2' d='M.409,162.042l.058-109.9c31.605,29.739,125.37,125.377,125.37,125.377l-109.976.049A20.025,20.025,0,0,1,.409,162.042Z' transform='translate(1147 42)' fill='%23bec8d9' stroke='%23bec8d9' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E%0A");
  width: 35px;
  height: 45px;
  background-size: 35px;
  margin-right: 5px;
  font-size: 12px;
  flex-shrink: 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
}
.messagesPage .msgSec_right_middle .fileUpload a {
  color: var(--bs-gray-900);
  font-size: 14px;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.messagesPage .msgSec_right_middle .fileUpload a:hover {
  color: var(--bs-primary);
}
.messagesPage .msgSec_right_middle .send-msg .fileUpload {
  margin-left: auto;
}
.messagesPage .msgSec_right_bottom {
  position: relative;
  z-index: 1;
  padding: 15px;
  background-color: #fff;
}
.messagesPage .msgSec_right_bottom form {
  margin-bottom: 0;
}
.messagesPage .msgSec_right_bottom input {
  height: 50px;
  padding: 10px;
  padding-right: 100px;
  border: 1px solid transparent;
  border-radius: 5px;
  background: #f1f1f1;
  font-size: 15px;
  color: #555252;
}
.messagesPage .msgSec_right_bottom input:focus {
  box-shadow: none;
}
.messagesPage .msgSec_right_bottom ul {
  display: flex;
  align-items: center;
}
.messagesPage .msgSec_right_bottom li {
  margin-right: 0;
  line-height: 20px;
}
.messagesPage .msgSec_right_bottom li + li {
  margin-left: 20px;
}
.messagesPage .msgSec_right_bottom li a, .messagesPage .msgSec_right_bottom li .btnIcon {
  box-shadow: none;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  color: rgba(114, 132, 140, 0.5);
  padding: 0;
}
.messagesPage .msgSec_right_bottom li a:hover, .messagesPage .msgSec_right_bottom li .btnIcon:hover {
  color: #ff1563;
}
.messagesPage .msgSec_right_bottom li .btn-primary {
  width: 50px;
  height: 45px;
  padding: 0;
}
.messagesPage .msgSec_right_bottom .gifBox .dropdown-menu {
  width: 260px;
  padding: 12px;
}
.messagesPage .msgSec_right_bottom .gifBox_search {
  margin-bottom: 5px;
}
.messagesPage .msgSec_right_bottom .gifBox_search .form-control {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 6px 8px;
  height: 35px;
  font-size: 13px;
}
.messagesPage .msgSec_right_bottom .gifBox a {
  display: block;
  width: 100%;
  height: 100%;
}
.messagesPage .msgSec_right_bottom .gifBox a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.messagesPage .msgSec_right_bottom .filePreview {
  padding: 10px;
}
.messagesPage .msgSec_right_bottom .filePreview_item {
  width: 60px;
  height: 60px;
  margin-right: 5px;
  border: 1px solid #f1f1f1;
  padding: 5px;
  position: relative;
  background: #fdfafa;
  position: relative;
  border-radius: 5px;
}
.messagesPage .msgSec_right_bottom .filePreview_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.messagesPage .msgSec_right_bottom .filePreview_item .close {
  padding: 0;
  width: 18px;
  height: 18px;
  justify-content: center;
  display: flex;
  align-items: center;
  top: -10px;
  right: -8px;
  border-radius: 50%;
  color: var(--bs-white);
  background-color: var(--bs-primary);
  border: 0;
  position: absolute;
  z-index: 1;
  font-size: 13px;
  transition: all 0.5s;
}
.messagesPage .msgSec_right_bottom .filePreview_item .close:hover {
  background-color: #fd5e93;
}
.messagesPage .msgSec_right_bottom .filePreview-file {
  width: 200px;
  display: flex;
  align-items: center;
  padding: 10px;
}
.messagesPage .msgSec_right_bottom .filePreview-file-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='628.027' height='786.012' viewBox='0 0 628.027 786.012'%3E%3Cdefs%3E%3ClinearGradient id='linear-gradient' x1='0.5' x2='0.5' y2='1' gradientUnits='objectBoundingBox'%3E%3Cstop offset='0' stop-color='%238a97ac'/%3E%3Cstop offset='1' stop-color='%235d6c83'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Group_5' data-name='Group 5' transform='translate(-646 -92.988)'%3E%3Cpath id='Union_2' data-name='Union 2' d='M40,786A40,40,0,0,1,0,746V40A40,40,0,0,1,40,0H501V103h29v24h98V746a40,40,0,0,1-40,40Z' transform='translate(646 93)' fill='url(%23linear-gradient)'/%3E%3Cpath id='Intersection_2' data-name='Intersection 2' d='M.409,162.042l.058-109.9c31.605,29.739,125.37,125.377,125.37,125.377l-109.976.049A20.025,20.025,0,0,1,.409,162.042Z' transform='translate(1147 42)' fill='%23bec8d9' stroke='%23bec8d9' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E%0A");
  width: 25px;
  height: 35px;
  background-size: 25px;
  margin-right: 5px;
  font-size: 10px;
  flex-shrink: 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
}
.messagesPage .msgSec_right_bottom .filePreview-file-txt {
  font-size: 12px;
  color: #000;
  margin-left: 5px;
}
@media (max-width: 1599px) {
  .messagesPage .msgSec_right_header {
    padding: 15px;
  }
  .messagesPage .msgSec_right_header .userProfile img {
    width: 40px;
    height: 40px;
  }
  .messagesPage .msgSec_right_middle {
    padding: 15px 15px 0;
  }
  .messagesPage .msgSec_right_middle .rcv-msg .chatBox,
  .messagesPage .msgSec_right_middle .send-msg .chatBox {
    font-size: 16px;
    padding: 10px;
  }
}
@media (max-width: 991.98px) {
  .messagesPage .msgSec_right_header {
    padding: 12px;
  }
  .messagesPage .msgSec_right_header .userProfile img {
    width: 35px;
    height: 35px;
  }
  .messagesPage .msgSec_right_header .userProfile_caption h5 {
    font-size: 13px;
  }
  .messagesPage .msgSec_right_header .dropdown-menu {
    min-width: 110px;
    padding: 12px;
  }
  .messagesPage .msgSec_right_header .dropdown-item {
    font-size: 13px;
    line-height: 21px;
  }
  .messagesPage .msgSec_right_header .dropdown .profilePage_moreBtn {
    font-size: 15px;
    margin-left: 5px;
  }
  .messagesPage .msgSec_right_header .dropdown .userBtn,
  .messagesPage .msgSec_right_header .dropdown .profilePage_moreBtn {
    width: 38px;
    height: 38px;
    text-align: center;
    background: #f3f3f3;
    line-height: 41px;
    display: inline-block;
    border-radius: 50%;
  }
  .messagesPage .msgSec_right_header .dropdown .userBtn {
    background: #ff1563;
    color: #fff;
    font-size: 18px;
  }
  .messagesPage .msgSec_right_header .callAction li a svg {
    height: 20px;
  }
  .messagesPage .msgSec_right_middle {
    padding: 12px 12px 0;
    height: calc(100vh - 250px);
  }
  .messagesPage .msgSec_right_middle .rcv-msg,
  .messagesPage .msgSec_right_middle .send-msg {
    margin-bottom: 12px;
  }
  .messagesPage .msgSec_right_middle .rcv-msg .chatBox,
  .messagesPage .msgSec_right_middle .send-msg .chatBox {
    font-size: 13px;
    padding: 8px;
  }
  .messagesPage .msgSec_right_middle .time {
    font-size: 11px;
    margin-top: 8px;
  }
  .messagesPage .msgSec_right_middle .timeRow {
    margin: 20px 0;
  }
  .messagesPage .msgSec_right_middle .timeRow span {
    padding: 3px 15px;
  }
  .messagesPage .msgSec_right_middle .send-msg {
    margin-bottom: 12px;
  }
  .messagesPage .msgSec_right_bottom input {
    padding: 12px 12px 12px;
    padding-right: 140px;
    height: 50px;
  }
  .messagesPage .msgSec_right_bottom li a {
    font-size: 16px;
  }
  .messagesPage .msgSec_right_bottom li + li {
    margin-left: 12px;
  }
  .messagesPage .msgSec_right_bottom li .btn-danger {
    font-size: 16px;
    width: 50px;
    height: 50px;
  }
  .messagesPage .msgSec_right_bottom li .btn-primary {
    width: 45px;
    height: 45px;
  }
  .messagesPage .msgSec_right_bottom li .btn-primary svg {
    height: 20px;
  }
}
@media (max-width: 767.98px) {
  .messagesPage .msgSec_right {
    border-radius: 10px 10px 10px 10px;
  }
}
@media (max-width: 575.98px) {
  .messagesPage .msgSec_right_header .dropdown .userBtn,
  .messagesPage .msgSec_right_header .dropdown .profilePage_moreBtn {
    width: 32px;
    height: 32px;
    line-height: 36px;
    display: inline-block;
    border-radius: 50%;
  }
  .messagesPage .msgSec_right_header .dropdown .userBtn {
    background: #ff1563;
    color: #fff;
    font-size: 18px;
  }
}
.messagesPage .msgSec .emojiPicker {
  left: auto !important;
  top: -178px !important;
  right: 10% !important;
}
.messagesPage .msgSec .emojiPicker .shortcode {
  display: none !important;
}

.dark .messagesPage .msgSec_right_header .userProfile_caption p {
  color: #72848c;
}
.dark .messagesPage .msgSec_right_header, .dark .messagesPage .msgSec_right_bottom {
  background-color: #222738;
}
.dark .packagePage .detail-item {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}
.dark .messagesPage .msgSec_list .search input, .dark .messagesPage .msgSec_right_bottom input,
.dark .messagesPage .msgSec_right_middle .rcv-msg .chatBox, .dark .messagesPage .msgSec_right_middle .timeRow span {
  background-color: #2d3242;
}
.dark .messagesPage .msgSec_right_middle {
  background-color: #30384f;
}
.dark .messagesPage .msgSec .listing {
  border-right-color: #2d3242;
}
.dark .messagesPage .msgSec_right_middle .rcv-msg .chatBox {
  color: #8a92a6;
}

.callSection .detailInfo {
  border-radius: 10px 10px 0 0;
  border: 2px solid #f5f5f5;
}
.callSection .detailInfo_content {
  padding-top: 65px;
}
.callSection .detailInfoBox {
  position: relative;
}
.callSection .detailInfoBox_title {
  font-size: 20px;
  color: #fff;
  margin-top: 30px;
}
.callSection .detailInfoBox_txt {
  position: absolute;
  top: 15px;
  z-index: 9;
  right: 20px;
}
.callSection .detailInfoBox_txt h2 {
  color: #A3A3A3;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 0px;
}
.callSection .detailInfoBox_txt h2 span {
  color: #0E0E0E;
}
.callSection .detailInfoBox_txt .time {
  color: #ffffff;
  font-size: 18px;
}
.callSection .detailInfoBox_txt .time svg {
  margin-right: 6px;
}
.callSection .detailInfoBox_video {
  position: relative;
  background-color: #343434;
  border-radius: 5px;
  height: calc(100vh - 220px);
}
.callSection .detailInfoBox_video .audioBox {
  position: relative;
  min-height: 300px;
  height: 100%;
}
.callSection .detailInfoBox_video .audioBox_img {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border: 3px solid #fff;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.callSection .detailInfoBox_video .audioBox_img:after, .callSection .detailInfoBox_video .audioBox_img:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 209, 56, 0.22);
}
.callSection .detailInfoBox_video .audioBox_img:before {
  animation: callwave 2s linear infinite;
}
.callSection .detailInfoBox_video .audioBox_img:after {
  animation: callwave 2s linear 1s infinite;
}
.callSection .detailInfoBox_video .audioBox_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.callSection .detailInfoBox_video .fullView {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  line-height: 36px;
  border-radius: 50%;
  z-index: 2;
  color: #707070;
  background-color: #fff;
  text-align: center;
  font-size: 14px;
}
.callSection .detailInfoBox_video .caller {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 5px;
}
.callSection .detailInfoBox_video .caller::before, .callSection .detailInfoBox_video .caller::after {
  content: "";
  position: absolute;
  width: 100%;
  z-index: 1;
  left: 0;
}
.callSection .detailInfoBox_video .caller::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
  height: 20%;
}
.callSection .detailInfoBox_video .caller::after {
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.58) 100%);
  height: 30%;
}
.callSection .detailInfoBox_video .caller video {
  width: 100%;
  height: 100%;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}
.callSection .detailInfoBox_video .receiver {
  border-radius: 3px;
  width: 200px;
  height: 180px;
  overflow: hidden;
  right: 20px;
  bottom: 20px;
  position: absolute;
  z-index: 2;
  border: 1px solid #484646;
}
.callSection .detailInfoBox_icons {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 20px;
  z-index: 1;
}
.callSection .detailInfoBox_icons a {
  width: 38px;
  color: #fff;
  display: inline-block;
  height: 38px;
  line-height: 40px;
  font-size: 18px;
  border-radius: 50%;
}
.callSection .detailInfoBox_icons a:not(:last-child) {
  margin-right: 12px;
}
.callSection .detailInfoBox_icons a.voiceIco {
  background-color: #52bb07;
}
.callSection .detailInfoBox_icons a.videoIco {
  background-color: #0776c7;
}
.callSection .detailInfoBox_icons a.callIco {
  background-color: #c03221;
}
.callSection .detailInfoBox_icons a.moreIco {
  background: rgb(210, 210, 210);
}
.callSection .detailInfoBox_icons a.mute {
  background: gray !important;
}
.callSection .detailInfoBox_icons a.mute::after {
  content: "";
  height: 30px;
  width: 2px;
  background: #fff;
  position: absolute;
  z-index: 9;
  transform: rotate(45deg);
}
.callSection .detailInfoBox_chat {
  padding: 30px 25px;
  border-radius: 5px;
  background-color: #FCF7F2;
}
.callSection .detailInfoBox_chat .media {
  margin-bottom: 24px;
}
.callSection .detailInfoBox_chat .media-img {
  width: 37px;
  height: 37px;
  border: 2px solid #fff;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}
.callSection .detailInfoBox_chat .media-body .msgtxt {
  color: #3E3E3E;
  font-size: 16px;
  margin-bottom: 8px;
}
.callSection .detailInfoBox_chat .media-body .msgtxt span {
  padding: 10px 14px;
  display: inline-block;
}
.callSection .detailInfoBox_chat .media-body .msgtxt img {
  width: 100%;
}
.callSection .detailInfoBox_chat .media-body .msgtxt video {
  width: 100%;
}
.callSection .detailInfoBox_chat .media-body .timeTxt {
  display: block;
  color: #A3A3A3;
}
.callSection .detailInfoBox_chat .receiveChat .media-img {
  margin-right: 13px;
}
.callSection .detailInfoBox_chat .receiveChat .media-body {
  text-align: left;
}
.callSection .detailInfoBox_chat .receiveChat .media-body .msgtxt span {
  background-color: #fff;
  border-radius: 0px 5px 5px 5px;
}
.callSection .detailInfoBox_chat .sendChat .media-img {
  margin-left: 13px;
  border-color: #FFD8BB;
}
.callSection .detailInfoBox_chat .sendChat .media-body {
  text-align: right;
}
.callSection .detailInfoBox_chat .sendChat .media-body .msgtxt span {
  background-color: #FFD8BB;
  border-radius: 5px 0px 5px 5px;
}
.callSection .detailInfoBox_chat_list {
  max-height: 400px;
  overflow-x: auto;
}
.callSection .detailInfoBox_chat_inputBox {
  position: relative;
  overflow: hidden;
  margin-top: 70px;
  border-radius: 48px;
  background-color: #fff;
}
.callSection .detailInfoBox_chat_inputBox .msgType {
  padding: 5px 140px 5px 25px;
  height: 58px;
  border: none;
  width: 100%;
  font-size: 16px;
  line-height: 20px;
  color: #4B4B4B;
}
.callSection .detailInfoBox_chat_inputBox .sendBtn {
  color: #fff;
  width: 39px;
  height: 39px;
  line-height: 44px;
  font-size: 16px;
  text-align: center;
  border-radius: 50%;
  background-color: #FF604E;
  display: inline-block;
  position: absolute;
  top: 11px;
  right: 11px;
}
.callSection .detailInfoBox_chat_inputBox .fileBtn {
  color: #A3A3A3;
  font-size: 22px;
  position: absolute;
  top: 15px;
  right: 60px;
}
.callSection .detailInfoBox_chat_inputBox .emojiBtn {
  color: #A3A3A3;
  font-size: 24px;
  position: absolute;
  top: 15px;
  right: 92px;
}
@media (max-width: 1599px) {
  .callSection .detailInfo_content {
    padding-top: 30px;
  }
  .callSection .detailInfoBox_txt h2,
  .callSection .detailInfoBox_txt .time {
    font-size: 18px;
  }
  .callSection .detailInfoBox_txt .time img {
    width: 20px;
  }
  .callSection .detailInfoBox_video .audioBox_img {
    width: 80px;
    height: 80px;
  }
  .callSection .nav-item {
    margin-right: 30px;
  }
  .callSection .nav-link {
    font-size: 18px;
  }
  .callSection .aboutAdvisor_title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .callSection .aboutAdvisor p:not(:last-child) {
    margin-bottom: 20px;
  }
  .callSection .specialities .row {
    margin: 0 -10px;
  }
  .callSection .specialities .row [class*=col-] {
    padding: 0 10px;
  }
  .callSection .specialities_card {
    padding: 20px;
  }
  .callSection .specialities_card img {
    margin-right: 20px;
  }
  .callSection .specialities .angelInsights img {
    width: 40px;
  }
  .callSection .specialities .astrology img,
  .callSection .specialities .loveReading img {
    width: 45px;
  }
  .callSection .reviewRatings .totalRating {
    font-size: 18px;
  }
  .callSection .reviewRatings .ratingBox {
    padding: 20px;
  }
  .callSection .reviewRatings .ratingBox_left h3 {
    font-size: 24px;
  }
  .callSection .reviewRatings .ratingBox_left p {
    margin-top: 5px;
  }
  .callSection .reviewRatings .ratingBox_right .btn {
    font-size: 12px;
    height: 40px;
  }
  .callSection .reviewRatings .reviewBoxCol_header-pic {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 1199.98px) {
  .callSection .row {
    margin: 0 -10px;
  }
  .callSection .row [class*=col-] {
    padding: 0 10px;
  }
  .callSection .detailInfoBox_video .audioBox_img {
    width: 65px;
    height: 65px;
  }
  .callSection .detailInfoBox_chat {
    padding: 20px;
  }
  .callSection .detailInfoBox_chat .media-body .msgtxt {
    font-size: 14px;
  }
  .callSection .detailInfoBox_chat .media-body .msgtxt span {
    padding: 6px 12px;
  }
  .callSection .detailInfoBox_chat .media-body .timeTxt {
    font-size: 12px;
  }
  .callSection .detailInfoBox_chat_inputBox {
    margin-top: 40px;
  }
  .callSection .detailInfoBox_chat_inputBox .msgType {
    padding: 5px 120px 5px 20px;
    height: 50px;
  }
  .callSection .detailInfoBox_chat_inputBox .emojiBtn {
    font-size: 20px;
    top: 12px;
    right: 82px;
  }
  .callSection .detailInfoBox_chat_inputBox .fileBtn {
    font-size: 17px;
    top: 13px;
    right: 52px;
  }
  .callSection .detailInfoBox_chat_inputBox .sendBtn {
    width: 28px;
    height: 28px;
    line-height: 32px;
    font-size: 12px;
  }
  .callSection .specialities_card {
    padding: 15px;
  }
  .callSection .specialities_card img {
    margin-right: 15px;
  }
  .callSection .specialities .angelInsights img {
    width: 30px;
  }
  .callSection .specialities .astrology img,
  .callSection .specialities .loveReading img {
    width: 35px;
  }
  .callSection .reviewRatings .ratingBox_center::after {
    display: none;
  }
  .callSection .reviewRatings .ratingBox_center > div {
    justify-content: start !important;
    padding-left: 20px;
  }
  .callSection .reviewRatings .ratingBox_center .progress {
    max-width: 100%;
  }
  .callSection .reviewRatings .ratingBox_right {
    margin-top: 25px;
    max-width: 400px;
    margin: 25px auto 0;
  }
  .callSection .reviewRatings .ratingBox_right .btn {
    width: 100%;
  }
  .callSection .reviewRatings .reviewBoxCol_header .dropdown-menu {
    padding: 15px;
  }
}
@media (max-width: 991.98px) {
  .callSection .detailInfo_content {
    padding-top: 20px;
  }
  .callSection .profileSidebar {
    position: fixed;
    left: -120%;
    width: 290px;
    top: 0;
    background: #fff;
    z-index: 1038;
    border-radius: 0;
    height: 100vh;
    overflow: auto;
    transition: all 0.3s;
  }
  .callSection .profileSidebar.active {
    left: 0;
  }
  .callSection .nav-item {
    margin-right: 20px;
  }
  .callSection .nav-link {
    font-size: 16px;
  }
  .callSection .aboutAdvisor_title {
    font-size: 16px;
  }
  .callSection .aboutAdvisor p {
    font-size: 14px;
  }
  .callSection .aboutAdvisor p:not(:last-child) {
    margin-bottom: 10px;
  }
  .callSection .specialities .row {
    margin: 0 -7px;
  }
  .callSection .specialities .row [class*=col-] {
    padding: 0 7px;
  }
  .callSection .specialities_card {
    padding: 15px;
  }
  .callSection .specialities_card img {
    margin-right: 15px;
  }
  .callSection .reviewRatings .totalRating {
    font-size: 14px;
  }
  .callSection .reviewRatings .ratingBox {
    padding: 15px;
  }
  .callSection .reviewRatings .ratingBox_left h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .callSection .reviewRatings .ratingBox_right {
    max-width: 320px;
  }
  .callSection .reviewRatings .ratingBox_right p {
    padding-bottom: 10px;
  }
  .callSection .reviewRatings .ratingBox_right .btn {
    font-size: 12px;
    height: 40px;
  }
  .callSection .reviewRatings .reviewBoxCol_header-pic {
    width: 45px;
    height: 45px;
  }
  .callSection .detailInfoBox_title {
    font-size: 16px;
  }
  .callSection .detailInfoBox .audioBox p {
    font-size: 14px;
  }
  .callSection .detailInfoBox_chat {
    padding: 15px;
  }
  .callSection .detailInfoBox_video .fullView {
    width: 28px;
    height: 28px;
    line-height: 31px;
    font-size: 12px;
  }
  .callSection .detailInfoBox_txt h2,
  .callSection .detailInfoBox_txt .time {
    font-size: 16px;
  }
  .callSection .detailInfoBox_txt .time img {
    width: 18px;
  }
  .callSection .detailInfoBox_icons {
    bottom: 10px;
  }
  .callSection .detailInfoBox_icons a {
    width: 34px;
    height: 34px;
    line-height: 37px;
    font-size: 15px;
  }
  .callSection .detailInfoBox_icons a:not(:last-child) {
    margin-right: 7px;
  }
}
@media (max-width: 767.98px) {
  .callSection .reviewRatings .ratingBox_center::before {
    display: none;
  }
  .callSection .reviewRatings .ratingBox_center > div {
    padding-left: 0;
  }
  .callSection .detailInfoBox_txt .time svg {
    width: 20px;
  }
}
@media (max-width: 575.98px) {
  .callSection .nav-item {
    margin-right: 15px;
  }
  .callSection .detailInfo .nav.nav-tabs {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    white-space: nowrap;
    padding-bottom: 8px;
  }
  .callSection .detailInfoBox_video video {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .callSection .detailInfoBox_video .receiver {
    width: 80px;
    height: 70px;
    right: 10px;
    bottom: 70px;
  }
  .callSection .detailInfoBox_txt {
    flex-wrap: wrap;
  }
  .callSection .detailInfoBox_txt h2,
  .callSection .detailInfoBox_txt .time {
    font-size: 14px;
  }
  .callSection .detailInfoBox_txt .time img {
    width: 16px;
  }
  .callSection .detailInfoBox_chat_inputBox {
    margin-top: 20px;
  }
  .callSection .detailInfoBox_chat_inputBox .msgType {
    padding: 5px 98px 5px 20px;
    height: 45px;
    font-size: 14px;
  }
  .callSection .detailInfoBox_chat_inputBox .emojiBtn {
    font-size: 16px;
    top: 14px;
    right: 68px;
  }
  .callSection .detailInfoBox_chat_inputBox .fileBtn {
    font-size: 14px;
    top: 15px;
    right: 43px;
  }
  .callSection .detailInfoBox_chat_inputBox .sendBtn {
    width: 24px;
    height: 24px;
    line-height: 29px;
    font-size: 10px;
  }
  .callSection .detailInfoBox_chat .receiveChat .media-img {
    width: 34px;
    height: 34px;
    margin-right: 10px;
  }
  .callSection .detailInfoBox_chat .media-body .msgtxt {
    font-size: 13px;
  }
  .callSection .detailInfoBox_chat .media-body .msgtxt span {
    padding: 3px 6px;
  }
  .callSection .reviewRatings .reviewBox {
    padding-top: 20px;
  }
  .callSection .reviewRatings .totalRating {
    font-size: 16px;
  }
  .callSection .reviewRatings .icon-star_fill {
    font-size: 12px;
  }
  .callSection .reviewRatings .ratingBox {
    padding: 15px;
  }
  .callSection .reviewRatings .ratingBox_left {
    margin-bottom: 10px;
  }
  .callSection .reviewRatings .ratingBox_left h3 {
    font-size: 20px;
  }
  .callSection .reviewRatings .ratingBox_right {
    margin: 15px auto 0;
  }
  .callSection .reviewRatings .ratingBox_center::before, .callSection .reviewRatings .ratingBox_center::after {
    display: none;
  }
  .callSection .reviewRatings .ratingBox_center > div {
    padding-left: 0;
  }
  .callSection .reviewRatings .ratingBox_center p {
    min-width: 35px;
  }
  .callSection .reviewRatings .reviewBoxCol_header-pic {
    margin-right: 12px;
    width: 35px;
    height: 35px;
  }
  .callSection .reviewRatings .reviewBoxCol_header-title {
    font-size: 14px;
    margin-bottom: 3px;
    max-width: 225px;
  }
  .callSection .reviewRatings .reviewBoxCol_header-reviewDate {
    font-size: 12px;
  }
}
@media (max-width: 420px) {
  .callSection .reviewRatings .reviewBoxCol_header-title {
    max-width: 135px;
  }
}
@media screen and (max-width: 575px) and (orientation: landscape) {
  .callSection .detailInfoBox_video {
    min-height: 100vh;
  }
  .callSection .detailInfoBox_video .receiver {
    bottom: 20px;
  }
}

/*keyframes-css*/
@keyframes callwave {
  0% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.75);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
.dark .callSection .detailInfo,
.dark .callSection .detailInfoBox_video .receiver {
  border-color: #30384f;
}
.dark .callSection .detailInfoBox_video {
  background-color: #2d3242;
}

@media (max-width: 1599px) {
  .dashboardPage .card-slide {
    height: 100%;
  }
  .dashboardPage .card-slide .card-body {
    padding: 15px;
  }
  .dashboardPage .card-slide .card-body .counter {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .dashboardPage .card {
    height: 100%;
  }
}
