#loader{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,0.3);
    display: none;
    z-index: 99;
}
.ajax-loader{
    z-index: 2;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #164E63;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #164E63 transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}
@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.pointer{
    cursor: pointer;
}

a {
    text-decoration: none !important;
    transition: .3s !important;
    font-family: 'Poppins', sans-serif;
}

p {
    color: #000;
    line-height: 26px;
    margin: 0 0 20px;
    text-transform: none;
    font-weight: 400;
    text-align: justify;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

ul {
    list-style: none;
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    line-height: 1;
    /* text-transform: uppercase; */
    font-weight: 700 !important;
    color: #333333;
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    line-height: 1;
    /* text-transform: uppercase; */
    font-weight: normal;
    color: #333333;
}

h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    line-height: 1;
    /* text-transform: uppercase; */
    font-weight: normal;
    color: #333333;
}

h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    line-height: 1;
    text-transform: capitalize;
    font-weight: normal;
    color: #333333;
    font-weight: 600;
}

/* Heading  */
.heading{
    margin-bottom: 25px;
}
.heading h6{
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
}
.heading h2{
    font-size: 33px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
}

/* Anchor-btn  */
.uni-a {
    padding: 18px 0px;
}

.uni-a a {
    color: #ffffff;
    border: none;
    background-color: #164E63;
    transition: all .2s ease-in-out;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 5px;
    letter-spacing: normal !important;
    font-weight: 400;
    display: inline-block;
}

.uni-a a:hover {
    color: #ffffff;
    background-color: #2e2e2e;
    border: none;
    background-position: 100% 0;
}

/* Anchor-btn-End  */
/* Universal-Button  */
.uni-btn button {
    font-size: 15px;
    line-height: 12px;
    padding: 16px 40px;
    color: #ffffff !important;
    background-color: #164E63;
    outline: none !important;
    border: none;
    border-radius: 2px;
    transition: .3s;
    font-weight: 500;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.uni-btn button::after{
    content: "";
    width: 0%;
    height: 100%;
    background-color: #333;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50px;
    z-index: -1;
    opacity: 1;
    transition: .3s;
}

.uni-btn button:hover::after {
    /* background-color: #333 !important;
    color: #fff !important; */
    width: 100%;
    opacity: 1;
}

/* Header  */
header{
    position: sticky;
    top: 0px;
    background-color: #164E63;
    padding: 15px 20px;
    z-index: 1000;
}
header .logo{
    height: 100%;
    align-items: center;
    display: flex;
}
header .logo a{
    color: #fff;
}
header .logo img{
    width: 100%;
}
header .header-link{
    display: none;
    /* display: flex; */
    align-items: center;
    height: 100%;
}
header .header-link a{
    color: #fff;
    font-size: 14px;
}
header .header-link a:hover{
    color: #ffffffb3;
}
.bread-active{
    color: #ffffffb3 !important;
}
header .header-link i{
    padding: 0px 5px;
    color: #fff;
    font-size: 11px;
}
.head-right{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.search{
    display: none;
    position: relative;
    margin-right: 25px;
}
.search i{
    position: absolute;
    right: 10px;
    top: 11px;
}
#search{
    padding: 8px 32px 8px 12px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    outline: none;
    font-size: 14px;
    background-color: #E1E7EF;
}
.dropdown .btn{
    border-radius: 50px;
    outline: none;
    box-shadow: none;
    background-color: #ffffff66;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
}
/*.dropdown button{
    border-radius: 50px;
    outline: none;
    box-shadow: none;
    background-color: #ffffff66;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
}*/
.dropdown button:hover{
    background-color: #f9f9f98e;
    color: #fff;
}
.dropdown button i{
    /* font-size: 12px; */
    font-size: 15px;
}
.dropdown .dropdown-toggle::after{
    margin-left: 0px;
    display: none;
}
.dropdown .btn-check:focus + .btn, .btn:focus{
    box-shadow: none;
}
.dropdown .dropdown-menu {
    width: 225px;
    background-color: #123E4F;
    border: none;
}
.dropdown .dropdown-menu a{
    color: #fff;
    text-align: left !important;
}
.dropdown .dropdown-menu a:hover{
    background-color:#ffffff0d;
}

/* Navbar  */
.menu{
    background-color: #E2E8F0;
    /* height: 100vh; */
    padding: 30px 18px;
    height: 100%;
    z-index: 99999;
}
.main-screen{
    background-color: #F1F5F9;
    height: 100%;
    min-height: 100vh;
}
.menu li{
    width: 100%;
}
.menu li a{
    width: 100%;
    display: inline-block;
    background-color: #F1F5F9;
    height: 50px;
    border-radius: 12px;
    margin-bottom: 4px;
    padding-left: 20px;
    padding-right: 10px;
    font-size: 14px;
    color: #475569;
    display: flex;
    align-items: center;
    border-bottom: 3px solid #00000014;
}
.menu li a:hover{
    background-color: #164E63;
    color: #fff;
    border-bottom: 3px solid #ffffffb3;
}
.menu li a:hover i{
    color: #fff;
}
.menu i{
    font-size: 16px;
    margin-right: 12px;
    color: #475569;
}
.active{
    background-color: #164E63 !important;
    color: #fff !important;
    border-bottom: 3px solid #ffffffb3 !important;
}
.active i{
    color: #fff !important;
}
#burger{
    display: none;
}

