.hide-content{
    overflow:hidden;
}
.hide-content.h-175{
    margin-bottom: 15px;
    height: 175px;
}
.hide-content.h-0{
    margin-bottom: 0;
    height: 0;
    display: none;
}
#box-readmore {
    text-align: center;
    margin-bottom: 15px;
    height: 36px;
    position: relative;
}
.rm-active.h-175:before {
    content: "";
    position: absolute;
    top: -40px;
    height: 40px;
    left: 0;
    background: #fff;
    opacity: 0.5;
    width: 100%;
}
.btn-readmore {
    margin: 0 auto;
    font-size: 16px;
    color: #fff;
    background: #1b75bb;
    padding: 10px 20px;
    border-radius: 0;
    pointer-events: auto;
    cursor: pointer;
    border: none;
}
.btn-readmore:focus, .btn-readmore:active{
    border: none;
    outline: none;
}

.filter-link {
    position: relative;
    padding-left: 30px;
    border-bottom: 0;
    display: inline-block;
}
.filter-link input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.filter-link:before {
    content: '';
    font-size: 15px;
    color: #222;
    position: absolute;
    top: 1px;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    border: 1px solid #999;
}
.filter-link:hover::after{
    content: '';
    display: block;
    width: 6px;
    height: 12px;
    border: solid #1b75bb;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    position: absolute;
    top: 4px;
    left: 7px;
}
.chosen a.filter-link::before {
    color: #1b75bb;
    border-color: #1b75bb;
}
.chosen a.filter-link::after {
    content: '';
    display: block;
    width: 6px;
    height: 12px;
    border: solid #1b75bb;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    position: absolute;
    top: 4px;
    left: 7px;
}
.chosen a.filter-link:hover::after{
    content: '×';
    border: none;
    transform: rotate( 0deg);
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    font-size: 25px;
    line-height: 0.75;
    text-align: center;
    font-weight: 700;
}
/*mb filter*/
.mb-filter-wraper{
    display: flex;
    justify-content: center;
    align-content: center;
    background: #fff;
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: rgb(166 166 166 / 32%) -1px 1px 10px 2px;
} 
.sb-input {
    width: 100%;
    padding: 0.375rem 0.75rem;
    border-radius: 0;
    outline: none;
}
.mb-btn-filter {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
    border-radius: 0;
    padding: 1px 6px;
    cursor: pointer;
    outline: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mb-btn-filter:focus{
    outline: none;
}
.sb-label {
    display: flex;
    align-items: center;
    color: #404040;
}
.btn-sb-loadmore-ajax{
    background-color: #105b8b;
    color: #fff;
    border-radius: 2px;
    display: block;
    text-align: center;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    padding: 10px 0;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
}
.btn-sb-loadmore-ajax:hover{
    background-color: #0f456e;
    color: #fff;
}
.loading {
    pointer-events: none;
    position: absolute;
    cursor: wait;
}
.loading:before {
    z-index: 1;
    border: none;
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: #fff;
    opacity: 0.6;
    cursor: wait;
    position: absolute;
    content: "";
}
.loading:after {
    z-index: 2;
    content: '';
    margin: 0px auto;
    font-size: 10px;
    text-indent: -9999em;
    border-top: 3px solid rgba(0,0,0,0.1) !important;
    border-right: 3px solid rgba(0,0,0,0.1) !important;
    border-bottom: 3px solid rgba(0,0,0,0.1) !important;
    opacity: .8;
    border-left: 3px solid #446084;
    animation: spin .6s infinite linear;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -15px;
    margin-top: -15px;
}
.dot-flashing {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #446084;
    color: #446084;
    animation: dotFlashing 1s infinite linear alternate;
    animation-delay: .5s;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
}
.dot-flashing::before, .dot-flashing::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
}
.dot-flashing::before {
    left: -15px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #446084;
    color: #446084;
    animation: dotFlashing 1s infinite alternate;
    animation-delay: 0s;
}
.dot-flashing::after {
    left: 15px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #446084;
    color: #446084;
    animation: dotFlashing 1s infinite alternate;
    animation-delay: 1s;
}
@keyframes dotFlashing {
  0% {
    background-color: #c3c3c3;
  }
  50%,
  100% {
    background-color: #446084;
  }
}
@keyframes spin{
    0%{
        transform:rotate(0deg)
    }
    100%{
    transform:rotate(360deg)
    }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@media (min-width: 576px)
{
    .sb-sm-3 {
        max-width: 25%;
        position: relative;
        width: 100%;
        min-height: 1px;
    }
}
@media (max-width: 576px)
{
    .sb-label {
        display: none;
    }
}