.disabled,
[disabled] {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.5;
}

.form-validate {
    position: relative;
}

.form-validate label.error {
    position: absolute;
    display: inline-block;
    bottom: 0;
    left: 0;
    right: auto;
    background: #e6604a;
    font-size: 12px;
    color: #fff;
    padding: 0 10px;
    margin-top: 5px;
    margin-left: 15px;
    width: auto;
    z-index: 1;
}

.form-validate label.error:before {
    content: "";
    position: absolute;
    top: -8px;
    left: 5px;
    border: 5px solid transparent;
    border-bottom: 5px solid #e6604a;
}

.modal .form-validate label.error {
    top: auto;
    left: auto;
}

.form-validate .input-label {
    position: relative;
    font-weight: 600;
    color: var(--tp-common-black);
}

.form-validate .input-label.req:after {
    content: '*';
    position: absolute;
    margin-left: 5px;
    color: #ff0000;
}

.form-validate .form-control {
    height: 50px;
    padding: 0 20px;
    width: 100%;
    font-size: 14px;
    outline: none;
    color: var(--tp-common-black);
    background-color: var(--tp-grey-6);
    border: 1px solid #f7f7f7;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -o-border-radius: 7px;
    -ms-border-radius: 7px;
    border-radius: 7px;
}

.form-validate .form-control:focus {
    border-color: var(--tp-common-green);
    outline: 0;
    box-shadow: none;
}

.scrollbar {
    position: relative;
    display: block;
    max-height: 600px;
    overflow: auto;
}

/* width */
.scrollbar::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.scrollbar::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
.scrollbar::-webkit-scrollbar-thumb:hover {
    background: #555;
}