/*Loader image*/
.slds-scope .slds-backdrop_open {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.4s linear;
}
.slds-scope .slds-backdrop {
  transition-duration: 0.4s;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--slds-g-color-neutral-10-opacity-50, rgba(255, 255, 255, 1));
  z-index: 9000;
}
.sninner-msg {
  color: var(--v-1-gray-100, #666d70);

  /* V.1/P1 S */
  font-family: Karbon;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 22px; /* 122.222% */
}

/**
 * Strengthify - show the weakness of a password (uses zxcvbn for this)
 * https://github.com/MorrisJobke/strengthify
 * Version: 0.5.9
 * License: The MIT License (MIT)
 * Copyright (c) 2013-2020 Morris Jobke <morris.jobke@gmail.com>
 */

.strengthify-wrapper {
  position: relative;
}

.strengthify-wrapper > * {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.strengthify-bg,
.strengthify-container,
.strengthify-separator {
  height: 3px;
}

.strengthify-bg,
.strengthify-container {
  display: block;
  position: absolute;
  width: 100%;
}

.strengthify-bg {
  background-color: var(--additional-red, #e74040);
}

.strengthify-separator {
  display: inline-block;
  position: absolute;
  background-color: #fff;
  width: 1px;
  z-index: 10;
}

.password-bad {
  background-color: #c33;
}
.password-medium {
  background-color: #f80;
}
.password-good {
  background-color: #3c3;
}

.password-red {
  border-radius: 50px;
  background: var(--additional-red, #e74040);
}

.password-green {
  border-radius: 50px;
  background: #00ccc0;
}

div[data-strengthifyMessage] {
  padding: 3px 8px;
}

.strengthify-tiles {
  float: right;
}

.pswd_info {
  list-style: none;
  margin: 5px 0px;
  padding: 0;
}
.pswd_info .invalid {
  padding-left: 20px;
  background: url(./img/invalid.svg) no-repeat 0 50%;
  color: #e64040;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.pswd_info .valid {
  padding-left: 20px;
  background: url(./img/valid.svg) no-repeat 0 50%;
  color: #00b0ab;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}
/* This container is where font color, size, and padding of the scroll box can be adjusted */
.scrolling-container {
  display: flex;
  padding-left: 14rem;
  padding-top: 3rem;
  color: #666d70;
}
.spinner-wrapper {
  display: flex;
  align-items: center;
}
.scrolling-box {
  height: 3rem;
  margin: auto;
  overflow: hidden;
  position: absolute;
  top: 120px;
  left: 150px;
  min-width: 400px;
}
.scrolling-box {
  @media (max-width: 767px) {
    top: 50px;
    left: 80px;
  }
}

.scrolling-box ul {
  margin: 0 0 0 0px;
  padding: 0;
  animation: scrollUp 30s infinite;
  font-weight: 800;
}

.scrolling-box ul li {
  display: flex;
  align-items: center;
  height: 3rem;
  color: #666d70;
  list-style: none;
  font-family: Karbon-bold;
  font-size: 18px;
  font-style: normal;
}
@media (max-width: 767px) {
  .scrolling-box ul li {
    font-size: 14px;
    max-width: 220px;
  }
}

/* If additional items are added to the scroll list, these keyframes will need to be recalculated and updated. */
@keyframes scrollUp {
  6.667%,
  16.667% {
    transform: translateY(-14.2857142857%);
  }

  23.334%,
  33.334% {
    transform: translateY(-28.5714285714%);
  }

  40%,
  50% {
    transform: translateY(-42.8571428571%);
  }

  56.668%,
  66.668% {
    transform: translateY(-57.1428571429%);
  }

  73.335%,
  83.335% {
    transform: translateY(-71.4285714286%);
  }

  90%,
  100% {
    transform: translateY(-85.7142857143%);
  }
}
.slds-backdrop .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  @media (max-width: 767px) {
    transform: translate(-30%, 0%);
    top: 20%;
    left: 30%;
  }
}
.slds-backdrop .spinner-wrapper img {
  width: 341px;
  height: 194px;
  /* position: absolute; */
}
@media (max-width: 767px) {
  .slds-backdrop .spinner-wrapper img {
    width: 150px;
    height: auto;
  }
}
@media (max-width: 767px) {
  .slds-backdrop .spinner-wrapper {
    width: 90%;
  }
}
.slds-backdrop .scrolling-container {
  overflow: hidden;
  left: -65px;
  position: relative;
  height: 100px;
  top: 17px;
}
@media (max-width: 767px) {
  .slds-backdrop .scrolling-container {
    left: -66px;
    height: 67px;
    top: 14px;
    width: 172px;
    padding: 0 0;
    margin: 0 0;
  }
}
.slds-backdrop .scrolling-container .scrolling-box {
  position: relative;
  animation: marquee 6s linear infinite;
  text-align: center;
  font-family: Karbon-bold;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 22px;
  color: #666d70;
}
@media (max-width: 767px) {
  .slds-backdrop .scrolling-container .scrolling-box {
    font-size: 14px;
  }
}
@keyframes marquee {
  0% {
    top: 80px;
  }
  100% {
    top: -20px;
  }
}
