@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.rem-container-fluid,
.rem-container {
  margin-right: auto;
  margin-left: auto;
}

.rem-container-fluid {
  padding-right: 2rem;
  padding-left: 2rem;
}

.rem-row {
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.rem-row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.col.reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.rem-col-xs,
.rem-col-xs-1,
.rem-col-xs-2,
.rem-col-xs-3,
.rem-col-xs-4,
.rem-col-xs-5,
.rem-col-xs-6,
.rem-col-xs-7,
.rem-col-xs-8,
.rem-col-xs-9,
.rem-col-xs-10,
.rem-col-xs-11,
.rem-col-xs-12,
.rem-col-xs-offset-0,
.rem-col-xs-offset-1,
.rem-col-xs-offset-2,
.rem-col-xs-offset-3,
.rem-col-xs-offset-4,
.rem-col-xs-offset-5,
.rem-col-xs-offset-6,
.rem-col-xs-offset-7,
.rem-col-xs-offset-8,
.rem-col-xs-offset-9,
.rem-col-xs-offset-10,
.rem-col-xs-offset-11,
.rem-col-xs-offset-12 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.rem-col-xs {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.rem-col-xs-1 {
  -ms-flex-preferred-size: 8.33333333%;
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

.rem-col-xs-2 {
  -ms-flex-preferred-size: 16.66666667%;
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

.rem-col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.rem-col-xs-4 {
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

.rem-col-xs-5 {
  -ms-flex-preferred-size: 41.66666667%;
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

.rem-col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.rem-col-xs-7 {
  -ms-flex-preferred-size: 58.33333333%;
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

.rem-col-xs-8 {
  -ms-flex-preferred-size: 66.66666667%;
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

.rem-col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.rem-col-xs-10 {
  -ms-flex-preferred-size: 83.33333333%;
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

.rem-col-xs-11 {
  -ms-flex-preferred-size: 91.66666667%;
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

.rem-col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.rem-col-xs-offset-0 {
  margin-left: 0;
}

.rem-col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.rem-col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.rem-col-xs-offset-3 {
  margin-left: 25%;
}

.rem-col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.rem-col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.rem-col-xs-offset-6 {
  margin-left: 50%;
}

.rem-col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.rem-col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.rem-col-xs-offset-9 {
  margin-left: 75%;
}

.rem-col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.rem-col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.start-xs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.middle-xs {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bottom-xs {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.between-xs {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.first-xs {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.last-xs {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

@media only screen and (min-width: 48em) {
  .rem-container {
    width: 49rem;
  }
  .rem-col-sm,
  .rem-col-sm-1,
  .rem-col-sm-2,
  .rem-col-sm-3,
  .rem-col-sm-4,
  .rem-col-sm-5,
  .rem-col-sm-6,
  .rem-col-sm-7,
  .rem-col-sm-8,
  .rem-col-sm-9,
  .rem-col-sm-10,
  .rem-col-sm-11,
  .rem-col-sm-12,
  .rem-col-sm-offset-0,
  .rem-col-sm-offset-1,
  .rem-col-sm-offset-2,
  .rem-col-sm-offset-3,
  .rem-col-sm-offset-4,
  .rem-col-sm-offset-5,
  .rem-col-sm-offset-6,
  .rem-col-sm-offset-7,
  .rem-col-sm-offset-8,
  .rem-col-sm-offset-9,
  .rem-col-sm-offset-10,
  .rem-col-sm-offset-11,
  .rem-col-sm-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .rem-col-sm {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .rem-col-sm-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .rem-col-sm-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .rem-col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .rem-col-sm-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .rem-col-sm-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .rem-col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .rem-col-sm-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .rem-col-sm-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .rem-col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .rem-col-sm-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .rem-col-sm-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .rem-col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .rem-col-sm-offset-0 {
    margin-left: 0;
  }
  .rem-col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .rem-col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .rem-col-sm-offset-3 {
    margin-left: 25%;
  }
  .rem-col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .rem-col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .rem-col-sm-offset-6 {
    margin-left: 50%;
  }
  .rem-col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .rem-col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .rem-col-sm-offset-9 {
    margin-left: 75%;
  }
  .rem-col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .rem-col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-sm {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-sm {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-sm {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-sm {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .middle-sm {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .bottom-sm {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-sm {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .first-sm {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .last-sm {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media only screen and (min-width: 64em) {
  .rem-container {
    width: 65rem;
  }
  .rem-col-md,
  .rem-col-md-1,
  .rem-col-md-2,
  .rem-col-md-3,
  .rem-col-md-4,
  .rem-col-md-5,
  .rem-col-md-6,
  .rem-col-md-7,
  .rem-col-md-8,
  .rem-col-md-9,
  .rem-col-md-10,
  .rem-col-md-11,
  .rem-col-md-12,
  .rem-col-md-offset-0,
  .rem-col-md-offset-1,
  .rem-col-md-offset-2,
  .rem-col-md-offset-3,
  .rem-col-md-offset-4,
  .rem-col-md-offset-5,
  .rem-col-md-offset-6,
  .rem-col-md-offset-7,
  .rem-col-md-offset-8,
  .rem-col-md-offset-9,
  .rem-col-md-offset-10,
  .rem-col-md-offset-11,
  .rem-col-md-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .rem-col-md {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .rem-col-md-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .rem-col-md-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .rem-col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .rem-col-md-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .rem-col-md-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .rem-col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .rem-col-md-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .rem-col-md-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .rem-col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .rem-col-md-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .rem-col-md-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .rem-col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .rem-col-md-offset-0 {
    margin-left: 0;
  }
  .rem-col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .rem-col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .rem-col-md-offset-3 {
    margin-left: 25%;
  }
  .rem-col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .rem-col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .rem-col-md-offset-6 {
    margin-left: 50%;
  }
  .rem-col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .rem-col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .rem-col-md-offset-9 {
    margin-left: 75%;
  }
  .rem-col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .rem-col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-md {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-md {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-md {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-md {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .middle-md {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .bottom-md {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-md {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .first-md {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .last-md {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media only screen and (min-width: 75em) {
  .rem-container {
    width: 76rem;
  }
  .rem-col-lg,
  .rem-col-lg-1,
  .rem-col-lg-2,
  .rem-col-lg-3,
  .rem-col-lg-4,
  .rem-col-lg-5,
  .rem-col-lg-6,
  .rem-col-lg-7,
  .rem-col-lg-8,
  .rem-col-lg-9,
  .rem-col-lg-10,
  .rem-col-lg-11,
  .rem-col-lg-12,
  .rem-col-lg-offset-0,
  .rem-col-lg-offset-1,
  .rem-col-lg-offset-2,
  .rem-col-lg-offset-3,
  .rem-col-lg-offset-4,
  .rem-col-lg-offset-5,
  .rem-col-lg-offset-6,
  .rem-col-lg-offset-7,
  .rem-col-lg-offset-8,
  .rem-col-lg-offset-9,
  .rem-col-lg-offset-10,
  .rem-col-lg-offset-11,
  .rem-col-lg-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .rem-col-lg {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .rem-col-lg-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .rem-col-lg-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .rem-col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .rem-col-lg-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .rem-col-lg-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .rem-col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .rem-col-lg-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .rem-col-lg-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .rem-col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .rem-col-lg-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .rem-col-lg-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .rem-col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .rem-col-lg-offset-0 {
    margin-left: 0;
  }
  .rem-col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .rem-col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .rem-col-lg-offset-3 {
    margin-left: 25%;
  }
  .rem-col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .rem-col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .rem-col-lg-offset-6 {
    margin-left: 50%;
  }
  .rem-col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .rem-col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .rem-col-lg-offset-9 {
    margin-left: 75%;
  }
  .rem-col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .rem-col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-lg {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-lg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-lg {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-lg {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .middle-lg {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .bottom-lg {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-lg {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .first-lg {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .last-lg {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

/* end of grid */
/*--- variables ---*/
/*--- end of variables ---*/
#remository {
  position: relative;
}

/*--- list view ---*/
.rem-list-wrapper {
  position: relative;
}

.rem-folder-desc {
  margin: 1rem 0;
  font-size: 16px;
  color: #666;
}

.remositoryCreateFolder a {
  display: block;
  font-size: 14px;
  padding: 0.5rem 0;
}

.remositoryCreateFolder a img {
  width: 24px;
  height: 24px;
}

.remositoryUpdateFolder,
.remositoryDeleteFolder {
  font-size: 14px;
  margin-right: 0.5rem;
  display: inline-block;
}

.remositoryUpdateFolder a img,
.remositoryDeleteFolder a img {
  display: inline-block !important;
}

.remositoryfileright a {
  font-size: 14px;
  padding: 0.3rem 0.5rem;
  margin: 0.5rem 0;
}

.rem-list-heading-block {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.rem-list-heading-block h2,
.rem-list-heading-block h3 {
  margin: 0 0.5rem;
}

@media only screen and (max-width: 47em) {
  .rem-list-heading-block h2,
  .rem-list-heading-block h3 {
    margin: 1rem 0.5rem;
  }
}

.rem-list-heading-block .rem-header-counter {
  margin: 0 0.5rem;
}

.rem-list-heading-block .rem-top-search {
  padding-right: 0;
}

.rem-list-heading-block .rem-top-search form {
  margin-bottom: 0 !important;
}

.rem-list-heading-block .rem-top-search input[type="text"] {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.3rem 0.5rem 0.3rem 0.5rem !important;
  width: 100%;
  box-sizing: border-box;
  height: 2.2em !important;
  margin-bottom: 0 !important;
}

.rem-list-heading-block .rem-top-search input[type="text"]:placeholder-shown {
  background: url("../images/icon-search.png") no-repeat 3px 50%;
  background-size: 32px 32px;
}

.rem-list-heading-block .rem-order-by {
  margin: 0 0.5rem 0 auto;
  padding-right: 0;
  display: flex;
}

.rem-list-heading-block .rem-order-by select {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.3rem 0.5rem 0.3rem 0.5rem !important;
  width: 100% !important;
  margin-left: 0.5rem;
}

.rem-top-search-dropdown-link button {
  border: none !important;
  padding: 0 !important;
  background: transparent !important;
  width: 30px;
  height: 31px;
  vertical-align: baseline;
  line-height: normal;
}

.rem-top-search-dropdown-link button img {
  width: 4px;
  height: 15px;
}

#rem-top-search-dropdown-menu {
  display: none;
  position: absolute;
  top: 1.5rem;
  right: 0;
}

#rem-top-search-dropdown-menu ul {
  width: 150px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  padding: 0;
  margin: 0;
}

#rem-top-search-dropdown-menu ul li {
  list-style: none;
}

#rem-top-search-dropdown-menu ul li > a {
  display: block;
  border-bottom: 1px solid #ccc;
  padding: 0.3rem;
  font-size: 14px;
  color: #666;
}

#rem-top-search-dropdown-menu ul li > a:hover {
  background-color: #eee;
}

#rem-top-search-dropdown-menu ul li > a img {
  margin-right: 0.3rem;
  display: inline-block;
}

#rem-top-search-dropdown-menu ul li > div {
  padding: 0.3rem;
  font-size: 14px;
}

.subcat-links {
  margin-top: 10px;
  padding-top: 10px;
  display: flex;
  flex-wrap: wrap;
}

.subcat-links > div {
  margin-right: 15px;
  margin-bottom: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 15px;
  border-radius: 4px;
}

.subcat-links > div:hover {
  border-color: rgba(0, 0, 0, 0.3);
}

.subcat-links > div a {
  text-decoration: none;
}

.subcat-links > div img {
  margin-right: 5px;
  width: 24px;
  object-fit: contain;
}

.rem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.rem-grid.rem-folder .rem-folder-card .rem-folder-icon {
  margin: 0.5rem 0;
  float: none;
}

.rem-grid.rem-folder .rem-folder-card .subcat-links > div {
  margin-right: 0;
  width: 100%;
}

.rem-grid .rem-file-card {
  flex-wrap: wrap;
  margin-bottom: 0 !important;
  position: relative;
}

.rem-grid .rem-file-card .rem-file-card-thumbnail .remositorythumbnail {
  overflow: hidden !important;
  width: 40px !important;
  height: 40px !important;
}

.rem-grid .rem-file-card .rem-file-card-thumbnail .remositorythumbnail img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.rem-grid .rem-file-card .rem-file-card-text {
  flex-basis: 100%;
  /* Membuat elemen ketiga mengambil seluruh baris */
}

.rem-grid .add-to-favorite {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  margin-top: 0;
}

#listContainerFolder {
  margin-bottom: 2rem;
}

.rem-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 47em) {
  .rem-toolbar {
    flex-direction: row;
  }
}

.rem-toolbar .page-heading {
  margin-top: 20px;
  margin-left: 0;
  margin-right: auto;
}

@media only screen and (max-width: 47em) {
  .rem-toolbar .page-heading {
    margin: auto;
    margin-top: 10px;
  }
}

.rem-toolbar .page-heading h2 {
  line-height: 100%;
  font-size: 16px;
  text-transform: uppercase;
  color: #112234;
}

.rem-toolbar .top-search {
  width: 100%;
}

.rem-toolbar .top-search form {
  margin: 0;
}

.rem-toolbar .top-search label {
  display: none;
}

.rem-toolbar .top-search input[type="text"] {
  width: 100%;
  padding: .2rem .5rem;
  box-sizing: border-box;
  height: 33px;
  margin: 0;
}

@media only screen and (max-width: 47em) {
  .rem-toolbar .top-search {
    margin: 10px 0 0 0;
    width: 100%;
  }
  .rem-toolbar .top-search form {
    width: 100%;
  }
  .rem-toolbar .top-search label {
    display: none;
  }
}

.switch-container {
  display: flex;
  justify-content: end;
  margin-right: 0;
}

.switch-container label {
  margin-bottom: 0;
}

@media only screen and (max-width: 47em) {
  .switch-container {
    width: auto;
  }
  .switch-container .switch-label {
    display: none;
  }
}

.switch-label {
  color: #555;
  cursor: pointer;
  width: 76px;
  margin-left: 10px;
}

.switch-label img {
  width: 33px;
  height: 33px;
  padding: 8px;
  transition: opacity 0.3s ease-in-out;
  box-sizing: border-box;
}

.switch-label img.active {
  background-color: #fff;
  filter: invert(100%);
}

.switch-input {
  display: none;
}

.rem-folder .rem-folder-card {
  min-height: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 1rem;
  align-self: stretch;
  position: relative;
  box-sizing: border-box;
  margin-bottom: 1rem;
}

.rem-folder .rem-folder-card:hover {
  box-shadow: 0 3px 6px #eee;
  border-color: #999;
}

.rem-folder .rem-folder-card h3 {
  max-width: 89%;
}

.rem-folder .rem-folder-card .rem-folder-icon {
  margin: 0 0.5rem 0 0;
  float: left;
  height: 35px;
  object-fit: contain;
}

.rem-folder .rem-folder-card .rem-folder-card-desc {
  border-left: 2px solid #333;
  padding-left: 1rem;
  margin-top: 1rem;
  margin-left: -1rem;
  color: #666;
}

.rem-folder .rem-folder-card .rem-folder-counter {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #666;
  font-size: 14px;
}

@media only screen and (max-width: 47em) {
  .rem-folder .rem-folder-card .rem-folder-counter {
    background: rgba(255, 255, 255, 0.8);
    padding: 0 0 1px 3px;
    top: 0.5rem;
  }
}

.rem-sub-folder {
  margin: 1em 0 0;
}

.rem-sub-folder .rem-sub-folder-card {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 1rem;
  position: relative;
  box-sizing: border-box;
  display: flex;
  min-height: 100%;
}

.rem-sub-folder .rem-sub-folder-card:hover {
  box-shadow: 0 3px 6px #eee;
  border-color: #999;
}

.rem-sub-folder .rem-sub-folder-card img {
  margin-right: 0.5em;
  width: 30px;
  height: 100%;
}

.rem-sub-folder .rem-sub-folder-card h4 {
  margin: 0;
  padding: 0;
  line-height: 100%;
  text-align: left;
}

.rem-sub-folder .rem-sub-folder-card h4 a {
  font-size: 0.7em;
  line-height: 100%;
  text-align: left;
}

.rem-sub-folder .rem-sub-folder-card span {
  font-size: 0.8em;
  color: rgba(0, 0, 0, 0.5);
  text-align: left;
}

.rem-file .rem-file-card {
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  align-self: stretch;
  display: flex;
  padding: 1rem;
}

.rem-file .rem-file-card:hover {
  box-shadow: 0 3px 6px #eee;
  border-color: #999;
}

.rem-file .rem-file-card .rem-file-card-file-icon {
  margin-right: 1rem;
  min-width: 1.3rem;
  display: flex;
  flex-direction: column;
}

.rem-file .rem-file-card .rem-file-card-text {
  margin-right: 0.5rem;
}

.rem-file .rem-file-card .rem-file-card-text > div {
  font-size: 14px;
}

.rem-file .rem-file-card .rem-file-card-thumbnail {
  margin-left: auto;
  min-width: 1.3rem;
}

.rem-file .rem-file-card .rem-file-card-thumbnail .remositorythumbnail {
  width: 100px;
  height: auto;
  overflow: hidden;
  border-radius: 4px;
}

.rem-file .rem-file-card .rem-file-card-thumbnail img {
  background: #eee;
  border-radius: 4px;
}

.rem-file .rem-file-card .rem-file-card-vote {
  margin-left: 1rem;
  text-align: center;
  min-width: 3rem;
}

.rem-file .rem-file-card .rem-file-card-vote > span {
  font-size: 14px;
  line-height: 100%;
}

.rem-font-sm {
  font-size: 14px;
}

/*--- end of list view ---*/
.rem-single-path {
  margin-bottom: 1rem;
}

/*--- single page view ---*/
.rem-page-wrapper .rem-download-link {
  margin-left: auto;
  padding-right: 0;
}

.rem-page-wrapper .rem-download-link a {
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.rem-page-wrapper .rem-single-meta-block {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.rem-page-wrapper .rem-single-meta-block .rem-single-meta-label {
  display: block;
  color: #666;
}

@media only screen and (max-width: 47em) {
  .rem-page-wrapper .rem-single-meta-block .rem-single-meta-label {
    display: inline;
  }
}

.rem-page-wrapper .rem-single-meta-block .rem-single-meta-value {
  font-weight: 700;
}

.rem-page-wrapper .rem-single-meta-block .rem-single-submiter {
  border-left: 1px solid #ccc;
  text-align: center;
}

.rem-page-wrapper .rem-single-meta-block .rem-single-submiter:first-child {
  border-left: none;
}

@media only screen and (max-width: 47em) {
  .rem-page-wrapper .rem-single-meta-block .rem-single-submiter:first-child {
    border-bottom: 1px solid #ccc;
    padding: 0 0 0.3rem 0;
  }
}

@media only screen and (max-width: 47em) {
  .rem-page-wrapper .rem-single-meta-block .rem-single-submiter {
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 0.3rem 0;
  }
}

@media only screen and (max-width: 47em) {
  .rem-page-wrapper .rem-single-meta-block .rem-single-submiter:last-child {
    border: none;
    padding-bottom: 0;
  }
}

.rem-page-wrapper .rem-single-alert {
  background: #e8e9ff;
  display: flex;
  padding: 0.5rem 0 0.5rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.rem-page-wrapper .rem-single-alert img {
  margin-right: 0.5rem;
  cursor: pointer;
}

.rem-page-wrapper .rem-single-alert span {
  margin: 0 !important;
  padding: 0 !important;
  color: #4c4e7c;
  font-size: 14px;
}

.rem-page-wrapper .rem-single-alert .rem-single-alert-icon-close {
  margin-left: auto;
}

.rem-page-wrapper .rem-single-manage {
  margin-bottom: 1rem;
}

.rem-page-wrapper .rem-single-manage button {
  width: 100%;
  font-size: 14px;
}

.rem-page-wrapper .rem-single-body {
  padding-bottom: 1rem;
}

.rem-page-wrapper .rem-single-body .rem-single-body-desc {
  color: #666;
  padding-bottom: 1rem;
}

.rem-page-wrapper .rem-single-body .rem-single-body-thumbnails {
  margin: 1rem 0;
}

.rem-page-wrapper .rem-single-body .rem-single-body-thumbnails .rem-single-body-thumbnails-label {
  margin: 1rem 0;
  position: relative;
}

.rem-page-wrapper .rem-single-body .rem-single-body-thumbnails .rem-single-body-thumbnails-label small {
  display: flex;
  font-size: 14px;
  color: #999;
  background: white !important;
  z-index: 2;
  padding: 0.3rem 0 0 0;
}

.rem-page-wrapper .rem-single-body .rem-single-body-thumbnails .rem-single-body-thumbnails-label small hr {
  border-top: 1px solid #ccc !important;
  width: 100%;
  margin-left: 0.5rem;
  opacity: 1 !important;
}

.rem-page-wrapper .rem-single-body .rem-single-body-thumbnails img {
  border-radius: 4px;
  margin-right: 0.3rem;
}

.rem-page-wrapper .rem-single-body .rem-single-body-vote {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.rem-page-wrapper .rem-single-body .rem-single-body-vote:hover {
  box-shadow: 0 3px 6px #eee;
  border-color: #999;
}

.rem-page-wrapper .rem-single-body .rem-single-body-vote .rem-rating-line {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #ccc;
  padding: 0 0 0.5rem 0;
  margin: 0 0.5rem 1rem 0.5rem;
  justify-content: stretch;
}

.rem-page-wrapper .rem-single-body .rem-single-body-vote .rem-rating-line span {
  align-self: stretch;
  width: 100%;
}

.rem-page-wrapper .rem-single-body .rem-single-body-vote .rem-rating-line span img {
  display: inline-block;
}

.rem-page-wrapper .rem-single-body .rem-single-body-vote .rem-rating-line span:last-child {
  text-align: right;
}

.rem-page-wrapper .rem-single-body .rem-single-body-vote .rem-single-body-vote-form form {
  display: flex;
  justify-content: stretch;
  padding-bottom: 1rem;
}

.rem-page-wrapper .rem-single-body .rem-single-body-vote .rem-single-body-vote-form form select {
  align-self: stretch;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.3rem 0.5rem 0.3rem 0.5rem !important;
  width: 100%;
}

.rem-page-wrapper .rem-single-body .rem-single-body-vote .rem-single-body-vote-form form button {
  align-self: stretch;
  margin-left: 1rem;
  font-weight: 700;
  width: 100%;
}

.rem-page-wrapper .rem-single-body .rem-single-body-vote .rem-single-body-vote-msg {
  text-align: center;
  font-size: 14px;
  color: #666;
}

.rem-page-wrapper .rem-single-comment {
  border-top: 1px solid #ccc;
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}

.rem-page-wrapper .rem-single-comment .rem-single-comment-alert {
  font-size: 14px;
  color: #666;
  margin-bottom: 0.5rem;
}

.rem-page-wrapper .rem-single-comment .rem-single-comment-button button {
  width: 100%;
  margin-bottom: 0.5rem;
}

.rem-page-wrapper .rem-single-comment .rem-single-comment-subscribe {
  font-size: 14px;
  color: #666;
}

.remositorythumbset > div {
  display: inline-block;
  height: 100px;
  width: 100px;
  overflow: hidden;
  margin-right: 0.5rem;
  border-radius: 4px;
}

/*--- end of single page view ---*/
/*--- upload view ---*/
.rem-upload-wrapper .rem-upload-header {
  margin-bottom: 1rem;
}

.rem-upload-wrapper .rem-upload-header h2 {
  margin-bottom: 0 !important;
}

.rem-upload-wrapper .rem-upload-header .rem-upload-multiple-link {
  text-align: right;
}

.rem-upload-wrapper .rem-hidden {
  display: none;
}

.rem-upload-wrapper .rem-upload-drag-drop {
  margin-bottom: 1rem;
}

.rem-upload-wrapper .rem-upload-drag-drop .rem-box {
  position: relative;
  width: 100%;
}

.rem-upload-wrapper .rem-upload-drag-drop .rem-dropzone-wrapper {
  border: 2px dashed #c3c5fe;
  color: #666;
  position: relative;
  height: 200px;
  background: #f8f8ff;
  border-radius: 6px;
}

.rem-upload-wrapper .rem-upload-drag-drop .rem-dropzone-desc {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  text-align: center;
  width: 80%;
  top: 80px;
  font-size: 16px;
}

.rem-upload-wrapper .rem-upload-drag-drop .rem-dropzone-desc img {
  margin: 0 auto;
}

.rem-upload-wrapper .rem-upload-drag-drop .is_remote {
  top: 50px !important;
}

.rem-upload-wrapper .rem-upload-drag-drop .rem-dropzone,
.rem-upload-wrapper .rem-upload-drag-drop .rem-dropzone:focus {
  position: absolute;
  outline: none !important;
  width: 100%;
  height: 200px;
  cursor: pointer;
  opacity: 0;
}

.rem-upload-wrapper .rem-upload-drag-drop .rem-dropzone-wrapper:hover,
.rem-upload-wrapper .rem-upload-drag-drop .rem-dropzone-wrapper.dragover {
  background: #ecf0f5;
}

.rem-upload-wrapper .rem-upload-drag-drop .rem-preview-zone {
  position: absolute;
  text-align: center;
  font-size: 16px;
  z-index: 99;
  width: 100%;
  padding-top: 70px;
}

.rem-upload-wrapper .rem-upload-drag-drop .rem-upload-ext-btn {
  position: absolute;
  z-index: 99;
  top: 95px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.rem-upload-wrapper .rem-upload-drag-drop .rem-upload-ext-btn a {
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  color: #fff;
  display: inline-block;
}

.rem-upload-wrapper .rem-upload-drag-drop .rem-remove-preview {
  border: none;
  background: transparent;
  font-size: 14px;
  border: 1px solid #ccc;
  margin-left: 0.5rem;
  border-radius: 4px;
  padding: 0.3rem 0.5rem;
  cursor: pointer;
}

.rem-upload-wrapper .rem-upload-drag-drop .rem-remove-preview:hover {
  border-color: #666;
}

.rem-upload-wrapper #resetbutton {
  display: none;
  width: 100%;
  margin-bottom: 1rem;
  font-size: 14px;
  padding: 0.3rem 0 !important;
}

.rem-upload-wrapper .notempty {
  display: block !important;
}

.rem-upload-wrapper .rem-multiple-files-wrp {
  margin-bottom: 1rem;
}

.rem-upload-wrapper #rem-multiple-files .rem-upload-multiple {
  margin: 0.3rem 0;
  background-color: #eee;
  border-radius: 4px;
}

.rem-upload-wrapper #rem-multiple-files .rem-upload-multiple .filename {
  font-size: 14px;
  font-weight: 700;
}

@media only screen and (max-width: 47em) {
  .rem-upload-wrapper #rem-multiple-files .rem-upload-multiple .filename {
    padding: 0.5rem 0 0 0;
  }
}

.rem-upload-wrapper #rem-multiple-files .rem-upload-multiple .file-title {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.3rem !important;
  margin: 0.3rem 0;
  font-size: 14px;
}

.rem-upload-wrapper #rem-multiple-files .rem-upload-multiple .remove {
  width: 100%;
  font-size: 14px;
  margin: 0.3rem 0;
  padding: 0.3rem 1rem;
}

@media only screen and (max-width: 47em) {
  .rem-upload-wrapper #rem-multiple-files .rem-upload-multiple .remove {
    margin: 0.3rem 0 0.5rem 0;
  }
}

.rem-upload-wrapper #selectmultiple {
  display: none;
}

.rem-upload-wrapper #clickarea {
  border: 2px dashed #c3c5fe;
  color: #666;
  position: relative;
  height: 200px;
  background: #f8f8ff;
  border-radius: 6px;
  width: 100%;
}

.rem-upload-wrapper .rem-upload-label {
  display: block;
  margin-bottom: 0.5rem;
}

.rem-upload-wrapper .rem-upload-label span {
  font-weight: 700;
  cursor: pointer;
  color: blue;
}

.rem-upload-wrapper .rem-upload-select-container {
  margin-bottom: 1rem;
}

.rem-upload-wrapper .rem-upload-select-container select {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.5rem !important;
  width: 100% !important;
  box-sizing: border-box;
  min-height: 2.2rem;
}

.rem-upload-wrapper .rem-upload-textarea {
  margin-bottom: 1rem;
}

.rem-upload-wrapper .rem-upload-textarea textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.5rem !important;
  box-sizing: border-box;
}

.rem-upload-wrapper .rem-upload-fields {
  margin-bottom: 1rem;
}

.rem-upload-wrapper .rem-upload-fields input {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.5rem !important;
  box-sizing: border-box;
  min-height: 2.2rem;
}

.rem-upload-wrapper .rem-upload-thumbnails {
  margin-bottom: 1rem;
  /* Style on hover */
  /* Hide the file input */
  /* Text container */
  /* Hide the text if there is at least one uploaded image */
  /* Uploaded images container */
  /* Delete image button */
}

.rem-upload-wrapper .rem-upload-thumbnails .image-uploader {
  min-height: 10rem;
  border: 2px dashed #c3c5fe;
  color: #666;
  position: relative;
  background: #f8f8ff;
  border-radius: 6px;
  cursor: pointer;
}

.rem-upload-wrapper .rem-upload-thumbnails .image-uploader:hover {
  background-color: #ecf0f5;
}

.rem-upload-wrapper .rem-upload-thumbnails .image-uploader.drag-over {
  background-color: #ecf0f5;
}

.rem-upload-wrapper .rem-upload-thumbnails .image-uploader input[type="file"] {
  width: 0;
  height: 0;
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.rem-upload-wrapper .rem-upload-thumbnails .image-uploader .upload-text {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.rem-upload-wrapper .rem-upload-thumbnails .image-uploader .upload-text i {
  display: block;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.rem-upload-wrapper .rem-upload-thumbnails .image-uploader .upload-text span {
  display: block;
}

.rem-upload-wrapper .rem-upload-thumbnails .image-uploader.has-files .upload-text {
  display: none;
}

.rem-upload-wrapper .rem-upload-thumbnails .image-uploader .uploaded {
  padding: 0.5rem;
  line-height: 0;
}

.rem-upload-wrapper .rem-upload-thumbnails .image-uploader .uploaded .uploaded-image {
  display: inline-block;
  width: calc(16.6666667% - 1rem);
  padding-bottom: calc(16.6666667% - 1rem);
  height: 0;
  position: relative;
  margin: 0.5rem;
  background: #f3f3f3;
  cursor: default;
}

.rem-upload-wrapper .rem-upload-thumbnails .image-uploader .uploaded .uploaded-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.rem-upload-wrapper .rem-upload-thumbnails .image-uploader .uploaded .uploaded-image .delete-image {
  display: none;
  cursor: pointer;
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  border-radius: 50%;
  padding: 0.3rem;
  width: 20px;
  height: 20px;
  background: url(../images/icon-close.png) no-repeat center #fff;
  -webkit-appearance: none;
  border: none;
  background-size: 16px 16px;
}

.rem-upload-wrapper .rem-upload-thumbnails .image-uploader .uploaded .uploaded-image:hover .delete-image {
  display: block;
}

.rem-upload-wrapper .rem-upload-thumbnails .image-uploader .uploaded .uploaded-image .delete-image i {
  color: #fff;
  font-size: 1.4rem;
}

.rem-upload-wrapper .rem-upload-icons {
  margin-bottom: 1rem;
}

.rem-upload-wrapper .rem-upload-icons input {
  display: none;
}

.rem-upload-wrapper .rem-upload-icons label {
  cursor: pointer;
  padding: 0.5rem;
  border: 1px solid #fff;
  display: inline-block !important;
}

.rem-upload-wrapper .rem-upload-icons input:checked + label {
  border: 1px solid #c3c5fe;
  border-radius: 4px;
  background: #f8f8ff;
}

.rem-upload-wrapper .rem-upload-submit {
  margin-bottom: 1rem;
}

.rem-upload-wrapper .rem-upload-submit button {
  width: 100%;
  text-align: center;
}

/*--- end of upload view ---*/
/*-- pagination -- */
.remositorypagecontrols .pagination {
  margin: 0 0 1rem 0;
}

.remositorypagecontrols.pagination {
  margin-left: 0;
}

/*--- end of pagination ---*/
/*--- Comments ---*/
#r-comments {
  clear: both;
  padding: 1rem 0 0;
  font-family: Arial, FreeSans, sans-serif;
}

#r-comments a {
  outline: none;
  color: #ff6a00;
}

#r-comments a:hover,
#r-comments a:focus {
  text-decoration: none;
  color: #d10000;
}

#r-comments .rm-comment-modal {
  position: fixed;
  visibility: hidden;
  text-align: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: block;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: transparent;
  -webkit-transition: background 0.5s ease-out;
  -moz-transition: background 0.5s ease-out;
  -o-transition: background 0.5s ease-out;
  transition: background 0.5s ease-out;
  z-index: -1000;
}

#r-comments .rm-comment-modal.show {
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: visible;
  z-index: 10000;
}

#r-comments .rm-comment-modal .rm-modal-dialog {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: auto;
  min-width: 320px;
  text-align: left;
  box-sizing: border-box;
  background: #fff;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-out;
  -moz-transition: opacity 0.5s ease-out;
  -o-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
  transform: translate(-50%, -50%);
  padding: 0.5rem 1rem;
  border-radius: 3px;
  box-sizing: border-box;
}

#r-comments .rm-comment-modal.show .rm-modal-dialog {
  opacity: 1;
}

#r-comments-wrapper .comment {
  display: flex !important;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #ccc;
}

#r-comments-wrapper .comment-avatar {
  min-width: 62px;
}

#r-comments-wrapper .comment .comment-avatar img {
  margin: 0 1rem 0 0;
  width: 48px;
  height: 48px;
  border-radius: 50% !important;
}

#r-comments-wrapper .comment .comment-details .comment-info {
  font-size: 14px;
  color: #333;
}

#r-comments-wrapper .comment .comment-details .comment-text {
  font-size: 16px;
  color: #333333;
  letter-spacing: 0;
  line-height: 20px;
}

#r-comments-wrapper .comment .comment-details .comment-author-name,
#r-comments-wrapper .comment .comment-details .time_since {
  padding-right: 8px;
}

.comment .comment-details .time_since {
  color: #92a29e;
}

#r-comments .comments-counter {
  font-size: 16px;
  text-align: left;
  color: #999;
  width: 100%;
}

@media only screen and (max-width: 47em) {
  #r-comments .comments-counter {
    text-align: center;
  }
}

#r-comments .comments-counter.guest {
  float: none;
  margin-bottom: 20px;
}

#r-comments .comments-counter span {
  color: #92a29e;
}

#r-comments .write-new-comment a,
#r-comments .rm-modal-footer .btn,
#r-comments .rm-comments-button {
  border: 0px;
  padding: 1rem 1rem;
  width: 100%;
  font-size: 15px;
  color: #fff;
  background: #333;
  border-radius: 3px;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  line-height: 100%;
  margin-bottom: 0.5rem;
  box-sizing: border-box;
}

#r-comments .rm-modal-footer .btn {
  margin: 0;
  clear: both;
  float: right;
}

#r-comments .write-new-comment a:hover,
#r-comments .write-new-comment a:focus,
#r-comments .rm-modal-footer .btn:hover,
#r-comments .rm-modal-footer .btn:focus,
#r-comments .rm-comments-button:focus {
  background: #555;
  text-decoration: none;
}

#r-comments .notifycomments {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 14px;
  padding-bottom: 0.5rem;
}

@media only screen and (max-width: 47em) {
  #r-comments .notifycomments {
    text-align: center;
  }
}

#r-comments .rm-comment-modal .notifycomments {
  margin: 8px 0px 10px;
  display: flex;
  align-items: center;
  float: none;
}

#r-comments .write-new-comment {
  clear: both;
}

#r-comments .slidebox {
  position: relative;
  width: 35px;
  margin: 0 0.5rem;
}

#r-comments .slidebox input {
  visibility: hidden;
}

#r-comments .slidebox label {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 18px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

#r-comments .slidebox label::after {
  position: absolute;
  content: "";
  top: 1px;
  left: 3px;
  width: 14px;
  height: 14px;
  background-image: linear-gradient(-180deg, #92a29e 0, #92a29e 100%);
  border-radius: 8px;
  transition: all 0.15s ease;
}

#r-comments .slidebox input[type="checkbox"]:checked + label::after {
  left: 15px;
  background-image: linear-gradient(-180deg, #fff 0, #fff 100%);
}

#r-comments .slidebox input[type="checkbox"]:checked + label {
  background: #ff6a00;
  border: 1px solid #ff6a00;
}

#r-comments .rm-modal-header {
  border: none;
  padding: 0;
}

#r-comments .stop-notify {
  display: none;
}

#r-comments .stop-notify,
#r-comments .start-notify {
  font-size: 14px;
  color: #666;
}

#r-comments .rm-modal-header .modal-title {
  margin: 0;
  padding: 0 0 1rem;
  font-size: 16px;
  font-weight: bold;
  color: #333333;
}

#r-comments .rm-modal-header .close {
  font-size: 16px;
  opacity: 1;
  color: #333;
  font-weight: normal;
  padding: 0;
}

#r-comments .rm-modal-header .close:hover,
#r-comments .rm-modal-header .close:focus {
  color: #d10000;
}

#r-comments .rm-modal-body {
  width: auto;
  max-height: unset;
  padding: 0;
  display: flex;
  flex-direction: column;
}

#r-comments .rm-modal-footer {
  padding: 0;
  background: none;
  border: none;
}

#r-comments .rm-comment-modal textarea {
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 3px;
  font-size: 16px;
  color: #333333;
  width: 100%;
  margin: 0 0 8px;
  padding: 1rem;
  box-sizing: border-box;
  max-width: 100%;
  min-width: 100%;
}

