:root {
  --cus-primary: #ed3570;
  --cus-primary-bg: #ed3570;
  --cus-primary-bg: linear-gradient(
    260deg,
    rgba(246, 138, 36, 1) 0%,
    rgba(241, 96, 82, 1) 60%,
    rgba(237, 53, 112, 1) 100%
  );
}

#chatbox {
  width: 280px;
  background: #fff;
  border-radius: 6px;
  height: 900px;
  position: absolute;
  right: 0%;
}

#friendslist {
  position: absolute;
  top: 0;
  left: 0;
  width: 290px;
  height: 484px;
}

.friend {
  height: 70px;
  border-bottom: 1px solid #e7ebee;
  position: relative;
  width: 275px;
}

.friend:hover {
  background: #f1f4f6;
  cursor: pointer;
}

.friend img {
  width: 20px;
  border-radius: 50%;
  margin: 15px;
  float: left;
}

.floatingImg {
  width: 40px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 12px;
  border: 3px solid #fff;
}

.friend p {
  padding: 15px 0 0 0;
  float: left;
  width: 220px;
}

.friend p strong {
  font-weight: 600;
  font-size: 15px;
  color: #597a96;
}

.friend p span {
  font-size: 13px;
  font-weight: 400;
  color: #aab8c2;
}

.friend .status {
  background: #26c281;
  border-radius: 50%;
  width: 9px;
  height: 9px;
  position: absolute;
  top: 24px;
  right: 80px;
}

/* Chrome, Safari, Edge, Opera */
input.cus-text-number-field::-webkit-outer-spin-button,
input.cus-text-number-field::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

#cus-user-login-modal .modal-content {
  border-radius: 25px;
  min-height: 250px;
  background-color: #fff;
  width: 75%;
  border: 2px solid #582f90;
}

#cus-user-login-form .input-group-prepend .input-group-text {
  font-weight: 600;
  font-size: 16px;
}

#cus-user-login-form .input-group-prepend .input-group-text img {
  width: 25px;
}

#login_mobile_no {
  min-height: 40px;
  font-size: 16px;
}

#cus-form-input-area {
  margin-bottom: 5px;
}

#cus-user-login-form-btn,
#cus-complete-profile-form-btn {
  color: #fff;
  font-weight: 600;
  background: #582f90;
  border-radius: 10px;
}

.cus-modal-form-label {
  font-weight: 600;
  font-size: 14px;
}

.cus-otp-field {
  display: inline-flex;
  justify-content: center;
  width: 50px;
  border-radius: 5px;
  text-align: center;
  font-weight: 800;
}

#cus-user-login-modal .modal-header h4 {
  font-size: 20px;
}

.header-widget li button img,
.header-widget li a img {
  width: auto;
  /* height: 100px; */
}

.friend .status.away {
  background: #ffce54;
}

.friend .status.inactive {
  background: #eaeef0;
}

#search {
  background: #e3e9ed
    url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/245657/search.png") -11px 0
    no-repeat;
  height: 60px;
  width: 290px;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0;
  margin: 0;
}

#searchfield {
  background: #e3e9ed;
  margin: 21px 0 0 55px;
  border: none;
  padding: 0;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400px;
  color: #8198ac;
}

#searchfield:focus {
  outline: 0;
}

#chatview {
  width: 290px;
  height: 500px;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  background: #fff;
}

#profile {
  height: 153px;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.p1 #profile {
  background: #fff
    url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/245657/timeline1.png") 0 0
    no-repeat;
}

#profile .avatar {
  width: 68px;
  border: 3px solid #fff;
  margin: 23px 0 0;
  border-radius: 50%;
}

#profile p {
  font-weight: 600;
  font-size: 15px;
  margin: 118px 0 -1px;
  opacity: 0;
  -webkit-transition: all 200ms cubic-bezier(0, 0.995, 0.99, 1);
  -moz-transition: all 200ms cubic-bezier(0, 0.995, 0.99, 1);
  -ms-transition: all 200ms cubic-bezier(0, 0.995, 0.99, 1);
  -o-transition: all 200ms cubic-bezier(0, 0.995, 0.99, 1);
  transition: all 200ms cubic-bezier(0, 0.995, 0.99, 1);
}

#profile p.animate {
  margin-top: 97px;
  opacity: 1;
  -webkit-transition: all 200ms cubic-bezier(0, 0.995, 0.99, 1);
  -moz-transition: all 200ms cubic-bezier(0, 0.995, 0.99, 1);
  -ms-transition: all 200ms cubic-bezier(0, 0.995, 0.99, 1);
  -o-transition: all 200ms cubic-bezier(0, 0.995, 0.99, 1);
  transition: all 200ms cubic-bezier(0, 0.995, 0.99, 1);
}

#profile span {
  font-weight: 400;
  font-size: 11px;
}

#chat-messages {
  opacity: 0;
  margin-top: 30px;
  width: 290px;
  height: 270px;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 20px;
  -webkit-transition: all 200ms cubic-bezier(0, 0.995, 0.99, 1);
  -moz-transition: all 200ms cubic-bezier(0, 0.995, 0.99, 1);
  -ms-transition: all 200ms cubic-bezier(0, 0.995, 0.99, 1);
  -o-transition: all 200ms cubic-bezier(0, 0.995, 0.99, 1);
  transition: all 200ms cubic-bezier(0, 0.995, 0.99, 1);
}

#chat-messages.animate {
  opacity: 1;
  margin-top: 0;
}

#chat-messages label {
  color: #aab8c2;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  margin: 15px 0;
  width: 290px;
  display: block;
}