@media screen and (max-width: 1099px){
    .menu li a{
        padding-left: 15px;
    }
}
@media screen and (max-width:991px){
    #burger{
        display: block;
    }
    #burger i{
        color: #fff;
        font-size: 25px;
    }
    .r-align{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0px;
    }
    .menu{
        height: auto;
        display: none;
    }
    .main-screen{
        height: auto;
    }
    .menu li a{
        padding-left: 20px;
    }
    header{
        padding: 15px 5px;
    }
}
@media screen and (max-width:767px){
    .head-right{
        justify-content: space-between;
        /* padding-top: 10px; */
    }
    .header-link{
        padding-bottom: 5px;
        padding-top: 5px;
        border-top: 1px solid gray;
        border-bottom: 1px solid gray;
    }
    .r-align{
        margin-bottom: 0px;
    }
    .dataTables_length{
        margin: 25px 0px !important;
    }
    .dataTables_filter {
        margin: 25px 0px !important;
    }
}

.main-screen{
    padding: 10px;
}
table {
    /* border: 1px solid #ccc; */
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
    font-family: 'Poppins', sans-serif;
    /* box-shadow: 0 1px 2px 0 rgb(0 0 0 / 5%); */
    box-shadow: 0 5px 10px 0 rgb(0 0 0 / 5%);

}

table caption {
    font-size: 1.5em;
    margin: .5em 0 .75em;
}
table th{
    background-color: transparent;
    border: none;
}

table tr {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: .35em;
    transition: .1s;
    z-index:999;
}
tbody tr{
    background-color: #fff;
}
tbody tr:hover{
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);
    z-index:999;
    transform: scale(1.01);
}

table th,
table td {
    padding: .625em;
    text-align: center;
    font-size: 14px;
}

table th {
    font-size: 13px;
    letter-spacing: 0px;
    text-transform: capitalize;
    font-weight: 600 !important;
    background-color: transparent;
}

@media screen and (max-width: 991px) {
    table {
        border: 0;
    }

    table caption {
        font-size: 1.3em;
    }

    table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    table tr {
        border-bottom: 3px solid #ddd;
        /* display: block; */
        display: flex;
        margin-bottom: .625em;
        overflow-x: auto;
    }

    table td {
        border-bottom: 1px solid #ddd;
        /* display: block; */
        display: flow-root;
        font-size: .8em;
        text-align: center;
    }

    table td::before {
        /*
        * aria-label has no advantage, it won't be read inside a table
        content: attr(aria-label);
        */
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }

    table td:last-child {
        border-bottom: 0;
    }
}