#r-comments .rm-comment-modal textarea:focus {
  border: 1px solid #92a29e;
}

#r-comments #fileToUpload {
  display: none;
}

#r-comments .attach {
  font-size: 14px;
  display: flex;
  align-items: center;
  margin-top: 0.3rem;
}

#r-comments .attach label {
  display: flex !important;
  align-items: center;
  padding-right: 0.3rem;
  color: #ff6a00;
  cursor: pointer;
}

#r-comments .attach label:hover,
#r-comments .attach label:focus {
  color: #d10000;
}

#r-comments .attach .a-plus {
  font-size: 16px;
  position: relative;
  margin-right: 0.3rem;
}

#r-comments .attach .optional {
  color: #92a29e;
}

#r-comments-wrapper .comment-attachment a {
  border: 1px solid #dddddd;
  display: inline-block;
  margin-top: 0.5rem;
  line-height: 0;
}

#r-comments-wrapper .comment-attachment img {
  margin: 0;
  padding: 0;
  border-radius: 4px;
  margin-top: 0.3rem;
}

#r-comments-wrapper .comment-attachment a:hover,
#r-comments-wrapper .comment-attachment a:focus {
  box-shadow: 0 2px 3px 0 rgba(146, 162, 158, 0.5);
}

#r-comments #ImgModal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.9);
  max-width: unset;
  padding: 50px 0 0;
  box-sizing: border-box;
  border: none;
  border-radius: 0;
  cursor: pointer;
}

