body{
  overflow-x: hidden;
  overflow-y: auto;
  /* background: rgb(246, 243, 243); */
  background: #ffffff;
}

.headers {
  border-bottom: 2px solid #338087;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  position: fixed;
  width: 100%;
  top: 0;
  background: white;
  z-index: 1000;
}

.shadows-card {
  -webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.25);
  -moz-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.25);
  box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.25);
}

.table-customs tbody tr:nth-child(even) {
  background-color: rgb(243, 244, 246, 0.3) !important;
}

.table-customs tbody tr:nth-child(odd) {
  background-color: white; 
}

label {
  font-size: 14px;
  font-weight: 600;
}

.thirdpartystyle {
  color: #374151;
  height: 42px;
}

@media only screen and (max-width: 639px) {
  .thirdpartystyle {
      height: auto;
  }
}

@media only screen and (min-width: 640px) and (max-width: 941px) {
  .thirdpartystyle {
      height: 42px;
  }
}

@media only screen and (min-width: 942px) and (max-width: 1279px) {
  .thirdpartystyle {
      height: auto;
  }
}

@media only screen and (min-width: 2605px) {
  .thirdpartystyle {
      height: auto;
  }
}

td,
th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  border-bottom: 0;
  background-color: #e9eff7;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
}

/* Create an active/current tablink class */
.tab button.active {
  /* background-color: #ccc; */
  background-color: #338087 !important;
  color: #fff !important;
  font-weight: 600;
}

.tab button:hover {
  background-color: #dce1e8;
}

/* Style the tab content */
.tabcontent {
  display: none;
  /* padding: 6px 12px; */
  border: 0px solid #ccc;
  border-top: none;
}

.calculate_btn {
  transition: all .3s;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 1px;
  padding: 10px 30px;
  border-radius: 15px;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #ffffff;
  background-color: #338087 !important;
  --tw-ring-color: transparent !important;
}

.calculate_btn:hover {
  background-color: #078451 !important;
  border-color: #078451 !important;
  transition: all .3s;
}

.calculate_btn:focus-visible {
  outline: none !important;
}

.reset_btn {
  transition: all .3s;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 1px;
  padding: 10px 30px;
  border-radius: 15px;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #ffffff;
  background-color: #dce1e8 !important;
  --tw-ring-color: transparent !important;
}

.reset_btn:hover {
  background-color: #ced4dc !important;
  border-color: #ced4dc !important;
  transition: all .3s;
}

.reset_btn:focus-visible {
  outline: none !important;
}

.bg-green {
  background-color: #338087 !important;
  color: #fff !important;
}

.bg-gray-100 {
  background-color: rgb(243, 244, 246, 0.3) !important;
}

/* .inputblocks span.inputplaceholder {
  position: absolute;
  margin: 0;
  padding: 0 6px;
  color:  #cccccc;
  display: flex;
  align-items: center;
  font-size: 14px;
  top: 10px;
  left: 16px;
  transition: all 0.2s;
  transform-origin: 0% 0%;
  background: none;
  pointer-events: none;
}

.inputblocks input:valid + span.inputplaceholder,
.inputblocks input:focus + span.inputplaceholder {
  transform: scale(1) translateY(-22px);
  background: #fff;
} */

.inputblocks {
  position: relative; 
}

.inputblocks .inputplaceholder {
    position: absolute;
    left: 0;
    top: 0;
    cursor: text;
    color:  #cccccc;
    background: white;
    font-size: 14px;
    opacity: 1;
    -webkit-transition: all .2s;
            transition: all .2s;
    top: -7px;
    left: 16px;
    z-index: 3;
    line-height: 1;
    padding: 0 5px; 
  }

    .inputblocks .inputplaceholder::after {
      content: " ";
      display: block;
      position: absolute;
      background: white;
      height: 2px;
      top: 50%;
      left: -.2em;
      right: -.2em;
      z-index: -1; 
    }

  .inputblocks input::-webkit-input-placeholder {
    opacity: 1;
    -webkit-transition: all .2s;
            transition: all .2s; 
  }

  .inputblocks input:placeholder-shown:not(:focus)::-webkit-input-placeholder {
    opacity: 0; 
    font-size: 14px;
  }

  .inputblocks input:placeholder-shown:not(:focus) + .inputplaceholder {
    font-size: 16px;
    top: 13px;
  }