@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
	font-family: "Roboto", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --main-background: #232426;
  --alt-background: #323335;
  --main-text-color: #ededed;
  --main-border-color: #ffffff1a;
  --list-item-active: #ffffff14;
  --list-item-hover: #ffffff08;
  --content-img-color: #5cb14f;
  --content-video-color: #3288d7;
  --content-carousel-color: #784a15;
}

html {
	scroll-behavior: smooth;
}

img {
	display: block;
}

ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

ol {
  padding: 0 0 0 20px;
  margin: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
	position: relative;
  /* background-color: #0e1113; */
  color: var(--main-text-color);
  background-color: var(--main-background);
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  /* background: var(--bs-dark-bg-subtle); */
  background: var(--main-background);
}
::-webkit-scrollbar-thumb {
  /* background-color: var(--bs-light-bg-subtle); */
  background-color: var(--alt-background);
  border-radius: 20px;
  border: transparent;
}

.form-check-input:checked {
  /* background-color: #058cc8;
  border-color: #058cc8; */
  background-color: var(--content-video-color);
  border-color: var(--content-video-color);
}

.page-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.workspace {
  display: flex;
  height: calc(100% - 56px);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* justify-content: center; */
  width: 100%;
  height: 56px;
  padding: 0 16px;
  
  background-color: var(--alt-background);
  border-bottom: solid 1px var(--main-border-color);
}

.header__filter {
  display: flex;
  align-items: center;
  /* gap: 24px; */
  border: solid 1px var(--bs-border-color);
  border-radius: 4px;
  height: 34px;
  padding: 0 10px;
}

.header__filter-item {
  display: flex;
  gap: 6px;
  /* align-items: center; */
}

.header__filter-item:not(:last-child) {
  padding-right: 12px;
  margin-right: 12px;
  border-right: solid 1px #717171;
}

.filter-mobile {
  display: none;
  padding: 8px;
  gap: 24px;

  position: sticky;
  top: 0;
  z-index: 4;
  /* background-color: #23282d; */
  background-color: var(--list-item-hover);
  box-shadow: 0 2px 3px #1f1f1f;
  /* border-bottom: solid 1px #717171; */
}

.header__main {
  display: none;
  gap: 12px;
}

.header__mob-menu {
  display: none;
  /* display: flex; */
  /* visibility: hidden; */
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: 34px;
  height: 32px;
  padding: 8px 6px;
}

.header__mob-menu span {
  width: 100%;
  height: 2px;
  border-radius: 4px;
  background-color: #fff;
}

.header__mob-menu_active {
  /* background-color: #23282d; */
  background-color: var(--main-background);
  border-radius: 4px;
}

.interface-button_active {
  background-color: #6c757d;
  color: #fff;
}

.workspace__interface {
  position: relative;
  flex-shrink: 0;
  /* width: 36%; */
  width: 34%;
  max-width: 460px;
}

.workspace__item-active {
  z-index: 3;
}

/*marking tags*/
.workspace__tag-interface {
  /* display: flex; */
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  /* background-color: #0e1113; */
  background-color: var(--main-background);
}

.workspace__category-col {
  padding: 4px;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  /* border-right: solid 2px var(--bs-border-color); */
  border-right: solid 2px var(--main-border-color);
  overflow-y: scroll;
}

.tag-list {
  padding: 4px;
}

.tag-list__list-item {
  position: relative;
  padding: 8px 12px;

  font-size: 18px;

  display: flex;
  align-items: center;
  gap: 4px;

  border-radius: 8px;

  cursor: pointer;
}

/* .tag-list__list-item_hidden {
  display: none;
} */

.tag-list__list-item:not(.tag-list__list-item_chosen):hover {
  background-color: var(--list-item-hover);
}

.tag-list__list-item_chosen {
  background-color: var(--list-item-active);
}

.tag-list__list-item:not(:first-child) {
  margin-top: 4px;
}
.tag-list__item-status {
  display: flex;
  gap: 4px;
}

.tag-list__item-button {
  padding: 2px 6px;
  line-height: 1;
  font-size: 16px;

  border: solid 2px #eee;
  border-radius: 4px;
  background: transparent;
}

.tag-list__item-button_yes {
  border-color: var(--bs-success);
  color: var(--bs-success);
}
.tag-list__item-button_no {
  border-color: var(--bs-danger);
  color: var(--bs-danger);
}

