body{
    font-family: "Montserrat", sans-serif;
}
.min-height-100vh{
    min-height: 100vh;
}
.row{
    margin-left: -5px;
    margin-right: -5px;
}
[class*="col-"]{
    padding-left: 5px;
    padding-right: 5px;
}
.page-header{
    margin: 15px 0;
}
.page-form{
    margin-bottom: 15px;
}
.page-form h1{
    font-size: 16px;
    margin-top: 10px;
}
.page-form-container{
    max-width: 520px;    
    margin: 0 auto;
}
.page-form-card{
    padding: 15px 30px;
    border: 4px double #ccc;
    border-radius: 2px;
}
.page-form-card label{
    font-weight: 500;
    font-size: 13px;
    margin: 0;
}
.page-form-card .form-control{
    font-size: 14px;
    font-weight: 600;
}
.download-file{
    font-size: 12px;
    color: #000!important;
    text-decoration: underline;
}
.btn-primary{
    background: #da1f26;
    border-color: #da1f26;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}
.btn-primary:hover,.btn-primary:focus, .btn-primary:active{
    background: #000!important;
    border-color: #000!important;
    color: #fff!important;
}
.form-upload{
    font-size: 13px;
}
.file-records{
    font-size: 14px;
}
.custom-radio-btns [type="radio"]{
    display: none;
}
.custom-radio-btns label{
    font-weight: 600;
    font-size: 14px;
    position: relative;
    cursor: pointer;
}
.custom-radio-btns label::before{
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #9a9898;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}
.custom-radio-btns [type="radio"]:checked + label::after{
    content: '';
    position: absolute;
    left: 4px;
    top: 5px;
    width: 12px;
    height: 12px;
    background-color: #da1f26;
    border-radius: 50%;
}
.alert{
    font-size: 13px;
}
.loading-block{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 40%);
    display: -ms-flexbox;
    display: flex;
}
.loader {
  --d:22px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  color: #da1f26;
  box-shadow: 
    calc(1*var(--d))      calc(0*var(--d))     0 0,
    calc(0.707*var(--d))  calc(0.707*var(--d)) 0 1px,
    calc(0*var(--d))      calc(1*var(--d))     0 2px,
    calc(-0.707*var(--d)) calc(0.707*var(--d)) 0 3px,
    calc(-1*var(--d))     calc(0*var(--d))     0 4px,
    calc(-0.707*var(--d)) calc(-0.707*var(--d))0 5px,
    calc(0*var(--d))      calc(-1*var(--d))    0 6px;
  animation: l27 1s infinite steps(8);
}
@keyframes l27 {
  100% {transform: rotate(1turn)}
}