/*
 *  Remodal - v1.0.6
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */

/* Default theme styles for the background */

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

/* Default theme styles of the overlay */

.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */

.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */

.remodal {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;

  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);

  color: #2b2e38;
  background: #fff;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */

.remodal-closez {
  position: absolute;
  top: 0;
  left: 0;

  display: block;
  overflow: visible;

  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;

  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;

  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

/* Dialog buttons */

.remodal-confirm,
.remodal-cancel {
  font: inherit;

  display: inline-block;
  overflow: visible;

  min-width: 110px;
  margin: 0;
  padding: 12px 0;

  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;

  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;

  border: 0;
}

/* Keyframes
   ========================================================================== */

@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;

    opacity: 1;
  }
}

@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;

    opacity: 1;
  }
}

@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);

    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);

    opacity: 0;
  }
}

@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);

    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);

    opacity: 0;
  }
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Media queries
   ========================================================================== */

@media only screen and (min-width: 641px) {
  .remodal {
    max-width:660px;
  }
}

/* IE8
   ========================================================================== */

.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}
/* modal review start */
.newShoprRating {
    width: 100%;
    max-width: 660px;
    position: relative;
    margin: 0 auto;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background-color: #fff;
    padding: 35px 40px;
	-webkit-animation: modal-main normal .3s ease;
    animation: modal-main normal .3s ease;
}
.newShoprRating .remodal-close {
    width: 48px;
    height: 48px;
    position: absolute;
    right: -24px;
	padding: 0;
	border:none;
    top: -24px;
    background: #76b9e8;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 30px;
    color: #fff;
    -webkit-box-shadow: 0 5px 10px rgb(122 122 122 / 15%);
    box-shadow: 0 5px 10px rgb(122 122 122 / 15%);
    cursor: pointer;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 45px;
  line-height:48px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width:48px;
  content: "\00d7";
  text-align: center;
}

.newShoprRating #ratingModalTitle{
	text-align:left;
	    color: #000;
}
.newShoprRating .grid .col,
.newShoprRating  .grid .col-mb,
.newShoprRating .grid.grid-2 .col,
.newShoprRating .grid.grid-2 .col-mb{
	width:100%!important;
	padding: 0;
}
.name-email .col{
	margin-bottom:20px;
}
.newShoprRating input[type="text"] {
    width: 100%;
    height: 52px;
    display: block;
    background-color: #fff;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: 1px solid #dbdbdb;
    padding: 0 18px;
    font-size: 16px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition .2s;
}
.newShoprRating .rating-form-label,
.newShoprRating .rating-form-label,.newShoprRating .control-label{
    font-size: 14px;
    line-height: 16px;
    display: block;
    margin-bottom: 5px;
	color:#000;
	font-weight:400!important;
}
.custom-star .rating-form-label{
    text-transform: lowercase;
	}
.newShoprRating .rate_separator {
    border-top:none!important;
    height:0px!important;
}
.newShoprRating #input-comment{
	border: 1px solid #dbdbdb!important;
}
.add_rating-button{
	    width: 100%;
	display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 52px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0 25px;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    text-shadow: 0 1px 0 #2779b1;
    background: -webkit-gradient(linear,left top,left bottom,from(#76b9e8),color-stop(47.92%,#55b1f1),to(#4e90f3));
    background: -webkit-linear-gradient(top,#76b9e8 0,#55b1f1 47.92%,#4e90f3 100%);
    background: -o-linear-gradient(top,#76b9e8 0,#55b1f1 47.92%,#4e90f3 100%);
    background: linear-gradient(180deg,#76b9e8 0,#55b1f1 47.92%,#4e90f3 100%);
    -webkit-box-shadow: 0 4px 6px rgb(0 0 0 / 15%);
    box-shadow: 0 4px 6px rgb(0 0 0 / 15%);
    white-space: nowrap;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}
.newShoprRating .rate-star.small-stars {
    width: 20px;
    height:20px;
}
.custom-star .grid-2{
	margin-bottom:20px;
}
.name-email .field_desc{
	display:none;
}
.column-l{
	padding-left:0;
}
.column-r{
	text-align:left;
}
.none{
	display:none;
}
.comment-item-left {
    width: 52px;
    margin-right: 15px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.comment-item-avatar {
    width: 52px;
    height: 52px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #f5f8fe;
    font-size: 22px;
    line-height: 26px;
}
.ratings-item:not(:last-child) {
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 30px;
}
@media (min-width: 501px){
.ratings-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}
}
.ratings-item {
    margin-bottom: 25px;
}
.ratings-item .ratings-item-comment {
    margin: 15px 0!important;
}
.rating-sender{
	font-size:16px;
	margin-bottom: 5px;
}
.ratings-item .ratings-item-comment{
	width:100%;
	font-size:16px;
}
.ratings-item-comment .input-text{
	font-size: 14px;
    margin-bottom: 10px;
}
.review-all-container{
	display:flex;
	    justify-content: space-between;
}
.review-container-left{
	width:100%;
}
@media (min-width: 1024px){
.review-container-right {
    margin-left: 24px;
    margin-right: 0;
    width: 336px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
}
@media (max-width: 1023px){
	.review-all-container{
		flex-direction: column;
	}
}
.card-sidebar-column {
    background-color: #fff;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    position: relative;
    padding: 15px 18px;
    -webkit-box-shadow: 0 5px 15px #e3e3e3;
    box-shadow: 0 5px 15px #e3e3e3;
}
.comment-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.comment-info-value {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
}
.comment-info-stars {
    margin-left: auto;
    margin-bottom: 5px;
}
.comment-info-value span {
    font-size: 32px;
    line-height: 38px;
}
.rate {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.rate-active, .rate-hover {
    color: var(--color-link);
}
.rate-star {
    font-size: 26px;
    line-height: 26px;
}
.comment-chart li {
    font-size: 14px;
    line-height: 20px;
    margin: 15px 0;
}
.comment-chart-line {
    margin-top: 5px;
    height: 10px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #f7f5f5;
}
.comment-chart-line span {
    display: block;
    height: 10px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: -webkit-gradient(linear,left top,right top,from(#ffa751),to(#ffe259));
    background: -webkit-linear-gradient(left,#ffa751 0,#ffe259 100%);
    background: -o-linear-gradient(left,#ffa751 0,#ffe259 100%);
    background: linear-gradient(90deg,#ffa751 0,#ffe259 100%);
}
.comment-info-stars .rate-star{
   background: transparent!important;
    color:#FF9768!important;
}
.review-container-right .shop_summary_add_rating {
    width:100%!important;
	
}
.review-container-right .shop_summary_rating{
	padding: 0;
    border: none;
    margin-bottom: 20px;
    background-color: transparent;
    border-radius: 0px;
}
.review-container-right .shop_summary_add_rating{
	text-align:center;
}


.review-container-right .add_rating-button{
	display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 52px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0 25px;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    text-shadow: 0 1px 0 #2779b1;
    background: -webkit-gradient(linear,left top,left bottom,from(#76b9e8),color-stop(47.92%,#55b1f1),to(#4e90f3));
    background: -webkit-linear-gradient(top,#76b9e8 0,#55b1f1 47.92%,#4e90f3 100%);
    background: -o-linear-gradient(top,#76b9e8 0,#55b1f1 47.92%,#4e90f3 100%);
    background: linear-gradient(180deg,#76b9e8 0,#55b1f1 47.92%,#4e90f3 100%);
    -webkit-box-shadow: 0 4px 6px rgb(0 0 0 / 15%);
    box-shadow: 0 4px 6px rgb(0 0 0 / 15%);
    white-space: nowrap;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}