@import url(https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap);
:root {
  --primary-color: rgba(246, 61, 104, 1);
  --primary-color-o15: rgba(246, 61, 104, 0.15);
  --primary-color-o50: rgba(246, 61, 104, 0.5);
  --primary-color-o75: rgba(246, 61, 104, 0.75);
  --z-index-header: 1;
  --z-index-bg-popup: 2;
  --z-index-popup: 3;
  --gap-element-big: 32px;
  --gap-element: 24px;
  --gap-element-small: 15px;
  --font-size-big: 28px;
  --font-size-big-1: 20px;
  --font-size-normal: 16px;
  --font-size-small: 12px;
  --border-color: rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 1024px) {
  :root {
    --gap-element-big: 24px;
    --font-size-big: 24px;
    --gap-element: 15px;
    --gap-element-small: 10px;
    --font-size-normal: 13px;
  }
}

* {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  scrollbar-color: var(--primary-color-o50) transparent;
  scrollbar-width: thin;
  line-height: 1.75;
  font-weight: 300;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

h1, h2, h3, h4, h5, h6, h7 {
  margin-block-start: unset;
  margin-block-end: unset;
  margin-inline-start: unset;
  margin-inline-end: unset;
  font-weight: unset;
}

.viewer-footer {
  display: none;
}

a {
  color: #FFF;
  text-decoration: none;
}

body {
  background-color: rgb(24, 29, 39);
  margin: 0;
  color: #FFF;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 13px;
  }
}

.main {
  display: flex;
  height: 100%;
}

.bg-linear {
  width: 1200px;
  height: 1200px;
  z-index: -1;
  position: fixed;
  border-radius: 50%;
  top: -480px;
  left: -180px;
  background: radial-gradient(circle, rgba(246, 61, 104, 0.18) 0%, rgba(127, 86, 217, 0) 70%, rgba(246, 61, 104, 0) 100%);
}
@media screen and (max-width: 1024px) {
  .bg-linear {
    top: -260px;
    left: -785px;
  }
}

