body{
    font-family: "Lexend Deca", sans-serif;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    margin: 0;
}
*,::after, ::before {
    box-sizing: border-box;
}
.ScrollStop{
    overflow: hidden;
}
p{
    color: #404040;
    font-weight: 300;
}
.container{
    width: 100%;
    max-width: 1470px;
    padding: 0 30px;
    margin: 0 auto;
}
/* password strength css */
.password-strength {
    margin-top: 10px;
}

#password-strength-bar {
    height: 10px;
    width: 0%;
    background-color: red;
    transition: width 0.3s ease-in-out;
}

.weak {
    background-color: red !important;
}

.moderate {
    background-color: orange !important;
}

.good {
    background-color: yellow !important;
}

.strong {
    background-color: lightgreen !important;
}

.very-strong {
    background-color: green !important;
}
.password-message {
    display: none;
    color: red;
    font-size: 12px;
    margin-top: 5px;
}
/* checkbox */
.custom-checkbox {
    position: relative;
}
input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: fit-content;
    padding: initial;
    margin: 0;
    height: 0;
    display: contents;
  }
  .custom-checkbox label {
    padding-left: 30px;
    font-size: 16px;
  }
.custom-checkbox label:before {
    content: '';
    -webkit-appearance: none;
    background-color: #fff;
    border: 1px solid #ddd;
    display: inline-block;
    position: absolute;
    cursor: pointer;
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
}
.custom-checkbox input:checked + label:before {
    background-color: #0F7774;
    border-color: #0F7774;
}
.custom-checkbox input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 7px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}
.custom-checkbox label::after {
    content: '';
    position: absolute;
    display: none;
    left: 6px;
    top: 4px;
    width: 2px;
    height: 5px;
    border: solid white;
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
}
.custom-select {
  display: flex;
  align-items: center;
  margin-top: 20px;
  position: relative;
}
.loadingWrapperr {
    width: 15%;
    align-items: center;
    height: 60px;
}
.loadingWrapperr .Pageloader {
    width: 45px;
    height: 45px;
}
.applybutton {
  padding: 15px 30px 15px 30px;
  background-color: white;
  border: 1px solid #ddd;
  padding: 17px 30px;
  font-weight: 500;
  border-radius: 5px;
  margin-left: 5px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.applybutton:hover {
    background-color: #33005A;
    color: white;
    cursor: pointer;
}
.custom-select .approval_status{
    width:20%;
    min-height: auto;
    padding: 15px;
    border-radius: 5px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    border: 1px solid #DDD;
    cursor: pointer;
}
/* Start Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px;
    max-width: 1920px;
    margin: 0 auto;
}

.ScrollStop{
    overflow: hidden;
}

.Wrapper .sidebar {
    width: 100%;
    max-width: 330px;
    background-color: #fff;
    padding: 30px;
}
.Wrapper{
    display: flex;
}
.Wrapper .content {
    width: 100%;
    background-color: #F4F4F4;
}
.Wrapper .sidebar .tab {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #D7D2C8;
}
.Wrapper .tabsMenu a {
    border-bottom: 0 !important;
}
.Wrapper .sidebar .tabsMenu a {
    text-decoration: none;
    padding: 20px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #404040;
    display: block;
    cursor: pointer;
}
.Wrapper .sidebar .tabsMenu a.tab.active {
    border-radius: 8px;
    color: #fff;
    background-color: #0F7774;
}
.Wrapper .sidebar .tab:last-child {
    border-bottom: none;
}
.Wrapper .tab-content {
    display: none;
    padding: 60px;
}

.Wrapper .tab-content.active {
    display: block;
    animation: fadeSlow 0.5s ease forwards;
}

.bg-white{
    background-color: #fff;
}
.color-white{
    color: #fff;
}
.Wrapper .sidebar .dropdown button {
    border: none;
    background-color: transparent;
    width: 100%;
    font-family: "Lexend Deca";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.Wrapper .sidebar .dropdown button .btnTitle{
    margin: 0 10px;
}
.Wrapper .sidebar .dropdown .toggle-content a {
    display: block;
    text-decoration: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    color: #404040;
    padding: 15px 0px;
    line-height: 1.6;
}
.Wrapper .sidebar .dropdown .toggle-content a:hover {
    color: #0F7774;
}
.Wrapper .sidebar .dropdown .toggle-content {
    padding-left: 50px;
}
.Wrapper .sidebar .dropdown button {
    text-decoration: none;
    padding: 20px 0;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    border-radius: 8px;
    color: #fff;
    background-color: #0F7774;
    display: block;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
}
span.icon-openarrow {
    transition-duration: 0.5s;
    transform: rotate(0deg);
}
span.icon-openarrow.active {
    transform: rotate(180deg) !important;
}
.Wrapper .tab-content .tabWrapper {
    padding: 40px 30px;
    background-color: #fff;
}
.Wrapper .sidebar .dropdown .toggle-content a.tab.active {
    color: #0F7774;
}
.TableCenter{
    text-align: center !important;
}
/* Text Editor */

.Wrapper .tab-content .tabWrapper h2 {
    font-size: 36px;
    font-weight: 400;
    color: #33005A;
    font-family: none;
    margin: 0;
    font-family: 'Noto Serif Condensed';
}
.Wrapper .tab-content .tabWrapper .btnTitle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.btnTitle a {
    text-decoration: none;
    padding: 20px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    color: #fff;
    background-color: #0F7774;
}
.Wrapper .tab-content .tabWrapper p {
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    margin: 20px 0 40px;
    line-height: 1.6;
}
.Wrapper .tab-content .tabWrapper .fileUpload .upload-area .inputFront {
    font-family: 'Lexend Deca';
}
.upload-area {
    border-radius: 10px;
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #F4F4F4;
    cursor: pointer;
    transition: border-color 0.3s, background-color 0.3s;
}

.upload-area:hover {
    border-color: #777;
    background-color: #f9f9f9;
}

.upload-area.dragover {
    border-color: #333;
    background-color: #eee;
}
.fileUpload .upload-area .inputFront h2, .fileUpload .upload-area .inputFront p {
    margin: 0;
    color: #404040;
    font-family: 'Lexend Deca';
}
.fileUpload .upload-area .inputFront h2 {
    margin: 10px 0 5px;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
}
.editor-toolbar {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #ccc;
    padding: 10px;
    background-color: #f4f4f4;
    margin-bottom: 10px;
}

.editor-toolbar button {
    margin-right: 5px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    background-color: #fff;
    cursor: pointer;
}

.editor-toolbar button:hover {
    background-color: #ddd;
}

.editor-content {
    border: 1px solid #ccc;
    padding: 10px;
    min-height: 300px;
    background-color: #fff;
}
/* End Text Editor */
.videoTitle {
    margin: 30px 0;
}
.videoTitle .input-group {
    margin-bottom: 30px;
}

.videoTitle .input-group label {
    display: block;
    margin-bottom: 10px;
    text-align: left;
    color: #404040;
    font-size: 16px;
    font-weight: 300;
}

.videoTitle .input-group input {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 0px 20px;
    min-height: 60px;
    font-family: "Lexend Deca";
    font-size: 14px;
    font-weight: 300;
}

/* Tab 3 */
.Wrapper .tab-content .tabWrapper .table-container{
margin-top: 30px;
}

.Wrapper .tab-content .tabWrapper .table-container table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.Wrapper .tab-content .tabWrapper .table-container thead th {
    background-color: #33005A;
    cursor: pointer;
    padding: 18px 20px;
    position: relative;
    color: #fff;
    font-family: "Lexend Deca";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
}
.Wrapper .tab-content .tabWrapper .table-container tbody td {
    font-family: "Lexend Deca";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    padding: 16px 20px;
}
.Wrapper .tab-content .tabWrapper .table-container tbody td .activ-live {
    background: rgba(72, 165, 72, 0.20);
    border-radius: 4px;
    padding: 5px 10px;
    border: 1px solid #48A548;
    font-size: 12px;
}
.Wrapper .tab-content .tabWrapper .table-container tbody td .archived{
    background: #F4F4F4;
    border-radius: 4px;
    padding: 5px 10px;
    border: 1px solid #D7D2C8;
    font-size: 12px;
}
.Wrapper .tab-content .tabWrapper .table-container tbody tr:nth-child(odd) {
    background-color: #fff;
}

.Wrapper .tab-content .tabWrapper .table-container tbody tr:nth-child(even) {
    background-color: #F1EDE6;
}
.Wrapper .tab-content .tabWrapper .table-container .sort-icon {
    font-size: 12px;
    margin-left: 5px;
    visibility: hidden;
}

.Wrapper .tab-content .tabWrapper .table-container thead th:hover .sort-icon {
    visibility: visible;
}

.Wrapper .tab-content .tabWrapper .table-container .action-icon {
    cursor: pointer;
    margin: 0 5px;
}

.Wrapper .tab-content .tabWrapper .table-container .edit-icon {
    color: #4CAF50;
}

.Wrapper .tab-content .tabWrapper .table-container .delete-icon {
    color: #F44336;
}

/* End Tab 3 */
footer .footerContent p {
    color: #404040;
}
footer .footerContent ul li a {
    color: #0F7774;
}

/* Pagination */
.main .pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin-top: 40px;
    justify-content: end;
}