#chat-messages div.message {
  padding: 0 0 30px 58px;
  clear: both;
  margin-bottom: 45px;
}

#chat-messages div.message.right {
  padding: 0 58px 30px 0;
  margin-right: -19px;
  margin-left: 19px;
}

#chat-messages .message img {
  float: left;
  margin-left: -38px;
  border-radius: 50%;
  width: 30px;
  margin-top: 12px;
}

#chat-messages div.message.right img {
  float: right;
  margin-left: 0;
  margin-right: -38px;
}

.message .bubble {
  background: #f0f4f7;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 13px;
  border-radius: 5px 5px 5px 0px;
  color: #8495a3;
  position: relative;
  float: left;
}

#chat-messages div.message.right .bubble {
  float: right;
  border-radius: 5px 5px 0px 5px;
}

.bubble .corner {
  background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/245657/bubble-corner.png")
    0 0 no-repeat;
  position: absolute;
  width: 7px;
  height: 7px;
  left: -5px;
  bottom: 0;
}

div.message.right .corner {
  background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/245657/bubble-cornerR.png")
    0 0 no-repeat;
  left: auto;
  right: -5px;
}

.bubble span {
  color: #aab8c2;
  font-size: 11px;
  position: absolute;
  right: 0;
  bottom: -22px;
}

#sendmessage {
  height: 60px;
  border-top: 1px solid #e7ebee;
  position: absolute;
  bottom: 0;
  right: 0px;
  width: 290px;
  background: #fff;
  padding-bottm: 50px;
}

#sendmessage input {
}

#sendmessage input {
  background: #fff;
  margin: 21px 0 0 21px;
  border: none;
  padding: 0;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400px;
  color: #aab8c2;
}

#sendmessage input:focus {
  outline: 0;
}

#sendmessage button {
  background: #fff
    url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/245657/send.png") 0 -40px no-repeat;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 15px;
  top: 23px;
  border: none;
}

#sendmessage button:hover {
  cursor: pointer;
  background-position: 0 0;
}

#sendmessage button:focus {
  outline: 0;
}

#close {
  position: absolute;
  top: 8px;
  opacity: 0.8;
  right: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

#close:hover {
  opacity: 1;
}

.cx,
.cy {
  background: #fff;
  position: absolute;
  width: 0px;
  top: 15px;
  right: 15px;
  height: 3px;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.cx.s1,
.cy.s1 {
  right: 0;
  width: 20px;
  -webkit-transition: all 100ms ease-out;
  -moz-transition: all 100ms ease-out;
  -ms-transition: all 100ms ease-out;
  -o-transition: all 100ms ease-out;
  transition: all 100ms ease-out;
}

.cy.s2 {
  -ms-transform: rotate(50deg);
  -webkit-transform: rotate(50deg);
  transform: rotate(50deg);
  -webkit-transition: all 100ms ease-out;
  -moz-transition: all 100ms ease-out;
  -ms-transition: all 100ms ease-out;
  -o-transition: all 100ms ease-out;
  transition: all 100ms ease-out;
}

.cy.s3 {
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 100ms ease-out;
  -moz-transition: all 100ms ease-out;
  -ms-transition: all 100ms ease-out;
  -o-transition: all 100ms ease-out;
  transition: all 100ms ease-out;
}

.cx.s1 {
  right: 0;
  width: 20px;
  -webkit-transition: all 100ms ease-out;
  -moz-transition: all 100ms ease-out;
  -ms-transition: all 100ms ease-out;
  -o-transition: all 100ms ease-out;
  transition: all 100ms ease-out;
}

.cx.s2 {
  -ms-transform: rotate(140deg);
  -webkit-transform: rotate(140deg);
  transform: rotate(140deg);
  -webkit-transition: all 100ms ease-out;
  -moz-transition: all 100ms ease-out;
  -ms-transition: all 100ease-out;
  -o-transition: all 100ms ease-out;
  transition: all 100ms ease-out;
}

.cx.s3 {
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transition: all 100ease-out;
  -moz-transition: all 100ms ease-out;
  -ms-transition: all 100ms ease-out;
  -o-transition: all 100ms ease-out;
  transition: all 100ms ease-out;
}

#chatview,
#sendmessage {
  overflow: hidden;
  border-radius: 6px;
}

.cus-website-primary-bg,
.cus-website-primary-btn {
  color: #ffffff !important;
  background: #c00202 !important;
  border: unset;
  border: 1px solid #ed3570 !important;
}

#cus-user-generic-header .cus-user-side-action-btn:hover {
  background: #c00202 !important;
}

.cus-website-primary-bg:hover,
.cus-website-primary-btn:hover {
  border: 1px solid #ed3570 !important;
  color: #ffffff !important;
  background: #c00202 !important;
}

.cus-website-primary-btn-highlight {
  border: 1px solid #ed3570 !important;
  color: #c00202 !important;
  background: #fff !important;
}

.cus-website-primary-btn-highlight:hover {
  background: #c00202 !important;
  background: #c00202 !important;
  color: #ffffff !important;
  border: unset;
  border: 1px solid #ed3570 !important;
}

/*
	Custom Fields CSS
*/

.cus-text-number-field {
}

/* Chrome, Safari, Edge, Opera */
input.cus-text-number-field::-webkit-outer-spin-button,
input.cus-text-number-field::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/*
	Custom Fields CSS
*/

#cus-user-login-register-page .cus-back-btn i {
  color: #c00202;
}

#cus-user-login-register-page .cus-back-btn i:hover {
  color: #fff;
  background: #ed3570;
  background: #c00202;
}

