﻿/*  CSS of Write Review Page */

/* star rating */

.star {
    font-size: 50px;
    cursor: pointer;
}

.one {
    color: rgb(255, 0, 0);
}

.two {
    color: rgb(255, 106, 0);
}

.three {
    color: rgb(251, 255, 120);
}

.four {
    color: rgb(255, 255, 0);
}

.five {
    color: rgb(255, 215, 0);
}
/*end of star rating */
.write-review-hdg1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #000000;
}

/*.write-review-hdg2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #E71D36;
    
}*/


/* drag & drop */

/*html * {
    box-sizing: border-box;
}

p {
    margin: 0;
}*/

.upload__box {
    padding: 10px;
}

.upload__inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.upload__btn {
    display: inline-block;
    height:100px;
    width:70px;
    font-weight: 500;
    /*color: #fff;*/
    text-align: center;
    min-width: 116px;
    padding: 5px;
    transition: all 0.3s ease;
    /*cursor: pointer;*/
    border: 2px solid;
    /*background-color: #4045ba;*/
    border-color: #000000;
    /*border-radius: 0px;*/
    /*line-height: 20px;*/
    font-size: 50px;
}

    .upload__btn:hover {
        background-color: unset;
        color: #4045ba;
        transition: all 0.3s ease;
    }

.upload__btn-box {
    margin-bottom: 10px;
}

.upload__img-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.upload__img-box {
    width: 200px;
    padding: 0 10px;
    margin-bottom: 12px;
}

.upload__img-close {
    width: 24px;
    height: 24px;
    /*border-radius: 50%;*/
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: center;
    line-height: 24px;
    z-index: 1;
    cursor: pointer;
}

    .upload__img-close:after {
        content: '\2716';
        font-size: 14px;
        color: white;
    }

.img-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-bottom: 100%;
}
 

/* end of drag & drop */



    /* End Of Sections  */
