@import url(../fonts/stylesheet.css);

html {
  scrollbar-color: #6969dd #e0e0e0;
  scrollbar-width: thin;
}

a.dropdown-item:hover, a.dropdown-item:focus {
  text-decoration: none;
}

* {
  scroll-behavior: smooth;
}

:root {
  --primary-color: #36C748;
  --white-color: #ffffff;
  --danger-color: #ED3E3E;
  --black-color: #000000;
}

/*****Global CSS*****/
html, body, #root {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

body {
  font-family: 'Biennale';
  font-size: 16px;
  line-height: 1.4;
  /* background: #F1F1F1; */
  background: #fff;

}
p {
  color: #707378;
}
a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

.btn {
  padding: 10px 25px;
  box-shadow: none !important;
  outline: none !important;
  font-size: 16px;
  line-height: 1.4;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none !important;
}

.btn.btn-bordered {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-bordered.color-cancel {
  color: #90949A !important;
  border-color: #90949A !important;
}

.btn-bordered:hover {
  border-color: var(--primary-color);
  color: var(--white-color);
}

.btn.btn-bordered:hover {
  background-color: var(--primary-color) !important;
  color: #fff !important;
}

.btn-bordered.color-cancel:hover path, .btn-bordered.color-cancel:focus path, .btn-bordered.color-cancel:active path {
  stroke: #fff;
}

.btn-bordered.color-cancel path {
  transition: .3s;
}

.btn-rounded {
  border-radius: 24px;
}

.btn-link {
  color: var(--primary-color);
  text-decoration: none;
}

.btn-text {
  padding: 0;
  border: none;
}

.btn-link:hover {
  color: var(--primary-color);
}

.btn-primary {
  background-color: var(--primary-color);
  position: relative;
  border-color: var(--primary-color);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.show {
  color: #fff;
  background-color: #196923 !important;
  border-color: #196923 !important;
}

.btn-purple {
  background: #B2AFFF;
  color: #fff;
}

.btn-purple:hover, .btn-purple:focus, .btn-purple:active {
  background: #7471DE;
  color: #fff;
}

.btn-delete {
  background-color: var(--danger-color);
  position: relative;
  color: #fff;
  border-color: var(--danger-color);
}

.btn-delete:hover, .btn-delete:focus, .btn-delete:active {
  color: var(--danger-color) !important;
  background-color: transparent !important;
  border-color: var(--danger-color) !important;
}

.btn-bordered.color-cancel {
  color: #90949A !important;
  border-color: #90949A !important;
}

.btn-bordered.color-cancel:hover, .btn-bordered.color-cancel:focus, .btn-bordered.color-cancel:active {
  background: #90949A !important;
  color: #FFF !important;
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn.add-btn svg {
  vertical-align: unset;
}

.btn.add-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.text-danger {
  color: var(--danger-color) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.btn-danger {
  background: #FF605A;
  color: var(--white-color);
  border: 1px solid var(--danger-color);
}

.btn-danger:hover, .btn-danger:focus, .btn-danger:active {
  color: var(--danger-color) !important;
  background: transparent !important;
}

.btn-bordered.alternate-color {
  border: 1px solid #E2E3E6;
  color: #707378;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-primary.add-btn svg path {
  stroke: #fff;
}

.btn-bordered.alternate-color:hover svg path, .btn-bordered.alternate-color:focus svg path, .btn-bordered.alternate-color:active svg path {
  stroke: #fff;
}

.btn-bordered.alternate-color:hover, .btn-bordered.alternate-color:focus, .btn-bordered.alternate-color:active {
  border-color: var(--primary-color);
}

.btn-bordered.alternate-color svg path {
  transition: .3s;
}

.btn-bordered.danger:hover, .btn-bordered.danger:focus, .btn-bordered.danger:active {
  background: var(--danger-color) !important;
  border-color: var(--danger-color) !important;
}

.btn.btn-edit {
  background: #383B40;
  color: #fff;
  border-color: #383B40;
}

.btn.btn-edit:hover, .btn.btn-edit:focus, .btn.btn-edit:active {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #fff !important;
}

.btn.btn-edit svg path {
  transition: .3s;
}

.btn.btn-edit:hover svg path, .btn.btn-edit:focus svg path, .btn.btn-edit:active svg path {
  stroke: #fff;
}

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

.mb__30 {
  margin-bottom: 30px !important;
}

.mb__40 {
  margin-bottom: 40px !important;
}

.form-control, input:not([type="checkbox"]):not([type="radio"]) {
  outline: none;
  box-shadow: none !important;
  background: var(--white-color);
  border: 1px solid #C1C7CF;
  border-radius: 5px;
  height: auto;
  padding: 10px 13px;
  line-height: 1.4;
  font-weight: 400;
  font-size: 16px;
  color: #171717;
}

.no-label input {
  display: block !important;
  width: 20px;
  height: 20px;
  display: inline-block;
  border: 1px solid #C1C7CF;
  border-radius: 4px;
  margin: 0 !important;
}

.no-label label::before {
  display: none !important;
}

.no-label label {
  padding: 0 !important;
}

.no-label input[type="checkbox"]:checked {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27%3e%3cpath  d=%27M4.1,12.7 9,17.6 20.3,6.3%27 fill=%27none%27 strokeWidth =%272px%27 stroke=%27white%27/%3e%3c/svg%3e") !important;
}

select.form-select {
  outline: none;
  box-shadow: none !important;
  background: var(--white-color);
  border: 1px solid #C1C7CF;
  border-radius: 5px;
  height: auto;
  padding: 12px 13px;
  line-height: 1.4;
  font-weight: 400;
  font-size: 16px;
  color: #171717;
  background-image: url("data:image/svg+xml,%3Csvg width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M19.9201 9.00015L13.4001 15.5202C12.6301 16.2902 11.3701 16.2902 10.6001 15.5202L4.08008 9.00015%27 stroke=%27%23171717%27 stroke-width=%271.5%27 stroke-miterlimit=%2710%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat;
  background-position: calc(100% - 13px) 50%;
  background-size: 20px;
  padding-right: 40px;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M19.9201 9.00015L13.4001 15.5202C12.6301 16.2902 11.3701 16.2902 10.6001 15.5202L4.08008 9.00015%27 stroke=%27%23171717%27 stroke-width=%271.5%27 stroke-miterlimit=%2710%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat;
  background-position: calc(100% - 13px) 50%;
  background-size: 20px;
  padding-right: 40px;
}


.form-control::-webkit-input-placeholder {
  color: #707378;
}

.form-control:-ms-input-placeholder {
  color: #707378;
}

.form-control::placeholder {
  color: #707378;
}

.validation-msg {
  position: absolute;
  background: #FEEEEE;
  box-shadow: 0px 4px 8px rgb(244, 67, 54, 20%), 0px 2px 4px rgb(156, 43, 35, 20%);
  border-radius: 4px;
  font-size: 15px;
  color: var(--danger-color);
  padding: 8px 10px;
  z-index: 1;
  top: calc(100% + 9px);
}

.error .form-control {
  border-color: var(--danger-color);
}

.validation-msg::before {
  content: "";
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #FEEEEE;
  position: absolute;
  top: -10px;
}

.form-check {
  padding: 0;
}

.form-check input {
  display: none;
}

.form-check label {
  position: relative;
  padding-left: 1.8rem;
  cursor: pointer;
  font-size: 16px;
}

.form-check input[type="checkbox"]+label::before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  position: absolute;
  left: 0;
  border: 1px solid #C1C7CF;
  border-radius: 4px;
}

.form-check input[type="checkbox"]:checked+label::before {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27%3e%3cpath  d=%27M4.1,12.7 9,17.6 20.3,6.3%27 fill=%27none%27 strokeWidth =%272px%27 stroke=%27white%27/%3e%3c/svg%3e") !important;
}

.form-check input[type="radio"]+label::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='9.25' stroke='%2390949A' stroke-width='1.5'/%3E%3C/svg%3E");
  width: 20px;
  height: 20px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-size: 100%;
  background-repeat: no-repeat;
}

.form-check input+label {
  color: #707378;
}

.form-check input[type="radio"]:checked+label::before {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='9.25' stroke='%233CCF4E' stroke-width='1.5'/%3E%3Ccircle cx='10' cy='10' r='5.25' fill='%233CCF4E' stroke='%233CCF4E' stroke-width='1.5'/%3E%3C/svg%3E");
}

.form-check input:checked+label {
  color: #151515;
}

.forgot-wrap {
  position: absolute;
  top: 15px;
  right: 13px;
  color: #707378;
  cursor: pointer;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.1092 7.8916L7.89258 12.1083C7.35091 11.5666 7.01758 10.8249 7.01758 9.99993C7.01758 8.34993 8.35091 7.0166 10.0009 7.0166C10.8259 7.0166 11.5676 7.34994 12.1092 7.8916Z' stroke='%23707378' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14.8499 4.8084C13.3915 3.7084 11.7249 3.1084 9.99987 3.1084C7.0582 3.1084 4.31654 4.84173 2.4082 7.84173C1.6582 9.01673 1.6582 10.9917 2.4082 12.1667C3.06654 13.2001 3.8332 14.0917 4.66654 14.8084' stroke='%23707378' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7.01758 16.2751C7.96758 16.6751 8.97591 16.8917 10.0009 16.8917C12.9426 16.8917 15.6842 15.1584 17.5926 12.1584C18.3426 10.9834 18.3426 9.0084 17.5926 7.8334C17.3176 7.40006 17.0176 6.99173 16.7092 6.6084' stroke='%23707378' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12.9242 10.583C12.7076 11.758 11.7492 12.7163 10.5742 12.933' stroke='%23707378' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7.89102 12.1084L1.66602 18.3334' stroke='%23707378' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M18.3324 1.66699L12.1074 7.89199' stroke='%23707378' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}


.forgot-wrap.text {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.9842 9.99993C12.9842 11.6499 11.6509 12.9833 10.0009 12.9833C8.35091 12.9833 7.01758 11.6499 7.01758 9.99993C7.01758 8.34993 8.35091 7.0166 10.0009 7.0166C11.6509 7.0166 12.9842 8.34993 12.9842 9.99993Z' stroke='%23707378' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9.99987 16.8913C12.9415 16.8913 15.6832 15.1579 17.5915 12.1579C18.3415 10.9829 18.3415 9.00794 17.5915 7.83294C15.6832 4.83294 12.9415 3.09961 9.99987 3.09961C7.0582 3.09961 4.31654 4.83294 2.4082 7.83294C1.6582 9.00794 1.6582 10.9829 2.4082 12.1579C4.31654 15.1579 7.0582 16.8913 9.99987 16.8913Z' stroke='%23707378' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}


.Toastify__progress-bar--error {
  background: var(--danger-color);
}

.Toastify__toast--error .Toastify__toast-icon svg {
  fill: var(--danger-color);
}

.Toastify__toast-container {
  color: #151515;
}

.Toastify__progress-bar--success,
.Toastify__progress-bar--info {
  background: var(--primary-color);
}

.Toastify__toast--success .Toastify__toast-icon svg,
.Toastify__toast--info .Toastify__toast-icon svg {
  fill: var(--primary-color);
}

.Toastify__toast-container .Toastify__toast-theme--light {
  color: #151515;
  font-size: 14px;
  font-family: 'Biennale';
}

/******Password Validation*******/
.hide-checklist {
  display: none;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.custom-password-checklist {
  padding: 15px !important;
}

.custom-password-checklist::before {
  content: "Requirements";
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: #171717;
  letter-spacing: 0.1275em;
  margin: 0 0 6px 0;
  display: inline-block;
}

.custom-password-checklist li {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 16px;
}

.custom-password-checklist li.invalid {
  color: var(--danger-color);
}

.custom-password-checklist li.invalid span {
  opacity: 1;
}

.custom-password-checklist li.valid {
  color: #0F8B6C;
}

.custom-password-checklist li .checklist-icon {
  display: none;
}

.custom-password-checklist li::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 5px;
  background-position: center;
  background-repeat: no-repeat;
}

.custom-password-checklist li.invalid::before {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.8486 4.94971L4.94914 14.8492' stroke='%23FF6058' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M14.8486 14.8491L4.94914 4.94963' stroke='%23FF6058' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");

}

.custom-password-checklist li.valid::before {
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='10' viewBox='0 0 15 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.999512 4.43027L5.72567 9L13.9995 1' stroke='%230F8B6C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

}

/******Custom CSS*******/

.site-main-wrapper.login-page .form-wrapper .form-heading p.password-success {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
}

/****Invite Team*****/
.site-main-wrapper.login-page .form-wrapper.team-invitation-pg {
  max-width: 1060px;
  padding: 40px;
}

.site-main-wrapper.login-page .form-wrapper.team-invitation-pg .get-invite-url .link-btn {
  background: #E3E8F0;
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  color: #151515;
  display: inline-block;
  width: 100%;
  text-align: center;
  box-shadow: none;
  outline: none;
  border-color: #E3E8F0;
}

.site-main-wrapper.login-page .form-wrapper.team-invitation-pg .get-invite-url .link-btn svg {
  margin-right: 10px;
}

.site-main-wrapper.login-page .form-wrapper .add-email path {
  stroke: #151515;
}

.site-main-wrapper.login-page .form-wrapper .add-email {
  padding: 0;
  border: none;
  background: transparent;
}

.site-main-wrapper.login-page .form-wrapper .add-email svg {
  width: 14px;
  vertical-align: unset;
}

.site-main-wrapper.login-page .form-wrapper.team-invitation-pg .team-info {
  padding: 30px 0;
}

.site-main-wrapper.login-page .form-wrapper.team-invitation-pg .team-info .team-icon {
  margin: 0 0 30px 0;
}

.site-main-wrapper.login-page .form-wrapper.team-invitation-pg .team-info .team-text {
  max-width: 390px;
  margin: auto;
}

.site-main-wrapper.login-page .form-wrapper.team-invitation-pg .team-info .team-text ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  font-size: 18px;
  color: #151515;
}

.site-main-wrapper.login-page .form-wrapper.team-invitation-pg .team-info .team-text ul li::before {
  content: "";
  width: 20px;
  height: 12px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='10' viewBox='0 0 15 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4.43027L5.72616 9L14 1' stroke='%2316C748' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  position: absolute;
  left: 0;
  top: 6px;
}

.site-main-wrapper.login-page .form-wrapper.team-invitation-pg .team-info .team-text ul li {
  padding-left: 25px;
  position: relative;
}

.site-main-wrapper.login-page .form-wrapper.team-invitation-pg .team-info .team-text ul li:not(:last-of-type) {
  margin-bottom: 20px;
}

.site-main-wrapper.login-page .form-wrapper.team-invitation-pg .get-invite-url .link-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

.site-main-wrapper.login-page .form-wrapper.team-invitation-pg .get-invite-url .link-btn svg path {
  transition: .15s;
}

.site-main-wrapper.login-page .form-wrapper.team-invitation-pg .get-invite-url .link-btn:hover svg path {
  fill: #fff;
}

.site-main-wrapper.login-page .form-wrapper.team-invitation-pg .get-invite-url .link-btn {
  padding: 11px;
}

/***Login CSS****/
.login-page .logo-wrap {
  margin: 0 0 60px 0;
}

.site-main-wrapper.login-page .form-wrapper .additional-info b {
  font-weight: 400;
}

.site-main-wrapper.login-page {
  background: #fff;
  min-height: 100vh;
}

.site-main-wrapper.login-page .site-header {
  border: none !important;
  padding: 35px 50px;
}

.site-main-wrapper.login-page .form-wrapper {
  background: #FFFFFF;
  box-shadow: 0px 8px 24px rgba(21, 21, 22, 0.1);
  border-radius: 8px;
  max-width: 530px;
  margin: auto;
  padding: 30px;
}

.site-main-wrapper.login-page .form-wrapper.survey-creation-box {
  max-width: 1050px;
  padding: 40px;
}

.site-main-wrapper.login-page .form-wrapper.survey-creation-box .form-heading h3 {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.002em;
  color: #151515;
  display: inline-block;
  width: 100%;
  max-width: 280px;
  border-bottom: 2px solid var(--primary-color);
  padding: 0 0 10px 0;
}

.site-main-wrapper.login-page .form-wrapper.survey-creation-box .form-heading p {
  font-weight: 600;
  font-size: 32px;
  color: var(--primary-color);
}

.site-main-wrapper.login-page .main-content-wrap {
  padding: 50px 0;
}

.site-main-wrapper.login-page .form-wrapper .button-wrap.signle-btn {
  margin: 0;
}

.site-main-wrapper.login-page .form-wrapper .button-wrap.signle-btn .bp3-button {
  margin: 0 !important;
}

.site-main-wrapper.login-page .form-wrapper .form-heading {
  margin: 0 0 40px 0;
}

.site-main-wrapper.login-page .form-wrapper .form-heading p {
  margin: auto;
  color: #151515;
  max-width: 370px;
}

.site-main-wrapper.login-page .form-wrapper .form-heading p b {
  font-weight: 600;
}

.site-main-wrapper.login-page .form-wrapper .form-heading h3 {
  font-weight: 600;
  font-size: 32px;
  color: #000000;
}

.site-main-wrapper.login-page .form-wrapper .button-wrap {
  margin: 0 0 25px 0;
}

.site-main-wrapper.login-page .form-wrapper .button-wrap.password-changed-btn .btn {
  box-shadow: none;
  outline: none;
}

.site-main-wrapper.login-page .form-wrapper .form-text {
  margin: 0;
}

.site-main-wrapper.login-page .form-wrapper .form-text p {
  margin: 0;
  color: #151515;
  font-weight: 400;
}


/****Content Page****/
.landing-page-wrapper {
  min-height: 100vh;
  background: #fff;
}

.landing-page-wrapper .site-header {
  border: none !important;
  padding: 20px 25px;
  box-shadow: none;
  border-bottom: 1px solid #E3E8F0 !important;
}

.landing-page-wrapper .section-padding {
  padding: 100px 0;
}

.landing-page-wrapper .fw-700, .content-page-wrapper .fw-700 {
  font-weight: 700;
}

.landing-page-wrapper .fs-38, .content-page-wrapper .fs-38 {
  font-size: 38px;
}

.landing-page-wrapper .heading, .content-page-wrapper .heading {
  line-height: 1.3;
  color: #333333;
  margin: 0 0 20px 0;
}

.content-page-wrapper p, .content-page-wrapper li {
  font-weight: 400;
  font-size: 16px;
  color: #151515;
  margin: 0 0 15px 0;
  word-break: break-word;
}

.content-page-wrapper p b,
.content-page-wrapper p strong {
  font-weight: 600;
}

.outer-form-text a:hover, .site-main-wrapper.login-page .form-wrapper .additional-info a:hover {
  color: #000;
}

.outer-form-text a, .site-main-wrapper.login-page .form-wrapper .additional-info a {
  transition: .3s;
}

.content-page-wrapper .text-part h1 {
  font-size: 30px;
  color: #151515;
  margin: 30px 0 30px 0;
}

.content-page-wrapper .text-part h2 {
  font-size: 30px;
  color: #151515;
  margin: 30px 0 30px 0;
}

.content-page-wrapper .text-part h3 {
  font-size: calc(1.3rem + .3vw);
  margin: 20px 0 20px 0;
}

.content-page-wrapper .text-part h4 {
  font-size: calc(1.1rem + .2vw);
  margin: 20px 0 20px 0;
}

.terms-row .sidebar-left li {
  margin: 0;
}

/*************************************************
  Admin Screen
*************************************************/


.main-site-wrapper {
  min-height: 100vh;
}

.site-header.border-bottom {
  box-shadow: none;
  background: #FFFFFF;
  border-bottom: 1px solid #E3E8F0 !important;
  
}

.site-header {
  padding: 12px 25px;
}

.site-header .left-menu .home-icon {
  background: transparent;
  border: none;
  padding: 0;
  margin-right: 40px;
  display: flex;
  align-items: center;
}

.site-header .right-menu-wrap .collection-dropdown, .site-header .right-menu-wrap .notification-dropdown {
  margin-right: 20px;
}

.site-header .right-menu-wrap .notification-dropdown button {
  position: relative;
}

.site-header .right-menu-wrap .notification-dropdown button .active-notif {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--danger-color);
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  right: 1px;
  top: 2px;
}

.site-header .right-menu-wrap .collection-dropdown button {
  color: #151515;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
}

.site-header .right-menu-wrap .dropdown>button, .site-header .right-menu-wrap .dropdown>.btn {
  border: none;
  background: transparent;
  padding: 0;
}

.site-header .right-menu-wrap .notification-dropdown .dropdown-menu {
  padding: 0;
  overflow: hidden;
}

.site-header .right-menu-wrap .dropdown .dropdown-menu {
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #e3e6f0;
  border-radius: 0.35rem;
  box-shadow: 0 0.15rem 1.75rem 0 rgb(58 59 69 / 15%);
  min-width: 230px;
}

.site-header .right-menu-wrap .notification-dropdown .dropdown-menu .dropdown-header {
  color: #fff;
  background: var(--primary-color);
  padding: 14px 16px;
  font-size: 16px;
}

.site-header .right-menu-wrap .notification-dropdown .dropdown-item {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  border-left: 1px solid #e3e6f0;
  border-right: 1px solid #e3e6f0;
  border-bottom: 1px solid #e3e6f0;
  line-height: 1.3rem;
  color: #777;
}

.site-header .right-menu-wrap .notification-dropdown .dropdown-item .small {
  color: #b7b9cc;
  font-size: 12px;
}

.dropdown .dropdown-menu a.dropdown-item span {
  font-weight: inherit;
}

.site-header .right-menu-wrap .notification-dropdown .dropdown-item .icon-circle {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header .right-menu-wrap .notification-dropdown .dropdown-item .icon-circle img {
  max-width: 20px;
}

.main-outer-wrapper .dashboard-side-menu-wrapper {
  background: #fff;
  border-right: 1px solid #E3E8F0;
  padding: 47px 0px 0;
  width: 220px;
  min-width: 220px;
}

.main-outer-wrapper .dashboard-side-menu-wrapper .dashboard-side-menu .top-menu li {
  list-style-type: none;
}

.main-outer-wrapper .dashboard-side-menu-wrapper .dashboard-side-menu .top-menu>li>a, .main-outer-wrapper .dashboard-side-menu-wrapper .dashboard-side-menu .top-menu>li .drop-wrap a {
  text-decoration: none;
  transition: all 0.1s linear;
  padding: 13px 10px;
  width: 100%;
  font-weight: 400;
  font-size: 18px;
  display: flex;
  align-items: center;
  color: #151515;
  border-radius: 4px;
}

.main-outer-wrapper .dashboard-side-menu-wrapper .dashboard-side-menu .top-menu li small {
  font-size: 12px;
}

nav ul, nav li {
  outline: 0;
  margin: 0;
  padding: 0;
}

.main-outer-wrapper .dashboard-side-menu-wrapper .dashboard-side-menu .top-menu>li a svg {
  width: 20px;
}

.main-outer-wrapper .dashboard-side-menu-wrapper .dashboard-side-menu .top-menu>li a .nav-text {
  margin-left: 12px;
}

.main-outer-wrapper .dashboard-side-menu-wrapper .dashboard-side-menu .top-menu>li a:hover svg path,
.main-outer-wrapper .dashboard-side-menu-wrapper .dashboard-side-menu .top-menu>li a.active svg path {
  stroke: var(--primary-color);
}

.main-outer-wrapper .dashboard-side-menu-wrapper .dashboard-side-menu .top-menu li .drop-wrap {
  position: relative;
}

.main-outer-wrapper .dashboard-side-menu-wrapper .dashboard-side-menu .top-menu li .drop-wrap a {
  background-color: transparent !important;
}

.main-outer-wrapper .dashboard-side-menu-wrapper .dashboard-side-menu .top-menu li .drop-wrap .drop-btn {
  background: transparent;
  border: none;
  padding: 0;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: .3s;
}

.main-outer-wrapper .dashboard-side-menu-wrapper .dashboard-side-menu .top-menu li .drop-wrap.active, .main-outer-wrapper .dashboard-side-menu-wrapper .dashboard-side-menu .top-menu li a:hover, .main-outer-wrapper .dashboard-side-menu-wrapper .dashboard-side-menu .top-menu li a.active, .main-outer-wrapper .dashboard-side-menu-wrapper .dashboard-side-menu .top-menu li ul.subnav li a:hover, .main-outer-wrapper .dashboard-side-menu-wrapper .dashboard-side-menu .top-menu li ul.subnav li a.active,
.main-outer-wrapper .dashboard-side-menu-wrapper .dashboard-side-menu .top-menu li .drop-wrap a.collapsible:not(.collapsed) {
  /* background: rgba(54, 199, 72, 0.2); */
  background: #F5F5F5;
  font-weight: 500;
  color: var(--primary-color);
}

.main-outer-wrapper .dashboard-side-menu-wrapper .dashboard-side-menu .top-menu>li .drop-wrap a.collapsible:hover {
  background: transparent !important;
}

.main-outer-wrapper .dashboard-side-menu-wrapper .dashboard-side-menu .top-menu li .drop-wrap a.collapsible .drop-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.main-outer-wrapper .dashboard-side-menu-wrapper .dashboard-side-menu .top-menu li .drop-wrap a.collapsible:not(.collapsed) .drop-icon svg {
  transform: rotate(90deg);
}

.main-outer-wrapper .dashboard-side-menu-wrapper .dashboard-side-menu .top-menu li .drop-wrap a.collapsible .drop-icon svg {
  transition: .3s;
}

.nested-menu {
  width: 300px;
  background: #FFFFFF;
  border-right: 1px solid #E6EAEE;
  padding: 17px;
  min-width: 300px;
  height: 100%;
}

.nested-menu .menu-title {
  padding: 15px;
}

.nested-menu .menu-title p {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.002em;
  text-transform: uppercase;
}

.nested-menu .menu-items ul {
  margin: 0 0 15px 0;
  list-style-type: none;
  padding: 0;
}

.nested-menu .menu-items ul li a {
  font-weight: 400;
  text-decoration: none;
  font-size: 16px;
  color: #151515 !important;
  padding: 15px;
  display: inline-block;
  border-radius: 3px;
  width: 100%;
  transition: .3s;
}

.nested-menu .menu-items ul li a.active, .nested-menu .menu-items ul li a:hover {
  color: var(--primary-color) !important;
  background: rgb(54 199 72 / 14%);
  font-weight: 600;
}

.main-outer-wrapper .dashboard-side-menu-wrapper .dashboard-side-menu .top-menu li ul.subnav {
  margin: 0px 0px 10px 20px;
  padding-top: 10px;
  position: relative;
}

.main-outer-wrapper .dashboard-side-menu-wrapper .dashboard-side-menu .top-menu li ul.subnav::before {
  content: "";
  background-color: #C3C8CC;
  width: 1px;
  position: absolute;
  left: 0;
  top: -15px;
  height: 0;
  transition: .3s;
}

.main-outer-wrapper .dashboard-side-menu-wrapper .dashboard-side-menu .top-menu li .show ul.subnav::before {
  height: 100%;
}

.main-outer-wrapper .dashboard-side-menu-wrapper .dashboard-side-menu .top-menu li ul.subnav li {
  padding: 0 8px;
}

.main-outer-wrapper .dashboard-side-menu-wrapper .dashboard-side-menu .top-menu li {
  list-style-type: none;
}

.main-outer-wrapper .dashboard-side-menu-wrapper .dashboard-side-menu .top-menu li ul.subnav li a {
  width: 100%;
  display: inline-block;
  text-decoration: none;
  padding: 7px 10px;
  font-size: 14px;
  color: #151515;
  border-radius: 4px;
}

.main-site-wrapper .page-content-wrap {
  padding: 35px;
  /* overflow: hidden; */
  position: relative;
}

.main-site-wrapper .page-content-wrap.bg-dashboard {
  background: #F9FAFC;
}

.build-onboarding .onboarding-inner .heading, .page-heading {
  margin: 0 0 40px 0;
}

.heading-section.page-heading {
  margin-bottom: 30px;
}

.build-onboarding .onboarding-inner .heading h4 {
  font-weight: 500;
  font-size: 26px;
  color: #151515;
  margin: 0;
}

.page-heading h1, .page-heading h2 {
  font-weight: 500;
  font-size: 35px;
  color: #151515;
  margin: 0;
}

.heading-section h1 {
  font-size: 36px;
}

.heading-section p, .page-heading p {
  margin: 0px 0 0 0;
  color: #151515;
}

.heading-section h6, .page-heading h6 {
  margin: 0px 0 0 0;
  font-size: 20px;
  font-weight: 400;
  color: #151515;
}

.heading-section p strong, .page-heading p strong,
.heading-section h6 strong, .page-heading h6 strong {
  font-weight: 600;
}

.heading-section h1 * {
  margin: 0;
  padding: 0;
}

.heading-section h1 .heading-input {
  border: none;
  padding: 0;
  font: inherit;
  width: 100%;
}

/***************Profile Setting Page**********************/
.role-wrapper table thead tr th {
  border-bottom: 1px solid #C1C7CF !important;
  color: #383B40;
}

.role-wrapper table td, .role-wrapper table th {
  vertical-align: middle;
}

.custom-data-table {
  min-width: 1000px;
}

.custom-data-table.fonts-datatable .rdt_TableCol:first-child, .custom-data-table.fonts-datatable .rdt_TableCell {
  min-width: 100px;
  justify-content: flex-start;
  padding-left: 15px !important;
}

.role-wrapper table td, .role-wrapper table th {
  vertical-align: middle;
}

.profile-wrapper .account-info .profile-image {
  width: 160px;
  height: 160px;
  position: relative;
}

.profile-wrapper .account-info .profile-image .img-wrap {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #E2EEFF;
  justify-content: center;
  font-weight: 600;
  font-size: 60px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
}

.profile-wrapper .account-info .profile-image .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-wrapper .account-info .profile-image .edit-wrap {
  position: absolute;
  right: 0px;
  bottom: 20px;
}

.profile-wrapper .account-info .profile-image .edit-wrap input {
  display: none;
}

.profile-wrapper .account-info .profile-image .edit-wrap label {
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);
  border-radius: 50%;
  padding: 6px;
  cursor: pointer;
  margin: 0;
  border: 2px solid #FFFFFF;
  transition: .3s;
}

.profile-wrapper .account-info .profile-image .edit-wrap label:hover {
  border-color: #196923;
  background: #196923;
}


.profile-wrapper .account-info .profile-image .edit-wrap label path {
  stroke: #fff;
}

.profile-wrapper .account-info .custom-width {
  max-width: 750px;
}

.profile-wrapper .form-wrapper label {
  margin-bottom: 8px;
}

.profile-wrapper .account-preference {
  padding: 25px 0 0 0;
}

.profile-wrapper .account-preference .form-heading h4 {
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: #000000;
}

.profile-wrapper .account-preference .form-heading {
  margin: 0 0 40px 0;
}

.profile-wrapper .account-preference select.formselect {
  max-width: 240px;
}

.profile-wrapper .account-preference .btn-wrap .btn {
  padding: 0;
  box-shadow: none;
}

.profile-wrapper .account-preference .btn-wrap {
  margin: 40px 0 0 0;
}

.profile-wrapper .account-info .profile-heading-image {
  margin: 0 0 60px 0;
}

.profile-wrapper .account-info .profile-heading-image .text-wrapper {
  padding-left: 40px;
}

.profile-wrapper .account-info .profile-heading-image .text-wrapper .text-wrap h2 {
  font-weight: 500;
  font-size: 32px;
  color: #151515;
  margin: 0 0 5px 0;
}

.profile-wrapper .account-info .profile-heading-image .text-wrapper .text-wrap h2 * {
  margin: 0;
  padding: 0;
}

.profile-wrapper .account-info .profile-heading-image .text-wrapper .text-wrap h2 .heading-input {
  border: none;
  padding: 0;
  font: inherit;
  width: 100%;
}

.profile-wrapper .account-info .profile-heading-image .text-wrapper .text-wrap p {
  font-size: 14px;
}

.profile-wrapper .account-info .profile-heading-image .text-wrapper .text-wrap p .heading-input {
  border: none;
  padding: 0;
  font: inherit;
  width: 100%;
}

.profile-wrapper .account-info .profile-heading-image .text-wrapper .text-wrap p * {
  margin: 0;
  padding: 0;
  min-height: inherit;
}

.main-site-wrapper .page-content-wrap .notification-setting .field-wrapper {
  border-bottom: 1px solid #E6EAEE;
  padding: 13px 0;
}

.main-site-wrapper .page-content-wrap .notification-setting {
  border-top: 1px solid #E6EAEE;
}

/*******Empty State*********/
.empty-state .empty-inner {
  max-width: 500px;
}

.empty-state .empty-inner .icon-wrapper {
  width: 288px;
  height: 288px;
  border-radius: 50%;
  padding: 20px;
  margin: 0 auto 30px;
  background: rgb(54 199 72 / 14%);
}

.empty-state .empty-inner .text-wrap {
  margin-bottom: 20px;
}

.empty-state .empty-inner .text-wrap h2 {
  font-weight: 600;
  font-size: 32px;
  color: #000000;
  margin: 0 0 20px 0;
}

.empty-state .empty-inner .text-wrap p {
  color: #151515;
}

.empty-state .empty-inner .btn-wrap .btn+.btn {
  margin-left: 22px;
}

/*******Empty State*********/
/*******Setting Modal*******/
.setting-modal .modal-heading h4 {
  font-weight: 500;
  font-size: 30px;
  color: #000000;
}

.setting-modal .form-wrapper {
  margin: 25px 0;
}

.create-team-form .form-group>label {
  font-weight: 500;
  margin-bottom: 5px;
}

.create-team-form {
  max-width: 1000px;
}

.create-team-form div[class*="t-control"], .custom-select div[class*="t-control"] {
  height: 48px;
  border: 1px solid #C1C7CF;
  box-shadow: none;
}

.create-team-form div[class*="p-control"], .custom-select div[class*="p-control"] {
  height: 48px;
  border: 1px solid var(--primary-color);
  background: transparent;
}

.setting-modal .form-wrapper .form-group .permission-wrapper {
  margin: 10px 0 0 0;
}

.setting-modal .form-wrapper .form-group {
  position: relative;
}

.setting-modal .form-wrapper .form-group .permission-wrapper .permission-list {
  display: flex;
}

.setting-modal .form-wrapper .form-group .permission-wrapper .permission-list .check-wrap {
  margin-right: 30px;
}

.setting-modal .form-wrapper .form-group .permission-wrapper h5 {
  font-weight: 400;
  font-size: 16px;
  color: #151515;
  margin: 0 0 10px 0;
}

.setting-modal .form-wrapper .form-group .permission-wrapper .check-wrap .form-check {
  padding: 0;
  margin: 0 0 8px 0;
}

.setting-modal .form-wrapper .form-group .permission-wrapper .check-wrap .form-check input, .table-wrapper-view .form-check-input {
  border: 1px solid #C1C7CF;
  border-radius: 4px;
}

.setting-modal .form-wrapper .form-group .permission-wrapper .check-wrap .form-check input:checked, .table-wrapper-view .form-check-input:checked {
  border-color: var(--primary-color);
}

.setting-modal .form-wrapper .form-group .permission-wrapper .check-wrap .form-check label {
  color: #728095;
  /* margin-left: 10px; */
  font-size: 14px;
}

.setting-modal .form-wrapper .form-group .permission-wrapper .check-wrap .form-check input:checked+label {
  color: #151515;
}

.setting-modal .button-wrap .btn {
  max-width: inherit;
  width: auto;
}

/*******Setting Modal*******/
/*****Settings Table*******/
.search-filter {
  margin: 0 0 20px 0;
}

.search-filter .search-filter-padding {
  padding-right: 30px;
}

/* .search-filter .search-filter-padding-left {
  padding-left: 30px;
} */

.search-filter .search-filter-padding .custom-search-input, .page-heading .search-filter-padding .custom-search-input {
  border: 1px solid #E2E3E6;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.58464 17.5C13.9569 17.5 17.5013 13.9555 17.5013 9.58329C17.5013 5.21104 13.9569 1.66663 9.58464 1.66663C5.21238 1.66663 1.66797 5.21104 1.66797 9.58329C1.66797 13.9555 5.21238 17.5 9.58464 17.5Z' stroke='%2390949A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M18.3346 18.3333L16.668 16.6666' stroke='%2390949A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 15px 50%;
  padding-left: 45px;
}

.search-filter .search-filter-padding .custom-search-input:focus, .page-heading .search-filter-padding .custom-search-input:focus {
  background-color: transparent;
  border-color: var(--primary-color);
}

.page-heading .search-filter-padding .custom-search-input {
  height: 44px;
  max-width: 250px;
}

.page-heading .button-wrap .btn {
  white-space: nowrap;
}

.custom-search-input button.bp3-button {
  color: #728095 !important;
}

.custom-search-input input.bp3-input {
  border: 1px solid #C1C7CF !important;
  box-shadow: none !important;
}

.search-filter .drop-wrap button {
  min-height: 48px;
  height: 48px;
  padding: 10px 10px;
  min-width: 210px;
  text-align: left;
  display: flex;
  align-items: center;
  color: #383B40;
  border: 1px solid #E2E3E6;
  border-radius: 4px;
}

.search-filter .drop-wrap label {
  font-weight: 400;
  margin-right: 10px;
  color: #707378;
  white-space: nowrap;
}

.table-wrapper-view .form-check-input, .custom-data-table input[type="checkbox"] {
  height: 20px;
  width: 20px;
  vertical-align: middle;
  margin: 5px 0;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #C3C8CC !important;
  border-radius: 4px;
  box-shadow: none;
}

.table-wrapper-view input[type="checkbox"]:checked,
.custom-data-table input[type="checkbox"]:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color) !important;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.83728 0.275023C10.0542 0.491981 10.0542 0.843739 9.83728 1.0607L3.72617 7.17181C3.50921 7.38877 3.15745 7.38877 2.9405 7.17181L0.162718 4.39403C-0.0542395 4.17707 -0.0542395 3.82531 0.162718 3.60836C0.379676 3.3914 0.731435 3.3914 0.948393 3.60836L3.33333 5.9933L9.05161 0.275023C9.26857 0.0580652 9.62032 0.0580652 9.83728 0.275023Z' fill='white'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}

