
@font-face {
  font-family: OpenSans-Regular;
  src: url('../fonts/openSans/OpenSans-Regular.ttf'); 
}

.button.invite-selected{
  transition: 1s;
}

.admin-table {
  border-spacing: 1;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.admin-table * {
  position: relative;
}
.admin-table td, .admin-table th {
  padding-left: 8px;
}
.admin-table thead tr {
  height: 34px;
  background: #ffff;
  color: #2d2c2c;
}
.admin-table tbody tr {
  height: 50px;
}
.admin-table tbody tr:last-child {
  border: 0;
}
.admin-table td, .admin-table th {
  text-align: left;
}
.admin-table td.l, .admin-table th.l {
  text-align: right;
}
.admin-table td.c, .admin-table th.c {
  text-align: center;
}
.admin-table td.r, .admin-table th.r {
  text-align: center;
}

tbody tr:nth-child(even) {
  background-color: #f5f5f5;
}

tbody tr {
  font-family: OpenSans-Regular;
  font-size: 15px;
  color: #808080;
  line-height: 1.2;
  font-weight: unset;
}
thead th {
  font-size: 15 !important;
}

tbody tr:hover {
  color: #555555;
  background-color: #f5f5f5;
  cursor: pointer;
}
.textarea-field {
  margin-top: 0px;
  margin-bottom: 10px;
  height: 240px !important;
}

* {
  box-sizing: border-box;
}

.list-group-custom {
  list-style-type: none;
  padding: 0;
  margin: 0;
  height: 200px;
  overflow: auto;
}

.list-group-item-custom {
  border: 1px solid #ddd;
  margin-top: -1px; /* Prevent double borders */
  background-color: #f6f6f6;
  padding: 12px;
}


div.pager {
  text-align: center;
  margin: 1em 0;
}

div.pager span {
  display: inline-block;
  width: 1.8em;
  height: 1.8em;
  line-height: 1.8;
  text-align: center;
  cursor: pointer;
  background: #000;
  color: #fff;
  margin-right: 0.5em;
}

div.pager span.active {
  background: #c00;
}


.container-loading {
  height: 200px;
  width: 100%;
  font-family: Helvetica;
}

.loader {
  height: 20px;
  width: 250px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.loader--dot {
  animation-name: loader;
  animation-timing-function: ease-in-out;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  height: 20px;
  width: 20px;
  border-radius: 100%;
  background-color: black;
  position: absolute;
  border: 2px solid white;
}
/* .loader--dot:first-child {
  background-color: #8cc759;
  animation-delay: 0.5s;
} */
/* .loader--dot:nth-child(2) {
  background-color: #8c6daf;
  animation-delay: 0.4s;
} */
.loader--dot:nth-child(1) {
  background-color: #133453;
  animation-delay: 0.3s;
}
.loader--dot:nth-child(2) {
  background-color: #133453;
  animation-delay: 0.2s;
}
/* .loader--dot:nth-child(5) {
  background-color: #60beeb;
  animation-delay: 0.1s;
} */
.loader--dot:nth-child(3) {
  background-color: #e2aa12;
  animation-delay: 0s;
}
.loader--text {
  position: absolute;
  top: 200%;
  left: 0;
  right: 0;
  width: 2rem;
  margin: auto;
}
.loader--text:after {
  content: "Loading";
  font-weight: bold;
  animation-name: loading-text;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

#current-page-archive {
  width: 100% !important;
  display: inline-block !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  box-sizing: border-box !important;
  height: 0 !important;
  padding: 13px 7px !important;
  margin: 0!important;
}
#page-search-autocomplete-archived{
  width: 100% !important;
  display: inline-block !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  box-sizing: border-box !important;
  padding: 20px !important;
  height: 0 !important;
  margin: 22px 0 !important
}
.next-page-archive {
  position: absolute !important;
  right: 15px !important;
}
.archiveMembership .middle-input-archive{
  position: absolute !important;
  right: 40px !important;
  margin-top:0px !important;
}
.text-center-archive{
  text-align: center !important;
}
.prev-page-archive {
  position: absolute !important;
  right: 118px !important;
}
.right-postion-archive_down{
  position: absolute !important;
  right: 150px !important;
  bottom: 42px !important;
}
@keyframes loader {
  15% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(230px);
  }
  65% {
    transform: translateX(230px);
  }
  95% {
    transform: translateX(0);
  }
}
@keyframes loading-text {
  0% {
    content: "Loading";
  }
  25% {
    content: "Loading.";
  }
  50% {
    content: "Loading..";
  }
  75% {
    content: "Loading...";
  }
}