#r-comments #ImgModal .rm-modal-content {
  margin: auto auto 1rem;
  display: block;
  width: 90%;
  max-width: 90%;
  animation-name: zoom;
  animation-duration: 0.6s;
}

#r-comments #ImgModal .rm-modal-content img {
  margin: 0 auto;
  padding: 0;
  display: block;
  float: none;
}

#r-comments #ImgModal .btn-close,
#r-comments #ImgModal .close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s;
}

#r-comments #comment-modal .btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: black;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='black'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
  position: absolute;
  right: 10px;
  top: 10px;
}

#r-comments #ImgModal.close:hover,
#r-comments #ImgModal.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

#r-comments .delete-filename-attached {
  display: none;
  font-size: 16px;
  top: 2px;
  position: relative;
  left: 5px;
  color: #d10000;
  cursor: pointer;
}

.delete-confirm {
  display: none;
}

.delete-confirm .delete-confirm-yes,
.delete-confirm .delete-confirm-no {
  cursor: pointer;
  color: #ff6a00;
}

.delete-confirm .delete-confirm-yes:hover,
.delete-confirm .delete-confirm-yes:focus,
.delete-confirm .delete-confirm-no:hover,
.delete-confirm .delete-confirm-no:focus {
  text-decoration: underline;
}

