@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800&display=swap");
:root {
  --heading: "Nunito", sans-serif !important;
  --primary: #6f00ff;
  --primary-hover: #7d19ff;
  --primary-btn-hover: linear-gradient(
          0deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.1)
      ),
      #6f00ff;
  --primary-btn-active: linear-gradient(
          0deg,
          rgba(255, 255, 255, 0.2),
          rgba(255, 255, 255, 0.2)
      ),
      #6f00ff;
  --secondary: #6f00ff;
  --accent: #1e94e9;
  --green: #0ba840;
  --orange: #fd7e14;
  --gray-one: #141414;
  --gray-two: #281e3e;
  --gray-three: #4c445f;
  --gray-four: #837f96;
  --gray-five: #b8b2cf;
  --gray-six: #d6d3e0;
  --gray-seven: #f2eff8;
  --gray-eight: #f7f6fb;
  --gray-nine: #ebe8f1;
  --border-color: #d6d3e0;
  --red: #ff0000;
  --danger: #d93b3d;
  --success: #4bb543;
  --h1: 32px;
}

/*Form fields*/
.form-group-animated {
  position: relative;
  margin-bottom: 20px;
}
.form-group-animated .form-control {
  padding: 13px 16px 13px 16px;
  box-shadow: none;
  border-radius: 8px;
  margin-bottom: 0px;
  height: 48px;
  position: relative;
  background: none;
  z-index: 1;
  border: 1px solid var(--gray-six);
}
.form-group-animated .form-control:hover {
  border-color: var(--gray-five);
}
.form-group-animated .form-control:focus {
  border-color: var(--primary);
}
.form-group-animated .form-control:focus ~ .form-group-animated-label {
  top: -10px;
  z-index: 2;
  color: var(--primary);
}
.form-group-animated .form-control:valid ~ .form-group-animated-label, .form-group-animated .form-control:disabled ~ .form-group-animated-label {
  top: -10px;
  z-index: 2;
}
.form-group-animated .form-control::-moz-placeholder-shown ~ .form-group-animated-label {
  top: -10px;
  z-index: 2;
}
.form-group-animated .form-control::placeholder-shown ~ .form-group-animated-label {
  top: -10px;
  z-index: 2;
}
.form-group-animated .form-control.valid ~ .form-group-animated-label {
  top: -10px;
  z-index: 2;
}
.form-group-animated .form-control:hover.error, .form-group-animated .form-control.valid.error, .form-group-animated .form-control:focus.error {
  border-color: var(--red);
}
.form-group-animated .form-control:hover.success, .form-group-animated .form-control.valid.success, .form-group-animated .form-control:focus.success {
  border-color: var(--success);
}
.form-group-animated .form-control.error {
  border-color: var(--red);
}
.form-group-animated .form-control.success {
  border-color: var(--success);
}
.form-group-animated-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-five);
  position: absolute;
  left: calc(1rem - 4px);
  top: 12px;
  padding-left: 4px;
  padding-right: 4px;
  background: var(--white);
  transition: top 0.4s;
  z-index: 0;
  margin-bottom: 0px;
}
.form-group-animated .error ~ .form-group-animated-label {
  z-index: 2;
  top: -12px;
}
.form-group-animated .success ~ .form-group-animated-label {
  z-index: 0;
}
.form-group-animated_topAnimation {
  position: absolute;
  top: -25px;
  width: 100%;
  left: 0;
}
.form-group-animated_topAnimation span,
.form-group-animated_topAnimation a {
  font-weight: 400;
  font-size: 14px;
  color: var(--primary);
}
.form-group-animated_topAnimation span:hover,
.form-group-animated_topAnimation a:hover {
  color: var(--primary-hover);
}
.form-group-animated label.error {
  font-size: 12px;
  font-weight: 400;
  width: 100%;
  position: relative;
  top: 0px;
  margin-bottom: 0;
  color: var(--red);
  margin-top: 4px;
}
.form-group-animated label.error::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../imgs/Error-Validation-Vector.svg) no-repeat;
  background-size: 18px;
  position: absolute;
  right: 1rem;
  top: -37px;
}
.form-group-animated label.success {
  font-size: 12px;
  font-weight: 400;
  width: 100%;
  position: relative;
  top: 0px;
  margin-bottom: 0;
  margin-top: 4px;
  color: var(--success);
}
.form-group-animated label.success::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../imgs/success.svg) no-repeat;
  background-size: 18px;
  position: absolute;
  right: 1rem;
  top: -37px;
}
.form-group-animated label.caption {
  font-size: 12px;
  font-weight: 400;
  width: 100%;
  position: relative;
  top: 0px;
  margin-bottom: 0;
  margin-top: 4px;
  color: var(--gray-five);
}
.form-group-animated .validation-message {
  font-size: 12px;
  font-weight: 400;
  width: 100%;
  color: var(--red);
  position: relative;
}
.form-group-animated ::-moz-placeholder {
  opacity: 0;
}
.form-group-animated ::placeholder {
  opacity: 0;
}
.form-group-animated select.form-control ~ label.form-group-animated-label {
  top: -12px !important;
}

.form-group-animated.colorPiker .colorpick-eyedropper-input-trigger {
  display: none;
}
.form-group-animated.colorPiker .colorPikerBtn {
  width: 22px;
  height: 22px;
  margin: unset;
  border: none;
  padding: 0px;
  background: none;
  box-shadow: none;
}
.form-group-animated.colorPiker .colorPiker-value {
  margin-bottom: 0px;
  margin-left: 12px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  background: var(--white);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--gray-one);
  -webkit-background-fill-color: var(--white);
  background-color: #fff;
}

.xb-imgUpload {
  position: relative;
  overflow: hidden;
  width: 160px;
  height: 100px;
}
.xb-imgUpload-field {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}
.xb-imgUpload::after {
  content: "";
  width: 100%;
  height: 94px;
  background: url("../imgs/image-upload.svg") no-repeat;
  background-position: 100%;
  position: absolute;
}

.imageUploadedNow::after {
  display: none;
}

.xb-pdfUpload {
  position: relative;
  overflow: hidden;
  width: 160px;
  height: 94px;
}
.xb-pdfUpload-field {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}
.xb-pdfUpload::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../imgs/pdf-upload.svg") no-repeat;
  background-position: 100%;
  position: absolute;
}

input[type=range] {
  /* color the track
   * firefox/webkit gradient done in JavaScript */
  /* size the slider */
  height: 12px;
  width: 256px;
}
input[type=range]::-moz-range-track {
  border: 2px solid #444;
  border-radius: 8px;
}
input[type=range]::-ms-fill-upper, input[type=range]::-ms-fill-lower {
  border: 2px solid #444;
  border-radius: 8px;
}
input[type=range]::-ms-track {
  border: none;
  color: transparent;
}
input[type=range].webkit-track {
  border: 2px solid #444;
  border-radius: 8px;
  -webkit-appearance: none;
}
input[type=range]::-moz-range-track {
  height: 12px;
}
input[type=range]::-ms-track {
  height: 12px;
}

