
.ct-find-service {
    background: #00719b;
    font-family: 'stenciletta-solid', sans-serif;
    padding: 20px 25px;
    margin-top: 50px;
    margin-bottom: 15px;
    margin-top: 0;
    padding-left: 25px;
    padding-right: 25px;
}
.ct-find-service h2 {
    color: #fff;
    font-size: 38px;
}
@media (min-width: 1200px) {
    .ct-find-service {
        padding: 20px 55px;
    }
}
.ct-select-group {
    height: 64px;
    margin-bottom: 15px;
    position: relative;
}
.ct-select-group .ct-select {
    width: 100%;
    height: 46px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    font-size: 16px;
    border: none;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    padding: 5px 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
}
.ct-select-group .ct-select option {
    font-size: 16px;
    background: #fff;
}
.ct-select-group:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 64px;
    width: calc(100% - 64px);
    background: #fff;
    z-index: 0;
}
.ct-select-group:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 46px;
   /* background-color: #fff400;*/
    background-image: url(https://raw.githubusercontent.com/solodev/styling-select-boxes/master/select1.png);
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    border-left:1px solid #ccc;
}

/* custom css*/

.slpad{
    padding: 5px!important;
}
.mbl10{
    margin-left: 10%!important;
}
.vicon_wh
{
    width: 70px;
    height: 30px;
    display: inline-block;
}

input[type=checkbox] + label {
    display: block;
    margin: 0.2em;
    cursor: pointer;
    padding: 0.2em;
}

input[type=checkbox] {
    display: none;
}

input[type=checkbox] + label:before {
    content: "\2714";
    border: 0.1em solid #000;
    border-radius: 0.2em;
    display: inline-block;
    width: 1.3em;
    height: 1.3em;
   /* padding-left: 0.2em;
    padding-bottom: 0.3em;*/
    margin-right: 0.2em;
    vertical-align: bottom;
    color: transparent;
    transition: .2s;
}

input[type=checkbox] + label:active:before {
    transform: scale(0);
}

input[type=checkbox]:checked + label:before {
    background-color: #c61d2a;
    border-color: #c61d2a;
    color: #fff;
}

input[type=checkbox]:disabled + label:before {
    transform: scale(1);
    border-color: #aaa;
}

input[type=checkbox]:checked:disabled + label:before {
    transform: scale(1);
    background-color: #c61d2a;
    border-color: #c61d2a;
}