.modal-backdrop,
.modal-backdrop.fade.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

/*--- end of Comments ---*/
/*--- error message ---*/
.rem-message {
  color: #666;
  position: relative;
  height: 200px;
  background: #eee;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.rem-message .rem-message-body {
  text-align: center;
}

.rem-message .rem-message-body img {
  margin-bottom: 0.5rem;
}

.rem-message .rem-message-body h3 {
  color: #333;
}

/*--- end of error message ---*/
/*--- search page ---*/
.rem-search {
  border: 1px solid #ddd;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  border-radius: 4px;
  position: relative;
  font-size: 14px;
  margin-bottom: 1rem;
}

.rem-search .search-input {
  width: 100%;
  outline: none;
  border: none;
  box-shadow: none !important;
  border-color: transparent !important;
}

.rem-search .search-input:placeholder-shown {
  background: url("../images/icon-search.png") no-repeat -5px 30%;
  background-size: 32px 32px;
}

.rem-search:focus-within {
  border-color: #666;
}

.rem-search .typecheckbox {
  text-align: right;
}

.rem-search .typecheckbox input {
  display: none !important;
}

.rem-search .typecheckbox label {
  display: inline-block;
  border: 1px solid #ccc;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  padding: 0.15rem 0.5rem;
}

.rem-search .typecheckbox > input:checked + label {
  background-color: #438af4;
  border: 1px solid #438af4;
  color: #fff;
}