/*Form fields end*/
.btn {
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 700;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  box-shadow: none;
}
.btn i {
  width: 24px;
  height: 24px;
  margin: 0;
}
.btn i img {
  width: 24px;
}
.btn:focus {
  box-shadow: none;
}

.btn-primary {
  color: var(--white);
  background-color: var(--primary);
  border-color: var(--primary);
}
.btn-primary:focus, .btn-primary:hover {
  background-color: var(--primary-hover);
  background: var(--primary-btn-hover);
  border-color: var(--primary-hover);
  color: var(--white) !important;
}
.btn-primary:focus {
  box-shadow: none;
}
.btn-primary:active {
  background: var(--primary-btn-active) !important;
}

.btn-accent {
  color: var(--white);
  background-color: var(--accent);
  border-color: var(--accent);
}
.btn-accent:hover {
  color: var(--white);
}

.btn-green {
  color: var(--white);
  background-color: var(--green);
  border-color: var(--green);
}
.btn-green:hover {
  color: var(--white);
}

.btn-orange {
  color: var(--white);
  background-color: var(--orange);
  border-color: var(--orange);
}
.btn-orange:hover {
  color: var(--white);
}

.btn-plan,
.btn-plan:hover,
.btn-plan:focus,
.btn-plan:active {
  background: none;
  border: none;
  box-shadow: none;
  outline: 0;
  padding-left: 0px;
  color: var(--gray-three);
}

.btn-sm {
  padding: 3px 11px 3px 11px;
  height: 30px;
}

.xb-rounded-pills {
  padding: 6px;
  background-color: var(--gray-nine);
  display: flex;
  align-items: center;
}
.xb-rounded-pills .radio-container {
  width: 133px;
  height: 36px;
  color: #141414;
  border-radius: 20px;
  text-align: center;
  margin: 0;
  position: relative;
  overflow: hidden;
  font-size: 14px;
  font-weight: 700;
}
.xb-rounded-pills .radio-container input[type=radio] {
  position: absolute;
  width: 100%;
  height: 36px;
  top: 0px;
  left: 0px;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}
