body {
    margin: 0;
    max-width: 100%;
}
.wrapper_moo_rent {
    
}
.nav_bar_items {
    list-style: none;
    color: darkblue;
    padding: 10px;
    background: #055fff;
}
.nav_bar_items li {
    padding: 10px;
    display: inline-flex;
    background: #ffffff;
}
.nav_bar_items li a {
    text-align: center;
    text-decoration: none;
    color: #000000;
    padding: 1px;
    font-size: 13px;
    font-family: arial;
}
.nav_bar_items li a:hover {
    text-align: center;
    text-decoration: none;
    color: #78fcff;
    font-family: arial;
}
.wrapper_moo_rent {
    width: 100%;
    margin: auto;
    text-align: center;
}
.form_where_destination input[type="text"] {
    border: none;
    box-shadow: 0px 0px 1px #00162c;
    height: 40px;
    outline: none;
    border-radius: 10px;
}
.form_where_destination input[type="date"] {
    border: none;
    box-shadow: 0px 0px 1px #00162c;
    height: 40px;
    outline: none;
    border-radius: 10px;
}
.form_where_destination input[type="search"] {
    border: none;
    box-shadow: 0px 0px 1px #00162c;
    height: 40px;
    outline: none;
    border-radius: 10px;
}
.form_where_destination input[type="number"] {
    border: none;
    box-shadow: 0px 0px 1px #00162c;
    height: 40px;
    outline: none;
    border-radius: 10px;
}
.form_where_destination select{
    border: none;
    box-shadow: 0px 0px 1px #00162c;
    height: 40px;
    outline: none;
    border-radius: 10px;
}
.form_where_destination form input file{
box-shadow: none;
    
}
.form_where_destination form textarea {
    border: none;
    box-shadow: 0px 0px 1px #00162c;
    height: 40px;
    padding: 10px;
    outline: none;
    border-radius: 10px;
}
.form_where_destination form button {
border: none;
    box-shadow: 0px 0px 1px;
    height: 40px;
    color: white;
    background: #055fff;
    border-radius: 10px;
}
.spacer_div {
    width: 100%;
    background: black;
    height: 1px;
    margin-top: 33px;
}
input[type="file"] {
  outline: none;
  padding: 4px;
  margin: -4px;
}

input[type="file"]:focus-within::file-selector-button,
input[type="file"]:focus::file-selector-button {
  outline: 2px solid #0964b0;
  outline-offset: 2px;
}

input[type="file"]::before {
  top: 16px;
}

input[type="file"]::after {
  top: 14px;
}

/* ------- From Step 2 ------- */

input[type="file"] {
  position: relative;
}

input[type="file"]::file-selector-button {
  width: 136px;
  color: transparent;
}

/* Faked label styles and icon */
input[type="file"]::before {
  position: absolute;
  pointer-events: none;
  /*   top: 11px; */
  left: 40px;
  color: #0964b0;
  content: "Upload File";
}

input[type="file"]::after {
  position: absolute;
  pointer-events: none;
  /*   top: 10px; */
  left: 16px;
  height: 20px;
  width: 20px;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230964B0'%3E%3Cpath d='M18 15v3H6v-3H4v3c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-3h-2zM7 9l1.41 1.41L11 7.83V16h2V7.83l2.59 2.58L17 9l-5-5-5 5z'/%3E%3C/svg%3E");
}

/* ------- From Step 1 ------- */

/* file upload button */
input[type="file"]::file-selector-button {
  border-radius: 4px;
  padding: 0 16px;
  height: 40px;
  cursor: pointer;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.16);
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
  margin-right: 16px;
  transition: background-color 200ms;
}

/* file upload button hover state */
input[type="file"]::file-selector-button:hover {
  background-color: #f3f4f6;
}

/* file upload button active state */
input[type="file"]::file-selector-button:active {
  background-color: #e5e7eb;
}

/* ------------------------ */