@import 'normalize.css';

* {
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  font-family: Montserrat, sans-serif;
  position: relative;
  min-height: 100vh;
}

.mt-1 {
  margin-top: 1rem !important;
}

.capitalize {
  text-transform: capitalize;
}

a {
  outline: none;
  text-decoration: none;
  padding: 2px 1px 0;
  color: #ffffff;
}

.hidden {
  visibility: hidden;
}

header {
  width: 100%;
  display: flex;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  text-align: right;
  color: #ffffff;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 37px;
  height: 76px;
  background: rgb(43, 185, 248);
  background: linear-gradient(
    90deg,
    rgba(43, 185, 248, 1) 0%,
    rgba(82, 102, 255, 1) 100%
  );
}

.align-center {
  align-items: center;
  display: flex;
}

header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

header .menu-icon .navicon {
  background: #fff;
  display: block;
  height: 2px;
  position: relative;
  transition: background 0.2s ease-out;
  width: 18px;
}

header .menu-icon .navicon:before,
header .menu-icon .navicon:after {
  background: #fff;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}

header .menu-icon .navicon:before {
  top: 5px;
}

header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

header .menu-btn {
  display: none;
}

header .menu-btn:checked ~ .menu-mobile {
  max-height: 240px;
  background-color: #f5f5f5;
  border-bottom: 1px solid #ccc;
}

header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

#root {
  display: grid;
  min-height: 100%;
  grid-template-columns: 100%;
  grid-template-rows: auto 1fr auto;
}

.wrapper {
  width: 95%;
  margin-left: 3%;
  margin-right: 3%;
}

@media screen and (max-width: 1200px) {
  .wrapper {
    margin-left: auto;
    width: 100%;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 3;
}
.menu {
  display: flex;
  position: relative;
}
.menu a {
  margin: 40px;
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #fff;
}
.menu a:hover {
  color: #fff;
}
.menu .nav-item {
  list-style: none;
}

.menu .nav-item .nav-link {
  min-width: 70px;
  display: block;
  text-align: left;
}

.menu .nav-item .nav-link:hover {
  color: #fff;
}

.header .logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 10px 20px;
  text-decoration: none;
}

.header .logo img {
  width: 60px;
}

/* menu */

@media only screen and (max-width: 768px) {
  .header .menu-mobile {
    clear: both;
    max-height: 0;
    transition: all 0.2s ease-in-out;
    width: 100%;
    position: absolute;
    top: 80px;
    text-align: center;
    background: transparent;
  }

  /*.header .hide-menu {*/
  /*visibility: hidden;*/
  /*transition: all .2s ease-in-out;*/
  /*}*/

  /*.header .show-menu {*/
  /*visibility: visible;*/
  /*transition: all .2s ease-in-out;*/
  /*}*/

  .header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    background-color: #fff;
  }

  .header li a {
    display: block;
    padding: 20px 20px;
    border-right: 1px solid #f4f4f4;
    text-decoration: none;
  }

  .header li a:hover,
  .header .menu-btn:hover {
    background-color: #f4f4f4;
  }

  .header {
    position: relative;
  }

  .menu {
    display: none;
  }
}

@media only screen and (min-width: 769px) {
  .header .menu-mobile {
    display: none;
  }

  .header .menu-icon {
    display: none;
  }
}

.left {
  margin-right: 300px;
}

@media only screen and (max-width: 991px) {
  .left {
    margin-right: 0;
  }
}

