
html, body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background: linear-gradient(55deg, #49a09d, #2e2c82);
  /*background: linear-gradient(45deg, #4483a1, #2e2c82);*/
  background-attachment: fixed;
  font-family: sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  }

.accordion {
  box-sizing: border-box;
  background-color: rgba(255,255,255,0.15);
  width: 100%;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.card {
margin: 0;
padding: 0;
}

.card-header {
  box-sizing: border-box;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  background-color: #434881; /*#55608f;*/
  margin: 0;
  padding: 0;
  border: none;
  text-align: left;
  outline: none;
  font-size: 12px;
  font-weight: 800;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: rgba(255,255,255,0.1);
}
.pane {
  position: relative;
  width: 24px;
  height: 24px;
  margin: 0;
  padding: 20px;
}

.toggler {
  position: relative;
  width: 22px;
  margin: 0;
  padding: 20px;
}

.toggler:hover {
  cursor: pointer;
}

.toggler-button {
  position: relative;
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 0;
  border: 1px solid #fff;
  border-radius: 50%;
}
.toggler-button:after {
  content: '\002B';
  position: absolute;
  display: inline-block;;
  font-weight: bold;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}

.active .toggler-button:after {
  content: "\2212";
}

.panel {
  background-color: rgba(255,255,255,0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.panel-content {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: center;
  flex-direction: row;
  column-gap: 0;
  padding: 0;
  /*border-bottom: rgba(84,150,160,0.3) solid 1px;
  border-bottom: rgb(83,143,232, 0.20) solid 1px
  border-bottom: rgba(101, 131, 171, 0.4) solid 1px*/
  border-bottom: rgb(83,143,232, 0.35) solid 1px
}
.date-time {
  width: 33%;
  padding: 15px 15px;
}
.rep-value {
  width: 17%;
}
.by-user {
  width: calc(50% - 62px);
  padding: 15px 15px;
}
.reason {
  position: relative;
  /*padding: 15px 15px;*/
  width: 100%;
  padding: 25px 0 15px 15px;
}
.reason:after {
  content: "Причина:";
  position: absolute;
  top: 5px;
  left: 15px;
  font-size: 13px;
  color: #e2ffa0;

}

.tg-link {
  position: relative;
  width: 100%;
  padding: 25px 0 15px 15px;
}

.tg-link:after {
  content: "Ссылка на сообщение:";
  position: absolute;
  top: 5px;
  left: 15px;
  font-size: 13px;
  color: #e2ffa0;
}
.positive {
  color: #a0ffbe;
  text-shadow: 0px 0px 2px #76e9cf;
}
.negative {
  color: #ff5462;
  text-shadow: 0 0 2px #ff77b6;

  /*color: #ff6a6a;
  text-shadow: 0 0 2px #ffbaba;*/
}

a {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

header {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin: 1.8em 0;
}

footer {
    display: flex;
    height: 60px;
    margin: 10px;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#logo img {
    height: 80px;
}

#text-logo {
    font-weight: 800;
    font-size: 2.5rem;
    color: #cbf0f0;
    margin: 0 10%;
}

#header-container {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 35px 0;
}

#avatar {
    max-width: 30%;
    border-radius: 50%;
}

#main-header {
    margin: 20px 10px;

}

#user-name {
    width: 100%;
    text-align: center;
}

#table-container {
    margin: 10px;
}

#overlay {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: #55608f;
}


/* TRIPLE SPINNER */
.triple-spinner {
  display: block;
  position: absolute;
  top: 40%;
  left: calc(50% - 75px);
  width: 125px;
  height: 125px;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top: 4px solid #FF5722;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  z-index: 12;
}

.triple-spinner::before,
.triple-spinner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 4px solid transparent;
}
.triple-spinner::before {
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-top-color: #FF9800;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3.5s linear infinite;
}
.triple-spinner::after {
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-top-color: #FFC107;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.75s linear infinite;
}
@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  -webkit-from {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  -webkit-to {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


@media only screen and (max-width: 968px) {
  .spinner > div {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333333%;
    flex: 0 0 33.3333333%;
  }
}

@media only screen and (max-width: 768px) {
  .spinner > div {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
  body {
    font-size: 12px;
  }
        #text-logo {
        font-size:1.8rem;
      }
}

@media only screen and (max-width: 568px) {
  .spinner > div {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;

  }
    body {
    font-size: 12px;
  }
        #text-logo {
        font-size:1.5rem;
      }
}