* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #181a1b;
}

a,
a:hover {
  text-decoration: none;
  outline: none;
}

label {
  color: #FFF;
  cursor: pointer;
}
h3,h4,h6{
  color: #FFF;
}
.btn:focus {
  box-shadow: none;
}

.btn:hover {
  color: unset;
}

.form-control {
  border-radius: 3px;
  padding: 20px;
  background-color: #FFF;
  font-size: 14px;
  color: #000;
  transition: all 0.2s ease-in-out;
}

.form-control::placeholder {
  color: #7e7e7e;
}

.form-control,
textarea.form-control {
  box-shadow: 1px 3px 10px transparent;
  border: 1px solid transparent;
  transition: all 0.5s ease-in-out;
}

.form-control:focus,
textarea.form-control:focus {
  color: #FFF;
  border-color: #e3af76;
  background-color: #181a1b;
  box-shadow: 1px 3px 10px transparent;
}

textarea.form-control {
  resize: none;
  height: 100px;
}

/********************/
/* Login Page */
/*******************/
#Login {
  padding: 40px 0;
}

#Login .logo {
  text-align: center;
  margin-bottom: 30px;
}

#Login .logo img {
  width: auto;
  height: 100px;
}

#Login .Form {
  background-color: #181a1b;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 20px 0px;
  padding: 40px;
  width: 100%;
  border-radius: 10px;
  margin: auto;
  overflow: hidden;
}

#Login .Form .Header_title,
#Login .createAccont .Header_title {
  margin-bottom: 0;
  text-align: left;
}

#Login .Form .Header_title h2,
#Login .createAccont .Header_title h2 {
  width: fit-content;
  margin-bottom: 0;
  color: #e3af76;
  font-weight: 600;
  font-size: 20px;
  border-left: 3px solid #e3af76;
  padding-left: 10px;
}

#Login .Form .loginButton {
  margin-top: 30px;
  text-align: right;
}

#Login .Form .loginButton button {
  background: #7c4d1a;
  border: none;
  padding: 7px;
  width: 140px;
  border-radius: 3px;
  color: #fff;
  outline: none;
  box-shadow: none;
  transition: all 0.2s ease-in-out;
}

#Login .Form .loginButton button:hover {
  background-color: #4a5053;
}

#Login .createAccont {
  background-color: #181a1b;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 20px 0px;
  padding: 40px;
  width: 100%;
  border-radius: 10px;
  margin: auto;
  overflow: hidden;
}

#Login .createAccont .title {
  text-align: left;
}

#Login .createAccont .title h4 {
  color: #e3af76;
}

#Login .createAccont p {
  color: #FFF;
  width: 90%;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 20px;
}

#Login .createAccont .SignUpButton {
  text-align: right;
}

#Login .createAccont .SignUpButton button {
  background-color: #7c4d1a;
  width: 180px;
  border-radius: 3px;
  outline: none;
  box-shadow: none;
  color: #fff;
  transition: all 0.2s ease-in-out;
}

#Login .createAccont .SignUpButton button:hover {
  background-color: #4a5053;
}

/********************/
/* Register Page */
/*******************/
#Register {
  padding: 40px 0;
}

#Register .logo {
  text-align: center;
  margin-bottom: 30px;
}

#Register .logo img {
  width: auto;
  height: 100px;
}

#Register .Form {
  background-color: #181a1b;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 20px 0px;
  padding: 40px;
  width: 100%;
  border-radius: 10px;
  margin: auto;
  overflow: hidden;
}

#Register .Form .Header_title {
  margin-bottom: 0;
  text-align: left;
}

#Register .Form .Header_title h2 {
  width: fit-content;
  margin-bottom: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  border-left: 3px solid #e3af76;
  padding-left: 10px;
}

#Register .Select_filter {
  float: none;
  color: #000 !important;
  border-radius: 3px;
  height: 40px;
  line-height: 38px;
  border: 1px solid transparent;
  padding-left: 16px;
  padding-right: 30px;
  background-color: #fff !important;
}

#Register .Select_filter .list {
  left: 0;
  right: unset;
  border-radius: 3px;
  width: 100%;
  color: #fff !important;
 
}

#Register .Select_filter .option {
  text-align: left;
  color: #fff !important;
  display: block !important;
  margin-right: 0 !important;
}

#Register .Select_filter:active,
#Register .Select_filter.open,
#Register .Select_filter:focus {
  background-color: #181a1b;
  border-color: #e3af76;
}

#Register .Select_filter .option:hover,
#Register .Select_filter .option.focus,
#Register .Select_filter .option.selected.focus {
  background-color: #e3af76 !important;
  color: #fff !important;
}