.tag-list__item-button_yes.tag-list__item-button_active {
  background-color: var(--bs-success);
  color: var(--bs-body-color);
}

.tag-list__item-button_no.tag-list__item-button_active {
  background-color: var(--bs-danger);
  color: var(--bs-body-color);
}

.tag-list__item-upload {
  padding: 4px 8px;
  border-color: #ffffff99;
  background: transparent;
  border-radius: 4px;

  font-size: 14px;
  line-height: 1;
  color: var(--main-text-color);

  transition: 0.3s;
  display: none;
}

.tag-list__item-upload:hover {
  background-color: #ffffff99;
}

.tag-list__item-upload_active {
  background-color: #ffffff99;
}

.tag-list__item-task {
  margin-right: 8px;
  margin-left: auto;

  display: flex;
  gap: 4px;
}

.tag-list__item-task > span {
  padding: 2px 6px;
  font-size: 16px;
  line-height: 1;
  border-radius: 4px;
}

.tag-list__item-task_img {
  border: solid 2px var(--content-img-color);
}

.tag-list__item-task_video {
  border: solid 2px var(--content-video-color);
}

.tag-list__item-task_carousel {
  border: solid 2px var(--content-carousel-color);
}

.category__item {
  background-color: var(--bs-secondary-bg);
  background-color: var(--alt-background);
  border-radius: 0.375rem;
  border: solid 1px var(--bs-border-color);
  display: none;
}

.category__item:not(:last-child) {
  margin-bottom: 8px;
}

.category__item:has(.category__list-item:not(.category__list-item_hidden)) {
  display: block;
}

.category__list {
  padding: 8px 0;
  border-bottom: solid 1px #787878;
}

.category__list li[data-tag-status="chosen"] {
  color: var(--bs-primary);
}

.category__list-button {
  padding: 10px 12px;
  margin-bottom: 0;

  font-size: 1rem;
  font-weight: 400;

  border: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.category__list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;

  position: relative;
  cursor: pointer;

  transition: 0.3s;
  padding: 4px 8px;
}

.category__list-item_hidden {
  display: none;
}

.category__list-item:hover {
  background-color: var(--main-background);
}

.category__list-item_active > span {
  color: var(--bs-info);
}

.workspace__tags-col {
  width: 50%;
  flex-shrink: 0;
  overflow-y: scroll;
}

.tags__list {
  padding: 4px;
}

.tags__list-category {
  background-color: var(--bs-secondary-bg);
  padding-bottom: 8px;
  border-radius: 0.375rem;
  border: solid 1px var(--bs-border-color);
  border-bottom: solid 1px #848484;
}

.tags__list-category:not(:last-child) {
  margin-bottom: 8px;
}

.tags__list-catname {
  padding: 10px 12px;
  margin-bottom: 8px;

  font-size: 1rem;
  line-height: 1.2;

  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border: none;
}

.tags__list-tagitem {
  padding: 0px 8px;
  cursor: pointer;
}

.tags__list-tagitem_approved {
  color: var(--bs-success);
  font-weight: 700;
}

/*workspace carousel slider*/
.workspace-content__carousel {
  display: none;
  justify-content: center;
  align-items: center;
}

.workspace-content__carousel_inner {
  width: 100%;
}

.workspace-content__carousel[data-workspace-status="active"] {
  display: flex;
}

.swiper {
  max-width: 52vw;
  width: 100%;
  max-height: 70vh;
  height: 80%;
}

.workspace-carousel__slide {
  background-color: #1a1d20;
}

.workspace-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*gifs workspace*/
.gifs__player {
  position: relative;
  /* max-height: 100%; */
  height: 100%;
  overflow: hidden;
  min-height: 400px;
  min-width: 200px;

  background-color: #1a1d20;
  border-radius: 8px;
  aspect-ratio: 9 / 16;
}

.gifs__player_wrapper {
  position:relative;
  padding-bottom: 177.78%;
}

.workspace-video.gifs__player-inner_base {
  height: 100%;
}

.gifs__player_base {
  max-width: 100%;
  justify-self: end;
}

.workspace-video.gifs__player-inner_base-horizontal {
  aspect-ratio: 16 / 9;
  height: auto;
  width: 100%;
  margin-top: 60%;
}

.gifs__player_embedded {
  pointer-events: none;
}

.gifs__player_embedded iframe[src=''] {
  width: 0;
  height: 0;
}

