.brand-overview {
  position: relative;
  display: flex;

  flex-direction: column;

  padding: 0 40px;
}

.brand-overview-navigator {
  position: relative;
  display: flex;

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

  flex-direction: row;

  padding: 40px 0;
  padding-bottom: 0;
}
.brand-overview-navigator-items {
  position: relative;
  display: flex;

  align-items: center;

  flex-direction: row;

  padding: 5px 5px;

  border-radius: 12px;

  background: rgba(0, 0, 0, 0.05);
}
.brand-overview-navigator-item {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
  height: 25px;
  padding: 0 15px;
  padding-top: 3px;
  border-radius: 8px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  fill: currentColor;
  color: rgba(0, 0, 0, 0.4);
  transition: 0.3s all ease-out;
}
.brand-overview-navigator-item:hover,
.brand-overview-navigator-item.active {
  font-weight: 600;
  color: black;
}
.brand-overview-navigator-item.active {
  background: rgba(0, 0, 0, 0.05);
}

.brand-overview-navigator-actions {
  position: relative;
  display: flex;

  flex-direction: row;
}
.brand-overview-navigator-actions-items {
  position: relative;
  display: none;

  align-items: center;

  flex-direction: row;

  padding: 5px 5px;

  border-radius: 12px;

  background: rgba(0, 0, 0, 0.05);
}
.brand-overview-navigator-actions-items.active {
  display: flex;
}
.brand-overview-navigator-actions-item {
  position: relative;
  display: flex;

  gap: 5px;

  align-items: center;
  flex-direction: row;

  height: 30px;

  padding: 0 10px;

  border-radius: 8px;

  font-weight: 500;
  font-size: 12px;

  color: black;
  background: rgba(0, 0, 0, 0);
  transition: 0.3s all ease-out;
}
.brand-overview-navigator-actions-item span {
  padding-top: 3px;
}
.brand-overview-navigator-actions-item:hover {
  background: rgba(0, 0, 0, 0.05);
}

.brand-overview-tab {
  position: relative;
  display: none;

  flex-direction: column;
}
.brand-overview-tab.active {
  display: flex;
}

.brand-overview-header {
  position: relative;
  display: flex;

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

  flex-direction: row;

  padding: 40px 0;
  padding-bottom: 0;
}

.brand-overview-title {
  position: relative;
  display: flex;

  align-items: center;

  flex-direction: row;

  padding: 20px 0;
  padding-bottom: 10px;

  font-weight: 600;
  font-size: 14px;

  color: black;
}

.brand-overview-header-actions {
  position: relative;
  display: flex;
  gap: 5px;

  align-items: center;

  flex-direction: row;
}

.brand-overview-header-action {
  position: relative;
  display: flex;
  gap: 5px;

  align-items: center;

  flex-direction: row;

  height: 30px;

  padding: 0 10px;

  border-radius: 8px;

  font-size: 12px;
  font-weight: 600;

  color: black;
  background: rgba(0, 0, 0, 0.05);
  transition: 0.3s all ease-out;
}
.brand-overview-header-action.hidden {
  display: none;
}
.brand-overview-header-action:hover {
  background: rgba(0, 0, 0, 0.1);
}
.brand-overview-header-action span {
  margin-top: 3px;
}

.brand-overview-editor-container {
  position: relative;
  display: flex;

  flex-direction: column;

  width: 100%;
}
.brand-overview-editor-container .ce-block__content,
.brand-overview-editor-container .ce-toolbar__content {
  max-width: unset;
}

.brand-overview-editor-initial-content {
  display: none;
}


/* Overview Tab: Gallery. */
.brand-gallery {
  position: relative;
  display: flex;

  align-items: flex-start;
  justify-content: flex-start;

  flex-direction: column;

  width: 100%;

  padding: 40px 0;
}

.brand-gallery-items {
  position: relative;
  display: flex;
  gap: 15px;
  flex-shrink: 0;

  align-items: flex-start;
  justify-content: flex-start;

  flex-direction: row;
  flex-wrap: wrap;

  width: 100%;

  --brand-gallery-boxes-per-row: 4;
}