.tooltext.left {
  width: 80px;
}

#cus-user-login-register-page .user-form-banner::before,
.single-banner::before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(246, 138, 36, 0.3)),
    to(rgba(237, 53, 112, 0.3))
  );
  background: linear-gradient(
    to right,
    rgba(246, 138, 36, 0.3),
    rgba(237, 53, 112, 0.3)
  );
  z-index: -1;
}

#cus-user-login-register-page .cus-nav-tabs li .active {
  color: #c00202 !important;
  background: var(--light-white) !important;
  border-color: #c00202 !important;
}

#cus-login-form .btn.btn-inline,
#cus-register-form .btn.btn-inline {
  width: 75%;
}

#cus-user-generic-header .header-widget li button i,
#cus-user-generic-header .header-widget li a i,
#cus-user-generic-header .header-option-btn i,
#cus-user-generic-footer-navbar .btmbar-widget li button i,
#cus-user-generic-footer-navbar .btmbar-widget li a i {
  color: #c00202;
}

#cus-user-generic-header .header-widget li button i:hover,
#cus-user-generic-header .header-widget li a i:hover {
  color: var(--light-white) !important;
  background: #c00202 !important;
  border-color: var(--cus-primary) !important;
}

#cus-user-generic-header .header-widget li button sup,
#cus-user-generic-header .header-widget li a sup,
#cus-user-generic-footer-navbar .btmbar-widget li button sup,
#cus-user-generic-footer-navbar .btmbar-widget li a sup {
  background: #c00202;
}

#cus-user-profile-top-details .dash-avatar a {
  border-radius: 50%;
  border: 3px solid #c00202;
  padding: 2px;
}

#cus-user-profile-top-details .dash-avatar a img {
  width: 140px;
  border-radius: 50%;
  border: 3px solid var(--white);
  height: 140px;
  object-fit: cover;
  object-position: top left;
}

#cus-user-profile-top-details .dash-meta li i {
  color: #c00202;
}

#cus-user-profile-top-details .dash-header-alert {
  border-left: 3px solid var(--cus-primary);
}

#cus-user-generic-header .header-left .header-widget li:nth-child(2) {
  display: none;
}

#cus-user-profile-basic-details .account-title button,
#cus-user-profile-basic-details .account-title a {
  color: var(--white);
  background: #c00202;
  text-shadow: #c00202;
  border: 1px solid var(--cus-primary) !important;

  min-width: 180px;
}

/* .footer-content .footer-info img
{
	height: 100px;
	width: auto;
	margin-bottom: 10px;
} */

#cus-user-profile-basic-details .account-title button:hover,
#cus-user-profile-basic-details .account-title a:hover {
  color: #c00202;
  background: var(--white);
  text-shadow: var(--primary-tshadow);
  border: 1px solid var(--cus-primary) !important;
}

#cus-user-profile-basic-details .account-card {
  padding: unset;
}

#cus-user-profile-basic-details .account-title {
  padding: 10px 20px;
  margin-bottom: 0px;
}

#cus-user-profile-basic-details
  .cus-other-user-profile-account-title.account-title,
.modal .cus-edit-profile-modal-header {
  background: #c00202;
}

#cus-user-profile-basic-details .account-card-list {
  padding: 20px;
}

#cus-user-profile-basic-details .account-card-list li p {
  margin-left: 10px;
}

#cus-user-profile-basic-details .account-title::before {
  height: 3px;
  background: #c00202;
  left: 25px;
  bottom: 0px;
}

#cus-user-profile-basic-details
  .cus-other-user-profile-account-title.account-title::before,
.modal .cus-edit-profile-modal-header::before {
  background: var(--white);
}

#cus-user-profile-basic-details .account-card-list li {
  justify-content: flex-start;
}

/* #cus-user-generic-footer-navbar .btmbar-widget li.cus-footer-navbar-main-btn a i
{
	color: #FFF !important;
	background: var(--cus-primary-bg);
} */

#cus-user-search-list.ad-list-part {
  padding: 25px 0;
}

#cus-user-search-list .tab-pane {
  padding: 1.5rem 0 !important;
}

#cus-user-search-list .cus-user-profile-card {
}

#cus-user-search-list .cus-user-profile-card .cus-user-profile-image {
  height: 375px;
}

#cus-user-search-list .cus-user-profile-card .cus-user-profile-image::before {
  visibility: visible;
  opacity: 1;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(65%, rgba(0, 0, 0, 0)),
    color-stop(90%, rgba(0, 0, 0, 0.8))
  );
  background: linear-gradient(rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0.8) 90%);
}

#cus-user-search-list
  .cus-user-profile-card
  .cus-user-profile-image
  .cus-match-score {
  color: #fff !important;
  background: #c00202;
}

#cus-user-search-list
  .cus-user-profile-card
  .cus-user-profile-image
  .cross-badge {
  color: #fff !important;
  background: var(--cus-primary);
}

#cus-user-search-list
  .cus-user-profile-card
  .cus-user-profile-image
  ul.product-meta
  li {
  display: block;
  text-align: center;
}

