.loading-graphic  {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #f3f3f3; /* Light grey */
  border-top: 3px solid #3498db; /* Blue */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#cost-preview {
  margin-bottom: 35px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 20px 25px;
  margin-top: 15px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.review-order-section #cost-breakdown>div>div>div:nth-of-type(3) {
  visibility: visible;
}

.review-order-section #cost-breakdown>div>div>div:nth-of-type(4),
.review-order-section #cost-breakdown>div>div>div:nth-of-type(5) {
  width: 110px !important;
  margin-left: 25px;
}

.adm-review-icon-hidden {
  display: none !important;
}

.adm-review-row {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  font-family: Arial, sans-serif;
}

.adm-review-col {
  width: 50%;
  padding: 5px 15px 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.adm-review-col.col-third {
  padding: 0 10px;
}

.adm-review-col-header-text {
  color: #000;
  font-size: 40px;
  font-weight: bolder;
}

.adm-review-col-sub-text {
  /* font-size: 11px; */
  font-weight: bold;
  padding-bottom: 10px;
}

.col-third .adm-review-col-sub-text {
  padding-top: 10px;
}

.adm-review-row-grey-bg {
  background-color: #f8f9fa;
  border-radius: 20px;
  padding: 15px 15px 0px;
  margin: 20px 0;
}

.adm-review-col.adm-review-col-header-cans {
  border: 2px solid #ed3e75;
  border-radius: 20px;
}


@media screen and (min-width: 1024px) {
  .adm-floating-preview {
    position: absolute;
    left: calc(100% + 40px);
    width: 320px;
    z-index: 9999999;
  }

  .col-third .adm-icon-xxl {
    height: 40px;
  }

  .adm-review-col-sub-text {
    font-size: 11px;
  }
}

@media screen and (max-width: 768px) {
  .adm-review-col-sub-text {
    font-size: 10px;
  }

  .review-order-section #cost-breakdown>div>div>div:nth-of-type(4) {
    display: none;
  }

  .review-order-section #cost-breakdown>div>div>div:nth-of-type(5) {
    width: auto !important
  }
}