.rem-search .typecheckbox .check-counter {
  background: #089f44;
  color: #fff;
  border-radius: 20px;
  font-size: 13px;
  padding: 0.3rem 0.5rem;
}

#rem-search-dropdown-checkbox {
  display: none;
  position: absolute;
  top: 2.5rem;
  right: 0;
  border: 1px solid #ccc;
  font-size: 13px;
  background-color: #fff;
  border-radius: 4px;
  width: 150px;
  max-height: 200px;
  overflow: auto;
  z-index: 999;
}

#rem-search-dropdown-checkbox ul {
  margin: 0 !important;
  padding: 0 !important;
}

#rem-search-dropdown-checkbox ul li {
  list-style: none;
  border-bottom: 1px solid #ccc;
  padding: 0.3rem;
}

#rem-search-dropdown-checkbox ul li:last-child {
  border-bottom: none;
}

/*--- end of search page ---*/
/*-- diagnostics --*/
.rem-message-diagnostic {
  border: 1px solid #ccc;
  padding: 1rem;
  font-size: 14px;
}

.rem-message-diagnostic p {
  font-weight: 700;
  background: #eee;
  margin: -1rem;
  padding: 1rem;
  font-size: 16px;
}

.rem-message-diagnostic-table {
  padding: 0 !important;
  border: 1px solid #ccc !important;
  font-size: 14px !important;
}