.search-filter .drop-wrap button.file-type {
  min-width: 125px;
}

.search-filter .drop-wrap+.drop-wrap {
  margin-left: 30px;
}

/*****Settings Table Ends*******/
/******Permissions Page*********/
.custom-data-table div[class*="TableRow"]:nth-child(6n+1) .table-profile .img-wrapper {
  background: #4D3BB3;
}

.custom-data-table div[class*="TableRow"]:nth-child(6n+2) .table-profile .img-wrapper {
  background: #A93131;
}

.custom-data-table div[class*="TableRow"]:nth-child(6n+3) .table-profile .img-wrapper {
  background: #1186AB;
}

.custom-data-table div[class*="TableRow"]:nth-child(6n+4) .table-profile .img-wrapper {
  background: #4214C2;
}

.custom-data-table div[class*="TableRow"]:nth-child(6n+5) .table-profile .img-wrapper {
  background: #BF34CB;
}

.custom-data-table div[class*="TableRow"]:nth-child(6n+6) .table-profile .img-wrapper {
  background: #1C58C8;
}

.table-profile .img-wrapper {
  width: 48px;
  height: 48px;
  background: #4D3BB3;
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  overflow: hidden;
}

.table-profile .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.table-profile h5 {
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  margin: 0;
}

.table-profile p {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
}