#Register .Select_filter:hover {
  border-color: #e3af76;
}

#Register .Select_filter:after {
  right: 12px;
  left: unset;
}

#Register .Select_filter .current {
  color: #7e7e7e;
}

#Register .Form .regButton {
  margin-top: 50px;
  text-align: right;
}

#Register .Form .regButton button {
  background: #7c4d1a;
  border: none;
  padding: 7px;
  width: 160px;
  border-radius: 3px;
  color: #fff;
  outline: none;
  box-shadow: none;
  transition: all 0.2s ease-in-out;
}

#Register .Form .regButton button:hover {
  background-color: #4a5053;
}

/********************/
/* Booking Page */
/*******************/
#Booking {
  padding: 40px 0;
}

#Booking .logo {
  text-align: center;
  margin-bottom: 30px;
}

#Booking .logo img {
  width: auto;
  height: 100px;
}

#Booking .Form {
  background-color: #181a1b;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 20px 0px;
  padding: 40px;
  width: 100%;
  border-radius: 10px;
  margin: auto;
  overflow: hidden;
}

#Booking .Form .Header_title {
  margin-bottom: 0;
  text-align: left;
}

#Booking .Form .Header_title h2 {
  width: fit-content;
  margin-bottom: 0;
  color: #e3af76;
  font-size: 20px;
  font-weight: 600;
  border-left: 3px solid #e3af76;
  padding-left: 10px;
}

#Booking .Select_filter {
  float: none;
  border-radius: 3px;
  height: 40px;
  line-height: 38px;
  border: 1px solid transparent;
  padding-left: 16px;
  padding-right: 30px;
  background-color: #FFF;
}

#Booking .Select_filter .list {
  left: 0;
  right: unset;
  border-radius: 3px;
  width: 100%;
}

#Booking .Select_filter .option {
  text-align: left;
  color: #000 !important;
  display: block !important;
  margin-right: 0 !important;
}

#Booking .Select_filter:active,
#Booking .Select_filter.open,
#Booking .Select_filter:focus {
  background-color: #fff;
  border-color: #e3af76;
}

#Booking .Select_filter .option:hover,
#Booking .Select_filter .option.focus,
#Booking .Select_filter .option.selected.focus {
  background-color: #e3af76 !important;
  color: #fff !important;
}

#Booking .Select_filter:hover {
  border-color: #e3af76;
}

#Booking .Select_filter:after {
  right: 12px;
  left: unset;
}

#Booking .Select_filter .current {
  color: #7e7e7e;
}

#Booking .Form .backBtn {
  margin-top: 50px;
  text-align: right;
}

#Booking .Form .backBtn button {
  background: #7c4d1a;
  border: none;
  padding: 7px;
  width: 160px;
  border-radius: 3px;
  color: #fff;
  outline: none;
  box-shadow: none;
  transition: all 0.2s ease-in-out;
}

#Booking .Form .backBtn button:hover {
  background-color: #4a5053;
}

#Booking .Form h5 {
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
}


#Booking .TimeList button:hover, button:focus, button:active, button.active {
  background: #7c4d1a;
    border: none;
    padding: 7px;
    width: 130px;
    border-radius: 30px;
    margin-right: 5px;
    margin-bottom: 10px;
    color: #fff;
    outline: none;
    box-shadow: none;
    transition: all 0.2s ease-in-out;
  }
  #Booking .TimeList button:focus{
  background: #7c4d1a;
    border: none;
    padding: 7px;
    width: 130px;
    border-radius: 30px;
    margin-right: 5px;
    margin-bottom: 10px;
    color: #fff;
    outline: none;
    box-shadow: none;
    transition: all 0.2s ease-in-out;
  }
  #Booking .TimeList button:active{
  background: #7c4d1a;
    border: none;
    padding: 7px;
    width: 130px;
    border-radius: 30px;
    margin-right: 5px;
    margin-bottom: 10px;
    color: #fff;
    outline: none;
    box-shadow: none;
    transition: all 0.2s ease-in-out;
  }

#Booking .TimeList {
  margin-top: 20px;
}

#Booking .TimeList button {
  background: #4a5053;
  border: none;
  padding: 7px;
  width: 130px;
  border-radius: 3px;
  margin-right: 5px;
  margin-bottom: 10px;
  color: #fff;
  outline: none;
  box-shadow: none;
  transition: all 0.2s ease-in-out;
}

@media only screen and (max-width: 600px) {
  #Booking .TimeList button {
    width: 100px;
    font-size: 14px;
  }
}

/********************/
/* Profile Page */
/*******************/
#Profile {
  padding: 40px 0;
}

