#modal-calculator {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 3; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  animation-name: animatetop;
  animation-duration: 0.4s;
  background: rgb(0, 0, 0, 0.7);
}

.total-container {
  display: flex;
}

.total {
  font-size: 40px;
  font-weight: bold;
  margin-right: 20px;
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
.calculator-contact {
  cursor: pointer;
    border: 0;
  border-radius: 20px;
  padding: 12px 30px;
  background-color: #ffd87c;
  color:#232350;
  width: max-content;
  transition: 0.4s;
}

.calculator-contact:hover {
background-color: #232350;
color:#ffd87c;
}


.calculator-button {
    float: right;
    font-weight: bold;
    width: 130px;
    position: fixed;
    right: 3%;
    bottom: 3%;
    z-index: 3;
    border: 0;
  border-radius: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 20px;
  padding-left: 20px;
  /* margin-top: 30px; */
  cursor: pointer;
  color: #232350;
  background-color: #ffd87c;
  box-shadow: 5px 5px;
  text-align: center;
  transition: 0.5s;
}

.calculator-button:hover {
  color:#ffd87c;
  background-color:#232350;
}

form p {
  font-weight: 600;
}

.close {
  float: right;
  font-size: 16px;
  font-weight: 300;
  cursor: pointer;
  border: 0;
  border-radius: 20px;
  padding: 6px 15px;
  background-color: #232350;
  color: #fff;
}

.close:hover {
  background-color: #ffd87c;
  color: #232350;
}

.caculator-button-container {
  text-align: center;
}
#calculate {
  cursor: pointer;
  border: 0;
  border-radius: 20px;
  padding: 12px 30px;
  background-color: #232350;
  color: #fff;
}
#calculate:hover {
  background-color: #ffd87c;
  color: #232350;
  border-style: solid;
  border-color: #232350;
  transition: 0.4s;
}

#total {
    padding: 10px;
    width: max-content;
    /* max-width: 300px; */
    resize:both;
    overflow: auto;
    border-radius: 4px;
    font-size: 30px;
    font-weight: 700;
    background-color:#232350;
    color:#ffd87c;
  font-size: 100%;
  font-weight: 700;
  background-color: #232350;
  color: #ffd87c;
}

#fortyContainerAmount,
#twentyContainerAmount,
#bulkTonAmount {
  border: 2px solid #ffd87c;
  border-radius: 4px;
  box-sizing: border-box;
  text-align: center;
}
@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
  .modal-content {
    border-radius: 10px;
    padding-right: 50px;
    padding-left: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
    margin: 15% auto; /* 15% from the top and centered */

    border: 1px solid #888;
    width: 70%; /* Could be more or less, depending on screen size */
    -webkit-backdrop-filter: blur(80px);
    backdrop-filter: blur(80px);
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0.5px 1px 0.5px rgba(0, 0, 0, 0.2);
    color: #232350;
  }
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