.custom-data-table div[class*="TableRow"] div[class*="TableCell"], .theme-table tbody td {
  padding: 14px 10px;
}

.custom-data-table div[class*="TableRow"] div[class*="TableCell"], .theme-table tbody td {
  font-size: 16px;
  color: #383B40;
}

.custom-data-table input[type="checkbox"] {
  margin: 0;
  border: 1px solid #C1C7CF !important;
  border-radius: 4px;
}

.custom-data-table div[class*="TableHeadRow"] div[class*="TableCol"], .theme-table thead th {
  font-size: 16px;
  color: #383B40;
  font-weight: 500;
}

.custom-data-table div[class*="TableHeadRow"] .rdt_TableCol:not(:first-of-type) {
  padding-left: 0px;
  padding-right: 10px;
}
.custom-data-table .rdt_TableHeadRow .rdt_TableCol{
  padding-left: 10px !important;
  padding-right: 0px;
}
.custom-data-table .rdt_TableHeadRow .rdt_TableCol:first-child{
  padding-left: 0px !important;
}
.survey-table div[class*="TableHeadRow"] .rdt_TableCol:not(:nth-child(2)), .dashboard-leads-list div[class*="TableHeadRow"] .rdt_TableCol {
  text-align: center;
  justify-content: center;
}