.xb-rounded-pills .radio-container input[type=radio] ~ .radio-checkmark {
  width: 100%;
  height: 36px;
  text-align: center;
  position: absolute;
  top: 0px;
  left: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.xb-rounded-pills .radio-container input[type=radio]:checked ~ .radio-checkmark {
  background-color: #f1e5ff;
  color: var(--primary);
}
.xb-rounded-pills .nav-link {
  font-size: 14px;
  font-weight: 700;
  padding: 6px 14px;
}

.openLink {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 14px 24px 14px 24px;
  position: relative;
}
.btn-outline-primary svg path {
  fill: var(--primary);
}
.btn-outline-primary:hover, .btn-outline-primary:active {
  background-color: var(--secondary) !important;
  color: var(--white) !important;
  border: 2px solid var(--secondary);
}
.btn-outline-primary:hover svg path, .btn-outline-primary:active svg path {
  fill: var(--white);
}
.btn-outline-primary:hover::before, .btn-outline-primary:active::before {
  content: "";
  position: absolute;
  border: 2px solid var(--white);
  width: calc(100% - 4px);
  height: 96%;
  border-radius: 8px;
}

.btn-outline-danger {
  border: 2px solid var(--danger);
  color: var(--danger);
  padding: 14px 24px 14px 24px;
  position: relative;
}
.btn-outline-danger svg path {
  fill: var(--danger);
}
.btn-outline-danger:hover, .btn-outline-danger:active {
  background-color: var(--danger);
  color: var(--white);
  border: 2px solid var(--danger);
}
.btn-outline-danger:hover svg path, .btn-outline-danger:active svg path {
  fill: var(--white);
}
.btn-outline-danger:hover::before, .btn-outline-danger:active::before {
  content: "";
  position: absolute;
  border: 2px solid var(--white);
  width: calc(100% - 4px);
  height: 96%;
  border-radius: 8px;
}

.btn-outline-secondary {
  border: 2px solid var(--gray-five);
  color: var(--gray-five);
  padding: 14px 24px 14px 24px;
  position: relative;
}
.btn-outline-secondary svg path {
  fill: var(--gray-five);
}
.btn-outline-secondary:hover {
  background-color: var(--secondary);
  color: var(--white);
  border: 2px solid var(--secondary);
}
.btn-outline-secondary:hover svg path {
  fill: var(--white);
}
.btn-outline-secondary:hover::before {
  content: "";
  position: absolute;
  border: 2px solid var(--white);
  width: calc(100% - 4px);
  height: 96%;
  border-radius: 8px;
}

.slider:after {
  content: "ON";
  color: var(--gray-1);
  display: block;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 503%;
  font-size: 16px;
  font-family: var(--primary-font);
  width: 300px;
}

input:checked + .slider:after {
  content: "Disable";
  color: #000;
}

.banner-section:after, .banner-section::before,
.banner-section input:checked + .slider:after {
  content: "";
}

.banner-section input:checked + .slider:after,
.banner-section .slider:after {
  content: "";
}

.btn-style-3,
div.btn-style-3 {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  background-color: none !important;
  background: none !important;
  display: inline-block;
  border-radius: 50rem;
}

.btn-style-2,
div.btn-style-2 {
  width: 100%;
  background: none !important;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  font-weight: normal;
}

.btn-style-1,
div.btn-style-1 {
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  font-weight: normal;
}

.btn:disabled,
.btn.disabled {
  background: var(--gray-six);
  color: var(--white);
}

.btn.btn-outline-primary:disabled,
.btn.btn-outline-primary:disabled:hover {
  border: 1.5px solid var(--gray-six);
  background: transparent;
  color: var(--gray-six);
}

.btn-gopro {
  background: #fff4ce !important;
  border-color: #fff4ce !important;
  color: #e5aa12;
}
.btn-gopro:hover, .btn-gopro:focus, .btn-gopro:active {
  color: #d49904;
}

.slider.goproSlider::after {
  content: "Enable";
}

.slider.goproSlider input:checked + .slider.goproSlider::after {
  content: "OFF";
}

.btn-vsmall {
  border: none;
  box-shadow: none;
  padding: 8px 16px;
  width: auto;
  height: 22px;
  margin: 34px auto 26px;
  display: flex;
  font-size: 12px;
  color: var(--white);
  background: #1e94e9;
  font-weight: 700;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
}

.buttonsSection .btn {
  display: flex !important;
}

.xb-ronded-anlytics.xb-rounded-pills.navAnalytics {
  background: #f2eff8;
  border-radius: 36px !important;
}

.xb-ronded-anlytics.xb-rounded-pills.navAnalytics .nav-item .nav-link.active {
  border-radius: 36px !important;
}

.add-to-folder-button {
  border: none !important;
}

.modal.xb-modal-lg .modal-lg {
  width: 100%;
  max-width: 900px;
}
.modal.xb-modal-lg .modal-lg .modal-content {
  padding-bottom: 2rem;
}
@media screen and (min-width: 1200px) {
  .modal.xb-modal-lg .modal-lg .modal-content {
    padding-left: 114px;
    padding-right: 114px;
    padding-top: 16px;
  }
}
.modal.xb-modal-lg .modal-xl {
  width: 100%;
  max-width: 1060px;
}
.modal.xb-modal-lg .modal-xl .modal-content {
  padding-bottom: 2rem;
}
@media screen and (min-width: 1200px) {
  .modal.xb-modal-lg .modal-xl .modal-content {
    padding-left: 114px;
    padding-right: 114px;
    padding-top: 16px;
  }
}
.modal.xb-modal-lg .modal-xxl {
  width: 100%;
  max-width: 1260px;
}
.modal.xb-modal-lg .modal-xxl .modal-content {
  padding-bottom: 2rem;
}
@media screen and (min-width: 1200px) {
  .modal.xb-modal-lg .modal-xxl .modal-content {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 16px;
  }
}
.modal.xb-modal-lg .modal-Logo {
  width: 150px;
}
.modal.xb-modal-lg .modal-header .close {
  margin: -1rem;
}
.modal.xb-modal-lg p {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}
.modal.xb-modal-lg .modal-content .modal-header h3.modal-title {
  font-size: 20px;
  color: var(--gray-one);
}
.modal.xb-modal-lg .modal-content .modal-header h3.modal-title span {
  font-weight: 800;
}
.modal.xb-modal-lg .modal-content .modal-header .close {
  opacity: 1;
  color: var(--gray-three);
}
.modal.xb-modal-lg .modal-content .modal-body {
  padding-top: 0px;
}
.modal.xb-modal-lg .modal-content h4 {
  color: var(--gray-three);
}
.modal.xb-modal-lg .modal-content .xb-multipleEmail-container {
  padding: 8px 0px 8px 8px;
  border: 1px solid var(--gray-six);
  border-radius: 8px;
  max-width: 460px;
  position: relative;
}
.modal.xb-modal-lg .modal-content .xb-multipleEmail-container:hover {
  border: 1px solid var(--gray-five);
}
.modal.xb-modal-lg .modal-content .xb-multipleEmail-container .xb-multipleEmail {
  margin-bottom: 0px;
  position: relative;
  max-width: 460px;
}
.modal.xb-modal-lg .modal-content .xb-multipleEmail-container .xb-multipleEmail .multiple_emails-container input.multiple_emails-input {
  border: 0px;
  width: 100%;
  position: relative;
  padding-right: 84px;
  z-index: 2;
}
.modal.xb-modal-lg .modal-content .xb-multipleEmail-container .xb-multipleEmail .multiple_emails-container input.multiple_emails-input:focus, .modal.xb-modal-lg .modal-content .xb-multipleEmail-container .xb-multipleEmail .multiple_emails-container input.multiple_emails-input:hover, .modal.xb-modal-lg .modal-content .xb-multipleEmail-container .xb-multipleEmail .multiple_emails-container input.multiple_emails-input:visited, .modal.xb-modal-lg .modal-content .xb-multipleEmail-container .xb-multipleEmail .multiple_emails-container input.multiple_emails-input:focus-visible {
  outline: 0;
}
.modal.xb-modal-lg .modal-content .xb-multipleEmail-container .xb-multipleEmail .multiple_emails-container .multiple_emails-ul {
  margin-bottom: 0px;
  max-height: 151px;
  overflow-y: auto;
  padding-left: 0px;
  display: flex;
  flex-flow: row wrap;
  list-style: none;
  gap: 8px;
}
.modal.xb-modal-lg .modal-content .xb-multipleEmail-container .xb-multipleEmail .multiple_emails-container .multiple_emails-ul .multiple_emails-email {
  position: relative;
  padding: 2px 8px;
  border: 1px solid var(--gray-six);
  color: var(--gray-one);
  font-size: 16px;
  border-radius: 4px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.modal.xb-modal-lg .modal-content .xb-multipleEmail-container .xb-multipleEmail .multiple_emails-container .multiple_emails-ul .multiple_emails-email a.multiple_emails-close {
  order: 2;
}
.modal.xb-modal-lg .modal-content .xb-multipleEmail-container .xb-multipleEmail .multiple_emails-container .multiple_emails-ul .multiple_emails-email a.multiple_emails-close:focus {
  outline: 0;
}
.modal.xb-modal-lg .modal-content .xb-multipleEmail-container .xb-multipleEmail .multiple_emails-container .multiple_emails-ul .multiple_emails-email a.multiple_emails-close svg path {
  fill: var(--gray-four);
}
.modal.xb-modal-lg .modal-content .xb-multipleEmail-container .xb-multipleEmail .multiple_emails-container .multiple_emails-ul .multiple_emails-email a.multiple_emails-close:hover svg path {
  fill: var(--primary);
}
.modal.xb-modal-lg .modal-content .xb-multipleEmail-container .xb-multipleEmail .multiple_emails-container .multiple_emails-ul .multiple_emails-email .email_name {
  order: 0;
}
.modal.xb-modal-lg .modal-content .xb-multipleEmail-container .xb-multipleEmail .multiple_emails-container:nth-child(2), .modal.xb-modal-lg .modal-content .xb-multipleEmail-container .xb-multipleEmail .multiple_emails-container:nth-child(3) {
  display: none !important;
}
.modal.xb-modal-lg .modal-content .xb-multipleEmail-container .xb-multipleEmail label {
  position: absolute;
  top: -22px;
  padding: 2px 4px;
  background: var(--white);
  color: var(--gray-five);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--heading);
  z-index: 0;
}
.modal.xb-modal-lg .modal-content .shareBoardEm {
  padding: 10.2px 0px 10.2px 8px;
}
.modal.xb-modal-lg .modal-content .xb-inviteEmail {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
}
.modal.xb-modal-lg .modal-content .xb-invite {
  padding-left: 16px;
  padding-right: 16px;
  width: 19px;
  float: right;
  margin-right: 74px;
  margin-top: -47px;
  position: relative;
  z-index: 100;
}

.modal.xb-createBlock .modal-lg {
  width: 100%;
  max-width: 900px;
}

.modal-sm .modal-header {
  border-bottom: 0px;
  color: var(--gray-one);
  padding: 1rem 1rem 0px 1rem;
}
.modal-sm .modal-header .close {
  opacity: 1;
}
.modal-sm .modal-body {
  padding-top: 0px;
}
.modal-sm .modal-footer {
  border: none;
}

.welcomeXBModal::before {
  content: "";
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 0;
  background: url("../img/xbwelcomebg.png") no-repeat;
  background-size: cover;
}
.welcomeXBModal .modal-content {
  background: none;
  border: none;
}
.welcomeXBModal .modal-content .modal-body {
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0px 2px 40px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
}
.welcomeXBModal .modal-title {
  width: 100%;
}
.welcomeXBModal h1 {
  font-family: var(--heading);
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;
  /* identical to box height */
  text-align: center;
  color: #6f00ff;
}

.GoProModal .modal-md {
  max-width: 666px;
}

.xb-popupDropdown .dropdown-toggle {
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.xb-popupDropdown .dropdown-toggle::after {
  content: "";
  border: none;
  width: 12px;
  height: 8px;
  background: url("../img/down-arrow-dropdown.svg") no-repeat;
  background-position: center;
}
.xb-popupDropdown .xb-edit {
  font-size: 16px;
  display: flex;
  align-items: center;
}
.xb-popupDropdown .dropdown-item {
  padding-left: 2.5rem;
  position: relative;
}
.xb-popupDropdown .private_board::before,
.xb-popupDropdown .my_team::before {
  content: "";
  width: 24px;
  height: 24px;
  background-position: center;
  position: absolute;
  left: 0.75rem;
}
.xb-popupDropdown .mycrown::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/pro.svg") no-repeat !important;
  background-position: center;
  position: absolute;
  left: 0.75rem;
}
.xb-popupDropdown .xb-dropActive::before,
.xb-popupDropdown .private_board.xb-dropActive::before,
.xb-popupDropdown .my_team.xb-dropActive::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/check.svg") no-repeat !important;
  background-position: center;
  position: absolute;
  left: 0.75rem;
}
.xb-popupDropdown .xb-dropActive.proicon {
  color: rgba(0, 0, 0, 0.4392156863);
}
.xb-popupDropdown .xb-dropActive.proicon::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/check.svg") no-repeat !important;
  background-position: center;
  position: absolute;
  left: 0.75rem;
}

