/* Style will be applied only on recall form */
.preloader:after {
    content: "";
    display: inline-flex;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 6px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-dual-ring 1.2s linear infinite;
    margin-left: 15px;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* The container */
.container-checkbox {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.container-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.container-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 30px;
    width: 30px;
    background-color: #eee;
    border: 1px solid #e2e1e1;
}
.container-checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}
.container-checkbox input:checked ~ .checkmark {
    background-color: #24ac7a;
}
.container-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.container-checkbox input:checked ~ .checkmark:after {
    display: block;
}
.container-checkbox .checkmark:after {
    left: 11px;
    top: 4px;
    width: 8px;
    height: 15px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(
45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(
45deg);
}


/** Recall Form **/
.recall-wrapper {
    width: 100%;
    display: inline-block;
}
.recall-wrapper .form-logo{
    display: block;
    width: 100%;
}
.recall-wrapper a img {
    width: 20%;
    margin: 0 auto;
}
.recall-wrapper h3 {
    text-align: center;
    font-family: 'Open Sans','Helvetica Neue',Helvetica,Arial,sans-serif !important;
    padding-bottom: 40px;
    width: 100%;
}
.rc-form-box {
    width: 100%;
    padding: 30px 30px 5px 30px;
    background: #f6f6f6;
    border-bottom: 1px solid #e6e6e6;
}
.rc-sect-heading h5 {
    padding-bottom: 30px;
}
.rc-sect-heading h5 {
    padding-bottom: 30px;
}
.option-field {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    width: 100%;
}
.option-field label {
    margin-bottom: 0;
}
.option-field label {
    width: 25%;
}
label.ar-lbl {
    text-align: right;
    width: 25%;
}
label.ar-lbl-full {
    width: 74%;
}
.option-field input {
    width: 48%;
}
.rc-policy {
    display: inline-flex;
    align-items: baseline;
}
.rc-policy p {
    text-align: right;
    padding-right: 20px;
}
.submit-recall {
    margin-top: 30px;
    margin-bottom: 50px;
}
.daterangepicker .drp-calendar {
    max-width: initial;
}
.rc-records {
    width: 100%;
}
/** Recall Popup **/
.recall-popup-wrapper {
    background: rgba(0,0,0,0.7);
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    display: none;
}
.recall-popup {
    position: absolute;
    width: 800px;
    height: 791px;
    background: #fff;
    left: 50%;
    top: 50%;
    z-index: 999999999;
    margin-left: -400px;
    margin-top: -250px;
    overflow: hidden;
}
.recall-popup img {
    max-width: 100%;
    width: 100%;
    display: inline-block;
}
.recall-popup a {
    display: inline-block;
    float: right;
    background: #949393;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    color: #fff;
}
.recall-popup a:hover {
    background: #d20a0a;
    color:#fff;
}