* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    text-decoration: none;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: 'Verdana';
}

.content {
    flex: 1;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

/* Contact_us_block-STYLES */

.contact_us_block {
  width: 90%;
  margin: 0 auto 20px;
    padding-left: 215px;
    padding-right: 215px;
}
@media screen and (max-width: 1300px){
    .contact_us_block {
        padding-left: 15px;
        padding-right: 15px; }
}

.question_or_comment_title {
  font-size: 30px;
  font-weight: 700;
  color: #008FDF;
}
@media all and (min-width: 950px){
     .question_or_comment_title {
         margin-top: 130px;
     }
}

.mailbox {
  font-size: 20px;
  font-weight: 700;
  margin-top: 35px;
}

.dispatch_support {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.name {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.form_input{
    font-size: 16px;
    font-family: sans-serif;
    letter-spacing: 1px;
}

.form_input {
    height: 32.4px;
  width: 100%;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  background-color: transparent;
  outline: none;
  padding: 6px 0 7px ;
  transition: 0.3s;
}

.form_group {
  display: flex;
    flex-direction: column;
  margin-top: 55px;
  min-width: 47%;
  position: relative;
}

.form_group_description {
    display: flex;
    flex-direction: column;
    margin-top: 55px;
    min-width: 100%;
    position: relative;
}


@media screen and (max-width: 767px){
    .form_group {
        min-width: 100% }
}

.star {
    display: flex;
    position: absolute;
    margin-top: 50px;
    margin-left: -20px;
    z-index: 3;
    color: #FF2400;

}

.form_input:focus {
  border-bottom: 1px solid #1a73a8;
}

.form_input:focus ~ .form_label,
.form_input:not(:placeholder-shown) ~ .form_label{
  top: -15px;
  font-size: 12px;
  color: 	#808080;
}

.form_label {
  position: absolute;
  top: 0px;
  z-index: -1;
  color: #9e9e9e;
  transition: 0.2s;
}

.prompt {
  color: #FF2400;
  margin-top: 7px;
    font-size: 13px;
}

.nature_question {
    width: 100%;
    border-bottom: 1px solid #1a73a8;
    padding: 0 0 13px;
}

.select {
    width: 90%;
    margin-top: 17px;
    margin-bottom: auto;
    border-radius: 5px;
    height: 26px;
    padding-left: 10px;
}
.star_inventory {
    display: flex;
    position: absolute;
    margin-top: 48px;
    margin-left: -20px;
    z-index: 3;
    color: #FF2400;
}
.description {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.form_group textarea {
    width: 100%;
    height: 32.4px;
}

.message {
    display: flex;
    flex-direction: row-reverse;
}

.submit-btn {
    height: 42px;
    width: 172px;
    box-sizing: border-box;
    border: 0.5px solid #F81D3D;
    border-radius: 21px;
    outline: none;
    color: #F81D3D;
    font-size: 16px;
    line-height: 19px;
    transition: background-color 0.4s, color 0.4s;
    background: transparent;
    margin-top: 24px;
}

.submit-btn:hover {
    background-color: #F81D3D;
    color: #fff;
    cursor: pointer;
}

.prompt_theme {
    color: #FF2400;
    margin-top: 7px;
    font-size: 13px;
}

#comment {
    /* box-sizing: padding-box; */
    overflow:hidden;
    /* demo only: */
    display:block;
    resize: none;
    max-height: 121px;
}

.alert {
    margin-top: 1rem;
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;

    font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}
.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}
.close {
    text-transform: none;
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    float: right;
    font-size: 1.3125rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.5;
    cursor: pointer;
}
