/* Color palette */
/* Font */
/* Text styles */
.ellipsis-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
}

.breakTextWord {
  word-break: break-word;
  word-wrap: break-word;
}

* {
  outline: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@-webkit-keyframes fillToRight {
  to {
    width: 100%;
  }
}
@-moz-keyframes fillToRight {
  to {
    width: 100%;
  }
}
@keyframes fillToRight {
  to {
    width: 100%;
  }
}
.fillRightEffect:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 0;
  width: 0;
  background: rgba(132, 182, 211, 0.5);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}

.fillRightEffect.fillRight-activated:after {
  -webkit-animation: fillToRight 0.7s forwards;
  -moz-animation: fillToRight 0.7s forwards;
  animation: fillToRight 0.7s forwards;
}

.invisible {
  visibility: hidden;
}

.visible {
  visibility: visible;
}

.bad-fill {
  fill: #d16370 !important;
}

.bad-text {
  color: #d16370 !important;
}

.good-fill {
  fill: #62d162 !important;
}

.good-text {
  color: #62d162 !important;
}

.unknown-fill {
  fill: #C4C4C4 !important;
}

.warn-fill {
  fill: #F3CA3E !important;
}

.warn-text {
  color: #F3CA3E !important;
}

/* taken from bootstrap 5 */
.text-decoration-underline {
  text-decoration: underline !important;
}

svg.redFill {
  fill: #d16370 !important;
}
svg.yellowFill {
  fill: #F3CA3E !important;
}
svg.greenFill {
  fill: #62d162 !important;
}
svg.whiteFill {
  fill: #ffffff !important;
}
svg.blueFill {
  fill: #0093e0 !important;
}

.cursor-pointer {
  cursor: pointer;
}

.rotate_45 {
  transform: rotate(45deg);
}

.rotate_90 {
  transform: rotate(90deg);
}

.rotate_135 {
  transform: rotate(135deg);
}

.rotate_180 {
  transform: rotate(180deg);
}

.rotate_225 {
  transform: rotate(225deg);
}

.rotate_270 {
  transform: rotate(270deg);
}

.rotate_315 {
  transform: rotate(315deg);
}

body {
  background-color: #1b2431;
  height: 100vh;
}

.container-fluid {
  height: 100vh;
}

#DFAccountLettering {
  width: 300px;
  height: 25.6px;
}

h2.loginDividerText {
  font-size: 20px;
  font-family: Arial;
  font-weight: normal;
  opacity: 0.8;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff !important;
  text-align: center;
  width: 100%;
  border-bottom: 2px solid #ffffff;
  line-height: 0.1em;
  margin: 10px 0px 20px 0px;
}
h2.loginDividerText span {
  background: #1b2431 !important;
  padding: 0 10px;
}

.loginData {
  font-size: 20px;
  font-family: Arial;
  font-weight: normal;
  opacity: 0.8;
  color: #ffffff;
  background-color: #1b2431 !important;
  border: none;
  border-bottom: 1px solid #979797;
  width: 300px;
  -webkit-text-fill-color: #ffffff !important;
}

@media (min-width: 576px) {
  .loginData, .loginSpacer {
    width: 409px;
  }
}
.errorMsg {
  font-size: 20px;
  font-family: Arial;
  font-weight: normal;
  opacity: 0.8;
  color: red;
  background-color: #1b2431 !important;
  border: none;
  text-align: center;
}

.loginBtn {
  width: 300px;
  height: 41px;
  border-radius: 16px;
  background-color: #0094e1;
  border-color: #0094e1;
  font-family: Arial;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.6px;
  color: #ffffff;
  text-align: center;
}

.resetPwdBtn {
  font-family: Arial;
  font-size: 16px;
  opacity: 0.6;
  background-color: transparent;
  color: #ffffff;
  border: hidden;
}

.privacyPolicyBtn {
  font-family: Arial;
  font-size: 16px;
  opacity: 0.6;
  background-color: transparent;
  color: #ffffff;
  border: hidden;
}

.infoMsg {
  color: #ffffff;
  font-family: Arial;
  font-size: 24px;
  text-align: center;
}

input:-webkit-autofill { /* this is necessary to stop the nasty looking autofill colors */
  -webkit-text-fill-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0 30px #1b2431 inset;
}

.loginSpacer {
  margin: 50px 0px;
  width: 300px;
}

.dot-filled {
  height: 15px;
  width: 15px;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  margin: 0px 5px;
}

.dot-open {
  height: 15px;
  width: 15px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: inline-block;
  margin: 0px 5px;
}

svg {
  fill: #ffffff;
}

svg.icon {
  height: 40px;
  width: 40px;
}

.textDetail {
  font-family: Arial;
  font-size: 16px;
  opacity: 0.8;
  color: #9b9b9b;
}