/*------------- Form ---------------*/

.nb-form {
    position: fixed;
    z-index: 9999;
    width: 300px;
    background: #FFF;
    right: 20px;
    bottom: -475px;
    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.14),0 1px 5px 0 rgba(0,0,0,0.12),0 3px 1px -2px rgba(0,0,0,0.2);
}
.nb-form:hover {
    bottom: 0px;
}

/*-- Title --*/

.title {
    background: #bf261c;
    font-size: 16px !important;
    padding: 15px 18px !important;
    color: #fff !important;
    border-radius: 10px 10px 0 0;
    text-align: center;
}

/*-- Text --*/

.new-form p {
    font-size: 13px;
    margin: 0;
    padding: 15px;
    color: #666;
}

.new-form p.message {
    margin-left: 7px;
}

/*-- Form Elements --*/

.new-form form {
    padding: 0 15px 15px 15px;
}

.new-form input,
.new-form textarea {
    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;
}

.new-form input:focus,
.new-form textarea:focus {
    outline: none;
    box-shadow: none;
}

.new-form input[type='submit'] {
    display: block;
    width: 120px;
    padding: 0 20px;
    height: 35px;
    line-height: 35px;
    border-radius: 20px;
    cursor: pointer;
    transition: all .4s ease;
    color: #fff !important;
    border: none;
    font-size: 15px; 
    margin: 0 15px;
    float: left;

}

.new-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);
}

.new-form textarea {
    min-height: 110px;
}


.new-form ::-webkit-input-placeholder {
    color: #999;
}

.new-form ::-moz-placeholder{
    color: #999;
}

.new-form :-ms-input-placeholder {
    color: #999;
}

.new-form :-moz-placeholder {
    color: #999;
}

.new-form input[type='submit'] {
    background: #bf261c;
}
.new-form input[type='submit']:hover {
    background: #000;
}
#mrova-contactform-input {
  width: 95%;
  padding: 5px;
  border: 1px solid #ccc;
  margin-bottom:10px;
  color:#333;
  font-weight:normal;
  margin-top: 0px;
  }

#mrova-contactform-textarea{
  width: 95%;
  height:70px;
  padding: 5px;
  border: 1px solid #ccc;
  margin-bottom:10px;
  color:#333;
  font-weight:normal;
  }
  select.form-select {
    width: 95%;
    font-weight: normal;
    color: #999;
    margin-bottom: 10px;
    border-radius: 0px;
    padding: 3px 6px;
    border-radius: 4px;
    height: 29px !important;
    font-size: 12px;
  }
@media screen and (max-width: 676px) {

    .nb-form .message {
        display: none;
    }

    .nb-form form {
        padding-top: 15px;
    }
    .nb-form{
        right: 50%;
        bottom: -320px;
        left: 50%;
        transform: translateX(-50%);
    }
}