/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.files-manager .ud-tables {
  font-family: inherit;
  color: #000000;
  border-color: #cccccc;
  border-width: 1px;
  background-color: #ffffff;
}

.files-manager .ud-tables th {
  border: none;
}

.files-manager table th {
  /***
      * Set width of column on all screens at 100px - responsive table from BS4 makes overflow in X axis
      */
  width: 100px !important;
}

.files-manager .link {
  font-weight: bold;
  cursor: pointer;
}

.files-manager th {
  font-weight: normal;
}

.files-manager table {
  table-layout: fixed;
  width: 100%;
}

.files-manager table td {
  width: 20%;
}

.files-manager table td:first-of-type {
  width: 40%;
}

.files-manager table a {
  color: #000000 !important;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.files-manager table a:hover {
  text-decoration: none;
  color: #d83939 !important;
}

.files-manager td.details-control {
  background: url("arrow_forward.png") no-repeat center center;
  cursor: pointer;
}

.files-manager tr.shown td.details-control {
  background: url("arrow_down.png") no-repeat center center;
}

/* Center the loader */
#loader_archive_files_manager_vrkota {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 1009;
  background-color: rgba(136, 136, 136, 0.6);
  overflow: hidden;
  top: 0;
  left: 0;
}

#loader_archive_files_manager_vrkota .loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #d83939;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

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

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

.api_posts_mnisek .mnisek-btn {
  background-color: #d83939;
  border-color: #d83939;
}

.api_posts_mnisek .spinner-border {
  color: #d83939 !important;
}

.api_posts_mnisek .card-api-posts {
  border: none;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  min-height: 530px;
  margin: 1rem 0;
}

.api_posts_mnisek .card-api-posts a {
  color: #000000;
}

.api_posts_mnisek .card-api-posts a:hover {
  color: #000000;
  text-decoration: none;
}

.api_posts_mnisek .card-footer {
  border: none;
}

.api_posts_mnisek img {
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
/*# sourceMappingURL=files-manager-public.css.map */