@import url('https://fonts.googleapis.com/css2?family=Arvo:wght@400;700&family=Josefin+Sans:wght@200;300;400;500;600;700&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500&family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,300;1,400&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

a {
    text-decoration: none;
}

.main-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../image/main-bg2.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.wrapper {
    width: 86%;
}

.login-sec {
    display: flex;
    flex-wrap: wrap;
}

.form-head {
    width: 70%;
}

.form-section {
    background: linear-gradient(to bottom, #fff, #DBEDF8);
    padding: 5rem 3rem;
    border-radius: 0 60px;
    width: 38%;
    border: 2px solid #fff;
}

.title-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 62%;
}

.form-content {
    /* background: linear-gradient(to right, #e1f2ffbf, #e1f2ffbf); */
    background-image: url(../image/Image\ 13.png);
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(9px);
    padding: 2rem;
    text-align: center;
    width: 100%;
    border: 14px solid #fff;
    border-radius: 0 38px 38px 0;
    border-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 650px;
}

.form-content .login-heading {
    font-size: 4.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.form-content p {
    font-size: 28px;
}

.form-section .login-form {
    margin-top: 4rem;
}

.form-section .login-form input {
    height: 59px;
    border-radius: 8px;
    font-size: 20px;
    padding-left: 50px;
}

.form-section .login-form label {
    color: #005565;
    font-size: 20px;
}

.form-input {
    position: relative;
}

.inputIcon {
    position: absolute;
    left: 10px;
    bottom: 5px;
    font-size: 1.8rem;
}

.form-control:focus {
    color: #005565;
    background-color: #fff;
    border-color: #005565;
    outline: 0;
    box-shadow: none;
}

.checkMe input[type=checkbox] {
    width: 26px;
    height: 26px;
    margin-right: 20px;
}

.checkMe label {
    color: #000 !important;
}

.login-form .forgot-pass {
    color: #005565;
    font-size: 20px;
}

.login-form .login-btn {
    background: #005565 !important;
    padding: 1rem;
    font-weight: 500;
    font-size: 28px;
    color: #fff !important;
    margin-top: 4rem;
    width: 100%;
}


/* ====Manage Ticket Page CSS==== */


/* .main-page {
    background: #fff;
} */

.top-header {
    border-bottom: 1px solid gainsboro;
    transition: all 0.5s;
    z-index: 997;
    padding: 0rem 2rem;
    background: #fff;
    /* width: calc(100% - 310px); */
    width: 100%;
    margin-left: 310px;
    position: fixed;
    top: 0;
    right: 0;
    height: 100px;
}

.toggle-btn {
    background: #fff;
    border-radius: 100%;
    box-shadow: 0px 6px 20px #0055653b;
    width: 50px;
    height: 50px;
    text-align: center;
}

.profile-sec {
    display: flex;
    align-items: center;
}

.profile-sec .admin-name {
    font-size: 1.3rem;
}

.profile-sec .user-img {
    width: 65px;
    height: 65px;
    border-radius: 100%;
    border: 2px solid #fff;
    box-shadow: 0px 0px 20px #0055653b;
    overflow: hidden;
    margin-right: 24px;
}

.profile-sec {
    display: flex;
    align-items: center;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: calc(100% - 100px);
    margin-top: 100px;
    width: 310px;
    background: #fff;
    transition: all 0.5s;
    padding: 6px 14px;
    z-index: 99;
    border: 1px solid #DFDFDF;
    overflow: auto;
}


button.btn.toggle-btn i {
    margin: 0;
    font-size: 2rem;
    color: #2c76f7;
}

.search-bar #search {
    border: none;
    background: #e2e2e2;
    padding: 10px 1rem;
}

.sidebar .nav-list {
    list-style: none;
    margin-top: 4rem;
    padding-left: 0;
}

.nav-list>li {
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 2rem;
    transition: .5s all;
}

.nav-list>li:hover {
    background: #005565;
}
.nav-list>li.active {
    background: #005565;
    color: #fff;
}
.nav-list>li.active a {
    color: #fff;
}

.nav-list>li>a {
    color: #7a7a7a;
    display: flex;
    align-items: center;
}

.nav-list>li:hover a {
    color: #fff;
}

.nav-list>li>a .link-name {
    margin-left: 3rem;
    font-size: 1.5rem;
}

.nav-list>li>a>i {
    font-size: 2rem;
}

.head-active,
.homeContent-active {
    width: 100% !important;
    margin-left: 0 !important;
}

.sidebar-active {
    left: -310px;
}

.home-content {
    width: calc(100% - 310px);
    background: #fff;
    margin-left: 310px;
    transition: all 0.5s;
}

.inner-content {
    /* padding: 8rem 2.4rem 1rem 2.4rem; */
    padding: 2rem 2.4rem 2.4rem;
    height: calc(100% - 100px);
    margin-top: 100px;
}

.inner-content h2 {
    /* font-size: 2.2rem; */
    color: #000;
}

.table-wrapper {
    padding: 2rem;
    border: 1px solid gainsboro;
    border-radius: 12px;
    margin-top: 3rem;
}

.table-wrapper table.dataTable {
    vertical-align: middle;
    font-size: 1.2rem;
    margin-bottom: 2rem !important;
}

.table-wrapper table.dataTable thead th {
    padding: 20px 0;
}

.table-wrapper table.dataTable tbody td {
    padding: 18px 0;
}

.table-wrapper table.dataTable tr {
    border: transparent;
}

.table-wrapper table.dataTable tbody td:nth-child(5) {
    color: #239755;
}

.table-wrapper table.dataTable tbody td:nth-child(7) {
    color: #6A45C5;
}

.table-wrapper table.dataTable tr.even {
    background: #fafafa !important;
}

.table-wrapper .active>.page-link,
.page-link.active {
    z-index: 3;
    color: #005565;
    background-color: #eaeaea;
    font-size: 1.2rem;
    border-radius: 5px;
    border: 1px solid #a0a0a0;
}

.table-wrapper .pagination .paginate_button .page-link {
    border: none;
    font-size: 1.2rem;
    padding: 7px 15px;
}

.table-wrapper table.dataTable tbody td:nth-child(8) span {
    font-size: 1.6rem;
    color: #7a7a7a;
    cursor: pointer;
}

thead tr {
    border-bottom: 1px solid gainsboro !important;
}

/* =====21 November====== */
.subMenu{
    list-style: none;
    display: none;
    padding: 0;
    margin-top: 1.4rem;
}
.subMenu li{
    line-height: 50px;
}
.subMenu li a{
    display: block;
    width: 100%;
    padding-left: 20px;
}
.subMenu li a:hover{
    background: #fff;
    color: #005565;
}
.chevronDown{
    margin-left: auto;
    font-size: 1.4rem;
}
.subMenu-active{
    display: block;
}