.main .pagination a {
    text-decoration: none;
    color: #33005A;
    margin: 0 5px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D7D2C8;
}
.main .pagination a.prev:hover, .main .pagination a.next:hover {
    background-color: #e3e1e1;
}
.main .pagination a:hover {
    background-color: #33005A;
    color: #fff;
}

.main .pagination a.active {
    background-color: #33005A;
    color: #fff;
    border-color: #007bff;
}

.main .pagination a.prev span, .pagination a.next span{
    padding: 0;
    display: inline-flex;
    color: #0F7774;
    font-size: 12px;
}
/* End Pagination Start */
/* paginationn
*/
.main .paginationn {
    display: flex;
    list-style: none;
    padding: 0;
    margin-top: 40px;
    justify-content: end;
}

.main .paginationn a {
    text-decoration: none;
    color: #33005A;
    margin: 0 5px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D7D2C8;
}
.main .paginationn a.prev:hover, .main .paginationn a.next:hover {
    background-color: #e3e1e1;
}
.main .paginationn a:hover {
    background-color: #33005A;
    color: #fff;
}

.main .paginationn a.active {
    background-color: #33005A;
    color: #fff;
    border-color: #007bff;
}

.main .paginationn a.prev span, .paginationn a.next span{
    padding: 0;
    display: inline-flex;
    color: #0F7774;
    font-size: 12px;
}
/* end */
/* Filter */
.styled-date-input {
    position: relative;
    display: inline-block;
}