.table-media .img-wrapper {
  max-width: 100px;
  width: 100px;
  min-width: 80px;
}

.table-media .img-wrapper img {
  height: 45px;
  object-fit: cover;
}

.table-media .img-wrapper svg {
  max-width: 100%;
}

.table-media-wrapper div[class*="TableHeadRow"] .rdt_TableCol:last-of-type, .table-media-wrapper div[class*="TableCell"]:last-of-type {
  justify-content: flex-end;
}

.custom-data-table .action-end .btn-dropdown, .templates-wrapper .template-card .btn-dropdown {
  background: transparent;
  border-radius: 4px;
  border: none;
  height: 30px;
  width: 30px;
  padding: 0;
  display: flex;
  align-items: center;
  outline: none;
  justify-content: center;
}

.custom-data-table .action-end .btn-dropdown:hover, .templates-wrapper .template-card .btn-dropdown:hover {
  background: #F5F5F5;
}

.custom-data-table .dropdown-menu, .custom-dropdown .dropdown-menu, .templates-wrapper .template-card .dropdown-menu, .dropdown .dropdown-menu {
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.07);
  border-radius: 4px;
  border: none;
  padding: 12px;
  min-width: 185px;
}

.custom-data-table .dropdown-menu li .dropdown-item, .custom-dropdown .dropdown-menu li .dropdown-item, .templates-wrapper .template-card .dropdown-menu li .dropdown-item, .dropdown .dropdown-menu .dropdown-item {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.0275em;
  color: #151515;
  border-radius: 4px;
  padding: 10px;
  justify-content: flex-start;
}

.custom-data-table .dropdown-menu li .dropdown-item:hover,
.custom-dropdown .dropdown-menu li .dropdown-item:hover,
.templates-wrapper .template-card .dropdown-menu li .dropdown-item:hover,
.dropdown .dropdown-menu .dropdown-item:hover, .dropdown .dropdown-menu .dropdown-item:active, .dropdown .dropdown-menu .dropdown-item.active {
  background: #F5F5F5;
  color: var(--primary-color);
  font-weight: 500;
}

.custom-data-table .dropdown-menu li .dropdown-item svg,
.custom-dropdown .dropdown-menu li .dropdown-item svg,
.templates-wrapper .template-card .dropdown-menu li .dropdown-item svg {
  width: 24px;
  height: 24px;
}

.custom-data-table .dropdown-menu li .dropdown-item svg path,
.custom-dropdown .dropdown-menu li .dropdown-item svg path,
.templates-wrapper .template-card .dropdown-menu li .dropdown-item svg path {
  stroke: #151515;
}

.custom-data-table .dropdown-menu li .dropdown-item:hover svg path,
.custom-dropdown .dropdown-menu li .dropdown-item:hover svg path,
.templates-wrapper .template-card .dropdown-menu li .dropdown-item:hover svg path {
  stroke: var(--primary-color);
}

.custom-data-table div[class*="TableRow"].selected, .custom-data-table div[class*="TableRow"]:hover {
  background: #F5F5F5;
  border-bottom-color: rgba(0, 0, 0, .12);
}



/*****************************/
.formvawrapper.modal-setting-medium {
  max-width: 760px !important;
}

.customvar-modal.success-modal .formvawrapper {
  max-width: 520px !important;
}

.setting-modal .or-text {
  margin-top: 40px;
  font-weight: 400;
  font-size: 16px;
  color: #728095;
}

.setting-modal p.help-text {
  font-size: 14px;
  /* margin-top: -3px; */
  margin-bottom: 0;
}

.setting-modal .form-wrapper .permission-wrapper-outer {
  margin-top: 20px;
}

/*********************/
.setting-modal .modal-success {
  text-align: center;
}

.setting-modal .modal-success .icon-wrap {
  margin: 0 0 20px 0;
}

.setting-modal .modal-success .icon-wrap svg {
  width: 180px;
  height: auto;
}

.setting-modal .modal-success .text-wrap {
  margin: 0 0 30px 0;
}

.setting-modal .modal-success .text-wrap h4 {
  font-weight: 400;
  font-size: 32px;
  color: #151515;
}

.setting-modal .modal-success .text-wrap p {
  color: #707378;
}

.setting-modal .modal-success .text-wrap p strong {
  font-weight: 600;
}

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

.success-modal .modal-body .btn-text {
  position: absolute;
  right: 20px;
  top: 20px;
}

.setting-modal .modal-success .button-wrap .btn {
  width: 100%;
  max-width: 130px;
}

.create-team-form .user-list {
  border-top: 1px solid #C1C7CF;
  margin-top: 5px;
}

.create-team-form .user-list .list-item {
  padding: 10px 0;
}

.create-team-form .user-list .list-item:not(:last-of-type) {
  border-bottom: 1px solid #E6EAEE;
}

.create-team-form div[class*="g-control"] {
  height: 48px;
  border: 1px solid #C1C7CF;
  box-shadow: none;
}

.create-team-form div[class*="p-control"] {
  height: 48px;
  border: 1px solid var(--primary-color);
  box-shadow: none;
  background-color: transparent;
}

.custom-select div[class*="g-control"] {
  height: 48px;
  border: 1px solid #C1C7CF;
  box-shadow: none;
}

.custom-select div[class*="p-control"] {
  height: 48px;
  border: 1px solid var(--primary-color);
  box-shadow: none;
  background-color: transparent;
}

.create-team-form [class*="indicatorSeparator"], .custom-select [class*="indicatorSeparator"] {
  display: none;
}

.action-btn {
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
  background-color: transparent;
}

.table-wrapper-view td .action-btn+.action-btn, .custom-data-table .action-btn+.action-btn {
  margin-left: 15px;
}

.delete-modal-wrap .delete-body-wrap .team-listing {
  background: #FFFFFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 9%);
  border-radius: 5px;
  margin: 0 0 30px 0;
  padding: 20px;
  width: 100%;
  max-width: 300px;
}

