body {
    background-color: #161616;
}

* {
    color: #fff;
}

.top-card {
    height: 500px;
    overflow: scroll;
    overflow-x: hidden;
    border: 2px solid #b7b7b7;
    border-radius: 5px;
    border-bottom: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}
#no-results {
    
    color: #fff;
    padding-top: 37vh;
    padding-bottom: 50vh;
    
    border-radius: 5px;
    font-size: 35px;
    margin-top: -40px;
}
.header-top
{
    position: sticky;
    top: 0px;
    background: #161616;
    padding: 1px 0px;
    border-bottom: 1px solid #ffffff7d;
    margin-bottom: 40px;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

.cards ::-webkit-scrollbar {
    width: 10px;
}

.cards ::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.cards ::-webkit-scrollbar-thumb {
    background: #888;
}

.cards ::-webkit-scrollbar-thumb:hover {
    background: #555;
}


.card-text {
    background: #ffffff;
    padding: 20px;
    margin-bottom: 50px !important;
    border: 2px solid #b7b7b7;
    border-radius: 5px;
    border-top: 0px;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
    border-top: 1px solid #000;
    height: 185px;

}

.card-text p,
.card-text b,
.card-text a {
    color: #000;
}

form,
select,
optgroup,
option {
    color: #000;
    cursor: pointer;
}

select {
    -webkit-appearance: none !important;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' height='24' viewBox='0 0 24 24' width='24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center;
    height: 40px;
    cursor: pointer;
}

@media only screen and (max-width:768px){
    .top-card {
        height: 300px;
    }
    .col-6 {
        padding: 5px!important;
    }
    .row{
        padding: 10px!important;
    }
    .card-text p{
        font-size: 12px;
    }
    .card-text {
        background: #ffffff;
        padding: 10px;
        margin-bottom: 0px !important;
        height: 200px;
    }
}