/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/******************************************************
						Root
******************************************************/
:root {
	/* Colors Var */
	--primary-color:#14133b;
	--secondary-color:#F09227;
	--secondary-color-02:#F05E27;
	--secondary-color-03:#f29111;
	--sub-heading-color:#F07B27;
	--event-box-bg:#EF8926;
	--button-bg:#C0C0C0;
	--button-hover-bg:#F09227;
	--grey-bg:#F0EFF1;
	--grey-color:#A9A9A9;
}

/******************************************************
                  All Classes And Tags
******************************************************/

 .ratingControl {
    position: relative;
    display: inline-flex;
    direction: rtl;
  }
  .ratingControl.disable{
    pointer-events:none;
  }
  .ratingControl__radio {
    position: absolute;
    height: 0 !important;
    width: 0 !important;
    opacity: 0 !important;
  }
  .ratingControl__star {
    position: relative;
    display: block;
    height:26px;
    width: 13px;
    cursor: pointer;
    overflow: hidden;
	margin-left: -0.25px !important;
  }
  .ratingControl__star:nth-last-of-type(odd)::before, .ratingControl__star:nth-last-of-type(odd)::after {
    left: 0;
    -webkit-clip-path: polygon(50% 0%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
            clip-path: polygon(50% 0%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  }
  .ratingControl__star:nth-last-of-type(even)::before, .ratingControl__star:nth-last-of-type(even)::after {
    right: 0;
    -webkit-clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%);
            clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%);
  }
  .ratingControl__star::before, .ratingControl__star::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
  }
  .ratingControl__star::before {
    width: 200%;
    background-color: #fff;
  }
  .ratingControl__star::after {
    background-color:#fdc532;
  }
  .ratingControl__star:hover::after, .ratingControl__star:hover ~ .ratingControl__star::after, .ratingControl__radio:checked ~ .ratingControl__star::after {
    width: 200%;
  }
  .ratingControl__star.m{
    margin-right:5px;
  }

  .rating-system{
	  background: var(--primary-color);
	  color: #fff;
	  padding: 14px 15px;
	  border-radius: 0;
	  width: 260px;
	  margin: 0 0 0 20px;
	  font-size: 16px;
	  line-height: 24px;
	  text-align: center;
	  position: relative;
	  overflow: hidden;
	  bottom: 0s;
	  right: 0;
	  transition: all 0.3s ease;
	  box-shadow: 0px 0px 4px -1px rgb(242 242 244);
	  border-radius: 6px;
	  margin-bottom: 12px;
  }
  ..footer_v1 .footer-img-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
  .rating-system.active{
    padding:10px;
	box-shadow:inherit;
  }
  .rating-system.active .notification{
   margin-top:0;
  }
  .rating-system.active .minimise-btn {
    top: 50%;
    cursor: pointer;
    margin-top: -12px;
}
  .rating-system.active .rating-star-wrapper{
    display:none;
  }
  .rating-system.active .rate-us .rate-btn{
   margin:0;
  }
  .rating-system .flex {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content:center;
  }
  .rating-system  .rate-us{
   width:100%;
  }
  .rating-system .rating-data{
    width:100%;
    padding-top:10px;
  }
  .rating-system .rating-star-wrapper{
    position:relative;
  }
  .rating-system .rating-star-wrapper .default-svg{
    white-space: nowrap;
    line-height:0;
  }
  .rating-system .rating-star-wrapper .active-svg{
    width: 0;
    z-index: 11;
    position: absolute;
    top: 0;
    left: 0;
    overflow:hidden;
    white-space: nowrap;
    line-height:0;
  }
  .rating-system .rating-star-wrapper svg{
    display:inline-block;
  }

  .rating-system .rate-us .rate-btn{
    cursor: pointer;
    background: var(--secondary-color-03);
    box-shadow: 0 3px 3px 0 var(--secondary-color-02);
    padding: 2px 20px;
    border-radius: 4px;
    margin-top: 15px;
    display: inline-block;
    margin-bottom: 3px;
	font-weight: 500;
    color: #fff;
  }
  .rating-system .rate-us .rate-btn:hover{
    background: var(--secondary-color-02);
    box-shadow: 0 3px 3px 0 var(--sub-heading-color);
  }
  .rating-system .rating-box{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    transition: all 0.3s ease;
  }
  .rating-system .rating-box.active{
    z-index: 11;
    background: var(--secondary-color-02);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 16px;
    transform: translateX(0%);
  }
  .footer_v1 .footer-bottom .rating-system .rating-box p{
    color:#fff !important;
	line-height:inherit;
  }
  .rating-system .rating-box p{
    margin-bottom:7px;
	  font-size: 16px;
  }
  .rating-system .rating-box p small,
  .rating-system .rating-box .message-box{
    font-size: 75%;
    color: var(--grey-bg);
    margin-top:0;
  }
  .rating-system .notification{
    font-size: 75%;
    margin-top: 10px;
    color: var(--secondary-color-03);
  }
  

  .rating-system .plus rect {
    transition: all 800ms;
    transform: scaleY(1);
    transform-origin: 50% 50%;
  }
  
  .rating-system .minus .vertical-line {
    transform: scaleY(0);
  }
  .rating-system .minus.plus .vertical-line {
    transform: scaleY(1);
  }
  .rating-system .minimise-btn{
    position: absolute;
    right: 10px;
    top: 5px;
    cursor: pointer;
  }
  .rating-system .minimise-btn svg{
    fill:#fff;
  }
@media only screen and (min-width:991px) {
	.footer_v1 .footer-img-logo {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.footer_v1 .footer-img-logo img {
		display: inline-block;
		margin:20px 0;
	}
	.footer_v1 .rating-system{
		padding:14px; 
		margin-left:20px;
		margin-bottom:0;
	}
}
@media only screen and (max-width:414px) {
	.rating-system{
		margin-left:0;
	}
}