.main-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 48px 0px;
}
.showing{
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}
.main-screen select{
    width: auto;
    padding: 8px 32px 8px 12px;
    background-color: #fff;
    border-radius: 5px;
    border: none;
    outline: none;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
}
.main-screen .sec-search{
    position: relative;
}
.main-screen .sec-search input{
    position: relative;
    width: 100%;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    border: none;
    padding: 8px 40px 8px 12px;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
}
.sec-search i{
    position: absolute;
    top: 12px;
    right: 10px;
    font-size: 14px;
}
.page{
    padding-top: 30px;
}
.page ul{
    display: flex;
    align-items: center;
    justify-content: center;
}
.page ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 8px;
    margin-right: 8px;
    color: #212529;
    border-radius: 5px;
    min-width: 40px;
    text-align: center;
    font-size: 15px;
}
.page ul li .page-active{
    background-color: #fff;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 5%);
}
.page ul li a:hover{
    background-color: #ffffff99;
}
/* .defult i{
    color: #21252973;
} */

@media screen and (max-width: 767px) {
    .main-top{
        flex-direction: column;
        align-items: inherit;
        padding: 30px 0px;
    }
    .showing{
        padding: 15px 0px;
    }
    .page{
        padding: 15px 0px;
    }
}
@media screen and (max-width: 335px){
    .search{
        margin-right: 0px;
        margin-bottom: 10px;
    }
    .head-right{
        flex-direction: column;
    }
    .page ul li a{
        min-width: 25px;
    }
}

footer{
    background-color: #164E63;
    padding: 6px 0px;
}
footer P{
    margin-bottom: 0px;
    color: #fff;
    font-size: 13px;
    text-align: center;
}
.fa-xmark{
    color: #b91c1c;
}
.fa-check{
    color: #0d9488;
}

/* Jquery-Table  */
table.dataTable tbody tr{
    background-color: #fff !important;
}
table.dataTable.no-footer{
    border-bottom: none !important;
}
.sorting{
    padding-right: 5px !important;
}
.dataTables_wrapper .dataTables_length select{
    width: auto !important;
    padding: 8px 25px 8px 12px !important;
    background-color: #fff !important;
    border-radius: 5px !important;
    border: none !important;
    outline: none !important;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 5%) !important;
}
.dataTables_wrapper .dataTables_filter input{
    position: relative !important;
    width: 100% !important;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 5%) !important;
    border: none !important;
    padding: 8px 40px 8px 12px !important;
    border-radius: 5px !important;
    font-size: 14px !important;
    outline: none !important;
    background-color: #fff !important;
    margin-left: 10px !important;
}