.copyLink {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}
.copyLink:hover {
  color: var(--primary-hover);
}

.full-devider {
  margin-left: -16px;
  margin-right: -16px;
  margin-top: 22px;
  margin-bottom: 22px;
}

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

h3.modal-title {
  font-size: 20px;
  color: var(--gray-one);
}
h3.modal-title span {
  font-weight: 800;
}

.mh-components-scrolo {
  max-height: 422px;
  overflow: auto;
  height: 100%;
}

.modal.xb-modal-lg.fullScreenModalCustom {
  max-height: 100vh;
}
.modal.xb-modal-lg.fullScreenModalCustom .modal-xxl {
  max-width: 100vw;
  margin-top: 0;
  margin-bottom: 0;
}
.modal.xb-modal-lg.fullScreenModalCustom .modal-xxl .modal-body {
  height: calc(100vh - 62px);
}
.modal.xb-modal-lg.fullScreenModalCustom .modal-xxl .modal-body .FullscreenWd {
  max-width: 900px;
  margin: 0 auto;
  display: block;
  height: 99%;
}

.fs-16 {
  font-size: 16px !important;
  font-weight: 700;
}

.HomeTeaminvite {
  width: auto !important;
  margin-right: unset !important;
}

.TeamcopyLink {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}
.TeamcopyLink img {
  width: 20px;
}

.accent-primary {
  accent-color: var(--primary);
}

.fw-600 {
  font-weight: 600;
}

.noInnterPd .my-3 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}
.dropdownRightShareBoard.xb-popupDropdown .dropdown-menu {
  border: none;
  transform: translate3d(-70px, 26px, 0px) !important;
  box-shadow: 0px 2px 10px 2px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
}
.dropdownRightShareBoard.xb-popupDropdown .dropdown-menu .dropdown-item.xb-dropActive:before {
  left: unset;
  right: 0.75rem;
}

.span-fs-12 span {
  font-size: 12px;
}

.shareWTheam {
  display: flex;
}

.xb-tabs {
  gap: 12px;
}
.xb-tabs .nav-item .nav-link {
  padding: 8px 16px;
  border-radius: 24px;
  background: var(--gray-seven);
  color: var(--gray-one);
}
.xb-tabs .nav-item .nav-link.active {
  background: var(--gray-three);
  color: var(--white);
}

.xb-tabs[data-color=primary] .nav-item .nav-link.active {
  background: var(--primary);
  color: var(--white);
}
.xb-tabs[data-color=primary] .nav-item .nav-link {
  color: var(--primary);
}

body {
  background: var(--white);
  font-family: var(--heading);
}

h1 {
  font-size: var(--h1);
  font-family: var(--heading);
  font-weight: 700;
  color: var(--gray-one);
}

h3 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  font-family: var(--heading);
}

h4 {
  font-family: var(--heading);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 0em;
}

h5 {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: var(--gray-five);
}

.text-gray-three {
  color: var(--gray-three);
}

.text-gray-two {
  color: var(--gray-two);
}

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

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

.gray-one-txt {
  color: var(--gray-one);
}

.bg-newgray {
  background-color: #faf6ff !important;
}

.bg-gray-six {
  background: var(--gray-six);
}

.txt--newgrayforground {
  color: #141414;
}

.fs-20 {
  font-size: 20px;
}

.fs-18 {
  font-size: 18px;
}

.fs-14 {
  font-size: 14px;
}

.fs-12 {
  font-size: 12px;
}

