#item-detail {
    position: relative;
    display: inline-block;
    width: 70%;
    vertical-align: top;
    padding: 10px;
    box-sizing: border-box;
}

#item-detail > h1 {
    position: relative;
    display: inline-block;
    width: 600px;
    text-transform: capitalize;
    word-break: break-word;
}
#item-detail > h1::after {
    content: "";
    position: absolute;
    display: block;
    width: 10%;
    min-width: 108px;
    height: 1px;
    margin-top: 6px;
    border-bottom: 6px solid rgba(213, 29, 50, 1);
}

#item-detail > .rating {
    /* display: inline-block; */
    /* position: absolute; */
    margin: 10px;
    right: 0;
    position: relative;
    display: block;
    text-align: center;
}

.rate-button {
    background: transparent linear-gradient(104deg, #FF2700 0%, #FF00BA 100%) 0% 0% no-repeat padding-box;
    border-radius: 50px;
    opacity: 1;
    border: none;
    color: white;
    width: 90px;
    height: 24px;
}

/* #item-detail > .rating div {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
} */
/* #item-detail > .rating > div:first-child {
    padding: 10px;
    border-right: 1px solid rgba(241,243,245,1);
} */
/* #item-detail > .rating > div:last-child {
    padding: 10px 5px;
    text-transform: capitalize;
    cursor: pointer;
}
#item-detail > .rating > div:last-child > a {
    text-decoration: none;
}
#item-detail > .rating .icon-star,
#item-detail > .rating .icon-star-o {
    font-size: 25px;
    color: rgb(228,187,36);
}
#item-detail > .rating .star-text {
    width: min-content;
} */
#item-detail > .rating {
    display: flex;
    align-items: center;
}
.rating div {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    margin-right: 5px;
}
.rating-text {
    font-weight: bold;
    font-size: 24px;
    padding-right: 5px;
}
.voter-count-text {
    font-size: 14px;
}
.star-checked {
    color: rgb(254, 254, 111);
    padding-right: 1px;
}
.star-half-checked {
    color: rgb(254, 254, 111);
    opacity: 0.5;
    padding-right: 1px;
}
.star-unchecked {
    color: gray;
    padding-right: 1px;
}

/* #item-detail > .general, */
#item-detail > .text-links,
#item-detail > .text-paragraphs,
#item-detail > .simple-table,
#item-detail > .photos,
#item-detail > .review {
    width: 100%;
    padding: 10px 5px 30px;
    word-break: break-word;
    box-sizing: border-box;
}
#item-detail > .photo-links,
#item-detail > .other-photo-links {
    width: 100%;
    padding: 10px 5px 30px;
    word-break: break-word;
    box-sizing: border-box;
    overflow-x: auto;
    border-top: 1px solid rgba(112, 112, 112, 1);
    overflow-x: auto;
    scrollbar-width: thin;
}
#item-detail > .general {
    width: 100%;
    padding: 10px 5px 30px;
    word-break: break-word;
    box-sizing: border-box;
    vertical-align: middle;
    /* text-align: center; */
    font-size: 14px;
}
#item-detail > .text-links,
#item-detail > .text-paragraphs,
/* #item-detail > .simple-table, */
#item-detail > .photo-links,
#item-detail > .other-photo-links,
#item-detail > .photos,
#item-detail > .review {
    border-top: 1px solid #6E3E3E;
}
#item-detail > .text-links > h3,
#item-detail > .text-paragraphs > h3,
#item-detail > .simple-table > h3,
#item-detail > .photo-links > h3,
#item-detail > .other-photo-links > h3,
#item-detail > .photos > h3,
#item-detail > .review h3 {
    color: white;
    font-size: 22px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    text-transform: capitalize;
}
#item-detail > .review > #review-input > h3 {
    color: white;
}
#item-detail > .text-links > h3::after,
#item-detail > .photo-links > h3::after,
#item-detail > .other-photo-links > h3::after,
#item-detail > .photos > h3::after,
#item-detail > .review h3::after {
    content: ":";
}

#item-detail > .photo-links img {
    display: inline-block;
    height: 160px; /* Adjust the height as needed */
    object-fit: cover;
    margin-bottom: 5px;
}

