.complain-search-wrapper {
    margin-bottom: 50px;
}
.complain-search-row {
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    margin-bottom: 5px;
    cursor: pointer; 
}
.complain-search-row img {
    width: 100px;
}
.complain-search-checkboxes {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}
.complain-search-checkboxes label {
    color: #fff;
    font-size: 16px;
    /*font-family: "Open Sans";*/
    font-weight: normal;
}
.complain-search-row span {
    color: #606175;
}

.complain-search-row .complain-status {
    font-size: 14px; 
    text-align: left; 
}

.complain-search-row .complain-status i {
    font-size: 18px; 
}

.complain-search-row .complain-amount span {
    display: inline-block; 
    vertical-align: middle; 
}

.complain-search-row p {
    color: #181f38;
    font-weight: bold;
    opacity: 1;
    margin-bottom: 0;
}
.complain-search-row p  i {
    color: #606175;
}
.complain-search-row > * {
    padding: 0 1px; 
}
.complain-search-row > *:last-child {
    text-align: right; 
}
p.complain-description {
    font-weight: normal;
    color: #606175;
}
.check-container {
    display: block;
    position: relative;
    padding-left: 22px; 
    /* margin-bottom: 12px; */
    margin-bottom: 7px; 
    cursor: pointer;
    /*font-size: 17px;*/
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.check-container span:last-child{
    line-height: 1; 
}
/* Hide the browser's default checkbox */
.check-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
	width: auto;
}
/* Create a custom checkbox */
.check-mark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: transparent;
    border: 2px solid #fff;
}
/* When the checkbox is checked, add a blue background */
.check-container input:checked ~ .check-mark {
    background-color: #2196F3;
    border: none;
}
/* Create the check-mark/indicator (hidden when not checked) */
.check-mark:after {
    content: "";
    position: absolute;
    display: none;
}
/* Show the check-mark when checked */
.check-container input:checked ~ .check-mark:after {
    display: block;
}
/* Style the checkmark/indicator */
.check-container .check-mark:after {
    left: 4px;
    top: 0px;
    width: 9px;
    height: 15px;
    border: solid#1b2f59;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.search-field {
    height: 45px;
    width: 100%;
    background-color:rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    padding-left: 15px;
	display: inline-block;
}
.search-button {
    position: absolute;
    top: 5px;
    right: 20px;
    min-width: 25%;
    padding: 5px 7px;
    font-size: 16px;
    color: #fff;
    background: #2a7dfb;
    border: none;
}

.complain-search-results.no-results {
    color: #606175;
}

.complain-search-wrapper .complaint a {
    display: block; 
    border: none;
    width: 33.33333%; 
}
@media ( min-width: 767px ) {
    .complain-search-row {
        padding: 10px; 
    }

    .check-container {
        padding-left: 35px;
    }
    .complain-search-wrapper .complaint a {
        width: 16.666667%; 
    }

}
@media (min-width: 992px) {
    .complain-search-wrapper {
        margin-bottom: 200px;
    }
    .complain-search-tool {
        padding-right: 0;
    }
    .complain-search-checkboxes {
        background: rgba(255, 255, 255, .1);
        height: 45px;
        padding: 10px;
    }
    .check-container {
        padding-left: 22px;
        margin-top: 2px; 
    }
    .search-field {
        width: 75%;
        margin-left: -8px;
    }
    .search-button {
        position: relative;
        top: -2px;
        right: -5px;
        height: 45px;
        margin: 0;
    }
}