html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.animate-icon {
    animation-name: spin;
    animation-duration: 700ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.step-number {
    min-width: 31px;
    min-height: 31px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
    -ms-align-items: center;
    justify-content: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -o-justify-content: center;
    -ms-justify-content: center;
    margin-right: 15px;
    display: inline-block;
    background-color: #fff;
    border: 2px solid #e5e5e5;
    color: #cbcaca;
    font-weight: bold;
    text-align: center;
}

.green-step {
    background-color: #77bc69;
    border-color: #77bc69;
    color: #fff;
}


.gray-bg-line {
    background: linear-gradient(#e5e5e5,#e5e5e5) center/100% 3px no-repeat;
}

.blue-bg-line {
    background: linear-gradient(#0dcaf0,#0dcaf0) center/100% 3px no-repeat;
}

.step-title {
    color: #999;
    font-weight: 600;
    text-align: center;
}

.active-title {
    color: #000;
}

.required-label::after {
    white-space: nowrap;
    content: " *";
    color: red;
}

.cursor-pointer {
    cursor: pointer;
}

.big-checkbox {
    width: 25px;
    height: 25px;
    cursor: pointer;
}


ul.striped-list > li:nth-of-type(even) {
    background-color: #f5f5f5;
}