#Profile .logo {
  text-align: center;
  margin-bottom: 30px;
}

#Profile .logo img {
  width: auto;
  height: 100px;
}

#Profile .Form .Header_title {
  margin-bottom: 0;
  text-align: left;
}

#Profile .Form .Header_title h2 {
  width: fit-content;
  margin-bottom: 0;
  color: #e3af76;
  font-size: 20px;
  font-weight: 600;
  border-left: 3px solid #e3af76;
  padding-left: 10px;
}

#Profile .Form .Header_title.CardTitle {
  margin-bottom: 30px;
}

#Profile .Form .Header_title.CardTitle h2 {
  margin: auto;
}

#Profile .Backbtn {
  margin-bottom: 20px;
}

#Profile .Backbtn button {
  background: transparent;
  border: 1px solid #7c4d1a;
  padding: 7px;
  width: 160px;
  border-radius: 3px;
  color: #7c4d1a;
  outline: none;
  box-shadow: none;
  margin-right: 10px;
  transition: all 0.2s ease-in-out;
}

#Profile .Backbtn button:hover {
  background-color: #7c4d1a;
  color: #FFF;
}

#Profile .Bookbtn {
  text-align: right;
  margin-bottom: 20px;
}

#Profile .Bookbtn button {
  background: #7c4d1a;
  border: none;
  padding: 7px;
  width: 230px;
  border-radius: 3px;
  color: #fff;
  outline: none;
  box-shadow: none;
  transition: all 0.2s ease-in-out;
}

#Profile .Bookbtn button:hover {
  background-color: #4a5053;
}

#Profile .Form {
  background-color: #181a1b;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 20px 0px;
  padding: 40px;
  width: 100%;
  border-radius: 10px;
  margin: auto;
  overflow: hidden;
}

#Profile .Form .data {
  background-color: #FFF;
  padding: 25px;
  border-radius: 5px;
  margin-bottom: 40px;
}

#Profile .Form .data ul {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

#Profile .Form .data ul li {
  float: left;
  width: 25%;
  text-align: center;
}

#Profile .CardItem {
  background-color: #4a5053;
  padding: 30px;
  border-radius: 5px;
  margin-bottom: 20px;
}

#Profile .CardItem ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#Profile .CardItem ul li {
  color: #fff;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

#Profile .CardItem ul li:last-of-type {
  margin-bottom: 0;
}

#Profile .CardItem ul li span {
  font-weight: 300;
  color: #e3af76;
}

hr {
  background-color: #c59e6a40;
}

@media only screen and (max-width: 600px) {
  label {
    font-size: 14px;
  }
  #Login .logo img {
    height: 75px;
  }
  #Login .Form {
    padding: 30px;
    margin-bottom: 20px;
  }
  #Login .createAccont {
    padding: 30px;
  }
  #Login .Form .loginButton button,
  #Login .createAccont .SignUpButton button,
  #Register .Form .regButton button,
  #Booking .Form .backBtn button,
  #Profile .Backbtn button,
  #Profile .Bookbtn button {
    width: 100%;
    font-size: 14px;
  }

  .form-control,
  #Register .Select_filter .current,
  #Booking .Select_filter .current {
    font-size: 12px;
  }
  #Register .logo img {
    height: 75px;
  }
  #Register .Form {
    padding: 30px;
  }
  #Register .Form .name {
    margin-bottom: 10px;
  }

  #Booking .Form {
    padding: 30px;
  }
  #Booking .logo img {
    height: 75px;
  }

  #Profile .Backbtn {
    margin-bottom: 10px;
  }
  #Profile .Form {
    padding: 30px;
  }
  #Profile .logo img {
    height: 75px;
  }
  #Profile .Form .data ul li {
    float: none;
    width: 100%;
    text-align: left;
    display: block;
    font-size: 12px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 10px;
  }
  #Profile .Form .data ul li:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 601px) and (max-width: 767px) {
  #Login .Form {
    margin-bottom: 20px;
  }

  .form-control,
  #Register .Select_filter .current {
    font-size: 12px;
  }
  #Register .Form .name {
    margin-bottom: 10px;
  }

  #Profile .Form .data ul li {
    float: none;
    width: 100%;
    text-align: left;
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 10px;
  }
  #Profile .Form .data ul li:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .form-control,
  #Register .Select_filter .current {
    font-size: 12px;
  }

  #Profile .Form .data ul li {
    float: none;
    width: 100%;
    text-align: left;
    display: block;
    margin-bottom: 10px;
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 10px;
  }
  #Profile .Form .data ul li:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #Profile .Form .data ul li {
    font-size: 14px;
  }
}
