.border-line-area.style-two {
    text-align: center;
    position: relative;
    border-bottom: 0;
    padding: 8px 0;
    z-index: 1;
}

.border-line-area.style-two .border-line-title {
    display: inline-block;
    margin-bottom: 0 !important;
    background: #fff;
    padding: 10px;
}

.border-line-area.style-two::before {
    position: absolute;
    content: "";
    width: 100%;
    height: .1px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #e5e5e5;
    z-index: -1;
}

.alert {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    padding: 10px 10px;
}

@media (max-width: 424px) {
    .alert {
        flex-direction: column;
    }
}

.alert-icon {
    flex-shrink: 0;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: grid;
    place-content: center;
    color: #fff;
}

.alert-content {
    flex: 1;
}

.alert-title {
    font-size: 17px;
    font-weight: 600;
    color: black;
}

.alert-message {
    color: rgb(0 0 0 / 60%);
}

.alert--danger {
    background-color: rgb(235 34 34 / 7%);
    border-left: 3px solid #eb2222;
}

.alert--danger .alert-icon {
    background-color: #eb2222;
}

.alert--primary {
    background-color: rgb(70 52 255 / 7%);
    border-left: 3px solid #4634ff;
}


.alert--info {
    --color: 16 107 218;
    background-color:  rgb(var(--color) / 7%);
    border-left: 3px solid rgb(var(--color));
}

.alert--info .alert-icon {
    background-color:  rgb(var(--color));
}


.alert--primary .alert-icon {
    background-color: #4634ff;
}


.alert--success {
    background-color: rgb(40 199 111 / 7%);
    border-left: 3px solid #28c76f;
}

.alert--success .alert-icon {
    background-color: #28c76f;
}

.alert--warning {
    background-color: rgb(255 159 67 / 7%);
    border-left: 3px solid #ff9f43;
}

.alert--warning .alert-icon {
    background-color: #ff9f43;
}

.cursor-pointer {
    cursor: pointer;
}


.apply-day-btn{
    padding: 2px 6px;
    font-size: 12px;
    background-color: #f0f5f8;
    color: #000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.time-slot select.form-select{
    font-size: 13px !important;
}
.time-slot select.form-select:focus{
    box-shadow: none !important;
}
select.form-select::-webkit-scrollbar {
  width: 4px;
}

select.form-select::-webkit-scrollbar-track {
  background: #a1a1a1;
}

select.form-select::-webkit-scrollbar-thumb {
  background: var(--border-color);
}

select.form-select::-webkit-scrollbar-thumb:hover {
  background: var(--border-color) !important;
}

select.form-select::-webkit-scrollbar-thumb:hover {
  background: #555;
}


.tt-checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.tt-checkbox label {
  position: relative;
  cursor: pointer;
}

.tt-checkbox label:before {
  content:'';
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #d3d3d3;
  padding: 8px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  border-radius: 4px;
}

.tt-checkbox input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    left: 7px;
    width: 6px;
    height: 11px;
    border: solid #0058fc;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.tt-checkbox input:checked + label:before {
  border-color: #0058fc;
  border-radius: 4px;
}