.Wrapper .tab-content .tabWrapper form.filter-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.Wrapper .tab-content .tabWrapper form.filter-form select, input {
    width: 100%;
    padding: 10px 20px;
    border: none;
    border: 1px solid #D7D2C8;
    min-height: 60px;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
}
.Wrapper .tab-content .tabWrapper form.filter-form .FiterLabel {
    width: 125px;
}
.Wrapper .tab-content .tabWrapper form.filter-form .inputFilterForm {
    display: grid !important;
    grid-gap: 15px;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    padding-right: 30px;
}

.Wrapper .tab-content .tabWrapper form.filter-form .Fitertile a {
    padding: 20px 40px;
    background-color: #0F7774;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-family: "Lexend Deca";
    font-weight: 500;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
}

/* End Filter */

/* Search */
form.searchAlert {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}
.search-container {
    position: relative;
    width: 300px;
}

.search-input {
    width: 100%;
    padding: 10px 20px;
    padding-right: 40px;
    border: 1px solid #D7D2C8;
    border-radius: 8px;
    outline: none;
    font-size: 16px;
}
.search-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    color: #0F7774;
    font-size: 20px;
}
/* End Search */

/* Start Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.80);
}
/* Modal Content */
.main .modal-content {
    padding: 30px;
    background-color: #fefefe;
    border: 1px solid #888;
    width: 100%;
    max-width: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: slideFromTop 0.5s ease forwards;
}

/* The Close Button */
.main .close {
    color: #0F7774;
    float: right;
    font-size: 38px;
    font-weight: 200;
    position: absolute;
    right: 20px;
    top: 2px;
}

.main .close:hover,
.main .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.main .modal .modal-content .modalBOdy .modalRow .modalVideo {
    width: 65%;
}

.main .modal .modal-content .modalBOdy .modalRow .modalContent h2 {
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    color: #33005A;
    font-family: auto;
    margin-top: 0;
}

/* User Form */
.loginForm {
    text-align: center;
    box-sizing: border-box;
}

.loginForm h1 {
    text-align: center;
    margin: 0px;
    color: #33005A;
    font-family: none;
    font-weight: 400;
    font-size: 36px;
}
.loginForm p{
    line-height: 1.6;
    margin-bottom: 30px;
}
.loginForm .input-group {
    margin-bottom: 30px;
}