#cus-user-search-list
  .cus-user-profile-card
  .cus-user-profile-image
  ul.product-meta
  li
  i {
  padding: 15px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

#cus-user-search-list
  .cus-user-profile-card
  .cus-user-profile-image
  ul.product-meta {
  visibility: visible !important;
  opacity: 1 !important;
}

#cus-user-search-list
  .cus-user-profile-card
  .cus-user-profile-image
  ul.product-meta
  li:nth-child(1)
  i {
  background: #ff6680;
}

#cus-user-search-list
  .cus-user-profile-card
  .cus-user-profile-image
  ul.product-meta
  li:nth-child(2)
  i {
  background: #1ab3ff;
}

#cus-user-search-list
  .cus-user-profile-card
  .cus-user-profile-image
  ul.product-meta
  li:nth-child(3)
  i {
  background: #00e161;
}

.single-banner {
  padding: 35px 0px 35px;
  /* background: url('../../../../../images/breadcrum-banner.jpg'); */
  background: #c00202;
}

#cus-user-search-list-banner.single-banner {
  padding: 60px 0px;
  /* background: url('../../../../../images/profile-search.jpg'); */
  background: #c00202;
}

.single-content h2 {
  margin-bottom: 0px;
}

.single-content h2.cus-user-profile-bredcrum {
  text-shadow: 0 3px 15px #000;
}

/* .footer-part, 
.footer-end-content
{
	padding: 0;
} */

#cus-user-generic-header .cus-user-side-action-btn {
  width: 130px;
  padding: 5px 0;
  margin-left: 10px;
}

.cus-btn-sm {
}

.cus-profile-edit-modal-forms {
}

.cus-profile-edit-modal-forms .form-group {
  margin-bottom: 15px;
}

.cus-profile-edit-modal-forms .form-group .form-control {
  height: 42px;
}

.cus-profile-edit-modal-forms .form-group .form-label {
  margin-bottom: 0px;
}

.table-list thead tr {
  background: var(--cus);
}

.cus_member_profile_phone_number,
.cus_member_profile_phone_number:hover {
  text-decoration: none;
  color: #fff;
}

#cus-user-chat-details-list {
  display: grid;
}

#cus-user-chat-details-list .review-item {
  width: 75%;
  padding: 10px 15px;
  margin-bottom: 10px;
}

#cus-user-chat-details-list .review-item.cus-chat-left-message {
  text-align: left;
  float: left;
}

#cus-user-chat-details-list .review-item.cus-chat-right-message {
  text-align: right;
  float: right;
}

#cus-user-chat-details-list .review-item .review-head,
#cus-user-chat-details-list .review-item .review-meta h6 {
  margin-bottom: 0px;
}

#cus-user-chat-details-list .review-item.cus-chat-left-message .review-head,
#cus-user-chat-details-list .review-item.cus-chat-left-message .review-meta h6 {
  text-align: left;
  float: left;
}

#cus-user-chat-details-list .review-item.cus-chat-right-message .review-head,
#cus-user-chat-details-list
  .review-item.cus-chat-right-message
  .review-meta
  h6 {
  text-align: right;
  float: right;
}

#cus-user-chat-details-list .review-item .review-content p {
  line-height: 20px;
}

#cus-user-chat-details-list .ad-review-form {
  margin-top: 10px;
}

#cus-user-chat-details-list .ad-review-form textarea.form-control {
  height: unset;
}

#cus-current-page-main-content-box .ad-details-part {
  padding: 30px 0 30px;
}

#cus-user-chat-details.single-banner {
  padding: 30px 0px 30px;
}

#cus-profile-chat-page-container .ad-details-profile .author-img a {
  border-radius: 50%;
  border: 3px solid var(--cus-primary);
}

#cus-profile-chat-page-container .ad-details-profile .author-img a img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--white);
  object-fit: cover;
  object-position: top left;
}

#cus-user-chat-details-list .review-list {
  max-height: 550px;
  overflow-y: auto;
}

#cus-chat-message-list-container .cus-chat-message-list-user-img {
  width: 65px;
  height: 65px;
  border: 2px solid #c00202;
  border-radius: 50%;
  padding: 3px;
  object-fit: cover;
  object-position: top left;
}

#cus-chat-message-list-container .adpost-plan-list {
  padding-bottom: 20px;
}

#cus-chat-message-list-container .adpost-plan-list .cus_message_not_read {
  background: rgba(64, 96, 255, 0.1);
}

#cus-chat-message-list-container .adpost-title {
  padding-bottom: 5px;
  margin-bottom: 15px;
}

#cus-chat-message-list-container .adpost-plan-list li {
  padding-bottom: 10px;
  margin-bottom: 10px;
  padding: 10px;
}

.cus-profile-edit-modal-forms
  .select2
  + .select2-container--default
  .select2-selection--single {
  border: unset;
  background-color: var(--light-white);
  border-bottom: 2px solid var(--border);
}

.cus-profile-edit-modal-forms
  .select2
  + .select2-container
  .select2-selection--single,
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 40px;
}

.cus-profile-edit-modal-forms
  .select2
  + .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 40px;
}

.cus-profile-edit-modal-forms button.btn {
  margin-left: 15px;
  padding: 5px 10px;
  font-size: 14px;
}

/*
#cus-user-search-list ul.nav-tabs
{
	justify-content: flex-start;
}

#cus-user-search-list ul.nav-tabs li
{
	min-width: 300px;
	width: unset;
	margin-left: 20px;
}
*/

.sidebar-menu ul.product-sidebar-list {
  max-height: 300px;
  overflow-y: auto;
}

#cus-user-profile-basic-details .account-card .account-title a {
  cursor: pointer;
}

#cus-membership-plan-page-details {
  padding: 30px 0px;
}

#cus-membership-plan-page-details .section-center-heading {
  margin-top: 25px;
}

.cus-payment-indicator-icon {
  font-size: 150px;
}

.cus-payment-page-title {
  margin-top: 30px;
}

.cus-payment-page-title + p {
  font-size: 22px;
}

#cus-other-user-profile-header-right {
  justify-content: space-around;
}