@media only screen and (max-width: 732px) {
  .menu .nav-item .nav-link {
    margin-right: 1rem;
  }

  .menu .nav-item:last-child .nav-link {
    margin-right: 0;
  }

  .menu .setting {
    margin-left: 0;
    font-size: 0;
    color: transparent;
  }

  .menu .setting:hover {
    color: #fff;
  }

  .menu .setting::after {
    display: block !important;
  }

  .menu .logout {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}

.source::before {
  position: absolute;
  left: -35px;
  content: '';
  top: 0;
  display: block;
  width: 25px;
  height: 25px;
  background-image: url(../img/source1.png);
  background-repeat: no-repeat;
}
.search::before {
  position: absolute;
  left: -35px;
  top: 0;
  content: '';
  display: block;
  width: 25px;
  height: 25px;
  background-image: url(../img/search2.png);
  background-repeat: no-repeat;
}
.setting::after {
  position: absolute;
  right: -35px;
  content: '';
  top: 0;
  display: block;
  width: 25px;
  height: 25px;
  /* background-image: url(../img/settings1.png); */
  background-image: url(../img/user.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*padding-bottom: 34px;*/
}

.source-actions {
  display: flex;
  flex-direction: row;
}

.source-actions button {
  margin-left: 1.5rem;
}

@media screen and (max-width: 668px) {
  .source-actions {
    flex-direction: column;
  }

  .source-actions button {
    margin: 0.5rem;
  }

  .actions h2 {
    margin: 0;
    margin-right: 0 !important;
  }

  .actions div {
    padding-bottom: 1rem !important;
  }
}

.actions .title {
  display: flex;
}

.actions h2 {
  font-style: normal;
  font-weight: normal;
  font-size: 36px;
  line-height: 36px;
  text-align: center;
  color: #000000;
  margin-right: 3rem;
}
.actions button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  align-self: center;
  min-width: 160px;
  padding: 0 15px;
  height: 45px;
  background: #5266ff;
  border-radius: 10px;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #ffffff;
  outline: none;
  cursor: pointer;
}
.actions button:hover {
  opacity: 0.8;
}

.actions button:nth-child(3) {
  display: flex;
  justify-content: space-between;
}
.actions button:nth-child(3)::after {
  display: block;
  content: '';
  width: 25px;
  height: 25px;
  border-radius: 30px;
  background-color: rgb(255, 255, 255);
  background-image: url(../img/3.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70% 70%;
}
.actions button:nth-child(3)::after {
  display: block;
  content: '';
  width: 25px;
  height: 25px;
  border-radius: 30px;
  background-color: rgb(255, 255, 255);
}

.search-input {
  width: 30rem;
  margin-bottom: 0;
  margin-top: 1.2rem;
  display: flex;
  height: 50px;
  flex-direction: row;
}

.date-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.date-field label {
  display: flex;
  font-size: 12px;
}

.search-input form {
  width: 100%;
  display: flex;
}

.search-input input {
  width: 90%;
  outline: none;
  padding: 0.85rem 1rem;
  background: #ffffff;
  border: 1px solid #ddd8ec;
  box-sizing: border-box;
  -webkit-border-top-left-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -moz-border-radius-topleft: 10px;
  -moz-border-radius-bottomleft: 10px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.search-input .search-btn {
  width: 10%;
  border: none;
  cursor: pointer;
  outline: none;
  align-items: center;
  display: flex;
  padding: 0.85rem 1rem;
  background: #5266ff;
  box-sizing: border-box;
  -webkit-border-top-right-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  -moz-border-radius-topright: 10px;
  -moz-border-radius-bottomright: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.top-filter-row {
  justify-content: space-between;
  display: flex;
}

.bottom-filter-row {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media only screen and (max-width: 732px) {
  .search-input input {
    width: 75%;
  }

  .search-input .search-btn {
    width: 50px;
  }
}

.filters {
  display: flex;
  flex-direction: column;
}

.filters .date-picker {
  height: 50px;
  border-radius: 10px;
}

.filters .date-picker:hover {
  border-color: #5266ff !important;
}

.ant-pagination {
  margin-bottom: 2rem !important;
}

.ant-pagination-jump-next,
.ant-pagination-jump-prev {
  margin-top: -30px !important;
}

.ant-pagination-item-link {
  padding-top: 0 !important;
}

.ant-pagination-next {
  padding-top: 0 !important;
}

.search-input .search-btn:hover {
  opacity: 0.8;
}

.search-input .search-btn img {
  width: 1rem;
  height: 1rem;
}

@media screen and (max-width: 662px) {
  .actions {
    margin-bottom: 1rem;
    flex-direction: column;
  }
}

footer {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
}

footer::before {
  display: block;
  content: '';
  width: 1200px;
  height: 2px;
  margin-bottom: 0.75rem;
  background-color: #f5f5f5;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 1200px) {
  footer::before {
    width: 100%;
  }
}

.parse {
  min-height: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-start;
  overflow-y: auto;
  padding-bottom: 1rem;
}

@media screen and (max-width: 1200px) {
  .parse {
    justify-content: center;
  }
}

.tags .tag-item{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.tag-img{
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.tags {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1rem;
}

.tags .title {
  margin-left: 0;
  font-size: 0.8rem;
  font-weight: bold;
  margin-right: 1.5rem;
}

.activeFilterTitle {
  font-size: 0.8rem;
  font-weight: bold;
  margin-right: 1rem;
}

.tags .tag img {
  width: 1rem;
  margin-right: 0.3rem;
}

.tags .tag {
  display: flex;
  padding: 0.5rem;
  background: transparent;
  border: 1px solid #cccccc;
  min-width: 6rem;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  height: 2.2rem;
  margin-right: 0.8rem;
  opacity: 0.8;
  cursor: pointer;
  font-size: 0.8rem;
}

.tags .tag.disabled {
  filter: grayscale(100%);
  pointer-events: none;
  cursor: not-allowed;
}

.tags .tag:hover {
  opacity: 1;
  border-color: #282c34;
}

.tags .tag.active {
  opacity: 1;
  border-color: #282c34;
  color: #282c34;
  background: #ecebec;
}

@media only screen and (max-width: 732px) {
  .tags {
    flex-direction: column;
    margin-top: 0.8rem;
  }

  .tags .title {
    font-size: 0.8rem;
  }
}

.noSources {
  display: flex;
  margin: 0 auto;
  align-self: center;
}

.noMessages {
  text-align: center;
  margin: 2rem 0;
  display: block;
}

.parsers {
  display: flex;
  width: 350px;
  flex-direction: column;
  align-items: center;
  margin: 1.5rem 1rem 0 1rem;
  padding: 1rem 2rem 0.6rem 2rem;
  box-shadow: 0px 10px 70px rgba(72, 199, 240, 0.2);
  border-radius: 10px;
  background: #ffffff;
  height: 110px;
  justify-content: space-between;
}

.overlay-dead{
  position: absolute;
  background-image: url('../img/exclamation-mark.svg');
  background-size: cover;
  right: 14px;
  bottom: 7px;
  width: 22px;
  height: 22px;
}

.overlay-frozen{
  position: absolute;
  background-image: url('../img/frozen-channel.svg');
  background-size: cover;
  right: 14px;
  bottom: 7px;
  width: 22px;
  height: 22px;
}

.parsers-relative{
  position: relative;
  overflow: hidden;
}

.index-top{
  z-index: 1;
}

.parsers.disabled {
  background: #ccc;
  /*pointer-events: none;*/
}

.parsers a {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #5266ff;
  margin-right: 1rem;
  border-radius: 10px;
}

.parsers.disabled a {
  color: #919191;
}

.parser-items {
  display: flex;
  flex-direction: column;
}

.p-items {
  display: flex;
  flex-direction: row;
}

.p-items .source-image {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 .5rem;
  display: flex;
}

.p-items .default-image{
  object-fit: cover;
}

.parser-items .category div {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 200px;
}

.parsers-item {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}

.parsers-item img {
  width: 1rem;
  margin-right: 0.3rem;
}

.parsers-item h3 {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 16px;
  color: #000000;
  width: 195px;
  padding-right: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.parsers-item .full-text{
  text-overflow: clip; 
}

.parsers .tags,
.parsers .category,
.parsers .lastParsed {
  display: flex;
  font-size: 0.8rem;
  width: 100%;
  align-items: flex-start;
  flex-direction: row;
  margin-bottom: 0;
}

.parsers .tags div {
  overflow: hidden;
  height: 40px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* MODAL DETAILS */

.parser-details .category,
.parser-details .date-time,
.parser-details .tags {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.parser-details .category span,
.parser-details .date-time span,
.parser-details .tags span {
  font-weight: bold;
}

@media only screen and (max-width: 732px) {
  .parsers {
    margin-bottom: 0;
    margin-top: 10px;
    width: 320px;
  }

  .parsers .tags {
    justify-content: flex-start;
  }

  .parsers .var {
    width: 100%;
    justify-content: flex-start;
  }

  .parsers:last-child {
    margin-bottom: 1.5rem;
  }

  .parsers:first-child {
    margin-top: 1.5rem;
  }
}

.var {
  display: flex;
  width: 285px;
}

.checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin: 10px 0 0 20px;
}
.checkbox + label {
  position: relative;
  padding: 0 0 0 50px;
  cursor: pointer;
}
.checkbox + label:before {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  width: 50px;
  height: 26px;
  border-radius: 25px;
  background: #ffffff;
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.2);
  transition: 0.2s;
}
.checkbox + label:after {
  content: '';
  position: absolute;
  top: -2px;
  left: 2px;
  width: 22px;
  height: 22px;
  border-radius: 25px;
  background: #ec1b1b;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: 0.2s;
}
.checkbox:checked + label:after {
  left: 26px;
  background: #07b819;
}
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}
.foot {
  display: flex;
}

.foot img {
  width: 50px;
  padding-bottom: 0.5rem;
  margin-right: 2rem;
}

.foot .rights {
  font-size: 0.75rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.foot .rights p {
  margin-bottom: 0.3rem;
}

.fo div p {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  color: #000000;
}
.info a {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 15px;
  /* identical to box height */
  color: #5266ff;
  padding-right: 20px;
}
.lang {
  width: 120px;
  height: 22px;
  background: #ffffff;
  /* box-shadow: 0px 10px 25px rgba(88, 63, 164, 0.25); */
  border-radius: 10px;
  outline: none;
  color: #5266ff;
  text-align-last: center;
}

@media only screen and (max-width: 740px) {
  .footer {
    flex-direction: column;
  }

  .footer .rights {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .footer .rights p {
    margin-bottom: 0;
  }

  .lang {
    margin: 0.5rem 0;
  }

  .info {
    text-align: center;
  }
}

/* __source__details__page___css__ */

.actions .refresh {
  position: relative;
  left: -1rem;
}

.actions .refresh-block {
  width: 130px;
}

@media only screen and (max-width: 740px) {
  .actions .refresh-block {
    margin-top: 1rem;
  }

  .actions .refresh {
    left: -1rem;
  }

  .hide-mobile {
    display: none !important;
  }

  .ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .head-data .cell {
    text-align: center;
  }
}

.actions div {
  position: relative;
  padding-bottom: 1rem;
}

.actions div a {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  /* identical to box height */
  text-align: right;
  color: #000000;
  padding: 15px;
}

.actions .refresh::after {
  position: absolute;
  display: block;
  content: '';
  width: 34px;
  height: 34px;
  right: -30px;
  top: 7px;
  background: #ffffff;
  box-shadow: 0px 10px 25px rgba(98, 54, 149, 0.25);
  border-radius: 30px;
  background-image: url(../img/vector.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

@media only screen and (max-width: 732px) {
  .actions .title {
    margin: 0;
    padding: 0.5rem;
  }

  .actions .messages-title {
    margin: 0;
  }
}

::-webkit-scrollbar-button {
  background-image: url('');
  background-repeat: no-repeat;
  width: 8px;
  height: 0px;
}

::-webkit-scrollbar-track {
  background-color: #e7e7e7;
  border-radius: 5px;
  width: 8px;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 0px;
  border-radius: 5px;
  background-color: #5266ff;
}

::-webkit-scrollbar {
  width: 8px;
}

.search-messages {
  height: 100%;
}

.search-messages .material {
  height: auto;
}

.showRepliesModal .ant-modal {
  width: 700px;
}

/*@media only screen and (max-height: 978px) {*/
/*  .search-messages .material {*/
/*    height: 31rem;*/
/*  }*/
/*}*/

/*@media only screen and (max-height: 891px) {*/
/*  .search-messages .material {*/
/*    height: 27rem;*/
/*  }*/
/*}*/

/*@media only screen and (max-height: 880px) {*/
/*  .search-messages .material {*/
/*    height: 25rem;*/
/*  }*/
/*}*/

/*@media only screen and (max-height: 840px) {*/
/*  .search-messages .material {*/
/*    height: 23rem;*/
/*  }*/
/*}*/

/*@media only screen and (max-height: 812px) {*/
/*  .search-messages .material {*/
/*    height: 18rem;*/
/*  }*/
/*}*/

/*@media only screen and (max-width: 742px) {*/
/*  .search-messages .material {*/
/*    height: 100%;*/
/*  }*/
/*}*/

@media only screen and (max-width: 480px) {
  .filters .bottom-filter-row {
    flex-direction: column;
  }

  .filters .top-filter-row {
    flex-direction: column;
    justify-content: flex-start;
    display: flex;
    margin-bottom: 1rem;
  }

  .search-input {
    width: 100%;
  }

  .date-field {
    margin-top: 1rem;
  }

  .search-input input {
    width: 100%;
  }

  .filters {
    padding: 0 0.5rem;
  }

  .filters .bottom-filter-row .ant-select {
    width: 100% !important;
    margin: 0.5rem auto !important;
  }
}

.head-data {
  /* outline: 2px solid red; */
  height: 3rem;
  background: #f3f3f3;
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 49px;
  /* identical to box height */
  color: #000000;
  display: flex;
}

.head-data img {
  display: none;
}

.head-data .cell {
  display: flex;
  flex-direction: row;
}

.head-data .cell .arrow {
  cursor: pointer;
  width: 0.6rem;
  margin-left: 0.4rem;
}

.head-data .cell .arrow.active {
  transform: rotate(180deg);
}

.cell.message-cell {
  width: 45% !important;
}

.cell.avatar-cell,
.cell.date-cell {
  width: 10% !important;
}

.date-cell.date-info {
  color: #a3a3a3;
  font-size: 13px;
}

.date-cell.date-info span {
  color: #000;
  font-size: 13px;
  font-weight: 500;
}

.cell.name-cell {
  overflow: hidden;
}

.cell:not(:last-child) {
  width: 20%;
}

.cell.media-cell {
  width: 7% !important;
}

.u-img::before {
  position: absolute;
  display: block;
  content: '';
  width: 45px;
  height: 45px;
  background-color: #aaa1c4;
  border-radius: 50%;
  top: 20%;
  left: 10px;
}

.data-list {
  position: relative;
  display: block;
  flex-direction: column;
  justify-content: flex-start;
  /*overflow-y: scroll;*/
  overflow-x: hidden;
  height: 100%;
}

@media only screen and (max-width: 742px) {
  .data-list {
    height: auto;
  }
}

.msgLoader {
  position: absolute;
  left: 50%;
  top: 50%;
}

.data-list .cell .avatar {
  display: flex;
  width: 45px;
  height: 45px;
  background-color: #aaa1c4;
  border-radius: 50%;
  border: none;
  margin-left: 1rem;
}

.data-list .cell .name {
  display: flex;
  padding-left: 1rem;
  font-size: 1rem;
  margin-bottom: 0;
}

.data-list .cell {
  display: flex;
  align-items: center;
}

.data-list .cell p {
  margin-bottom: 0;
  font-size: 11px;
}

.data-list .cell p span {
  margin-top: 2px;
  color: #939393;
  font-size: 0.8rem;
}

.data {
  cursor: pointer;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  height: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 0.3s;
  border-bottom: 3px solid #f3f3f3;
}

.data:hover {
  background-color: #efeded;
}

.data .cell:nth-child(1) {
  position: relative;
  display: flex;
  align-items: center;
}

.data .msg {
  padding: 0 0.5rem;
  width: 45% !important;
  text-overflow: ellipsis;
  overflow: hidden;
  align-items: flex-start;
}

.data .files {
  border: none;
  width: 7%;
  cursor: pointer;
  outline: none;
  background-color: transparent;
}

.data .files:disabled,
.data .files[disabled],
.data .replies:disabled,
.data .replies[disabled] {
  color: #ccc;
  border: none;
  opacity: 0.5;
  pointer-events: none;
  background-color: transparent;
}

.u-img {
  padding-left: 60px;
  text-align: center;
  margin: 0;
}

.user {
  padding-left: 10px;
  margin: 0;
}

.data .replies {
  width: 7%;
  border: none;
  cursor: pointer;
  outline: none;
  background-color: transparent;
}

#login-page {
  display: flex;
  align-items: center;
}

/* login page*/
.login {
  display: flex;
  margin-top: 0;
  padding: 0;
  justify-content: space-between;
  align-items: center;
}
.login-table {
  width: 330px;
  min-height: 363px;
  max-height: 400px;
  background: #ffffff;
  box-shadow: 0px 10px 70px rgba(72, 199, 240, 0.2);
  border-radius: 10px;
  border: 0 none;
  padding: 32px 30px 24px 31px;
  margin-left: 50px;
}
.login-table h2 {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  line-height: 36px;
}

@media only screen and (max-width: 1200px) {
  .login {
    flex-direction: column;
    align-items: center;
  }

  .login .login-table {
    order: 2;
    margin: 0;
  }

  .login_img {
    order: 1;
    margin-bottom: 1rem;
    flex-direction: column;
    align-items: center;
  }

  .login_img img {
    height: 110px;
    width: 150px;
    order: 1;
    margin-bottom: 0.5rem;
  }

  .login_img .login-inv-text {
    display: flex;
    position: initial;
    flex-direction: column;
    order: 2;
  }

  .login_img .login-inv-text h1 {
    margin: 0;
    font-size: 1rem;
    text-align: center;
  }

  .login_img .login-inv-text p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1rem;
    text-align: center;
  }
}

@media only screen and (max-width: 732px) {
  .login_img .login-inv-text {
    width: 100%;
  }
}

.info_input_login {
  border: 1px solid #ddd8ec;
  border-radius: 10px;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  width: 269px;
  height: 54px;
  margin-bottom: 19px;
  padding-left: 10px;
  outline: none;
}

.authError,
.errorMsg {
  color: #ec1b1b;
  text-align: center;
}

.successMsg {
  color: #279c46;
  text-align: center;
}

.register_button {
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.register_button:hover{
  background-color: #2BB9F8;
}

.login_button {
  display: flex;
  justify-content: space-between;
  width: 269px;
  align-items: center;
  margin-bottom: 20px;
}

.login_button button {
  transition: background-color 0.3s ease;
  cursor: pointer;
  width: 127px;
  height: 54px;
  background: #5266ff;
  cursor: pointer;
  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #ffffff;
  border: none;
  outline: none;
}

.login_button button:hover {
  background: #2BB9F8;
}

.link {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  text-decoration-line: underline;
  color: #5266ff;
}
.f {
  width: 269px;
  text-align: center;
}
.login-inv-text {
  width: 384px;
  position: absolute;
  top: 20%;
  right: 85%;
  color: #8ab2ce;
}
.login-inv-text h1,
.login-inv-text p {
  font-weight: 600;
  font-size: 18px;
  line-height: 36px;
}
.login_img {
  display: flex;
  position: relative;
}

/* register_page */

.register {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.register img {
  margin-bottom: 23px;
}
.register_table {
  display: flex;
  flex-direction: column;
  width: 330px;
  min-height: 470px;
  max-height: 500px;
  background: #ffffff;
  box-shadow: 0px 10px 70px rgba(72, 199, 240, 0.2);
  border-radius: 10px;
  padding: 32px 30px 30px 30px;
}
.register_table h2 {
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 36px;
  color: #000000;
  margin-bottom: 30px;
}
.info_input_reg {
  width: 269px;
  border: 1px solid #ddd8ec;
  border-radius: 10px;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  height: 54px;
  margin-bottom: 19px;
  padding-left: 10px;
  outline: none;
  margin-bottom: 25px;
}
.info_input_reg:nth-child(5) {
  margin-bottom: 30px;
}

.register_table button {
  width: 126px;
  height: 61px;
  background: #5266ff;
  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #ffffff;
  border: none;
  outline: none;
  align-self: center;
  margin-bottom: 12px;
}
.register_table a {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  text-decoration-line: underline;
  color: #5266ff;
  align-self: center;
}

.restore {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3%;
}
.restore img, .info_page img{
  margin-bottom: 23px;
}

.restore_table {
  display: flex;
  flex-direction: column;
  width: 330px;
  min-height: 300px;
  max-height: 500px;
  background: #ffffff;
  box-shadow: 0px 10px 70px rgba(72, 199, 240, 0.2);
  border-radius: 10px;
  padding: 32px 30px 30px 30px;
}
.restore_table h2 {
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 36px;
  color: #000000;
  margin-bottom: 30px;
}

.restore_table button {
  width: 126px;
  height: 61px;
  background: #5266ff;
  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #ffffff;
  border: none;
  outline: none;
  align-self: center;
  margin-bottom: 12px;
}
.restore_table a {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  text-decoration-line: underline;
  color: #5266ff;
  align-self: center;
}

.add-source {
}

.add-source .actions {
  justify-content: center;
}

.add-source .actions .title {
  margin: 0;
}

.add-source .actions h2 {
  margin: 0;
}

.add-source .steps {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.add-source .steps .step {
  /*display: flex;*/
  flex-direction: column;
  width: 320px;
  display: none;
}

.add-source .steps .step h2 {
  margin: 0;
}

.add-source .steps .step h1 {
  font-size: 2.5rem;
  color: #45c7f1;
}

.add-source .steps .form {
  display: flex;
  align-items: center;
  flex-direction: column;
  background: #fff;
  box-shadow: 0px 10px 70px rgba(72, 199, 240, 0.2);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  width: 35rem;
}

.add-source .steps .form .input {
  display: flex;
  margin: 1rem 0;
  align-items: center;
}

.add-source .steps .form .input label {
  width: 180px;
  color: #000;
}

.add-source .steps .form .select-box,
.categories-filter .select-box,
.categories-source .select-box {
  border: 1px solid #ddd8ec;
  border-radius: 10px;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  width: 269px;
  height: 50px;
  padding-left: 10px;
  outline: none;
  display: flex;
  align-items: center;
}

.tags .categories-filter,
.tags .categories-source {
  margin-left: 0.5rem;
}

.add-source .steps .form .select-box .ant-select-selector,
.categories-filter .select-box .ant-select-selector,
.categories-source .select-box .ant-select-selector {
  padding: 0 !important;
  height: 35px !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  align-items: center !important;
}

.add-source .steps .form .input input {
  border: 1px solid #ddd8ec;
  border-radius: 10px;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  width: 269px;
  height: 50px;
  padding-left: 10px;
  outline: none;
}

.add-source .tag-inputs {
  display: flex;
  flex-wrap: wrap;
  width: 270px;
}

.add-source .tag-input .tag-input {
  margin-bottom: 0.3rem;
}

.add-source .steps .form .tags-block input {
  width: 76px;
  height: 24px;
  font-size: 12px;
  border-radius: 4px;
}

.add-source .steps .form .tags-block .edit-tag {
  margin-bottom: 5px !important;
}

.add-source .steps .form .tags-block .site-tag-plus {
  margin-bottom: 5px !important;
}

.add-source .add-button {
  margin: 2rem auto 0 auto;
  width: 120px;
  height: 40px;
  background: #5266ff;
  border-radius: 10px;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #ffffff;
  border: none;
  outline: none;
  align-self: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-source .add-button[disabled] {
  cursor: not-allowed;
  background: #cacaca;
  color: #787878;
}

.add-source .add-button[disabled]:hover {
  opacity: 1;
}

.add-source .add-button:hover {
  opacity: 0.8;
}

.add-source .tags-example {
  margin-left: 1rem;
  margin-bottom: 0 !important;
}

@media only screen and (max-width: 768px) {
  .tags {
    flex-wrap: wrap;
    justify-content: center;
  }

  .tags .tag {
    margin: 0.3rem 0.5rem;
  }

  .categories-filter,
  .categories-source {
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 1280px) {
  .tags {
    flex-wrap: wrap;
    justify-content: center;
  }
  .tags .categories-filter,
  .tags .categories-source{
    padding-top: 10px;
  }
}

@media only screen and (max-width: 732px) {
  .add-source .steps {
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .add-source .steps .step {
    align-items: center;
    flex-direction: row;
    justify-content: center;
  }

  .add-source .steps .form {
    width: 100%;
  }

  .add-source .steps .form .input label {
    width: 100px;
  }

  .add-source .steps .form .input input {
    width: auto;
    flex-grow: 1;
  }

  .add-source .steps .form .select-box,
  .categories-filter .select-box,
  .categories-source .select-box {
    flex-grow: 1;
  }

  .add-source .steps .step h2 {
    order: 2;
  }

  .add-source .steps .step h1 {
    margin-bottom: 0;
  }

  .add-source .steps .form {
    margin-left: 0;
  }

  .add-source .add-button {
    margin-bottom: 2rem;
  }

  .add-source .steps .form .ant-select-selector input {
    width: auto;
    padding-left: 0;
  }
}

@media only screen and (max-width: 480px) {
  .add-source .tag-inputs {
    width: 180px;
  }
}

.sourceModal {
}

.sourceModal .input label {
  width: 180px;
  display: inline-block;
  color: #000;
}

.sourceModal .input input {
  border: 1px solid #ddd8ec;
  border-radius: 8px;
  margin: 10px 0;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  width: 230px;
  height: 40px;
  padding-left: 10px;
  outline: none;
}

.sourceModal .select-box {
  border: 1px solid #ddd8ec;
  border-radius: 10px;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  width: 230px;
  height: 40px;
  padding-left: 10px;
  outline: none;
  display: flex;
  align-items: center;
}

.sourceModal .select-box .ant-select-selector {
  padding: 0 !important;
  height: 35px !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  align-items: center !important;
}

.sourceModal .input {
  display: flex;
  align-items: center;
}

.sourceModal .input input[disabled] {
  cursor: not-allowed;
}

@media only screen and (max-width: 732px) {
  .sourceModal .input input {
    width: auto;
    flex-grow: 1;
  }

  .sourceModal .input label {
    width: 100px;
    display: inline-block;
    color: #000;
  }
}

.showMessageModal .ant-btn:hover,
.editDeleteModal .ant-btn:hover,
.editSourceModal .ant-btn:hover,
.showFilesModal .ant-btn:hover {
  border-color: #5266ff;
  color: #5266ff;
}

.showMessageModal .ant-btn-primary,
.editDeleteModal .ant-btn-primary,
.editSourceModal .ant-btn-primary,
.showFilesModal .ant-btn-primary {
  background-color: #5266ff;
  border-color: #5266ff;
}

.showMessageModal .ant-btn-primary:hover,
.editDeleteModal .ant-btn-primary:hover,
.editSourceModal .ant-btn-primary:hover,
.showFilesModal .ant-btn-primary:hover {
  background-color: #7b3eb4;
  border-color: #7b3eb4;
  color: #fff;
}

.showFilesModal .fileEntity {
  width: 90px;
  cursor: pointer;
  padding: 5px;
  display: inline-block;
}

.showFilesModal .fileEntity:hover {
  background: #efefef;
}

.shawFilesModal .fileEntity img {
  width: 70px;
  margin: 0 auto;
  display: block;
}

.showFilesModal .fileEntity .name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.settings {
}

.settings .actions {
  justify-content: center;
}

.settings .actions .title {
  margin: 0;
}

.settings .actions h2 {
  margin: 0;
}

.settings .steps {
  display: flex;
  flex-direction: row;
}

.settings .steps .step {
  display: flex;
  flex-direction: column;
  width: 320px;
  padding-top: 1.5rem;
}

.settings .steps .step h2 {
  margin: 0;
  font-size: 1.7rem;
}

.settings .steps .step h1 {
  font-size: 2.5rem;
  color: #45c7f1;
}

.settings .steps .form {
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 0px 10px 70px rgba(72, 199, 240, 0.2);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  margin-left: 6rem;
  width: 100%;
}

.settings .steps .form .input {
  display: flex;
  margin: 1rem 0;
  align-items: center;
}

.settings .steps .form .input label {
  width: 180px;
  color: #000;
}

.settings .steps .form .input input,
.settings .steps .form .input textarea {
  border: 1px solid #ddd8ec;
  border-radius: 10px;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  width: 269px;
  height: 50px;
  padding-left: 10px;
  outline: none;
}

.settings .steps .form .input textarea {
  height: 128px;
}

.settings .add-button {
  margin: 3rem auto;
  width: 150px;
  height: 40px;
  background: #5266ff;
  border-radius: 10px;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #ffffff;
  border: none;
  outline: none;
  align-self: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all;
}

.settings .add-button:hover {
  opacity: 0.8;
}

@media only screen and (max-width: 732px) {
  .settings .steps {
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .settings .steps .step {
    align-items: center;
    flex-direction: row;
    justify-content: center;
  }

  .settings .steps .step h2 {
    order: 2;
  }

  .settings .steps .step h1 {
    margin-bottom: 0;
  }

  .settings .steps .form {
    margin-left: 0;
  }

  .settings .add-button {
    margin-bottom: 2rem;
  }
}

.rules {
  margin-top: 2rem;
}

.commentsTitle {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.commentsMsg {
  margin-bottom: 1rem;
}

.commentsChannel {
  display: flex;
  align-items: center;
}

.commentsChannel img {
  width: 3rem;
  margin: 0 1rem;
  border-radius: 1.5rem;
}

.commentsChannelName {
  width: 220px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.reply-avatar-cell {
  width: 12% !important;
}

.reply-date-cell {
  width: 15% !important;
}

.reply-date-cell.date-info {
  color: #a3a3a3;
  font-size: 13px;
}

.reply-date-cell span {
  color: #000;
  font-size: 13px;
  font-weight: 500;
}

.reply-name-cell {
  width: 15% !important;
}

.reply-message-cell {
  width: 45% !important;
  padding: 0 0.5rem;
  text-overflow: ellipsis;
  overflow: hidden;
  align-items: flex-start;
}

.reply-media-cell {
  width: 5% !important;
}

.disabledIcon {
  pointer-events: none;
  opacity: 0.5;
}

/* --------------------Settings Page ------------------------- */

.settings_container {
  max-width: 839px;
  margin: 0 auto;
  background-color: #ffffff;
  padding-bottom: 38px;
}

.settings_header {
  margin-top: 8px;
  margin-left: 23px;
  margin-bottom: 45px;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.39;
}

.settings_header::after {
  content: '';
  display: block;
  max-width: 776px;
  height: 1px;
  background-color: #cacaca;
  margin-top: 14px;
  margin-left: 8px;
}

.settings_form {
  padding: 34px 0 42px 0;
  max-width: 776px;
  margin: 2rem auto;
  background: #ffffff;
  box-shadow: 0px 0px 50px rgba(0, 56, 255, 0.1);
  border-radius: 15px;
}

.settings_list {
  position: relative;
}

.settings_list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding-left: 0;
}

.settings_item {
  display: flex;
  justify-content: space-between;
}

.settings_item {
  margin-bottom: 50px;
}

.settings_item:nth-child(3),
.settings_item:nth-child(4) {
  margin-bottom: 57px;
}

.settings_item:nth-child(2n-1) {
  flex-basis: 374px;
  padding-left: 35px;
}
.settings_item:nth-child(2n) {
  flex-basis: 401px;
  padding-left: 41px;
  padding-right: 65px;
}

/* .settings_item:nth-child(4)::before {
  content: '';
  top: 64%;
  left: 38px;
  display: block;
  position: absolute;
  width: 700px;
  height: 1px;
  background-color: #cacaca;
} */

.settings_item:nth-child(6)::before {
  content: '';
  top: 93%;
  left: 38px;
  display: block;
  position: absolute;
  width: 700px;
  height: 1px;
  background-color: #cacaca;
}
.settings_form_text {
  margin: 0;
}

.settings_label_wrap {
  width: 110px;
}
.settings_label {
  padding-top: 7px;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.33;
  color: #9f9f9f;
}

.settings_input_holder {
  flex-grow: 1;
  text-align: end;
}

.settings_input {
  box-sizing: border-box;
  width: 100%;
  display: block;
  padding: 7px 10px 8px 9px;
  margin-bottom: 13px;
  background: #ffffff;
  color: #000000;

  border-radius: 5px;
  border: 1px solid #d6d6d6;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.33;
}

.settings_input::placeholder {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.33;
  color: #dfdfdf;
}

.setting_form_button {
  padding: 7px 13px 8px 13px;
  background: #5266ff;
  border: none;
  border-radius: 5px;

  font-weight: 600;
  font-size: 12px;
  line-height: 1.33;
  color: #ffffff;
  cursor: pointer;
}

.settings_form_text {

  font-weight: 400;
  font-size: 12px;
  line-height: 1.33;
  color: #9f9f9f;
}

.settings_email_link {
  text-decoration: none;
  color: #000000;
}
.settings_link {
  text-decoration: none;
  color: #0b23ff;

  font-weight: 600;
  font-size: 12px;
  line-height: 1.33;
}

.input_holder_padding {
  padding-top: 8px;
}

.settings_paragraph {
  margin: 0 38px 0 35px;

  font-weight: 600;
  font-size: 12px;
  line-height: 1.33;
  color: #9f9f9f;
}

.settings_paragraph_link {
  text-decoration: none;
}

@media screen and (max-width: 776px) {
  .settings_container {
    padding: 0 15px 38px 15px;
  }
  .settings_header {
    margin-left: 0;
  }

  .settings_form {
    padding-left: 15px;
    padding-right: 15px;
  }
  .settings_item:nth-child(n) {
    padding-left: 0;
    padding-right: 0;
    flex-basis: 100%;
    margin-bottom: 30px;
  }
  .setting_form_button {
    margin-bottom: 0;
  }
  .settings_item:nth-child(4)::before,
  .settings_item:nth-child(6)::before {
    display: none;
  }
  .settings_label_wrap {
    width: auto;
    max-width: 110px;
    margin-right: 15px;
  }
  .settings_paragraph {
    margin: 0 15px;
  }
}

/* -------------------Registration additional styles ----------- */

.register_language_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.register_language_selector {
  width: 130px;
  height: 30px;
  margin-bottom: 0;
}

.register_language_label,
.register_language_selector {
  font-family: inherit;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}

.ant-tabs-nav {
  padding: 0 2rem !important;
}

.ant-tabs-top > .ant-tabs-nav::before, .ant-tabs-top > div > .ant-tabs-nav::before {
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 92%;
}

.pagintation-placement{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem !important;
}

.error-text{
  color: red;
}

.description-legend{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
}

.overlay-frozen-block{
  background-image: url('../img/frozen-channel.svg');
  background-size: cover;
  width: 38px;
  height: 26px;
}

.overlay-blocked-block{
  background-image: url('../img/exclamation-mark.svg');
  background-size: cover;
  width: 29px;
  height: 29px;
}

.login_header_button{
  transition: background-color 0.3s ease;
  cursor: pointer;
  width: 127px;
  height: 54px;
  border: 1px solid #ffffff;
  cursor: pointer;
  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  outline: none; 
}
.login_header_button:hover{
  background-color: #2BB9F8;
  color: #ffffff;
}

.info_page{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3%;
  min-width: 50%;
}

.restore_success_message {
  display: flex;
  flex-direction: column;
  width: 50%;
  min-height: 300px;
  max-height: 500px;
  background: #ffffff;
  box-shadow: 0px 10px 70px rgba(72, 199, 240, 0.2);
  border-radius: 10px;
  padding: 32px 30px 30px 30px;
}

.restore_button{
  cursor: pointer;  
}
.restore_button button{
  cursor: pointer;  
} 
.restore_button:hover{
  background-color: #2BB9F8;
  color: #ffffff;
}

.pb-10{
  padding-bottom: 2rem;
}