.dataTables_wrapper .dataTables_paginate{
    padding: 30px 0px !important;
    width: 100% !important;
    text-align: center !important;
}
.paginate_button {
    padding: 8px 8px !important;
    margin-right: 8px !important;
    color: #212529 !important;
    border-radius: 5px !important;
    min-width: 40px !important;
    text-align: center !important;
    font-size: 15px !important;
    border: none !important;
    margin-left: 0px !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover{
    background: #ffffff99 !important;
    color: black!important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current{
    background: #fff !important;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 5%) !important;
}
.dataTables_length{
    margin: 48px 0px;
}
.dataTables_filter{
    margin: 48px 0px;
}
.dataTables_filter label{
    display: flex;
    align-items: center;
}
.sorting{
    width: auto !important;
}

/* Case-Page  */
.case{
    padding: 40px;
    height: 100%;
    min-height: 100vh;
}
.case .form-box{
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 20px #0000000b;
    height: 100%;
    min-height: 100vh;
}
.case .form-row{
    margin-bottom: 10px;
}
.case .form-box form label{
    width: 100%;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 600;
}
.case .form-box form input{
    width: 100%;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    background-color: #fff;
    border: 1px solid #e5e7eb;
}
.case .form-box form input::placeholder{
    color: #B2BDCC;
    font-size: 16px;
}
.case .form-box form textarea{
    width: 100%;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    background-color: #fff;
    border: 1px solid #e5e7eb;
}
.case .form-box form textarea::placeholder{
    color: #B2BDCC;
    font-size: 16px;
}
.case .form-box form select{
    width: 100%;
    padding: 8px 8px;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    background-color: #fff;
    border: 1px solid #e5e7eb;
    color: #B2BDCC;
}
.case .form-box form select::placeholder{
    color: #B2BDCC;
    font-size: 16px;
}
.case .form-box form select option{
    background-color: #fff;
    color: #212529;
}
.date{
    color: #B2BDCC;
}
.dit h3{
    font-size: 16px;
    font-weight: 600;
}
.dit p{
    font-size: 15px;
}

@media screen and (max-width: 1199px){
    .case{
        padding: 40px 20px;
    }
}
@media screen and (max-width: 991px) {
    .case{
        padding:40px 20px;
    }
}
@media screen and (max-width: 767px) {
    .case{
        padding: 20px 12px;
    }
    .case .form-box{
        padding: 20px 12px;
    }
}

/* Note-Page  */
.note-box{
    padding: 20px;
    border: 1px solid #2e2e2e24;
    border-radius: 10px;
    box-shadow: 2px 2px 8px #2e2e2e24;
    margin-bottom: 20px;
    background-color: #fff;
}
.note-box h3{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}
.note-box p{
    text-align: justify;
    overflow: auto;
    height: 210px;
}
/* width */
.note-box ::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.note-box ::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.note-box ::-webkit-scrollbar-thumb {
    background: #164E63;
}

/* Handle on hover */
.note-box ::-webkit-scrollbar-thumb:hover {
    background: #164e63c9;
}


.note-head{
    display: flex;
    justify-content: space-between;
}
#add{
    background-color: #164E63;
    border: none;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    padding: 8px 30px;
    border-radius: 50px;
    color: #fff;
    transition: .3s;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 5%) !important;
}
#add:hover{
    background-color: #2e2e2e;
}
#add i{
    /* background-color: #2e2e2e; */
    color: #fff;
    border-radius: 50px;
    /* width: 30px;
    height: 30px; */
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
}
.note-link a{
    display: inline-block;
    font-size: 18px;
}
.note-link a:first-child{
    margin-right: 25px;
    color: #0d9488;
}
.note-link a:last-child{
    color: #b91c1c;
}
.modal{
    z-index: 100000;
}
.modal-header{
    background-color: #164E63;
    color: #fff;
    font-weight: 600;
}
.modal .btn-close{
    background-color: #fff;
}
.modal-dialog{
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    height: 100%;
}
.modal .form-row{
    margin-bottom: 10px;
}
.modal label{
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
}
.modal input{
    width: 100%;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    background-color: #fff;
    border: 1px solid #2e2e2e38;
}
.modal textarea{
    width: 100%;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    background-color: #fff;
    border: 1px solid #2e2e2e38;
}
.modal-body{
    padding: 30px 15px;
}
.login{
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background-color: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-box{
    background-color: #fff;
    /* padding:70px 48px; */
    padding:40px 48px;
    border-radius: 10px;
    box-shadow: 2px 2px 25px #2e2e2e38;
    animation: anim 0.7s linear 1;
}
@keyframes anim{
    0%{
        transform: translateY(-100%);
        opacity: 0;
    }
    100%{
        transform: translateY(0%);
        opacity: 1;
    }
}
.login h1{
    text-align: center;
    color: #2e2e2e;
    margin-bottom: 48px;
    font-weight: 500 !important;
}
.login-box input{
    width: 100%;
    margin-bottom: 20px;
    padding: 10px 12px;
    border-radius: 10px;
    box-shadow: none;
    border: none;
    outline-color: #164E63;
    outline: none;
    background-color: #fff;
    border: 1px solid #bdbdbd;
    color: #4f4f4f;
    transition: .3s;
}
.login-box .uni-btn{
    text-align: center;
}
.login-box .uni-btn button{
    background-color: #1e6782;
    margin-top: 10px;
    border-radius: 3px;
    width: 100%;
}
.login-box .uni-btn button:hover{
    background-color: #164E63 !important;
}
.burger{
    display: none !important;
}
.login-logo{
    text-align: center;
    margin-bottom: 30px;
}
.login-logo img{
    width: 32%;
}
.check{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.check input{
    width: auto;
    margin-bottom: 0px;
}
.check label{
    margin-left: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14.5px;
}

@media screen and (max-width: 767px){
    .login-box{
        padding: 70px 20px;
    }
    .note-box p{
        height: auto;
    }
}

#more{
    display: none;
}
.read{
    background: transparent;
    border: none;
    margin-left: 5px;
    transition: .1;
}
.read:hover{
    color: #164E63;
}

/* New  */
.menu{
    position: fixed;
    top: 65px;
    z-index: 0;
    width: 16.66666667%;
}
footer{
    z-index: 1;
    position: relative;
}
.uni-btn button{
    border-radius: 50px;
    padding: 17px 40px;
}
.form-row{
    position: relative;
}
.form-row i{
    position: absolute;
    top: 42px;
    right: 17px;
    font-size: 16px;
}
.dollar input{
    padding-right: 30px !important;
}


@media screen and (max-width: 991px){
    .menu{
        position: fixed;
        top: 67px;
        /* position: relative;
        top: 0px; */
        z-index: 100;
        width: 100%;
    }
}

.sec-btn{
    border: none;
    outline: none;
    /* display: flex; */
    align-items: center;
    /* width: 100%; */
    justify-content: center;
    background-color: transparent;
    font-size: 14px;
}
.sec-btn i{
    margin-right: 8px;
    font-size: 13px;
}
/* .sec-btn:hover{
    color: ;
} */
.menu .dropdown-menu{
    position: relative !important;
    transform: unset !important;
    background-color: transparent !important;
}
.menu .dropdown .dropdown-menu a{
    color: #475569;
}
.menu .dropdown .dropdown-menu a:hover{
    background-color: #164E63;
    color: #fff;
}
#drope{
    position: absolute;
    top: 18px;
    right: 12px;
    font-size: 12px;
    margin-right: 0px;
}
.menu{
    overflow: auto;
}
/* width */
.menu::-webkit-scrollbar {
    width: 6px;
}