.delete-modal-wrap .delete-body-wrap .team-listing .img-wrapper img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
}

.delete-modal-wrap .delete-body-wrap .team-listing h5 {
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin: 0 0 5px 0;
}

.delete-modal-wrap .delete-body-wrap .team-listing p {
  font-size: 14px;
  margin: 0;
}

.delete-modal-wrap .delete-body-wrap .warning-text {
  margin: 0 0 30px 0;
}

.delete-modal-wrap .delete-body-wrap .warning-text p {
  font-weight: 400;
  color: #151515;
}

.delete-modal-wrap .delete-body-wrap .heading {
  margin: 0 0 25px 0;
}

.delete-modal-wrap .delete-body-wrap .heading h3 {
  margin: 0;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.0275em;
  color: #151515;
}

.delete-modal-wrap .delete-body-wrap .heading p {
  margin: 10px 0 0 0;
  font-size: 18px;
}

.delete-modal-wrap .delete-body-wrap .warning-message {
  background: #FEEEEE;
  border-radius: 1px;
  padding: 25px 35px 35px 35px;
  margin: 0 0 30px 0;
  border-left: 8px solid var(--danger-color);
}

.delete-modal-wrap .delete-body-wrap .warning-message .title {
  margin: 0 0 15px 0;
}

.delete-modal-wrap .delete-body-wrap .warning-message .title h4 {
  margin: 0 0 0 15px;
  color: var(--danger-color);
  font-size: 20px;
  font-weight: 400;
}

.delete-modal-wrap .delete-body-wrap .warning-message p {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  color: var(--danger-color);
}

/* .formstyle .button-wrap .btn {
  min-width: 120px;
} */

/*****************************/

.form-switch .form-check-input {
  display: block;
}

.form-check.form-switch {
  margin: 0;
}

.form-check.form-switch input {
  margin: 0;
  height: 16px;
}

.search-filter .drop-wrap button::after {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 fill=%27%23212529%27%3e%3cpath fill-rule=%27evenodd%27 d=%27M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z%27/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}

.dropdown .dropdown-menu {
  box-shadow: 0px 0px 15px rgb(0 0 0 / 10%);
  border: none;
  padding: 0.5rem;
  min-width: 200px;
}

/******************************
Date Picker
******************************/
.react-datepicker-popper .react-datepicker {
  font-family: inherit;
  border: none;
  box-shadow: 0 0px 15px rgba(0, 0, 0, 16%);
}

.react-datepicker-popper .react-datepicker .react-datepicker__triangle {
  display: none;
}

.react-datepicker-popper .react-datepicker .react-datepicker__header {
  background: transparent;
  border: none;
  padding-bottom: 0;
}

.react-datepicker-popper .react-datepicker .react-datepicker__header .react-datepicker__current-month {
  font-weight: 400;
  font-size: 14px;
  color: #151515;
}

.react-datepicker-popper .react-datepicker .react-datepicker__navigation {
  width: 18px;
  height: 18px;
  top: 10px;
}

.react-datepicker-popper .react-datepicker .react-datepicker__navigation--previous .react-datepicker__navigation-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.2871 14.9401L6.39711 10.0501C5.81961 9.47256 5.81961 8.52756 6.39711 7.95006L11.2871 3.06006' stroke='%23151515' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.react-datepicker-popper .react-datepicker .react-datepicker__navigation-icon {
  width: 18px;
  height: 18px;
}

.react-datepicker-popper .react-datepicker .react-datepicker__navigation-icon::before {
  display: none;
}

.react-datepicker-popper .react-datepicker .react-datepicker__navigation--next .react-datepicker__navigation-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.71289 3.05994L11.6029 7.94994C12.1804 8.52744 12.1804 9.47244 11.6029 10.0499L6.71289 14.9399' stroke='%23151515' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.react-datepicker__day-name {
  color: #707378;
}

.react-datepicker__day, .react-datepicker__time-name {
  color: #151515;
  font-size: 14px;
  border-radius: 50% !important;
}

.react-datepicker__day--selected, .react-datepicker__day--in-selecting-range, .react-datepicker__day--in-range, .react-datepicker__month-text--selected, .react-datepicker__month-text--in-selecting-range, .react-datepicker__month-text--in-range, .react-datepicker__quarter-text--selected, .react-datepicker__quarter-text--in-selecting-range, .react-datepicker__quarter-text--in-range, .react-datepicker__year-text--selected, .react-datepicker__year-text--in-selecting-range, .react-datepicker__year-text--in-range,
.react-datepicker__day--keyboard-selected, .react-datepicker__month-text--keyboard-selected, .react-datepicker__quarter-text--keyboard-selected, .react-datepicker__year-text--keyboard-selected {
  background: var(--primary-color) !important;
  border-radius: 50%;
  color: #fff;
}

.react-datepicker__day--today, .react-datepicker__month-text--today, .react-datepicker__quarter-text--today, .react-datepicker__year-text--today {
  font-weight: 400;
}

/************Change Password*************/

.cursor-pointer {
  cursor: pointer;
}

.change-password {
  color: #707378;
  font-size: 13px;
  transition: .3s;
}

.change-password:hover {
  color: var(--primary-color);
}

.custom-select div[class*="t-control"], .account-info .form-control, .account-info input:not([type="checkbox"]):not([type="radio"]) {
  background-color: #F5F5F5;
  border-color: #f5f5f5;
}

.changePassword .modal-dialog {
  max-width: 760px;
}

.custom-select div[class*="t-control"]:focus, .account-info .form-control:focus, .account-info input:not([type="checkbox"]):not([type="radio"]):focus {
  background-color: transparent;
  border-color: var(--primary-color);
}

.custom-select div[class*="indicatorContainer"] {
  height: 100%;
  width: 46px;
  background-image: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M16.6004 7.4585L11.1671 12.8918C10.5254 13.5335 9.47539 13.5335 8.83372 12.8918L3.40039 7.4585%27 stroke=%27%23707378%27 stroke-width=%271.5%27 stroke-miterlimit=%2710%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E") !important;
  color: #707378;
  background-size: 20px;
  background-repeat: no-repeat;
  opacity: 1;
  background-position: center;
  padding: 0;
}

.custom-select div[class*="indicatorContainer"] svg {
  display: none;
}

.changePassword .modal-body {
  padding: 35px;
}

/**********************************/

.changePassword .account-info .text-wrap h3 {
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.005em;
  color: #000000;
  margin: 0 0 10px 0;
}

.changePassword .account-info .text-wrap p {
  font-size: 14px;
  margin: 0 0 25px 0;
}

.password-req h6 {
  font-weight: 400;
  font-size: 14px;
  color: #707378;
  letter-spacing: 0.1275em;
  margin-bottom: 10px;
}

.password-req ul li {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.0275em;
  align-items: center;
}

.password-req ul li.invalid {
  color: var(--danger-color);
}

.password-req ul li span {
  opacity: 1;
}

.password-req ul li .checklist-icon {
  display: none;
}

.password-req ul li.valid {
  color: var(--primary-color);
}

.password-req ul li::before {
  content: "";
  width: 17px;
  height: 17px;
  margin-right: 6px;
  background-position: center;
  background-repeat: no-repeat;
}

.password-req ul li.invalid::before {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.8496 4.9502L4.95011 14.8497' stroke='%23ED3E3E' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M14.8496 14.8496L4.95012 4.95011' stroke='%23ED3E3E' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.password-req ul li.valid::before {
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='10' viewBox='0 0 15 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4.43027L5.72616 9L14 1' stroke='%233CCF4E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.password-req {
  margin-bottom: 20px;
}

/**********************
Choose Avatar
***********************/
.customvar-modal .modal-content {
  border: none;
  border-radius: 4px;
  background-color: #ffffff;
}

.changeAvatar .modal-dialog {
  max-width: 650px;
}

.changeAvatar .heading {
  margin-bottom: 30px;
}

.changeAvatar .modal-dialog .heading h3 {
  font-weight: 500;
  font-size: 36px;
  color: #151515;
}

.changeAvatar input {
  display: none;
}

.changeAvatar .form-check-label {
  position: relative;
  cursor: pointer;
  width: 100%;
  margin: 0 0 20px 0;
}

.changeAvatar .form-check-label img {
  width: 100%;
  position: relative;
  z-index: 1;
}

.changeAvatar .form-check-label::before {
  content: "";
  background-color: #F5F5F5;
  border-radius: 4px 4px 0px 0px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
}

.changeAvatar input:checked+.form-check-label::before {
  background-color: var(--primary-color);
}

.changeAvatar .modal-dialog .formstyle {
  /* max-width: 550px; */
  margin: auto;
}

.changeAvatar .modal-dialog {
  max-width: 950px;
}

.changeAvatar .modal-dialog .profile-list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 710px;
  margin: auto;
  padding-top: 40px;
}

.changeAvatar .modal-dialog .profile-list .profile-list-wrap .usericon {
  width: 140px;
  height: 140px;
  display: inline-flex;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  transition: .3s;
  background: #F5F5F5;
}

.changeAvatar .modal-dialog .profile-list .profile-list-wrap .usericon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.changeAvatar .modal-dialog .profile-list .profile-list-wrap .usericon.active, .changeAvatar .modal-dialog .profile-list .profile-list-wrap .usericon:hover {
  border-color: var(--primary-color);
  padding: 5px;
}

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

.changeAvatar .button-wrap {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 40px;
}

.deleteModal .modal-dialog {
  max-width: 680px;
}

.teams-wrap .team-wrapper .img-wrapper {
  padding: 40px 20px;
  text-align: center;
}

.teams-wrap .team-wrapper .img-wrapper svg {
  max-width: 100%;
}

.teams-wrap .team-wrapper.team-1 .img-wrapper {
  background: #BFEFC5;
}

.teams-wrap .team-wrapper.team-2 .img-wrapper {
  background: #FFD3DF;
}

.teams-wrap .team-wrapper.team-3 .img-wrapper {
  background: #E5DBD4;
}

.teams-wrap .team-wrapper.team-4 .img-wrapper {
  background: #EAEAFF;
}

.teams-wrap .team-wrapper.team-2 .img-wrapper svg path {
  fill: #D9738D;
  stroke: #FFD3DF;
}

.teams-wrap .team-wrapper.team-3 .img-wrapper svg path {
  fill: #B79C8A;
  stroke: #E5DBD4;
}

.teams-wrap .team-wrapper.team-4 .img-wrapper svg path {
  fill: #B2AFFF;
  stroke: #EAEAFF;
}

.teams-wrap .team-wrapper .text-wrapper {
  padding: 15px;
}

.templates-wrapper .template-card .text-wrapper p {
  margin: 0;
  font-size: 12px;
}