#item-detail > .photo-links a {
    text-decoration: none;
}

#item-detail > .photo-links a:hover {
    color: #6E3E3E;
}

/* #item-detail > .other-photo-links > .other-photo-links-paging {
    display: flex;
    justify-content: flex-end;
}

#item-detail > .other-photo-links > .other-photo-links-paging > button {
    text-decoration: none;
    margin-left: 10px;
    margin: 5px;
    padding: 10px 16px;
    border-radius: 5px;
    color: white;
    background-color: transparent;
    cursor: pointer;
    border: 0;
}

#item-detail > .other-photo-links > .other-photo-links-paging > button:hover {
    color: #6E6E6E;
    font-weight: bold;
} */

#item-detail > .photo-links > div.photo-links-wrap,
#item-detail > .other-photo-links > div.other-photo-links-wrap {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
}

#item-detail > .photo-links > div.photo-links-wrap .image-alt {
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    width: 90%;
    left: 5%;
    font-size: 12px;
}

#item-detail > .general > .poster {
    display: inline-block;
    max-width: 100%;
    position: relative;
}

#item-detail > .general > .poster .poster-alt {
    position: absolute;
    top: 45%;
    left: 5%;
    width: 90%;
    transform: translateY(-50%);
    text-align: center;
    font-size: 18px;
}

#item-detail > .general > .poster > img {
    max-width: 100%;
    max-height: 350px;
    object-fit: cover;
}
#item-detail > .general > .detail {
    display: inline-block;
    max-width: 50%;
    /* margin: 15px; */
    margin-top: 15px;
    vertical-align: top;
}
#item-detail > .general > .detail > h4 {
    margin-top: 0px;
}
#item-detail > .general > .detail > .wrap {
    margin-bottom: 5px;
}
#item-detail > .general > .detail .title {
    text-transform: capitalize;
}
#item-detail > .general > .detail .title::after {
    content: ":";
    padding-right: 5px;
}
#item-detail > .general > .detail .content {
    text-transform: capitalize;
}
#item-detail > .general > .detail .content.url {
    text-transform: none;
}

#item-detail > .text-paragraphs > span {
    display: block;
    margin: 1em 0;
    text-align: justify;
    word-break: break-word;
}

#item-detail > .simple-table {
    overflow: auto;
}
#item-detail > .simple-table > table.desktop-wrap.vertical {
    width: max-content;
    max-width: max-content;
}
#item-detail > .simple-table > table.desktop-wrap.vertical td {
    max-width: 310px;
    text-align: left;
}
#item-detail > .simple-table > table.desktop-wrap.vertical td img {
    display: inline-block;
}
#item-detail > .simple-table > table.desktop-wrap {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
}
#item-detail > .simple-table > table.desktop-wrap th.header-no-right-border {
    border-right: none;
}

#item-detail > .simple-table > table.desktop-wrap th {
    font-size: 10pt;
    /* border-right: 3px solid rgba(24, 20, 37, 1); */
    padding: 10px;
    text-align: center;
}
#item-detail > .simple-table > table.desktop-wrap td {
    font-size: 10pt;
    /* border-right: 3px solid rgba(24, 20, 37, 1); */
    padding: 10px;
    text-align: center;
}
/* #item-detail > .simple-table > table.desktop-wrap th {
    border-bottom: 3px solid rgba(24, 20, 37, 1);
} */
#item-detail > .simple-table > table.desktop-wrap.vertical th,
#item-detail > .simple-table > table.desktop-wrap.vertical td {
    border: none;
    border-bottom: 3px solid rgba(24, 20, 37, 1);
}
#item-detail > .simple-table > table.desktop-wrap.vertical th {
    border: none;
    /* border-right: 3px solid rgba(24, 20, 37, 1); */
}
/* #item-detail > .simple-table > table.desktop-wrap th.odd {
    background-color: rgba(178, 3, 10, 1);
}
#item-detail > .simple-table > table.desktop-wrap th.even {
    background-color: rgba(213, 29, 50, 1);
} */
#item-detail > .simple-table > table.desktop-wrap th {
    background: #6C0000 0% 0% no-repeat padding-box;
    border-right: 0.1px solid;
    border-color: #696969;
    margin-bottom: none;
    margin-top: none;
}

