﻿.forbidden {
    pointer-events: none;
}
.rtl {
    text-align: right;
    direction: rtl;
}

.ltr {
    text-align: left;
    direction: ltr;
}
.centerText{
    text-align:center !important;
}
/* Loading 1 */
.king-parent-loader {
    justify-content: center;
    width: 100%;
    display: flex;
}
.king-parent-loader-right {
    width: 100%;
    display: flex;
}

.king-loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: kingspin 2s linear infinite;
}

.king-loader-small {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 25px;
    height: 25px;
    animation: kingspin 2s linear infinite;
}

@keyframes kingspin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* Loading 2 */
/*  <span class="inline-loader"></span> */
.inline-loader {
    display: inline-block;
    border: 3px solid #f3f3f3; /* Light gray */
    border-top: 3px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 1s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* bootstrap */
.mt-30 {
    margin-top: 30px !important;
}
/* color */
.siteGreenColor {
    color: green !important;
}

.siteYellowColor {
    color: #f7c32e !important;
}

.siteBlueColor {
    color: #066AC9 !important;
}

.siteDarkGrayColor {
    color: #222529 !important;
}

.siteWhiteColor {
    color: white !important;
}

.siteRedColor {
    color: red !important;
}

.siteBlackColor {
    color: black !important;
}
/* Circle */
.Reddot {
    background-color: red;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    display: inline-block;
}

.Greendot {
    background-color: green;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    display: inline-block;
}

.Graydot {
    background-color: #ccc;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    display: inline-block;
}
/* Validation Style */
input[type="text"].input-validation-error {
    background-color: #fcc;
}

input[type="password"].input-validation-error {
    background-color: #fcc;
}
/* End Validation Style */
.modal .close {
    border: 0px !important;
    font-size: 40px;
    color: #808080;
    background-color: transparent;
}
/* Prevent body from shifting */
body.modal-open {
    overflow: auto !important;
    padding: 0 !important;
}
/* Site button (customized) */
.siteBtn {
    cursor: pointer;
    background-color: #BEE1E6;
    padding: 4px;
    font-size: 11px;
    overflow-wrap: break-word; /* Handle long words */
    word-wrap: break-word; /* For compatibility with older browsers */
    text-align: center;
    border-radius: 5px;
    margin: 2px;
}

.btnGrayLight {
    background-color: #b9b9b9 !important;
    color: #555555 !important;
}

.btnBlueLight {
    background-color: #BEE1E6;
}

.btnRed {
    background-color: red;
    color: white;
}

.btnGreen {
    background-color: green;
    color: white;
}

ul {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
h1 {
    font-size: 2.5rem !important; /* ~40px */
}

h2 {
    font-size: 2rem !important; /* ~32px */
}

h3 {
    font-size: 1.75rem !important; /* ~28px */
}

h4 {
    font-size: 1.5rem !important; /* ~24px */
}

h5 {
    font-size: 1.25rem !important; /* ~20px */
}

h6 {
    font-size: 1rem !important; /* ~16px */
}
.p-10{
    padding:10px !important;
}
.box-comments ul li {
    list-style-type: none;
}
.avatar {
    object-fit: cover !important;
}
.artworkImg{
    background-size:contain !important;
}
/* dropdown list menu */
.table-responsive {
    overflow: visible !important;
}

/* TABLE CELL */
td {
    position: relative;
    overflow: visible;
    z-index: 10;
}
/* MAIN DROPDOWN WRAPPER */

.cursorNotAllowed, .cursorNotAllowed * {
    cursor: not-allowed !important;
}
.kingdropdown {
    position: relative;
    display: inline-block;
}

.kingdropdown button {
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.king-dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 150px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 99999;
    left: 0;
    top: 100%; /* ensures dropdown goes below the button */
}

.king-dropdown-content a {
    color: black;
    padding: 10px 12px;
    text-decoration: none;
    display: block;
}

.king-dropdown-content a:hover {
    background-color: #ddd;
}

.kingdropdown:hover .king-dropdown-content {
    display: block;
}
.form-label-counter {
    opacity: 0.8;
    color: #fff !important;
    font-weight: bold !important;
    padding: 6px;
    font-size: 12px;
    position: absolute !important;
    left: 10px;
    top: 10px;
    background-color: #0079BF;
    border-radius: 10px;
    z-index: 90;
}
.multiline {
    white-space: pre-wrap !important;
}
#txtModalCaptcha, #txtCaptcha {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 10px !important;
}