.left-menu {
  width: 300px;
  background-color: rgba(37, 43, 55, 0.6);
  padding: 16px 12px;
  border-right: 1px solid rgb(71, 64, 84);
  position: relative;
  transition: width 0.3s ease;
  z-index: 5;
}
.left-menu .logo-container {
  display: block;
  padding: 0 14px;
}
.left-menu .logo-container .logo {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .left-menu {
    position: fixed;
    height: 100%;
    z-index: 1;
    left: 0;
    background-color: rgb(37, 43, 55);
  }
}
.left-menu .btn-toggle-menu-left {
  position: absolute;
  top: 20px;
  right: 0;
  cursor: pointer;
}
.left-menu .menu {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.left-menu .menu .item-menu {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 20px;
  cursor: pointer;
  gap: 16px;
  height: 45px;
}
@media screen and (min-width: 1024px) {
  .left-menu .menu .item-menu.active, .left-menu .menu .item-menu:hover {
    background: rgb(127, 86, 217);
    font-weight: bold;
  }
}
.left-menu .menu .logo-mobile-container {
  display: none;
}
.left-menu .left-menu-footer {
  position: absolute;
  bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: calc(100% - 30px);
}
.left-menu .left-menu-footer .menu {
  display: none;
}
@media screen and (max-width: 1024px) {
  .left-menu .left-menu-footer .menu {
    display: flex;
  }
}
.left-menu .left-menu-footer .btn-show-more {
  cursor: pointer;
  position: relative;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .left-menu .left-menu-footer .btn-show-more {
    display: none;
  }
}
.left-menu .left-menu-footer .btn-show-more img {
  width: 20px;
  height: 20px;
}
.left-menu .left-menu-footer .btn-show-more .popover-more {
  position: absolute;
  width: 180px;
  background: #424652;
  bottom: 20px;
  left: 0;
  border: 1px solid #928f95;
  border-radius: 8px;
  padding: 5px;
  display: none;
  flex-direction: column;
}
.left-menu .left-menu-footer .btn-show-more .popover-more .item-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
}
.left-menu .left-menu-footer .btn-show-more .popover-more .item-link:hover {
  background-color: #6c7181;
}
.left-menu .left-menu-footer .btn-show-more .popover-more .item-link .icon {
  display: flex;
}
.left-menu .left-menu-footer .btn-show-more .popover-more .item-link .icon img {
  width: 18px;
  height: 16px;
}
.left-menu .left-menu-footer .btn-show-more:hover {
  background-color: #2b2e4e;
}
.left-menu .left-menu-footer .btn-show-more:hover .popover-more {
  display: flex;
}
.left-menu .left-menu-footer .list-link {
  display: flex;
  flex-wrap: wrap;
  font-size: 10px;
  -moz-column-gap: 15px;
       column-gap: 15px;
  row-gap: 5px;
  padding: 0 10px 0 0;
}
.left-menu .left-menu-footer .list-link a {
  color: #7d80ad;
}
.left-menu .left-menu-footer .list-link a:hover {
  color: #a0a3ce;
}
.left-menu .left-menu-footer .social-links {
  display: flex;
  gap: 16px;
  padding: 0 0 0 15px;
}
.left-menu .left-menu-footer .social-links .social-link {
  flex: 1;
  padding: 5px;
  border: 1px solid var(--border-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
}
.left-menu.small {
  width: 68px;
}
@media screen and (max-width: 1024px) {
  .left-menu.small {
    left: -68px;
  }
}
.left-menu.small .btn-toggle-menu-left {
  transform: rotate(180deg);
  left: 0;
  right: unset;
}
.left-menu.small .logo-container {
  display: none;
}
.left-menu.small .menu {
  margin-top: 50px;
}
.left-menu.small .menu .item-menu {
  width: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.left-menu.small .menu .item-menu .item-menu-title {
  display: none;
}
.left-menu.small .menu .item-menu:hover {
  width: 150px;
  border-radius: 25px;
  display: flex;
  justify-content: start;
  align-items: center;
}
.left-menu.small .menu .item-menu:hover .item-menu-title {
  display: flex;
}
.left-menu.small .menu .logo-mobile-container {
  display: flex;
  margin-bottom: 20px;
}
.left-menu.small .menu .logo-mobile-container img {
  width: 100%;
}
.left-menu.small .list-link {
  display: none;
}
.left-menu.small .social-links {
  display: none;
}

.main-content {
  flex: 1;
}

.main-header {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 15px;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .main-header {
    border-bottom: 1px solid #303260;
    padding: 8px 15px;
  }
}
.main-header .left-header .btn-open-left-menu {
  width: 34px;
  height: 34px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .main-header .left-header .btn-open-left-menu {
    display: none;
  }
}
.main-header .right-header {
  display: flex;
  gap: var(--gap-element-small);
}
.main-header .right-header .btn-count-photo {
  font-weight: bold;
  gap: 5px;
  cursor: unset;
  padding: 0 10px;
}
@media screen and (max-width: 1024px) {
  .main-header .right-header .btn-count-photo {
    height: 32px;
  }
}
.main-header .right-header .btn-profile {
  position: relative;
  height: 40px;
  width: 40px;
}
@media screen and (max-width: 1024px) {
  .main-header .right-header .btn-profile {
    height: 32px;
    width: 32px;
    padding: unset;
  }
}
.main-header .right-header .btn-profile .icon-vip {
  position: absolute;
  top: -8px;
  right: -8px;
  display: none;
  justify-content: center;
  align-items: center;
}
.main-header .right-header .btn-profile .avatar-img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  overflow: hidden;
}
.main-header .right-header .btn-profile.is-vip {
  border: 1px solid rgb(255, 187, 51) !important;
}
.main-header .right-header .btn-profile.is-vip .icon-vip {
  display: flex;
}

.main-header-character-chat {
  display: none;
}
@media screen and (max-width: 1024px) {
  .main-header-character-chat {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 15px;
    height: 60px;
  }
  .main-header-character-chat .left-header {
    display: flex;
    width: 100%;
  }
  .main-header-character-chat .left-header .btn-open-history {
    width: 34px;
    height: 34px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(-90deg);
  }
  .main-header-character-chat .left-header .btn-open-left-menu {
    width: 34px;
    height: 34px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 1024px) and (min-width: 1024px) {
  .main-header-character-chat .left-header .btn-open-left-menu {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .main-header-character-chat .left-header .character-info {
    display: flex;
    align-items: center;
    gap: 10px;
    width: calc(100% - 100px);
  }
  .main-header-character-chat .left-header .character-info .character-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
  }
  .main-header-character-chat .left-header .character-info .character-name {
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
  }
  .main-header-character-chat .left-header .btn-toggle-container {
    position: absolute;
    right: 0;
    top: 7px;
    cursor: pointer;
  }
}

.btn {
  height: 40px;
  padding: 8px 20px;
  background-color: rgb(127, 86, 217);
  border: 1px solid rgb(127, 86, 217);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #FFF;
  width: -moz-fit-content;
  width: fit-content;
  gap: 5px;
}
.btn:disabled {
  background-color: rgba(127, 86, 217, 0.5);
  border: 1px solid rgba(127, 86, 217, 0.5);
  color: #ccc;
  cursor: no-drop;
}
.btn.btn-red {
  background-color: rgb(246, 61, 104);
  border: 1px solid rgb(246, 61, 104);
}
.btn.btn-default {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: unset;
}
.btn.btn-default:hover, .btn.btn-default.active {
  border: 1px solid #F63D68;
}
.btn.btn-default.active {
  background-color: rgba(246, 61, 104, 0.15);
  color: #F63D68;
}

.max-line-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.max-line-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.max-line-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.max-line-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.max-line-5 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hide {
  display: none !important;
}

.popup {
  display: flex;
  z-index: 5;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease-out, visibility 0.3s 0s;
}
.popup .bg-popup {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.popup .popup-container {
  background-color: rgb(37, 43, 55);
  border: 1px solid #666d7a;
  border-radius: 12px;
  position: relative;
  min-width: 300px;
  margin: 0 15px;
  max-height: calc(100% - 60px);
  z-index: 2;
}
.popup .popup-container .btn-close {
  background-image: url("/images/ic-close.svg");
  width: 34px;
  height: 34px;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  z-index: 1;
}
.popup.close {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.list-character {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 10px;
}
.list-character .item-character {
  width: calc(16.6666% - 5px);
}
@media screen and (max-width: 2384px) {
  .list-character .item-character {
    width: calc(14.2857% - 5px);
  }
}
@media screen and (max-width: 2184px) {
  .list-character .item-character {
    width: calc(16.6666% - 9px);
  }
}
@media screen and (max-width: 1920px) {
  .list-character .item-character {
    width: calc(16.6666% - 9px);
  }
}
@media screen and (max-width: 1600px) {
  .list-character .item-character {
    width: calc(16.6666% - 9px);
  }
}
@media screen and (max-width: 1488px) {
  .list-character .item-character {
    width: calc(20% - 8px);
  }
}
@media screen and (max-width: 1256px) {
  .list-character .item-character {
    width: calc(25% - 8px);
  }
}
@media screen and (max-width: 810px) {
  .list-character .item-character {
    width: calc(33.33333% - 7px);
  }
}
@media screen and (max-width: 710px) {
  .list-character .item-character {
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 450px) {
  .list-character .item-character {
    width: calc(50% - 5px);
  }
}
.list-character .item-character .item-character-body {
  padding-top: 150%;
  position: relative;
  border-radius: 16px;
  width: 100%;
  height: 100%;
}
.list-character .item-character .item-character-body .item-character-info {
  display: none;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.5s ease;
  right: calc(-100% - 10px);
  transform: scale(1.02);
  background: rgba(24, 29, 39, 0.85);
  color: #FFF;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  z-index: 1;
}
.list-character .item-character .item-character-body .item-character-info .top-info .name {
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.list-character .item-character .item-character-body .item-character-info .top-info .description {
  font-size: 10.65px;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #d3d5f9;
}
.list-character .item-character .item-character-body .item-character-info .other-info {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
}
.list-character .item-character .item-character-body .item-character-info .other-info .nsfw img {
  height: 8px;
}
.list-character .item-character .item-character-body .item-character-info .other-info .count-chat {
  display: flex;
  gap: 5px;
  font-size: 12px;
  align-items: center;
}
.list-character .item-character .item-character-body .item-character-info .tags {
  display: flex;
  flex-wrap: wrap;
  font-size: 10px;
  gap: 5px;
  overflow: hidden;
  margin-top: 8px;
}
.list-character .item-character .item-character-body .item-character-info .tags .item-tag {
  background: rgba(127, 86, 217, 0.7);
  padding: 3px 5px;
  border-radius: 10px;
}
.list-character .item-character .item-character-body .character-locked {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}
.list-character .item-character .item-character-body .character-status {
  position: absolute;
  top: var(--gap-element-small);
  left: var(--gap-element-small);
  z-index: 2;
  display: flex;
  gap: 5px;
}
.list-character .item-character .item-character-body .character-status .item-status {
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 12px;
}
@media screen and (max-width: 1024px) {
  .list-character .item-character .item-character-body .character-status .item-status {
    font-size: 10px;
  }
}
.list-character .item-character .item-character-body .character-status .item-status.end {
  background-color: #4E5BA6;
}
.list-character .item-character .item-character-body .character-status .item-status.new {
  background-color: #12B76A;
}
.list-character .item-character .item-character-body .character-status .item-status.updated {
  background-color: #F79009;
}
.list-character .item-character .item-character-body .item-character-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  transition: transform 0.5s ease;
}
.list-character .item-character .item-character-body .item-character-content .thumbnail {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2509803922);
  border-radius: 16px;
  overflow: hidden;
}
.list-character .item-character .item-character-body .item-character-content .thumbnail-video {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.list-character .item-character .item-character-body .item-character-content .before-video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.list-character .item-character .item-character-body .item-character-content .container-btn-read {
  justify-content: center;
  position: absolute;
  bottom: 25px;
  width: 100%;
  display: none;
}
.list-character .item-character .item-character-body .item-character-content .container-btn-read .btn-read {
  padding: 12px 30px;
  font-weight: bold;
  font-size: 18px;
  border-radius: 35px;
  background: linear-gradient(to left, rgb(127, 86, 217), rgb(246, 61, 104));
}
.list-character .item-character .item-character-body .item-character-content .container-other-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
}
.list-character .item-character .item-character-body .item-character-content .item-character-info {
  display: flex;
  transform: scale(1);
  right: unset;
  border: unset;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  height: 100%;
}
.list-character .item-character .item-character-body .item-character-content .item-character-info .name {
  -webkit-line-clamp: 1 !important;
}
.list-character .item-character .item-character-body .item-character-content .item-character-info .description {
  -webkit-line-clamp: 1 !important;
}
.list-character .item-character .item-character-body .item-character-content .item-character-info .tags {
  max-height: 2.5em;
  overflow: hidden;
}
.list-character .item-character .item-character-body.btn-create-character .item-character-content {
  border: 1px solid rgb(246, 61, 104);
  cursor: pointer;
  border-radius: 16px;
  background-color: rgba(246, 61, 104, 0.1);
  color: rgb(246, 61, 104);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: transform 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
}
.list-character .item-character .item-character-body.btn-create-character .item-character-content:hover {
  transform: scale(1.01);
}
.list-character .item-character.show-info {
  z-index: 1;
}
.list-character .item-character.show-info .item-character-body .item-character-info {
  display: flex;
}
.list-character .item-character.show-info .item-character-body:hover .item-character-content {
  transform: scale(1.02);
}
.list-character .item-character.show-info .item-character-body:hover .item-character-content .container-btn-read {
  display: flex;
}
.list-character .item-character.show-info .item-character-content:hover .item-character-info {
  display: none;
}
.list-character .item-character.censor-status-0:not(.show-info) .item-character-info {
  background-color: rgba(2, 122, 72, 0.6) !important;
}
.list-character .item-character.censor-status-0:not(.show-info) .item-character-info .censor-status {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: rgb(4, 58, 34);
  left: 0;
  color: rgb(50, 213, 131);
  padding: 10px 0;
}
.list-character .item-character.censor-status-2:not(.show-info) .item-character-info {
  background-color: rgba(180, 35, 24, 0.6) !important;
}
.list-character .item-character.censor-status-2:not(.show-info) .item-character-info .censor-status {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: rgb(50, 13, 7);
  left: 0;
  color: rgb(249, 112, 102);
  padding: 10px 0;
}

.main-content, .fadein-display {
  opacity: 0;
  animation: fadeIn 0.5s forwards;
  width: 100%;
}

@keyframes scaleAnimation {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.02);
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.item-character-info-fadein-display-right {
  animation: showFromLeft 0.3s forwards;
}

@keyframes showFromLeft {
  0% {
    right: 0%;
    opacity: 0;
  }
  100% {
    right: calc(-100% - 10px);
    opacity: 1;
  }
}
.item-character-info-fadein-display-left {
  animation: showFromRight 0.3s forwards;
}

@keyframes showFromRight {
  0% {
    left: 0%;
    opacity: 0;
  }
  100% {
    left: calc(-100% - 10px);
    opacity: 1;
  }
}
.no-data {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 15px;
  color: #5e6168;
}

.loading {
  width: 100%;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loading img {
  width: 30px;
}

.img-container {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: rgba(24, 29, 39, 0.3);
}
.img-container .loading-container {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("/images/loading.svg");
  background-size: 24px 24px;
  background-repeat: no-repeat;
  background-position: center;
}
.img-container .display-container {
  width: 100%;
  height: 100%;
}
.img-container .display-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.g-btn-wrapper [aria-labelledby=button-label] {
  border-radius: 50px;
  margin-top: 20px;
}

.popup-daily-photo-reward-container .popup-container, .popup-daily-photo-reward-by-chat-container .popup-container {
  background-color: rgb(154, 230, 180);
  border: unset;
  color: rgb(26, 32, 44);
  padding: 40px 190px 40px 40px;
  width: 620px;
  border-radius: 24px;
  position: relative;
}
.popup-daily-photo-reward-container .popup-container .line-1, .popup-daily-photo-reward-by-chat-container .popup-container .line-1 {
  font-size: 18px;
  font-weight: bold;
}
.popup-daily-photo-reward-container .popup-container .line-2, .popup-daily-photo-reward-by-chat-container .popup-container .line-2 {
  background-color: rgb(34, 84, 61);
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 100px;
  color: #FFF;
  font-size: 24px;
  padding: 8px 16px;
  font-weight: bold;
  margin-top: 24px;
}
.popup-daily-photo-reward-container .popup-container .line-3, .popup-daily-photo-reward-by-chat-container .popup-container .line-3 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 24px;
}
.popup-daily-photo-reward-container .popup-container .btn-claim, .popup-daily-photo-reward-by-chat-container .popup-container .btn-claim {
  margin-top: 24px;
}
.popup-daily-photo-reward-container .popup-container .bg-photo-reward-by-chat, .popup-daily-photo-reward-by-chat-container .popup-container .bg-photo-reward-by-chat {
  position: absolute;
  right: -30px;
  bottom: 0;
  width: 275px;
}
.popup-daily-photo-reward-container .popup-container .bg-photo-reward, .popup-daily-photo-reward-by-chat-container .popup-container .bg-photo-reward {
  position: absolute;
  right: -150px;
  bottom: -30px;
}
.popup-daily-photo-reward-container .popup-container .ic-pear, .popup-daily-photo-reward-by-chat-container .popup-container .ic-pear {
  background-image: url(/images/ic-pear.png);
  position: absolute;
  width: 35px;
  height: 35px;
  background-size: contain;
}
.popup-daily-photo-reward-container .popup-container .ic-pear.ic-pear-1, .popup-daily-photo-reward-by-chat-container .popup-container .ic-pear.ic-pear-1 {
  top: -20px;
  left: 75px;
}
.popup-daily-photo-reward-container .popup-container .ic-pear.ic-pear-2, .popup-daily-photo-reward-by-chat-container .popup-container .ic-pear.ic-pear-2 {
  left: -20px;
  bottom: 100px;
}
.popup-daily-photo-reward-container .popup-container .ic-pear.ic-pear-3, .popup-daily-photo-reward-by-chat-container .popup-container .ic-pear.ic-pear-3 {
  left: 170px;
  bottom: 40px;
}

@media screen and (max-width: 1024px) {
  .popup-daily-photo-reward-container .popup-container {
    padding: 15px 15px 150px 15px;
  }
  .popup-daily-photo-reward-container .popup-container .line-2 {
    font-size: 20px;
    margin: 16px auto 0 auto;
  }
  .popup-daily-photo-reward-container .popup-container .bg-photo-reward {
    right: -60px;
    bottom: -25px;
    height: 280px;
  }
}

.switch-container {
  border: 1px solid rgb(246, 61, 104);
  border-radius: 50px;
  width: 42px;
  height: 24px;
  padding: 1px;
  position: relative;
  cursor: pointer;
}
.switch-container .center-switch-container {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #FFF;
  position: absolute;
  top: 1px;
  left: 1px;
}
.switch-container.active {
  background-color: rgb(246, 61, 104);
}
.switch-container.active .center-switch-container {
  left: 19px;
}

.popup-confirm-18 .popup-container {
  padding: 25px;
  max-width: 350px;
}
.popup-confirm-18 .popup-container .popup-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.popup-confirm-18 .popup-container .popup-body .title {
  color: #f63d68;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
}
.popup-confirm-18 .popup-container .popup-body .description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-align: center;
}
.popup-confirm-18 .popup-container .popup-body .confirm-container .btn-confirm {
  background-color: #f63d68;
}
.popup-confirm-18 .popup-container .popup-body .list-link {
  font-size: 11px;
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
  row-gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
}
.popup-confirm-18 .popup-container .popup-body .list-link a {
  color: rgba(255, 255, 255, 0.7);
}

.family-safe-icon {
  width: 24px;
  height: 24px;
  background: #f63d68;
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  line-height: 10px;
}
.family-safe-icon:before {
  content: "18+";
}

.box-container {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px 20px;
}
.box-container .box-header {
  font-size: 20px;
  color: rgb(246, 61, 104);
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ant-popover {
  padding-top: unset;
}
.ant-popover .ant-popover-content {
  position: relative;
  top: -10px;
}
.ant-popover .ant-popover-content .ant-popover-inner {
  background-color: transparent;
  box-shadow: none;
  border-radius: unset;
  padding: unset;
}
.ant-popover .ant-popover-content .ant-popover-arrow {
  display: none;
}

.ant-modal .ant-modal-title {
  background-color: rgb(37, 43, 55);
  color: #FFF;
}
.ant-modal .ant-modal-content {
  background-color: rgb(37, 43, 55);
  color: #FFF;
}
.ant-modal .ant-modal-close-x svg {
  fill: #FFF;
}

@media screen and (max-width: 1024px) {
  .bg-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.631372549);
    z-index: 1;
    transition: transform 0.5s ease;
    top: 0;
    left: 0;
  }
}
.history-container {
  width: 340px;
  background-color: rgba(37, 43, 55, 0.6);
  padding: 16px 12px;
  border-right: 1px solid rgb(71, 64, 84);
  height: 100%;
  transition: width 0.3s ease, left 0.3s ease;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .history-container {
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgb(37, 43, 55);
    width: 300px;
  }
}
.history-container .btn-toggle-container {
  position: absolute;
  right: 0;
  top: 7px;
  background-color: #252b37;
  display: none;
}
@media screen and (max-width: 1024px) {
  .history-container .btn-toggle-container {
    display: flex;
  }
}
.history-container.small {
  width: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
}
@media screen and (max-width: 1024px) {
  .history-container.small {
    left: -340px;
  }
}
.history-container .title {
  font-size: 32px;
  font-weight: bold;
}
.history-container .search-container {
  height: 40px;
  border: 1px solid rgb(113, 118, 128);
  border-radius: 100px;
  margin-top: 24px;
  display: flex;
  padding: 0 12px;
  align-items: center;
}
.history-container .search-container input {
  outline: 0;
  background: unset;
  border: 0;
  padding: 0 5px;
}

.character-chat-page .story-info-container, .story-chat-page .story-info-container, .read-story-page .story-info-container {
  width: 340px;
  background-color: rgba(37, 43, 55, 0.6);
  border-left: 1px solid rgb(71, 64, 84);
  height: 100%;
  transition: width 0.3s ease;
  position: relative;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .character-chat-page .story-info-container, .story-chat-page .story-info-container, .read-story-page .story-info-container {
    position: fixed;
    right: 0;
    top: 0;
    background-color: rgb(37, 43, 55);
    width: 300px;
  }
}
.character-chat-page .story-info-container .header, .story-chat-page .story-info-container .header, .read-story-page .story-info-container .header {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  height: 60px;
  align-items: center;
  padding: 15px;
}
.character-chat-page .story-info-container .header .btn-toggle-container, .story-chat-page .story-info-container .header .btn-toggle-container, .read-story-page .story-info-container .header .btn-toggle-container {
  cursor: pointer;
  display: flex;
  transform: rotate(180deg);
  position: absolute;
  top: 7px;
  left: 0;
}
@media screen and (min-width: 1024px) {
  .character-chat-page .story-info-container .header .btn-toggle-container, .story-chat-page .story-info-container .header .btn-toggle-container, .read-story-page .story-info-container .header .btn-toggle-container {
    display: none;
  }
}
.character-chat-page .story-info-container.close, .story-chat-page .story-info-container.close, .read-story-page .story-info-container.close {
  width: 0;
  padding: 0;
  border: 0;
}
.character-chat-page .story-info-container.close .header, .story-chat-page .story-info-container.close .header, .read-story-page .story-info-container.close .header {
  /*.btn-toggle-container {
      position: relative;
      left: -25px;
      top: -10px;
  }*/
}
.character-chat-page .story-info-container.close .header .btn-get-plan, .story-chat-page .story-info-container.close .header .btn-get-plan, .read-story-page .story-info-container.close .header .btn-get-plan {
  display: none;
}
.character-chat-page .story-info-container .story-info-content, .story-chat-page .story-info-container .story-info-content, .read-story-page .story-info-container .story-info-content {
  overflow-y: auto;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .character-chat-page .story-info-container .story-info-content, .story-chat-page .story-info-container .story-info-content, .read-story-page .story-info-container .story-info-content {
    height: calc(100% - 60px);
  }
}
.character-chat-page .story-info-container .story-info-content .photos, .story-chat-page .story-info-container .story-info-content .photos, .read-story-page .story-info-container .story-info-content .photos {
  display: flex;
}
.character-chat-page .story-info-container .story-info-content .photos .photo-list, .story-chat-page .story-info-container .story-info-content .photos .photo-list, .read-story-page .story-info-container .story-info-content .photos .photo-list {
  display: flex;
  gap: 4px;
  flex: 1;
}
.character-chat-page .story-info-container .story-info-content .photos .photo-list .item-photo, .story-chat-page .story-info-container .story-info-content .photos .photo-list .item-photo, .read-story-page .story-info-container .story-info-content .photos .photo-list .item-photo {
  width: calc(25% - 3px);
  padding-top: calc(25% - 3px);
  position: relative;
}
.character-chat-page .story-info-container .story-info-content .photos .photo-list .item-photo .item-photo-display, .story-chat-page .story-info-container .story-info-content .photos .photo-list .item-photo .item-photo-display, .read-story-page .story-info-container .story-info-content .photos .photo-list .item-photo .item-photo-display {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.character-chat-page .story-info-container .story-info-content .photos .photo-list .item-photo .item-photo-display img, .story-chat-page .story-info-container .story-info-content .photos .photo-list .item-photo .item-photo-display img, .read-story-page .story-info-container .story-info-content .photos .photo-list .item-photo .item-photo-display img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.character-chat-page .story-info-container .story-info-content .photos .view-more, .story-chat-page .story-info-container .story-info-content .photos .view-more, .read-story-page .story-info-container .story-info-content .photos .view-more {
  display: flex;
  flex-direction: column;
  padding: 0 10px;
  align-content: center;
  justify-content: center;
  cursor: pointer;
}
.character-chat-page .story-info-container .story-info-content .thumbnail img, .story-chat-page .story-info-container .story-info-content .thumbnail img, .read-story-page .story-info-container .story-info-content .thumbnail img {
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}
.character-chat-page .story-info-container .story-info-content .story-info-content-detail, .story-chat-page .story-info-container .story-info-content .story-info-content-detail, .read-story-page .story-info-container .story-info-content .story-info-content-detail {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: var(--gap-element-small);
}
.character-chat-page .story-info-container .story-info-content .story-info-content-detail .name, .story-chat-page .story-info-container .story-info-content .story-info-content-detail .name, .read-story-page .story-info-container .story-info-content .story-info-content-detail .name {
  font-weight: bold;
  font-size: 16px;
}
.character-chat-page .story-info-container .story-info-content .story-info-content-detail .description, .story-chat-page .story-info-container .story-info-content .story-info-content-detail .description, .read-story-page .story-info-container .story-info-content .story-info-content-detail .description {
  color: rgb(164, 167, 174);
  font-size: 12px;
  font-weight: 100;
}
.character-chat-page .story-info-container .story-info-content .story-info-content-detail .tags, .story-chat-page .story-info-container .story-info-content .story-info-content-detail .tags, .read-story-page .story-info-container .story-info-content .story-info-content-detail .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.character-chat-page .story-info-container .story-info-content .story-info-content-detail .tags .item-tag, .story-chat-page .story-info-container .story-info-content .story-info-content-detail .tags .item-tag, .read-story-page .story-info-container .story-info-content .story-info-content-detail .tags .item-tag {
  background-color: rgba(127, 86, 217, 0.7);
  font-size: 12px;
  padding: 5px 7px;
  border-radius: 100px;
}
.character-chat-page .story-info-container .story-info-content .story-info-content-detail .social-report, .story-chat-page .story-info-container .story-info-content .story-info-content-detail .social-report, .read-story-page .story-info-container .story-info-content .story-info-content-detail .social-report {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.character-chat-page .story-info-container .story-info-content .story-info-content-detail .social-report .social-container, .story-chat-page .story-info-container .story-info-content .story-info-content-detail .social-report .social-container, .read-story-page .story-info-container .story-info-content .story-info-content-detail .social-report .social-container {
  display: flex;
  gap: 8px;
}
.character-chat-page .story-info-container .story-info-content .story-info-content-detail .social-report .social-container .item-social, .story-chat-page .story-info-container .story-info-content .story-info-content-detail .social-report .social-container .item-social, .read-story-page .story-info-container .story-info-content .story-info-content-detail .social-report .social-container .item-social {
  background-color: rgb(65, 70, 81);
  border-radius: 100px;
  padding: 5px 10px;
  display: flex;
  gap: 5px;
}
.character-chat-page .story-info-container .story-info-content .story-info-content-detail .social-report .social-container .item-social img, .story-chat-page .story-info-container .story-info-content .story-info-content-detail .social-report .social-container .item-social img, .read-story-page .story-info-container .story-info-content .story-info-content-detail .social-report .social-container .item-social img {
  width: 20px;
}
.character-chat-page .story-info-container .story-info-content .story-info-content-detail .social-report .report-controler, .story-chat-page .story-info-container .story-info-content .story-info-content-detail .social-report .report-controler, .read-story-page .story-info-container .story-info-content .story-info-content-detail .social-report .report-controler {
  display: flex;
  gap: 8px;
}
.character-chat-page .story-info-container .story-info-content .story-info-content-detail .other-links, .story-chat-page .story-info-container .story-info-content .story-info-content-detail .other-links, .read-story-page .story-info-container .story-info-content .story-info-content-detail .other-links {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.character-chat-page .story-info-container .story-info-content .story-info-content-detail .other-links .item-link, .story-chat-page .story-info-container .story-info-content .story-info-content-detail .other-links .item-link, .read-story-page .story-info-container .story-info-content .story-info-content-detail .other-links .item-link {
  font-size: 16px;
  cursor: pointer;
}

.ant-btn {
  height: unset;
}

.card {
  border-radius: 16px;
  border: 1px solid var(--border-color);
}
.card .card-header {
  padding: 15px;
}
.card .card-header .card-title {
  font-weight: bold;
}
.card .card-body {
  padding: 0 15px;
}
.card .card-footer {
  padding: 15px;
}

.whatsapp-button {
  position: fixed;
  bottom: 50px;
  right: 15px;
  display: block;
  width: 50px;
  height: 50px;
}

.ant-select-selector {
  border: 1px solid #A4A7AE;
  border-radius: 8px;
  background-color: rgb(24, 29, 39) !important;
  color: #FFF;
}

.ant-select-selection-item, .ant-select-single.ant-select-open .ant-select-selection-item {
  color: #FFF;
}

.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer) .ant-select-selector {
  border: 1px solid #838383 !important;
  box-shadow: unset !important;
}

.ant-select-selector {
  border: 1px solid #A4A7AE;
  border-radius: 8px;
  background-color: rgb(24, 29, 39) !important;
  color: #FFF;
}

.ant-input-affix-wrapper {
  background-color: rgb(24, 29, 39) !important;
  border: 1px solid rgb(83, 88, 98);
}

.ant-select-selection-item {
  color: #FFF;
}

.ant-select-single.ant-select-show-arrow .ant-select-selection-placeholder, .ant-input-affix-wrapper .ant-input-show-count-suffix {
  color: rgb(113, 118, 128);
}

.ant-input {
  border: 1px solid rgb(83, 88, 98);
  background-color: rgb(24, 29, 39);
  color: #FFF;
}
.ant-input::-moz-placeholder {
  color: rgb(113, 118, 128);
}
.ant-input::placeholder {
  color: rgb(113, 118, 128);
}

.ant-input-affix-wrapper > input.ant-input {
  border: unset;
}

.ant-input-textarea-show-count::after {
  position: absolute;
  bottom: 3px;
  right: 15px;
  color: rgb(113, 118, 128);
}

.ant-select:not(.ant-select-customize-input) .ant-select-selector {
  border: 1px solid #535862;
}

.ant-radio-wrapper {
  color: #FFF;
}

.ant-radio-wrapper .ant-radio-checked .ant-radio-inner {
  border-color: rgb(127, 86, 217);
  background-color: rgb(127, 86, 217);
}

.ant-input:focus, .ant-input-focused, .ant-input:hover {
  border: 1px solid #535862;
}

.tabs {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.tabs .item-tab {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 24px 12px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.tabs .item-tab:hover, .tabs .item-tab.active {
  border-bottom: 1px solid rgb(246, 61, 104);
}
.tabs .item-tab .ic-tab {
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: cover;
}

.modal-confirm-delete .modal-body {
  display: flex;
  gap: 10px;
  margin-top: 25px;
  justify-content: flex-end;
}

.popover-profile-header {
  display: flex;
  gap: 15px;
  color: #FFF;
  background: #181d27 !important;
  border: 1px solid #434670 !important;
  cursor: pointer;
  padding: 20px;
  border-radius: 10px;
  flex-direction: column;
  min-width: 200px;
}
.popover-profile-header .item-popover-profile-header {
  display: flex;
  gap: 10px;
}