#cus-other-user-profile-header-right-action {
}

#cus-other-user-profile-header-right-nav {
  display: flex;
  width: 37%;
}

#cus-other-user-profile-header-right-nav .dash-focus {
  background: unset;
}

#cus-other-user-profile-header-right-nav .dash-focus::before {
  content: unset;
}

#cus-other-user-profile-header-right-nav .cus-nav-prev {
  filter: opacity(0.5);
}

#cus-other-user-profile-header-right-nav img {
  width: 50px;
  border-radius: 50%;
  border: 1px solid var(--white);
  height: 50px;
  object-fit: cover;
  object-position: top left;
}

#cus-other-user-profile-header-right-action .cus-profile-header-action-options {
}

#cus-other-user-profile-header-right-action
  .cus-profile-header-action-options
  li {
  display: flex;
  height: 40px;
  width: 100%;
  padding: 0px 30px;
  margin: 5px 0px;
  color: #fff;
  line-height: 40px;
  border-radius: 8px;
}

#cus-other-user-profile-header-right-action
  .cus-profile-header-action-options
  li
  i {
  font-size: 18px;
}

.cus-profile-header-action-option-call {
  background: #1ab3ff;
}

.cus-profile-header-action-option-connect {
  background: #00e161;
}

.cus-profile-header-action-option-notnow {
  background: #ff6680;
}

.cus-connection-nav-tabs .nav-tabs li a span {
  background: #c00202 !important;
  background: #c00202 !important;
  border: unset;
  border: 1px solid #ed3570 !important;
  width: 25px;
  height: 25px;
  padding: 5px;
  border-radius: 50%;
  color: #fff;
}

.cus-match-with-other-user-container img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #e1e1e1;
  height: 90px;
  object-fit: cover;
  object-position: top left;
}

.cus-match-rows {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

#cus-match-row-1 span {
  padding: 5px 20px;
  border-radius: 50px;
  background: #e7e5e3;
  color: #72727d;
}

#cus-user-profile-basic-details .cus-match-rows .account-card-list {
  min-width: 600px;
}

#cus-user-profile-basic-details .cus-match-rows .account-card-list li {
  justify-content: space-between;
}

#cus-user-profile-basic-details .cus-match-rows .account-card-list li h5 span {
  font-size: 14px;
  color: #72727d;
}

/* .cus-footer-card-content
{
	padding: 10px 0px;
    margin-top: 15px;
}

.footer-part ul.cus-footer-bottom-links li,
.footer-part ul.cus-footer-bottom-links li a
{
	color: #FFF !important;
	font-weight: 600;
	margin-bottom: 1px;
	font-size: 16px;
}

.footer-part .footer-content h3
{
	color: #FFF;
    margin-bottom: 10px;
    padding-bottom: 0px;
    border-bottom: unset;
}

.footer-part .footer-content h3::before
{
	content:  unset;
} */

.news-form input {
  width: 100%;
  height: 50px;
  border: none;
  outline: none;
  padding: 0px 10px 0px 20px;
}

.news-form .btn {
  position: initial;
  margin-top: 10px;
  height: 40px;
}

.account-card-text li {
  list-style-type: disc;
  margin-bottom: 5px;
}

.cus-match-with-other-user-percent {
  margin-bottom: 20px;
}

.cus-match-with-other-user-percent span {
  font-size: 20px;
  padding: 10px 20px;
  border: 1px solid;
  color: #fff !important;
  background: #c00202;
  border-radius: 8px;
}

#cus-membership-plan-page-details .active-membership .price-card {
  border-color: #c00202 !important;
}

#cus-membership-plan-page-details .active-membership .price-card .price-head h3,
#cus-membership-plan-page-details
  .active-membership
  .price-card
  .price-list
  li
  i {
  color: #c00202 !important;
}

#cus-membership-plan-page-details
  .active-membership
  .price-card
  .price-head
  h3
  span {
  font-size: 16px;
  background: #ed3570;
  padding: 5px 10px;
  color: #fff;
}

#cus-membership-plan-page-details .price-card .price-head {
  text-align: center;
  min-height: 145px;
}

#cus-membership-plan-page-details .price-card .price-head h4 {
  text-transform: uppercase;
  color: #c00202;
  font-size: 1.5rem;
  font-family: "Lora", serif;
}

#cus-membership-plan-page-details .price-card .price-list {
  min-height: 190px;
}

#cus-membership-plan-page-details.price-part::before {
  background: url("../../images/section_2.jpg");
}

#cus-membership-plan-page-details h2 {
  color: #c00202;
}

#cus-membership-plan-page-details p {
  color: #ed3570;
}

#cus-membership-plan-page-details .price-card {
  padding: 30px 25px 30px;
  min-height: 520px;
}

#cus-membership-plan-page-details .price-list li {
  margin: 15px 0px;
}

#cus-membership-plan-page-details .cus-membership-standout {
  position: relative;
  z-index: 1;
}

#cus-membership-plan-page-details .cus-membership-standout:before {
  border-top: 2px solid rgb(248, 54, 54);
  content: "";
  margin: 0 auto;
  /* this centers the line to the full width specified */
  position: absolute;
  /* positioning must be absolute here, and relative positioning must be applied to the parent */
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  width: 95%;
  z-index: -1;
}

#cus-membership-plan-page-details .cus-membership-standout span {
  color: rgb(248, 54, 54);
  font-weight: bold;
  background: #fff;
  padding: 0 10px;
}

#cus-membership-plan-page-details .cus-membership-feature-strike {
  opacity: 0.7;
  text-decoration: line-through;
}

