/* Zappaty Formatted scroll bar */

/* width */
::-webkit-scrollbar {
  width: 14px;
}

/* Track */
::-webkit-scrollbar-track {
  //box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  border: 4px solid #EEEEEE;
  background-color: #EEEEEE;
  border-radius: 10px;
  background-clip:padding-box;
}

/* Firefox specific - only properties we can adjust */
*{
  scrollbar-width: thin;
  scrollbar-color: rgb(238,238,238) rgb(255,255,255);
}

/* Custom Button - Also used on file access page */
.zpCustomForm-button{
    display:table-cell;
    background-color: #F47F57;
    border: 1px solid;
    border-color: #F47F57;
    color: #FFFFFF;
    width: 125px;
    height: 30px;
    /* padding-left: 25px; */
    border-radius: 5px;
    font-size: 14px;
    visibility: visible;
    /* animation-delay: 0.2s; */
    /* animation-name: fadeInRight; */
    font-size: 18px;
    font-family: Inter Merriweather sans-serif;
    margin-top: 10px;
    /* padding-top: 3px; */
    padding-bottom: 3px;
    /* font-weight: 500; */
    /* letter-spacing: 0.10em; */
    /* text-transform: uppercase; */
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
    float: right;
    line-height: 1.23;
}

.form-group .zp-form-input-check {
  margin-left: 0; /* Reset any default margin */
  margin-right: 0.5rem; /* Space between checkbox and text */
  align-self: flex-start;
}

/* Hide the default checkbox */
input[type="checkbox"]:not(.default-check) {
    appearance: none; /* Hide the default appearance */
    -webkit-appearance: none; /* For older versions of Safari */
    -moz-appearance: none; /* For older versions of Firefox */
    background-color: var(--secondary-color); /* Set the background color */
    width: 20px; /* Set the width */
    height: 20px; /* Set the height */
    border-radius: 4px; /* Add some border radius for rounded corners */
    outline: none; /* Remove the default focus outline */
    cursor: pointer; /* Change the cursor on hover */
}

/* Custom check mark */
input[type="checkbox"]:not(.default-check)::before {
    width: 10px; 
    height: 10px; 
    position: relative;
    bottom: 4px; 
    left: 5px; 
}

/* Style the check mark when the checkbox is checked */
input[type="checkbox"]:not(.default-check):checked::before {
    display: inline-block;
    content: '\2713'; /* Unicode check mark character */
    font-size: 14px; /* Adjust the size of the check mark */
    color: #FFFFFF; /* Color of the check mark */
}

/* Style the check mark when the checkbox is checked */
input[type="checkbox"]:not(.default-check):hover:not(.no-hover)::before {
    display: inline-block;
    content: '\2713'; /* Unicode check mark character */
    font-size: 14px; /* Adjust the size of the check mark */
    color: #FFFFFF; /* Color of the check mark */
}

/* Style the checkbox when it's disabled */
input[type="checkbox"]:not(.default-check):disabled {
    cursor: not-allowed; /* Change the cursor for disabled checkboxes */
}

/* Style the checkbox when it's auto checked in password validation */
.zp-form-input-check.no-hover.checked::before {
    display: inline-block;
    content: '\2713'; /* Unicode check mark character */
    font-size: 14px; /* Adjust the size of the check mark */
    color: #FFFFFF; /* Color of the check mark */
}