.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.ease-in {
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

.transition {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
}

.translate-x-full {
  transform: translateX(-130%);
}

.translate-x-0 {
  transform: translateX(0px);
}

.body-overlay.hidden {
  display: none;
}

.body-overlay {
  position: fixed;
  z-index: 20;
  width: 100%;
  height: calc(100vh);
  display: none;
  top: 0px;
  left: 0;
  cursor: pointer;
}

.body-overlay.block {
  display: block;
}

.sideb-toggle {
  width: 25px;
  height: 25px;
  border: none;
  background: transparent;
  position: relative;
  margin-left: 20px;
}

.sideb-toggle .hamburger {
  width: 25px;
  height: 2px;
  background: #000;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -12.5px;
  margin-top: -1.5px;
  transition: transform 200ms;
}

.sideb-toggle .hamburger.hamburger-1 {
  transform: translate3d(0, -8px, 0);
}

.sideb-toggle .hamburger.hamburger-2 {
  transform: translate3d(0, 0, 0);
}

.sideb-toggle .hamburger.hamburger-3 {
  transform: translate3d(0, 8px, 0);
}

.sideb-toggle.open .hamburger-1 {
  transform: translate3d(0, 0, 0) rotate(45deg);
}

.sideb-toggle.open .hamburger-2 {
  transform: translate3d(0, 0, 0) scale(0.1, 1);
}

.sideb-toggle.open .hamburger-3 {
  transform: translate3d(0, 0, 0) rotate(-45deg);
}

.left-navigation-menu {
  box-shadow: 20px 40px 40px rgb(62 61 61 / 22%);
  min-height: calc(100vh);
  position: fixed;
  top: 70px;
  transition-duration: .3s;
  width: 220px;
  z-index: 21;
  background: #fff;
}

.left-navigation-menu .dashboard-side-menu-wrapper {
  border: none;
}

.site-header .right-menu-wrap .mobile-dropdown-profile {
  display: none;
}

.site-header .right-menu-wrap .mobile-dropdown-profile {
  display: none;
}

.mobile-dropdown-profile {
  margin: 15px 10px 0;
  background: #F5F5F5;
  font-weight: 500;
  border-radius: 4px;
}

.mobile-dropdown-profile .collapsible {
  text-decoration: none;
  position: relative;
  font-size: 15px;
  padding: 10px 15px;
  color: var(--primary-color);
}

.mobile-dropdown-profile .collapsible .text-wrap {
  padding-left: 10px;
}

.mobile-dropdown-profile .collapsible .icon-wrap img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  overflow: hidden;
}

.mobile-dropdown-profile .subnav {
  list-style: none;
  width: 100%;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  color: #151515;
  padding: 10px 10px 5px;
  margin: 0;
  border-top: 1px solid #e6e6e6;
}

.mobile-dropdown-profile .subnav .dropdown-item {
  border-radius: 4px;
  padding: 4px 5px;
}

.mobile-dropdown-profile .collapsible .drop-icon {
  position: absolute;
  right: 0;
}

.mobile-dropdown-profile .accordion-button::after {
  transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m19.92 9-6.52 6.52c-.77.77-2.03.77-2.8 0L4.08 9' stroke='%23171717' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  width: 20px;
  height: 20px;
  background-size: cover;
}

.mobile-dropdown-profile .accordion-button:not(.collapsed):after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.page-content-flex {
  max-width: calc(100% - 220px);
}

.btn-160 .btn {
  width: 100%;
  max-width: 150px;
}

.uploadMedia .modal-header {
  padding-left: 25px;
  padding-right: 25px;
}

.custom-off-canvas.canvas-wrap {
  position: absolute;
  bottom: 0;
  border-top: 1px solid #E3E8F0;
  left: 0;
  width: 100%;
}

.main-site-wrapper .page-content-wrap.full-height {
  min-height: calc(100vh - 130px);
}

.tab-3-wrapper.canvas-tabs {
  margin-bottom: 100px;
}

.copyright-text p {
  font-size: 12px;
  margin-bottom: 10px;
}

.meeting-pg-wrapper {
  min-height: calc(100vh - 174px);
}

.gap-10 {
  gap: 10px;
}

.pagination-wrap {
  border-top: 1px solid #E2E3E6;
  padding-top: 23px;
}

ul.pagination {
  border: none;
  gap: 5px;
}

ul.pagination .page-link {
  border: none;
  border-radius: 50%;
  font-weight: 400;
  font-size: 16px;
  color: #383B40;
  margin: 0;
  padding: 0;
  width: 30px;
  height: 30px;
  align-items: center;
  display: inline-flex;
  justify-content: center;
}

ul.pagination .prev .page-link, ul.pagination .next .page-link {
  border-radius: 0;
  font-weight: 600;
  color: var(--primary-color);
  width: auto;
  height: 30px;
  background: transparent;
}

ul.pagination .active .page-link {
  font-weight: 600;
  color: #fff;
  background: var(--primary-color);
}

ul.pagination .page-link {
  cursor: pointer;
}

ul.pagination .page-link.prev, ul.pagination .page-link.next {
  width: auto;
  border-radius: 0;
  background: transparent;
  font-weight: 600;
  font-size: 16px;
  color: #3CCF4E;
}

ul.pagination .page-link {
  box-shadow: none;
  text-decoration: none;
}

ul.pagination .page-link[disabled] {
  color: #707378;
}

.rs-popover {
  max-width: 350px;
}

.rs-popover .rs-popover-title {
  font-weight: 500;
  font-size: 16px;
  display: flex;
  color: #151515;
  gap: 10px;
  align-items: center;
}

.rs-popover-content {
  font-weight: 400;
  font-size: 14px;
  color: #707378;

}

.rs-popover-title~.rs-popover-content ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.rs-popover-content li, .rs-popover-content p {
  margin: 0 0 8px 0;
}

.rs-popover-content p {
  font-weight: 400;
  font-size: 14px;
  color: #707378;
}

.rs-popover-content p:last-of-type {
  margin: 0;
}

.btn.rs-btn svg path {
  transition: .3s;
}

.btn.rs-btn:hover svg path, .btn.rs-btn:focus svg path, .btn.rs-btn:active svg path {
  stroke: #151515;
}

.rs-popover .rs-popover-title::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.625 3C6.86203 3 3 6.86203 3 11.625C3 16.388 6.86203 20.25 11.625 20.25C16.388 20.25 20.25 16.388 20.25 11.625C20.25 6.86203 16.388 3 11.625 3Z' fill='%2336C748' stroke='%2336C748' stroke-width='1.5' stroke-miterlimit='10'/%3E%3Cpath d='M10.3125 10.3125H11.8125V15.75' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9.75 15.9375H13.875' stroke='white' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M11.625 6.09375C11.384 6.09375 11.1483 6.16523 10.9479 6.29915C10.7475 6.43306 10.5913 6.62341 10.499 6.8461C10.4068 7.0688 10.3826 7.31385 10.4297 7.55027C10.4767 7.78668 10.5928 8.00384 10.7632 8.17429C10.9337 8.34473 11.1508 8.46081 11.3872 8.50783C11.6236 8.55486 11.8687 8.53072 12.0914 8.43848C12.3141 8.34623 12.5044 8.19002 12.6384 7.9896C12.7723 7.78918 12.8438 7.55355 12.8438 7.3125C12.8438 6.98927 12.7153 6.67927 12.4868 6.45071C12.2582 6.22215 11.9482 6.09375 11.625 6.09375Z' fill='white'/%3E%3C/svg%3E");
  content: "";
  width: 22px;
  height: 22px;
  background-size: contain;
  background-position: center;
}

.rs-popover-content strong, .rs-popover-content b {
  font-weight: 500;
  color: #151515;
}