/*current content*/
.workspace__content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  position: relative;

  width: 100%;
}

.workspace-content__toolbar {
  display: flex;
  gap: 8px;
  position: absolute;
  z-index: 3;
  /* background-color: #0e1113; */
  background-color: var(--main-background);
  top: 12px;
  right: 12px;
  border-radius: 4px;
}

.workspace-content__current-image-num {
  padding: 6px 12px;
  border: solid 1px var(--bs-border-color);
  border-radius: 4px;
}

.workspace-content__task {
  padding: 4px 8px;
  border: solid 1px var(--bs-border-color);
  border-radius: 4px;
}

.workspace-content__task span:not(:first-child) {
  padding-left: 12px;
  margin-left: 12px;
  border-left: solid 1px #dee2e6;
}

.ref-info-button {
  border: none;
  background: transparent;
}

.ref-info-button svg circle, .ref-info-button svg path{
  transition: 0.3s;
}

.ref-info-button svg path {
  color: #3288d7;
}

.ref-info-button svg circle {
  color: #ffffff99;
}

.ref-info-button:hover svg circle {
  color: var(--main-background)
}
/* .ref-info-button:hover svg path {
  color: var(--alt-background)
} */

.ref-info__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

.ref-info__body {
  padding: 0;
  background-color: var(--alt-background);
}

.ref-info__item {
  padding: var(--bs-modal-header-padding);
}

.ref-info__item:not(:first-of-type) {
  /* margin-top: 12px; */
  /* padding-top: 12px; */
  border-top: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
}

.ref-info__item-title {
  margin-bottom: 12px;
  color: var(--content-video-color);
}

.workspace-content__current {
  position: relative;
  /* display: flex; */
  display: none;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  max-height: 75%;
  max-height: 100%;
  overflow: hidden;
  /* background-color: #1a1d20; */

  margin: 60px 40px 40px;

  min-height: 400px;
  min-width: 300px;
}

.workspace-content__current[data-workspace-status="active"] {
  display: flex;
}

.workspace-content__current img {
  width: 100%;
  height: 100%;
  transition: .3s;
  object-fit: contain;
}

.workspace-content__picture {
  display: none;
}

.workspace-content__picture_loaded {
  display: block;
}

.workspace-content__loading-placeholder {
  position: absolute;
  width: 400px;
  height: 400px;
}

/*workspace video*/
.workspace-content__video {
  width: 100%;
  height: 100%;
  margin: 60px 40px 40px;
  justify-content: center;
  align-items: center;
  display: none;
}

.workspace-content__video[data-workspace-status="active"] {
  display: flex;
}

/*carousel-grid*/
.workspace-image__carousel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;

  max-height: 100%;
  padding: 8px;

  overflow-y: auto;
}

.workspace-image__carousel-grid li {
  aspect-ratio: 1 / 1;
  background-color: #1a1d20;
}

.workspace-image__carousel-grid li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#canvas {
  position: absolute;
  top: 40px;
  left: 40px;
}

.workspace-image__frame {
  background-color: transparent;
  position: absolute;
  border: solid 2px #dc3545;
  transition: .3s;
}

/*Current video*/
.workspace-video {
  height: 1000px;
  max-height: 100%;
  /* width: 1000px; */
  max-width: 100%;
  aspect-ratio: 9 / 16;
}

.workspace-video_hor {
  height: auto;
  width: 1000px;
  aspect-ratio: 16 / 9;
}

/*thumbs*/
.workspace__thumb-col {
  width: 170px;
  flex-shrink: 0;
  padding: 8px;

  /* border-left: solid 2px #717171; */
  border-left: solid 2px var(--main-border-color);
  margin-left: auto;

  overflow-y: scroll;
}

.thumbs__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.thumbs__list-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  height: 150px;

  /* background-color: #23282d; */
  background-color: var(--alt-background);
  box-shadow: 0 0 0 1px #0000000a, 0 1px 0 0 #00000014;
  border: solid 4px transparent;

  cursor: pointer;
  transition: .3s;
}

.thumbs__list-item_type-mode {
  width: calc(100% - 6px);
  margin-left: 8px;
  height: 144px;
}

.thumbs-item__tools {
  position: absolute;
  bottom: -38px;
  left: -4px;

  display: flex;
  justify-content: center;
  gap: 4px;
  width: calc(100% + 8px);
  padding: 4px;
  /* background-color: rgba(21, 21, 21, 0.8); */
  background-color: #181c1f;
}

