﻿/*
    ----------------
    Resource Library
    ----------------
*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@800&display=swap");
.rlBanner {
  font-size: 16pt;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  color: white;
  border-radius: 8px;
  background: #337ab7;
  margin-bottom: 10px;
}

.rlGrid {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
}

.rlGrid .rlGrid {
  margin: 0;
}

.rlGrid > * {
  padding-top: 5px;
  padding-right: 15px;
  padding-bottom: 5px;
  flex-grow: 0;
  flex-shrink: 0;
}

.rlGridLabel {
  display: block;
  clear: both;
  height: 20px;
}

.rlCombo {
    height: 30px;
    width: 100%;
    max-width: 300px;
}

.rlButton {
  top: 20px;
  height: 30px;
  margin-left: 8px;
}

.rlTextBox {
  height: 30px;
  width: 100%;
}

.RL_Table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 12px;
}

.RL_Table td, .RL_Table th {
  border: 1px solid #ddd;
  padding: 8px;
}

.RL_Table td > label {
  font-weight: normal !important;
}

.RL_Table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.RL_Table_th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #337ab7;
  color: white;
}

.RL_Table_th_feedback {
  width: 125px;
}

.RL_Table_th_viewed {
  width: 75px;
}

.RL_Table_th_Description {
    width: 20%;
}

.RL_Table_th_Title {
    width: 16%;
}


.rlTitle {
  font-size: 20px;
}

.pagerContainer {
  display: flex;
}

.pagerContainer div {
  background-color: white;
  width: 30px;
  height: 30px;
  border: #777 1px solid;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.pagerContainer .Selected {
  background-color: #337ab7;
  color: white;
}

.pagerContainer div:hover:not(.Selected) {
  background-color: #777;
}

.viewIcon {
  background-color: #337ab7;
  border-radius: 8px;
  padding: 2px;
  color: white;
  text-align: center;
  width: 34px;
}

.sadThumb {
  margin-right: 2px;
  cursor: pointer;
}

.happyThumb {
  margin-right: 2px;
  cursor: pointer;
}

.ThumbUpLabel {
  min-width: 20px;
}

.ThumbdownLabel {
  min-width: 20px;
}

.downloadButton {
  min-width: 110px;
}

.latestPanels {
  display: flex;
  flex-wrap: wrap;
}

.downloadPanel {
  border-radius: 12px;
  padding-right: 10px;
  flex-basis: 33.33%;
}

.downloadPanel ol {
  padding-left: 30px;
}

.downloadPanel li {
  margin-right: 0.2rem;
  margin-bottom: 0.85rem;
}

.downloadPanel li:before {
  /* prefix the list with Note: and */
  float: left;
  /* force the margin to the edge of the row */
  margin-left: -3.3rem;
}

.downloadPanel_title {
  font-size: 12pt;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  color: white;
  border-radius: 8px;
  background: #337ab7;
  margin-bottom: 10px;
}

/*    .downloadPanel a {
    margin-left: 10px;
}*/
/*Top Panel */
.mab {
  position: relative;
  background: #dddddd;
  display: inline-flex;
}

.mab__button {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  color: #333333;
  cursor: pointer;
}

.mab__button:hover {
  background: rgba(0, 0, 0, 0.05);
}

.mab__list {
  position: absolute;
  display: none;
  top: 115%;
  right: 0px;
  padding: 5px 0;
  background: #ffffff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.mab__button--primary {
  width: 86px;
}

.mab__button--menu {
  width: 35px;
}

.mab__button--seconday {
  justify-content: flex-start;
  width: 120px;
}

.mab__list--visible {
  display: initial;
}

.chevron.bottom:before {
  /* top: 0; */
  transform: rotate(135deg);
}

.chevron::before {
  border-style: solid;
  border-width: 0.25em 0.25em 0 0;
  content: "";
  display: inline-block;
  height: 0.45em;
  left: 0.15em;
  position: relative;
  top: 0.15em;
  transform: rotate(-45deg);
  vertical-align: top;
  width: 10px;
  height: 10px;
}

/*
   ----------------
   Cute Alert
   ----------------
*/
.alert-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
  padding: 0px auto;
  left: 0;
  top: 0;
  overflow: hidden;
  position: fixed;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999999;
}

@keyframes open-frame {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.95);
  }
  50% {
    transform: scale(0.97);
  }
  75% {
    transform: scale(0.93);
  }
  100% {
    transform: scale(1);
  }
}
.alert-frame {
  background: #fff;
  min-height: 400px;
  width: 300px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  animation: open-frame 0.3s linear;
}