.btn.rs-btn {
  background: transparent;
  width: 35px;
  height: 35px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn.rs-btn:hover,
.btn.rs-btn:focus,
.btn.rs-btn:active {
  background-color: #F5F5F5;
}

.btn.rs-btn svg {
  pointer-events: none
}

.btn.rs-btn .rs-ripple-pond {
  display: none;
}

.modal .modal-dialog {
  padding: 20px;
}

.changeAvatar .heading.avatar-moodal {
  margin: 0;
  background: #F5F5F5;
  padding: 20px;
  border-radius: 4px 4px 0 0;
}

.changeAvatar .heading.avatar-moodal h3 {
  margin: 0;
  font-weight: 600;
}

/**********************************/

.terms-row {
  position: relative;
}

.terms-row .sidebar-left {
  height: calc(100vh - 8rem);
  position: sticky;
  top: 50px;
  width: 400px;
  z-index: 2;
  max-width: 400px;
  padding-right: 50px;
}

.terms-row .flex-grow-1 {
  max-width: calc(100% - 450px);
}

.content-page-heading {
  background: #F9FAFC;
}

.content-page-heading .text-wrap {
  padding: 100px 0;
}

.content-page-heading .text-wrap h1 {
  margin: 0;
  font-weight: 700;
  font-size: calc(25px + 6vw);
  color: #151515;
}

.terms-row .sidebar-left ul {
  margin: 0;
  list-style-type: none;
  padding: 0;
}

.terms-row .sidebar-left ul li a {
  color: #151515;
  display: inline-block;
  transition: .3s;
  text-decoration: none;
  cursor: pointer;
  margin: 0 0 15px 0;
  position: relative;
}

.terms-row .sidebar-left ul li a.active {
  font-weight: 600;
  font-size: 18px;
  color: var(--primary-color);
}

.terms-row .sidebar-left ul li a:hover {
  color: var(--primary-color);
}

.terms-row .sidebar-left ul li a::after {
  content: "";
  width: 0;
  position: absolute;
  left: 0;
  bottom: 0px;
  height: 2px;
  background: var(--primary-color);
  transition: .3s;
}

.terms-row .sidebar-left ul li a.active::after {
  width: 100%;
}

.header-menu-content ul {
  margin: 0;
  list-style-type: none;
  text-align: right;
  padding: 0;
  display: flex;
  justify-content: flex-end;
}

.content-page-heading {
  padding-top: 60px;
}

.header-menu-content ul li:not(:first-of-type) {
  margin: 0 0 0 30px;
}

.header-menu-content ul li a {
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: #A9AEB2;
  border-bottom: 2px solid #C3C8CC;
  padding: 5px 0;
  display: inline-block;
  text-decoration: none;
  transition: .3s;
}

.header-menu-content ul li a.active {
  font-weight: 600;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.header-menu-content ul li a:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.custom-drp {
  max-width: 300px;
  padding: 15px !important;
  min-width: 300px !important;
}

.custom-drp .dropdown-item h5 {
  margin: 0 0 5px 0;
  font-weight: 400;
  color: #151515;
  font-size: 18px;
}

.custom-drp .dropdown-item p {
  white-space: normal;
  font-size: 12px;
  color: #707378;
}

.custom-drp .dropdown-item:hover, .custom-drp .dropdown-item:active, .custom-drp .dropdown-item.active {
  background: #F5F5F5 !important;
}

.custom-drp .dropdown-item {
  padding: 15px !important;
}

.custom-drp .dropdown-item:hover h5, .custom-drp .dropdown-item:active h5, .custom-drp .dropdown-item.active h5 {
  color: #36C748;
  font-weight: 500;
}

.profile-button p {
  font-weight: 400;
  font-size: 18px;
  color: #383B40;
}

.profile-button img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  overflow: hidden;
}

.custom-data-table .rdt_TableHeader {
  position: absolute;
  bottom: 0;
  background: transparent;
}

.custom-data-table {
  position: relative;
}

.custom-data-table .rdt_TableHeader>div:first-of-type {
  opacity: 0;
}

.custom-data-table .rdt_TableHeader div {
  background: transparent;
  padding: 0;
  flex-direction: row-reverse;
  width: auto;
  align-items: center;
  font-weight: 400;
  font-size: 15px;
  color: #0F2744;
  gap: 10px;
}

.custom-data-table .rdt_TableHeader .action-btn {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-data-table .rdt_TableHeader .action-btn svg {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  display: block;
}

.custom-data-table .rdt_TableHeader .action-btn svg path {
  stroke: var(--primary-color);
}

.custom-data-table .rdt_TableHeader .action-btn:hover {
  background: #F5F5F5;
}

.rdt_Pagination button {
  fill: #383B40;
}

.rdt_Pagination button:hover:not(:disabled) {
  background: #F5F5F5;
  fill: var(--primary-color);
}

.custom-switch input[type="checkbox"] {
  display: none;
}

.custom-data-table .form-check.form-switch input[type="checkbox"] {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='16' viewBox='0 0 28 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect y='2.3999' width='28' height='11.2' rx='5.6' fill='%23E2E3E6'/%3E%3Crect width='15.5556' height='16' rx='7.77778' fill='%23A9AEB2'/%3E%3C/svg%3E") !important;
  background-color: transparent !important;
  border: none !important;
  width: 28px;
  cursor: pointer;
  opacity: 1;
}

.custom-data-table .form-check.form-switch input[type="checkbox"]:checked {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='16' viewBox='0 0 28 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='28' y='13.6001' width='28' height='11.2' rx='5.6' transform='rotate(180 28 13.6001)' fill='%23BFEFC5'/%3E%3Crect x='28' y='16' width='15.5556' height='16' rx='7.77778' transform='rotate(180 28 16)' fill='%233CCF4E'/%3E%3C/svg%3E") !important;
}

.custom-data-table .form-check.form-switch input[type="checkbox"]::before {
  display: none;
}

.theme-table tbody td.text-center .form-check.no-label input {
  margin: auto !important;
  float: none;
}

.custom-data-table.table-without-pagination {
  padding-bottom: 52px;
}

.custom-data-table.table-without-pagination div[class*="TableRow"] {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(0, 0, 0, .12);
}

.custom-data-table div[class*="TableHeadRow"] div[class*="TableCol"] span {
  opacity: 1;
  font-size: 10px;
}

.selection-button-wrap {
  border-left: 1px solid #DADADA;
  margin-left: 15px;
  padding-left: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-timezone {
  background: #F5F5F5;
}

.selection-button-wrap .btn-new {
  background: #F5F5F5;
}

.selection-button-wrap .btn-new svg {
  width: 22px;
  height: 22px;
}

.selection-button-wrap .btn-new svg path {
  stroke: #151515;
}

.fileMove .modal-header {
  background: #F5F5F5;
  border-bottom: 1px solid #D9D9D9;
  font-size: 24px;
  color: #383B40;
  margin: 0 !important;
}

.fileMove .btn-link {
  text-decoration: underline !important;
  margin: 0;
  transition: .3s;
}

.fileMove .btn-link:hover {
  text-decoration: none !important;
  color: #707378;
}

.fileUpload .modal-dialog .modal-body .custom-data-table {
  min-width: 810px;
}

.delete-modal-wrap .delete-body-wrap .text-normal {
  margin: 0 0 30px 0;
}

.delete-modal-wrap .delete-body-wrap .text-normal p {
  color: #151515;
  max-width: 500px;
}

/* .custom-data-table.media-checks div[class*="TableRow"] input[type="checkbox"] {
  opacity: 0;
} */

.custom-data-table.media-checks div[class*="TableRow"].selected input[type="checkbox"], .custom-data-table.media-checks div[class*="TableRow"]:hover input[type="checkbox"] {
  opacity: 1;
}

.chips-wrap {
  gap: 10px 15px;
}

.chips-wrap .chips {
  background: #DFEBFC;
  border-radius: 4px;
  font-weight: 400;
  font-size: 14px;
  color: #151515;
  gap: 6px;
  padding: 5px 10px;
}

.chips-wrap .chips button {
  padding: 0;
  border: none;
  background: transparent;
  width: 10px;
  height: 10px;
}

.chips-wrap .chips p {
  margin: 0 !important;
  font-weight: 400;
  font-size: 14px !important;
  letter-spacing: 0.02em;
  color: #151515 !important;
}

.chips-wrap .chips button svg {
  vertical-align: top;
}

.heading-section h3 {
  margin: 0;
  font-size: 32px;
}

.vmersive-breadcrumbs {
  /* border-bottom: 1px solid #E2E3E6; */
  /* padding-bottom: 30px; */
  margin-bottom: 20px;
}

.vmersive-breadcrumbs .breadcrumb {
  margin: 0;
}

.vmersive-breadcrumbs .breadcrumb li {
  font-weight: 400;
  font-size: 14px;
  color: #707378;
  display: flex;
  align-items: center;
}

.vmersive-breadcrumbs .breadcrumb li a {
  color: #707378;
  text-decoration: none;
  transition: .3s;
}

.vmersive-breadcrumbs .breadcrumb li a:hover {
  color: var(--primary-color);
}

.vmersive-breadcrumbs .breadcrumb li.active {
  font-weight: 500;
  color: #151515;
}

.vmersive-breadcrumbs .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  background-image: url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.97266 4.0886L15.5073 10.6232C16.279 11.3949 16.279 12.6578 15.5073 13.4295L8.97266 19.9641' stroke='%23C3C8CC' stroke-width='1.43177' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  content: "";
  width: 20px;
  height: 20px;
  padding: 0;
  margin-right: 0.5rem;
  background-position: center;
  background-size: cover;
}

.custom-select div[class*="MenuList"] {
  max-height: 220px;
}

.btn .spinner-border {
  width: 18px;
  height: 18px;
  border: 3px solid currentcolor;
  border-right-color: transparent;
  vertical-align: sub;
}

.error .form-control {
  border-color: var(--danger-color) !important;
}

.dropdown .dropdown-menu .dropdown-item {
  cursor: pointer;
}

::-webkit-scrollbar-thumb:vertical {
  height: 50px;
  background-color: #E2E3E6;
  -webkit-border-radius: 3px;
}

::-webkit-scrollbar-thumb:horizontal {
  width: 50px;
  background-color: #E2E3E6;
  -webkit-border-radius: 3px;
}

.table-media {
  cursor: pointer;
}

.custom-data-table .rdt_Table {
  min-height: 510px !important;
}

.tab-search.search-filter {
  margin-bottom: 40px;
}

.tab-search.search-filter .search-filter-padding .custom-search-input {
  background-color: #F5F5F5;
  border-color: #F5F5F5;
}
/* css file upload */

.uploadMedia.fileUpload .modal-details-width {
  max-width: 1200px;
}

.fileUpload .modal-dialog .modal-body {
  padding: 25px;
}

.fileUpload .modal-dialog .modal-body .supported-files {
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: #151515;
  margin: 0 0 15px 0;
  padding-right: 25px;
  min-height: 20px;
}

.fileUpload .modal-dialog .modal-body .file-upload-wrapper {
  border-width: 1px;
  border-radius: 4px;
  padding: 20px;
  border-color: #c3c8cc;
  border-style: dashed;
  min-height: calc(200px + 6vw);
}

.fileUpload .modal-dialog .modal-body .file-upload-wrapper .title {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: #151515;
  margin: 0 0 20px 0;
}

.fileUpload .modal-dialog .modal-body .file-upload-wrapper .icon-option-wrap {
  gap: 15px;
}

.fileUpload .modal-dialog .modal-body .file-upload-wrapper .icon-option-wrap .icon-wrap {
  width: 75px;
  height: 63px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 10px;
}

.fileUpload .modal-dialog .modal-body .file-upload-wrapper .icon-option-wrap p {
  font-weight: 400;
  font-size: 14px;
  color: #151515;
  margin-bottom: 0px;
}

.fileUpload .modal-dialog .modal-body .file-upload-wrapper .icon-option-wrap .upload .icon-wrap {
  background: #bfefc5;
}

.fileUpload .modal-dialog .modal-body .file-upload-wrapper .icon-option-wrap .link .icon-wrap,
.fileUpload .modal-dialog .modal-body .file-upload-wrapper .selected-option .icon-wrapper.link .icon-wrap {
  background: #e5dbd4;
}

.fileUpload .modal-dialog .modal-body .file-upload-wrapper .icon-option-wrap .vimeo .icon-wrap,
.fileUpload .modal-dialog .modal-body .file-upload-wrapper .selected-option .icon-wrapper.vimeo .icon-wrap {
  background: #e2e1ff;
}

.fileUpload .modal-dialog .modal-body .file-upload-wrapper .icon-option-wrap .youtube .icon-wrap,
.fileUpload .modal-dialog .modal-body .file-upload-wrapper .selected-option .icon-wrapper.youtube .icon-wrap {
  background: #ffc4c4;
}

.fileUpload .modal-dialog .modal-body .file-upload-wrapper .selected-option .icon-wrapper .icon-wrap {
  width: 100px;
  height: 87px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-right: -10px;
  z-index: 1;
  position: relative;
}

.fileUpload .modal-dialog .modal-body .file-upload-wrapper .selected-option .field-wrapper {
  background: #f5f5f5;
  padding: 14px 0px 10px 30px;
}

.fileUpload .modal-dialog .modal-body .file-upload-wrapper .selected-option .field-wrapper .form-control {
  border: 1px solid #e2e3e6;
  border-radius: 2px;
  font-weight: 400;
  font-size: 14px;
  color: #707378;
  padding: 7px 10px;
}

.fileUpload .modal-dialog .modal-body .file-upload-wrapper .selected-option .field-wrapper .btn {
  padding: 5px 15px;
  border-radius: 2px;
}

.fileUpload .modal-dialog .modal-body .upload-media {
  width: 100%;
}

.fileUpload .modal-dialog .modal-body .upload-media .icon-wrap svg {
  width: 42px;
  height: 42px;
}

.fileUpload .modal-dialog .modal-body .upload-media .text-progress {
  padding-left: 15px;
  padding-right: 10px;
}

.fileUpload .modal-dialog .modal-body .upload-media .text-progress .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #383b40;
  margin: 0 0 6px 0;
}

.fileUpload .modal-dialog .modal-body .upload-media .text-progress .progress {
  background: #e2e3e6;
  height: 5px;
}

.fileUpload .modal-dialog .modal-body .upload-media .text-progress .progress .progress-bar {
  background: var(--primary-color);
}

.fileUpload .modal-dialog .modal-body .upload-media .remove-icon {
  background: transparent;
  border: none;
  margin-top: 19px;
}

.fileUpload .modal-dialog .modal-body .upload-media .text-progress .text .file-name {
  max-width: calc(100% - 40px);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.fileUpload .modal-dialog .modal-body .file-upload-wrapper .icon-option-wrap .upload-type-wrap {
  cursor: pointer;
}
.modalDetails .formstyle .btn-close,
.previewModal .formstyle .btn-close {
  position: absolute;
  right: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L27 27' stroke='%23707378' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M27 1L1 27' stroke='%23707378' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  padding: 0;
  width: 25px;
  height: 25px;
  opacity: 1;
  top: 20px;
  outline: none;
  box-shadow: none;
  z-index: 2;
}
.fileUpload .modal-dialog {
  max-width: 550px;
}

.fileUpload .modal-details-width-custom {
  max-width: 850px;
}
.selected-option {
  background-color: #f5f5f5;
}
.selected-option {
  background-color: #f5f5f5;
  padding: 20px;
}
.selected-option .icon-wrapper {
  padding-top: 14px;
}
.file-name:hover {
  color: #36c748;
  font-weight: 600;
  transform: scale(1.1);
}
.file-name {
  transition: 0.2s ease-in-out;
  color: #000;
}
.preview{
  cursor: pointer;
}

.lang-action-slt .css-13cymwt-control, .lang-action-slt .css-t3ipsp-control{
  background: whitesmoke;
  border: none;
  /* min-height: 0; */
  padding: 5px 0px;
}
.custom-data-table .sc-hBxehG.ljzry{
  font-weight: 700;
}
.preview-video{
  height: 71vh;
  /* object-fit: cover; */
}
.add-btn.back-btn svg{
  transform: rotateY(-180deg);
}
.add-btn.back-btn {
  padding: 10px 25px 10px 15px;
}
.lang-active-toggle.form-check .form-check-input {
  float: right;
  margin-left: 0;
  width: 3rem;
  height: 22px !important;
}
.lang-active-toggle .form-check-input:checked {
  background-color: #36c748;
  border-color: #36c748;
}
.lang-active-toggle{
  padding: 13px 10px;
}

/* breadcrumb css start **************************************/
.main-site-wrapper .page-content-wrap.bg-dashboard {
  background: #f9fafc;
}

.meeting-header {
  border-bottom: 1px solid #dadada;
  padding: 20px;
}

.meeting-header ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  list-style-type: none;
  counter-reset: steps;
  padding-left: 20px;
}

.meeting-header ul li {
  counter-increment: steps;
  display: flex;
  align-items: center;
}

.meeting-header ul li a {
  font-weight: 400;
  font-size: 20px;
  color: #90949a;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.meeting-header ul li a::before {
  content: counter(steps);
  border: 2px solid #90949a;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  font-weight: 600;
}

.meeting-header ul li:not(:last-of-type)::after {
  content: "";
  width: 55px;
  height: 2px;
  background: #90949a;
  margin: 0 20px;
}

.meeting-header ul li a.active {
  font-weight: 500;
  color: var(--primary-color);
}

.meeting-header ul li a.active::before {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}
/* breadcrumb css end **************************************/

/* browse file css start ************************/

.formbold-form-input {
  width: 100%;
  padding: 12px 24px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  background: white;
  font-weight: 500;
  font-size: 16px;
  color: #6b7280;
  outline: none;
  resize: none;
}
.formbold-form-input:focus {
  border-color: #6a64f1;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.formbold-btn {
  text-align: center;
  font-size: 16px;
  border-radius: 6px;
  padding: 14px 32px;
  border: none;
  font-weight: 600;
  background-color: #6a64f1;
  color: white;
  cursor: pointer;
}
.formbold-btn:hover {
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.formbold--mx-3 {
  margin-left: -12px;
  margin-right: -12px;
}
.formbold-px-3 {
  padding-left: 12px;
  padding-right: 12px;
}

.formbold-mb-5 input[type=file]::-webkit-file-upload-button {
  visibility: hidden;
  display: none;
}
.formbold-mb-5 input[type=file]::-moz-file-upload-button{
  visibility: hidden;
  display: none;
}
.formbold-mb-5 input[type=file]::-ms-box-flex{
  visibility: hidden;
  display: none;
}

.formbold-mb-5 input{
  width: 100%;
}


/* browse file css end ************************/
/* Event page ************************/
.lang-add {
  width: 100%;
}

.events-video {
  border-bottom: 1px solid #dadada !important;
}

.backgound-group {
  background-color: whitesmoke;
}

.group-table {
  background-color: whitesmoke;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 6px;
}

.custom-data-table.event-table .rdt_Table {
  min-height: auto !important;
}
p.content-edits,
#addEventModal ._i5--j._G0k44,
.heading-input,
#addEventModal ._IYz6Z,
#addEventModal ._i5--j.heading-input {
  outline: none;
  box-shadow: none !important;
  background: var(--white-color);
  border: 1px solid #C1C7CF;
  border-radius: 5px;
  height: auto;
  padding: 5px 12px;
  line-height: 1.4;
  font-weight: 400;
  font-size: 16px;
  color: #171717;
}

#addEventModal ._i5--j.heading-input:focus {
  border-color: #36c748;
}