.thumbs-item__tools-subs {
  color: var(--bs-body-color);
  border: solid 1px #6c757d;
  border-radius: 0.375rem;
  padding: 0px 4px;
}

.thumbs-item__tools-subs span:nth-child(2) {
  color: var(--bs-warning);
}
.thumbs-item__tools-subs span:nth-child(1) {
  color: var(--bs-success);
}

.thumbs-item__tools-counter {
  color: var(--bs-body-color);
  border: solid 1px #6c757d;
  border-radius: 0.375rem;
  padding: 0px 4px;
}

.thumbs-item__tools-counter_zero-links span:nth-child(3) {
  color: var(--bs-danger);
}
.thumbs-item__tools-counter_zero-titles span:nth-child(2) {
  color: var(--bs-danger);
}
.thumbs-item__tools-counter_zero-tags span:nth-child(1) {
  color: var(--bs-danger);
}

.thumbs-item__tools-icon {
  padding: 0px 6px;
}

.thumbs-item__type-block {
  position: absolute;
  width: 5px;
  height: calc(100% + 8px);
  top: -4px;
  left: -12px;

  border-radius: 4px;

  background-color: #eee;
}

.thumbs-item__type-block_img {
  background-color: var(--content-img-color);
}
.thumbs-item__type-block_carousel {
  background-color: var(--content-carousel-color);
}
.thumbs-item__type-block_video {
  background-color: var(--content-video-color);
}

