
/*--- CSS For Feedback Form ---*/
.nb-form {
    position: fixed;
    z-index: 9999;
    width: 280px;
    background: #FFF;
    right: 20px;
    bottom: -485px;
    transition: all .8s cubic-bezier(.22, .67, .43, 1.22) .2s;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.38),0 0px 6px 0 rgba(0,0,0,0.65),0 3px 1px -2px rgba(0,0,0,0.78);
}
.fb-form {
    height: 310px;
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;
    overflow-x: hidden;
}
.nb-form iframe {
    width: 100%;
    height: 530px;
    min-height: 0px;
    min-width: 0px;
    margin: 0px;
    padding: 0px;
    background-image: none;
    background-color: rgba(0, 0, 0, 0);
    border-width: 0px;
    float: none;
    transition: none !important;
    background-position: 0% 0%;
}
.feedback-open {
    bottom: 0px;
}

/*-- User Icon --*/

.nb-form .user-icon {
    position: absolute;
    top: -49px;
    right: 12px;
    display: block;
    width: 58px;
    margin: 20px auto 15px;
    border-radius: 100%;
}

/*-- Title --*/

.nb-form .feedback-title {
    background: #fff;
    font-size: 16px !important;
    padding: 1px 13px !important;
    color: #000 !important;
    border-radius: 10px 10px 0 0;
    font-weight: bold;
    margin-left: 0px;
    margin-right: 0px;
    flex-grow: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: 7px;
    margin-bottom: 0px;
    cursor: pointer;
}

/*-- Text --*/

.nb-form p {
    font-size: 13px;
    margin: 0;
    padding: 15px;
    color: #666;
}

.nb-form p.message {
    margin-left: 7px;
    text-align: left;
}

.nb-form .feedback-intro {
    text-align: left;
    font-size: 12px;
}

/*-- Form Elements --*/

.nb-form form {
    padding: 0 15px 15px 15px;
}

.nb-form input,
.nb-form textarea {
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 12px;
    width: 254px;
    max-width: 254px;
    margin-bottom: 10px;
    margin-left: 7px;
    padding: 6px;
    border: none;
    border-radius: 4px;
    color: #999;
    border-bottom: 1px solid #f0f0f0;
}

.nb-form input:focus,
.nb-form textarea:focus {
    outline: none;
    box-shadow: none;
}

.nb-form input[type='submit'] {
    display: block;
    width: 120px;
    margin: 0 auto;
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    cursor: pointer;
    transition: all .4s ease;
    color: #fff !important;
    border: none;
}

.nb-form input[type='submit']:hover {
    box-shadow: 0 3px 3px 0 rgba(0,0,0,0.07),0 1px 7px 0 rgba(0,0,0,0.02),0 3px 1px -1px rgba(0,0,0,0.1);
}

.nb-form textarea {
    min-height: 110px;
}


.nb-form ::-webkit-input-placeholder {
    color: #aaa;
}

.nb-form ::-moz-placeholder{
    color: #aaa;
}

.nb-form :-ms-input-placeholder {
    color: #aaa;
}

.nb-form :-moz-placeholder {
    color: #aaa;
}

.nb-form input[type='submit'] {
    background: #03a9f4;
}

@media screen and (max-width: 676px) {
    .nb-form .message {
        display: none;
    }

    .nb-form form {
        padding-top: 15px;
    }
    .nb-form{
        right: 50%;
        left: 50%;
        transform: translateX(-50%);
    }
    .feedback-open {
        bottom: 0px;
    }
}

.nb-form svg.bubble {
  fill: rgb(67, 132, 245);
  display: inline-block;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
    margin: 0px 0px -6px 21px;
}

.bubble * {
  fill: rgb(67, 132, 245);
}

.feedback-message {
    padding-top: 10px;
    text-align: center;
    margin-bottom: 5px;
    font-weight: bold;
}
