/* start: Change font size in the html */
.text-xxs {
  font-size: 6px;
}

.text-xs {
  font-size: 8px;
}

.text-sm {
  font-size: 10px;
}

.text-md {
  font-size: 12px;
}

.text-lg {
  font-size: 14px;
}

.text-xl {
  font-size: 16px;
}

.text-xxl {
  font-size: 20px;
}
/* end: Change font size in the html */

.text-strike {
  text-decoration: line-through;
}

.text-decoration-no {
  text-decoration: none;
}

.text-blue {
    color: #25408f;
}

.nav-link.active {
  background-color: lightgray !important;
}

.col-w50 {
  width: 50px;
}

.btn-outline-gray {
  border-color: lightgray;
}


.py-043 {
  padding-top: 0.43rem;
  padding-bottom: 0.43rem;
}
.py-075 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.bg-lightgreen {
  background-color: lightgreen;
}
.bg-lightred {
  background-color: #ffd6d5 !important;
}
.bg-1e1e2b {
  background-color: #1e1e2b;
}


/* .carousel-indicators img{
  width: 200px;
  vertical-align: top !important;
} */
.carousel-indicators button.thumbnail {
  width: 100%;
  height: 100%;
}
.carousel-indicators button.thumbnail:not(.active) {
  opacity: 0.7;
}
.carousel-indicators {
  position: static;
}

/* start: Adds a right parenthesis after the number: 1) 2) 3) */
ol.custom-list {
    counter-reset: list;
}
ol.custom-list > li {
    list-style: none;
    position: relative;
}
ol.custom-list > li:before {
    counter-increment: list;
    content: counter(list) ") ";
    position: absolute;
    left: -1.4em;
}
/* end: Adds a right parenthesis after the number: 1) 2) 3) */

/* start: Go to Top button */
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #006eb2;
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
    opacity: 0.5;
  }
  
  #myBtn:hover {
    background-color: #555;
  }
/* end: Go to Top button */
