.app-password {
  position: relative;
}

.app-password__indicators {
  width: 6px;
  font-size: 0;
  position: absolute;
  top: 50%;
  right: -16px;
  -webkit-transform: translateY( -50% ) translateX( -50% );
  -moz-transform: translateY( -50% ) translateX( -50% );
  -ms-transform: translateY( -50% ) translateX( -50% );
  transform: translateY( -50% ) translateX( -50% );
}

.app-password__indicator {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #CED4DA;
  border-radius: 50%;
  margin: 0 0 3px 0;
}

.app-password__indicator:last-of-type {
  margin-bottom: 0;
}

.app-password__indicators--min .app-password__indicator--min {
  background-color: #DC3545;
}

.app-password__indicators--mid .app-password__indicator--mid {
  background-color: #FD7E14;
}

.app-password__indicators--max .app-password__indicator--max {
  background-color: #28A745;
}

.app-password__components {
  position: absolute;
  top: calc( 100% + 18px );
  left: calc( 50% - 135px );
  width: 270px;
  z-index: 9999;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 0 24px 0 rgba( 0, 0, 0, 0.24 );
  -moz-box-shadow: 0 0 24px 0 rgba( 0, 0, 0, 0.24 );
  box-shadow: 0 0 24px 0 rgba( 0, 0, 0, 0.24 );
  border-radius: 6px;
  margin: 0 0 30px 0;
  display: none;
}

.app-password__components.is-visible {
  display: block;
}

.app-password__components::before {
  position: absolute;
  top: -9px;
  left: calc( 50% - 6px );
  width: 18px;
  height: 9px;
  content: "";
  display: block;
  background-image: url( '/template/images/triangle.svg' );
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
}

.app-password__components .app-password__checklist {
  width: 100%;
  padding: 18px;
  margin: 0;
  list-style-type: none;
}

.app-password__components .app-password__checklist li {
  font-size: 15px;
  line-height: 1.1;
  position: relative;
  margin: 0 0 18px 0;
  padding: 0 0 0 27px;
}

.app-password__components .app-password__checklist li:last-of-type {
  margin-bottom: 0;
}

.app-password__components .app-password__checklist li::before {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  background-image: url( '/template/images/tick-muted.svg' );
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
  
  -webkit-transition: background-image 100ms cubic-bezier( 0.25, 0.25, 0.75, 0.75 );
  -moz-transition: background-image 100ms cubic-bezier( 0.25, 0.25, 0.75, 0.75 );
  -o-transition: background-image 100ms cubic-bezier( 0.25, 0.25, 0.75, 0.75 );
  transition: background-image 100ms cubic-bezier( 0.25, 0.25, 0.75, 0.75 );
}

.app-password__components .app-password__checklist li.is-ticked::before {
  background-image: url( '/template/images/tick-success.svg' );
}

select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
}

#user-access-levels tr {
  -webkit-transition: opacity 100ms cubic-bezier( 0.25, 0.25, 0.75, 0.75 );
  -moz-transition: opacity 100ms cubic-bezier( 0.25, 0.25, 0.75, 0.75 );
  -o-transition: opacity 100ms cubic-bezier( 0.25, 0.25, 0.75, 0.75 );
  transition: opacity 100ms cubic-bezier( 0.25, 0.25, 0.75, 0.75 );
}

#user-access-levels td {
  position: relative;
}

#user-access-levels label {
  margin-bottom: 0;
  font-size: 0;
  position: absolute;
  top: calc( 50% - 1px );
  left: calc( 50% - 1px );
  -webkit-transform: translateX( -50% ) translateY( -50% );
  -moz-transform: translateX( -50% ) translateY( -50% );
  -ms-transform: translateX( -50% ) translateY( -50% );
  transform: translateX( -50% ) translateY( -50% );
}

#user-access-levels label input {
  font-size: 16px;
}

.input-datepicker {
  background-color: #FFFFFF !important;
}

.select2-container .select2-selection--single .select2-selection__clear {
  font-size: 0;
  content: "";
  width: 18px;
  height: 18px;
  top: calc( 50% - 9px );
  right: 9px;
  position: absolute;
  background-color: #ced4da;
}

.select2-container .select2-selection--single .select2-selection__clear::before {
  width: 2px;
  height: 9px;
  background-color: #FFFFFF;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX( -50% ) translateY( -50% ) rotate( -45deg );
  -moz-transform: translateX( -50% ) translateY( -50% ) rotate( -45deg );
  -ms-transform: translateX( -50% ) translateY( -50% ) rotate( -45deg );
  transform: translateX( -50% ) translateY( -50% ) rotate( -45deg );
  content: "";
  display: block;
}

.select2-container .select2-selection--single .select2-selection__clear::after {
  width: 2px;
  height: 9px;
  background-color: #FFFFFF;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX( -50% ) translateY( -50% ) rotate( 45deg );
  -moz-transform: translateX( -50% ) translateY( -50% ) rotate( 45deg );
  -ms-transform: translateX( -50% ) translateY( -50% ) rotate( 45deg );
  transform: translateX( -50% ) translateY( -50% ) rotate( 45deg );
  content: "";
  display: block;
  
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-right: 36px;
  padding-left: 12px;
  color: #495057;
}

.select2-container .select2-selection--single .select2-selection__arrow {
  display: none !important;
}

.select2-container .select2-selection--single .select2-selection__placeholder {
  display: none !important;
}



.navbar-brand img {
  display: inline-block;
  vertical-align: middle;
  width: 120px;
  height: auto;
}

.navbar-brand p {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 12px;
}



html
{
  background-color: #443B74;
}

body
{
  background-color: #FFFFFF;
}

.navbar
{
  min-height: 100px;
  border-top: 6px solid #AA236B;
}

.navbar-brand
{
  margin-right: calc( 30px - 0.5rem );
}

.navbar-brand img
{
  width: auto;
  height: 60px;
}

.navbar-brand p
{
  margin-left: 30px;
}

.portal-footer
{
  background-color: #443B74;
  text-align: center;
  font-size: 0;
  padding: 20px 0;
}

.portal-footer a
{
  display: inline-block;
  vertical-align: top;
}

.portal-footer a img
{
  display: inline-block;
  vertical-align: top;
  width: auto;
  height: 30px;
}


