.star{
          color: goldenrod;
          font-size: 2.0rem;
          padding: 0 0.1rem; /* space out the stars */
        }
        .star::before{
          content: '\2606';    /* star outline */
          cursor: pointer;
        }
        .star.rated::before{
          /* the style for a selected star */
          content: '\2605';  /* filled star */
        }
        
        .stars{
            counter-reset: rateme 0;   
            font-size: 2rem;
            font-weight: 500;
        }
        .star.rated{
            counter-increment: rateme 1;
        }
        .stars::after{
            content: counter(rateme) '/5';
        }
        .col-md-9 .container .row .col-8{
        	width: 100%;
        	height: 100%;
        }
        .col-md-9 .container .row .col-8 input,.col-md-9 .container .row .col-4 input{
        	width: 100%;
        	height: 100%;
        	font-family: "Ubuntu", sans-serif;
        	text-transform: uppercase;
        }
        .col-md-9 .container .row .col-4 .essence-btn{
        	width: 100%;
        	height: 25px;
        	line-height: 25px;
        }
