.gritter-close {
    display: none !important;
}

.gritter-close::before {
    content: '\f00d'; /* FontAwesome close (X) icon */
}

/* Firefox loader bar fix */
.pace .pace-progress {
    transform: translate3d(0%, 0, 0);
    -webkit-transform: translate3d(0%, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
    transition: transform 300ms ease-in-out;
}

@-moz-document url-prefix() {
    .pace .pace-progress {
        transform: translate3d(0%, 0, 0) !important;
        transition: transform 300ms ease-in-out !important;
    }
    
    .pace .pace-activity {
        display: none !important;
    }
}
/* END Firefox loader bar fix */

.form-control-lg-custom {
    font-size: 2.0rem;
    padding: 0.8rem;
    height: auto;
}

.dollar-icon {
    width: 40px;
    height: 40px;
    background-color: #facc15; /* Yellow */
    color: #2d353c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    border: 4px solid #2d353c;
    font-family: Arial, sans-serif;
}

.dollar-icon-small {
    width: 20px;
    height: 20px;
    background-color: #facc15; /* Yellow */
    color: #2d353c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    border: 2px solid #2d353c;
    font-family: Arial, sans-serif;
}

/* hammer icon */
.coin {
    width: 100px;
    height: 100px;
    background-color: #f1b600; /* yellow coin */
    border: 6px solid black;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Hammer shape with before and after elements */
  .hammer-icon {
    position: relative;
    width: 20px;
    height: 50px;
    background-color: black;
    border-radius: 4px;
  }
  
  .hammer-icon::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -20px;
    width: 60px;
    height: 20px;
    background-color: black;
    border-radius: 10px 10px 3px 3px;
    transform: rotate(0deg);
  }


.toastify-custom {
    font-size: 0.8rem;
}

/** FIXED COLUMNS FOR LARGE TEXTS */
.column-text-cut {
    max-width: 150px;
    overflow: hidden;
}

.column-text-cut-large {
    max-width: 230px;
    overflow: hidden;
}