.heading-input,
#addEventModal ._IYz6Z {
  min-height: 40px;
  padding-top: 8px;
}

#addEventModal .form-group {
  min-height: 73px;
}

#addEventModal label.form-check-label,
#addEventModal .heading-input {
  width: 100%;
}

#addEventModal ._i5--j._G0k44 {
  padding-top: 8px;
  overflow: hidden;
}

#addEventModal .heading-input:focus {
  outline: 0;
}

.events-video .button-wrap {
  padding-right: 20px;
}

.events-video .btn.add-btn {
  padding-left: 40px;
  padding-right: 40px;
}

div#accordionPanels {
  --bs-accordion-border-width: 0px;
}

div#accordionPanels .accordion-button:not(.collapsed),
div#accordionPanels .accordion-button,
div#accordionPanels .accordion-body {
  color: #000000;
  background-color: transparent;
  padding: 0;
}

div#accordionPanels .accordion-button:not(.collapsed) {
  color: #36c748;
}

div#accordionPanels .accordion-body {
  padding: 20px 0px 0px;
}

div#accordionPanels .accordion-button h3 {
  margin-left: 25px;
  font-size: 26px;
}

div#accordionPanels .accordion-button:not(.collapsed)::after,
div#accordionPanels .accordion-button::after {
  position: absolute;
  transform: rotate(-90deg);
  background-image: var(--bs-accordion-btn-icon);
}

div#accordionPanels .accordion-button::after {
  transform: rotate(0deg);
}
.accordion .accordion-item {
  position: relative;
}
.accordion .add-event-btn{
position: absolute;
right: 20px;
z-index: 99;
}

/************* switcheventddl ********************/
.switcheventddl{
  width: 100%;
  background: whitesmoke;
  padding: 12px 4px;
  color: #212512;
  border: none;
}

/* .switcheventddl:focus{
  background-color: #196923;
} */
.switcheventddl:focus-visible, .lang-action-slt:focus-visible {
  outline: none;
    border: 0.5px solid #36c748;
}

.form-check-input:checked {
  background-color: #36c748;
  border-color: #36c748;
}
.form-check-input {
  width: 1.2em;
  height: 1.2em;
  margin-top: 0;
  vertical-align: top;
  margin-right: 10px;
}
.faint, .faint1{
  opacity: 0.6;
}
.border-box {
  border: 0.5px solid #36c748;
  padding: 10px;
}
.css-1u9des2-indicatorSeparator {
  width: 0 !important;
}
.css-tj5bde-Svg {
  width: 22px;
  height: 20px;
  color: #36c748;
  /* stroke-width: 0.2px !important; */
}
.css-1xc3v61-indicatorContainer {
  color: #212512 !important;
  padding: 2px !important;
  margin-right: 5px;
}

.css-t3ipsp-control:hover {
  border-color: #36C748 !important;
}
.modal-body small{
  font-style: italic;
  font-size: 13px;
}
select.form-select {
  background: #f5f5f5;
  border: none;
  padding: 12px 12px;
  line-height: 1.4;
  font-weight: 400;
  font-size: 16px;
  color: #212529;
  background-image: url(../images/arrow-down.png) !important;
  background-repeat: no-repeat;
  background-position: calc(100% - 13px) 50%;
  background-size: 17px;
  padding-right: 40px;
}
option:hover {
  background-color: #36c748;
  color: #fff;
}
.css-1fdsijx-ValueContainer{
  padding: 2px 10px;
}
.css-qbdosj-Input {
 min-height:  28px; 
}
/************* switcheventddl ********************/

/* Event page end************************/








/* css modal */
.custom-modal-popup {
  display: flex;
  justify-content: center;
}
.custom-modal-popup .modal-dialog {
  max-width: 680px;
}
.custom-modal-popup .modal-body {
padding: 16px;
}
.custom-modal-popup .modal-dialog {
  max-width: 680px;
  width: 680px;
}
.custom-modal-popup.deleteModal .modal-content {
  position:absolute;
  width: 100%;
}
.custom-modal-popup .modal-content {
  position: absolute;
  margin: auto;
  background-color: #ffffff;
  width: 25%;
  padding: 1.5rem;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.modal-overlay {
  width: 100%;
  height: 100%;
  background-color: #00000080;
  position: fixed;
  top: 0;
  transition: opacity .15s linear;
  animation: fadeIn 0.5s;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
/* status badge css*/
.status-badge.active {
  font-size: 14px;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 5px;
}
.status-badge.inactive {
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 5px;
  color: #ffffff !important;
  background-color: #f24040;
}
.hide {
  display: none;
}
/* status badge css end*/
/* form css start */
.modal-content input.form-control::placeholder, .placeholder-t, .form-group input::placeholder,.form-group textarea::placeholder  {
  font-style: italic;
  font-size: 14px;
  color: #6c757d !important;
}
.form-label span, .form-check-label .mandatory-r {
  color: #ff0000;
}
/* form css end */
/* event page start */
.custom-data-table.event-table .rdt_TableBody {
  margin-bottom: 45px;
  }
  
  .custom-data-table.event-table  .rdt_TableHeadRow .rdt_TableCol:first-child {
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.language-listing ul li a {
  display: flex !important;
  justify-content: space-between;
}
.language-listing ul li a button {
display: none;
transition: 0.3s ease-in;
}
.language-listing ul li a:hover button {
  display: block;
  }
  /* event page end */

  .breadcrumbs > *{
    display: inline-block;
    max-width: 1220px;
    margin-right: 10px;
}

.breadcrumbs .crumb:after {
content: '>';
margin-left:10px;
}

.breadcrumbs .crumb:last-child::after {
display: none;
  }
  .breadcrumbs .crumb:last-child a {
    color: #000000 !important;
    pointer-events: none;
}

/* data range picker start*/

.date-range-picker {
  min-height: inherit;
  font-weight: 400;
  font-size: 15px;
  color: #0F2744 !important;
  gap: 5px;
  border: 1px solid #E2E3E6;
  border-radius: 5px;
  position: relative;
  padding: 10px 13px;
  line-height: 1.5;
  cursor: pointer;
  display: flex;
  align-items: center;
}

body .daterangepicker {
  border: none;
  background: #FFFFFF;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  font-family: var(--font-family);
}

body .daterangepicker::before {
  display: none;
}

body .daterangepicker .drp-calendar.left {
  border: none !important;
}

body .daterangepicker .ranges {
  margin: 0 !important;
  padding: 15px;
}

body .daterangepicker::after {
  display: none;
}

body .daterangepicker .ranges li {
  font-size: 14px;
  padding: 0.55rem 0.7rem;
}

body .daterangepicker .ranges li.active {
  background: rgb(54 199 72 / 14%);
  color: var(--primary-color) !important;
  font-weight: 600 !important;
}

body .daterangepicker td.in-range {
  background: rgb(54 199 72 / 14%);
}

body .daterangepicker td.active, body .daterangepicker td.active:hover {
  background: var(--primary-color);
}

body .daterangepicker .calendar-table th, body .daterangepicker .calendar-table td {
  font-size: 14px;
  font-weight: 400;
}

body .daterangepicker .calendar-table th {
  color: #728095;
}

body .daterangepicker.show-calendar .drp-buttons {
  padding: 15px;
}

body .daterangepicker.show-calendar .drp-buttons .drp-selected {
  float: left;
  padding-top: 12px;
  font-size: 14px;
  color: #0F2744;
}

body .daterangepicker.show-calendar .drp-buttons .btn {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 26px;
}

body .daterangepicker.show-calendar .drp-buttons .cancelBtn {
  border: 1px solid var(--primary-color);
  border-radius: 2px;
  color: var(--primary-color);
}

body .daterangepicker.show-calendar .drp-buttons .applyBtn {
  margin-left: 15px;
}

body .daterangepicker.show-calendar .drp-buttons .cancelBtn:hover {
  background: var(--primary-color);
  color: #fff;
}

body .daterangepicker .drp-calendar {
  padding-top: 15px !important;
}

body .daterangepicker .drp-calendar .prev, body .daterangepicker .drp-calendar .next {
  display: none;
}

body .daterangepicker .drp-calendar thead th.month {
  text-align: left;
}

body .daterangepicker .drp-calendar thead th:empty {
  display: none;
}

body .daterangepicker .drp-calendar thead th.month select {
  border: none;
  height: 35px;
  font-weight: 400;
  font-size: 14px;
  color: #0F2744;
  padding: 0 10px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding-right: 35px;
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 fill=%27%23212529%27%3e%3cpath fill-rule=%27evenodd%27 d=%27M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z%27/%3e%3c/svg%3e");
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  background-color: #F5F6F8;
  border-radius: 3px;
  width: auto;
}

/* data range picker end*/

.add-option button {
  padding: 5px 15px;
  border: 1px solid #36c748;
  color: #000000;
  font-size: 15px;
  background-color: #ffffff;
  border-radius: 4px;
}
.option-field input{
  margin-right: 20px;
  width: 90%;
}
.option-field {
  margin-bottom: 10px;
}
.add-new-option {
  display: flex;
  justify-content: space-between;
}
.add-new-option button{
  background-color: #36c748;
  transition: all 0.3s ease-in-out;
  color: #fff;
}
.add-new-option button:hover{
  background: #196923 !important;
}