.result-preholder{
    display: inline-block;
    font-size: 16px;
}
.result-holder{
    position: relative;
    min-height: 230px;
    background: white;
    border: 0;
    border-bottom: 0px;
    border-color: #D6D6D4;
    border-style: solid;
    border-radius: 10px;
    overflow: hidden;
    
    width: 100%;
    margin: 5px 0;
    
    -webkit-box-shadow: 0px 0px 13px -5px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 13px -5px rgba(0,0,0,0.4);
    box-shadow: 0px 0px 13px -5px rgba(0,0,0,0.4);
    
    -webkit-transition: box-shadow 0.3s ease-out;
    -moz-transition: box-shadow 0.3s ease-out;
    -o-transition: box-shadow 0.3s ease-out;
    transition: box-shadow 0.3s ease-out;
}
.content-holder-result-holder{
    width: 100%;
    height: 100%;
}
.content-holder-result-inner{
    padding: 0px 10px 20px 10px;
}
.result-holder:hover{
    -webkit-box-shadow: 0px 0px 16px -5px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 16px -5px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 16px -5px rgba(0,0,0,0.75);
}
.result-header{
    width: 100%;
    height: 155px;
    position: absolute;
}
.result-header img{
    width: 100%;
    height: 100%;
    
    object-fit:cover;
}
.result-name{
    position: absolute;
    top: 167px;
    left: 25px;
    right: 15px;
    bottom: 0;
    
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    
    font-size: 20px;
    font-weight: 700;
    color: #222;
}
.result-rate{
    position: absolute;
    top: 195px;
    left: 25px;
    right: 15px;
    bottom: 0;
    
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    
    font-size: 12px;
    font-weight: 300;
    color: #838383;
}
.result-rate i{
    color: gold;
}
.result-text{
    position: absolute;
    top: 150px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    color: black;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 500;
    
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.result-text-genres{
    font-weight: 400;
}
@media screen and (min-width: 1500px) {
    .result-holder-in-other-holder{
        padding: 0px 0 40px 0;
        width: 1300px;
        margin-right: auto;
        margin-left: auto;
    }
    .result-preholder{
        width: 33.33333%;
        padding: 5px 10px;
    }
}
@media screen and (max-width: 1500px) and (min-width: 1200px) {
    .result-holder-in-other-holder{
        padding: 0px 0px 40px 0px;
    }
    .result-preholder{
        width: 33.33333%;
        padding: 5px 10px;
    }
}
@media screen and (max-width: 1200px) and (min-width: 850px) {
    .result-holder-in-other-holder{
        padding: 0px 20px 40px 20px;
        width: 800px;
        margin-right: auto;
        margin-left: auto;
    }
    .result-preholder{
        width: calc(50% - 3px);
        padding: 5px 10px;
    }
}
@media screen and (max-width: 850px) and (min-width: 768px) {
    .result-holder-in-other-holder{
        padding: 0px 0px 40px 0px;
    }
    .result-preholder{
        width: calc(50% - 3px);
        padding: 5px 10px;
    }
}
@media screen and (max-width: 768px) and (min-width: 450px) {
    .result-holder-in-other-holder{
        padding: 0px 0px 40px 0px;
        width: 400px;
        margin-right: auto;
        margin-left: auto;
    }
    .result-preholder{
        width: 100%;
        padding: 5px 10px;
    }
}
@media screen and (max-width: 450px)  {
    .result-holder-in-other-holder{
        padding: 0px 0px 40px 0px;
    }
    .result-preholder{
        width: 100%;
        padding: 5px 10px;
    }
}