
/*# sourceMappingURL=custom.min.css.map */
.btn-primary {
  color: #ffffff !important;
  background-color: #437eeb;
  transition: all 500ms ease;
  border: none !important;
}

::selection {
  color:#fff;
  background:#17da5b;
}

.custom_rfq_form {
  padding:25px;
}

.custom_rfq_form-button {
  margin:25px 0 10px 0em;
  border-radius: 0.4em;
}


.shape-fixed {
  position: absolute;
  right: 10%;
  top: 65px;
}

.shape-fixed img {
  animation: rotate-animation 10s infinite linear;
}


@keyframes rotate-animation {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate-animation {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

table.pandas_table {
  border: 2px solid #FFFFFF;
  width: 100%;
  text-align: center;
  border-collapse: collapse;
}
table.pandas_table td, table.pandas_table th {
  border: 1px solid #FFFFFF;
  padding: 3px 4px;
}
table.pandas_table tbody td {
  font-size: 13px;
}
table.pandas_table td:nth-child(even) {
  background: #EBEBEB;
}
table.pandas_table thead {
  background: #FFFFFF;
  border-bottom: 4px solid #333333;
}
table.pandas_table thead th {
  font-size: 15px;
  font-weight: bold;
  color: #333333;
  text-align: center;
  border-left: 2px solid #333333;
}
table.pandas_table thead th:first-child {
  border-left: none;
}

table.pandas_table tfoot {
  font-size: 14px;
  font-weight: bold;
  color: #333333;
  border-top: 4px solid #333333;
}
table.pandas_table tfoot td {
  font-size: 14px;
}

div.greyGridTable {
  border: 2px solid #FFFFFF;
  width: 100%;
  text-align: center;
  border-collapse: collapse;
}
.divTable.greyGridTable .divTableCell, .divTable.greyGridTable .divTableHead {
  border: 1px solid #FFFFFF;
  padding: 3px 4px;
}
.divTable.greyGridTable .divTableBody .divTableCell {
  font-size: 13px;
}
.divTable.greyGridTable .divTableCell:nth-child(even) {
  background: #EBEBEB;
}
.divTable.greyGridTable .divTableHeading {
  background: #FFFFFF;
  border-bottom: 4px solid #333333;
}
.divTable.greyGridTable .divTableHeading .divTableHead {
  font-size: 15px;
  font-weight: bold;
  color: #333333;
  text-align: center;
  border-left: 2px solid #333333;
}
.divTable.greyGridTable .divTableHeading .divTableHead:first-child {
  border-left: none;
}

.greyGridTable .tableFootStyle {
  font-size: 14px;
  font-weight: bold;
  color: #333333;
  border-top: 4px solid #333333;
}
.greyGridTable .tableFootStyle {
  font-size: 14px;
}
/* DivTable.com */
.divTable{ display: table; }
.divTableRow { display: table-row; }
.divTableHeading { display: table-header-group;}
.divTableCell, .divTableHead { display: table-cell;}
.divTableHeading { display: table-header-group;}
.divTableFoot { display: table-footer-group;}
.divTableBody { display: table-row-group;}
.table-sm>:not(caption)>*>*{
  padding: 0.1rem 0.1rem;
}

.progress-label .progress-bar .label {
  background-color: #0ab39c;
}

#file-upload-form {
  /* max-width: 400px; */
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #ddd;
}

#file-upload-form button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#file-upload-form button:hover {
  background-color: #0056b3;
}



/* Overlay for modal */
#modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
}

#template-confirmation-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  width: 470px;
  z-index: 1000;
  text-align: center;
}

/* Text inside modal */
#template-confirmation-modal p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

/* Button Grid Layout */
#template-confirmation-modal .button-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Creates two columns */
  gap: 10px; /* Adds space between buttons */
  margin-top: 20px;
}

/* Button styles */
#template-confirmation-modal button {
  background-color: #405189; /* Primary blue color */
  color: white;
  font-size: 16px;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  width: 100%; /* Makes buttons take full width of grid cell */
  box-sizing: border-box;
}

/* Hover Effect */
#template-confirmation-modal button:hover {
  background-color: #0056b3; /* Darker shade of blue */
  transform: scale(1.05);
}

/* Active button effect */
#template-confirmation-modal button:active {
  transform: scale(0.98);
}

/* Disabled button effect */
#template-confirmation-modal button:disabled {
  background-color: #d6d6d6;
  color: #9e9e9e;
  cursor: not-allowed;
}

/* Specific button colors */
#download-template {
  background-color: #28a745; /* Green for 'Download' */
}

#download-template:hover {
  background-color: #218838; /* Darker green on hover */
}

#do-not-upload {
  background-color: #dc3545; /* Red for 'Do Not Upload' */
}

#do-not-upload:hover {
  background-color: #c82333; /* Darker red on hover */
}

#upload-as-per-the-template {
  background-color: #17a2b8; /* Teal for 'Upload As Per Template' */
}

#upload-as-per-the-template:hover {
  background-color: #138496; /* Darker teal on hover */
}