@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Teko:wght@300..700&display=swap");
/*
font-family: "Manrope", sans-serif;
*/

body {
  font-family: "Manrope", sans-serif;
  font-size: var(--font-14);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--off-black);
}

a:hover {
  text-decoration: none;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

p:nth-last-child(1) {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

button,
button:focus,
input:focus,
.form-control:focus,
.form-select:focus,
.form-check-input:focus {
  outline: 0;
  box-shadow: none;
  font-family: "Manrope", sans-serif;
}

.btn {
  padding: 7px 20px;
  font-weight: 600;
}

.blue-btn {
  background-color: var(--secondary-color);
  color: var(--white);
  font-size: var(--font-14);
}

.blue-btn:hover,
.border-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.border-btn {
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  font-size: var(--font-14);
}

:root {
    --primary-color: #0e0d32;
    --light-primary: #1c1a64;
    --secondary-color: #4541fc;
    --light-secondary: #c7c6fe;
    --dark-font-color: #070619;
    --light-font-color: #3b3b47de;
    --border-color: #e6e6e8;
    --white: #fff;
    --font-12: 12px;
    --font-14: 14px;
    --font-18: 18px;
    --font-24: 24px;
    --font-16: 16px;
}

/*Left Menu*/
.intersight_menu {
  background-color: var(--primary-color);
  max-width: 264px;
  height: 100vh;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
}

.top_menu {
  padding: 16px;
}

.brand button {
  font-size: var(--font-14);
  height: 46px;
  text-align: left;
  border-radius: 4px;
  background-color: var(--light-primary);
  color: var(--white);
  gap: 10px;
  position: relative;
}

.brand button:after,
.bottom_menu .dropdown button:after {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.brand button span {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background-color: #ececff;
}

.brand .dropdown-menu li a.dropdown-item {
  font-size: var(--font-14);
}

.menu_div {
  margin-top: 25px;
}

.menu_div li.without_label {
  font-size: 12px;
  font-weight: 600;
  color: rgb(255 255 255 / 40%);
  text-transform: uppercase;
  padding: 25px 10px 10px;
}

.menu_div li a {
  color: var(--white);
  width: 100%;
  height: 36px;
  border-radius: 4px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2px;
}

.menu_div li a.active,
.menu_div li a:hover {
  background-color: var(--light-secondary);
  color: var(--dark-font-color);
  font-weight: 600;
}

.menu_div li a.active svg path,
.menu_div li a:hover svg path {
  fill: var(--secondary-color);
}

.menu_div li a span {
  position: relative;
  top: -1px;
}

.bottom_menu {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
}

.bottom_menu p {
  border-bottom: 1px solid #525172;
  padding: 0px 26px 20px;
}

.bottom_menu p a {
  color: #a2a0fd;
  font-weight: 600;
  line-height: 24px;
}

.user_person {
  padding: 0px 20px 0px;
}

.bottom_menu .dropdown button {
  background: transparent;
  color: #fff;
  text-align: left;
  gap: 12px;
}

.bottom_menu .dropdown .dropdown-menu li .dropdown-item {
  color: #000;
  font-size: var(--font-14);
  padding: 4px 10px;
  display: block;
  height: auto;
}

.person_icon {
  background: var(--secondary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.person_name span {
  font-size: 12px;
  color: rgb(255 255 255 / 56%);
}

@media (min-width: 1199px) {
  .navbar-toggler {
    display: none;
  }
}

.navbar-toggle .icon-bar:nth-of-type(2) {
  top: 4px;
}

.navbar-toggle .icon-bar:nth-of-type(3) {
  top: 8px;
}

.navbar-toggle .icon-bar {
  position: relative;
  transition: all 500ms ease-in-out;
  background-color: #fff;
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}

.navbar-toggle.active .icon-bar:nth-of-type(1) {
  top: 6px;
  transform: rotate(45deg);
}

.navbar-toggle.active .icon-bar:nth-of-type(2) {
  background-color: transparent;
}

.navbar-toggle.active .icon-bar:nth-of-type(3) {
  top: 2px;
  transform: rotate(-45deg);
}

/*intersight_content*/
.intersight_content {
  padding: 16px 65px;
  position: relative;
  width: calc(100% - 264px);
  margin-left: auto;
}

.top_header {
  margin-bottom: 50px;
}

.top_header h1 {
  font-size: var(--font-24);
  color: var(--dark-font-color);
  font-weight: 600;
  margin-bottom: 0;
}

.header-search input {
  color: #b5b4ba;
  border-color: var(--border-color);
  height: 36px;
  font-size: var(--font-14);
  background: #f2f2f3 url(../image/search.svg) no-repeat left 10px center;
  padding-left: 38px;
}

.header-search input::placeholder {
  color: #b5b4ba;
}

.header-search {
  max-width: 456px;
  width: 100%;
}

.header_icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.notification_alert {
  background-color: #e20002;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 7px;
  right: 7px;
}

h2.body_heading {
  color: var(--dark-font-color);
  font-weight: 600;
  font-size: var(--font-18);
  margin-bottom: 20px;
}

.opportunities-box {
  border-radius: 4px;
  border: 1px solid var(--border-color);
  padding: 15px;
}

.opportunities-box .opportunities-icon {
  height: 32px;
  width: 32px;
  background: #e6e6e8;
  border-radius: 4px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.opportunities-box p {
  font-size: var(--font-12);
  color: var(--light-font-color);
}

.opportunities-box p span {
  width: 20px;
  height: 20px;
  background: #ebebeb;
  text-align: center;
  line-height: 20px;
  border-radius: 4px;
}

.opportunities-box h4 {
  color: var(--dark-font-color);
  font-weight: 600;
  font-size: var(--font-16);
  margin-bottom: 0;
  margin-top: 3px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-20 {
  margin-top: 20px;
}

.calender {
  background-image: url(../image/down-caret.svg);
  background-size: 8px 12px;
}

.explore_filter select {
  font-size: 12px;
  color: #070619;
  padding: 4px 35px 4px 30px;
  border-radius: 4px;
}

.explore_filter select option {
  padding-left: 0px;
}

.explore_filter img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}

.company {
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: 4px;
}

.company-logo-dropdown .company-dropdown {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.company-logo-dropdown .dropdown button {
  background: transparent;
}

.company-logo-dropdown .dropdown button:after {
  display: none;
}

.company-logo-dropdown .dropdown .dropdown-menu .dropdown-item {
  font-size: var(--font-14);
}

h3.small_heading {
  color: var(--dark-font-color);
  font-weight: 600;
  font-size: var(--font-16);
}

.company-info h3 {
  margin-top: 20px;
}

.company-info p {
  color: var(--light-font-color);
}

.company-info {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.record span {
  font-size: var(--font-12);
  color: var(--light-font-color);
}

.record label,
.record label a span {
  font-size: var(--font-14);
  color: var(--dark-font-color);
  font-weight: 500;
}

/*Engage page*/
.back-option a {
  color: var(--light-font-color);
  font-size: 12px;
}

.explore_alpha li {
  padding: 0px 20px 0px 12px;
  position: relative;
}

.explore_alpha li:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 16px;
  background: #e6e6e8;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.explore_alpha li:last-child {
  padding-right: 0px;
}

.explore_alpha li:last-child:after {
  display: none;
}

.engage-tabs .nav {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 40px;
}

.engage-tabs .nav .nav-item .nav-link {
  color: var(--light-font-color);
  border-bottom: 3px solid transparent;
  border-radius: 0px;
  padding: 15px 0px;
  margin-right: 28px;
}

.engage-tabs .nav .nav-item .nav-link.active {
  border-bottom: 3px solid var(--secondary-color);
  background-color: transparent;
  color: var(--secondary-color);
  font-weight: 600;
}

.engage-tabs .nav .nav-item .nav-link.active svg path {
  fill: var(--secondary-color);
}

.engage-tabs .nav .nav-item .nav-link span {
  display: inline-block;
  margin-right: 5px;
}

.body_heading.width-left-border {
  border-left: 3px solid #c7c6fe;
  padding-left: 10px;
  border-radius: 2px;
}

.body_heading.width-left-border a {
  font-size: var(--font-14);
  font-weight: 600;
  color: var(--secondary-color);
}

.simler-company {
  border: 1px solid var(--border-color);
  border-top: 2px solid var(--dark-font-color);
  border-radius: 0px 0px 4px 4px;
  margin-bottom: 40px;
}

.simler-company .simler-company-details {
  border-bottom: 1px solid var(--border-color);
  padding: 15px;
}

.simler-company .simler-company-details:last-child {
  border-bottom: none;
}

.contracts .company-dropdown {
  background: #f2f2f3;
  border: none;
  border-radius: 50%;
}

.simler-company .record label em {
  font-size: 12px;
  background: #f2f2f3;
  color: var(--light-font-color);
  font-style: normal;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 4px;
}

.contracts .simler-company .record label {
  margin-bottom: 3px;
}

.simler-company .record span i {
  background-color: var(--light-font-color);
  width: 2px;
  height: 2px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin: 0px 4px;
}

.activity_list .simler-company {
  border-top: 1px solid var(--border-color);
  border-radius: 4px;
}

.activity_list .company-dropdown {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.email-send {
  font-size: 12px;
  color: var(--light-font-color);
  font-weight: 500;
  margin-bottom: 8px;
  position: relative;
}

.activity_list .simler-company .simler-company-details {
  padding: 10px;
}

.activity_list .simler-company .simler-company-details .record span strong {
  font-weight: 500;
}

.activity_list .simler-company {
  margin-left: 30px;
  margin-bottom: 0px;
  background: var(--white);
}

.email-send img {
  margin-right: 10px;
  border-top: 5px solid #fff;
  border-bottom: 5px solid #fff;
}

li.contracts {
  padding-bottom: 20px;
}

li.contracts:before {
  content: "";
  width: 1px;
  border-left: 1px solid var(--border-color);
  position: absolute;
  top: 0;
  left: 9px;
  bottom: 0;
}

li.contracts.reply_li .simler-company {
  position: relative;
}

li.contracts.reply_li .simler-company:after {
  content: "";
  border: 1px solid var(--border-color);
  position: absolute;
  top: 0;
  left: 10px;
  bottom: -7px;
  right: 10px;
  border-radius: 4px;
  z-index: -1;
}

.view_more {
  margin-top: 12px;
  padding-left: 35px;
  margin-bottom: 0;
}

li.contracts.reply_li .view_more:before {
  content: "";
  position: absolute;
  background: url(../image/reply_line.svg);
  left: 8px;
  width: 25px;
  height: 93px;
  bottom: 10px;
}

.activity-history,
.opportunity_details {
  padding-right: 55px;
}

.sub_heading {
  font-size: var(--font-12);
  color: var(--light-font-color);
  padding-left: 12px;
}

.sub_heading a {
  font-size: var(--font-14);
  color: var(--secondary-color);
  font-weight: 600;
}

.ai_content {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
}

.ai_content h6 {
  background: rgb(255, 249, 237);
  background: linear-gradient(
    48deg,
    rgba(255, 249, 237, 1) 0%,
    rgba(218, 217, 254, 1) 100%
  );
  font-size: var(--font-12);
  color: var(--primary-color);
  padding: 5px 0px;
  margin-bottom: 0px;
}

.ai_content p {
  color: var(--dark-font-color);
  font-weight: 600;
  padding: 12px 12px;
}

.ai_content.active {
  border-color: var(--secondary-color);
}

.problems_solve {
  border: 1px solid var(--border-color);
  border-top: 2px solid var(--dark-font-color);
}

.problems_solve h3 {
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
}

.list-type {
  padding: 25px 15px;
}

.list-type li {
  font-weight: 500;
  color: var(--dark-font-color);
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0px;
}

.list-type li span {
  width: 24px;
  height: 24px;
  background: #f2f2f3;
  text-align: center;
  color: #9c9ba3;
  flex: 0 0 24px;
  border-radius: 50%;
  line-height: 24px;
}

.list-type li:last-child {
  border-bottom: none;
}

.vertical-tabs .nav .nav-link {
  padding: 0px 0px 12px;
  text-align: left;
}

.vertical-tabs .nav .nav-link.active {
  background: transparent;
  border: none;
}

.vertical-tabs .nav .nav-link.active .ai_content {
  border-color: var(--secondary-color);
}

.vertical-tabs .nav {
  max-width: 340px;
  width: 100%;
  border-bottom: none;
  margin-right: 40px;
}

.business_tabs {
  padding: 0px 15px;
}

.business_tabs .nav .nav-item .nav-link {
  margin-right: 0px;
  padding: 5px 20px;
  border-bottom: none;
}

.business_tabs .nav .nav-item .nav-link.active {
  color: var(--dark-font-color);
  background: #ececff;
  border-radius: 4px;
  border-bottom: none;
  font-weight: 500;
}

.business_tabs .nav {
  max-width: unset;
}

.send-content {
  background-color: #ececff;
  border-radius: 4px;
  padding: 9px 15px;
}

.share_content label {
  color: var(--dark-font-color);
  font-weight: 600;
  padding-right: 20px;
  line-height: 16px;
  border-right: 1px solid #d1d1ff;
}

.share_content a {
  font-weight: 600;
  color: var(--secondary-color);
  padding-left: 20px;
}

.unselect {
  color: var(--dark-font-color);
  font-weight: 500;
}

.suggested_slider img {
  display: inline-block;
}

.suggested_slider-content {
  padding: 15px;
}

.suggested_slider-content h5 {
  font-size: var(--font-16);
  color: var(--dark-font-color);
  font-weight: 600;
}

.suggested_slider-content label {
  font-size: var(--font-14);
  color: var(--light-font-color);
  display: block;
  margin-bottom: 10px;
}

.tags span {
  font-size: 12px;
  background: #f2f2f3;
  color: var(--light-font-color);
  font-style: normal;
  padding: 2px 6px;
  border-radius: 10px;
  margin-right: 4px;
}

.play {
  width: 40px;
  height: 40px;
  background-color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 25px rgb(0 0 0 / 25%);
}

.input_checkbox {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 10px;
  top: 10px;
  margin-top: 0;
}

.input_checkbox:checked {
  background-color: #00c2a3;
  border-color: #00c2a3;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.ai_content.active {
  border-color: var(--secondary-color);
}

.selected-card .ai_content {
  margin-bottom: 20px;
}

.search_tab input {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  height: 28px;
  font-size: 12px;
  min-width: 180px;
  padding: 0px 0px 0px 30px;
}

.button_group {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  height: 28px;
}

.button_group a {
  width: 28px;
  text-align: center;
  height: 28px;
  line-height: 24px;
  overflow: hidden;
}

.button_group a.active svg path {
  fill: var(--secondary-color);
}

.button_group a.active {
  background: #f2f2f3;
}

.middle-line {
  width: 1px;
  background-color: var(--border-color);
  height: 15px;
  margin: 0px 10px;
}

.small_btn {
  font-size: 12px;
  padding: 4px 10px;
}

.small_btn img {
  vertical-align: text-bottom;
}

.notes_card,
.note_topic {
  background-color: #f7f7f8;
  border-radius: 4px;
  padding: 1.5rem;
}

.notes_header span {
  color: var(--light-font-color);
  font-size: var(--font-12);
}

.pricing_terms {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.pricing_terms h6 {
  margin-top: 15px;
  font-size: var(--font-14);
  font-weight: 600;
  color: var(--dark-font-color);
  margin-bottom: 4px;
}

.pricing_terms p {
  font-size: var(--font-14);
  color: var(--dark-font-color);
  line-height: 20px;
}

.topic p {
  font-size: var(--font-14);
  color: var(--contrast-color) !important;
  margin-bottom: 6px;
  position: relative;
  padding-left: 15px;
}

.topic p:before {
  content: "";
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background-color: var(--contrast-color) !important;
  position: absolute;
  top: 35%;
  left: 0;
}

.topic .tags {
  margin-bottom: 15px;
}

.topic {
    gap: 4px !important;
}

.buttons_group {
  margin-top: 15px;
}

.note_topic .progress {
  height: 4px;
}

.note_topic .progress .progress-bar {
  background-color: #00c2a3;
}

.note_topic p {
  font-weight: 500;
  color: var(--dark-font-color);
  margin: 0 !important;
}

.blank_note {
  height: calc(100% - 104px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blank_note .ai_call {
  width: 200px;
}

.blank_note_create .buttons_group a.border-btn {
  border-color: #9c9ba3;
  color: #9c9ba3;
}

.blank_note_create .buttons_group a.blue-btn {
  border-color: #9c9ba3;
  background-color: #9c9ba3;
}

.blank_note_create {
  height: 100%;
}

/*Filter*/
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 9;
  top: 0;
  right: 0;
  background-color: rgba(17, 17, 17, 0.5);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

#inner-style,
#inner-styletwo,
#inner-stylethree,
#inner-stylefour,
#inner-stylefive,
#inner-stylesix,
#inner-styleseven {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background: var(--white);
  overflow-x: hidden;
  transition: 0.5s;
}

#inner-style.filter_width,
#inner-styletwo.filter_width_publish,
#inner-stylethree.filter_width_task,
#inner-stylefour.filter_width_content,
#inner-styleseven.send_doc {
  width: 590px;
}

#inner-stylefive.filter_width_matrix,
#inner-stylesix.filter_width_matrix {
  width: 387px;
}

#inner-stylefive .inner_nav {
  padding: 20px 20px;
}

.filter_header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
  margin-bottom: 25px;
}

.filter_header h3 {
  margin-bottom: 0;
  font-weight: 400;
}

.inner_nav {
  padding: 20px 30px;
}

.filter_header h3 {
  font-size: var(--font-18);
  color: var(--dark-font-color);
  font-weight: 600;
}

.form-style .form-group {
  margin-bottom: 25px;
}

.form-style .form-group label {
  font-weight: 600;
  color: var(--dark-font-color);
  margin-bottom: 8px;
}

.form-style .form-group .form-control {
  height: 40px;
  font-size: 14px;
}

.form-style .form-group textarea.form-control {
  height: auto;
}

.form-style .blue-btn {
  width: 140px;
}

.form-style .cancel {
  font-weight: 600;
  color: var(--secondary-color);
  margin-right: 30px;
}

.note_content h3 {
  font-size: var(--font-18);
  color: var(--dark-font-color);
  font-weight: 600;
}

.clientmeeting span {
  font-size: var(--font-12);
  color: var(--light-font-color);
}

.term_checkbox input {
  flex: 0 0 24px;
}

.term_content p {
  color: var(--dark-font-color);
  font-weight: 600;
  margin-bottom: 4px;
}

.term_content span {
  color: var(--dark-font-color);
  display: block;
}

.term_checkbox {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 20px;
}

.need_fileds {
  margin-bottom: 25px;
  background: #f1f1f2;
  border-radius: 4px;
  padding: 15px 10px;
  font-size: var(--font-12);
  color: var(--light-font-color);
  line-height: 20px;
}

.need_fileds span {
  color: var(--dark-font-color);
}

.bottom_fix {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 90%;
  margin: auto;
}

@media (min-width: 576px) {
  .publish_modal {
    max-width: 324px;
  }
}

.publish-icon {
  background: rgb(229, 229, 253);
  background: linear-gradient(
    180deg,
    rgba(229, 229, 253, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  width: 86px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 15px;
}

.publish_msg h3 {
  font-size: var(--font-18);
  color: var(--dark-font-color);
  font-weight: 600;
}

.publish_msg p {
  color: var(--dark-font-color);
}

.btn-close {
  font-size: 10px;
  position: absolute;
  top: 15px;
  right: 15px;
}

.publish_msg button {
  background: transparent;
  border: none;
  font-weight: 600;
  color: var(--secondary-color);
  margin-top: 10px;
}

.publish_modal .modal-body {
  padding: 40px 40px;
}

.font-14 {
  font-size: var(--font-14);
  color: var(--dark-font-color);
  font-weight: 600;
}

.font-12 {
  font-size: var(--font-12);
  color: var(--light-font-color);
}

.font-18 {
  font-size: var(--font-18);
  color: var(--dark-font-color);
  font-weight: 600;
}

.task_table .table thead {
  border-radius: var(--Medium, 4px);
  background: #f5f5f5;
  color: #9f9ea6;
  border-radius: 4px;
}

.task_table .table thead tr th {
  border-bottom: transparent;
  font-weight: 400;
  padding: 0.8rem 0.5rem;
}

.task_table .table tbody tr td {
  color: var(--dark-font-color);
  font-weight: 500;
  vertical-align: middle;
  padding: 0.6rem 0.5rem;
}

.status {
  background: #e2e2e4;
  padding: 8px 10px;
  border-radius: 30px;
  color: #83838c;
  display: inline-block;
}

.assigned-member {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .table-responsive {
    overflow-x: visible;
  }
}

.status.status_done {
  color: #155b51;
  background: #d5fbf5;
}

.advisor {
  border-top: 1px solid var(--border-color);
  margin: 15px -65px -15px;
  height: calc(100vh - 68px);
}

.advisor-left {
  border-right: 1px solid var(--border-color);
  max-width: 264px;
  flex: 0 0 264px;
  padding: 24px;
}

.discussion-topic a {
  padding: 12px 14px 11px 16px;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  border-radius: 4px;
  font-weight: 500;
  color: var(--dark-font-color);
}

.discussion-topic a.active {
  background: #f5f5f5;
}

.advisor-right {
  padding: 24px;
  width: 100%;
}

.advisor-msg {
  color: #155b51;
  border-radius: 4px;
  background: #d3f5f0;
  padding-right: 30px;
  max-width: 712px;
  margin: 0 auto;
}

.ask_input input {
  padding: 13px 16px;
  border-radius: 4px;
  font-size: 14px;
  color: #b5b4ba;
}

.ask_input button {
  background: var(--secondary-color);
  border: none;
  height: 32px;
  width: 32px;
  position: absolute;
  top: 8px;
  right: 8px;
}

.ask_advisor {
  max-width: 556px;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
}

.quetions_mark a {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 13px 16px;
  font-weight: 500;
  margin-bottom: 14px;
}

.questions {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 100%;
  max-width: 556px;
}

.user_color {
  background-color: var(--secondary-color);
}

.user_icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex: 0 0 40px;
}

.user_text h5 span {
  color: var(--light-font-color);
  font-weight: 400;
  padding-left: 4px;
}

.user_text p {
  font-weight: 400;
  line-height: 20px;
}

.advisor_color {
  background: #898991;
}

.chat_advisor .user_msg {
  margin-bottom: 25px;
}

.form_mailer label {
  max-width: 82px;
  width: 100%;
}

.cc_bcc {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: var(--light-font-color);
  font-weight: 500;
}

.content-send,
.cards_content {
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.content-send .form-group textarea {
  border: 0px;
}

.send_box {
  padding: 15px;
}

.content_send_box a {
  color: var(--secondary-color);
}

.cards_content {
  padding: 20px;
  margin-top: 10px;
}

.form_mailer .form-group {
  margin-bottom: 10px;
}

.cards_content p {
  font-size: var(--font-16);
  font-weight: 600;
  color: var(--primary-color);
}

.cards_content span.content_slider {
  color: var(--light-font-color);
  display: inline-block;
  line-height: 20px;
  margin: 7px 0px 12px;
}

.closecard {
  background: transparent;
  border: none;
  position: absolute;
  right: 15px;
  top: 15px;
  padding: 0px;
}

.form-style .form-group .form-control::placeholder {
  color: var(--light-font-color);
}

.box_card {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  transition: all 0.2s;
  will-change: transform;
  user-select: none;
  cursor: pointer;
}

.cards_content {
  flex: 0 0 338px;
  max-width: 338px;
  width: 100%;
}

/*Activities*/
@media (min-width: 576px) {
  .transcript_modal {
    max-width: 940px;
  }

  .schedulecall_modal {
    max-width: 868px;
  }
}

.activities .tabs_view .explore_filter input,
.documents .tabs_view .explore_filter input {
  min-width: 240px;
}

.activities_table p {
  font-size: var(--font-12);
  color: var(--light-font-color);
}

.transcript_modal h3 {
  font-size: var(--font-18);
  color: var(--dark-font-color);
  font-weight: 600;
}

.transcript_header .nav .nav-item .nav-link {
  font-weight: 600;
  color: var(--dark-font-color);
  margin-right: 8px;
  padding: 7px 10px;
  border: 1px solid var(--border-color);
}

.transcript_header .nav .nav-item .nav-link.active {
  background-color: transparent;
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.transcript_modal .modal-body {
  padding: 25px;
}

.drop_icon {
  width: 68px;
  height: 68px;
}

.dropFiles {
  width: 100%;
  min-height: 100px;
  text-align: center;
  font-size: 25px;
  border-radius: 8px;
  background: #f3f3f3;
  height: 380px;
}

.highlightDropArea {
  border: 1px dashed #ddd;
  background-color: #eee;
}

.upload_content .publish-icon {
  background: rgb(229, 229, 253);
}

.upload_content span {
  font-size: var(--font-16);
  color: var(--dark-font-color);
  font-weight: 600;
}

.upload_content span input {
  position: absolute;
  left: 0;
  opacity: 0;
  top: 0;
  width: 130px;
  height: 20px;
}

.upload_content h6 {
  color: var(--light-font-color);
  line-height: 8px;
}

.bottom_button_groups {
  border-top: 1px solid var(--border-color);
  margin: 25px -25px 0px;
  padding: 15px 25px 0px;
}

.cloud_section a {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 15px;
  font-size: var(--font-18);
  font-weight: 500;
  color: var(--dark-font-color);
}

.activities .send-content .delete {
  font-weight: 600;
  color: var(--secondary-color);
}

.client-msg-details {
  background-color: #f7f7f8;
  border-radius: 4px;
  padding: 15px;
  margin-bottom: 10px;
}

.client-msg-details p span {
  color: var(--light-font-color);
  padding-left: 15px;
}

.client-msg-details p span:before {
  content: "";
  width: 2px;
  height: 2px;
  background: var(--light-font-color);
  position: absolute;
  top: 53%;
  left: 6px;
}

.call_details {
  padding: 15px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  padding: 15px;
}

/*New Css*/
.filter_dropdown button.dropdown-toggle img {
  transform: unset;
}

.filter_dropdown button.dropdown-toggle {
  font-size: 12px;
  color: #070619;
  padding: 4px 30px 4px 8px;
  border-radius: 4px;
  background: transparent;
  border: 1px solid var(--border-color);
}

.filter_dropdown button.dropdown-toggle:after {
  color: #83838c;
  position: absolute;
  right: 15px;
  font-size: 14.5px;
}

.filter_dropdown .dropdown-menu {
  border: none;
  min-width: 140px;
}

.filter_dropdown .dropdown-menu li {
  padding: 4px 10px;
  font-weight: 500;
  font-size: var(--font-14);
}

.filter_dropdown .dropdown-menu li input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.filter_dropdown .search_tab input {
  min-width: 150px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: -4px;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.toggle input:checked + .slider {
  background-color: var(--secondary-color);
}

.toggle input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

.toggle input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.toggle span {
  font-weight: 500;
}

.speakar-video {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}

.speaker_list .company-dropdown {
  border-radius: 50%;
  flex: 0 0 40px;
}

.speaker_list .progress {
  height: 8px;
  margin-top: 8px;
}

.speaker_list .progress .green_color {
  background: #00ac47;
}

.speaker_list .progress .blue_color {
  background: #5258f3;
}

.speaker_list .progress .orange_color {
  background: #f39561;
}

.note_para {
  height: calc(100vh - 440px);
  overflow-y: auto;
}

.note_para p {
  font-size: var(--font-12);
  font-weight: 500;
  color: #aca9a9;
  border-radius: 8px;
  margin-bottom: 3px;
  cursor: pointer;
}

.note_para p span {
  min-width: 40px;
}

.note_para .active {
  background: #f6f5f5;
}

.note_para .active p {
  display: flex;
  align-items: self-start;
}

.note_meeting {
  padding: 8px;
}

.note_meeting .cancel {
  font-weight: 600;
}

.company-logo-dropdown .dropdown-menu {
  border: none;
  border: none;
  min-width: max-content;
}

.company-logo-dropdown .dropdown-menu li a {
  padding: 4px 10px;
  font-weight: 500;
  font-size: var(--font-14);
}

.alert_assign {
  width: 397px;
  padding: 16px;
  box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.16);
  gap: 24px;
  border-radius: 8px;
  position: fixed;
  top: 60px;
  right: 65px;
}

.alert_assign p {
  font-weight: 600;
}

.pricing_ai p {
  font-size: var(--font-12);
  font-weight: 500;
  color: var(--light-font-color);
  line-height: 20px;
}

.pricing_ai {
  margin-top: 20px;
}

.transscript_tab .client-msg-details {
  background: transparent;
  padding: 0;
  margin-bottom: 15px;
}

.transscript_tab {
  overflow-y: auto;
  height: 70vh;
}

.files_meeting .cards_content {
  max-width: unset;
}

.documents-scratch .add_notes_cards .notes_header span.select-card {
  font-size: var(--font-16);
  min-height: 48px;
  display: block;
}

.documents-scratch .notes_card .note_topic {
  min-height: 255px;
}

.documents-scratch .notes_card .note_topic label {
  color: var(--light-font-color);
  font-weight: 400;
}

.documents_add {
  height: 270px;
}

.documents_choose .add_notes_cards .notes_card .note_topic {
  min-height: 278px;
}

.graph_metricks {
  margin-bottom: 16px;
}

.extend-road {
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.extend-road .graph_metricks {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 15px;
}

.extend-road .graph_metricks p {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-font-color);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 14px;
}

.extend-road .graph_metricks .viewer-report span {
  font-size: var(--font-12);
  color: var(--light-font-color);
}

@media (min-width: 576px) {
  .document_modal {
    max-width: 1240px;
  }
}

.general_content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-font-color);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.general_content {
  margin-top: 30px;
}

.general_content .notes_card .notes_header .select-card {
  font-size: var(--font-16);
  min-height: 48px;
  display: block;
}

.transcript_modal h3 a {
  font-size: 16px;
  color: var(--light-primary);
  padding-right: 25px;
}

#genrate_transcript .btn-close {
  top: 28px;
}

.documents-scratch .notes_card .note_topic.blank_note {
  height: calc(100% - 115px);
}

.documents-scratch .notes_card .note_topic.blank_note .ai_call {
  width: 220px;
}

.documents-scratch .notes_card .note_topic.blank_note .ai_call p {
  margin-bottom: 8px;
}

.documents-scratch .notes_card .note_topic.blank_note .ai_call span {
  font-size: var(--font-12);
  margin-bottom: 10px;
  color: var(--light-font-color);
  display: block;
}

.documents-scratch .notes_card .buttons_group a.border-btn {
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
}

.documents-add-page {
  max-width: 600px;
  margin: 0 auto;
}

.button-docs button {
  font-weight: 600;
  border: 1px solid var(--mud-palette-primary);
  color: var(--mud-palette-primary);
  padding-block: 4px !important;
  padding-inline: 12px !important;
  display: inline-block;
}

.documents-add-page .company-logo-dropdown .body_heading h2 {
  opacity: 0.5;
}

.editor_tabs .suggested-btn {
  position: absolute;
  top: 0;
  right: 0;
}

.typing span {
  color: var(--light-font-color);
  display: block;
  margin-bottom: 15px;
  position: relative;
}

.ai_magic {
  text-align: center;
  line-height: 44px;
  width: 110px;
  height: 42px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  color: var(--dark-font-color);
  position: absolute;
  bottom: -50px;
  z-index: 1;
  left: 0;
  background: var(--white);
}

.ai_magic img {
  max-height: 20px;
}

.orignal {
  background: #f6f6f6;
  border-radius: 8px;
  padding: 15px;
  border: 1px solid var(--border-color);
  min-height: 161px;
}

.orignal p {
  font-weight: 700;
  margin-bottom: 8px;
}

.orignal span {
  font-size: var(--font-12);
  color: var(--light-font-color);
  line-height: 20px;
}

.orignal-textarea textarea {
  margin-top: 20px;
  font-size: 14px;
  padding-bottom: 60px;
  border-radius: 8px;
}

.orignal-textarea a {
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.Engagement_matrix .viewer span {
  font-size: var(--font-12);
  color: var(--light-font-color);
  font-weight: 500;
}

.Engagement_matrix {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.document-visitor h6 {
  font-weight: 600;
  font-size: var(--font-12);
  color: var(--dark-font-color);
}

.document-visitor .record label em {
  font-size: 12px;
  background: #f2f2f3;
  color: var(--light-font-color);
  font-style: normal;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 4px;
}

.document-visitor .company-dropdown {
  background: #f2f2f3;
  border: none;
  border-radius: 50%;
  flex: 0 0 40px;
}

.document-visitor .simler-company-details {
  margin-top: 15px;
}

.suggested-question .list-type li {
  border: 1px solid var(--border-color);
  margin-top: 10px;
  font-size: var(--font-12);
  color: var(--light-font-color);
  padding: 10px 10px;
  border-radius: 8px;
}

.share-list .explore_filter input {
  width: 100%;
  height: 36px;
}

.member-image {
  flex: 0 0 36px;
  max-width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
}

.member_list p {
  font-weight: 500;
}

@media (min-width: 576px) {
  #shareModal .modal-dialog {
    max-width: 464px;
  }
}

.buttons_member a {
  padding: 7px 12px;
}

/*Dropdown filter*/
.dropdown_filter button {
  background: transparent;
  border-radius: 4px;
  font-size: 12px;
  border: 1px solid #dee2e6;
  padding: 4px 8px;
}

.dropdown_filter button img {
  transform: unset;
}

.dropdown_filter button:after {
  color: #8f8f8f;
  font-size: 16px;
}

.dropdown_filter .dropdown-menu {
  border: none;
}

.dropdown_filter .dropdown-menu.range_slider {
  width: 366px;
  padding: 20px 15px 25px;
}

.range_selection input[type="range"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  outline: none;
  position: absolute;
  margin: auto;
  top: auto;
  bottom: 0px;
  background-color: transparent;
  pointer-events: none;
}

.range_selection {
  position: relative;
}

.slider-track {
  width: 100%;
  height: 5px;
  position: relative;
  border-radius: 5px;
}

.range_selection input[type="range"]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  height: 5px;
}

.range_selection input[type="range"]::-moz-range-track {
  -moz-appearance: none;
  height: 5px;
}

.range_selection input[type="range"]::-ms-track {
  appearance: none;
  height: 5px;
}

.range_selection input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 22px;
  width: 22px;
  background-color: #3264fe;
  cursor: pointer;
  margin-top: -9px;
  pointer-events: auto;
  border-radius: 50%;
}

.range_selection input[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;
  height: 22px;
  width: 22px;
  cursor: pointer;
  border-radius: 50%;
  background-color: #3264fe;
  pointer-events: auto;
  border: none;
}

.range_selection input[type="range"]::-ms-thumb {
  appearance: none;
  height: 22px;
  width: 22px;
  cursor: pointer;
  border-radius: 50%;
  background-color: #3264fe;
  pointer-events: auto;
}

.range_selection input[type="range"]:active::-webkit-slider-thumb {
  background-color: #ffffff;
  border: 1px solid #3264fe;
}

.values_amount {
  font-size: 12px;
  font-weight: 500;
  color: var(--light-font-color);
}

.values_amount span {
  font-size: var(--font-16);
  display: block;
  color: var(--dark-font-color);
  position: relative;
}

.values {
  margin-bottom: 30px;
}

.values_amount span:before {
  content: "$";
  padding-right: 1px;
}

.values_amount span:after {
  content: "K";
  padding-left: 1px;
}

.custom_date_picker input {
  font-size: var(--font-12);
  padding: 4px 35px 4px 30px;
  border-radius: 4px;
  background-image: url(../image/down-caret.svg);
  background-size: 8px 12px;
  background-size: 8px 12px;
  background-repeat: no-repeat;
  background-position: right 14px center;
}

pre {
  white-space: unset;
}

.custom_date_picker_new input {
  background: transparent;
  border-radius: 4px;
  font-size: 12px;
  border: 1px solid #dee2e6;
  padding: 4px 8px;
}

.value_days span:before,
.value_days span:after {
  display: none;
}

.colors {
  height: 8px;
  border-radius: 8px;
  width: 74px;
}

.blue-color {
  background-color: var(--secondary-color);
}

.green-color {
  background: #00ac47;
}

.orange-color {
  background: #f39561;
}

.grey-color {
  background: rgb(171, 171, 171);
}

.brown-color {
  background: rgb(125, 54, 32);
}

.yellow-color {
  background: rgb(251, 195, 10);
}

.colortopic li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #aca9a9;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.videodiv {
  width: 143px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #838383;
  margin-bottom: 12px;
}

.video-card h2 {
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  font-weight: 500;
}

.video-card {
  color: #bbb5b5;
  font-size: 14px;
  font-weight: 500;
}

.video-sec {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* @media (min-width: 576px) {
    .modal-dialog {
        max-width: 1000px;
    }} */
.font-18 {
  font-size: 18px;
  font-weight: 600;
}

.form-design label {
  margin-bottom: 7px;
  color: var(--dark-font-color);
}

.form-design .form-group {
  margin-bottom: 15px;
}

.form-design .form-control {
  font-size: 14px;
  font-weight: 500;
}

.border-left {
  border-left: 1px solid rgba(229, 229, 229, 1);
}

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

.dayname {
  color: #aca9a9;
  text-align: center;
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-bottom: 7px;
  font-weight: 500;
}

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

.datenumber {
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: black;
  margin: 4px;
  cursor: pointer;
}

.darklight {
  color: rgba(51, 51, 51, 1);
  margin-bottom: 7px;
}

.timebtn {
  width: 127px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: left;
  border: none;
  padding-left: 10px;
  border-radius: 8px;
  color: rgba(0, 0, 0, 1);
  background: transparent;
  border: 1px solid rgba(229, 229, 229, 1);
  font-size: 12px;
  gap: 9px;
  font-weight: 500;
}

.fillcolor {
  background: rgba(245, 245, 245, 1) !important;
  border: none;
}

.timebtnsec {
  flex-wrap: wrap;
  gap: 5px;
}

.form-style .form-check-input {
  width: 20px;
  height: 20px;
}

.formchecklabel {
  position: relative;
  top: 4px;
  left: 9px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.8);
}

.participantitem {
  position: absolute;
  bottom: 17%;
  left: 7px;
  display: flex;
  align-items: center;
  gap: 10px;
  /* display: none; */
}

.participant-data {
  background-color: rgba(238, 238, 238, 1);
  border-radius: 30px;
  padding: 4px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 1);
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.suggested-card-content h5 {
  font-size: var(--font-18);
}

.datetags span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(36, 36, 36, 1);
  margin-bottom: 7px;
}

.lastupdate span {
  color: rgba(36, 36, 36, 1);
  margin-left: 7px;
}

.call-detail-sec {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
}

.call-detail-date {
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.8);
}

.small-card {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 10px;
  margin-top: 8px;
  margin-bottom: 5px;
}

.upcoming {
  background: #e2e2e4;
  padding: 4px 9px;
  border-radius: 30px;
  color: #848080;
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
}

.table-heading-background-white {
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
}
/* 10-nov-24 */
.explore_filter_main .form-select {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}

.table-heading-background-white th {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500 !important;
}

.ract-img {
  width: 27px;
  height: 27px;
  background-color: #d9d9d9;
}

.transcript-data p {
  color: #aca9a9;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 2px;
}

.transcript-data h3 {
  color: #000;
  font-size: 12px;
  font-weight: 500;
}

.transcript-item h2 {
  color: #000;
  font-size: 14px;
  font-weight: 600;
}

.color-blue {
  color: var(--secondary-color);
}

.border-left-grey {
  border-left: 1px solid #e5e5e5;
  padding-left: 10px;
}

.meeting-transcript {
  max-width: 1230px;
  margin: 0 auto;
}

.meeting-transcript-content p {
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}

.meeting-transcript-content p {
  color: #aca9a9;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 15px;
}

.content-time {
  margin-left: 11px;
  color: #bbb5b5;
  font-size: 14px;
  font-weight: 500;
}
.file-preview-content h4 {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}

.file-preview-content p {
  color: #aca9a9;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 15px;
}

.grey-background {
  background-color: #d9d9d9;
  border-radius: 0pc 8px 8px 0px;
  height: 100%;
}

.filepreviewmodal {
  padding: 0 !important;
  height: 587px;
  border-radius: 8px;
}

.file-preview-content {
  padding: 70px 70px;
}

.file-preview-cancel {
  padding: 19px 39px;
  position: absolute;
  width: 100%;
}

.file-preview-cancel h5 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.fp-cancel-btn {
  background: transparent;
  border: none;
}

.fp-cancel-btn svg {
  width: 32px;
  height: 32px;
}

.page-view-bottom {
  position: absolute;
  bottom: 10%;
  width: 100%;
  text-align: center;
}

.page-view-btn {
  border-radius: 30px;
  color: black;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border: none;
  background-color: #fff;
  width: 163px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#filepreviewmodal {
  background: rgb(0 0 0 / 45%);
}

/* calender css */

.calender-header {
  display: flex;

  align-items: center;
  justify-content: space-between;
}

pre {
  margin: 0;
  cursor: pointer;
}

.days,
.week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin: auto;
  justify-content: space-between;
}

.week div,
.days div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 34px;
  width: 34px;
  cursor: pointer;
  border-radius: 100%;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
}

.week div {
  color: #aca9a9;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}

.display-selected {
  margin-bottom: 10px;
  padding: 20px 20px;
  text-align: center;
}

.border-left-new::before {
  content: "";
  position: absolute;
  border-left: 1px solid rgba(229, 229, 229, 1);
  top: 0;
  bottom: 0;
  margin-left: -18px;
}