#cus-membership-plan-page-details .price-btn .btn {
  padding: 8px 10px;
  font-size: 13px;
  border: unset;
}

#cus-membership-plan-page-details span.cus-membership-old-price {
  text-decoration: line-through;
  color: #c00202;
  font-size: 16px;
  opacity: 0.8;
}

#cus-membership-plan-page-details .price-head h3 {
  font-size: 30px;
}

#cus-membership-plan-page-details span.cus-membership-no-of-month {
  font-size: 16px;
  color: #777;
}

.header-fixed {
  background: #ffffff;
}

.header-fixed .header-widget li a sup,
.header-fixed .header-widget li button sup {
  border: none;
}

.btn-inline {
  background: #c00202;
  border-color: #c00202;
}

.btn-inline:hover {
  background: #c00202;
  border-color: #c00202;
}

.cus-mb-30 {
  margin-bottom: 30px;
}

.form-forgot {
  color: #ff0000;
}

.swal-text {
  color: #000;
}

.remove-profile-picture {
  padding: 3px 15px;
  font-size: 12px;
  color: #fff;
  background-color: #c00202;
}

.remove-profile-picture:hover {
  padding: 3px 15px;
  font-size: 12px;
  color: #fff;
  background-color: #c00202;
}

.back-to-top {
  cursor: pointer;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  padding: 0;
  background: #c00202;
  height: 50px;
  width: 50px;
  line-height: 46px;
  border: none;
  font-size: 1rem;
  border-radius: 50%;
}

#back-to-top:hover {
  background: #c00202;
}

.btn-outline-primary {
  color: #fff;
}

.back-to-top:hover {
  background: #f48f00;
  color: #fff;
}

.floating_icon {
  top: 40%;
  left: 0;
  position: fixed;
  z-index: 100;
}

.floating_icon ul {
  padding: initial;
}

.floating_icon ul li {
  height: 35px;
  font-weight: 300;
  font-size: 16px;
  width: 100px;
  list-style-type: none;
  text-align: center;
  color: #fff;
  cursor: pointer;
  background: #c00202 !important;
  background: #c00202 !important;
  border: unset;
  border: 1px solid #ed3570 !important;
}

.floating_icon ul li * {
  line-height: 35px;
}

.mdtp__wrapper[data-theme="blue"] .mdtp__time_holder {
  background-color: #c00202;
}

.mdtp__wrapper[data-theme="blue"] .mdtp__clock .mdtp__am.active {
  background-color: #c00202;
}

.mdtp__button,
.mdtp__wrapper[data-theme="blue"] .mdtp__button {
  color: #c00202;
}

.mdtp__wrapper[data-theme="blue"] .mdtp__digit.active span {
  background-color: #c00202 !important;
}

.mdtp__wrapper[data-theme="blue"] .mdtp__digit.active:before {
  background-color: #c00202;
}

.mdtp__wrapper[data-theme="blue"] .mdtp__clock .mdtp__digit span:hover {
  background-color: #c00202 !important;
}

.mdtp__wrapper[data-theme="blue"] .mdtp__clock .mdtp__clock_dot {
  background-color: #c00202;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 60%;
  }
}

.cus-cursor-pointer {
  cursor: pointer;
}

.tooltip:hover .top {
  bottom: 35%;
}

.cus-error-message-text {
  font-size: 24px;
  font-weight: 500;
  color: #3e4654;
}

.cus-chat-container {
  width: 100%;
  margin: 0 auto;
}

.msg {
  width: 100%;
  height: auto;
  display: block;
  overflow: hidden;
}

.msg .bubble {
  float: left;
  max-width: 75%;
  width: auto;
  height: auto;
  display: block;
  background: #ebebeb;
  border-radius: 5px;
  position: relative;
  margin: 10px 0 3px 25px;
  box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.2);
}

.msg .bubble.alt {
  margin: 10px 25px 3px 0px;
  background: #dcf8c6;
  float: right;
}

.msg .bubble.follow {
  margin: 2px 0 3px 25px;
}

.msg .bubble.altfollow {
  margin: 2px 25px 3px 0px;
  background: #dcf8c6;
  float: right;
}

.msg .bubble .txt {
  padding: 8px 10px 8px 10px;
  width: 100%;
}

.msg .bubble .txt .name {
  font-weight: 600;
  font-size: 14px;
  display:
		/*inline-table*/ contents;
  padding: 0 0 0 15px;
  margin: 0 0 4px 0;
  color: #3498db;
}

.msg .bubble .txt .name span {
  font-weight: normal;
  color: #b3b3b3;
  overflow: hidden;
}

.msg .bubble .txt .name.alt {
  color: #2ecc51;
}

.msg .bubble .txt .message {
  font-size: 14px;
  font-weight: 500;
  padding: 0 15px 0 15px;
  margin: auto;
  color: #2b2b2b;
  display: table;
}

.msg .bubble .txt .timestamp {
  right: 5px;
  top: 8px;
  font-size: 11px;
  margin: 0px 0 0px 0px;
  padding: 0px 0px 0 0;
  display: table;
  float: right;
  position: absolute;
  text-transform: uppercase;
  color: #999;
}

.msg .bubble .bubble-arrow {
  position: absolute;
  float: left;
  left: -11px;
  top: 0px;
}

.msg .bubble .bubble-arrow.alt {
  bottom: 20px;
  left: auto;
  right: 4px;
  float: right;
}

.msg .bubble .bubble-arrow:after {
  content: "";
  position: absolute;
  border-top: 15px solid #ebebeb;
  border-left: 15px solid transparent;
  border-radius: 4px 0 0 0px;
  width: 0;
  height: 0;
}

