body {
  margin: 0;
  font-family: "Work Sans", Arial, sans-serif;
  background-color: #FAFAFA;
}
.strike {
  text-decoration: line-through;
  color: #F70408;
  opacity: 0.7;
  font-size: 10px;
}
.sonload {
  width: 128px;
  height: 15px;
  line-height: 15px;
  text-align: center;
  background: url('../images/loading.gif') 0 0 no-repeat;
  display: none;
}
.orange_color {
  color: #E7504E;
}
/* Tooltip */
.ttooltip + .tooltip > .tooltip-inner {
  background-color: aliceblue;
  color: black;
  border: 1px solid blue;
  padding: 15px;
  font-size: 12px;
}
/* Tooltip on top */
.ttooltip + .tooltip.top > .tooltip-arrow {
  border-top: 5px solid blue;
}
/* Tooltip on bottom */
.ttooltip + .tooltip.bottom > .tooltip-arrow {
  border-bottom: 5px solid blue;
}
/* Tooltip on left */
.ttooltip + .tooltip.left > .tooltip-arrow {
  border-left: 5px solid red;
}
/* Tooltip on right */
.ttooltip + .tooltip.right > .tooltip-arrow {
  border-right: 5px solid black;
}
/* Wizard */
.stepwizard-step p {
  margin-top: 10px;
}
.stepwizard-row {
  display: table-row;
}
.stepwizard {
  display: table;
  width: 100%;
  position: relative;
}
.stepwizard-step button[disabled] {
  opacity: 1 !important;
  filter: alpha(opacity=100) !important;
}
.stepwizard-row:before {
  top: 14px;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 100%;
  height: 1px;
  background-color: #ccc;
  z-order: 0;
}
.stepwizard-step {
  display: table-cell;
  text-align: center;
  position: relative;
}
.btn-circle {
  width: 30px;
  height: 30px;
  text-align: center;
  padding: 6px 0;
  font-size: 12px;
  line-height: 1.428571429;
  border-radius: 15px;
}
.white-txt2 {
  color: white;
  margin-bottom: 0;
}
.container2 {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.container2 {
  max-width: 960px;
}

@media (min-width: 1200px) {
  .container2 {
    max-width: 1140px;
  }
}
.top-nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: .5rem 0rem;
}
.top-nav > .container, .top-nav > .container-fluid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
idn {
  visibility: hidden;
}
.hide-bullets {
  list-style: none;
  margin-left: -40px;
  margin-top: 20px;
}
.thumbnail {
  padding: 0;
}
.carousel-inner > .item > img, .carousel-inner > .item > a > img {
  width: 100%;
}
.ui-datepicker td a:after {
  content: "";
  display: block;
  text-align: center;
  color: green;
  font-size: 8px;
  font-weight: bold;
}
.ui-datepicker td {
  padding: 8px !important;
}
.btn2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center; /* center text horizontally */
  gap: 8px;
  margin-left: auto;
  background: grey;
  border-color: black;
  margin-bottom: 19px;
  color: white;
  cursor: not-allowed;
  font-weight: 400;
  white-space: nowrap;
  border-radius: 4px;
  padding: 6px 12px;
  min-width: 180px;
  border: 0;
}
.btn2-text {
  text-align: center;
  flex: none;
}
.spinner2 {
  position: absolute;
  right: 8px; /* align to right edge */
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  animation: spin 1s linear infinite;
  display: none; /* hidden by default */
}
.spinner2.active {
  display: inline-block; /* show spinner */
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}