@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

/*Resets*/

* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  font: 400, 14px, "Roboto", sans-serif;
  background: #f5f5f4;
  -webkit-font-smoothing: antialiased;
  height: 100%;
  margin: 0;
}

button,
textarea,
label,
select {
  font: 400, 14px, "Roboto", sans-serif;
}

button {
  cursor: pointer;
}

/* --- */
header {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin-bottom: 10px;
  padding-bottom: 0;
  background-color: #252422;
}

header img {
  /* border-radius: 100px 100px; */
  width: 50px;
  margin-left: 30px;
}

header h1 {
  color: #fffcf2;
  justify-content: center;
  align-self: center;
  margin: auto;
}

main {
  width: 100%;
  margin: 0 auto;
  min-height: 100%;
  /* max-width: 1120px; */
  /* height: 100vh;*/
}

.content {
  height: auto;
  margin-bottom: 51px;
}

.content-inside {
  /* padding: 20px; */
  padding-bottom: 50px;
}

main form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  height: auto;
}

form input {
  margin-top: 5px;
  padding: 5px;
  width: 100%;
  height: 40px;
  color: #333;
  border: 1px solid #dcdce6;
  border-radius: 8px;
  padding: 0 24px;
}

form label {
  text-align: right;
  font-weight: bold;
  color: #4277bb;
  margin-left: 5px;
  padding: 5px;
}

form select {
  margin-top: 5px;
  padding: 5px;
  width: 100%;
  height: 40px;
  color: #333;
  border: 1px solid #dcdce6;
  border-radius: 8px;
  padding: 0 24px;
}

.column {
  margin: 0 25px;
  display: inline-block;
  vertical-align: top;
  width: 45%;
}

.row {
  display: flex;
  justify-content: center;
  margin: 15px auto;
  padding: 20px;
}

.button {
  width: 100px;
  background: #f5990d;
  border: 0;
  color: #fffcf2;
  font-weight: bold;
  font-size: 17px;
  line-height: 50px;
  transition: filter 0.2s;
  margin-top: 10px;
}

form .containerButtons {
  display: flex;
  justify-content: center;
}

.containerButtons button {
  margin-left: 5px;
}

.button-starblue {
  background: #0078bf;
  margin-left: 5px;
}

.button:hover {
  filter: brightness(90%);
}

.btnRadio {
  display: none;
}

.row.titleSectionAddedExpenses {
  margin-bottom: 0;
}

section.addedExpenses {
  background-color: #403d391f !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  height: 100%;
  /* min-height: 100%; */
}

section .btnSend {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 10px;
  padding-bottom: 60px;
}

footer {
  clear: both;
  /* position: relative; */
  /* height: 200px; */
  /* margin-top: -200px; */
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #403d39;
  color: white;
  text-align: center;
  height: 50px;
  margin-top: -50px;
}

footer a:hover {
  text-decoration: none;
  border: 2px solid #4277bb;
  background-color: #4277bb;
  color: white;
  padding: 20px;
  opacity: 0.8;
}

/* --CSS Tabs -- */

form input.invalid {
  background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
  display: none;
}

.tab h2 {
  color: #4277bb;
  margin-left: 30px;
  margin-bottom: 10px;
}

#containerSteepIndicator {
  text-align: center;
  margin-top: 20px;
}

.step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #0078bf;
}

.hide {
  display: none;
}

.display {
  display: flex;
}

.payment-methods {
  display: flex;
  justify-content: center;
  align-content: space-evenly !important;
  flex-wrap: wrap !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.btnRadioPayment {
  display: flex;
  margin: 0.5em;
  padding: 0;
}

.btnRadioPayment label {
  display: flex;
  flex-direction: column;
  width: 4.3em;
  align-items: center;
  align-self: center;
  margin-left: 0.1em;
  padding: 0;
}

.pInfo {
  color: red;
  font-size: 12px;
  text-align: center;
}

/* Hoverable Dropup */

.dropbtn {
  display: block;
  background-color: #0078bf;
  color: #fffcf2;
  padding: 20px;
  font-size: 17px;
  border: none;
}

.dropup {
  position: relative;
  display: inline-block;
}

.dropup-content {
  display: none;
  position: absolute;
  background-color: #dcdce6;
  min-width: 160px;
  bottom: 50px;
  z-index: 1;
}

.dropup-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropup-content a:hover {
  background-color: #ccc;
}

.dropup:hover .dropup-content {
  display: block;
}

.dropup:hover .dropbtn {
  background-color: #2980b9;
}

/* baget notification */

.notification {
  position: relative;
  padding-top: 0px;
  padding-left: 17px;
  padding-bottom: 0px;
  padding-right: 0px;
}

.notification .badge {
  position: absolute;
  top: -10px;
  right: -10px;
  padding: 5px 10px;
  border-radius: 50%;
  background: #f5990d;
  color: white;
  font-weight: 700;
  font-size: 17px;
  z-index: 1;
}

div.pixContainer {
  display: none;
}

@media only screen and (max-width: 767px),
  (min-device-width: 767px) and (max-device-width: 1024px) {
  html {
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;
    overflow-x: hidden;
  }

  header {
    text-align: center;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 12px;
  }

  header img {
    display: none;
  }

  h2 {
    text-align: center;
  }

  .content {
    margin-bottom: 0;
  }

  .tab h2 {
    color: #4277bb;
    margin-bottom: -5px;
    padding: 0;
  }

  .row {
    display: flex;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 0px;
    padding: 10px;
  }

  .column {
    width: 95%;
    margin: 10px 10px;
    padding: 10px 10px;
  }

  input,
  button,
  textarea,
  label,
  select {
    font-size: 1em;
  }

  form input {
    height: 40px;
    margin-top: 2px;
    padding: 0 10px;
  }

  form .containerButtons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-bottom: 40px;
    padding-bottom: 10px;
  }

  .button {
    width: 100px;
    height: 50px;
    font-size: 1em;
    line-height: 50px;
  }

  #containerSteepIndicator {
    text-align: center;
    margin-top: -13px;
  }

  /* menu and footer */
  footer {
    clear: both;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #403d39;
    color: white;
    text-align: center;
    margin-top: -50px;
    height: 40px;
  }

  .dropbtn {
    font-size: 14px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .dropup:hover .dropup-content {
    display: block;
    background-color: #bbbbbb;
    margin-left: -50px;
    margin-bottom: -8px;
  }

  .dropup-content a {
    padding: 10px 14px;
    border-bottom: 1px solid #2980b9;
  }

  .payment-methods {
    display: flex;
    justify-content: center;
    align-content: space-evenly !important;
    flex-wrap: wrap !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 14px;
  }

  section.addedExpenses {
    background-color: #403d391f !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-top: -30px;
    height: 100%;
    /* min-height: 100%; */
  }

  .notification .badge {
    position: fixed;
    float: right;
    right: 0;
    margin-top: 300px;
    margin-right: 4px;
    padding: 5px 10px;
    border-radius: 50%;
    background: #f5990d;
    font-weight: 700;
    font-size: 17px;
    color: white;
    z-index: 1;
  }
}