.msg .bubble .bubble-arrow.alt:after {
  border-top: 15px solid #dcf8c6;
  transform: scaleX(-1);
}

.cus-chat-date {
  text-align: center;
  font-size: 12px;
}

.cus-login-option {
  padding-left: 5px;
}

#cus-login-form .btn.btn-inline,
#cus-register-form .btn.btn-inline.cus-login-button {
  margin-right: 5px;
}

.grid-verti.active i,
.grid-hori.active i {
  background: #c00202;
}

#cus_profile_img_upload_box
  #cus-profile-img-upload-form
  a
  .upload-photo-indicator
  .fa-camera {
  color: #c00202;
}

.adpost-plan-meta .btn {
  border-color: #ed3570;
}

.adpost-plan-meta .btn:hover {
  background: #c00202;
}

.account-title::before {
  background: #c00202;
}

.price-head h3 {
  color: #c00202;
}

.price-card:hover {
  border: 2px solid #c00202;
  box-shadow: 0px 2px 15px #c00202;
}

#cus-membership-plan-page-details .price-card:hover .price-btn .btn {
  border: unset;
  box-shadow: 0px 2px 15px #c00202;
}

.dash-intro .cus-profile-btn {
  padding: 3px 15px;
  font-size: 12px;
  color: #fff;
  background-color: #c00202;
}

#cus-user-profile-basic-details
  .cus-other-user-profile-account-title.account-title
  h3 {
  color: #fff;
}

.adpost-title::before {
  background: #c00202;
}

.nav-tabs li .active {
  color: #c00202 !important;
  border-color: #c00202 !important;
}

.product-title h5 a:hover {
  color: #c00202;
}

.modal .cus-edit-profile-modal-header h5 {
  color: #fff;
}

.product-filter-btn {
  color: #c00202;
  border: 1px solid #c00202;
}

#amount {
  color: #c00202;
}

.product-filter-btn:hover {
  background: #c00202;
}

.product-short-select:focus {
  border-color: #c00202;
}

.product-sidebar-list li label:hover {
  color: #c00202;
}

.ui-state-active,
.ui-widget-content .ui-state-active {
  border: 1px solid #c00202;
}

.sidebar-header a {
  color: #c00202;
}

.sidebar-cross i:hover {
  background: #c00202;
}

footer {
  background: #c00202;
  padding-top: 2rem;
}

.footer-widget li {
  margin-bottom: 0px;
}

footer .widget-listing li a {
  color: #fff;
}

footer .widget-listing li a:hover {
  text-decoration: none;
}

.footer-logo img {
  margin-bottom: 1rem;
  height: 50px;
  width: auto;
  border-radius: 16px;
}

.social-icons-footers a:hover {
  background: #c00202;
}

.footer-widget p {
  color: #fff;
  margin-bottom: 1rem;
}

footer .widget-contact a {
  color: #fff;
}

.social-icons-footers ul {
  display: flex;
}

.social-icons-footers a {
  color: #fff !important;
  margin-right: 0.4rem;
  font-size: 14px;
  padding: 0;
  background: none;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons-footers a:hover {
  color: #00aeaf !important;
  text-decoration: none !important;
}

.footer-logo p {
  color: #fff;
}

footer .copyrights {
  background: #c00202;
  /* margin-top: 5rem; */
  padding: 1rem 0;
  color: #fff;
  font-size: 0.875rem;
}

footer .btn-primary {
  color: #c00202;
  background: #fff;
  border: 1px solid #ed3570;
}

footer .btn-primary:hover {
  color: #c00202;
  background: #fff;
  border: 1px solid #ed3570;
}

footer .btn-default {
  color: #c00202;
  background: #fff;
  border: 1px solid #ed3570;
}

footer .btn-default:hover {
  color: #c00202;
  background: #fff;
  border: 1px solid #ed3570;
}

footer .widget-title {
  color: #ffffff;
  font-size: 1.375rem;
  margin-bottom: 1.2rem;
  font-weight: 100;
}

footer h3 {
  font-family: "Lora", serif !important;
}

body {
  /* font-family: 'Graphik', sans-serif; */
  font-family: system-ui !important;
  font-size: 15px;
}

.modal-header .close {
  padding: 0rem 1rem;
  margin: -0.2rem 0rem -1rem auto;
}

button.close {
  width: 30px;
  height: 30px;
  background: transparent;
  color: #fff;
  opacity: 10;
}

button.close:hover {
  background: transparent;
}

.icons-listing.arrow li a::before {
  content: "\f054";
}

.icons-listing li {
  padding: 0 0 7px 25px;
  position: relative;
  font-size: 1rem;
}

.icons-listing li a::before {
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 0.875rem;
  font-family: "FontAwesome";
}

.swal-button {
  background-color: #c00202 !important;
}

.dash-focus {
  background: none;
}

.single-banner {
  background: #c00202 !important;
}

.form-light.form-control {
  font-size: 0.9375rem;
  border: 2px solid #fff;
  outline: none;
  color: #131313;
  background-color: #fff;
  height: auto;
  padding: 0.8rem 1rem;
  border-radius: 5px;
  box-shadow: 0px 0px 147px 0px rgb(0 0 0 / 7%);
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #c00202;
  background-color: #fff;
  border: 1px solid #ed3570;
}

.ui-timepicker-wrapper {
  width: 27.5em;
}

.select2-container--default .select2-selection--multiple {
  color: #999;
  background-color: #f5f5f5;
}

.select2-container .select2-selection--multiple {
  min-height: 40px;
}

.select2-container .select2-search--inline .select2-search__field {
  line-height: 17px;
}

.select2-container--default.select2-container--focus
  .select2-selection--multiple {
  border: none;
}

.select2-container--default .select2-selection--multiple {
  border: none;
}

.blur-chat-message {
  filter: blur(5px);
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__display {
  padding-left: 25px;
}

.select2-container--default.select2-container--disabled
  .select2-selection--single {
  background-color: #e9ecef !important;
}

#cus-user-profile-basic-details .account-card-list.cus-account-card-list {
  padding: 0px 20px 10px 20px;
}

.form-icon i.fa-eye-slash {
  color: #000;
}

.user-form-header a img {
  width: 60px !important;
}

.user-form-header {
  padding: 5px !important;
}

.cus-home-img {
  height: 140px;
  width: 140px;
  object-fit: contain;
}

#cus-chat-message-list-container.cus-user-notification-list .btn-outline {
  color: #c00202;
}

