.post-rating-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 40px;
    font-size: 16px;
  }
  .post-rating-wrapper .post-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .post-rating-wrapper .rating {
    margin-right: 20px;
    font-weight: bold;
  }
  .post-rating-wrapper #gwiazdki {
    font-weight: bold;
    cursor: pointer;
    color: #ffb677;
    padding-right: 24px;
    display: flex;
  }

  .post-rating-wrapper #gwiazdki svg{
    width: 25px;
	  margin-left: 10px;
    cursor: pointer;
  }

  .post-rating-wrapper #gwiazdki svg path{
    fill:#ffb677;
  }

  .post-rating-wrapper #gwiazdki:hover {
    text-decoration: underline;
    color: #ffb677;
  }
  .post-rating-wrapper .stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 20px;
  }
  .post-rating-wrapper .stars svg {
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 3px;
    fill: #ced4da;
  }
  .post-rating-wrapper .stars svg.active {
    margin: 5px;
    fill: #ffb677;
  }

  

  /* ------------------ gwiazdki ------------------------ */
#gwiazdki_ocen {
    max-width: 240px;
    margin: 30px auto 0;
    background: #ffb677;
    border-radius: 60px;
    color: white;
    text-align: center;
    font-size: 13px;
    border: 2px solid #ffb677;
    padding: 15px 0;
    cursor: pointer;
    font-weight: 900;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  #gwiazdki_ocen:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    background: #ffb677;
  }
  
  .gwiazdki:after {
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: " ";
    display: none;
  }
  
  .gwiazdki.active:after,.gwiazdki.active #gwiazdki_popup {
    display: block;
  }
  
  #gwiazdki_popup {
    position: fixed;
    width: calc(100% - 100px);
    z-index: 9;
    background: white;
    top: 30%;
    max-width: 950px;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-box-shadow: 0px 5px 5px 5px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 5px 5px rgba(0, 0, 0, 0.05);
    padding: 50px;
    z-index: 99999;
    text-align: center;
    display: none;
  }
  
  #gwiazdki_popup p {
    font-size: 18px;
    font-weight: 900;
    color: #16252f;
    margin-bottom: 25px;
  }
  
  #gwiazdki_popup .stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	justify-content: center;
	flex-direction: row-reverse;
  }

  #gwiazdki_popup .stars label{
    margin: 5px;
  }

  #gwiazdki_popup .stars label svg{
    width:35px;
  }
  
  #gwiazdki_popup .stars label:hover svg path,#gwiazdki_popup .stars label:hover ~ label svg path,#gwiazdki_popup .stars input:checked ~ label svg path{
    fill:#ffb677;
  }

  #gwiazdki_popup .stars input{
    display: none;
  }

  #gwiazdki_popup_close {
    position: absolute;
    top: 20px;
    display: block;
    right: 20px;
    color: black;
    cursor: pointer;
    width: 20px;
    height: 20px;
  }
  
  #gwiazdki_popup_close .fas {
    color: black;
  }