label.required:after{
    content: " *";
    color: red;
}

.cursor-pointer {
    cursor: pointer;
}

.text-blue{
    color: #145aa5 !important;
}

.text-steelBlue {
    color: #37b0e5;
}

#eyeIcon {
    font-size: 18px;
}

.eyeIcon:hover, .linkText:hover {
    color: #37b0e5 !important;
}

/* Loader style change */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 1061;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .4);
}
.loader {
    animation: rotate 1s infinite;
    height: 50px;
    width: 50px;
}
.loader:before,
.loader:after {
    border-radius: 50%;
    content: '';
    display: block;
    height: 20px;
    width: 20px;
}
.loader:before {
    animation: ball1 3s infinite;
    background-color: #ccc;
    box-shadow: 30px 0 0 #ccc;
    margin-bottom: 10px;
}
.loader:after {
    animation: ball2 3s infinite;
    background-color: #ccc;
    box-shadow: 30px 0 0 #ccc;
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg) scale(0.8);
        -moz-transform: rotate(0deg) scale(0.8);
    }

    50% {
        -webkit-transform: rotate(360deg) scale(1.2);
        -moz-transform: rotate(360deg) scale(1.2);
    }

    100% {
        -webkit-transform: rotate(720deg) scale(0.8);
        -moz-transform: rotate(720deg) scale(0.8);
    }
}

@keyframes ball1 {
    0% {
        box-shadow: 30px 0 0 #ccc;
    }

    50% {
        box-shadow: 0 0 0 #ccc;
        margin-bottom: 0;
        -webkit-transform: translate(15px, 15px);
        -moz-transform: translate(15px, 15px);
    }

    100% {
        box-shadow: 30px 0 0 #ccc;
        margin-bottom: 10px;
    }
}

@keyframes ball2 {
    0% {
        box-shadow: 30px 0 0 #ccc;
    }

    50% {
        box-shadow: 0 0 0 #ccc;
        margin-top: -20px;
        -webkit-transform: translate(15px, 15px);
        -moz-transform: translate(15px, 15px);
    }

    100% {
        box-shadow: 30px 0 0 #ccc;
        margin-top: 0;
    }
}

/* table design part */
.common-table thead {
    color: #fff;
}
.common-table thead th {
    border-right: 1px solid #ccc !important;
    border-bottom: 1px solid #ccc !important;
}
/* .common-table tbody {
    font-size: 14px;
} */
.common-table tbody tr {
    border-bottom: 1px solid #dee2e8;
    border: 1px solid #dee2e8;
}
.common-table tbody tr td {
    border-right: 1px solid #dee2e8;
}
.common-table tbody tr:hover {
    background: #ececff;
    cursor: pointer;
} 
.common-table .fa {
    font-size: 18px;
}
.common-table .fa:hover {
    color: rgb(0, 0, 0);
    transition: 0.5s;
}
.dataTable.no-footer {
    border: none !important;
}
table.dataTable {
    margin: 0 !important;
}
.page-link {
    color: black;
}
.active > .page-link {
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
}

/* Fix DataTables sort icon position */
table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after {
    right: 8px;     /* move arrow to the right */
    left: auto;     /* remove left positioning */
    content: "";    /* reset in case of duplicate text */
}

div.dataTables_wrapper div.dataTables_filter {
    text-align: left !important;
}

thead th {
    font-size: 1rem;
}

tbody td {
    font-size: 0.9rem;
}

/* Table spacing */
.largeText {
    min-width: 300px;
}
.normalText {
    min-width: 200px;
}
.smallText {
    min-width: 100px;
}
.textShort {
    min-width: 70px;
}
.clickOff{
    pointer-events: none !important;
}
button {
    background: transparent;
    border: 0;
}
/* To Fix the sorting icon in table header to avoid showing in left */
table.dataTable th.dt-type-date div.dt-column-header {
    flex-direction: inherit !important;
}
.select2-container {
    width: 100% !important;
}
.select2-selection__arrow {
    margin-top: 14px;
}
.swal2-image {
    width: 100px;
    height: 100px;
    margin: 2em auto 0 auto !important;
}
.deleteBg {
	background: rgb(179, 130, 130) !important;
	color : white !important;
}
.dt-layout-table {
    width: 100% !important;
}
.dt-length {
    margin-right: 1.5rem !important;
}
.dt-layout-full {
    margin: 0 !important;
}
.dt-paging {
    margin-right: .5rem !important;
}
.iconsStyle {
	font-size: 19px;
	opacity: .5;
	color: #000;
}
.iconsStyle:hover {
    opacity: 1 !important;
    color: #000 !important;
}
.modal-dialog{
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}
.modal-content {
    border : none !important;
}
.modal-dialog .text{
    text-align: center;
    font-size: 41px;
    font-weight: 600;
}
.modal-dialog .modal-body{
    padding: 30px 0 0 0;
}
.modal-header {
    border-radius: 0 !important;
}
.commonFont{
    font-size: 17px !important;
}
.opacity-05 {
    opacity: 0.5 !important;
}

.fs-100 {
  font-size: 100px;
}

.form-check-input:checked {
    background-color: var(--primaryColor) !important;
    border-color: var(--primaryColor) !important;
}

.disabledIcon {
    opacity: 0.4;
    cursor: not-allowed !important;
}

.mt1px {
    margin-top: 1px !important;
}

.mt2px {
    margin-top: 2px !important;
}

/* For refer a patient select */
#referTo {
    width: 100%;
}

#referTo+.select2-container .select2-selection--single {
    height: 46px;
    padding: 8px;
}

#referTo+.select2-container .select2-selection__arrow {
    height: 22px;
}

a {
    text-decoration: none !important;
}