.thumbs__list-item:before {
  position: absolute;
  display:none;
  justify-content: center;
  align-items: center;
  
  top: -6px;
  right: 6px;

  content: "";
  width: 32px;
  height: 32px;

  border-radius: 2px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.thumbs__list-item_not-ok:before {
  display:flex;
  background-color: rgba(220, 53, 69, 0.8);
  background: url('./../assets/icons/ban.svg') center center / 20px 20px no-repeat,
  linear-gradient(rgba(220, 53, 69, 1), rgba(220, 53, 69, 0.4));
}
.thumbs__list-item_wait:before {
  display:flex;
  background-color: rgba(255, 193, 7, 0.8);
  background: url('./../assets/icons/hourglass-split.svg') center center / 20px 20px no-repeat,
  linear-gradient(rgba(255, 193, 7, 1), rgba(255, 193, 7, 0.4));
}
.thumbs__list-item_ok:before {
  display:flex;
  background-color: rgba(18, 201, 2, 0.8);
  background: url('./../assets/icons/check-square.svg') center center / 20px 20px no-repeat,
  linear-gradient(rgba(0, 128, 0, 1), rgba(0, 128, 0, 0.4));
}

.thumbs__list-item_on-wall:after {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;

  top: -6px;
  left: 6px;
  /* right: 42px; */

  content: "";
  width: 32px;
  height: 32px;

  border-radius: 2px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;

  background-color: rgba(33, 37, 41, 0.8);
  /* background: url('./../assets/icons/bricks.svg') center center / 20px 20px no-repeat,
  linear-gradient(rgb(7, 130, 253), rgba(1, 41, 82, 0.4)); */
}

.thumbs__list-item_on-wall_not-ok:after {
  background: url('./../assets/icons/bricks.svg') center center / 20px 20px no-repeat,
  linear-gradient(rgba(220, 53, 69, 1), rgba(220, 53, 69, 0.4));
}
.thumbs__list-item_on-wall_wait:after {
  background: url('./../assets/icons/bricks.svg') center center / 20px 20px no-repeat,
  linear-gradient(rgba(255, 193, 7, 1), rgba(255, 193, 7, 0.4));
}
.thumbs__list-item_on-wall_ok:after {
  background: url('./../assets/icons/bricks.svg') center center / 20px 20px no-repeat,
  linear-gradient(rgba(0, 128, 0, 1), rgba(0, 128, 0, 0.4));
}

.thumbs__list-item_active {
  border: solid 4px var(--bs-primary);
}

.thumbs__list-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.thumbs__list-item_hidden {
  display: none;
}

/*search*/
/* .header__search {
  position: relative;
  width: 16vw;
  max-width: 270px;
}

.header__search-output {
  display: none;
  width: 100%;
  position: absolute;
  top: 50px;
  left: 0;

  padding: 8px 0;
  max-height: 60vh;

  background-color: var(--bs-tertiary-bg);
  border-radius: 0.375rem;
  overflow-y: auto;

  z-index: 11;
}

.header__search-item {
  cursor: pointer;
  padding: 0 8px;
}

.header__search-item:hover {
  background-color: var(--bs-dark-bg-subtle);
}

.header__search-item[data-tag-status="chosen"] {
  color: var(--bs-primary);
} */

/*new loading*/
html {
  --spinner: #f85814;
  --center: translate(-50%, -50%);
}
.center {
   position: absolute;
   width: 30px;
   height: 30px;
   background: var(--spinner);
   border-radius: 50%;
   top: 50%;
   left: 50%;
   transform: var(--center);
}
.outer-spin, .inner-spin {
  position: absolute;
  top: 50%;
  left: 50%;
}
.outer-spin {
  animation: spin 4s linear infinite;
}
.outer-arc, .inner-arc {
  position: absolute;
  border-radius: 50%;
  border: 4px solid;
}
.outer-arc {
  width: 100px;
  height: 100px;
}
.outer-arc_start-a {
  border-color: transparent transparent transparent var(--spinner);
  transform: var(--center) rotate(65deg);
}
.outer-arc_end-a {
  border-color: var(--spinner) transparent transparent transparent;
  transform: var(--center) rotate(45deg);
}
.outer-arc_start-b {
  border-color: transparent transparent transparent var(--spinner);
  transform: var(--center) rotate(65deg) scale(-1, -1);
}
.outer-arc_end-b {
  border-color: var(--spinner) transparent transparent transparent;
  transform: var(--center) rotate(45deg) scale(-1, -1);
}

.outer-moon-a {
   position: absolute;
   top:50%;
   left:50%;
   width: 15px;
   height: 15px;
   background: var(--spinner);
   border-radius: 50%;
   transform: var(--center) translate(52px, 0);
}
.outer-moon-b {
   position: absolute;
   top:50%;
   left:50%;
   width: 15px;
   height: 15px;
   background: var(--spinner);
   border-radius: 50%;
   transform: var(--center) translate(-52px, 0);
}
.inner-spin {
  animation: spin 3s linear infinite;
}
.inner-arc {
  width: 62px;
  height: 62px;
}
.inner-arc_start-a {
  border-color: transparent transparent transparent var(--spinner);
  transform: var(--center) rotate(65deg);
}
.inner-arc_end-a {
  border-color: var(--spinner) transparent transparent transparent;
  transform: var(--center) rotate(45deg);
}
.inner-arc_start-b {
  border-color: transparent transparent transparent var(--spinner);
  transform: var(--center) rotate(65deg) scale(-1, -1);
}
.inner-arc_end-b {
  border-color: var(--spinner) transparent transparent transparent;
  transform: var(--center) rotate(45deg) scale(-1, -1);
}
.inner-moon-a {
   position: absolute;
   top:50%;
   left:50%;
   width: 12px;
   height: 12px;
   background: var(--spinner);
   border-radius: 50%;
   transform: var(--center) translate(33px, 0);
}
.inner-moon-b {
   position: absolute;
   top:50%;
   left:50%;
   width: 12px;
   height: 12px;
   background: var(--spinner);
   border-radius: 50%;
   transform: var(--center) translate(-33px, 0);
}
@keyframes spin { 100% {transform: rotate(360deg); } }

.workspace__mob-toggle {
  display: none;
}

.workspace-content__all {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: 100%;
  height: 100%;

  /* padding: 20px 0; */
  padding: 0;

  overflow-y: scroll;
}

.workspace-content__all::-webkit-scrollbar {
  width: 0px;
}

.workspace-all__item {
  width: 90%;
  max-height: calc(100vh - 56px);
  padding: 60px 20px;
  margin-right: 6px;
 
  background-color: var(--main-background);
}

/* .workspace-all__item_video {
  background-color: var(--alt-background);
} */

.workspace-all__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*base swiper on mobile*/
.swiper.swiper-mobile {
  width: 100%;
  height: 100%;
  max-width: 100vw;
}

.swiper-mobile .swiper-slide {
  width: 100%;
}

.swiper-mobile .swiper-vertical>.swiper-wrapper {
  align-items: center;
}

.swiper-mobile .swiper-scrollbar_mob {
  background-color: var(--bs-info);
  height: calc(100% + 4px);
  width: 6px;
  top: -2px;
  right: 0px;
  border-radius: 0;
}

/*nodata placeholder*/
.nodata-placeholder {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 40px 20px;

  background-color: #212529;
}

.nodata-placeholder_active {
  display: flex;
}

.nodata-placeholder__image {
  border-radius: 8px;
  box-shadow: 0 0 55px #000000;
  display: block;
  max-width: 100%;
  max-height: 100%;
}

/*Uploader*/
.loader-wrapper {
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  /* top: 24px;
  left: 24px; */
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
  /* max-width: 500px; */
  background-color: rgba(0, 0, 0, 0.8);

  z-index: 21;
}

.loader-wrapper_active {
  /* display: block; */
  display: flex;
}

.loader__global-hover {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 20;
}


@media (max-width: 1200px) {
  .workspace__interface {
    width: 36%;
  }

  .workspace__thumb-col {
    width: 150px;
  }
  
  .tag-list__list-item > span {
    font-size: 16px;
  }

  .swiper {
    max-width: 48vw;
  }
}

@media (max-width: 992px) {
  .title-interface__loading {
    display: none;
  }

  .header {
    justify-content: space-between;
  }

  .header__mob-menu {
    display: flex;
    /* visibility: visible; */
  }

  .header__filter-item:not(:last-child) {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
  }

  .workspace {
    position: relative;
  }

  .workspace-content__current-image-num {
    display: none;
  }

  .workspace-content__toolbar {
    top: 8px;
    right: 18px;
  }

  .workspace__interface {
    position: absolute;
    width: 420px;
    height: calc(100vh - 56px);
    top: 0;
    left: -420px;
    z-index: 12;

    transition: 0.4s;
  }

  .workspace__category-col_check.workspace__category-col {
    height: calc(100% - 42px);
  }

  .workspace__mob-toggle {
    display: block;

    position: absolute;
    top: 12px;
    right: -40px;

    width: 40px;
    height: 40px;

    padding: 6px;
    background-color: #1a1d20;
    border: solid 1px #eee;
    border-left: none;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;

    cursor: pointer;
  }

  .workspace__mob-toggle svg {
    cursor: pointer;
  }

  .workspace__thumb-col {
    display: none;
  }

  /* .workspace__content-col {
    padding: 10px;
  } */

  .gifs__player_wrapper {
    padding-bottom: 179%;
  }

  .swiper {
    max-width: 90vw;
    max-height: unset;
  }

  .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  
  .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    border: solid 2px #979797;
  }

  .swiper-innner .swiper-slide {
    background: #0e1113;
  }

  .swiper-innner .swiper-wrapper {
    background-color: #0e1113;
  }

  .workspace-content__all {
    display: flex;
  }

  .workspace-content__carousel {
    display: flex;
  }

  .header__main {
    display: flex;
  }

  .filter-mobile {
    display: flex;
  }

  .header__filter {
    display: none;
  }
}

