| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 | 
							- @-webkit-keyframes shake-rotate {
 -     0% {
 -         -webkit-transform:scale(1) rotate(0deg);
 -         transform:scale(1) rotate(0deg)
 -     }
 - 
 -     50% {
 -         -webkit-transform:scale(.8) rotate(-5deg);
 -         transform:scale(.8) rotate(-5deg)
 -     }
 - 
 -     to {
 -         -webkit-transform:scale(1) rotate(3deg);
 -         transform:scale(1) rotate(3deg)
 -     }
 - }
 - 
 - @keyframes shake-rotate {
 -     0% {
 -         -webkit-transform:scale(1) rotate(0deg);
 -         transform:scale(1) rotate(0deg)
 -     }
 - 
 -     50% {
 -         -webkit-transform:scale(.8) rotate(-5deg);
 -         transform:scale(.8) rotate(-5deg)
 -     }
 - 
 -     to {
 -         -webkit-transform:scale(1) rotate(3deg);
 -         transform:scale(1) rotate(3deg)
 -     }
 - }
 - 
 - .shake-rotate {
 -     display: inline-block;
 - 
 -     -webkit-animation-duration: .4s;
 -     animation-duration: .4s;
 -     -webkit-animation-iteration-count: infinite;
 -     animation-iteration-count: infinite;
 -     -webkit-animation-name: shake-rotate;
 -     animation-name: shake-rotate;
 -     -webkit-animation-timing-function: ease-in-out;
 -     animation-timing-function: ease-in-out
 - }
 - 
 - .feedback-dialog {
 -     .details {
 -         margin-top: 20px;
 -         padding-left: 60px;
 -         padding-right: 60px;
 - 
 -         textarea {
 -             min-height: 100px;
 -         }
 -     }
 - 
 -     .input-control {
 -         background-color: $feedbackInputBg;
 -         color: $feedbackInputTextColor;
 - 
 -         &::-webkit-input-placeholder {
 -             color: $feedbackInputPlaceholderColor;
 -         }
 -         &::-moz-placeholder {  /* Firefox 19+ */
 -             color: $feedbackInputPlaceholderColor;
 -         }
 -         &:-ms-input-placeholder {
 -             color: $feedbackInputPlaceholderColor;
 -         }
 -     }
 - 
 -     .rating {
 -         line-height: 1.2;
 -         margin-top: 10px;
 -         text-align: center;
 - 
 -         .star-label {
 -             color: $rateStarLabelColor;
 -             font-size: 14px;
 -             height: 16px;
 -         }
 - 
 -         .star-btn {
 -             color: $rateStarDefault;
 -             cursor: pointer;
 -             display: inline-block;
 -             font-size: $rateStarSize;
 -             outline: none;
 -             position: relative;
 -             text-decoration: none;
 -             @include transition(all .2s ease);
 - 
 -             &.active,
 -             &:hover,
 -             &.starHover {
 -                 color: $rateStarActivity;
 -             };
 - 
 -         }
 -     }
 - }
 
 
  |