.confirm-container {
  filter: unset !important;
  display: none;
  filter: unset !important;
  position: fixed;
  min-height: 400px;
  height: min-content;
  width: 300px;
  left: 50%;
  margin-left: -150px;
  top: 50%;
  margin-top: -150px;
  background-color: #e6eaea;
  box-shadow: 2px 2px 5px grey;
  border-radius: 5px;
  z-index: 100;
}

.confirm-container * {
  filter: unset !important;
}

.close-confirm {
  position: absolute;
  top: -8px;
  right: 20px;
  color: #32465a;
  font-size: 44px;
  font-weight: bold;
  cursor: pointer !important;
  z-index: 101;
}

.confirm-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.container-confirm-text {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 20pt;
  font-weight: bold;
  width: 100%;
}

.container-confirm-text > div {
  text-align: center;
  font-size: 20pt;
  font-weight: bold;
}

.container-confirm-additional {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  font-weight: bold;
  margin-top: -4em;
}

.sendAgainInput {
  width: max-content;
  font-size: 12pt;
  color: red;
  opacity: 0.6;
  cursor: pointer;
  margin-bottom: 5px;
}

.sendAgainInput:hover {
  opacity: 1;
}

.container-confirm-bttn {
  display: flex;
  justify-content: space-around;
}

.confirm-bttn {
  border-radius: 1px;
  border: 0;
  box-shadow: inset 0 0 0 2px #585858;
  background-color: transparent;
  color: #585858 !important;
  cursor: pointer;
  font-size: 14pt;
  width: 120px;
  height: 50px;
  padding: 5px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .confirm-container {
    width: 500px;
    margin-left: -250px;
  }

  .container-confirm-bttn {
    justify-content: space-around;
  }
}

@media screen and (min-width: 1680px) {
}