#cus-chat-message-list-container.cus-user-notification-list .btn-outline:hover {
  color: #fff;
}

.cus-offline-payment-qr-code {
  text-align: center;
}

.cus-offline-payment-qr-code img {
  width: 250px;
}

.cus-offline-payment-gateway {
  margin-top: 20px;
  text-align: center;
}

.cus-offline-payment-gateway img {
  width: 350px;
}

.cus-size-lg {
  font-size: 28px !important;
}

.cus-offline-payment-membership-details {
  margin-top: 20px;
}

#cus-membership-plan-page-details
  .cus-offline-payment-membership-details
  .price-card {
  min-height: 300px;
}

#cus-membership-plan-page-details
  .cus-offline-payment-membership-details
  .price-card
  .price-list {
  min-height: 150px;
  margin-bottom: 0px;
}

.cus-offline-payment-after-details {
  margin-top: 25px;
  text-align: center;
}

.cus-offline-payment-after-details .btn {
  padding: 5px 25px;
  margin-top: 10px;
}

@media only screen and (max-width: 720px) {
  .back-to-top {
    display: none !important;
  }
}

#cus-membership-plan-page-details {
  background: #f2f2f4;
}

@media (max-width: 575px) {
  #cus-user-generic-header .header-left .header-widget li:nth-child(2) {
    display: flex;
    gap: 5px;
  }

  /* .single-banner 
	{
    	padding: 15px 0px 95px;
	} */

  .modal-dialog {
    max-width: 100%;
  }

  #cus-user-chat-details-list .review-item {
    width: 80%;
  }

  #cus-user-chat-details-list .review-list {
    max-height: 300px;
    overflow-y: auto;
  }

  #cus-login-form .btn.btn-inline,
  #cus-register-form .btn.btn-inline {
    width: 90%;
  }

  .cus-home-img {
    height: 140px;
    width: 140px;
  }

  #cus-other-user-profile-header-right-nav {
    width: 55%;
  }

  #cus-other-user-profile-header-right-nav img {
    width: 30px;
    height: 30px;
    object-fit: fill;
  }

  .cus-match-with-other-user-container img {
    width: 50px;
    height: 50px;
  }

  #cus-match-row-1 span {
    padding: 2px 25px;
  }

  .cus-match-with-other-user-percent span {
    font-size: 14px;
    padding: 10px 10px;
  }

  #cus-user-profile-basic-details .cus-match-rows .account-card-list {
    min-width: 300px;
  }

  #cus-other-user-profile-header-right-action
    .cus-profile-header-action-options {
    display: flex;
    gap: 5px;
    flex-direction: column;
  }

  #cus-other-user-profile-header-right-action
    .cus-profile-header-action-options
    li {
    width: 180px;
  }

  .upload-photo-indicator {
    top: 30% !important;
    left: 62% !important;
  }

  .dash-header-left {
    display: flex;
    align-items: center;
  }

  .dash-header-left .dash-meta {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #cus-user-generic-header .header-widget li button i,
  #cus-user-generic-header .header-widget li a i,
  #cus-user-generic-header .header-option-btn i,
  #cus-user-generic-footer-navbar .btmbar-widget li button i,
  #cus-user-generic-footer-navbar .btmbar-widget li a i {
    color: #c00202;
    background-color: var(--light-white);
  }

  .header-widget li button img,
  .header-widget li a img {
    width: auto;
    height: 40px;
  }

  #cus-header-logout-btn {
    background-color: #c00202;
    padding: 0px 8px;
    gap: 0px;
    color: #ffffff;
    border-radius: 5px;
  }

  #cus-user-generic-header .header-widget li #cus-header-logout-btn i {
    color: #fff;
    background-color: #c00202;
    width: 30px;
  }

  .content-reverse img {
    max-width: 60%;
  }

  footer {
    text-align: center !important;
    padding-top: 1rem !important;
  }

  .copyrights {
    margin-top: 0 !important;
    margin-bottom: 3.5rem !important;
  }

  .icons-listing li a::before {
    display: none !important;
  }

  .widget-listing li {
    padding: 0 0 7px 0px !important;
  }

  .mobile-list-unstyled {
    padding-left: 25%;
  }

  .dash-header-right {
    flex-direction: row;
    gap: 5px;
  }

  .dash-focus:last-child {
    margin-bottom: 20px;
  }
}

.cus-hr-tag {
  margin-top: 2rem;
  margin-bottom: 0px;
}

.cus-product-location li p {
  font-size: 13px;
  /* border-bottom: 1px solid gray; */
}

.dash-focus.cus-wishlist-background-color {
  background-color: pink;
}

.cus-heart {
  font-size: 25px;
}