.rem-message-diagnostic-table tr {
  border-bottom: 1px solid #ccc;
}

.rem-message-diagnostic-table tr td {
  padding: 0.5rem !important;
}

.rem-message-diagnostic-table tr td:first-child {
  background: #eee !important;
}

.rem-message-diagnostic-table tr td.instructions {
  background: #fff !important;
  padding: 1rem !important;
  font-size: 13px !important;
}

.rem-message-diagnostic-table tr td.instructions p {
  font-size: 14px !important;
  font-weight: 700;
}

/*--- layout: icon picker ---*/
.rem-upload-icons {
  position: relative;
}

.showpicker {
  display: block !important;
}

.hidepicker {
  display: none !important;
}

.rem-icon-preview {
  margin: 0.5rem 0;
  position: relative;
  display: block;
  width: 58px;
}

.rem-icon-preview .rem-icon-preview-img {
  width: 50px;
  height: auto;
  display: inline-block;
  border: none;
}

.rem-icon-preview #rem-icon-change-image {
  cursor: pointer;
}

.rem-icon-preview #rem-icon-change-image .rem-edit-icon {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 70%;
  background: #fff;
  text-align: center;
  line-height: 19px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.rem-icon-preview #rem-icon-change-image .rem-edit-icon img {
  margin: 0;
  width: 10px;
  height: auto;
}

