.show-tool {
    display: flex;
    justify-content: center;
    gap: 30px;
    background-color: #F5F5F5;
    padding: 50px;
}

.show-tool>:first-child {
    width: 70%;
}

.show-tool>:last-child {
    width: 30%;
}

.images-galery>img {
    width: 100%;
    border-radius: 20px;
    max-height: 500px;
}

.images-galery>div {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.images-galery>div>img {
    width: 15%;
    border-radius: 20px;
    border: 1px #EAEAEA solid;
    filter: contrast(50%);
}

.images-galery>div>img.active {
    width: 15%;
    border-radius: 20px;
    border: 1px #EAEAEA solid;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.description-tool>div {
    border-radius: 20px;
    padding: 20px;
    background-color: #FFFFFF;
    margin-top: 20px;
}

.description-paragraph>h2 {
    color: #2D2D2D;
    font-family: "bold";
    font-size: 16px;
}

.description-paragraph>p {
    font-family: "regular";
    font-size: 14px;
    color: #454545;
    line-height: 35px;
    margin-top: 10px;
    width: 85%;
}

hr {
    color: #EAEAEA;
    height: 1px;
    width: 100%;
    margin: 30px 0;
    opacity: 0.5;
}

.suggest-user h3 {
    color: #2D2D2D;
    font-family: "bold";
    font-size: 16px;
    margin-top: 50px;
}

.suggest-user li {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.suggest-user li span {
    font-family: "regular";
    font-size: 14px;
    color: #454545;
    line-height: 35px;
    margin-top: 10px;
    width: 85%;
}


.title-comment {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title-comment h3 {
    color: #2D2D2D;
    font-family: "bold";
    font-size: 16px;
}

.comment-object {
    margin-top: 30px;
    padding: 0 20px;
}

.comment-object>div {
    margin-top: 30px;
}

.comment-object>div>:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.comment-object img {
    width: 20px;
}

.comment-object h4 {
    color: #2D2D2D;
    font-family: "bold";
    font-size: 13px;
}

.comment-object span {
    color: #7A7A7A;
}

.comment-object p {
    color: #454545;
    margin-top: 10px;
    font-family: "regular";
    font-size: 13px;
}

.detail-tool-show {
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 20px;

}

.title-tool-show h1 {
    font-family: "extra_bold";
    font-size: 25px;
}

.title-tool-show span {
    color: #7A7A7A;
}

.pricing-tool {
    text-align: left;
    margin-top: 20px;
}

.pricing-tool>p>:last-child {
    background-color: #FFD301;
    font-family: "light";
    font-size: 13px;
    color: #000000;
    padding: 2px 5px;
    border-radius: 20px;
}

.pricing-tool>:first-child {
    display: flex;
    gap: 10px;
    justify-content: end;
    align-items: center;
}

.pricing-tool>p>:first-child {
    font-size: 14px;
    color: #7a7a7a;
    text-decoration: line-through;
}

.pricing-tool>:nth-child(2) {
    font-family: "bold";
    font-size: 18px;
    color: #2D2D2D;
}

.pricing-tool>a {
    background-color: #1E3A8A;
    color: #FFFFFF;
    display: block;
    padding: 5px 20px;
    font-family: "bold";
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    border-radius: 10px;
}

.rate-count-tool {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin-top: 20px;
}

.rate-count-tool>:first-child {
    font-family: "bold";
    color: #2D2D2D;
}

.rate-count-tool img {
    width: 20px;
}

.rate-count-tool>:last-child {
    color: #7A7A7A;
    font-size: 13px;
}

.publisher-tool {
    margin-top: 20px;
}

.publisher-tool>h3 {
    color: #2D2D2D;
    font-family: "bold";
    font-size: 14px;
}

.detail-tool-information {
    line-height: 35px;
}

.detail-tool-information h3 {

    color: #454545;
    font-family: "bold";
    font-size: 14px;
}

.detail-tool-information ul {
    margin-top: 10px;
}

.detail-tool-information ul li {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.detail-tool-information img {
    width: 20px;
}

.option-tool-show {
    margin-top: 20px;
}

.option-tool-show span {
    font-family: "medium";
    font-size: 14px;
    color: #454545;
}

.option-tool-show li {
    display: flex;
    align-items: center;
    justify-content: start;
}

.step-tool-show {
    margin-top: 20px;
    padding: 20px;
}

.step-tool-show ol {
    list-style-type: decimal;
}

.step-tool-show li {
    font-family: "medium";
    font-size: 14px;
    color: #454545;
}


@media screen and (max-width:768px) {
    .show-tool {
        flex-wrap: wrap-reverse;
        padding: 20px;
    }

    .show-tool>:last-child {
        width: 100%;
    }

    .show-tool>:first-child {
        width: 100%;
    }
}

#form_comment {
    display: none;
}

.form-comment>div {
    width: 100%;
    display: flex;
    align-items: stretch;
    margin: 30px 0;
}

.form-comment>div>textarea {
    width: 80%;
    border: none;
    border-radius: 0 20px 20px 0;
    background-color: #f5f5f5;
    resize: none;
    padding: 5px 10px;
}

.form-comment>div>textarea:focus {
    outline: none;
}

.form-comment>div>input[type="submit"] {
    width: 18%;
    border: none;
    border-radius: 20px 0 0 20px;
    background-color: #FFD301;

}

.star {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
}

.star img {
    width: 20px;
    height: auto;
    filter: drop-shadow(1px 1px 0px rgba(0, 0, 0, 0.5));
}

.star span {
    margin: 0 20px;
}

@media screen and (max-width:768px) {
    .form-comment>textarea {
        width: 70%;
    }

    .form-comment>input[type="submit"] {
        width: 28%;
    }
}