.header-vehicle-recall-check {
    position: relative;
    background: center/cover no-repeat;
    margin-top: -16px;
}

.header-vehicle-recall-check.image-1 {
    background-image: url('/assets/img/vehicle-recall-check/cover-2.jpg');
}

.header-vehicle-recall-check .page-intro .section-page-title {
    padding-top: 120px;
}

.plain-list {
    list-style: none;
    
}

.list-badge {
    background-color: #ed2127;
    color: white;
    padding: 0.25rem 0.75rem ;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.badge-warning {
    color: #212529;
    background-color: #ffc107;
}

.btn-recall {
    background-color: #ed2127;
    color: white;
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    border-radius: 0px;
    cursor: pointer;
}

.btn-recall:hover {
	background-color: #c81e20;
	color: white;
}

.btn-recall-secondary {
    background-color: #c4c4c4;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    cursor: pointer;
}


#confirm-recall-form input[type="text"] {
    width: 250px;
    max-width: 100%;
}
.confirmation-text {
    font-size: 0.8rem;
    margin: 0 1rem;
}
.loader {
    width: 35px;
    height: 35px;
    margin: 0px 1rem;
    border-top: 5px solid #ed2127;
    border-right: 5px solid #efefef;
    border-bottom: 5px solid #efefef;
    border-left: 5px solid #efefef;
    border-radius: 100px;
    animation: spin 1s infinite linear;
  }
  
  @keyframes spin {
    100% {
      transform: rotate(360deg);
    }
  }