@charset "UTF-8";
.text-2xs {
  font-size: 0.65rem;
  line-height: 0.9rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.5rem;
  line-height: 1.8rem;
}

.text-primary-color {
  color: #424242;
}

.text-dark-grey {
  color: #7f7f7f;
}

.text-grey {
  color: #d7d7d7;
}

.text-blue-grey {
  color: #86939E;
}

.text-theme {
  color: #7e2e85;
}

.bg-white {
  background-color: #ffffff;
}

.bg-grey {
  background-color: #d7d7d7;
}

.bg-light-grey {
  background-color: #f2f2f2;
}

.bg-dark-grey {
  background-color: #22252E;
}

.bg-blue-grey {
  background-color: #eaedf7;
}

.bg-primary {
  background-color: #7e2e85;
}
.bg-primary:hover, .bg-primary:focus {
  background-color: #d54001 !important;
}

.bg-purple {
  background-color: #635aca;
}

.bg-black {
  background-color: black;
}

.btn {
  font-weight: 600;
  border-radius: 5px;
}

.btn-remove-cart {
  color: #d7d7d7;
}
.btn-remove-cart:hover, .btn-remove-cart:focus {
  color: #d54001 !important;
}

.rounded {
  border-radius: 5px !important;
}

.main-header-notification .dropdown-menu {
  box-shadow: -4px 6px 16px 4px rgba(21, 21, 62, 0.3);
  padding: 4px 16px;
  width: 375px;
  border-radius: 5px;
}
.main-header-notification .dropdown-menu .cart-header {
  padding: 10px 0;
}
.main-header-notification .dropdown-menu .cart-header .title {
  line-height: 1.8;
}
.main-header-notification .dropdown-menu .cart-content {
  overflow-y: auto;
  max-height: 290px;
  margin-bottom: 6px;
}
.main-header-notification .dropdown-menu .cart-content .inf-card {
  padding: 6px 0;
}
.main-header-notification .dropdown-menu .cart-content .inf-card .inf-img {
  width: 45px;
  height: 45px;
  margin-right: 12px;
}
.main-header-notification .dropdown-menu .cart-content .inf-card .inf-name {
  padding-right: 10px;
  margin-bottom: 2px;
  max-width: 190px;
}
.main-header-notification .dropdown-menu .cart-content::-webkit-scrollbar {
  width: 4px;
}
.main-header-notification .dropdown-menu .cart-content::-webkit-scrollbar-track {
  background: #e3e3e3;
  border-radius: 2px;
}
.main-header-notification .dropdown-menu .cart-content::-webkit-scrollbar-thumb {
  background: #C0C0C0;
  border-radius: 2px;
}
.main-header-notification .dropdown-menu .cart-content::-webkit-scrollbar-thumb:hover {
  background: #A9A9A9;
}

.modal-cart .modal-content {
  border-radius: 5px;
}
.modal-cart .modal-content .modal-header .title {
  line-height: 1.8;
}
.modal-cart .modal-content .selected-influencer {
  overflow-y: auto;
  max-height: 290px;
  margin-bottom: 6px;
}
.modal-cart .modal-content .selected-influencer .inf-card {
  padding: 6px 0;
}
.modal-cart .modal-content .selected-influencer .inf-card .inf-img {
  width: 45px;
  height: 45px;
  margin-right: 12px;
}
.modal-cart .modal-content .selected-influencer .inf-card .inf-name {
  padding-right: 10px;
  margin-bottom: 2px;
  max-width: 190px;
}
.modal-cart .modal-content .selected-influencer::-webkit-scrollbar {
  width: 4px;
}
.modal-cart .modal-content .selected-influencer::-webkit-scrollbar-track {
  background: #e3e3e3;
  border-radius: 2px;
}
.modal-cart .modal-content .selected-influencer::-webkit-scrollbar-thumb {
  background: #C0C0C0;
  border-radius: 2px;
}
.modal-cart .modal-content .selected-influencer::-webkit-scrollbar-thumb:hover {
  background: #A9A9A9;
}

.modal-lock .modal-content {
  border-radius: 5px;
}
.modal-lock .modal-content .modal-header .title {
  line-height: 1.8;
}

.interest-box {
  overflow-y: auto;
  height: 260px;
  padding-right: 8px;
}

.interest-box::-webkit-scrollbar {
  width: 4px;
}

.interest-box::-webkit-scrollbar-track {
  background: #e3e3e3;
  border-radius: 2px;
}

