:root {
  --dark-mode-01: #161616;
  --dark-mode-02: #1c1c1c;
  --dark-mode-06: #343434;
  --dark-mode-11: #a0a0a0;
  --dark-mode-12: #ededed;
  --dark-green-9: #30a46c;
  --dark-red-9: #e5484d;
  --light-gray-11: #6f6f6f;
  --quiz-font: 'Inter', sans-serif;
  --quiz-font-normal-style: normal;
}

.creatorModal {
  position: fixed;
  z-index: 3;
  left: 0;
  top: 100%;
  background: var(--dark-mode-01);
  width: 100%;
  height: 100%;
  padding: 32px 16px;
  opacity: 0;
  transition: transform ease-in-out 0.4s;
  border-radius: 5px;
}

#creatorBtn:checked + .creatorModal {
  transform: translateY(-100%);
  display: block;
  opacity: 1;
}

.creatorModal--close {
  position: absolute;
  display: block;
  top: 16px;
  right: 16px;
  color: var(--light-gray-11);
  width: 24px;
  height: 24px;
}
.svg-inline--fa {
  width: 18px;
  height: 18px;
}

.creatorModal--close:hover,
.creatorModal--close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.creatorModal--header {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 24px;
}

.creatorModal--header--img {
  box-sizing: border-box;
  border: 3px solid #ffffff;
  border-radius: 99px;
  width: 64px;
  height: 64px;
  object-fit: cover;
}

.creatorModal--header--textWrapper {
  flex-direction: column;
  width: 100%;
  gap: 4px;
}

.creatorModal--header--name {
  font-style: normal;
  font-weight: 700;
  font-size: 25px;
  line-height: 100%;
  color: var(--dark-mode-12);
  margin-bottom: 4px;
}

.creatorModal--header--title {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: calc(100% + 4px);
  color: var(--dark-mode-11);
}

.creatorModal--tabs {
  width: 100%;
  position: absolute;
  left: 0;
}

.creatorModal--tabs .tabs--label__stories,
.creatorModal--tabs .tabs--label__profile {
  display: inline-block;
  width: 50%;
  color: var(--dark-mode-11);
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 4px solid transparent;
  padding: 16px 0;
  transition: border ease-in 0.2s;
}

.creatorModal--tabs .tabs--input__stories,
.creatorModal--tabs .tabs--input__profile {
  display: none;
  appearance: none;
  visibility: hidden;
}

.creatorModal--tabs .tabs--input__stories:checked + label,
.creatorModal--tabs .tabs--input__profile:checked + label {
  border-bottom: 4px solid #e93d82;
  color: var(--dark-mode-12);
}

.creator--tab--container {
  width: 100%;
  margin-top: 75px;
  padding-top: 28px;
  overflow-y: scroll;
}

::-webkit-scrollbar {
  display: none;
}

.creator--tab--container:not(.stories--enabled) .tab--container--stories {
  visibility: hidden;
  display: none;
}

.stories--enabled .tab--container--stories {
  display: block;
  opacity: 1;
  background: var(--dark-mode-02);
  width: 100%;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #ededed;
  margin-bottom: 16px;
}

.stories--enabled .tab--container--stories:last-child {
  margin-bottom: 0;
}

.creator--tab--container .tab--container--stories .tab--container--stories--info {
  padding: 16px;
  letter-spacing: -0.02em;
  font-style: normal;
}

.tab--container--stories .tab--container--stories--info > h5 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  line-height: 100%;
}

.tab--container--stories .tab--container--stories--info > p {
  margin-top: 8px;
  font-size: 12px;
  color: #a0a0a0;
  line-height: 100%;
}

.tab--container--stories .tab--container--stories--info > p > svg {
  height: 12px;
  width: auto;
  margin-left: 4px;
}

.creator--tab--container .tab--container--stories .tab--container--stories--img {
  width: 66px;
  height: 66px;
  border-radius: 0 4px 4px 0;
  overflow: hidden;
}

.creator--tab--container .tab--container--stories .tab--container--stories--img > img {
  height: 100%;
  width: 100%;
  border-radius: 0 4px 4px 0;
  object-fit: cover;
}

.creator--tab--container:not(.about--enabled) .tab--creator--description,
.creator--tab--container:not(.about--enabled) .tab--creator--socialMedia {
  visibility: hidden;
  display: none;
}

.about--enabled .tab--creator--description,
.about--enabled .tab-creator--socialMedia {
  display: block;
}

.about--enabled .tab--creator--description {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: #a0a0a0;
}

.about--enabled .tab--creator--socialMedia {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 16px;
}

.about--enabled .tab--creator--socialMedia .creator--socialMedia--link {
  text-decoration: none;
  color: #ededed;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.02em;

  display: flex;
  align-items: center;
  padding: 0px;
  gap: 4px;
}

.about--enabled .tab--creator--socialMedia .creator--socialMedia--link > svg {
  height: 18px;
  width: 18px;
  margin-right: 4px;
}