/* Track */
.menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.menu::-webkit-scrollbar-thumb {
    background: #1f6f8b;
    border-radius: 5px;
}

/* Handle on hover */
.menu::-webkit-scrollbar-thumb:hover {
    background: #164e63cc;
}

.transaction-box{
    width: 40%;
    margin: auto;
    height: auto !important;
    min-height: auto !important;
}
.menu .dropdown-toggle{
    white-space: normal !important;
}

@media screen and (max-width: 1299px){
    .transaction-box{
        width: 60%;
    }
}
@media screen and (max-width: 991px){
    .menu .dropdown .dropdown-menu{
        width: 100% !important;
    }
    .transaction-box{
        width: 100%;
    }
}

.view-btn{
    border: none;
    outline: none;
    background-color: transparent;
}
.view-btn i{
    margin-right: 15px;
    font-size: 16px;
}

@media screen and (max-width: 1099px){
    .menu li a{
        padding-left: 10px;
        font-size: 13px;
    }
    .menu i{
        margin-right: 10px;
    }
}
@media screen and (max-width: 991px){
    .menu li a{
        padding-left: 20px;
        font-size: 14px;
    }
    .menu i{
        margin-right: 12px;
    }
}
.pay-btn{
    display: flex;
    justify-content: space-between;
}
.pay-btn .sec-btn{
    width: auto !important;
    font-size: 15px;
    border: 1px solid #164E63;
    padding: 10px 20px;
    border-radius: 50px;
    transition: .3s;
}
.pay-btn .sec-btn:hover{
    border: 1px solid #164E63;
    background-color: #164E63;
    color: #fff;
}

@media screen and (max-width: 399px){
    .pay-btn{
        flex-direction: column;
    }
    .pay-btn .sec-btn{
        margin-bottom: 20px;
    }
    .pay .uni-btn{
        flex-direction: column;
    }
    .pay .uni-btn button{
        margin-bottom: 20px;
    }
}

a.sec-btn{
    color: black;
}

table th, table td{
    word-wrap: break-word;
}
#img{
    border: none;
    padding: 8px 0px !important;
}
::-webkit-file-upload-button {
    border-radius: 3px !important;
    padding: 4px 10px !important;
    font-size: 14px;
    padding: 16px 40px;
    color: #164E63 !important;
    background-color: transparent;
    border-radius: 2px;
    transition: .3s;
    font-weight: 500;
    z-index: 2;
    border: 1px solid #164E63;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}
.modal select {
    width: 100%;
    padding: 8px 8px;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    background-color: #fff;
    border: 1px solid #e5e7eb;
    color: #B2BDCC;
}
