.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 */