/* #item-detail > .simple-table > table.desktop-wrap tr.odd > td.odd {
    background-color: rgba(81, 71, 109, 1);
}
#item-detail > .simple-table > table.desktop-wrap tr.odd > td.even,
#item-detail > .simple-table > table.desktop-wrap.vertical tr.even > td.odd {
    background-color: rgba(60, 54, 79, 1);
}
#item-detail > .simple-table > table.desktop-wrap tr.even > td.odd,
#item-detail > .simple-table > table.desktop-wrap.vertical tr.odd > td.even {
    background-color: rgba(61, 50, 92, 1);
}
#item-detail > .simple-table > table.desktop-wrap tr.even > td.even {
    background-color: rgba(38, 31, 59, 1);
} */

#item-detail > .simple-table > table.desktop-wrap tr,
#item-detail > .simple-table > table.desktop-wrap.vertical tr {
    background: #260000 0% 0% no-repeat padding-box;
    border: 1px solid #6E3E3E;
}

#item-detail > .simple-table > table.desktop-wrap td img {
    display: block;
    max-width: 100px;
    max-height: 50px;
}
#item-detail > .simple-table > .mobile-wrap,
#item-detail > .simple-table > .mobile-wrap-2 {
    display: none;
}

#item-detail > .text-links > .wrap {
    padding: 0 50px;
}
#item-detail > .text-links > .wrap > a {
    display: inline-block;
    width: 20px;
    margin: 10px 5px;
    padding: 10px 15px;
    color: white;
    background-color: rgba(100,160,200,1);
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
}
#item-detail > .text-links > .wrap > a:hover {
    background-color: rgba(0,84,127,1);
}

/* #item-detail > .photo-links > a.block {
    width: 120px;
    margin: 10px 15px;
}
#item-detail > .photo-links > a.block > img {
    height: 160px;
} */

#item-detail > .photo-links >  div.photo-links-wrap > a.block,
#item-detail > .other-photo-links >  div.other-photo-links-wrap > a.block {
    flex: 0 0 auto;
    width: 25%;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    color: inherit;
}

#item-detail > .photo-links >  div.photo-links-wrap > a.block > img,
#item-detail > .other-photo-links >  div.other-photo-links-wrap > a.block > img {
    height: 160px;
}

.photo-links-wrap > a.block:last-child,
.other-photo-links-wrap > a.block:last-child {
    margin-right: 0;
}

#item-detail > .photos > .wrap {
    padding-bottom: 5px;
    box-sizing: border-box;
}
#item-detail > .photos img {
    display: inline-block;
    max-width: 100%;
    height: 220px;
    object-fit: cover;
}

#item-detail > .review {
    padding-top: 50px;
}
#item-detail > .review .review-listing {
    position: relative;
    z-index: 1;
}
#item-detail > .review .review-listing .wrap,
#item-detail > .review .timeline .wrap {
    padding: 25px 10px;
    border-bottom: 1px solid #6E3E3E;
    word-break: break-word;
}
#item-detail > .review .wrap:first-of-type {
    padding-top: 0px;
}
#item-detail > .review > .review-listing .title,
#item-detail > .review > .timeline .runtime {
    display: inline-block;
    padding-right: 15px;
    font-weight: bold;
    text-align: justify;
}
#item-detail > .review .rate {
    display: inline-block;
}
#item-detail > .review .star-holder {
    color: rgb(254, 254, 111);
}
#item-detail > .review > .review-listing .content {
    display: block;
    padding: 15px 0px;
    text-align: justify;
}
#item-detail > .review .helpful {
    display: inline-block;
    margin-right: 30px;
    color: gray;
    cursor: pointer;
}
#item-detail > .review .helpful > .icon-thumbs-up {
    color: rgba(140,173,141,1);
    padding: 5px 10px;
}
#item-detail > .review .helpful > .icon-thumbs-up:hover {
    color: white;
    background: rgba(140,173,141,1);
}
#item-detail > .review .helpful > .icon-thumbs-down {
    color: rgba(200,100,119,1);
    padding: 5px 10px;
}
#item-detail > .review .helpful > .icon-thumbs-down:hover {
    color: white;
    background: rgba(200,100,119,1);
}
#item-detail > .review .helpful-count {
    font-weight: normal;
    padding-left: 5px;
}
#item-detail > .review > .review-listing .creation-detail {
    float: right;
}
#item-detail > .review > .review-listing .datetime {
    font-size: 12px;
    color: gray;
    padding-left: 10px;
}
#item-detail > .review > .review-listing .username {
    font-size: 14px;
}
#item-detail > .review > .review-listing .username.guest {
    text-transform: capitalize;
}

