﻿#comment-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

#comment-form {
    display: none;
    position: fixed;
    top: 6.3vw;
    right: 29.2vw;
    /* transform: translate(-50%, -50%); */
    background: #fff;
    padding: 1.30vw;
    border-radius: 2.4vw;
    z-index: 1000;
    width: 34.7vw;
    height: 36.5vw;
}

#score-title {
    height: 3vw;
    box-sizing: border-box;
    padding-top: 0.9vw;
    padding-right: 1.5vw;
}

    #score-title div {
        position: relative;
        box-sizing: border-box;
        padding-right: 1vw;
        font-size: 1.2vw;
        font-weight: 600;
    }

        #score-title div::before {
            content: "";
            position: absolute;
            top: 0.3vw;
            height: 1.3vw;
            width: 0.3vw;
            background-color: #00b262;
            right: 0;
            border-radius: 1vw;
        }

#score {
    box-sizing: border-box;
    padding-right: 0.9vw;
    padding-top: 0.5vw;
    height: 4.5vw;
    /* background-color: yellow; */
    position: relative;
}

    #score::after {
        content: "";
        position: absolute;
        bottom: 0;
        right: 1.5vw;
        /* transform: translateX(-50%); */
        width: 89%;
        height: 0.08vw;
        background-image: linear-gradient(to left, gray, transparent);
    }

    #score img {
    }

#comment-title {
    position: relative;
    box-sizing: border-box;
    padding-right: 1.5vw;
    font-size: 1.2vw;
    padding-top: 1vw;
    height: 3.5vw;
}

    #comment-title div {
        position: relative;
        box-sizing: border-box;
        padding-right: 1vw;
        font-size: 1.2vw;
        font-weight: 600;
    }

        #comment-title div::before {
            content: "";
            position: absolute;
            top: 0.3vw;
            height: 1.3vw;
            width: 0.3vw;
            background-color: #00b262;
            right: 0;
            border-radius: 1vw;
        }

#comment {
    height: 15.5vw;
    box-sizing: border-box;
    padding-right: 1.5vw;
    padding-top: 0.6vw;
}

#comment-input {
    height: 14.3vw;
    width: 31.7vw;
    border-radius: 3vw;
    padding: 2vw;
    box-sizing: border-box;
    color: #282828;
    resize: none;
}

#sender-title-container {
    font-size: 0;
    height: 3.5vw;
    box-sizing: border-box;
    padding-right: 2vw;
    padding-top: 0.7vw;
}

    #sender-title-container > div {
        font-size: 0;
        display: inline-block;
        vertical-align: top;
    }

        #sender-title-container > div > div {
            display: inline-block;
            vertical-align: top;
            box-sizing: border-box;
            padding-right: 0.5vw;
        }

#send-as-you-container {
    width: 12vw;
}

#send-as-you-check {
}

#send-as-you-title, #send-as-unknown-title {
    font-size: 1.25vw;
    font-weight: 500;
}

#send-as-you-title {
    /*    box-sizing: border-box;
    padding-right: 0.5vw;*/
}

#send-as-unknown-container {
    box-sizing: border-box;
    padding-right: 0.5vw;
}

#send-as-unknown-check {
}

#send-as-unknown-title {
}

.sender-check {
    border: 0.1vw solid lightgray;
    width: 1.5vw;
    height: 1.5vw;
    border-radius: 0.5vw;
}

    .sender-check.checked {
        background-color: #00b262;
    }

    .sender-check:not(.checked) {
        cursor: pointer;
    }

#submit-comment-container {
    box-sizing: border-box;
    padding-right: 9.5vw;
    padding-top: 0.6vw;
}

#submit-comment {
    background-color: #00b262;
    border: none;
    color: white;
    width: 15.5vw;
    height: 3.5vw;
    font-size: 1.4vw;
    border-radius: 2vw;
    cursor: pointer;
    font-weight: 500;
}

    #submit-comment.disabled {
        background-color: gray;
        color: lightgray;
    }

#policy-container {
    font-size: 0.925vw;
    box-sizing: border-box;
    padding-top: 1.1vw;
    padding-right: 7vw;
}

    #policy-container a {
        text-decoration: none;
        color: #0d57c0;
    }

/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    background: hsl(137, 46%, 24%);
    font-family: "Poppins", sans-serif;
}*/

.card {
    max-width: 33rem;
    background: #fff;
    margin: 0 1rem;
    padding: 1rem;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    width: 100%;
    border-radius: 0.5rem;
}

.star {
    font-size: 2.5vw;
    cursor: pointer;
}

.one {
    color: rgb(255, 0, 0);
}

.two {
    color: rgb(255, 106, 0);
}

.three {
    color: #FF9800;
}

.four {
    color: #9CCC65;
}

.five {
    color: rgb(24, 159, 14);
}

#score-output-text {
    font-size: 1.5vw;
    font-weight: 400;
    padding-right: 1vw;
    position: relative;
    top: -0.3vw;
}