.fs-bold-20 {
  font-weight: 700 !important;
  font-size: 20px !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-normal {
  font-weight: 400;
}

.bg-transparent {
  background: transparent !important;
}

.heading-gray-five {
  color: var(--gray-five);
}

.fs-14 {
  font-size: 14px !important;
}

.fs-10 {
  font-size: 10px !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.pb-12 {
  padding-bottom: 12px !important;
}

.px-12 {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

.h-74 {
  height: 75px;
}

.h-45 {
  height: 45px;
}

.xb-border {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid var(--border-color);
}

.xb-border-full {
  margin-left: -1rem;
  margin-right: -0.9rem;
}

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

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

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

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

.mt-40 {
  margin-top: 42px;
}

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

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

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

.my-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.my-32 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.pt-32 {
  padding-top: 32px;
}

.my-15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

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

.py-13 {
  padding-top: 9px;
  padding-bottom: 9px;
}

.pt-40 {
  padding-top: 40px;
}

.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.px-32 {
  padding-left: 32px;
  padding-right: 32px;
}

.py-14 {
  padding-bottom: 14px;
  padding-top: 14px;
}

.mr-32 {
  margin-right: 32px;
}

.gap-32 {
  gap: 32px;
}

.mh-100 {
  min-height: 100px;
}

.gap-20 {
  gap: 20px;
}

.gap-2 {
  gap: 6px;
}

.gap-3 {
  gap: 1rem;
}

.bg-none {
  background: none !important;
}

.text-gray-two {
  color: var(--gray-two);
}

.text-gray-one {
  color: var(--gray-one);
}

.w-36 {
  width: 36px;
}

.text-gray-5,
.text-gray-five {
  color: var(--gray-five);
}

.px-custom {
  padding-left: 0px !important;
  padding-right: 0px !important;
}
@media only screen and (min-width: 482px) {
  .px-custom {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

p {
  margin-bottom: auto;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.modal-600 {
  max-width: 600px;
}

.bg-gray-seven {
  background: var(--gray-seven);
}

.bg-gray-eight {
  background: var(--gray-eight);
}

.bg-gray-nine {
  background: var(--gray-nine);
}

.text-gray-four {
  color: var(--gray-four);
}

.border-bottom-none {
  border-bottom: none !important;
}

.lh-1 {
  line-height: 1;
}

.bl-gray {
  border-left: 1px solid var(--border-color);
}

.br-gray {
  border-right: 1px solid var(--border-color);
}

.border-radius {
  border-radius: 8px;
}

.p-20 {
  padding: 20px;
}

.xb-dropdown {
  height: 20px;
  padding: 0px;
  border: 0px;
  outline: none;
  background: none;
}
.xb-dropdown img {
  width: 6px;
}
.xb-dropdown::after {
  content: "";
  position: absolute;
  display: none;
}
.xb-dropdown:hover, .xb-dropdown:focus {
  outline: none;
  padding: 0px;
  border: 0px;
}

.top-position {
  top: 0px;
}

.border-top-none {
  border-top: none;
}

.xb-dropdown-menu img {
  margin-right: 8px;
}

a:hover {
  text-decoration: none;
}

.dropdown-menu .dropdown-item {
  color: var(--gray-one);
}
.dropdown-menu .dropdown-item:hover, .dropdown-menu .dropdown-item:active, .dropdown-menu .dropdown-item:focus {
  background-color: var(--gray-nine);
  color: var(--gray-one);
}

.topmenu {
  position: relative;
}

.centerbox {
  height: 239px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}

.noeffect {
  border: none;
}
.noeffect:focus, .noeffect:active, .noeffect:hover, .noeffect:focus-within {
  border: none;
  box-shadow: none;
  outline: none;
}

.card {
  border: none;
  border-radius: 8px;
  box-shadow: 0px 0px 0px 1px var(--border-color);
}

.xb-list-group .list-group-item-action {
  color: var(--gray-one);
  font-size: 16px;
  border: none;
  border-radius: 0px;
}
.xb-list-group .list-group-item-action.active {
  font-weight: 700;
  border-left: 4px solid var(--primary);
}

@media (min-width: 1400px) {
  .row-cols-xxl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (min-width: 1600px) {
  .row-cols-xxxl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xxxl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
.noFill-btn {
  background: none;
  border: none;
  box-shadow: none;
  outline: none;
}

.mx-nospace {
  margin-left: -15px;
  margin-right: -15px;
}

.categories-noborder:focus, .categories-noborder:hover {
  box-shadow: none;
  border: 0px !important;
}

@media screen and (min-width: 1450px) {
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xxl-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xxl-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xxl-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xxl-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xxl-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xxl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .d-xxl-block {
    display: block !important;
  }
}
.sortingDropdown {
  width: 250px;
  padding: 1rem;
}
.sortingDropdown .xb-dropActive-home {
  position: relative;
}
.sortingDropdown .xb-dropActive-home::before {
  content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuMDAwMTYgMTYuMTY5OEw0LjgzMDE2IDExLjk5OThMMy40MTAxNiAxMy40MDk4TDkuMDAwMTYgMTguOTk5OEwyMS4wMDAyIDYuOTk5ODRMMTkuNTkwMiA1LjU4OTg0TDkuMDAwMTYgMTYuMTY5OFoiIGZpbGw9IiM2RjAwRkYiLz4KPC9zdmc+Cg==);
  position: absolute;
  left: -2px;
}
.sortingDropdown .xb-dropActive-home:hover {
  background: transparent !important;
}
.sortingDropdown .dropdown-item {
  padding: 0.25rem 1.5rem 0.25rem 28px;
  height: 36px;
}
.sortingDropdown .dropdown-item:hover {
  background: var(--gray-eight);
}
.sortingDropdown .dropDownHeading {
  font-size: 16px;
  font-weight: 400;
  color: var(--gray-five);
}

.z-4 {
  z-index: 4;
}

.active-button-style .layoutBox-trgImg {
  opacity: 1;
}

#inline_name span {
  font-weight: 700;
  font-size: 20px;
}

/* width */
.mobileview::-webkit-scrollbar,
object::-webkit-scrollbar {
  width: 0px;
  height: 4px;
}

::-webkit-scrollbar,
object::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track,
object::-webkit-scrollbar-track {
  background: rgba(241, 241, 241, 0.6196078431);
}

/* Handle */
::-webkit-scrollbar-thumb,
object::-webkit-scrollbar-thumb {
  background: #d6d3e0;
  border-radius: 14px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/*for firefox*/
.MainboxFix,
.adjusterStyle-height {
  scrollbar-width: none;
}

.settings-sub-title {
  color: #141414;
  font-size: 20px;
  font-weight: bold;
}

.delete-account {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  /* identical to box height */
  /* Alert/Danger */
  color: #d93b3d;
  cursor: pointer;
}

.footer-text {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  /* Gray/Gray 3 */
  color: #4c445f;
}

.delete-text {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  /* identical to box height */
  /* Gray/Gray 4 */
  color: #837f96;
}

.xbvideModal .modal-md {
  max-width: 597px;
}

.tooltipnew {
  display: inline;
  position: relative;
}

.tooltipnew:hover:after {
  display: flex;
  justify-content: center;
  background: var(--gray-two);
  border-radius: 8px;
  color: #fff;
  content: attr(title);
  font-weight: 400;
  font-size: 14px;
  padding: 13px;
  width: 175px;
  left: -69px;
  bottom: 41px;
  position: absolute;
}

.tooltipnew:hover:before {
  border: solid;
  border-color: var(--gray-two) transparent;
  border-width: 12px 6px 0 6px;
  content: "";
  left: 45%;
  bottom: 30px;
  position: absolute;
}

.pdfFullBtn {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  border: none;
  box-shadow: none;
  background: rgba(68, 68, 68, 0.9019607843);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem;
}
.pdfFullBtn img {
  width: 18px;
}

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

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

.backbutton {
  color: var(--primary);
  gap: 8px;
}

.grayBgGradient {
  background-image: linear-gradient(to top, #d8d8d8, #d9dad9, #dbdbdb, #dcdddc, #dedede);
}

.forgot-txt {
  color: var(--primary);
}

.radiocards {
  padding: 1rem 0.5rem;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  gap: 0.5rem;
}
.radiocards-icon svg {
  visibility: hidden;
}
.radiocards-radio {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
}

.radiocards.active {
  border: 1px solid var(--primary);
}
.radiocards.active .radiocards-icon svg {
  visibility: visible;
}

.ql-editor p img {
  width: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

@media only screen and (max-width: 480px) {
  .adjusterStyle .ql-editor .ql-size-large {
    font-size: 1.2em;
  }
}
.dropdown-item.disabled {
  opacity: 0.5;
}

.leastRed {
  background: #d72e0f;
  border-color: #d72e0f;
  color: #fff;
}

.leastRed-two {
  background: #f3785f;
  border-color: #f3785f;
  color: #fff;
}

.btn-green {
  background: #35df91;
  border-color: #35df91;
  color: #fff;
}

.btn-greenTwo {
  background: #188d57;
  border-color: #188d57;
  color: #fff;
}

.sidebarPage-active {
  background: var(--primary);
}

.sidebarPage {
  width: 280px;
  height: 100vh;
  position: fixed;
  z-index: 2;
  border: 1px solid #d6d3e0;
}
.sidebarPage .navbar-toggler img {
  width: 30px;
}

.toggleNav {
  position: absolute;
  border: none;
  bottom: 60px;
  right: -22px;
  background: transparent;
}
.toggleNav:focus {
  outline: none;
}

.sidebarAside {
  position: fixed;
  padding: 0.5rem;
  padding: 0;
  top: 0px;
  left: 0px;
  z-index: 100;
}
.sidebarAside .sideBarLogo {
  width: 180px;
  margin: 20px 0 0 32px;
  display: block;
}
.sidebarAside .sidenavigation {
  margin-top: 66px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebarAside .sidenavigation a {
  max-width: 240px;
  border-bottom: 1px solid #ffffff;
  padding: 12px;
  margin-left: 20px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
}
.sidebarAside .sidenavigation a span {
  max-width: 180px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.sidebarAside .sidenavigation a img {
  display: none;
}
.sidebarAside .sidenavigation a.nav-link.active {
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
}
.sidebarAside .sidenavigation a.nav-link.active img {
  display: block;
}

.sidebarPage.sidebarPage-collapsed {
  width: 140px;
}
.sidebarPage.sidebarPage-collapsed .toggleNav {
  transform: rotate(0deg);
}
.sidebarPage.sidebarPage-collapsed .smallLogo {
  width: 26px;
  margin: 20px 0 0 32px;
}
.sidebarPage.sidebarPage-collapsed .sidenavigation a span {
  max-width: 56px;
}

.at-expanding-share-button-toggle-bg {
  top: -56px;
}
@media only screen and (min-width: 756px) {
  .at-expanding-share-button-toggle-bg {
    top: unset;
  }
}

.right-0 {
  right: 0 !important;
}

.pageList.nav-tabs .items {
  display: flex;
  padding: 11px 16px 11px 16px;
  border-radius: 8px;
  align-items: center;
  border: 1px solid #e9ecef !important;
  width: 100%;
}
.pageList.nav-tabs .items:hover {
  border-color: var(--gray-four);
}
.pageList.nav-tabs .items-text {
  display: flex;
  align-items: center;
  gap: 16px;
}
.pageList.nav-tabs .items img {
  width: 5px;
}
.pageList.nav-tabs .items .btn {
  height: auto;
}

.userBtnSetting {
  gap: 13px;
}

.nameInitials {
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 24px;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: 700;
}

.borderPrimary {
  border: 1px solid var(--primary);
  border-radius: 4px;
}

.subheadingNew {
  color: #212529;
}

.fullName span {
  color: var(--gray-five);
}

.userName {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.hidebefore .dropdown-toggle::before {
  opacity: 0;
}

.userIcon {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  color: #fff;
  background: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.areaside {
  width: 280px;
}

.userName {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-one);
  overflow: hidden;
  white-space: nowrap;
  max-width: 108px;
  text-overflow: ellipsis;
}

.newProfileSpace {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 4px 13px;
  gap: 8px;
  width: 195px;
  height: 48px;
  background: #ffffff;
  box-shadow: 0px 0px 6px rgba(111, 0, 255, 0.2);
  border-radius: 40px;

}
.newProfileSpace:hover {
  background: #f2eff8;
}
.newProfileSpace .newProfileSpace:hover {
  background: #f2eff8;
}
.newProfileSpace .userBtnSetting {
  gap: 8px;
}

.highcharts-figure {
  width: 100% !important;
  max-width: 480px;
}
.highcharts-figure .highcharts-container {
  width: 100% !important;
}
.highcharts-figure .highcharts-container svg {
  width: 100% !important;
}
.highcharts-figure .highcharts-container svg .highcharts-background {
  width: 100% !important;
}

.pages-row .page-card {
  padding: 20px;
  background: #f2eff8;
  max-height: 329px;
}
.pages-row .page-card h5 {
  font-size: 18px;
  font-weight: 700;
  width: 100%;
  color: var(--primary);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.pages-row .page-card .page-details {
  background: #faf8f5;
  border-radius: 8px;
  position: relative;
  /*  &::before {
      content: "";
      top: -19px;
      left: 7px;
      width: 264px;
      height: 18px;
      background: url(../img/multiplePages.svg) no-repeat;
      position: absolute;
  }*/
}
.pages-row .page-card .page-details-img {
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}
.pages-row .page-card .page-details-footer .pageName {
  font-size: 16px;
  font-weight: 600;
  color: #141414;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pages-row .page-card .page-details-footer .dropdownIcon {
  width: 24px;
  height: 24px;
}
.pages-row .page-card .page-details-footer .dotsBtn,
.pages-row .page-card .page-details-footer .dotsBtn:focus {
  outline: none;
  border: none;
  background: transparent;
}

#analytics-date.form-control {
  width: 230px;
  text-align: center;
}

.toggleActive {
  transform: rotate(180deg);
}

.newProfileSpace {
  width: 195px;
}

.nav-tabs.pageList {
  overflow-y: auto;
  max-height: 52vh;
  margin-top: 1rem;
}

.collapse.navbar-collapse .profile-dropdown .btn {
  padding: 14px 12px;
}

.gridForMaster {
  display: grid;
  grid-template-columns: 280px 1fr;
  grid-gap: 0px;
}
.gridForMaster .sidebarResponsive {
  background: #fff;
  height: 100%;
  z-index: 2;
}
.gridForMaster .sidebarResponsive .areaside {
  border-right: 1px solid #d6d3e0;
  width: 280px;
  height: 100vh;
  top: 0px;
}
.gridForMaster .sidebarResponsive .sidenavigation {
  margin-top: 90px;
  width: calc(100% - 40px);
}
.gridForMaster .sidebarResponsive .sidenavigation ul {
  padding-left: 0;
  margin-left: 0;
  list-style: none;
  display: flex;
  gap: 8px;
  flex-direction: column;
}
.gridForMaster .sidebarResponsive .sidenavigation ul li.sidenav-link {
  margin-bottom: 8px;
}
.gridForMaster .sidebarResponsive .sidenavigation ul li.sidenav-link a {
  padding: 12px;
  color: #141414;
  border-radius: 8px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
}
.gridForMaster .sidebarResponsive .sidenavigation ul li.sidenav-link a .Nav-menuIcon {
  width: 24px;
  filter: brightness(0) contrast(1) opacity(0.7);
}
.gridForMaster .sidebarResponsive .sidenavigation ul li.sidenav-link a .rightcaret {
  opacity: 0;
  width: 20px;
}
.gridForMaster .sidebarResponsive .sidenavigation ul li.sidenav-link.active a {
  background: #f1e5ff;
  color: var(--primary);
}
.gridForMaster .sidebarResponsive .sidenavigation ul li.sidenav-link.active a .Nav-menuIcon {
  filter: unset;
}
.gridForMaster .sidebarResponsive .sidenavigation ul li.sidenav-link.active a .rightcaret {
  opacity: 1;
  filter: unset;
}
.gridForMaster .sidebarResponsive .sidenavigation ul li.sidenav-link a:hover {
  background: #faf6ff;
}
.gridForMaster .sidebarResponsive .sidenavigation ul li.sidenav-link a:hover .rightcaret {
  opacity: 1;
  filter: contrast(2.5) brightness(0.5) opacity(0.5);
}
.gridForMaster .sidebarResponsive .sidenavigation ul li.sidenav-link.MenuDropNew .rightcaret {
  transform: rotate(90deg);
  opacity: 0;
  filter: contrast(2.5) brightness(0.5);
}
.gridForMaster .sidebarResponsive .sidenavigation ul li.sidenav-link.MenuDropNew:hover .dropMenuSidebar .rightcaret {
  opacity: 1;
}
.gridForMaster .sidebarResponsive .sidenavigation ul li.sidenav-link.MenuDropNew.dropdownActive .rightcaret {
  transform: rotate(-90deg);
}
.gridForMaster .sidebarResponsive .sidenavigation ul li.sidenav-link.MenuDropNew.dropdownActive .sidenav-link-dropdown .sidenav-link .rightcaret {
  transform: unset;
}
.gridForMaster .sidebarResponsive .sidenavigation ul .MenuDropNew.dropdownActive .dropMenuSidebar .rightcaret {
  opacity: 1;
}
.gridForMaster .sidebarResponsive .sidenavigation ul .sidenav-link-dropdown {
  display: none;
}
.gridForMaster .sidebarResponsive .sidenavigation ul .sidenav-link-dropdown li.sidenav-link:hover a {
  background: #ebe8f1;
}
.gridForMaster .sidebarResponsive .sidenavigation ul .sidenav-link-dropdown li.sidenav-link:hover a img.rightcaret {
  opacity: 1;
}
.gridForMaster .sidebarResponsive .sidenavigation ul .MenuDropNew.active .sidenav-link-dropdown {
  display: flex;
}
.gridForMaster .sidebarResponsive .sidenavigation ul .MenuDropNew.active .sidenav-link-dropdown li.sidenav-link a {
  background: #fff;
  color: #141414;
}
.gridForMaster .sidebarResponsive .sidenavigation ul .MenuDropNew.active .sidenav-link-dropdown li.sidenav-link a img.rightcaret {
  opacity: 0;
  transform: rotate(0deg);
}
.gridForMaster .sidebarResponsive .sidenavigation ul .MenuDropNew.active .sidenav-link-dropdown li.sidenav-link a:hover {
  background: #ebe8f1;
}
.gridForMaster .sidebarResponsive .sidenavigation ul .MenuDropNew.active .sidenav-link-dropdown li.sidenav-link a:hover .rightcaret {
  filter: invert(1) brightness(4) grayscale(1);
}
.gridForMaster .sidebarResponsive .sidenavigation ul .MenuDropNew.active .sidenav-link-dropdown li.sidenav-link.active a {
  background: #f1e5ff;
  color: var(--primary);
}
.gridForMaster .sidebarResponsive.sidebarPage-collapsed .areaside {
  width: 80px;
}
.gridForMaster .sidebarResponsive.sidebarPage-collapsed .toggleNav {
  transform: rotate(180deg);
}
.gridForMaster .sidebarResponsive.sidebarPage-collapsed .sidenavigation {
  width: calc(100% - 32px);
}
.gridForMaster .sidebarResponsive.sidebarPage-collapsed .sidenavigation ul li.sidenav-link a span {
  display: none;
}
.gridForMaster .sidebarResponsive.sidebarPage-collapsed .sidenavigation ul li.sidenav-link a .rightcaret {
  display: none;
}
.gridForMaster .rightSidebar {
  background: #f6f8fa;
  padding-left: 0px;
}
.gridForMaster .rightSidebar .mw-Boards {
  width: calc(100% - 4px);
  margin-left: 4px;
}
.gridForMaster .rightSidebar .mw-Boards .row-boards {
  grid-gap: 34px;
}
@media only screen and (min-width: 1200px) {
  .gridForMaster .rightSidebar .mw-Boards .row-boards {
    grid-template-columns: 280px 280px 280px;
  }
}
@media only screen and (min-width: 1520px) {
  .gridForMaster .rightSidebar .mw-Boards .row-boards {
    grid-gap: 30px;
    grid-template-columns: 280px 280px 280px 280px;
  }
}

.gridForMaster .rightSidebar .widthDpendOnBoards {
  margin: 0 auto;
}
@media screen and (min-width: 1450px) {
  .gridForMaster .rightSidebar .widthDpendOnBoards {
    width: auto;
  }
}

.gridForMaster.shrinkCols {
  grid-template-columns: 80px 1fr;
}
.gridForMaster.shrinkCols .rightSidebar .widthDpendOnBoards {
  width: auto;
}
@media only screen and (min-width: 1400px) {
  .gridForMaster.shrinkCols .rightSidebar .mw-Boards .row-boards {
    grid-template-columns: 280px 280px 280px 280px;
  }
}
@media only screen and (min-width: 1700px) {
  .gridForMaster.shrinkCols .rightSidebar .mw-Boards .row-boards {
    grid-template-columns: 280px 280px 280px 280px 280px;
  }
}
@media only screen and (min-width: 1980px) {
  .gridForMaster.shrinkCols .rightSidebar .mw-Boards .row-boards {
    grid-template-columns: 280px 280px 280px 280px 280px 280px;
  }
}

.uiApply .topmenu {
  z-index: 10;
  border-bottom: 1px solid var(--border-color);
}

/* 3.2 */
h4.title24 {
  font-size: 24px !important;
  font-weight: 700;
}

.pageViewDropdown .dropdown-toggle {
  background: transparent;
  border: none;
}
.pageViewDropdown .dropdown-toggle::after {
  display: none !important;
}
.pageViewDropdown .dropdown-toggle:focus {
  outline: none;
}
.pageViewDropdown .dropdown-menu {
  box-shadow: 0px 2px 10px 2px rgba(0, 0, 0, 0.12);
  border: none;
  border-radius: 4px;
  width: 271px;
  max-height: 50vh;
  transform: translate3d(-108px, 34px, 0px) !important;
  overflow-y: auto;
}
.pageViewDropdown .dropdown-menu .dropdown-item {
  padding: 0.5rem 1rem;
  font-size: 14px;
  border-bottom: 1px solid rgba(214, 211, 224, 0.5607843137);
}
.pageViewDropdown .dropdown-menu .dropdown-item:hover {
  font-weight: 700;
  background: transparent;
}

.pageViewDropdown.show .dropdown-toggle img {
  transform: rotate(0deg);
}

.dropleft .dropdown-toggle::before {
  display: none;
}

.buttonTop {
  top: 8px;
  right: 0;
  z-index: 10;
  /*
     a {
         border: 2px solid var(--primary);
         color: var(--primary);
         padding: 6px 20px 6px 20px;
         position: relative;
         line-height: 1;

         &:hover,
         &:active {
             background-color: var(--secondary) !important;
             color: var(--white) !important;
             border: 2px solid var(--secondary);

             &::before {
                 display: none !important;
             }
         }
     }*/
}

.autoWidtBtn span {
  display: none;
}
.autoWidtBtn:hover span {
  display: block;
}

.bg-perpalfive {
  background-color: #f2eff8 !important;
}

/* go thro css classes */
.tour-tour {
  padding: 1rem;
}
.tour-tour .popover-title {
  font-size: 20px;
}
.tour-tour .btn-default:not([data-role*=end]) {
  font-size: 12px;
  background: var(--primary);
  color: #fff;
}
.tour-tour .btn-default[data-role*=end] {
  font-size: 12px;
  color: var(--primary);
}
.tour-tour .btn.disabled {
  background: gray;
}
.tour-tour .popover-navigation {
  padding-bottom: 0px !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.popover[class*=tour-] .popover-navigation {
  margin-top: 10px;
}

body:has(.popover.tour-tour)::before {
  content: "";
  position: fixed;
  background: rgba(51, 51, 51, 0.2901960784);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 30;
}

#bottomBtnArea {
  display: none;
}

.bottomBtnArea {
  bottom: 0px;
  left: 0;
  background: linear-gradient(0deg, #eadaff 49.7%, rgba(234, 218, 255, 0) 100%);
  width: 100%;
  padding: 1rem;
}

/* Off canvas  */
.offCanvasMain {
  display: none;
}
.offCanvasMain-sidepanel {
  top: 0;
  background: #fff;
  width: 340px;
  max-height: 100vh;
  overflow-x: auto;
  height: 100%;
  display: block;
  z-index: 14;
  position: fixed;
  left: 0;
}
.offCanvasMain .offCanvasMain-sidepanel-header {
  height: 73px;
  position: relative;
  padding: 16px;
  background: #f2eff8;
}
.offCanvasMain h5 {
  color: #141414;
  font-size: 16px;
  font-weight: 700;
}

.offCanvasMain::before {
  content: "";
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(51, 51, 51, 0.4352941176);
  top: 0px;
  left: 0px;
  z-index: 12;
}

.btn-noeffect:hover::before {
  display: none !important;
}

.ellipsSpan {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scalOne {
  scale: 1.5;
}

.popover {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.26);
  border: none;
}

.popover::before {
  content: "";
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 19px solid #fff;
  position: relative;
  top: -58px;
}

#droprightFloatingBtns:hover > #floatingBtnsDropdown {
  display: block;
}

.floatingBtns {
  position: fixed;
  left: 0rem;
  top: 0;
  z-index: 10;
}
.floatingBtns .dropright.show .croseBtnImg {
  display: block;
}
.floatingBtns .dropright.show .menuBtnImg {
  display: none;
}
.floatingBtns .floatMenu.dropdown-menu {
  box-shadow: 0px 2px 32px rgba(0, 0, 0, 0.08);
  border: none;
  border-radius: 8px;
  width: 300px;
}
.floatingBtns .floatMenu.dropdown-menu li {
  margin-bottom: 1rem;
}
.floatingBtns .floatMenu.dropdown-menu a {
  color: #281e3e;
}
.floatingBtns .croseBtnImg {
  display: none;
}
.floatingBtns .menuBtnImg {
  display: block;
}
.floatingBtns .floatingBtns-dropd {
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.floatingBtns .floatingBtns-dropd::after {
  display: none;
}
.floatingBtns .floatingBtns-dropd:focus {
  outline: none;
}
.floatingBtns .floatingBtns-dropd .innerBtn {
  position: absolute;
  z-index: 2;
}

.bliningDot {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: transparent;
  border-radius: 50%;
  z-index: 10;
}

.btntransprint {
  background: transparent;
  border: none;
  width: 20px;
  height: 20px;
}
.btntransprint:focus {
  border: none;
  outline: none;
}
.btntransprint img {
  width: 36px;
  opacity: 0.4;
}

.dropdown-menu.blinkBox {
  box-shadow: none !important;
  border: none !important;
  filter: drop-shadow(0px 0px 24px rgba(0, 0, 0, 0.14));
  width: 260px !important;
  height: auto;
  min-height: 120px;
}
.dropdown-menu.blinkBox h6 {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--gray-one);
}
.dropdown-menu.blinkBox p {
  font-size: 12px;
  color: var(--gray-one);
  opacity: 0.6;
}
.dropdown-menu.blinkBox a {
  margin-top: 8px;
}

.walkthroughCreateboard {
  position: absolute;
  left: -8px;
  bottom: 11px;
}
.walkthroughCreateboard img {
  width: 43px;
  opacity: 1;
}

.walkthroughPersonalize {
  bottom: 1rem;
  left: -3.5rem;
}
.walkthroughPersonalize img {
  opacity: 1;
}

.walkthroughAddBlock {
  left: 18px;
  bottom: -76px;
}
@media screen and (min-width: 1450px) {
  .walkthroughAddBlock {
    left: 30px;
  }
}
.walkthroughAddBlock img {
  width: 43px;
  opacity: 1;
}

@keyframes expand {
  /* Starting at 1 to prevent IOS flicker */
  1% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 70px;
    height: 70px;
    opacity: 0;
    border-color: #fff;
    background-color: none;
    border-width: 2px;
  }
}
.shareBtnOutline:hover img {
  filter: brightness(0) invert(1);
}

.floatingUlunserDrop {
  max-height: 45vh;
  overflow-y: auto;
}

.floatingUlunserDrop .scroll_link {
  padding-top: 4px;
  padding-bottom: 4px;
}

.floatingUlunserDrop .scroll_link:hover {
  background: rgba(111, 0, 255, 0.04);
}

.rightSidebar {
  min-height: calc(100vh - 81px);
}

.scalOne {
  accent-color: var(--primary);
}

.quickBitesCn .tooltip.top {
  width: 200px;
  top: -39px !important;
}
.quickBitesCn .tooltip-arrow {
  left: 50%;
  position: absolute;
  bottom: -7px;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 8px solid #281e3e;
}
.quickBitesCn .tooltip-inner {
  background-color: #281e3e;
}

.pageList .nav-item input[type=checkbox] {
  accent-color: var(--primary);
  width: 24px;
  height: 24px;
}

.modal-dialog-centered .modal-header button:focus {
  outline: none;
}

button:focus {
  outline: none;
}

.upgradPro,
.upgradProTeam {
  background: #f8f4ff;
}

.create_default_board {
  gap: 12px;
  width: 177px;
  align-items: center;
  justify-content: center;
}

.proUserNewIcon,
.TeamUserNewIcon {
  position: absolute;
  width: 18px;
  top: -4px;
  right: 0;
}

/*  */
@media (min-width: 1900px) {
  .row-cols-xxl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
.newCardStyle {
  font-size: 16px !important;
  font-weight: 600;
  line-height: 21.82px;
  overflow: hidden;
}

.ml-10 {
  margin-left: 10px;
}

.board-box {
  filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.08));
}

.square-24 {
  width: 24px;
  height: 24px;
}

.zindex-up {
  z-index: 2;
}

.padding-right-0 {
  padding-right: 0px !important;
}

.designPage .padding-right-0 {
  padding-right: 15px !important;
}

.p-20 {
  padding: 20px;
}

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

.mxdrop {
  max-width: 268px;
}
.mxdrop a button {
  display: flex;
  align-items: center;
}
.mxdrop a button .elpsText {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bg-customQuots {
  opacity: 0.2;
  transform: rotate(180deg) rotateY(180deg);
  width: 50px;
  position: absolute;
  left: 62px;
  top: -22px;
}
@media screen and (min-width: 576px) {
  .bg-customQuots {
    left: 80px;
    top: -10px;
  }
}

.minheightModal {
  min-height: 422px;
}

.txt-over-hidden {
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media (max-width: 601px) {
  .gridForMaster {
    display: block;
  }
  .gridForMaster #sidebarResponsive {
    display: none;
  }
}/*# sourceMappingURL=common.css.map */