a {
  text-decoration: none;
}
.container-width-sm {
  max-width: 540px; 
  margin-left: auto;
  margin-right: auto;
}

.container-width-md {
  max-width: 760px; 
  margin-left: auto;
  margin-right: auto;
}

.bg-body-brand {
  background-color: #f5f5f5 !important;
}

.iconCircle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  font-size: 18px;
  border: 4px solid #ffffff;
  color:white;
  margin: 0 auto;
  z-index: 1;
  transform: translateY(-50%);
  line-height: 40px;
}

.card {
  border: 1px solid green;
  }

.blob {
  
  background: black;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
  margin: 20px;
  height: 40px;
  width: 40px;
  transform: scale(1);
  animation: pulse-black 2s infinite;
}

.blob.orange {
  background: rgba(255, 121, 63, 1);
  box-shadow: 0 0 0 0 rgba(255, 121, 63, 1);
  animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 121, 63, 0.7);
  }
  
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 121, 63, 0);
  }
  
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 121, 63, 0);
  }
}



.list-group {
  width: 100%;
  /*max-width: 460px;
  margin-inline: 1.5rem;*/
}

.form-check-input:checked + .form-checked-content {
  opacity: .5;
}

.form-check-input-placeholder {
  border-style: dashed;
}
[contenteditable]:focus {
  outline: 0;
}

.list-group-checkable .list-group-item {
  cursor: pointer;
}
.list-group-item-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}
.list-group-item-check:hover + .list-group-item {
  background-color: var(--bs-secondary-bg);
}
.list-group-item-check:checked + .list-group-item {
  color: #fff;
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}
.list-group-item-check[disabled] + .list-group-item,
.list-group-item-check:disabled + .list-group-item {
  pointer-events: none;
  filter: none;
  opacity: .5;
}

.list-group-item-action{
  background-color: #ffffff;
}

.list-group-item-action:hover {
  /*opacity: .5;*/
  background-color: #e4f6fa;
}

.list-group-radio .list-group-item {
  cursor: pointer;
  border-radius: .5rem;
}
.list-group-radio .form-check-input {
  z-index: 2;
  margin-top: -.5em;
}
.list-group-radio .list-group-item:hover,
.list-group-radio .list-group-item:focus {
  background-color: var(--bs-secondary-bg);
}



.list-group-radio .form-check-input:checked + .list-group-item {
  background-color: var(--bs-body);
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 2px var(--bs-primary);
}
.list-group-radio .form-check-input[disabled] + .list-group-item,
.list-group-radio .form-check-input:disabled + .list-group-item {
  pointer-events: none;
  filter: none;
  opacity: .5;
}


/*


body { 
  background-color: #EAEAEA;
  font-size: 1.4rem;
  font-family: "Roboto", sans-serif;
}

.navbar {
    color: #FFFFFF;
    background-color: #1E496C;
}
navbar-default .navbar-nav > .active{
  color: #000;
  background: #1E496C;
}
.h1, .h2, .h3, h1, h2, h3 {
  margin-top: 0px;
  margin-bottom: 20px;
  font-weight: 300;
  color: #2c2c2c;
}

.jumbotron {
	margin-top: 0px;
  padding-top: 0px;
  background-color: #101010;
  color: #CCC;
  background-image: url('images/banner-bg.jpg');    
  background-position: center top;
  background-size: 100% auto;
}

.jumbotron h1 {
	color: #FFF;
	font-size: 40px;
}

.content-item {
  padding: 20px;
  background-color: #FFF;
  margin-bottom: 20px;
  border: 1px solid #FFFFFF;
  border-radius: 5px;
}

.content-top-spacer {
  margin-top: 50px;
}

.content-wrapper{
  min-height: 400px;
}

.img-thumbnail {
  padding: 1px;
  border: solid 1px #EAEAEA;
}

.callaction-wrapper {
  background-color: #FFFFFF;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.top-spacer{
  padding-top: 20px;
}

.light-grey-bg {
  background-color: #C0C0C0;
}
.my-btn{
    background: #858A8F;
    color: #ffffff;
}
.my-btn:hover { 
  border-color: #C0C0C0; 
  background-color: #C0C0C0; 
}
.panel-heading {
     background-color: #002f56 !important;
}
.btn-success {
    background-color:  #408FD9  !important;
    border-color: #878ABF;
}
.alert-success {
    background-color: #797E87 !important;
    border-color: #878ABF;
}



.glyphicon.spinning {
    animation: spin 1s infinite linear;
    -webkit-animation: spin2 1s infinite linear;
}
label {
   
    font-weight: normal;
}

@keyframes spin {
    from { transform: scale(1) rotate(0deg); }
    to { transform: scale(1) rotate(360deg); }
}

@-webkit-keyframes spin2 {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}

.spinner {
  display: inline-block;
  opacity: 0;
  width: 0;

  -webkit-transition: opacity 0.25s, width 0.25s;
  -moz-transition: opacity 0.25s, width 0.25s;
  -o-transition: opacity 0.25s, width 0.25s;
  transition: opacity 0.25s, width 0.25s;
}

.has-spinner.active {
  cursor:progress;
}

.has-spinner.active .spinner {
  opacity: 1;
  width: auto;
}

.has-spinner.btn-mini.active .spinner {
    width: 10px;
}

.has-spinner.btn-small.active .spinner {
    width: 13px;
}

.has-spinner.btn.active .spinner {
    width: 16px;
}

.has-spinner.btn-large.active .spinner {
    width: 19px;
}


  .rfv
    {
        padding-left:10px;
        color:#B50128;
        font-size:12px;
        font-family: Verdana, Tahoma, Arial;
        font-weight:bold;
    }


*/