/* UNIVERSAL STYLING */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

/* SIMILAR STYLING */
.label {
  /* background: olive; */
  margin-bottom: 10px;
  height: 40px;
  font-size: 18px;
  padding: 0 10px;

  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
}

.small {
  padding: 5px 8px;
}

input,
select {
  /* background-color: aqua; */
  width: 80%;
  height: 35px;
  font-size: 16px;
  padding: 3px 8px;
  border-color: grey;
  border-radius: 5px;
}

.input-1 {
  margin-left: 9px;
}
.select-1,
.input-2 {
  margin-left: 30px;
}

.input-area,
.options-area {
  /* background-color: red; */
  width: 100%;
  padding: 0 10px;
}

/* BEST CONTAINER */
.best-container {
  /* background-color: grey; */
  padding: 20px 0;
  /* width: 100%;
  height: 46vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; */
}

/* Calculator Main Container */
.main-container {
  background-color: rgb(236, 227, 227);
  width: 400px;
  margin: auto;
  padding: 5px 5px 10px;
  border: 3px solid grey;
  border-radius: 10px;

  /* margin-top: 20px; */

  display: block;
}

/* header */
.header {
  background-color: #3b5998;
  color: #fff;
  font-size: 18px;
  font-weight: 100;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  height: 53px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  letter-spacing: 3px;
  border-radius: 7px;
  margin-bottom: 40px;
}

/* Amount container */
.amount-container {
  /* background-color: bisque; */
  margin-bottom: 25px;
}

/* Service container */
.service-container {
  /* background-color: bisque; */
  margin-bottom: 25px;
}

/* Sharing container */
.sharing-container {
  /* background-color: bisque; */
  margin-bottom: 25px;
}

/* CALCULATE BUTTON STYLING */
.button-container {
  /* background-color: lightpink; */
  height: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

button {
  background-color: rgb(241, 37, 78);
  color: #fff;
  border: none;
  width: 200px;
  height: 30px;
  font-size: 12px;
  font-weight: 700;

  border-radius: 10px;

  transition: 0.4s;
  cursor: pointer;
}

button:hover {
  width: 210px;
  height: 38px;
  font-size: 18px;
  font-weight: 700;
}

/* Button Styling */
.display-tip-container {
  display: none;
}

/* Display amount */
.display-amount {
  /* background-color: orange; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 600px) {
  .main-container {
    width: 98%;
  }

  .best-container {
    padding: 40px 0;
  }
}
