.post-rating-container{
    display: flex;
    justify-content: end;
    padding: 12px 0;
    background-color: white;
    margin: 10%;
    margin-top: 0px;
    margin-bottom: 0px;
}

.post-rating{
    display: flex;
    align-items: center;
    cursor: default;
}

.post-rating:not(:last-child){
    margin-right: 12px;
}

.post-rating:not(:first-child){
    margin-right: 12px;
}

.post-rating-selected > .post-rating-button,
.post-rating-selected > .post-rating-count {
    color:rgb(158, 79, 233);
}

.post-rating-button{
    margin-right: 6px;
    cursor: pointer;
    color: rgb(66, 66, 66);
}

.post-rating:not(.post-rating-selected) > .post-rating-button:hover{
    color:black;
}

.navbar {
    overflow: hidden;
}

.navbar2 {
    text-align: center;
}


#element1 {
    float:left;
    margin-top: 16px;
    margin-right:5px;
    margin-left:10px;
    border: 3px solid rgb(207, 186, 160);
    border-radius: 50%;
    border-radius: 50%;
    border-radius: 50%;
    border-radius: 50%;
    width:38px;
    height: 38px;
}

#element2 {
    margin-top: 25px;
    float:left;
    margin-bottom: 7px;
}

#element3 {
    margin-top:16px;
    margin-right:10px;
    float:right;
}

#element4 {
    float:left;
    margin-top: 16px;
    margin-right:5px;
    margin-left:10px;
    border: 3px solid rgb(130, 117, 101);;
    border-radius: 50%;
    border-radius: 50%;
    border-radius: 50%;
    border-radius: 50%;
    width:38px;
    height: 38px;
}

#element5 {
    display:inline-block;
    margin-right:5px;
    margin-left:10px;
    margin-top: 7px;
    border: 3px solid rgb(130, 117, 101);
    border-radius: 50%;
    border-radius: 50%;
    border-radius: 50%;
    border-radius: 50%;
    width:38px;
    height: 38px;
}

#element6 {
    float:left;
    color:blueviolet;
    margin-bottom: 0px;
    margin-top:10px;
    margin-left: 23%;
    margin-right: 23%;
}

#element7 {
    display:inline-flex;
    margin-bottom: 7px;
    font-size: 100%;
}

#myH1 {
    color:rgb(74, 74, 74);
    background-color: white;
    display: flex;
    margin: 10%;
    margin-bottom: 5%;
    margin-top: 5%;
    padding-right: 0%;
    float:left;
}

#myH2 {
    color:rgb(74, 74, 74);
    background-color: white;
    display: flex;
    width: 80%;
    margin: 10%;
    margin-bottom: 0px;
    margin-top: 0%;
    position:relative;
}

#myFunction {
    padding-right:0%;
}

.popup-container {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0, .5);
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    opacity: 0;
    z-index: 5;
}

.popup-container.active {
    opacity: 1;
    pointer-events: auto;
    transition: .4s ease;
}

.popup-container .popup-box{
    width: 500px;
    background-color:rgb(230, 181, 255);
    border-radius: 6px;
    box-shadow: 0 0 10px black;
    padding: 15px;
    justify-content: center;
    transform: scale(0);
}

.popup-container.active .popup-box{
    transform: scale(1);
    transition: .4s ease;
}

.popup-box h1 {
    color:rgb(57, 57, 57);
    line-height: 1;
    text-align: center;
}

.popup-box p {
    color:rgb(22, 22, 22);
    margin: 12px 0 20px;
    text-align: center;
}

.popup-box .accept-btn {
    margin-left:100px;
    padding-top:10px;
    padding-bottom:10px;
    padding-left:25px;
    padding-right:25px;
    background-color: rgb(57, 57, 57);
    border-radius: 6px;
    border:none;
    outline:none;
    box-shadow: 0 0 10px black;
    cursor: pointer;
    color:white;
    text-decoration: none;
    float:left;
}

.popup-box .decline-btn {
    margin-right:100px;
    padding-top:10px;
    padding-bottom:10px;
    padding-left:25px;
    padding-right:25px;
    background-color: rgb(57, 57, 57);
    border-radius: 6px;
    border:none;
    outline:none;
    box-shadow: 0 0 10px black;
    cursor: pointer;
    color:white;
    text-decoration:none;
    float:right;
}