#item-detail > .review > .review-listing > .review-options {
    margin-top: 20px;
    text-align: center;
}
#item-detail > .review > .review-listing > .review-options > .page-number {
    display: inline-block;
    margin: 5px;
    padding: 10px 16px;
    border-radius: 5px;
    background-color: rgba(48, 44, 59, 1);
    cursor: pointer;
}
#item-detail > .review > .review-listing > .review-options > .page-number.disable {
    background-color: rgba(213, 29, 50, 1);
    cursor: default;
}

#item-detail > .review #review-input {
    position: relative;
    top: -50px;
    margin-bottom: 30px;
    padding-top: 50px;
    padding-bottom: 20px;
}
#item-detail > .review #review-input-title {
    display: block;
    width: 100%;
    height: 25px;
    margin-bottom: 10px;
    color: white;
    /* background-color: rgba(255,255,255,0.1); */
    font-size: 14px;
    /* border: none; */
    background: #260000 0% 0% no-repeat padding-box;
    border: 1px solid #6E3E3E;
    border-radius: 10px;
    opacity: 1
}
#item-detail > .review #review-input-content {
    display: block;
    width: 100%;
    height: 100px;
    margin-bottom: 10px;
    color: white;
    /* background-color: rgba(255,255,255,0.1); */
    font-size: 14px;
    /* border: none; */
    background: #260000 0% 0% no-repeat padding-box;
    border: 1px solid #6E3E3E;
    border-radius: 10px;
    opacity: 1;
}
#item-detail > .review #review-input-title::placeholder,
#item-detail > .review #review-input-content::placeholder {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    padding: 10px;
    font-family: "Helvetica Neue", Arial, sans-serif;
}
#item-detail > .review #review-input-title::placeholder,
#item-detail > .review #review-input-content::placeholder {
    text-transform: capitalize;
}
#item-detail > .review #review-input-submit {
    width: 160px;
    height: 40px;
    color: white;
    /* background-color: rgba(255,255,255,0.1); */
    font-size: 14px;
    text-transform: capitalize;
    border: none;
    /* border-radius: 5px; */
    cursor: pointer;
    background: transparent linear-gradient(98deg, #FF2700 0%, #FF00BA 100%) 0% 0% no-repeat padding-box;
    border-radius: 50px;
    opacity: 1;
}
#item-detail > .review #review-input-response {
    margin-left: 15px;
    text-transform: capitalize;
    font-weight: bold;
}
#item-detail > .review #review-input-response.success {
    color: rgba(140,173,141,1);
}
#item-detail > .review #review-input-response.fail {
    color: rgba(200,100,119,1);
}

/* star rating */
#item-detail > .review #review-input-rating {
    margin-bottom: 15px;
}

