/********** Testimonial & Submission Form Styling ********/

/* Styles for Testimonial Designs */

/* handsometestimonials Wrapper */
.hndtst_wrapper {
	text-align: center;
}

/* Testimonial Style */
.hndtst {
    padding: 4%;
    margin: 0 1% 2% 1%;
    vertical-align: top;
    position: relative;
}

/* Testimonial Title Style */
#tst_title {
	font-family: 'Lato', sans-serif;
	font-size: 25px;
}
/* Testimonial Rotation-item-wrapper Style - KKAIS */
.rotating-item-wrapper {
	position: relative;
    overflow: visible !important;
}
/* Testimonials Rotation-item Style - KKAIS */
.rotating-item {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
}
/* Testimonials Star Rating*/
div.tst_star_rating_innerwrap{width: 110px;}
.tst_star_rating, .tst_stars_rating {height: 22px; float: left;}
.tst_star_rating {
    background-image: url('../png/yellowstar.png');
    z-index: 2;
    margin-left: -110px;
}
.tst_stars_rating {
    background-image: url('../png/greystar.png');
    width: 110px;
    z-index: 1;
}

/**** Testimonials Submission Form ****/
.hndtst_form_testimonial_wrapper {
    margin-bottom: 20px;
    margin: 3px;
    width: 70%;
    min-width: 186px;
    max-width: 600px;
}
.hndtst_form_testimonial_wrapper h2{
    font-weight: normal;    
}
.hndtst_form_testimonial_wrapper div input,textarea{
    border: 1px solid #ccc;
    border-radius: 5px;
}
/* Set Width of All Fields */
.hndtst_form_input {
    width: 70%;
}
/* Set width of textarea */
#form_input_testimonial {
    width: 100%;
}
/* Set margin for each field + label */
.hndtst_form {
    margin-top: 10px;
}
/* Rating Field */
#form_input_rating {
    width: auto;
}
/* Submission Button */
#form_input_submit {
    margin-top: 10px;
    margin-left: 20%;
    margin-right: 20%;
    width: 60%;
}
.hndtst_backward_arrow,
.hndtst_forward_arrow{
    display: block;
    position: absolute;
    z-index: 2;
    cursor:pointer;
    top:50%;
    width: 30px;
    height: 30px;
    border:5px solid transparent;
    border-top-color: #9E9E9E;
    opacity:0.2;
    
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}

.tst_wrapper:hover .hndtst_forward_arrow
{
    opacity: 0.8;
    right:25px;
}
.tst_wrapper:hover .hndtst_backward_arrow
{
    opacity: 0.8;
    left:25px;
}
.hndtst_backward_arrow{
    left:20px;

    border-left-color: #b6b6b6;
    
    transform:rotate(-45deg);
    -webkit-transform:rotate(-45deg);
    -moz-transform:rotate(-45deg);
    -ms-transform:rotate(-45deg);
}
.hndtst_forward_arrow{
    right:20px;

    border-right-color: #b6b6b6;

    transform:rotate(45deg);
    -webkit-transform:rotate(45deg);
    -moz-transform:rotate(45deg);
    -ms-transform:rotate(45deg);
}
    