.loginForm .input-group label {
    display: block;
    margin-bottom: 10px;
    text-align: left;
    color: #404040;
    font-size: 16px;
    font-weight: 300;
}

.loginForm .input-group input, select {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 0px 20px;
    min-height: 60px;
    font-family: "Lexend Deca";
    font-size: 14px;
    font-weight: 300;
}

.loginForm button {
    padding: 20px 40px;
    background-color: #0F7774;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-family: "Lexend Deca";
    font-weight: 500;
    font-size: 16px;
    border-radius: 8px;
    float: right;
}
.loginForm .captchCode{
    text-align: left;
    margin-bottom: 30px;
    margin-left: -5px;
}
/* Hide the default checkbox */
.checkbox-container{
    text-align: left;
    display: block;
    font-family: "Lexend Deca";
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: 26px;
display: flex;
    align-items: center;
    margin-top: -15px;
    margin-bottom: 20px;
    position: relative;
}
.checkbox-container input {
    cursor: pointer;
    outline-color: #DDDDDD;
    width: 16px;
    height: 16px;
    margin: 0;
    margin-right: 15px;
}
a.publish.btnEffect {
    border: 2px solid #0F7774 !important;
}
/* End User form */

.table-container {
    width: 100%;
    overflow-x: auto;
}

.responsive-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.responsive-table thead {
    background-color: #333;
    color: white;
}

.responsive-table th,
.responsive-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}


/* View  Material Tabs */
.ViewTabs {
    width: 100%;
    margin: 0 auto;
}
.ViewTabs .tabsWrapper{
    margin: 40px 0;
    border-bottom: 1px solid #ddd;
}

.ViewTabs .tab-header {
    display: flex;
    border-bottom: 2px solid #ccc;
    margin-bottom: 20px;
}

.ViewTabs .tab-button {
    border: none;
    background-color: #fff;
    border-bottom: 3px solid #FFF;
    color: #33005A;
    font-size: 18px;
    font-weight: 500;
    font-family: "Lexend Deca";
    padding: 10px 0px 20px;
    cursor: pointer;
    margin-right: 40px;
}


.ViewTabs .tab-button.active {
    border-bottom: 3px solid #0F7774;
    color: #0F7774;
}


.ViewTabs .tabcontent {
    display: none;
}

.ViewTabs .tabcontent.active {
    display: block;
}
/* End View material Tabs */

/* Footer */
.main, footer{
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}
footer{
    background-color: #33005A;
    padding: 30px 100px;
}
footer .footerContent {
    display: flex;
    justify-content: space-between;
    color: #fff;
    align-items: center;
}
footer .footerContent .wrapperLogo p {
    color: #fff;
    font-family: "Lexend Deca";
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 0 0 0 80px;
}
footer .footerContent .copyRight ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
footer .footerContent .copyRight ul li a {
    color: #fff;
    text-decoration: none;
    font-family: "Lexend Deca";
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    padding-left: 40px;
}
footer .footerContent .copyRight {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding-left: 80px;
}
footer .footerContent .copyRight p{
    color: #fff;
}

/* Start Media Query */

