/*@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');*/
:root {
    --fontFamily: 'Roboto', sans-serif;
    --pinkColor: #e91e63;
    --primaryColor: #007bff;
    --blueColor: var(--primaryColor);
    --blueColorLow: #007bff77;
    --orangeColor: #fe6f02;
    --lightOrangeColor: #F4B716;
    --darkColor: #0C111C;
    --lightDarkColor: #1d2839;
    --infoColor: #00BCD4;
    --textColor: #f65d4e;
    --main_color: var(--blueColor);
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--fontFamily);
    background: #f5f5f5;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

body.full-window {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* -----------------------
    Custom Area Start
------------------------ */
.fs-12 {
    font-size: 12px;
}

.small-text {
    font-size: 13px;
    color: #777;
}

.folding-card:not(.opened) .card-body {
    display: none;
}

[contenteditable] {
    border: 2px solid transparent;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

[contenteditable]:focus {
    outline: none;
    border-color: #000 !important;
}

.align-center {
    display: flex;
    align-items: center;
}

.table tbody tr td:last-child {
    white-space: nowrap;
}

.table tbody tr td:last-child>* {
    margin: 5px 10px;
}

.child-el-margin>* {
    margin: 10px;
}

.child-el-margin-x>* {
    margin-left: 10px;
    margin-right: 10px;
}

.child-el-margin-y>* {
    margin-top: 10px;
    margin-bottom: 10px;
}

.tc-res-img-div {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.modal-content {
    background: transparent;
    border: none;
}

table.dataTable.no-footer {
    border: none !important;
}

.dataTables_length,
.dataTables_filter,
.paginate_button {
    font-family: var(--ffr);
    font-size: 14px;
}

.dataTables_filter input {
    font-family: var(--ffr);
    font-size: 14px;
    border: 1px solid #99a5 !important;
    padding: 2px !important;
    -webkit-border-radius: 0px !important;
    border-radius: 0px !important;
}

.dataTables_filter input:focus {
    border: 1px solid #99a5 !important;
    -webkit-border-radius: 0px !important;
    border-radius: 0px !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border: 1px solid #99a5 !important;
    background: #FFF;
    padding: 5px 10px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: #007BFF !important;
    color: #FFF !important;
}

.dataTables_wrapper .dataTables_length {
    margin-bottom: 15px;
}

.dataTables_wrapper .dataTables_filter {
    margin-bottom: 15px;
}

.dataTables_wrapper .dataTables_info {
    margin-top: 15px;
}

.dataTables_wrapper .dataTables_paginate {
    margin-top: 15px;
}

.no-btn-styles {
    background: transparent;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.small-font {
    font-size: 14px;
    font-family: var(--fontFamily);
}

.bold {
    font-weight: bold;
}

.user-img {
    width: 50px;
    height: 50px;
}

.error {
    color: #D00;
    text-align: left;
    font-family: var(--fontFamily);
    font-size: 14px;
}

.form-group.err .form-control {
    border-bottom: 1px solid #d00 !important;
}

.full-screen-loader {
    background: var(--darkColor);
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999999;
}

.full-screen-loader .loader {
    width: 100px;
    height: 100px;
}

.lg-font {
    font-size: 20px;
}

.msg {
    padding: 20px;
}

.rotate-90 {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.center-content {
    width: 100%;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.justify-center {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}

.pagination {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.disabled {
    opacity: 0.8;
}

.full-img {
    width: 100%;
    max-height: 100%;
}

.ms-list .dropdown-toogle .input-group-text {
    cursor: pointer !important;
    z-index: 6;
    height: calc(100% - 1px);
    background: var(--darkColor);
}

.ms-list .dropdown-menu {
    width: 100%;
    background: var(--lightDarkColor);
    -webkit-border-radius: 0px;
    border-radius: 0px;
}

.ms-list .dropdown-menu .dropdown-item {
    display: block;
    color: #FFF;
    font-family: var(--fontFamily);
    cursor: pointer;
}

.ms-list .dropdown-menu .dropdown-item:hover,
.ms-list .dropdown-menu .dropdown-item:focus,
.ms-list .dropdown-menu .dropdown-item.selected,
.ms-list .dropdown-menu .dropdown-item.active {
    background: rgba(0, 0, 0, 0.27);
}

.bg_pink {
    background: #E91E63 !important;
}

.bg_info {
    background: #00BCD4 !important;
}

.bg_green {
    background: #8BC34A !important;
}

.bg_warning {
    background: #FF9800 !important;
}

.bg_success {
    background: #33dc6f !important
}

.light_orange {
    color: var(--lightOrangeColor) !important;
}

.text_success {
    color: #33dc6f !important
}

.table td,
.table th {
    border: none !important;
    border-bottom: 1px solid #0002 !important;
    font-family: var(--fontFamily) !important;
}

.table tbody tr:last-child td {
    border-bottom: none !important;
}

.tooltip .tooltip-inner {
    background: var(--darkColor) !important;
}

.tooltip.bs-tooltip-auto[x-placement^=top] .arrow::before,
.tooltip.bs-tooltip-top .arrow::before {
    border-top-color: var(--darkColor) !important;
}

.bs-tooltip-auto[x-placement^=bottom] .arrow::before,
.bs-tooltip-bottom .arrow::before {
    border-bottom-color: var(--darkColor) !important;
}

.checkbox {
    display: flex;
    cursor: pointer;
    margin: 0 5px;
    font-weight: normal;
}

.checkbox .box {
    margin-right: 7px;
    margin-top: 2px;
    width: 15px;
    height: 15px;
    display: flex;
    border: 2px solid var(--blueColor);
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-transform: translateY(2px);
    -moz-transform: translateY(2px);
    -ms-transform: translateY(2px);
    -o-transform: translateY(2px);
    transform: translateY(2px);
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.checkbox .box i {
    font-size: 13px;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;

}

.checkbox .check {
    display: none;
}

.checkbox .check:checked~.box {
    background: var(--blueColor);
}

.checkbox .check:checked~.box i {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.inline-b {
    width: auto !important;
    display: inline-block !important;
}

.form-control.short {
    padding: 10px 0 10px 10px !important;
    width: 45px;
}

.tinymce-inline-editor {
    height: auto !important;
    min-height: 100px;
}

.flex {
    display: flex !important;
    -webkit-align-items: center;
    align-items: center;
}

body.content-center {
    width: 100%;
    min-height: 100vh;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.swal2-container.in {
    background: rgba(0, 0, 0, 0.2) !important;
}

.swal2-modal {
    margin-top: 20px;
    width: 400px;
    display: none;
    overflow: hidden;
    font-family: var(--fontFamily) !important;
    -webkit-border-radius: 0px !important;
    border-radius: 0px !important;
    -webkit-box-shadow: 2px 2px 25px 2px #0003 !important;
    box-shadow: 2px 2px 25px 2px #0003 !important;
}

.swal2-styled.swal2-confirm,
.swal2-styled {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 2px 5px, rgba(0, 0, 0, 0.12) 0px 2px 10px;
    font-size: 14px !important;
    border-radius: 2px !important;
    color: #fff !important;
    padding: 7px 12px !important;
    font-weight: bold !important;
    font-family: var(--fontFamily) !important;
    cursor: pointer !important;
    background: var(--blueColor) !important;
    text-transform: uppercase;
}

.swal2-styled.swal2-confirm:focus,
.swal2-styled.swal2-cancel:focus,
.swal2-styled:focus {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 2px 5px, rgba(0, 0, 0, 0.12) 0px 2px 10px;
}

.swal2-styled.swal2-cancel {
    background: #171f30 !important;
}

.swal2-title {
    text-transform: capitalize !important;
}

.swal2-content {
    font-family: var(--fontFamily);
}

.swal2-title {
    font-family: var(--fontFamily);
}

.swal2-icon.swal2-warning {
    border-color: #ff7600 !important;
    color: #ff7600 !important;
}

.content-center {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

p {
    margin-bottom: 0;
}

button:focus,
input:focus,
select:focus {
    outline: none;
}

.link {
    color: #007BFF;
    cursor: pointer;
    font-family: var(--fontFamily);
}

.cp {
    cursor: pointer;
}

.more {
    color: #777;
    font-family: var(--fontFamily);
}

.bg_light_ornage {
    background: var(--lightOrangeColor) !important;
}

.bg_orange {
    background: var(--orangeColor) !important;
}

.card {
    background: transparent;
    border: 1px solid #c3c4c7;
    position: relative;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.card-header {
    background: #fff;
    color: #333;
    font-weight: 500;
    padding: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--fontFamily);
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
}

.card .card-body {
    background-color: #f6f7f7;
}

.card-header a,
.card-header h3,
.card-header p {
    color: #333;
    font-weight: 500;
}

.modal .card {
    border: none;
}

.modal .card-header {
    background-color: var(--blueColor);
    color: #fff;
}

.pull-right {
    width: 100%;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.pull-away {
    width: 100%;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.label {
    font-size: 15px;
    color: #333;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 5px;
    font-family: var(--fontFamily);
}

.input-group .form-control {
    padding-left: 45px;
}

.form-control {
    border: 1px solid #ced4da !important;
    border-bottom: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    background: #f4f8f7;
    padding: 15px 10px;
    color: #555;
    font-family: var(--fontFamily);
}

.form-control:focus {
    background: #f4f8f7;
    border-color: var(--infoColor);
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

select.form-control option {
    color: #000;
}

.input-group-text {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    color: #777;
    z-index: 99;
    height: 100%;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.file-upload-label~.form-control[readonly] {
    background: transparent;
}

.submit-btn,
.btn {
    font-size: 14px;
    padding: 7px 12px;
    font-weight: 500;
    margin: 0;
    font-family: var(--fontFamily);
    cursor: pointer;
}

.submit-btn:not(.btn-outline),
.btn:not([class*="btn-"]) {
    background: var(--blueColor);
    color: #fff;
}

.submit-btn {
    border: none;
}

.submit-btn:hover,
.btn:hover {
    opacity: 0.8;
}

.btn-lg {
    padding: 10px 30px;
    font-size: 18px;
}

.btn-round {
    -webkit-border-radius: 50px;
    border-radius: 50px;
}

.btn i {
    display: inline-block;
    margin-right: 5px;
}

.s-btn {
    font-size: 16px;
    background: transparent;
    border: none;
    padding: 20px;
    color: #ccc;
    position: relative;
    cursor: pointer;
}

.s-btn:focus {
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.s-btn:hover,
.s-btn.active {
    color: #FFF;
}

.heading {
    color: #333;
    font-family: var(--fontFamily);
    font-weight: bold;
    font-size: 25px;
    padding: 0;
    margin: 0;
}

h1.heading {
    font-size: 40px;
}

h2.heading {
    font-size: 30px;
}

h3.heading {
    font-size: 25px;
}

h4.heading {
    font-size: 20px;
    font-weight: 500;
}

h5.heading {
    font-size: 18px;
    font-weight: 500;
}

.bg_dark {
    background: #090F19;
}

.disabled {
    pointer-events: none !important;
}

.loader-container {
    width: 100%;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.loader {
    width: 70px;
    height: 70px;
    display: block;
    background: transparent;
    position: relative;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.loader .text {
    color: #333;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -o-transform: scale(0.6);
    transform: scale(0.6);
}

.loader .load {
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    background: transparent;
    border: 4px solid #000;
    border-color: #ddd #ddd #ddd transparent;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-animation: rotateClockWise 1s linear infinite;
    -moz-animation: rotateClockWise 1s linear infinite;
    -o-animation: rotateClockWise 1s linear infinite;
    animation: rotateClockWise 1s linear infinite;
}

.spinner {
    width: 30px;
    height: 30px;
    display: inline-block;
    background: transparent;
    border: 4px solid #000;
    border-color: #ddd #ddd #ddd transparent;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-animation: rotateClockWise 1s linear infinite;
    -moz-animation: rotateClockWise 1s linear infinite;
    -o-animation: rotateClockWise 1s linear infinite;
    animation: rotateClockWise 1s linear infinite;
}

@keyframes rotateClockWise {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotateAntiClockWise {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        -moz-transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

button .loader,
span>.loader {
    width: 30px;
    height: 30px;

}

a:hover {
    text-decoration: none;
}

.hide-scrollbar::-webkit-scrollbar {
    width: 0px !important;
    height: 0px !important;
}

.scrollbar::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.scrollbar::-webkit-scrollbar-track {
    background: var(--darkColor);
}

.scrollbar::-webkit-scrollbar-thumb {
    background: var(--blueColor);
}

.scrollbar::-webkit-scrollbar-thumb:hover {
    background: #c96316;
}

/* -----------------------
    Custom Area End
------------------------ */

/* #region TC Checkbox */

.checkboxLabel {
    position: relative;
    display: flex;
    cursor: pointer;
    color: #333;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 0;
}

.checkboxLabel .checkbox {
    width: 0px !important;
    height: 0px !important;
    opacity: 0 !important;
}

.checkboxLabel .c-box {
    width: 15px;
    height: 15px;
    border: 1px solid var(--main_color);
    margin-right: 5px;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.checkboxLabel .c-box i {
    font-size: 10px;
    color: #fff;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.checkboxLabel .c-box.round {
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.checkboxLabel .c-box.round {
    padding: 8px;
}

.checkboxLabel .c-box.round i {
    color: #FFF;
}

.checkboxLabel .checkbox:checked~.c-box {
    background: var(--main_color);
}

.checkboxLabel .checkbox:checked~.c-box.round {
    background: transparent;
}

.checkboxLabel .checkbox:checked~.c-box i {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.checkboxLabel .checkbox:focus~.c-box {
    position: relative;
}

.checkboxLabel .checkbox:focus~.c-box::after {
    content: "";
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background-color: #05acff55;
    border-radius: 50%;
    position: absolute;
    z-index: -1;
}

/* #endregion TC Checkbox */


/* Tags start */
.tags {
    width: 100%;
    display: flex;
    border: 2px solid #0002;
    position: relative;
    cursor: text;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    margin-bottom: 10px;
    padding: 10px;
    /* height: 56px; */
    overflow-x: auto;
}

.tags.active {
    border-color: var(--main_color);
}

.tags .tag {
    cursor: move;
    display: inline-block;
    padding: 2px 5px;
    background: var(--main_color);
    color: white;
    font-family: sans-serif;
    margin: 2px;
}

.tags .tag:first-child {
    margin-left: 0;
}

.tags .tag:last-child {
    margin-right: 4px;
}

.tags .tag .close-tag {
    cursor: pointer;
    font-weight: bold;
}

.tags .tag .close-tag:hover {
    color: #F00;
}

.tags .tag-text {
    border: none;
    background: transparent;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.tags .tag-text:focus {
    outline: none;
}

.tag:hover {
    background: var(--main_color);
}

.tag {
    margin: 3px;
    color: #fff;
    background: var(--mainColor);
    padding: 11px 17px;
    -webkit-border-radius: 10px;
    border-radius: 25px;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    text-align: center;
    font-size: 12px;
    display: inline-block;
}

.tags .tag .text {
    margin: 5px;
    font-size: 15px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    font-family: sans-serif;
}

/* Tags end */

/* SS select start */
.ss-main .ss-single-selected {
    height: 39px;
    font-size: 14px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.ss-content .ss-list .ss-option {
    font-size: 14px;
}

.ss-content .ss-search input {
    font-size: 14px;
    border-radius: 0;
}

.ss-main .ss-multi-selected .ss-values .ss-value .edit-icon {
    display: none !important;
}

.ss-content .ss-list .ss-option .edit-icon {
    font-size: 14px;
}

.ss-main .ss-multi-selected,
.ss-content,
.ss-content .ss-search input,
.ss-main .ss-single-selected,
.dataTables_wrapper .dataTables_length select {
    background-color: #fff;
    border-color: #0002;
    color: #333;
}

.ss-content .ss-list .ss-option.ss-disabled {
    background-color: #ddd;
    color: #333;
    display: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* SS select end */

/* #region Popup Window */

.popup-window {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0000;
    z-index: 999 !important;
    display: none;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
}

.popup-window.active {
    display: flex;
    background: #0005;
    animation: fadeOout 0.3s linear forwards;
    -webkit-animation: fadeOout 0.3s linear forwards;
}

@keyframes fadeOout {
    from {
        background-color: #0000;
    }

    to {
        background: #0005;
    }
}

.popup-window .content {
    width: 80%;
    max-height: 100vh;
    overflow: auto;
    opacity: 0;
    padding: 0 !important;
    transform: translateY(-50px);
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
}

.popup-window.active .content {
    animation: slideDown 0.2s 0.2s linear forwards;
    -webkit-animation: slideDown 0.2s 0.2s linear forwards;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
        -webkit-transform: translateY(-50px);
        -moz-transform: translateY(-50px);
        -ms-transform: translateY(-50px);
        -o-transform: translateY(-50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -o-transform: translateY(0%);
    }
}

.tox-tinymce-inline {
    z-index: 9999 !important;
}

.tox.tox-silver-sink.tox-tinymce-aux {
    z-index: 99991 !important;
}

.emailSmmsVar {
    cursor: pointer;
}

/* #endregion Popup Window */


/* #region Chat System */
.tc-chat-container {
    position: fixed;
    bottom: 0;
    right: 0;
    pointer-events: none;
}

.tc-chat-wrapper {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.tc-chat-box {
    height: 350px;
    width: 300px;
    margin: 20px;
    background-color: #161d29;
    pointer-events: all;
    box-shadow: 0 0 10px #0002;
    position: relative;
}

.tc-chat-box iframe {
    width: 100%;
    min-height: 100%;
}

.tc-close-chat-btn {
    position: absolute;
    top: 0px;
    right: 0px;
    background: #d00;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    border-radius: 20px;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    transform: translate(50%, -50%);
    -webkit-transform: translate(50%, -50%);
    -moz-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    -o-transform: translate(50%, -50%);
}

/* #endregion Chat System */

/* notify toast  */
.notify-toasts {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 250px;
    pointer-events: none;
    z-index: 999999;
}

.notify-toasts .single-toast {
    background-color: #000;
    margin: 5px 0;
    color: #fff;
    padding: 15px;
    font-family: sans-serif;
    width: 100%;
    opacity: 0;
    -webkit-animation: notify 4s linear;
    -moz-animation: notify 4s linear;
    -o-animation: notify 4s linear;
    animation: notify 4s linear;
}

@keyframes notify {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    20%,
    80% {
        transform: translateX(0);
        opacity: .9;
    }

    90% {
        opacity: .5;
    }

    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Task Styling */

/* -----------------------
     TC Data Start
------------------------ */
.tc-tab-btn {
    padding: 15px;
    border: none;
    background-color: transparent;
    font-size: 14px;
    font-family: var(--fontFamily);
    color: var(--text-color-secondary);
    font-weight: 500;
    border-bottom: 2px solid transparent;
    cursor: pointer !important;
}

.tc-tab-btn.active {
    border-color: var(--mainColor);
    color: var(--text-color);
    font-weight: bold;
}

.tc-badge {
    display: inline-block;
    padding: .25em .4em;
    font-size: 80%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
}

.tc-badge.tc-badge-btn {
    padding: 10px 20px;
    border-radius: 20px;
    text-transform: capitalize;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.tc-badge.tc-badge-success {
    background-color: #4caf5022;
    color: #4caf50;
}

.tc-badge.tc-badge-primary {
    background-color: #ece7fe;
    color: #8972f3;
}

.tc-badge.tc-badge-info {
    background-color: #d1e7ff;
    color: #5aa9ff;
}

.tc-badge.tc-badge-danger {
    background-color: #fde7ea;
    color: #e77f89;
}

.tc-badge.tc-badge-secondary {
    background-color: #f7f8fc;
    color: #a0a6b5;
}



.tc-input-group {
    display: flex;
    align-items: center;
    position: relative;
}

.tc-input-group .form-control:not(.tc-file-input) {
    width: auto;
    flex: 1;
    border-right: none;
    max-width: calc(100% - 38px);
}

.tc-input-group .tc-input-group-txt {
    background-color: #ddd;
    width: 38px !important;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.tc-input-group .tc-file-input {
    display: none;
}

/* -----------------------
     TC Data End
------------------------ */

.tc-dropdown {
    position: relative;
}

.tc-dropdown-menu {
    position: absolute;
    background: #fff;
    display: none;
    box-shadow: rgb(0 0 0 / 33%) 0px 10px 30px;
    z-index: 49;
}

.tc-dropdown-menu.tc-dropdown-fixed {
    position: fixed;
    bottom: auto;
    right: auto;
    z-index: 99;
}

.tc-dropdown.hoverable:hover .tc-dropdown-menu {
    display: block;
}

.tc-dropdown.active .tc-dropdown-menu,
.tc-dropdown-menu.active {
    display: block;
}

.disabled-element {
    pointer-events: none;
}

.disabled-div {
    position: absolute;
    width: 100%;
    height: 100%;
}

.toggle-group {
    display: none;
}

.prepended.form-group {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.prepended.form-group .form-group-prepend {
    padding: 0px 10px;
    background-color: var(--secondary);
    color: white;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.tabs {
    display: flex;
}

.align-center:not(table, td, th, tr, thead, tbody) {
    display: flex;
    align-items: center;
}

/* Tasks Styling */