.icon-notice{
	color:rgb(0, 192, 239);
}
.icon-notice:hover{
	color:rgb(0, 167, 208);
}

.icon-danger{
	color:rgb(221, 75, 57);
}
.icon-danger:hover{
	color:rgb(211, 55, 36);
}

.icon-success{
	color:rgb(0, 166, 90);
}
.icon-success:hover{
	color:rgb(0, 141, 76);
}

.icon-primary{
	color:rgb(60, 141, 188);
}
.icon-primary:hover{
	color:rgb(53, 124, 165);
}

.icon-warning{
	color:rgb(243, 156, 18);
}
.icon-warning:hover{
	color:rgb(219, 139, 11);
}

.required:after {
	content:" *";
	color:red;
}

/* alias of the .required:after */
.field-required:after {
	content:" *";
	color:red;
}

.skier-type-list ul {
	list-style:square;
	padding-left:18px;
}

tr th {
	white-space: nowrap;
}

.btn-row {
    margin-left: 0px;
    margin-top: 5px;
}

.row-elem{
    float: left;
    margin-right: 10px;
}
.loading{
    background: url('../img/loading.gif') no-repeat;
    width: 100%;
    float: left;
    display: none;
}
.m-t-30{
    margin-top: 30px;
}
.history-label {
    position: absolute;
    top: -4px;
    right: 0px;
    font-weight: bold;
    cursor: pointer
}

.note-label {
    position: absolute;
    top: 10px;
    right: 0px;
    font-weight: bold;
    cursor: pointer
}
.sweet-alert.show-input.ski-sweet-delete-modal input{
    -webkit-text-security: disc !important;
    text-security: disc !important;
}

#checkbox-customer-profile {
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
    vertical-align: middle;
    border: 1px solid grey;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
}

#checkbox-customer-profile:checked {
    background-color: green;
}

/* Style for Reports Dropdown */
.report-list {
    max-height: 100vh;
    overflow-y: auto;
}
.report-list::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.report-list::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
    box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.3);
}

.report-list::-webkit-scrollbar-thumb {
    background-color: #c3c3c3;
    box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
}

/* Loader Start */
.loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .loader {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  /* Loader End */
  
/* Shared base styles */
.custom-alert-warning,
.custom-alert-danger,
.custom-alert-info,
.custom-alert-success {
  width: 100%;
  padding: 8px 12px;
  margin-bottom: 12px;
  border-left: 4px solid !important;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.3;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Icons */
.custom-alert-warning .icon,
.custom-alert-danger .icon,
.custom-alert-info .icon,
.custom-alert-success .icon
 {
  font-size: 16px;
  margin-right: 8px;
  line-height: 1;
}

/* Warning styles */
.custom-alert-warning {
  background-color: #fff3cd;
  color: #856404;
  border-color: #ffca2c;
}

.custom-alert-warning .icon {
  color: #d39e00;
}

/* Danger styles */
.custom-alert-danger {
  background-color: #f8d7da;
  color: #842029;
  border-color: #dc3545;
}

.custom-alert-danger .icon {
  color: #dc3545;
}

/* Info styles */
.custom-alert-info {
  background-color: #d1ecf1;
  color: #0c5460;
  border-color: #17a2b8;
}

.custom-alert-info .icon {
  color: #17a2b8;
}

/* Success styles */
.custom-alert-success {
  background-color: #e6f4ea;
  color: #2e7d32;
  border: 1px solid #2e7d32;
}

.custom-alert-success .icon {
  color: #2e7d32;
}