#rem-icon-modal {
  position: absolute;
  bottom: 70px;
  left: 0;
  display: block;
  width: 300px;
  max-width: 100%;
  height: 340px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  padding: 1rem;
  box-sizing: border-box;
  border-radius: 8px;
}

#rem-icon-modal #rem-icon-search-box {
  display: block;
  width: 100%;
  padding: 5px;
  border-radius: 4px;
  margin-bottom: 0.3rem;
  border: 1px solid #ccc;
  height: 34px;
  box-sizing: border-box;
}

#rem-icon-modal #rem-icon-search-box:placeholder-shown {
  background: url("../../../../media/com_remository/images/app_icons/icon-search.png") no-repeat;
  background-size: contain;
}

#rem-icon-modal ul {
  list-style: none;
  margin: 0.5rem -10px 0 0;
  padding: 0 10px 0 0;
  overflow: auto;
  height: 265px;
}

#rem-icon-modal ul li {
  cursor: pointer;
  display: inline;
}

#rem-icon-modal ul li img {
  width: 45px;
  height: auto;
  margin: 0.3rem 0.3rem 0.3rem 0;
}

#rem-icon-modal ul li:first-child img {
  border: 2px solid #007acc;
  border-radius: 8px;
  background-color: #007acc;
}

#rem-icon-modal #rem-dismiss-button {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fff;
  text-align: center;
  line-height: 19px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

#rem-icon-modal #rem-dismiss-button img {
  margin: 0;
  width: 10px;
  height: auto;
}

/*--- end of layout: icon picker ---*/
/*--- add to favorite css --*/
.add-to-favorite {
  cursor: pointer;
  height: 26px;
  width: 26px;
  top: 0;
  background: url(../images/icon-favorite.png) no-repeat center;
  background-size: cover;
  transition: transform 0.2s;
  margin-top: 0.3rem;
  line-height: 26px;
  font-size: 12px;
}

.add-to-favorite.active {
  background-image: url(../images/icon-favorite-active.png);
  animation: zoom 0.2s;
  transition: transform 0.2s;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
}

.grid-container div {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.8);
  padding: 20px;
  font-size: 30px;
  text-align: center;
}