@media only screen and (max-width: 1024px) {
    #item-detail {
        width: 100%;
    }
    
    #item-detail  > h1 {
        display: block;
        width: auto;
        padding: 0 5px;
        font-size: 26px;
    }
    
    /* #item-detail > .rating {
        position: relative;
        display: block;
        text-align: center;
    } */
    
    #item-detail > .text-links,
    #item-detail > .text-paragraphs,
    #item-detail > .photo-links,
    #item-detail > .other-photo-links,
    #item-detail > .photos,
    #item-detail > .review {
        text-align: justify;
    }
    
    /* #item-detail > .general {
        text-align: center;
    } */
    #item-detail > .general > .poster {
        display: block;
        max-width: 100%;
    }
    #item-detail > .general > .poster .poster-alt {
        font-size: 14px;
    }
    #item-detail > .general > .detail {
        display: block;
        max-width: 100%;
        margin-top: 15px;
    }
    
    #item-detail > .text-links > .wrap {
        padding: 0;
        text-align: center;
    }
    
    /* #item-detail > .photo-links > a.block {
        width: calc((100% / 2) - 7px);
        margin: 10px 0px;
    }
    #item-detail > .photo-links > a.block:nth-child(even) {
        margin-right: 5px;
    }
    #item-detail > .photo-links > a.block:nth-child(odd) {
        margin-left: 5px;
    } */

    #item-detail > .photo-links > div.photo-links-wrap > a.block,
    #item-detail > .other-photo-links > div.other-photo-links-wrap > a.block {
        width: calc((100% / 2) - 10px);
        margin: 10px 0px;
    }

    #item-detail > .photo-links > div.photo-links-wrap > a.block:nth-child(even),
    #item-detail > .other-photo-links > div.other-photo-links-wrap > a.block:nth-child(even) {
        margin-right: 5px;
        margin-left: 10px;
    }
   
    #item-detail > .photo-links > div.photo-links-wrap > a.block:nth-child(odd),
    #item-detail > .other-photo-links > div.other-photo-links-wrap > a.block:nth-child(odd) {
        margin-left: 5px;
    }

    #item-detail > .photos img {
        width: 100%;
    }

    #item-detail > .simple-table {
        padding: 10px 0px 30px;
    }
    #item-detail > .simple-table > table.desktop-wrap {
        display: none;
    }
    #item-detail > .simple-table > .mobile-wrap {
        display: block;
        padding: 0 10px;
    }
    #item-detail > .simple-table > .mobile-wrap > table {
        width: 100%;
        border-collapse: collapse;
        table-layout: fixed;
        font-size: 10pt;
        text-align: center;
    }
    #item-detail > .simple-table > .mobile-wrap > table th {
        background: #6C0000 0% 0% no-repeat padding-box;
        /* border-radius: 20px 20px 0px 0px; */
        opacity: 1;
    }
    #item-detail > .simple-table > .mobile-wrap > table th.header-right-border {
        border-right: 1px solid #696969;
    }
    #item-detail > .simple-table > table.desktop-wrap + .mobile-wrap {
        margin-top: 20px;
    }
    #item-detail > .simple-table > .mobile-wrap > table .label::after {
        content: ":"
    }
    /* #item-detail > .simple-table > .mobile-wrap > table .label {
        font-weight: bold;
    } */
    #item-detail > .simple-table > .mobile-wrap > table .label,
    #item-detail > .simple-table > .mobile-wrap > table .content {
        padding: 10px 5px;
        word-break: break-word;
    }
    #item-detail > .simple-table > .mobile-wrap > table tr:not(:last-of-type) .label,
    #item-detail > .simple-table > .mobile-wrap > table tr:not(:last-of-type) .content {
        border-bottom: 1px solid rgba(181,183,185,1);
    }
    #item-detail > .simple-table > .mobile-wrap > table tr:not(:last-of-type) .content img {
        max-width: 100px;
        max-height: 50px;
        vertical-align: middle;
    }
    #item-detail > .simple-table > .mobile-wrap > table tr:nth-child(odd) > .label {
        background-color: rgba(178, 3, 10, 1);
    }
    #item-detail > .simple-table > .mobile-wrap > table tr:nth-child(even) > .label {
        background-color: rgba(213, 29, 50, 1);
    }
    #item-detail > .simple-table > .mobile-wrap > table tr:nth-child(odd) > .content {
        /* background-color: rgba(60, 54, 79, 1); */
        background: #260000 0% 0% no-repeat padding-box;
        /* border: 1px solid #6E3E3E; */
        opacity: 1;
    }
    #item-detail > .simple-table > .mobile-wrap > table tr:nth-child(even) > .content {
        /* background-color: rgba(81, 71, 109, 1); */
        background: #260000 0% 0% no-repeat padding-box;
        /* border: 1px solid #6E3E3E; */
        opacity: 1;
    }

    #item-detail > .simple-table > .mobile-wrap-2 {
        display: block;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    #item-detail > .simple-table > .mobile-wrap-2 > table {
        width: 100%;
        border-collapse: collapse;
        table-layout: fixed;
        font-size: 10pt;
        text-align: center;
    }
    #item-detail > .simple-table > .mobile-wrap-2 > table th {
        background: #6C0000 0% 0% no-repeat padding-box;
        /* border-radius: 20px 20px 0px 0px; */
        opacity: 1;
    }
    #item-detail > .simple-table > table.desktop-wrap + .mobile-wrap-1 + .mobile-wrap-2 {
        margin-top: 20px;
    }
    #item-detail > .simple-table > .mobile-wrap-2 > table .label::after {
        content: ":"
    }
    /* #item-detail > .simple-table > .mobile-wrap-2 > table .label {
        font-weight: bold;
    } */
    #item-detail > .simple-table > .mobile-wrap-2 > table .label,
    #item-detail > .simple-table > .mobile-wrap-2 > table .content {
        padding: 10px 5px;
        word-break: break-word;
    }
    #item-detail > .simple-table > .mobile-wrap-2 > table tr:not(:last-of-type) .label,
    #item-detail > .simple-table > .mobile-wrap-2 > table tr:not(:last-of-type) .content {
        border-bottom: 1px solid rgba(181,183,185,1);
    }
    #item-detail > .simple-table > .mobile-wrap-2 > table tr:not(:last-of-type) .content img {
        max-width: 100px;
        max-height: 50px;
        vertical-align: middle;
    }
    #item-detail > .simple-table > .mobile-wrap-2 > table tr:nth-child(odd) > .label {
        background-color: rgba(178, 3, 10, 1);
    }
    #item-detail > .simple-table > .mobile-wrap-2 > table tr:nth-child(even) > .label {
        background-color: rgba(213, 29, 50, 1);
    }
    #item-detail > .simple-table > .mobile-wrap-2 > table tr:nth-child(odd) > .content {
        /* background-color: rgba(60, 54, 79, 1); */
        background: #260000 0% 0% no-repeat padding-box;
        /* border: 1px solid #6E3E3E; */
        opacity: 1;
    }
    #item-detail > .simple-table > .mobile-wrap-2 > table tr:nth-child(even) > .content {
        /* background-color: rgba(81, 71, 109, 1); */
        background: #260000 0% 0% no-repeat padding-box;
        /* border: 1px solid #6E3E3E; */
        opacity: 1;
    }

    #item-detail > .review {
        padding-top: 10px;
    }
    #item-detail > .review .review-listing .wrap,
    #item-detail > .review .timeline .wrap {
        position: relative;
    }
    #item-detail > .review > .review-listing .title,
    #item-detail > .review > .timeline .runtime {
        display: block;
        padding: 0;
    }
    #item-detail > .review .rate {
        display: block;
        padding-top: 5px;
    }
    #item-detail > .review .helpful {
        margin-right: 5px;
        font-size: 20px;
        text-align: center;
    }
    #item-detail > .review .helpful-count {
        display: block;
        padding: 0;
        padding-top: 5px;
        font-size: 16px;
    }
    #item-detail > .review > .review-listing .creation-detail {
        position: absolute;
        display: inline-block;
        right: 10px;
        text-align: right;
    }
    #item-detail > .review > .review-listing .datetime {
        display: block;
        padding: 0;
        padding-top: 5px;
        font-size: 14px;
    }
    #item-detail > .review > .review-listing .username {
        display: block;
        font-size: 16px;
    }

    #item-detail > .review #review-input {
        padding-top: 50px;
    }
    #item-detail > .review #review-input-title {
        width: 100%;
        height: 40px;
        padding: 5px 10px;
        font-size: 14px;
        font-family: Arial;
        box-sizing: border-box;
    }
    #item-detail > .review #review-input-content {
        width: 100%;
        padding: 5px 10px;
        font-size: 14px;
        font-family: Arial;
        box-sizing: border-box;
    }
    #item-detail > .review #review-input-submit {
        /* width: 100%; */
        height: 40px;
        font-size: 16px;
    }
    #item-detail > .review #review-input-response {
        display: block;
        margin: 10px 0;
        text-align: center;
    }
    
    /* star rating */
    #item-detail > .review #review-input-rating {
        font-size: 20px;
    }
}