.alert-header {
  display: flex;
  flex-direction: row;
  height: 175px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.alert-img {
  height: 80px;
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  align-self: center;
}

.alert-close {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Dosis", sans-serif;
  font-weight: 700;
  cursor: pointer;
  line-height: 30px;
}

.alert-close-default {
  color: rgba(0, 0, 0, 0.2);
  font-size: 16px;
  transition: color 0.5s;
  margin-left: auto;
  margin-right: 5px;
  margin-top: 5px;
}

.alert-close-circle {
  background: #e4eae7;
  color: #222;
  border-radius: 17.5px;
  margin-top: -15px;
  margin-right: -15px;
  font-size: 12px;
  transition: background 0.5s;
  margin-left: auto;
}

.alert-close-circle:hover {
  background: #fff;
}

.alert-close:hover {
  color: rgba(0, 0, 0, 0.5);
}

.alert-body {
  padding: 30px 30px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.alert-title {
  font-size: 16px !important;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 35px;
  color: #222;
  align-self: center;
}

.alert-message {
  font-size: 15px !important;
  color: #666;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  margin-bottom: 35px;
  line-height: 1.6;
  align-self: center;
}

.alert-button {
  min-width: 140px;
  height: 35px;
  border-radius: 20px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.5s;
  padding: 0 15px;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.alert-button:focus {
  outline: 0;
}

.question-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.confirm-button {
  min-width: 100px;
  height: 35px;
  border-radius: 20px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.5s;
  padding: 0 15px;
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.confirm-button:focus {
  outline: 0;
}

.cancel-button {
  min-width: 100px;
  height: 35px;
  border-radius: 20px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: white;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 1.6;
  transition: background 0.5s;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cancel-button:focus {
  outline: 0;
}

@keyframes open-toast {
  0% {
    transform: scaleX(1) scaleY(1);
  }
  20%, 45% {
    transform: scaleX(1.35) scaleY(0.1);
  }
  65% {
    transform: scaleX(0.8) scaleY(1.7);
  }
  80% {
    transform: scaleX(0.6) scaleY(0.85);
  }
  100% {
    transform: scaleX(1) scaleY(1);
  }
}
.toast-container {
  display: flex;
  flex-direction: column;
  top: 15px;
  right: 15px;
  position: fixed;
  z-index: 999999;
}

.toast-content {
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  animation: open-toast 0.3s linear;
}

.toast-content + .toast-content {
  margin-top: 10px;
}

.toast-frame {
  padding: 5px 15px;
  display: flex;
  min-width: 100px;
  height: 70px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.toast-body-img {
  height: 40px;
}

.toast-body {
  display: flex;
  align-items: center;
  width: 100%;
}

.toast-body-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.toast-title {
  font-size: 16px !important;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 15px;
  color: #fff;
  margin-left: 15px;
}

.toast-message {
  font-size: 13px !important;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  margin-left: 15px;
}

.toast-close {
  color: rgba(0, 0, 0, 0.2);
  font-family: "Dosis", sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: color 0.5s;
  margin-left: 25px;
}

@keyframes timer {
  0% {
    width: 100%;
  }
  25% {
    width: 75%;
  }
  50% {
    width: 50%;
  }
  75% {
    width: 25%;
  }
  100% {
    width: 1%;
  }
}
.toast-timer {
  width: 1%;
  height: 5px;
}

.toast-close:hover {
  color: rgba(0, 0, 0, 0.5);
}

.error-bg {
  background: #d85261;
}

.success-bg {
  background: #2dd284;
}

.warning-bg {
  background: #fada5e;
}

.question-bg {
  background: #779ecb;
}

.error-btn:hover {
  background: #e5a4b4;
}

.success-btn:hover {
  background: #6edaa4;
}

.warning-btn:hover {
  background: #fcecae;
}

.info-btn:hover {
  background: #c3e6fb;
}

.question-btn:hover {
  background: #bacee4;
}

.error-timer {
  background: #e5a4b4;
}

.success-timer {
  background: #6edaa4;
}

.warning-timer {
  background: #fcecae;
}

.info-timer {
  background: #c3e6fb;
}

.info-bg {
  background: #88cef7;
}

.collapseMoreTextDiv {
    display: inline-block;
    padding-right: 5px;
}

.collapseMoreBottomDiv {
    display: inline-block;
}

.tablehr {
    cursor: pointer;
}

/*.tablehr:hover {
    text-decoration: underline;
}*/

.tablehr_noSort {
    cursor: default;
}

.tablehr_SortSelected {
    text-decoration: underline;
    text-decoration-thickness: 3px;
}