*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    
    
}
body{
    background-color: #FFFFED;
    position: relative;
}
ul,li{
    list-style: none;
}
.main_content_body{
    display: flex;
    flex-direction: row;
}
.main_sidebar{
    width: 20%;
    height: 93.7vh;
    padding:10px 20px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 0 10px 10px 0 ;
    margin-top: 10px;
}
.main_contents{
    width: 80%;
    margin: 0 0 0 auto ;
}
.main_sidebar>p{
    margin: 0;
}
.main_sidebar_header{
    display: flex;
    justify-content: space-between;
}

.main_contents_card{
    display: flex;
    flex-wrap: wrap;
}

#cata_head{
    overflow: hidden;
    z-index: 10;
    width: fit-content;
    display: flex;
    justify-content: space-between;
}
#cata_head span{
    margin: 0 5px;
}
.cata_main{
    transition: all 0.5s;
}
.rating_d{
    width: 90%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
}
.rating_sp{
    width: 65%;
    position: relative;
}
.rating{
    margin: 0 0 2px 0;
    position: relative;
}
#card-body{
    background-color: white;
    width: 29%;
    border-radius:15px;
    padding: 10px 15px;
    margin: calc(13%/6);
    transition: all 0.5s;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
#card-body:hover{
    transform: translateY(-7px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 20px;
}
#img{
    width: 90%;
    display: block;
    margin:  10px auto;
    height: 200px;
    object-fit: contain;
    transition: all 0.5s;
    cursor: pointer;
}
#img:hover{
    transform: scale(1.03);
}
#icon-star{
    width: 15px;
    height: 15px;
}
#like_d{
    width: 90%;
    margin: auto;
    font-size: 20px;
    text-align: right;
    cursor: pointer;
    transition: all 0.5s;
}

.main-loader{
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100%;
    background-color: #f8f9fa;
    z-index: 103;
    text-align: center;
}

.loader {
    display: inline-block;
    width: 70px;
    height: 70px;
    position: relative;
    border: 4px solid rgba(127, 118, 118, 0.2);
    top: 50%;
    animation: loader 2s infinite ease;
  }
  
  .loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: rgba(127, 118, 118, 0.2);
    animation: loader-inner 2s infinite ease-in;
  }
  
  @keyframes loader {
    0% {
      transform: rotate(0deg);
    }
    
    25% {
      transform: rotate(180deg);
    }
    
    50% {
      transform: rotate(180deg);
    }
    
    75% {
      transform: rotate(360deg);
    }
    
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes loader-inner {
    0% {
      height: 0%;
    }
    
    25% {
      height: 0%;
    }
    
    50% {
      height: 100%;
    }
    
    75% {
      height: 100%;
    }
    
    100% {
      height: 0%;
    }
  }


.hidden{
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
}
.d_none{
    display: none;
}