    .savings-filter .m-t-0 {
        margin-top: 0;
    }
    
    .savings-filter .form {
        background-color: #f4f4f3;
        padding: 25px;
        margin-bottom: 40px;
    }
    
    .savings-filter .account-panel {
        background-color: #f4f4f3;
        padding: 25px;
        margin-bottom: 15px;
    }
    
    .savings-section .account-panel .btn-primary {
        color: #fff;
    }
    
    .savings-filter .account-panel .col-md-5 {
        width: 20%;
    }
    
    @media (max-width: 991px) {
        .savings-filter .account-panel .col-md-5 {
            width: 100%;
        }
        .savings-filter .account-panel p {
            margin-bottom: 10px;
        }
        
    }
    
    .savings-filter .account-panel h3 {
        margin-bottom: 15px;
    }
    
    .savings-filter .account-panel p {
        font-size: 20px;
    }
    
    .savings-filter .account-panel p.small {
        font-size: 14px;
        margin-bottom: 0;
    }
    
    .savings-filter .account-panel .btn-primary {
        font-size: 14px;
    }
    
    .label-container {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 400;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
    line-height: 17px;
}

/* Hide the browser's default checkbox */
.label-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
}

/* On mouse-over, add a grey background color */
.label-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.label-container input:checked ~ .checkmark {
  background-color: #ea4b68;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.label-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.label-container .checkmark:after {
  left: 8px;
  top: 1px;
  width: 5px;
  height: 15px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
    
    .savings-filter-form .btn, .savings-filter-form a  {
        font-size: 14px;
        text-align: center;
        margin-top: 20px;
        display: block;
        margin-bottom: 5px;
    }
    
    @media (max-width: 767px) {
        .savings-filter-form .btn, .savings-filter-form a  {
            text-align: left;
        }
    }
    
    .savings-filter-form .col-md-3, .savings-filter-form .col-md-2 {
        padding-left: 8px;
        padding-right: 8px;
    }