.brand-gallery-item {
  position: relative;
  display: flex;

  flex-direction: column;

  width: calc((100% - 45px) / var(--brand-gallery-boxes-per-row));
}
.brand-gallery-item-image-container {
  position: relative;
  display: flex;

  flex-direction: column;

  width: 100%;

  text-decoration: none;
}
.brand-gallery-item-image {
  position: relative;
  display: flex;

  width: 100%;
  height: 170px;

  border-radius: 24px;

  object-fit: cover;
  object-position: center center;

  background-color: rgba(0, 0, 0, 0.05);
}

.brand-gallery-item-row {
  position: relative;
  display: flex;

  align-items: center;

  flex-direction: row;

  margin-top: 5px;
  margin-bottom: 20px;

  padding: 0 10px;
}

.brand-gallery-item-title {
  position: relative;
  display: flex;
  flex: 1;

  flex-direction: row;

  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  margin: 0;
  outline: 0;
  border: 0;

  width: 100%;
  height: 25px;

  padding: 5px 0;

  font-size: 12px;
  font-weight: 600;
}

.brand-gallery-item-removebutton {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  width: 20px;
  height: 20px;

  font-size: 9px;

  border-radius: 6px;

  fill: currentColor;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  transition: 0.3s all ease-out;
}
.brand-gallery-item-removebutton:hover,
.brand-gallery-item-removebutton:focus {
  background: rgba(0, 0, 0, 1);
}


/* Overview Tab: Marketing Plans. */
.brand-marketing-plans {
  position: relative;
  display: flex;

  align-items: flex-start;
  justify-content: flex-start;

  flex-direction: column;

  width: 100%;

  padding: 40px 0;
}

.brand-marketing-plans-items {
  position: relative;
  display: flex;
  gap: 15px;
  flex-shrink: 0;

  align-items: flex-start;
  justify-content: flex-start;

  flex-direction: row;
  flex-wrap: wrap;

  width: 100%;

  --brand-marketing-plans-boxes-per-row: 3;
}