.interest-box::-webkit-scrollbar-thumb {
  background: #C0C0C0;
  border-radius: 2px;
}

.interest-box::-webkit-scrollbar-thumb:hover {
  background: #A9A9A9;
}

.divider {
  border-bottom: 1px solid #d2d2d2;
}

.influencer-card {
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
}
.influencer-card .influencer-grid {
  position: relative;
  height: 460px;
  background-color: white;
}
.influencer-card .influencer-grid .influencer-image {
  position: absolute;
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}
.influencer-card .influencer-grid .influencer-content {
  position: absolute;
  border-radius: 16px;
  background-color: white;
  width: 100%;
  height: 410px;
  transform: translateY(320px);
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.influencer-card .influencer-grid .influencer-content .influencer-info {
  overflow: hidden;
}
.influencer-card .influencer-grid .influencer-content .influencer-info::-webkit-scrollbar {
  width: 4px;
}
.influencer-card .influencer-grid .influencer-content .influencer-info::-webkit-scrollbar-track {
  background: #e3e3e3;
  border-radius: 2px;
}
.influencer-card .influencer-grid .influencer-content .influencer-info::-webkit-scrollbar-thumb {
  background: #C0C0C0;
  border-radius: 2px;
}
.influencer-card .influencer-grid .influencer-content .influencer-info::-webkit-scrollbar-thumb:hover {
  background: #A9A9A9;
}

.influencer-card:hover .influencer-grid .influencer-content {
  transform: translateY(50px);
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.influencer-card:hover .influencer-grid .influencer-content .influencer-info {
  overflow-y: auto;
}

.filter-title {
  background-color: white;
  border-radius: 5px;
  border: 1px solid #d2d2d2;
  padding: 8px 12px;
}

.filter-title[aria-expanded=true] {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.filter-title::after {
  content: "\F107";
  color: #333;
  position: absolute;
  right: 26px;
  font-family: "FontAwesome";
}

.filter-title[aria-expanded=true]::after {
  content: "\F106";
}

.filter {
  display: block !important;
}

.filter-mobile {
  display: none !important;
}

.section-influencer .sort-filter {
  width: 180px;
}
.section-influencer .sort-filter .sort-btn .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 30px;
}
.section-influencer .sort-filter .sort-btn .select2-container--default .select2-selection--single {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
}
.section-influencer .sort-filter .sort-btn .select2-container--default .select2-selection--single .select2-selection__arrow {
  left: 9px;
  right: auto;
}
.section-influencer .sort-filter .sort-btn .input-group-sort {
  cursor: pointer;
}
.section-influencer .sort-filter .sort-btn .input-group-sort .icon {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border: 1px solid #d2d2d2;
  border-left: none;
  background-color: white;
  padding: 6px 12px;
  font-size: 16px;
}

.section-influencer-admin .action-btn {
  margin-bottom: 20px;
}
.section-influencer-admin .influencer-list {
  width: 100%;
  overflow: auto;
}
.section-influencer-admin .influencer-list::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.section-influencer-admin .influencer-list::-webkit-scrollbar-track {
  background: #e3e3e3;
  border-radius: 2px;
}
.section-influencer-admin .influencer-list::-webkit-scrollbar-thumb {
  background: #C0C0C0;
  border-radius: 2px;
}
.section-influencer-admin .influencer-list::-webkit-scrollbar-thumb:hover {
  background: #A9A9A9;
}

.section-influencer-detail .influencer-info {
  flex-direction: row !important;
}
.section-influencer-detail .influencer-info .influencer-photo {
  width: 150px;
  height: 150px;
  margin-right: 1.5rem;
  margin-bottom: 0;
}
.section-influencer-detail .influencer-stats {
  justify-content: flex-end;
  width: 100%;
}
.section-influencer-detail .influencer-stats .stat {
  margin-left: 24px !important;
}
.section-influencer-detail .metric {
  margin-bottom: 20px;
}
.section-influencer-detail .metric .metric-value {
  font-size: 36px;
}
.section-influencer-detail .rate-card-container {
  top: 50%;
  transform: translateY(-50%);
  transform-origin: 50%;
  right: -286px;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.section-influencer-detail .rate-card-container .rate-card-btn {
  width: 48px;
  height: 40px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  cursor: pointer;
  padding-right: 2px;
}
.section-influencer-detail .rate-card-container .rate-card {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  width: 280px;
  border-top-left-radius: 11px;
  border-bottom-left-radius: 11px;
}
.section-influencer-detail .rate-card-container .rate-card .rate-card-content {
  max-height: 68vh;
  overflow-y: auto;
}
.section-influencer-detail .rate-card-container .rate-card .rate-card-content::-webkit-scrollbar {
  width: 4px;
}
.section-influencer-detail .rate-card-container .rate-card .rate-card-content::-webkit-scrollbar-track {
  background: #e3e3e3;
  border-radius: 2px;
}
.section-influencer-detail .rate-card-container .rate-card .rate-card-content::-webkit-scrollbar-thumb {
  background: #C0C0C0;
  border-radius: 2px;
}
.section-influencer-detail .rate-card-container .rate-card .rate-card-content::-webkit-scrollbar-thumb:hover {
  background: #A9A9A9;
}
.section-influencer-detail .influencer-platform {
  display: flex !important;
}
.section-influencer-detail .influencer-platform-mobile {
  display: none !important;
}

.section-campaign .action-btn {
  margin-bottom: 20px;
}
.section-campaign .campaign-list {
  width: 100%;
  overflow: auto;
}
.section-campaign .campaign-list::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.section-campaign .campaign-list::-webkit-scrollbar-track {
  background: #e3e3e3;
  border-radius: 2px;
}
.section-campaign .campaign-list::-webkit-scrollbar-thumb {
  background: #C0C0C0;
  border-radius: 2px;
}
.section-campaign .campaign-list::-webkit-scrollbar-thumb:hover {
  background: #A9A9A9;
}

.section-campaign-detail .container-content {
  padding-right: 310px;
}
.section-campaign-detail .container-content .content {
  width: 100%;
}
.section-campaign-detail .container-content .content .metric {
  margin-bottom: 20px;
}
.section-campaign-detail .container-content .content .metric .metric-value {
  font-size: 28px;
}
.section-campaign-detail .container-content .content .metric .inf {
  color: #027db4;
}
.section-campaign-detail .container-content .content .metric .post {
  color: #04B315;
}
.section-campaign-detail .container-content .content .metric .tot-eng {
  color: #F59A23;
}
.section-campaign-detail .container-content .content .metric .eng-rate {
  color: #D9001B;
}
.section-campaign-detail .container-content .content .campaign-influencer-list {
  width: 100%;
  overflow: auto;
}
.section-campaign-detail .container-content .content .campaign-influencer-list::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.section-campaign-detail .container-content .content .campaign-influencer-list::-webkit-scrollbar-track {
  background: #e3e3e3;
  border-radius: 2px;
}
.section-campaign-detail .container-content .content .campaign-influencer-list::-webkit-scrollbar-thumb {
  background: #C0C0C0;
  border-radius: 2px;
}
.section-campaign-detail .container-content .content .campaign-influencer-list::-webkit-scrollbar-thumb:hover {
  background: #A9A9A9;
}
.section-campaign-detail .sticky-post {
  position: fixed;
  top: 0;
  right: 0;
  width: 310px;
  height: 100%;
  background-color: #22252E;
  padding: 20px;
  padding-top: 88px;
  padding-bottom: 0;
  padding-left: 18px;
  padding-right: 18px;
  z-index: 1;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.section-campaign-detail .sticky-post .sticky-post-btn {
  position: absolute;
  width: 48px;
  height: 40px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  cursor: pointer;
  left: -48px;
  top: 50%;
  transform: translateY(-50%);
  transform-origin: 50%;
  margin-top: 30px;
  display: none !important;
}
.section-campaign-detail .sticky-post .form-group {
  width: 132px;
}
.section-campaign-detail .sticky-post .select2-container--default .select2-selection--single {
  border-radius: 5px;
  background: transparent;
  border: 1px solid #86939E;
  height: 34px;
}
.section-campaign-detail .sticky-post .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #86939E;
  padding-right: 28px;
  line-height: 34px;
}
.section-campaign-detail .sticky-post .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 34px;
}
.section-campaign-detail .sticky-post .post-list {
  overflow-y: auto;
  overflow-x: hidden;
}
.section-campaign-detail .sticky-post .post-list .post {
  border: 1px solid #86939E;
  margin-bottom: 10px;
  border-radius: 12px;
  padding: 4px;
}
.section-campaign-detail .sticky-post .post-list .post .image {
  width: 110px;
  height: 110px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.section-campaign-detail .sticky-post .post-list::-webkit-scrollbar {
  width: 4px;
}
.section-campaign-detail .sticky-post .post-list::-webkit-scrollbar-track {
  background: #e3e3e3;
  border-radius: 2px;
}
.section-campaign-detail .sticky-post .post-list::-webkit-scrollbar-thumb {
  background: #C0C0C0;
  border-radius: 2px;
}
.section-campaign-detail .sticky-post .post-list::-webkit-scrollbar-thumb:hover {
  background: #A9A9A9;
}
.section-campaign-detail .sticky-post .post-close-icon {
  width: 1.2rem;
  height: 1.2rem;
  padding: 0.6rem;
  border: 1px solid #86939E;
}

.section-user .action-btn {
  height: 38px;
  margin-bottom: 20px;
}
.section-user .action-search {
  margin-bottom: 20px;
}
.section-user .user-list {
  width: 100%;
  overflow: auto;
}

.section-categories .categories-list {
  width: 100%;
  overflow: auto;
}

.section-rate .rate-list {
  width: 100%;
  overflow: auto;
}

.custom-table {
  border: none;
  margin-bottom: 0;
}
.custom-table thead th {
  border: none;
  text-transform: none;
  font-weight: normal;
  color: #7f7f7f;
  white-space: nowrap;
  font-size: 12px;
}
.custom-table tr {
  border: none;
}
.custom-table td {
  border: none;
}
.custom-table .sort::before {
  content: "\2191";
  opacity: 0.3;
}
.custom-table .sort::after {
  content: "\2193";
  opacity: 0.3;
}
.custom-table .sort-asc::before {
  content: "\2191";
  opacity: 1;
  color: #7e2e85;
}
.custom-table .sort-asc::after {
  content: "\2193";
  opacity: 0.3;
}
.custom-table .sort-desc::before {
  content: "\2191";
  opacity: 0.3;
}
.custom-table .sort-desc::after {
  content: "\2193";
  opacity: 1;
  color: #7e2e85;
}

.table-striped tbody tr:nth-of-type(2n+1) {
  background-color: #f6f7fb;
}

ul.pagination {
  margin-bottom: 0;
}

.slide-left {
  right: 0 !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.level-excellent {
  color: #8400FF;
}

.level-excellent-badge {
  color: white;
  background-color: #8400FF;
  padding: 3px 10px;
}

.level-good {
  color: #04B315;
}

.level-good-badge {
  color: white;
  background-color: #04B315;
  padding: 3px 10px;
}

.level-average {
  color: #F59A23;
}

.level-average-badge {
  color: white;
  background-color: #F59A23;
  padding: 3px 10px;
}

.level-low {
  color: #D9001B;
}

.level-low-badge {
  color: white;
  background-color: #D9001B;
  padding: 3px 10px;
}

.audience-male {
  background-color: #50bde5 !important;
}

.audience-female {
  background-color: #f895ae !important;
}

.audience-real {
  background-color: #7e2e85 !important;
}

.audience-inf {
  background-color: #F59A23 !important;
}

.audience-mass {
  background-color: #424242 !important;
}

.audience-sus {
  background-color: #D7D7D7 !important;
}

.dot {
  width: 8px !important;
  height: 8px !important;
}

.demography .nav-tabs {
  border-bottom: none;
  padding-bottom: 5px !important;
}
.demography .nav-tabs .nav-link {
  cursor: pointer;
  padding: 6px 12px;
  color: #ffffff;
  background-color: transparent;
  border: none;
  border-radius: 5px !important;
}
.demography .nav-tabs .nav-link.active {
  color: #424242 !important;
  background-color: #ffffff;
  border: none;
}
.demography .nav-tabs .nav-link:hover {
  color: #424242 !important;
  background-color: #ffffff;
}

.standby-badge {
  color: #8400FF;
  background-color: rgba(132, 0, 255, 0.2);
}

.posting-badge {
  color: #04B315;
  background-color: rgba(4, 179, 21, 0.2);
}

.preparing-badge {
  color: #F59A23;
  background-color: rgba(245, 154, 35, 0.2);
}

.completed-badge {
  color: #D9001B;
  background-color: rgba(217, 0, 27, 0.2);
}

.spinner-bg {
  background-color: rgba(242, 242, 242, 0.8);
}

.cursor-pointer {
  cursor: pointer;
}

.multi-select .select2-container--default .select2-selection--multiple {
  border-radius: 5px;
}

.mobile-logo {
  display: none !important;
}

.main-img-user {
  display: block !important;
}

.main-menu-user {
  color: #2f395f;
  font-size: 24px;
  display: none !important;
}

.main-custom-user {
  width: 36px;
  height: 36px;
  background-color: #b5b5b5;
}

div.tagsinput span.tag {
  background: #03a9f4;
  border: 1px solid #03a9f4;
  color: white;
  border-radius: 4px;
}
div.tagsinput span.tag a {
  color: white;
  font-size: 13px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  border-radius: 4px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  font-size: 13px;
}

.download-influencer-menu .dropdown-menu {
  top: 24px !important;
  left: -12px !important;
  box-shadow: -8px 12px 18px 0 rgba(21, 21, 62, 0.3);
  padding: 8px 0;
  min-width: 8rem !important;
}
.download-influencer-menu .dropdown-menu::before {
  content: "";
  width: 13px;
  height: 13px;
  background: #ffffff;
  position: absolute;
  top: -7px;
  left: 26px;
  transform: rotate(45deg);
  border-top: 1px solid #f0f2f8;
  border-left: 1px solid #f0f2f8;
}

@media (max-width: 1199px) {
  .mobile-logo {
    display: none !important;
  }

  .main-img-user {
    display: block !important;
  }

  .main-menu-user {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .mobile-logo {
    display: block !important;
  }
  .mobile-logo img {
    width: 190px;
  }

  .main-img-user {
    display: none !important;
  }

  .main-menu-user {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .filter {
    display: none !important;
  }

  .filter-mobile {
    display: block !important;
  }
  .filter-mobile .custom-card {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-left: 1px solid #d2d2d2;
    border-right: 1px solid #d2d2d2;
    border-bottom: 1px solid #d2d2d2;
  }
  .filter-mobile .title {
    display: none;
  }
  .filter-mobile .title-divider {
    display: none;
  }

  .section-influencer {
    padding-top: 84px !important;
  }
  .section-influencer .sort-filter {
    width: 100%;
  }

  .section-influencer-admin {
    padding-top: 84px !important;
  }
  .section-influencer-admin .edit-rate-card {
    width: 100%;
    overflow: auto;
  }

  .section-influencer-detail {
    padding-top: 84px !important;
  }
  .section-influencer-detail .influencer-info {
    flex-direction: column !important;
  }
  .section-influencer-detail .influencer-info .influencer-photo {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .section-influencer-detail .influencer-name {
    text-align: center;
  }
  .section-influencer-detail .influencer-account {
    justify-content: center !important;
  }
  .section-influencer-detail .influencer-catogory {
    justify-content: center !important;
  }
  .section-influencer-detail .influencer-platform {
    display: none !important;
  }
  .section-influencer-detail .influencer-platform-mobile {
    display: flex !important;
    justify-content: center !important;
    margin-bottom: 12px;
  }
  .section-influencer-detail .section-action-btn {
    display: none !important;
  }
  .section-influencer-detail .influencer-stats {
    justify-content: space-around;
  }
  .section-influencer-detail .influencer-stats .stat {
    margin-left: 0 !important;
  }

  .section-campaign {
    padding-top: 84px !important;
  }

  .section-campaign-detail {
    padding-top: 84px !important;
    flex-direction: column !important;
  }
  .section-campaign-detail .container-content {
    padding-right: 0;
  }
  .section-campaign-detail .sticky-post {
    right: -310px;
  }
  .section-campaign-detail .sticky-post .sticky-post-btn {
    display: flex !important;
  }

  .section-user {
    padding-top: 84px !important;
  }

  .section-categories {
    padding-top: 84px !important;
  }

  .section-rate {
    padding-top: 84px !important;
  }
}
@media (max-width: 575px) {
  .section-influencer-detail .influencer-stats {
    justify-content: space-between;
  }
  .section-influencer-detail .audience-age-gender {
    height: 300px;
  }
  .section-influencer-detail .performance {
    height: 250px;
  }

  .main-header-notification .dropdown-menu {
    width: 350px;
  }
}
@media (max-width: 480px) {
  .section-influencer-admin .action-btn {
    justify-content: space-between !important;
  }

  .section-user .action-btn {
    justify-content: space-between !important;
  }

  .demography .nav-tabs {
    flex-direction: column !important;
  }
}

.label-exclusive {
    background: rgb(0 0 0 / 50%);
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: center;
    z-index: 10;
    height: 32px;
    width: 32px;
    line-height: 15px;
    background-repeat: no-repeat;
    border: 2px solid transparent;
    background-position: center;
    transition: background-color 0.1s linear;
    -moz-transition: background-color 0.1s linear;
    -webkit-transition: background-color 0.1s linear;
    -o-transition: background-color 0.1s linear;
    border-radius: 5px;
}

.hide{
  display: none !important;
}

.show{
  display: block !important;
}

.text-truncate-extraSmall{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: pre-wrap;
  word-break: break-all;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  max-width: 80px;
}

.text-truncate-small{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: pre-wrap;
  word-break: break-all;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  max-width: 135px;
}
.text-truncate-medium{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: pre-wrap;
  word-break: break-all;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  max-width: 165px;
}
.text-truncate-large{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: pre-wrap;
  word-break: break-all;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  max-width: 228px;
}
.text-truncate-extraLarge{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: pre-wrap;
  word-break: break-all;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-width: 300px;
}

.contact-thumb{
  text-align: center;
  cursor:pointer;
}
.contact-thumb span.thumb{
  display: inline-block;
  color: #9FA7AD;
  line-height: 90px;
  font-family: FontAwesome;
  font-size: 44px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.thumb-upload{
  width: 90px;
  height: 90px;
  overflow: hidden;
  border-radius: 100%;
  margin: auto;
  background: #E7EAEB;
  border: 0px solid #9FA7AD;
}
.contact-thumb>span{
  display: block;
  height: 100%;
}
.contact-thumb #upload_photo{
  display: none;
}
.contact-thumb #contact_photo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.contact-thumb span.photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
}
.remove-image{
  position: absolute;
  right: 95px;
  top: 16px;
  opacity: 1;
  font-size: 20px;
}
.add-image{
  position: absolute;
  right: 95px;
  top: 16px;
  opacity: 1;
  font-size: 14px;
}
.avatar-profile{
  vertical-align: middle;
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.display-none {
  display: none;
}
.multi-wizard-step p {
  margin-top: 12px;
}
.stepwizard-row {
  display: table-row;
}
.stepwizard {
  display: table;
  position: relative;
  width: 100%;
}
.multi-wizard-step button[disabled] {
  filter: alpha(opacity=100) !important;
  opacity: 1 !important;
}
.stepwizard-row:before {
  top: 14px;
  bottom: 0;
  content: " ";
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: #fefefe;
}
.multi-wizard-step {
  text-align: center;
  position: relative;
  display: table-cell;
}
.hide{
  display:none !important;
}

.verification-code {
  max-width: 300px;
  position: relative;
  margin:50px auto;
  text-align:center;
}
.verification-code--inputs input[type=number] {
  border: 0px solid #e1e1e1;
  width: 42px;
  height: 42px;
  padding: 10px;
  text-align: center;
  display: inline-block;
  box-sizing:border-box;
  font-weight: 600;
  font-size: 1.3rem;
  background-color: whitesmoke;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.pointer{
  cursor: pointer;
}
.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #7ac142;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  margin: 10% auto;
  box-shadow: inset 0px 0px 0px #7ac142;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #7ac142;
  }
}

.cover-fit{
  object-fit: cover;
}

.image-bw{
  filter: grayscale(100%);
}


/* Rating Star Widgets Style */
.rating-stars ul {
  list-style-type:none;
  padding:0;
}
.rating-stars ul > li.star {
  display:inline-block;
  
}

/* Idle State of the stars */
.rating-stars ul > li.star > i.fa {
  font-size:2.5em; /* Change the size of the stars */
  color:#ccc; /* Color on idle state */
}

/* Hover state of the stars */
.rating-stars ul > li.star.hover > i.fa {
  color:#FFCC36;
}

/* Selected state of the stars */
.rating-stars ul > li.star.selected > i.fa {
  color:#FF912C;
}

.typewriter {
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: .15em solid orange; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  letter-spacing: .15em; /* Adjust as needed */
  animation: 
    typing 3.5s steps(40, end),
    blink-caret .75s step-end infinite;
}

/* The typing effect */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: orange; }
}

.icon-services{
  width: 84px;
  padding: 15px;
  border: solid 2px #dedcdcbf;
  border-radius: 25px;
}

.bg-gradient-1{
  background: linear-gradient(135deg, #7158fe, #9d4de6);
}