@media (max-width: 576px) {
  .header {
    padding: 0 12px;
  }

  /* .header__mob-menu {
    padding: 6px 4px;
    width: 30px;
    height: 28px;
  } */

  .tag-list__item-task {
    margin-right: 4px;
  }

  .tag-list__item-task > span, .tag-list__item-button {
    padding: 4px 6px;
  }

  .tag-list__item-upload {
    padding: 6px 8px;
  }

  .workspace-content__task {
    padding: 2px 8px;
    border-width: 2px;
  }

  .gifs__player {
    width: 100%;
    max-width: 86%;
    height: auto;
    min-height: 350px;
  }

  .workspace-content__current {
    min-height: auto;
    min-width: auto;
    margin: 0;
  }

  .workspace__interface {
    width: 100%;
    left: -100%;
    max-width: 576px;
  }

  .tag-list {
    padding: 4px 0;
  }

  .tag-list__list-item {
    padding: 10px 8px;
    font-size: 16px;
  }

  .swiper {
    max-height: 100vh;
  }

  .swiper-button-next, .swiper-button-prev {
    display: none;
  }
}

.workspace__interface_active {
  left: 0;
}

@media (max-width: 365px) {
  .workspace-content__task span:not(:first-child) {
    padding-left: 6px;
    margin-left: 6px;
  }

  .header {
    padding: 0 4px;
  }

  .workspace-content__task {
    padding: 2px 4px;
  }
}

@media (max-height: 550px) {
  .swiper-mobile .gifs__player {
    /* height: 100%; */
    max-width: 75%;
    min-height: auto;
  }
}