/**
* 2007-2022 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2022 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/

.rating-area.align-center {
    margin: auto;
    background: none;
}
.rating-area{
  width:100px;
  padding:10px 0 10px 0;
  background:#e8e8e8;
  border-radius:5px;
  display:flex;
  flex-direction:column;
}
.align-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
.transition-fast{
  transition:0.2s ease-out;
}
.thumbs-up-circle {
        width: auto;
        background: #f0f0f0;
        border-radius: 50%;
        box-shadow: 1px 1px 0px rgb(0 0 0 / 20%);
        cursor: pointer;
        margin-bottom: 5px;
        margin-top: 5px;
        margin-left: 10px;
        padding: 15px;
}
.thumbs-up{
  color:#2196f3;
  font-size:24px;
  transform:rotate(0) translate(0);
}
.thumbs-up-circle:hover{
   box-shadow:1px 1px 2px rgba(0,0,0,0.5);
}
.thumbs-up-circle:hover .thumbs-up{
  color:#1976D2;
  transform:rotate(-5deg) translate(0px, -1px);
}
.thumbs-up-circle:active{
  background:#e0e0e0;
  box-shadow:1px 1px 0px rgba(0,0,0,0.2);
}
.thumbs-up-circle:active .thumbs-up{
  color:#065bae;
  transition:0.1s;
  transform:rotate(-10deg) translate(0px, -2px);
}
.thumbs-down{
  color:#9E9E9E;
  font-size:24px;
  transform:rotate(0) translate(0);
}
.thumbs-up-circle:hover .thumbs-down{
  color:#565656;
  transform:rotate(5deg) translate(0px, 1px);
}
.thumbs-up-circle:active .thumbs-down{
  color:#424242;
  transition:0.1s;
  transform:rotate(10deg) translate(0px, 2px);
}
.rating-area.align-center .thumbs-up-circle i.fa {
    font-size: 30px !important;
}
.thumbs-up-circle.align-center.transition-fast.up {
    background: white;
    color: white;
    border: 3px solid #18decf;
}
.thumbs-up-circle.align-center.transition-fast.down {
    border: 3px solid #eb5656;
     background: white;
    color: white;
}
.thumbs-up-circle.align-center.transition-fast.up i.fa.fa-thumbs-o-up {
    color: #18decf;
}
.thumbs-up-circle.align-center.transition-fast.down i.fa.fa-thumbs-o-down {
    color: #eb5656;
}
.thumbs-up-circle.up.active{
	background: #18decf !important;
}
.thumbs-up-circle.down.active{
	background: #eb5656 !important;
}
.thumbs-up-circle.align-center.transition-fast.up.active i.fa.fa-thumbs-o-up {
    color: white;
}
.thumbs-up-circle.align-center.transition-fast.down.active i.fa.fa-thumbs-o-down {
    color: white;
}
label.txt-rating-area {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}
.comment_boxlike{
    display: none;
}
.comment_boxlike.show{
    display: block;;
}
.comment_boxlike button#submit_comment {
    display: block;
    margin: auto;
    background: #18decf;
    border: 1px solid;
    color: white;
    padding: 5px 15px;
    cursor: pointer;
    border-radius: 20px;
    padding: 10px 30px;
    margin-top: 10px;
}
.comment_boxlike textarea {
    width: 100%;
    max-width: 300px;
    height: 70px;
    padding: 10px;
}

@media (max-width: 767px){
    label.txt-rating-area {
        font-size: 17px;
        font-weight: bold;
        text-align: center;
    }
}