/*Was this helpful display style*/
.wth-helpful-wraper {
    background: #f4f6f8;
    border: 1px solid #dfe3e8;
    border-radius: 5px;
    color: #212b36;
    margin: 50px auto 50px auto;
    padding: 15px 0px 15px 0px;
    text-align: center;
}
.button-positive {
    box-shadow: 0 5px 15px 0 rgba(0,0,0,0.15);
    background-color: #47c1bf !important;
    color: #fff;
    text-transform: unset;
    font-family: ShopifySans, Helvetica, Arial, sans-serif;
}
.wth-heading h4{
    margin: 0px 0px 10px 0px !important;
}
.feed-form-wraper{
    display: none;
    padding: 0px 80px;
}
.wth-helpful-wraper p { 
    margin-top: 10px !important; 
    margin-bottom: 10px !important;
}
.hlpful-submit-button { margin-top: 15px !important; }
.no-title,.yes-title{
    display: none;
}
.button-negative {
    box-shadow: 0 5px 15px 0 rgba(0,0,0,0.15);
    background-color: #fb8b8a !important;
    color: #fff;
    text-transform: unset;
    font-family: ShopifySans, Helvetica, Arial, sans-serif;
}
.wth-helpful-wraper button{
    border-radius: 5px;
    margin: 0px 5px 0px 5px;
}
.wth-helpful-button{
    padding: 10px 30px;
    font-size: 16px;
}
.wth-helpful-wraper button:focus{
    border: none;
    text-decoration: none;
    outline: none;
}
.wth-helpful-wraper button:hover{
    text-decoration: none;
}
.button-positive:hover{
    box-shadow: 0 5px 25px 0 rgba(0,0,0,0.25);
}
.button-negative:hover{
   box-shadow: 0 5px 25px 0 rgba(0,0,0,0.25); 
}
.button-positive:focus{
    box-shadow: 0 0 0.1875em 0.1875em rgba(40,162,160,0.5);
}
.button-negative:focus{
    box-shadow: 0 0 0.1875em 0.1875em rgba(226,114,113,0.5);
}

.button-positive:hover,.button-positive:focus{
    background-color: #28a2a0;
}
.button-negative:hover,.button-negative:focus{
    background-color: #e27271;
}
.negative-title{
    margin-bottom: 10px;
}
.negative-title label{
    display: block;
    text-align: left;
}
.feedback-textarea{
    background: #fff;
    height: 5em;
    border: 
    margin: 0;
    padding: .5em;
    position: relative;
    z-index: 10;
    border-radius: 5px;
    border: 1px solid #868e96;
}
.hlpful-submit-button{
    background-color: #5c6ac4;
    margin-top:20px;
    border-radius: 5px;
    padding: 15px 10px;
    width: 110px;
    height: 54px;
    color: #fff;
    font-size: 16px;
}
.loader {
    border: 7px solid #dcd7ca;
    border-radius: 50%;
    border-top: 7px solid #3498db;
    border-bottom: 7px solid #3498db;
    margin: 20px auto;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}