#sws-searchform {
    max-width: 1320px;
    margin: 0 auto;
}
.search-item {
    display: flex;
    box-shadow: 3px 3px 6px 3px #0000002e;
    border-radius: 2px;
    padding: 10px;    
    margin: 30px 0px;
}
.thumbnail-cont {
    width: 30%;    
    align-items: center;
    flex: 1;
    justify-content: space-around;
    display: flex;
}
.search-item .content {
    width: 70%;
    overflow: hidden;
}
.placeholder-img {
    opacity: 0.4;
}
.sws-search-loader-container {
    background: #7b7b7b36;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;    
    z-index: 999;
}
.sws-search-loader-container .sws-search-loader {    
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    color: #fff;
    font-size: 18px;
    z-index: 1000;
}
    
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 

#searchsubmit{
    border-radius: 50px;
    margin-left: 10px;
}
#loadmore__search{
    border-radius: 50px;
}
#searchsubmit:disabled{
    background-color: gray;
    cursor: no-drop;
}
.d-none {
    display: none !important;
}