body {
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

a:hover {
    text-decoration: none;
}

input:focus,
button:focus {
    outline: none;
}
.navbar .user-img{
    -webkit-border-radius: 50%;
            border-radius: 50%;
}
.content-center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.multiple-links-toggle-target{
    display: none;
}
.multiple-links-toggle-target.active{
    display: block;
}
.pull-at-right{
    display: flex;
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
    -webkit-align-items: center;
            align-items: center;
}
.tags {
    width: 100%;
    display: flex;
    border-bottom: 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;
}

.tags.active {
    border-color: #2aa2ff;
}

.tags .tag {
    display: inline-block;
    padding: 2px 5px;
    background: var(--info);
    color: #FFF;
    font-family: sans-serif;
    margin: 2px;
    font-size: 14px;
}

.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;
}
.text-sm{
    font-size: 13px;
}
/* .dataTables_wrapper .dataTables_processing{
   background: #fff;
    padding: 50px 20px;
    font-size: 30px !important;
    line-height: 1px;
} */
.cp{
    cursor: pointer;
}
.no-btn-style{
    background: none;
    border: none;
}
.no-after-content::after{
    content: none !important;
}
td.d-flex a{
    margin: 0 2px;
    -webkit-align-items: center;
            align-items: center;
}
.capitalize{
    text-transform: capitalize;
}
.remove-form-group{
    color: #F00;
    font-size: 16px;
    display: inline-block;
    margin-left: 20px;
    margin-top: 15px;
    cursor: pointer;  
}
.align-center{
    display: flex;
    -webkit-align-items: center;
            align-items: center;
}
.swal2-title{
    text-transform: capitalize !important;
}
.pull-away{
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: space-between;
            justify-content: space-between;
}
.table-responsive{
    margin-top: 20px;
}
.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate{
    font-size: 14px;
}
.dataTables_wrapper .dataTables_length select,
.dataTables_wrapper .dataTables_filter input
{
    padding: 0 2px;
    -webkit-border-radius: 0;
            border-radius: 0;
    font-size: 13px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button{
    border: 1px solid !important;
    border-color: #3336 #3336 #3336 transparent !important;
    -webkit-border-radius: 0 !important;
            border-radius: 0 !important;
    font-size: 13px !important;
    margin: 0;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:first-child{
    border-color: #3336 #3336 #3336 #3336 !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover{
    background: var(--info)  !important;
    color: #fff !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{
    background: var(--info)  !important;
    color: #fff !important;
}
.dataTables_wrapper .dataTables_paginate .ellipsis + a.paginate_button {
    border-color: #3336 #3336 #3336 #3336 !important;
}

.label-radio {
    display: none;
}

.label-radio-target {
    border: 1px solid #007bff;
    display: inline-block;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    color: #fff;
}

.label-radio-target>i {
    opacity: 0;
}

.label-radio:checked~.label-radio-target {
    background-color: #007bff;
}

.label-radio:checked~.label-radio-target>i {
    opacity: 1;
}

.input-label {
    cursor: pointer;
    margin: 0 5px;
}

.form-group {
    position: relative;
}

.invalid {
    border-color: #dc3545 !important;
}

.error {
    color: #dc3545 !important;
    display: block;
}

.input_error {
    border-color: #dc3545 !important;
}

.success {
    color: #28a745 !important;
}

.small-icon {
    padding: 2px;
    font-size: 20px;
}

.edit {
    font-size: 20px;
    color: var(--success);
    padding: 2px;
    text-decoration: none;
}

.edit:hover {
    color: var(--success);
}

.delete {
    text-decoration: none;
    padding: 2px;
    font-size: 20px;
    color: var(--danger);
}

.delete:hover {
    color: var(--danger);
}

.tool-tip {
    cursor: pointer;
    position: relative;
}

.tool-tip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    background: #000;
    color: #FFF;
    font-family: sans-serif;
    font-size: 12px;
    padding: 5px;
    display: none;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.tool-tip::before {
    content: "";
    position: absolute;
    bottom: calc(100% - 10px);
    left: 50%;
    border: 5px solid;
    border-color: #000 transparent transparent;
    display: none;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.tool-tip:hover::after,
.tool-tip:hover::before {
    display: inline-block;
}

.sec_con {
    padding: 20px 40px;
}

.disabled {
    opacity: .5;
    cursor: no-drop !important;
}

.s-heading {
    font-size: 21px;
    font-family: sans-serif;
    color: #000;
    text-transform: capitalize;
    margin: 10px 0;
    display: block;
}

.more {
    font-size: 15px;
    font-family: sans-serif;
    color: #727272;
    padding: 5px 10px;
}

.s_btn {
    border: none;
    padding: 7px 15px;
    background: var(--infoColor);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 5px 20px -10px var(--infoColor);
}

.s_btn:hover {
    opacity: 0.9;
    color: #FFF;
}

.info_line {
    background-color: #ddda;
    text-align: center;
    color: #333;
    font-size: 15px;
    font-family: sans-serif;
    padding: 10px;
}

div.heading {
    padding: 30px 0 10px;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

div.heading>h2 {
    font-size: .9rem;
    margin: 0;
    padding: 0;
    color: #777777;
    font-weight: normal;
    font-family: sans-serif;
}

h3.heading {
    font-size: 20px;
    font-weight: normal;
    font-family: sans-serif;
    margin: 0;
    padding: 10px 0;
    text-transform: capitalize;
    color: #333;
}

span.label {
    font-size: 14px;
    text-transform: capitalize;
    color: #333;
    font-family: sans-serif;
    font-weight: bold;
    margin: 10px 0 5px;
    display: inline-block;
}

.loader {
    display: flex;
    justify-content: center;
    position: relative;
}

.loader .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15px;
    font-family: sans-serif;
}

.loader>div {
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-color: transparent #ccc #ccc #ccc;
    animation: load 1s linear infinite;
    border-radius: 50%;
}

.loader.large>div {
    width: 150px;
    height: 150px;
    border-width: 15px;
}
span.loading{
    width: 15px;
    height: 15px;
    display: inline-block;
    border: 2px solid #fff;
    border-color: transparent #fff #fff #fff;
    -webkit-animation: load 1s linear infinite;
       -moz-animation: load 1s linear infinite;
         -o-animation: load 1s linear infinite;
            animation: load 1s linear infinite;
    -webkit-border-radius: 50%;
            border-radius: 50%;
}

@keyframes load {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
span.loading.dark{
    border-color: transparent #333 #333 #333 !important;
}

/* ===== Navbar ====== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 997;
    display: flex;
    width: 100%;
    padding-left: 330px;
    padding-right: 30px;
    height: 70px;
    background: var(--lightColor);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.navbar *{
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
        -ms-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
}

.navbar .logo {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.navbar .logo .logo-name {
    font-size: 23px;
    font-weight: bold;
    font-family: sans-serif;
}

.navbar .logo .menu-burger {
    cursor: pointer;
    display: inline-block;
    width: 40px;
    display: flex;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
}
.navbar .logo .menu-burger .layer{
    width: 100%;
    height: 3px;
    background: #0002;
    margin: 4px 0;
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
        -ms-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
}
.navbar .logo .menu-burger .layer-1{
    width: 50%;
}
.navbar .logo .menu-burger .layer-3{
    width: 70%;
}
.navbar .logo .menu-burger.active .layer-1{
    width: 80%;
}
.navbar .logo .menu-burger.active .layer-3{
    width: 100%;
}
.navbar .logo .menu-burger.active .layer-2{
    width: 50%;
}

.navbar .user-img{
    width: 35px;
    height: 35px;
}
.navbar .user-name{
    font-size: 12px;
    margin-bottom: 0;
    color: #333;
}
.navbar .user-headline{
    font-size: 1px;
    display: inline-block;
    -webkit-transform: translateY(-6px);
       -moz-transform: translateY(-6px);
        -ms-transform: translateY(-6px);
         -o-transform: translateY(-6px);
            transform: translateY(-6px);
}
.navbar .user-info .dropdown-menu{
    -webkit-border-radius: 0 0 20px 20px;
            border-radius: 0 0 20px 20px;
}

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

.uploadFileForm .center-c label {
    text-align: center;
    position: relative;
    cursor: pointer;
}

.uploadFileForm .center-c label p {
    font-size: 14px;
    color: #555;
    text-align: center;
}

.uploadFileForm .center-c label h4 {
    text-align: center;
    color: #555;
    font-family: sans-serif;
    font-size: 20px;
    margin: 0px;
    margin-top: 15px;
}

.uploadFileForm .center-c label svg {
    width: 100px;
    height: 100px;
    color: #333;
}

.uploadFileForm .center-c label #file {
    display: none;
}

@media (max-width: 500px) {

    .table td,
    .table th {
        font-size: 12px;
        padding: 0.2rem;
    }

    .small-icon {
        font-size: 16px !important;
    }
}

@media (max-width: 300px) {
    .side_menu {
        width: 100%;
    }
}body {
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

a:hover {
    text-decoration: none;
}

input:focus,
button:focus {
    outline: none;
}
.no-btn-style{
    background: none;
    border: none;
}
.no-after-content::after{
    content: none !important;
}
.no-puesudo-content::after,
.no-puesudo-content::before{
    content: none !important;
}
td.d-flex a{
    margin: 0 2px;
    -webkit-align-items: center;
            align-items: center;
}
.capitalize{
    text-transform: capitalize;
}
.remove-form-group{
    color: #F00;
    font-size: 16px;
    display: inline-block;
    margin-left: 20px;
    margin-top: 15px;
    cursor: pointer;  
}
.align-center{
    display: flex;
    -webkit-align-items: center;
            align-items: center;
}
.swal2-title{
    text-transform: capitalize !important;
}
.pull-away{
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: space-between;
            justify-content: space-between;
}
.table-responsive{
    margin-top: 20px;
}
.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate{
    font-size: 12px;
}
.dataTables_wrapper .dataTables_length select,
.dataTables_wrapper .dataTables_filter input
{
    padding: 0 2px;
    -webkit-border-radius: 0;
            border-radius: 0;
    font-size: 12px;
    border: 1px solid #0001;
}
.dataTables_wrapper .dataTables_paginate .paginate_button{
    border: 1px solid !important;
    border-color: #3336 #3336 #3336 transparent !important;
    -webkit-border-radius: 0 !important;
            border-radius: 0 !important;
    font-size: 13px !important;
    margin: 0;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:first-child{
    border-color: #3336 #3336 #3336 #3336 !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover{
    background: var(--info)  !important;
    color: #fff !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{
    background: var(--info)  !important;
    color: #fff !important;
}
.dataTables_wrapper .dataTables_paginate .ellipsis + a.paginate_button {
    border-color: #3336 #3336 #3336 #3336 !important;
}

.label-radio {
    display: none;
}

.label-radio-target {
    border: 1px solid #007bff;
    display: inline-block;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    color: #fff;
}

.label-radio-target>i {
    opacity: 0;
}

.label-radio:checked~.label-radio-target {
    background-color: #007bff;
}

.label-radio:checked~.label-radio-target>i {
    opacity: 1;
}

.input-label {
    cursor: pointer;
    margin: 0 5px;
}

.form-group {
    position: relative;
}

.invalid {
    border-color: #dc3545 !important;
}

.error {
    color: #dc3545 !important;
    display: block;
}

.input_error {
    border-color: #dc3545 !important;
}

.success {
    color: #28a745 !important;
}

.small-icon {
    padding: 2px;
    font-size: 16px;
    margin: 2px;
    display: inline-block;
    -webkit-transition: 0.2s;
       -moz-transition: 0.2s;
        -ms-transition: 0.2s;
         -o-transition: 0.2s;
            transition: 0.2s;
}
.small-icon i{
    
}
tr{
    -webkit-transition: 0.2s;
       -moz-transition: 0.2s;
        -ms-transition: 0.2s;
         -o-transition: 0.2s;
            transition: 0.2s;
}
tr:hover .small-icon{
    -webkit-transform: scale(1.2);
       -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
         -o-transform: scale(1.2);
            transform: scale(1.2);
}
tr:hover .small-icon i{
    color: inherit ;
}
tr:hover td{
    background: #0001;
}

.tool-tip {
    cursor: pointer;
    position: relative;
}

.tool-tip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    background: #000;
    color: #FFF;
    font-family: sans-serif;
    font-size: 12px;
    padding: 5px;
    display: none;
    white-space: nowrap;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.tool-tip::before {
    content: "";
    position: absolute;
    bottom: calc(100% - 10px);
    left: 50%;
    border: 5px solid;
    border-color: #000 transparent transparent;
    display: none;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.tool-tip:hover::after,
.tool-tip:hover::before {
    display: inline-block;
}

.sec_con {
    padding: 20px 40px;
}

.disabled {
    opacity: .5;
    cursor: no-drop !important;
}

.s-heading {
    font-size: 21px;
    font-family: sans-serif;
    color: #000;
    text-transform: capitalize;
    margin: 10px 0;
    display: block;
}

.more {
    font-size: 15px;
    font-family: sans-serif;
    color: #727272;
    padding: 5px 10px;
}

.info_line {
    background-color: #ddda;
    text-align: center;
    color: #333;
    font-size: 15px;
    font-family: sans-serif;
    padding: 10px;
}

span.label {
    font-size: 14px;
    text-transform: capitalize;
    color: #333;
    font-family: sans-serif;
    font-weight: bold;
    margin: 10px 0 5px;
    display: inline-block;
}

.loader {
    display: flex;
    justify-content: center;
    position: relative;
}

.loader .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15px;
    font-family: sans-serif;
}

.loader>div {
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-color: transparent #ccc #ccc #ccc;
    animation: load 1s linear infinite;
    border-radius: 50%;
}

.loader.large>div {
    width: 150px;
    height: 150px;
    border-width: 15px;
}
span.loading{
    width: 15px;
    height: 15px;
    display: inline-block;
    border: 2px solid #fff;
    border-color: transparent #fff #fff #fff;
    -webkit-animation: load 1s linear infinite;
       -moz-animation: load 1s linear infinite;
         -o-animation: load 1s linear infinite;
            animation: load 1s linear infinite;
    -webkit-border-radius: 50%;
            border-radius: 50%;
}

@keyframes load {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* ====== Side Menu ======== */
.side_menu {
    position: fixed;
    top: 0px;
    left: 0;
    width: 300px;
    z-index: 998;
    height: calc(100vh - 0px);
    background: var(--lightColor);
    overflow: auto;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.side_menu .head {
    padding: 30px 0px;
}

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

.side_menu .head .small-logo{
    display: none;
}
.side_menu .head .img .user-img {
    width: 80px;
    height: auto;
    margin: 10px 0 20px;
}

.side_menu .head .info {
    padding-top: 10px;
    text-align: center;
}

.side_menu .head .headline {
    font-size: 13px;
    font-family: inherit;
    color: #aaa;
}

.side_menu .line {
    margin: 10px 0;
    background: #FFF5;
    width: 100%;
    height: 1px;
}

.side_menu .menu {
    padding: 10px 0;
}

.side_menu .menu ul {
    padding: 0;
    margin: 0;
}

.side_menu .menu ul li {
    list-style: none;
}

.side_menu .menu ul li a {
    color: #888;
    font-size: 13px;
    font-family: var(--fontFamily);
    padding: 15px 20px;
    display: block;
    border-left: 5px solid transparent;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.side_menu .menu ul li a i {
    padding-right: 15px;
    font-size: 130%;
}
.side_menu .menu ul li a img{
    width: 30px;
    height: auto;
}

.side_menu .menu ul li:hover>a {
    background: #0001;
}

.side_menu .menu>ul>li.active>a {
    background: var(--mainColor);
    color: #FFF;
}

.side_menu .menu ul li.dropdown>a {
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.side_menu .menu ul li.dropdown>ul {
    display: none;
}

.side_menu .menu ul li.dropdown>ul li a {
    padding: 8px 20px;
    padding-left: 60px;
    position: relative;
    font-size: 13px;
}

.side_menu .menu ul li.dropdown>ul li a:hover,
.side_menu .menu ul li.dropdown>ul li.active>a {
    background: #0001;
}

.side_menu .menu ul li.dropdown>ul li a::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #dbdbdb;
    top: 50%;
    left: 40px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.side_menu .menu ul li.dropdown>ul li a::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    background: #d7d7d7;
    top: 0%;
    left: 43px;
}
/*-----------------------------------
    Sidebar active Area Start
----------------------------------*/
.navbar.active {
    padding-left: 100px;
}

.side_menu.active {
    width: 70px;
    overflow: visible;
}

section.all-content.active {
    padding-left: 100px;
}
.side_menu.active .head {padding-top: 10px;}

.side_menu.active .head .img .user-img {
    width: 50px;
    height: auto;
    max-height: 60px;
    display: none;
    margin: 0;
}

.side_menu.active .head .user-info{
    display: none;
}
.side_menu.active .head .small-logo{
    display: inline-block;
}
.side_menu.active .head .heading {
    display: none;
}

.side_menu.active .head .headline {
    display: none;
}

.side_menu.active .menu ul li a .text {display: none;}

.side_menu.active .menu ul li a i:last-child {
    display: none;
}

.side_menu.active .menu > ul > li > a {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center !important;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    box-shadow: 0 2px 20px -1px #0002;
}

.side_menu.active .menu ul li a i {
    padding-right: 0;
    font-size: 20px;
    margin-left: -3px;
}

.side_menu.active .menu ul li {
    padding: 5px 0;
}
.side_menu.active .menu ul li.dropdown>ul {
    position: absolute;
    top: 0;
    left: 100%;
    background: #f4f3f6;
    z-index: 99;
    min-width: 200px;
    box-shadow: 5px 0 20px -5px #0002;
}

.side_menu.active .menu ul li.dropdown>ul li a {
    padding-left: 20px;
}

.side_menu.active .menu ul li.dropdown>ul li a::after {
    display: none;
}

.side_menu.active .menu ul li.dropdown>ul li a::before {
    content: none;
}

/*-----------------------------------
    Sidebar active Area End
----------------------------------*/

/* ====== All Content ====== */
section.all-content {
    width: 100%;
    padding: 70px 30px 10px 330px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.pull_c_right {
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.alertMsg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000a;
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
}

.alertMsg.active {
    display: flex;
}

.alertMsg .content {
    width: 450px;
    background: #fff;
    position: relative;
    padding: 50px;
}

.alertMsg .content .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

span.close-wrapper-btn,
.close-wrapper {
    display: none;
}

@media(max-width: 500px) {
    .alertMsg .content {
        width: 90%;
    }
}

.chart {
    width: 100%;
    min-height: 450px;
    display: none;
}

.chart.active {
    display: block;
}
.table tr td:last-child{
    white-space: nowrap;
}
@media (max-width: 992px) {
    .navbar {
        padding: .5rem 1rem;
    }

    .side_menu {
        -webkit-transform: translateX(-300px);
        -moz-transform: translateX(-300px);
        -ms-transform: translateX(-300px);
        -o-transform: translateX(-300px);
        transform: translateX(-300px);
    }

    .side_menu.active {
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
        transform: translateX(0px);
    }

    section.all-content {
        padding: 70px 10px 10px;
    }

    .close-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #000a;
        z-index: 997;
        display: none;
        cursor: pointer;
    }

    .side_menu.active~.close-wrapper {
        display: block;
    }

    span.close-wrapper-btn {
        position: absolute;
        top: 2px;
        right: 9px;
        color: #fff;
        cursor: pointer;
    }

    .side_menu.active span.close-wrapper-btn {
        display: inline-block;
    }

    .table td,
    .table th {
        font-size: 14px;
        padding: 0.5rem;
    }
}

@media (max-width: 500px) {

    .table td,
    .table th {
        font-size: 12px;
        padding: 0.2rem;
    }

    .small-icon {
        font-size: 16px !important;
    }
}

@media (max-width: 300px) {
    .side_menu {
        width: 100%;
    }
}

.lg-container {
    width: 100%;
    min-height: 100vh;
    padding: 50px;
}

.login-window {
    -webkit-border-radius: 20px;
    border-radius: 20px;
    height: 100%;
    -webkit-box-shadow: 2px 2px 30px #0001;
    box-shadow: 2px 2px 30px #0001;
    background: #FFF;
    overflow: hidden;
}

.window-bg {
    min-height: 100%;
    background: url('../images/bg-1.svg') no-repeat;
    background-position: bottom right;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.sign-form>.clearfix {
    width: 80%;
    text-align: center;
}

.sign-form .social-icons {
    margin: 30px 0;
}

.sign-form .social-icons .social-icon{
    display: inline-block;
    font-size: 20px;
    color: #AAA;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: 0 10px;
    text-align: center;
    border: 1px solid #0002;
    -webkit-border-radius: 50%;
            border-radius: 50%;
}
.table td,
.table th {
    border: none !important;
    border-bottom: 1px solid #0001 !important;
    font-family: var(--fontFamily) !important;
    color: #333 !important;
    font-weight: normal !important;
    font-size: 14px !important;
}
.form-control{
    background: #FFF;
}
.form-control.tc-search{
    border: none;
    border-bottom: 2px solid #0002;
    padding: .375rem .75rem;
    font-size: 13px;
    font-family: inherit;
}
.form-control.tc-search:focus{
    background: transparent;
}