.brand-marketing-plans-item {
  position: relative;
  display: flex;

  flex-direction: column;

  width: calc((100% - (15px * (var(--brand-marketing-plans-boxes-per-row) - 1))) / var(--brand-marketing-plans-boxes-per-row));

  padding-bottom: 15px;

  border-radius: 16px;

  text-decoration: none;

  color: black;
  background: white;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);

  transition: 0.3s all ease-out;
}
.brand-marketing-plans-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.brand-marketing-plans-item-thumbnail-container {
  position: relative;
  display: flex;
  overflow: hidden;

  flex-direction: column;

  width: 100%;
  height: 170px;

  border-radius: 16px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.brand-marketing-plans-item-thumbnail-header {
  position: absolute;
  display: flex;
  z-index: 1;

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

  flex-direction: row;

  top: 0;
  right: 0;
  left: 0;

  width: 100%;

  padding: 15px 15px;

  color: white;

  background: rgba(0, 0, 0, 0.5);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  opacity: 0;
  transition: 0.3s all ease-out;
}
.brand-marketing-plans-item:hover .brand-marketing-plans-item-thumbnail-header,
.brand-marketing-plans-item:focus .brand-marketing-plans-item-thumbnail-header {
  opacity: 1;
}
.brand-marketing-plans-item-thumbnail {
  position: relative;

  width: 100%;
  height: 170px;

  border-radius: 16px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;

  object-fit: cover;
  object-position: center center;

  background-color: rgba(0, 0, 0, 0.05);
}
.brand-marketing-plans-item-title {
  position: relative;
  display: flex;

  align-items: center;

  flex-direction: row;

  padding: 15px 15px;
  padding-bottom: 0;

  font-size: 12px;
  font-weight: 600;

  color: black;
}
.brand-marketing-plans-item-subtitle {
  position: relative;
  display: flex;

  align-items: center;

  flex-direction: row;

  margin-top: 5px;

  padding: 0 15px;

  font-size: 12px;
  font-weight: 500;

  color: rgba(170, 170, 170, 1);
}


/* Marketing Plan View. */
.mkplanview {
  position: fixed;
  display: none;
  z-index: 1010;

  flex-direction: column;

  width: 100vw;
  height: 100vh;

  padding: 0 40px;

  top: 0;
  right: 0;
  left: 0;
  bottom: 0;

  background: rgba(0, 0, 0, 0.3);
}
.mkplanview.active {
  display: flex;
}

.mkplanview-container {
  position: relative;
  display: flex;
  flex-shrink: 0;
  overflow: hidden;
  overflow-y: auto;

  flex-direction: column;

  margin: 0 auto;

  width: 100%;
  max-width: 650px;
  height: 100vh;

  padding-bottom: 60px;

  background: white;
}

.mkplanview-header {
  position: sticky;
  display: flex;
  z-index: 1;

  align-items: center;

  flex-direction: row;

  top: 0;

  width: 100%;

  padding: 10px 20px;

  background: rgba(255, 255, 255, 0.95);
}

.mkplanview-header-plan {
  position: relative;
  display: flex;

  align-items: center;

  flex-direction: row;

  width: 100%;

  padding: 10px 20px;
}

.mkplanview-header-plan-title {
  position: relative;
  display: flex;
  /* flex: 1; */

  flex-direction: row;

  appearance: none;
  padding: 0;
  margin: 0;
  outline: 0;

  margin-right: 5px;

  padding: 7px 40px;
  padding-right: 5px;
  padding-top: calc(7px + 3px);

  line-height: 1.5;

  font-size: 14px;
  font-weight: 500;

  border: 0;

  color: rgba(0, 0, 0, 0.7);
  background: inherit;
}

.mkplanview-thumbnail {
  position: relative;
  display: flex;

  flex-direction: column;

  width: 100%;

  padding: 0 40px;
}
.mkplanview-thumbnail-image {
  position: relative;
  display: flex;

  width: 100%;
  height: auto;

  border-radius: 8px;

  object-fit: cover;
  object-position: center center;
}
.mkplanview-info {
  position: relative;
  display: flex;

  flex-direction: column;

  width: 100%;

  padding: 10px 20px;
}

.mkplanview-info-row {
  position: relative;
  display: flex;

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

  flex-direction: row;

  width: 100%;

  padding: 10px 20px;
}

.mkplanview-info-item-container {
  position: relative;
  display: flex;

  align-items: center;

  flex-direction: row;
}
.mkplanview-info-item {
  cursor: pointer;
  position: relative;
  display: flex;
  gap: 5px;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  padding: 7px 15px;

  border-radius: 8px;

  font-size: 12px;
  font-weight: 500;

  fill: currentColor;
  color: black;
  background: rgba(0, 0, 0, 0.05);

  transition: 0.3s all ease-out;
}
.mkplanview-info-item:focus {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.mkplanview-info-item span {
  padding-top: 5px;
}

.mkplanview-info-item-popup {
  position: absolute;
  display: none;
  z-index: 10;
  gap: 5px;
  flex-shrink: 0;

  flex-direction: column;

  top: calc(100% + 5px);
  left: 0;

  width: 100%;
  min-width: 120px;
}
.mkplanview-info-item-container.poped .mkplanview-info-item-popup {
  display: flex;
}
.mkplanview-info-item-popup-inputgroup {
  position: relative;
  display: flex;

  align-items: center;

  flex-direction: row;

  width: 100%;

  border-radius: 8px;

  background: rgba(242, 242, 242, 1);
}
.mkplanview-info-item-popup-input {
  position: relative;
  display: flex;

  appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;

  width: 100%;
  height: 35px;

  padding: 5px 10px;

  font-weight: 600;
  font-size: 11px;

  background: rgba(0, 0, 0, 0);
}





/* Brand Settings. */
.brand-settings-pg {
  position: relative;
  display: flex;

  align-items: flex-start;
  justify-content: center;

  flex-direction: row;
  flex-wrap: wrap;
}
.brand-settings-form {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: column;

  /* margin: 0 auto; */

  width: 100%;
  max-width: 450px;

  padding: 60px 40px;
}
.brand-settings-form-title {
  position: relative;
  display: flex;

  flex-direction: row;

  margin: 10px 0;

  width: 100%;

  font-size: 18px;
  font-weight: 600;
}

.brand-settings-form-group {
  position: relative;
  display: flex;

  flex-direction: column;

  margin: 10px 0;

  width: 100%;
}

.brand-settings-form-label {
  position: relative;
  display: flex;

  align-items: center;

  flex-direction: row;

  margin-bottom: 5px;

  font-size: 14px;
  font-weight: 500;

  color: rgba(90, 90, 120, 1);
}

.brand-settings-form-input {
  position: relative;
  display: flex;

  flex-direction: row;

  appearance: none;
  outline: 0;
  padding: 0;
  margin: 0;
  border: 0;

  width: 100%;
  height: 40px;

  padding: 0 20px;

  border-radius: 12px;
  border: 2px solid rgba(0, 0, 0, 0.05);

  font-size: 14px;

  transition: 0.3s border-color ease-out;
}
textarea.brand-settings-form-input {
  resize: vertical;
  height: auto;

  padding-top: 20px;
  padding-bottom: 20px;
}
.brand-settings-form-input:focus {
  border-color: rgba(65, 80, 180, 0.5);
}

.brand-settings-colors {
  position: relative;
  display: flex;
  flex-shrink: 0;
  gap: 5px;

  overflow: hidden;
  overflow-x: auto;

  flex-direction: row;

  padding: 10px 0;
  width: 100%;
}

.brand-settings-color {
  cursor: pointer;
  position: relative;
  display: flex;
  flex-shrink: 0;

  flex-direction: column;
}
.brand-settings-color-box {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: column;

  --brand-settings-color-box-size: 55px;
  width: var(--brand-settings-color-box-size);
  min-width: var(--brand-settings-color-box-size);
  height: var(--brand-settings-color-box-size);
  min-height: var(--brand-settings-color-box-size);

  border-radius: 20px;

  background: rgba(var(--rgb-color), 1);
}
.brand-settings-color-title {
  position: relative;
  margin-top: 5px;
  text-align: center;
  font-size: 10px;
  color: black;
}
input.brand-settings-color-title {
  appearance: none;
  -webkit-appearance: none;

  padding: 0;
  margin: 0;
  outline: 0;
  border: 0;

  margin-top: 5px;
  width: 55px;

  text-align: center;
}
.brand-settings-color-picker-input {
  position: relative;

  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  margin: 0;
  outline: 0;
  border: 0;

  display: flex;
  width: 0;
  height: 0;

  visibility: hidden;
}

.brand-settings-color.add_new .brand-settings-color-box {
  background: rgba(0, 0, 0, 0);
  border: 2px dashed rgba(0, 0, 0, 0.2);
}
.brand-settings-color.add_new .brand-settings-color-title {
  font-weight: 600;
}

.brand-settings-form-button {
  cursor: pointer;
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  appearance: none;
  outline: 0;
  padding: 0;
  margin: 0;
  border: 0;

  margin: 10px 0;

  width: 100%;
  height: 40px;

  border-radius: 12px;

  font-size: 12px;
  font-weight: 600;

  color: white;
  background: rgba(0, 0, 0, 0.8);

  transition: 0.3s all ease-out;
}
.brand-settings-form-button span {
  padding-top: 3px;
}

.brand-settings-form-button:focus,
.brand-settings-form-button:hover {
  background: rgba(0, 0, 0, 1);
}
.brand-settings-form-button:focus {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}


.brand-members {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: column;

  /* margin: 0 auto; */

  width: 100%;
  max-width: 450px;

  padding: 60px 40px;
}
.brand-members-title {
  position: relative;
  display: flex;

  flex-direction: row;

  margin: 10px 0;

  width: 100%;

  font-size: 18px;
  font-weight: 600;
}

.brand-members-finduser {
  position: relative;
  display: flex;

  flex-direction: column;

  margin: 10px 0;

  width: 100%;
}

.brand-members-finduser-label {
  position: relative;
  display: flex;

  align-items: center;

  flex-direction: row;

  margin-bottom: 5px;

  font-size: 14px;
  font-weight: 500;

  color: rgba(90, 90, 120, 1);
}

.brand-members-finduser-input {
  position: relative;
  display: flex;

  flex-direction: row;

  appearance: none;
  outline: 0;
  padding: 0;
  margin: 0;
  border: 0;

  width: 100%;
  height: 40px;

  padding: 0 20px;

  border-radius: 12px;
  border: 2px solid rgba(0, 0, 0, 0.05);

  font-size: 14px;

  transition: 0.3s all ease-out;
}
.brand-members-finduser-input:focus {
  border-color: rgba(65, 80, 180, 0.5);
}

.brand-members-finduser-button {
  cursor: pointer;
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  appearance: none;
  outline: 0;
  padding: 0;
  margin: 0;
  border: 0;

  margin: 10px 0;

  width: 100%;
  height: 40px;

  border-radius: 12px;

  font-size: 12px;
  font-weight: 600;

  color: white;
  background: rgba(0, 0, 0, 0.8);

  transition: 0.3s all ease-out;
}
.brand-members-finduser-button span {
  padding-top: 3px;
}

.brand-members-finduser-button:focus,
.brand-members-finduser-button:hover {
  background: rgba(0, 0, 0, 1);
}
.brand-members-finduser-button:focus {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.brand-members-finduser-dropdown {
  position: absolute;
  display: none;
  z-index: 1;

  flex-direction: column;

  top: calc(100% + 2px);
  left: 0;
  right: 0;

  width: 100%;

  padding: 7px 0;

  border: 2px solid rgba(0, 0, 0, 0.05);

  border-radius: 8px;
  border-radius: 8px;

  background: white;
}
.brand-members-finduser.show-dropdown .brand-members-finduser-dropdown {
  display: flex;
}

.brand-members-finduser-dropdown-suggestions {
  position: relative;
  display: flex;

  flex-direction: column;

  width: 100%;
}
.brand-members-finduser-dropdown-suggestion {
  position: relative;
  display: flex;
  gap: 5px;

  align-items: center;

  flex-direction: row;

  width: 100%;

  padding: 5px 20px;

  font-size: 14px;

  color: black;
  transition: 0.3s all ease-out;
}
.brand-members-finduser-dropdown-suggestion span {
  padding-top: 3px;
}
.brand-members-finduser-dropdown-suggestion:hover {
  background: rgba(0, 0, 0, 0.05);
}

.brand-members-list {
  position: relative;
  display: flex;

  flex-direction: column;

  margin: 20px 0;

  width: 100%;
  height: 100px;
}

.brand-member {
  position: relative;
  display: flex;
  gap: 10px;

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

  flex-direction: row;

  width: 100%;

  padding: 10px 0;

  border-top: 1px solid rgba(0, 0, 0, 0.025);

  font-size: 14px;
}

.brand-member-side {
  position: relative;
  display: flex;
  gap: 10px;

  align-items: center;

  flex-direction: row;
}

.brand-member-avatar {
  position: relative;
  display: flex;

  width: 25px;
  height: 25px;

  object-fit: cover;
  object-position: center center;

  border-radius: 100px;
}

.brand-member-name {
  position: relative;
  display: flex;

  align-items: center;

  flex-direction: row;

  padding-top: 3px;
}

.brand-member-action {
  position: relative;
  display: flex;
  gap: 5px;

  align-items: center;

  flex-direction: row;

  padding: 5px;

  border-radius: 6px;

  font-weight: 500;
  font-size: 12px;

  color: black;
  background: rgba(0, 0, 0, 0.025);
  transition: 0.3s all ease-out;
}
.brand-member-action span {
  padding: 0 5px;
  padding-top: 3px;
}
.brand-member-action.hidden {
  display: none;
}
.brand-member-action:hover {
  background: rgba(0, 0, 0, 0.05);
}

.brand-member-action.danger {
  color: rgba(224, 40, 30, 1);
  background: rgba(224, 40, 30, 0.025);
}
.brand-member-action.danger:hover {
  background: rgba(224, 40, 30, 0.05);
}
