.search-bar {
    min-height: 50px;
    height: auto;
    width: 100%;
    background-color: #13679a;
    border-radius: 5px;
    margin-bottom: 2%;
}

.resultado {
    /* background-image: linear-gradient(180deg, rgba(255,255,255,0) 93%, rgba(235,235,235,1) 100%); */
    padding: 14px 0px;
    color: #7d7d7d;
    margin: 0px 1px;
}

.resultado #resultado-img {
    display: inline-block;
    margin: 0% 3% 0% 0%;
    vertical-align: top;
    background-color: #c2c2c5;
    width: 230px;
    height: 130px;
    overflow: hidden;
    border-radius: 5px;
    background-size: cover;
    background-position: center 50%;
    background-repeat: no-repeat;
}

.resultado #resultado-text {
    display: inline-block;
    width: 63%;
}


.resultado #resultado-text h4 {
    font-weight: bold;
    margin-bottom: 10px;
    /*color: #17458F;*/
    -webkit-tap-highlight-color: rgba(0,0,0,.10);
    font-size: 17px;
    line-height: 1.3;
}

.resultado-descricao {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-height: 1.58;
    word-wrap: break-word;
    font-family: arial,sans-serif;
    font-size: 14px;
}

.resultado-descricao after {
    content: "...";
    position: absolute;
    right: -12px; 
    bottom: 4px;
}

#load-more {
    background-color: #13679a;
    padding: 10px;
    border-radius: 5px;
    color: white;
    margin: 22px auto 0px auto;
}


.submit-search {
    background-color: white;
    width: 25%;
    border-radius: 5px;
    display: inline-block;
    vertical-align: middle;
    margin-top: 5px;
    margin-left: 5px;
}


.input-search {
    /*background-color: #34bfa3;*/
    color: white;
    width: 65px;
    border: 0;
    border-radius: 5px;
    display: inline-block;
    vertical-align: middle;
    margin-top: 5px;
    text-align: center;
    font-size: 28px;
}

.filter-button {
    display: inline-block;
    height: 45px;
    width: 23%;
    vertical-align: middle;
    color: #FFFFFF;
    transition: ease-in out 1s;
    top: 17px;
    padding: 14px 15px;
    font-size: 12px;
    text-align: center;
    background-color: #0C3C7C;
    margin: 20px 0px;
}

.filter-button:hover {
    display: inline-block;
    height: 45px;
    width: 23%;
    vertical-align: middle;
    color: #0C3C7C;
    transition: ease-in out 1s;
    top: 17px;
    padding: 14px 15px;
    font-size: 12px;
    text-align: center;
    background-color: #FFFFFF;
    margin: 20px 0px;
    border: solid #0C3C7C 1px;
}

.fb-active {
    display: inline-block;
    height: 45px;
    width: 23%;
    vertical-align: middle;
    color: #0C3C7C;
    transition: ease-in out 1s;
    top: 17px;
    padding: 14px 15px;
    font-size: 12px;
    text-align: center;
    background-color: #FFFFFF;
    margin: 20px 0px;
    border: solid #0C3C7C 1px;
}

.tab-div {
    display: none;
    background-color: #f3f3f3;
    padding: 18px 15px;
    margin: 15px 0;
}

.tab-div label {
	color: #7d7d7d;
    vertical-align: sub;
    margin-right: 0px;
    font-weight: 400;
}

.main {
    border: solid 1px #cecece;
    margin: 12px auto;
}


@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900');
body {
    font-family: 'Roboto', sans-serif;
  }

.card {
    width: 500px;
    margin: 50px auto;
    clear: both;
    display: block;
    padding: 0px 0px;
    background-color: #009BFF;
    border-radius: 4px;
}
.card::after {
    clear: both;
    display: block;
    content: "";
}
.card .checkbox-container {
    float: left;
    width: 50%;
    box-sizing: border-box;
    text-align:center;
  padding: 40px 0px;
}
.card .circular-container {
  background-color:#0067FF;
}

.input-title {
    clear: both;
    padding: 22px 0px 0px 0px;
    font-size: 16px;
    color: rgba(255,255,255,.6);
    font-weight: 300;
}




/* Styling Checkbox Starts */
.checkbox-label {
    cursor: pointer;
    font-size: 16px;
    line-height: 30px;
    height: 39px;
    vertical-align: sub;
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-label .checkbox-custom {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 24px;
    width: 24px;
    background-color: transparent;
    border-radius: 5px;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    border: 2px solid #989898;
}


.checkbox-label input:checked ~ .checkbox-custom {
    background-color: #13679a;
    border-radius: 5px;
    -webkit-transform: rotate(0deg) scale(1);
    -ms-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
    opacity:1;
    border: 2px solid #13679a;
}


.checkbox-label .checkbox-custom::after {
    position: absolute;
    content: "";
    left: 12px;
    top: 12px;
    height: 0px;
    width: 0px;
    border-radius: 5px;
    border: solid #13679a;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(0deg) scale(0);
    -ms-transform: rotate(0deg) scale(0);
    transform: rotate(0deg) scale(0);
    opacity:1;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}


.checkbox-label input:checked ~ .checkbox-custom::after {
  -webkit-transform: rotate(45deg) scale(1);
  -ms-transform: rotate(45deg) scale(1);
  transform: rotate(45deg) scale(1);
  opacity:1;
  left: 8px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  background-color: transparent;
  border-radius: 0;
}



/* For Ripple Effect */
.checkbox-label .checkbox-custom::before {
    position: absolute;
    content: "";
    left: 10px;
    top: 10px;
    width: 0px;
    height: 0px;
    border-radius: 5px;
    border: 2px solid #FFFFFF;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);    
}

.checkbox-label input:checked ~ .checkbox-custom::before {
    left: -3px;
    top: -3px;
    width: 24px;
    height: 24px;
    border-radius: 5px;
    -webkit-transform: scale(3);
    -ms-transform: scale(3);
    transform: scale(3);
    opacity:0;
    z-index: 999;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}




/* Style for Circular Checkbox */
.checkbox-label .checkbox-custom.circular {
    border-radius: 50%;
    border: 2px solid #FFFFFF;
}

.checkbox-label input:checked ~ .checkbox-custom.circular {
    background-color: #FFFFFF;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
}
.checkbox-label input:checked ~ .checkbox-custom.circular::after {
    border: solid #0067FF;
    border-width: 0 2px 2px 0;
}
.checkbox-label .checkbox-custom.circular::after {
    border-radius: 50%;
}

.checkbox-label .checkbox-custom.circular::before {
    border-radius: 50%;
    border: 2px solid #FFFFFF;
}

.checkbox-label input:checked ~ .checkbox-custom.circular::before {
    border-radius: 50%;
}

.clube1 {
    color: #17458F;
}

.clube2 {
    color: #01B4E7;
}

.clube3 {
    color: #D91B5C;
}

.checkboxes {
	display: inline-block;
}

.checkboxes p {
display: inline-block;
    color: #7d7d7d;
	vertical-align: sub;
	margin-right: 7px;
}

.checkboxes input {
	display: inline-block;
    vertical-align: middle;
    height: 20px;
    width: 23px;
}

.test{
	    width: 100%;
    height: 34px;
    padding: 6px 12px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.checkbox-content-type{
	display: inline-block;
    padding: 6px;
}
