/* Post filter css start */
.wp-show-posts-columns.rcpost-wrapper .wp-show-posts-inner img {
    border-radius: 5px !important;
    max-height: 250px !important;
    min-height: 250px !important;
}
.riskyPostCatFilterWrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
    color: #fff;
}

.riskyPostFilterWrap select {
    -webkit-appearance:none;
    -moz-appearance:none;
    -ms-appearance:none;
    appearance:none;
    outline:0;
    box-shadow:none;
    border:0!important;
    background: transparent;
    background-image: none;
    flex: 1;
    padding: 0 .5em;
    padding-right: 30px;
    margin-top: 0px;
    color: white;
    cursor:pointer;
    font-family: 'gilroy-medium';
}
.rcpost-wrapper{
    margin-left: -2em;
}
select::-ms-expand {
    display: none;
}
.select select:focus{
    color: white;
    background-color: transparent;
    border-color: white;
}
.select {
    position: relative;
    display: flex;
    height: 3em;
    line-height: 3;
    background: transparent;
    overflow: hidden;
    border-radius: 5px;
    border: 2px solid white;
}
.select::after {
    content: '';
    background-image: url('../img/angle-down.svg');
/*    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(71deg) brightness(101%) contrast(101%);*/
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 0;
    padding: 0 1em;
    background-size: 16px;
    background-position: center;
    display: block;
    height: 30px;
    transform: translateY(-50%);
}
.select:hover::after {
    color: #027eaa;
}

.riskyPostSearchFilter{
    margin-bottom: 5rem;
}
.riskyPostFilterWrap{
    display: flex;
    gap: 20px;
}
.riskyPostFilterWrap .post-filters{
    flex: 1 1 auto;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: end;
}
select,
.select{
    margin: 0;
}
.search_wrap{
    height: 3em;
}
.search_wrap .input_search{
    margin: 0px;
    height: 100%;
    border: 2px solid white;
    background-color: transparent;
}
.search_wrap .input_search:focus{
    color: white;
    background-color: transparent;
    border-color: white;
}
select:focus{
    color: white;
    background-color: transparent;
}
.search_wrap .input_search:focus-visible{
    outline: none;
}
.search_wrap input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: white;
}
.search_wrap input::-moz-placeholder { /* Firefox 19+ */
  color: white;
}
.search_wrap input:-ms-input-placeholder { /* IE 10+ */
  color: white;
}
.search_wrap input:-moz-placeholder { /* Firefox 18- */
  color: white;
}

.wp-show-posts-inner {
    background-color: #fff !important;
    border-radius: 5px !important;
    box-shadow: 0px 0px 20px #00000094;
    margin: 0 0 2em 2em;
}

.gb-button-wrapper.load_more_wrap{
    justify-content: center;
    margin-bottom: 5rem;
}
.gb-button-wrapper.load_more_wrap .load_more_post_btn{
    cursor: pointer;
    background-color: #01b0ad;
    color: #3c235a;
    padding: 20px 50px;
    border-radius: 75px;
}
.gb-button-wrapper.load_more_wrap .load_more_post_btn:hover{
    background-color: #01b0ad;
    color: #ffffff;
}
.wp-show-posts-columns .wp-show-posts-single:not(.wp-show-posts-masonry-block) .wp-show-posts-image img{
    object-fit: cover !important;
}
.reset-wrapper .btn{
    height: 48px;
    cursor: pointer;
    background-color: transparent;
    color: white;
    border-radius: 5px;
    padding-left: 25px;
    padding-right: 25px;
    border: 2px solid white;
}
.reset-wrapper .btn:hover{
    background-color: white;
    color: black;
}

.lds-ellipsis {
  display: none;
  position: relative;
  width: 80px;
  height: 80px;
}
.load_more_wrap.loading .lds-ellipsis{
    display: inline-block !important;
}
.load_more_wrap.loading .load_more_post_btn{
    display: none !important;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

@media screen and (max-width: 768px){
    .riskyPostFilterWrap{
        display: inline-grid;
    }
    .riskyPostFilterWrap .post-filters{
        display: inline-grid;
    }
    .reset-wrapper .btn{
        width: 100%;
    }
}
/* Post filter css end */