@media screen and (max-width: 1440px) {
    .header{
        padding: 30px 20px;
    }
    footer {
        padding: 30px 30px;
    }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .Wrapper .sidebar .dropdown .toggle-content {
        padding-left: 30px;
    }
    .Wrapper .tab-content {
        display: none;
        padding: 20px;
    }
    .Wrapper .sidebar {
        padding: 20px;
        max-width: 250px;
    }
    .Wrapper .sidebar .dropdown button .btnTitle {
        margin: 0 5px;
    }
    .Wrapper .sidebar .dropdown button {
        font-size: 14px;
    }
    .Wrapper .sidebar .tabsMenu a {
        font-size: 14px;
    }
    .Wrapper .sidebar .dropdown .toggle-content a {
        font-size: 14px;
    }
    .Wrapper .tab-content .tabWrapper .table-container thead th {
        padding: 16px 10px;
        font-size: 14px;
    }
    .Wrapper .tab-content .tabWrapper .table-container tbody td {
        font-size: 12px;
        padding: 16px 5px;
    }
    .Wrapper .tab-content .tabWrapper {
        padding: 40px 20px;
    }
    .Wrapper .tab-content .tabWrapper form.filter-form .inputFilterForm {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
        padding-right: 20px;
    }
    .Wrapper .tab-content .tabWrapper form.filter-form select, input {
        min-height: 50px;
    }
    footer .footerContent .wrapperLogo p {
        margin: 0 0 0 50px;
    }
}
@media screen and (min-width: 768px) and (max-width: 991px){
    .responsive-table thead {
        display: none;
    }
    body .main .modal .modal-content .modalBOdy .modalRow .modalVideo, body .main .modal .modal-content .modalBOdy .modalRow .modalContent {
        width: 100%;
        padding: 0px;
        display: inline-block;
    }
    .responsive-table, 
    .responsive-table tbody, 
    .responsive-table tr, 
    .responsive-table td {
        display: block;
        width: 100%;
    }
    
    .responsive-table tr {
        margin-bottom: 15px;
        border-bottom: 1px solid #ddd;
    }
    
    .responsive-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }
    
    .responsive-table td::before {
        content: attr(data-label);
        left: 0;
        width: 50%;
        padding-left: 15px;
        font-weight: bold;
        text-align: left;
        color: #33005A;
        float: left;
        padding: 0;
    }
    .Wrapper .tab-content .tabWrapper .table-container tbody td {
        text-align: right !important;
        font-size: 14px;
        padding: 16px 15px;
        border-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .Wrapper .tab-content .tabWrapper form.filter-form .inputFilterForm {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
    }
    .Wrapper .tab-content .tabWrapper form.filter-form .FiterLabel {
        width: 100%;
        font-size: 18px;
        margin-bottom: 20px;
    }
    .Wrapper .tab-content .tabWrapper form.filter-form .Fitertile a {
        display: block;
        width: 100%;
        margin-top: 20px;
        text-align: center;
        text-transform: uppercase;
    }
    .Wrapper .tab-content .tabWrapper form.filter-form {
        padding: 20px 15px;
        background-color: #f8f8f8;
        display: block;
    }
    .Wrapper .tab-content {
        padding: 25px 15px;
    }
    .Wrapper .sidebar .dropdown .toggle-content {
        padding-left: 0;
        text-align: center;
        border-bottom: 1px solid #ddd;
    }

.Wrapper .sidebar .tabsMenu a {
    text-align: center;
}
.Wrapper .tab-content .tabWrapper .btnTitle {
    display: block;
}
.btnTitle a {
    display: block;
    margin-top: 20px;
    text-align: center;
}
.search-container {
    width: 100%;
    margin-top: 15px;
}
.Wrapper .tab-content .tabWrapper {
    padding: 30px 15px;
}
.main .pagination {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    justify-content: left;
}
.main .pagination a {
    margin: 0 5px 10px;
}
.Wrapper .sidebar {
    max-width: 270px;
    padding: 30px 20px;
}
.Wrapper .sidebar .dropdown button .btnTitle {
    margin: 0 10px;
    font-size: 14px;
}
.Wrapper .sidebar .tabsMenu a {
    font-size: 14px;
}
.Wrapper .sidebar .dropdown .toggle-content a {
    font-size: 14px;
}
.Wrapper .tab-content {
    padding: 30px;
}
.Wrapper .tab-content .tabWrapper p {
    margin: 20px 0;
}
.Wrapper .tab-content .tabWrapper form.filter-form .inputFilterForm {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    padding-right: 20px;
}
footer .footerContent .copyRight {
    padding-left: 30px;
}
footer .footerContent .copyRight p {
    font-size: 14px;
}
footer {
    padding: 30px 30px;
}
footer .footerContent .wrapperLogo img {
    width: 100%;
    max-width: 150px;
}
footer .footerContent .wrapperLogo p {
    margin: 0 0 0 40px;
}
}
@media (max-width: 767px) {
    .responsive-table thead {
        display: none;
    }
    .custom-select .approval_status {
        width: 100%;
      }
      .loadingWrapperr {
        width: 100%;
        height: 60px;
        position: absolute;
        right: 0;
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: end;
      }
      .loadingWrapperr .Pageloader {
        margin-top: 50px;
      }
    .responsive-table, 
    .responsive-table tbody, 
    .responsive-table tr, 
    .responsive-table td {
        display: block;
        width: 100%;
    }
    
    .responsive-table tr {
        margin-bottom: 15px;
        border-bottom: 1px solid #ddd;
    }
    
    .responsive-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }
    
    .responsive-table td::before {
        content: attr(data-label);
        left: 0;
        width: 50%;
        padding-left: 15px;
        font-weight: bold;
        text-align: left;
        color: #33005A;
        float: left;
        padding: 0;
    }
    .Wrapper .tab-content .tabWrapper .table-container tbody td {
        text-align: right !important;
        font-size: 14px;
        padding: 16px 15px;
        border-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .Wrapper .tab-content .tabWrapper form.filter-form .inputFilterForm {
        grid-template-columns: repeat(1, 1fr);
        padding: 0;
    }
    .Wrapper .tab-content .tabWrapper form.filter-form {
        display: block;
    }
    .Wrapper .tab-content .tabWrapper form.filter-form .FiterLabel {
        width: 100%;
        font-size: 18px;
        margin-bottom: 20px;
    }
    .Wrapper .tab-content .tabWrapper form.filter-form .Fitertile a {
        display: block;
        width: 100%;
        margin-top: 20px;
        text-align: center;
        text-transform: uppercase;
    }
    .Wrapper .tab-content .tabWrapper form.filter-form {
        padding: 20px 15px;
        background-color: #f8f8f8;
    }
    .Wrapper {
        display: block;
    }
    .Wrapper .sidebar {
        max-width: 100%;
        padding: 25px;
        padding-top: 0;
        
    }
    .Wrapper .tab-content {
        padding: 25px 15px;
    }
    .Wrapper .sidebar .dropdown .toggle-content {
        padding-left: 0px;
        text-align: center;
    }
    .main .modal-content {
        width: 90%;
    }
    .Wrapper .sidebar .tab:last-child {
        border-bottom: 1px solid #ddd;
    }
.Wrapper .sidebar .tabsMenu a {
    text-align: center;
    margin-top: 10px;
}
.Wrapper .tab-content .tabWrapper .btnTitle {
    display: block;
}
.btnTitle a {
    display: block;
    margin-top: 20px;
    text-align: center;
}
.search-container {
    width: 100%;
    margin-top: 15px;
}
.Wrapper .tab-content .tabWrapper {
    padding: 30px 15px;
}
.main .pagination {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    justify-content: left;
}
.main .pagination a {
    margin: 0 5px 10px;
}
.Wrapper .tab-content .tabWrapper h2 {
    font-size: 30px;
}
.Wrapper .tab-content .tabWrapper .submitBtn {
    display: block !important;
}
.Wrapper .tab-content .tabWrapper .submitBtn a {
    width: 100% !important;
    margin: 0 0 10px !important;
    text-align: center;
}
.Wrapper .tab-content .tabWrapper .fileUpload .upload-area .inputFront h2 {
    font-size: 14px;
    max-width: 160px;
}
.fileUpload .upload-area .inputFront h2, .fileUpload .upload-area .inputFront p {
    font-size: 14px;
}

footer .footerContent {
    display: block;
}
footer .footerContent .wrapperLogo {
    display: block;
    text-align: center;
}
footer .footerContent .wrapperLogo img {
    max-width: 135px;
    display: block;
    margin: 0 auto;
}
footer .footerContent .wrapperLogo p {
    margin: 30px 0 20px 0;
}
footer {
    padding: 30px 30px;
}
footer .footerContent ul {
    justify-content: center;
}
footer .footerContent p {
    margin: 0 0 20px;
    text-align: center;
}
footer .footerContent ul li a {
    padding: 0 10px;
}
footer .footerContent .copyRight{
    padding: 0;
    flex-direction: column-reverse;
}
footer .footerContent .copyRight ul {
    padding: 30px 0 20px;
}
footer .footerContent .copyRight p {
    margin: 0;
}
footer .footerContent .copyRight ul li a{
    padding: 0px 10px;
}
.loginForm p {
    line-height: 1.2;
    margin-bottom: 30px;
    font-size: 14px;
    margin-top: 5px;
}
.loginForm h1 {
    font-size: 30px;
}
.loginForm .input-group input, select {
    min-height: 50px;
}
.loginForm .input-group {
    margin-bottom: 20px;
}
.loginForm button {
    padding: 15px 20px;
    font-size: 14px;
    float: none;
}
}

@media screen and (max-width: 374px) {
    .Wrapper .tab-content .tabWrapper .table-container tbody td {
        font-size: 12px;
    }
}
@keyframes slideFromTop {
    from {
        top: -100%;
    }
    to {
        top: 50%;
    }
}

@keyframes fadeSlow {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
