/* @import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

/* @font-face {
    font-family: 'Primera_Signature';
    src: url('signature-fontPrimera_Signature.woff2') format('woff2'),
        url('Primera_Signature.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
} */

@font-face {
    font-family: "signature";
    src: url("signature-font/Signatie.otf") format("otf");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #3598dc;
    --primary-dark: #13669f;
    --primary-dark-2: #0c4c79;
    --primary-dark-3: #0b3e63;
    --secondary: #2e3e4d;
    --secondary-light: #2e3e4d63;
    --light-bg: #f1f7fc;

    --primary-light: #f1f7fc;
    --grey: #999999;
    --grey-dark: #666666;
    --black: #222222;
    --light-border: #e8e8e8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
    /* font-family: "Instrument Sans", sans-serif; */
    font-family: "Roboto", sans-serif;
    color: #222222;
    font-size: 16px;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    /* font-family: "Instrument Sans", sans-serif !important; */
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
}

a:hover {
    color: inherit;
}

.light-bg {
    background-color: var(--light-bg);
}

.light-bg-1 {
    background-color: #f8f9fd;
}

.primary-bg {
    background-color: #3598dc;
}

.secondary-bg {
    background-color: #2e3e4d;
}

.logo img {
    max-width: 300px;
    width: 100%;
}

.login-form {
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    margin-top: 100px;
    box-shadow: rgba(53, 152, 220, 0.1) 0px 7px 29px 0px;
}

.login-form-inner {
    width: 100%;
    padding: 20px 40px;
    margin-top: 30px;
}

.form-input {
    width: 100%;
    /* height: 45px; */
    height: 42px;
    outline: none;
    border: solid 1px var(--secondary-light);
    padding: 10px;
    /* border-radius: 5px; */
    border-radius: 2px;
    transition: all 0.4s;
}

.form-input:focus {
    box-shadow: rgba(53, 152, 220, 0.2) 0px 3px 5px 0px;
    border-color: var(--primary);
}

textarea.form-input {
    height: 70px;
}

.login-btn {
    border: none;
    outline: none;
    width: 100%;
    height: 45px;
    background-color: var(--primary);
    transition: all 0.4s;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.login-btn:hover {
    background-color: var(--secondary);
    box-shadow: rgba(40, 62, 80, 0.3) 0px 7px 10px 0px;
}

.update-btn {
    border: none;
    outline: none;
    width: 100%;
    height: 45px;
    background-color: #ffc107;
    transition: all 0.4s;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.update-btn:hover {
    background-color: var(--secondary);
    box-shadow: rgba(40, 62, 80, 0.3) 0px 7px 10px 0px;
    color: #fff;
}

/*==== Dashboard Css ====*/

main {
    width: 100%;
    /* display: flex; */
}

.sidebar {
    width: 277px;
    /* background: var(--primary-dark); */
    background-color: #001142;
    height: 100%;
    padding: 0px 0px 20px 0px;
    position: fixed;
    overflow-y: auto;
    transition: all 0.3s;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
    display: none;
    /* box-shadow: 4px 0px 5px 0px rgba(0,0,0,0.1); */
}

.admin-logo {
    text-align: left;
    /* padding-bottom: 10px;
    padding-top: 5px;
    border-bottom: solid 0px #73aed4; */
    padding-top: 2px;
    padding-bottom: 2px;
}

.admin-logo img {
    width: 100%;
    max-width: 170px;
    /* max-width: 170px; */
}

.sidebar::-webkit-scrollbar-track {
    background-color: var(--primary);
}

.sidebar::-webkit-scrollbar {
    width: 5px;
    background-color: var(--primary);
}

.sidebar::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: transparent;
    transition: all 0.4s;
}

.sidebar:hover::-webkit-scrollbar-thumb {
    background-color: #2c7db3;
}

.side-menu {
    list-style: none;
    /* margin-top: 20px; */
    width: 100%;
}

.side-menu li {
    width: 100%;
    display: block;
    transition: all 0.4s;

    /* padding-left: 10px;
    padding-right: 10px; */
    border-bottom: solid 1px #1d5479;
}

.side-menu li a {
    position: relative;
    padding: 12px 20px 12px 60px;
    display: block;
    color: #fff;
    transition: all 0.4s;
    border-radius: 0px;
}

.side-menu li a i {
    position: absolute;
    left: 20px;
    font-size: 20px;
    top: 9px;
}

.side-menu li a:hover,
.side-menu li a:active,
.side-menu li a:focus {
    background-color: var(--primary-dark-2);
    color: #fff;
}

.side-menu li.active a {
    /* border-left: solid 5px var(--primary); */
    /* border-radius: 4px; */
    background-color: var(--primary-dark-3);
    color: #fff;
}

.arrow i {
    position: absolute !important;
    right: 7px !important;
    left: auto !important;
    font-size: 18px !important;
    top: 12px !important;
}

.rotate-arrow i {
    transform: rotate(90deg);
    transition: all 0.4s !important;
}

.static-rotate i {
    transform: rotate(90deg);
}

.dropdown {
    display: none;
    background-color: var(--primary-dark-2);
}

.dropdown li {
    border-bottom: none;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}

.dropdown li a {
    position: relative;
    border-radius: 0;
}

.dropdown li a::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--primary);
    left: 40px;
    top: 20px;
}

/* .dropdown li a:hover, .dropdown li a:focus, .dropdown li a:active {
    background-color: var(--primary-dark-3);
    color: #fff;
} */

.dropdown li a:hover {
    background-color: var(--primary-dark-3);
    color: #fff;
}

.ac > a {
    background-color: var(--primary-dark-3) !important;
    color: #fff !important;
}

/* .active-link {
    color: #007bff;
    font-weight: bold;
} */

/* .main-content {
    width: calc(100% - 277px);
    margin-left: 277px;
    width: 100%;
} */

.top-menu {
    width: 100%;
    /* background-color: #fff; */
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    /* background-color: var(--primary-dark); */
    background-color: var(--primary-dark-3);
}

.top-menu h4 {
    margin-top: 10px;
    color: #fff;
    padding-left: 15px;
}

.top-menu-list {
    text-align: right;
    margin-top: 5px;
}

.top-menu-list li {
    position: relative;
    display: inline;
}

.top-menu-list li a {
    /* color: var(--black); */
    padding: 10px 13px;
    /* background-color: #fff; */
    /* border-left:solid 1px var(--light-border);
    border-right:solid 1px var(--light-border); */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    /* border-radius: 10px; */
    position: relative;
    /* color: var(--grey-dark); */
    color: #fff;
}

.msg-count {
    position: absolute;
    top: -10px;
    right: 0;
    width: 20px;
    height: 20px;
    background-color: var(--primary);
    color: #fff;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
}

.top-dropdown {
    margin-top: 10px;
    width: 370px;
    position: absolute;
    right: 0;
    text-align: left !important;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 24px 0 rgba(62, 57, 107, 0.18);
    display: none;
    z-index: 99;
}

.top-dropdown li a {
    font-size: 14px;
    box-shadow: none;
    border-radius: 0;
    background-color: transparent;
    color: var(--grey-dark);
    padding: 10px 20px;
    display: block;
    border-bottom: solid 1px var(--light-border);
    transition: all 0.3s;
}

.top-dropdown li a:hover {
    background-color: #eff0f2;
}

.top-dropdown li:last-child a {
    border-bottom: none;
}

.profile-pic {
    width: 25px;
    height: 25px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 100%;
}

.top-profile-dropdown {
    width: 100%;
    position: absolute;
    right: -10px;
    text-align: left !important;
    /* background-color: #fff; */
    background-color: var(--primary-dark-3);
    border-radius: 0px 0px 10px 10px;
    /* border:solid 1px var(--light-border); */
    margin-top: 0px;
    border-top: none;
    padding-top: 0px;
    padding-bottom: 0px;
    display: none;
    z-index: 99;
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
}

.top-profile-dropdown li a {
    display: block;
    padding: 10px 15px 10px 50px;
    /* color: var(--grey-dark); */
    position: relative;
    transition: all 0.3s;
    border: none;
    color: #fff;
    border-radius: 0px 0px 10px 10px;
}

.top-profile-dropdown li a:hover {
    background-color: var(--primary-dark);
}

.top-profile-dropdown li a i {
    position: absolute;
    left: 15px;
    font-size: 20px;
    top: 8px;
}
.card {
    box-shadow: 0 6px 30px rgba(182, 186, 203, 0.3);
    margin-bottom: 24px;
    transition: box-shadow 0.2s ease-in-out;
    /* border-color: var(--light-border); */
    padding: 15px;
}

.icon-box span {
    padding: 10px;
    font-size: 30px;
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
}

.icon-bg-1 {
    background-color: var(--bg1);
}

.icon-text-color-1 {
    color: var(--bg1);
}

.icon-bg-2 {
    background-color: var(--bg2);
}

.icon-text-color-2 {
    color: var(--bg2);
}

.icon-bg-3 {
    background-color: var(--bg3);
}

.icon-text-color-3 {
    color: var(--bg3);
}

.icon-bg-4 {
    background-color: var(--bg4);
}

.icon-text-color-4 {
    color: var(--bg4);
}

.icon-bg-5 {
    background-color: var(--bg5);
}

.icon-text-color-5 {
    color: var(--bg5);
}

.icon-bg-6 {
    background-color: var(--bg6);
}

.icon-text-color-6 {
    color: var(--bg6);
}

.card-text h5 {
    font-size: 17px;
}

.card-text h5 small {
    font-size: 14px;
    color: var(--grey);
}

.card-title h5 {
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 10px;
}

.card-title h5::before {
    position: absolute;
    content: "";
    height: 100%;
    left: -15px;
    border: solid 2px var(--primary);
}

.btn-list li {
    display: inline-block;
    margin-right: 10px;
}

.btn-links {
    padding: 10px 15px;
    border-radius: 4px;
    color: #fff;
    background-color: var(--primary);
    transition: all 0.4s;
}

.btn-links:hover {
    background-color: var(--secondary);
    color: #fff;
}

.form-bg {
    background-color: #fff;
    border: solid 1px var(--light-border);
    padding: 15px 30px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 5px;
}

.form-bg label {
    font-weight: 500;
    margin-bottom: 2px;
}

.delete-btn {
    padding: 5px;
    background-color: #d40000;
    color: #fff;
    border-radius: 4px;
    outline: none;
    border: none;
    font-size: 16px !important;
}

.edit-btn {
    padding: 5px;
    background-color: #ffc107;
    color: #111;
    border-radius: 4px;
    outline: none;
    border: none;
    font-size: 16px !important;
}

.view-btn {
    padding: 5px;
    background-color: #198754;
    color: #fff;
    border-radius: 4px;
    outline: none;
    border: none;
    font-size: 16px !important;
}

.view-btn:hover,
.delete-btn:hover {
    color: #fff;
}

.edit-btn:hover {
    color: #111;
}

.main-adhar-img {
    position: relative;
    font-family: Arial, Helvetica, sans-serif !important;
    width: 100%;
    max-width: 800px;
}

.adhar-img {
    width: 600px;
}

.main-adhar-img .name-1 {
    position: absolute;
    font-weight: 500;
    top: 125px;
    left: 175px;
    font-size: 16px;
}

.main-adhar-img .name {
    position: absolute;
    font-weight: 500;
    top: 155px;
    left: 175px;
    font-size: 16px;
}

.main-adhar-img .date-of-birth {
    position: absolute;
    font-weight: 500;
    top: 185px;
    left: 175px;
    font-size: 16px;
}

.main-adhar-img .gender {
    position: absolute;
    font-weight: 500;
    top: 215px;
    left: 175px;
    font-size: 16px;
}

.adhar-number {
    position: absolute;
    font-weight: bold;
    top: 270px;
    left: 195px;
    font-size: 26px;
}

.photo {
    position: absolute;
    top: 126px;
    left: 30px;
}

.photo img {
    width: 130px;
    height: 165px;
    object-fit: cover;
}

.qr-code {
    position: absolute;
    top: 176px;
    right: 230px;
}

.qr-code img {
    width: 120px;
}

@media print {
    .no-print {
        display: none !important;
    }
}

.main-adhar-img .address-1 {
    position: absolute;
    font-weight: 500;
    top: 125px;
    left: 30px;
    font-size: 12px;
    width: 250px;
    line-height: 22px;
}

.main-adhar-img .address {
    position: absolute;
    font-weight: 500;
    top: 125px;
    left: 300px;
    font-size: 14px;
    width: 300px;
    line-height: 22px;
}

/*==== SIGNATURE ===*/
#nameInput {
    padding: 10px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    margin-bottom: 20px;
    width: 300px;
    background: #3a3a3a;
    color: white;
}

.color-picker {
    margin-bottom: 20px;
}

.color-picker input {
    padding: 5px;
    background: #484848;
    border: none;
    border-radius: 5px;
}

#signatureWrapper {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

canvas {
    border: 2px solid #ffcc00;
    width: 600px;
    height: 150px;
    background: rgba(255, 255, 255, 1);
    border-radius: 10px;
}

/*==== END SIGNATURE ===*/

.pan-img {
    width: 600px;
}

.main-pan-img {
    position: relative;
    font-family: "Roboto", sans-serif;
    width: 100%;
    max-width: 800px;
}

.pan-name {
    position: absolute;
    font-weight: 500;
    top: 108px;
    left: 35px;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date-of-birth {
    position: absolute;
    font-weight: 500;
    top: 142px;
    left: 86px;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pan-number {
    position: absolute;
    font-weight: 500;
    top: 225px;
    left: 37px;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.signature-img {
    position: absolute;
    font-weight: 500;
    top: 273px;
    left: 30px;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.signature-img img {
    width: 300px;
}

.pan-photo {
    position: absolute;
    font-weight: 500;
    top: 240px;
    right: 252px;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pan-photo img {
    width: 100px;
    height: 100px;
}

.doc-cont {
    width: 100%;
    min-height: 100px;
    border-radius: 5px;
    border: solid 1px #d5d5d5;
}

.create-document-link {
    width: 100%;
    padding: 10px;
    min-height: 50px;
    background-color: var(--secondary);
    color: #fff;
    font-size: 18px;
    border-radius: 5px 5px 5px 5px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    transition: all 0.4s;
    font-weight: 500;
    box-shadow: rgba(38, 57, 77, 0.8) 0px 10px 30px -10px;
}

.create-document-link img {
    width: 50px;
    filter: invert();
}

.create-document-link:hover {
    color: #fff;
    background-color: var(--primary);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 10px 10px -6px inset,
        rgba(0, 0, 0, 0.1) 0px 18px 36px -9px inset;
}

.main-credit-img {
    position: relative;
    font-family: "Ubuntu", sans-serif;
    width: 100%;
    max-width: 600px;
}

.credit-card-img {
    width: 600px;
}

.card-number {
    position: absolute;
    font-weight: 400;
    top: 208px;
    left: 120px;
    font-size: 30px;
    text-transform: uppercase;
    color: #e8e8e8;
    letter-spacing: 2px;
}

.valid-from {
    position: absolute;
    font-weight: 400;
    top: 285px;
    left: 155px;
    font-size: 28px;
    text-transform: uppercase;
    color: #e8e8e8;
    letter-spacing: 2px;
}

.valid-thru {
    position: absolute;
    font-weight: 400;
    top: 285px;
    left: 280px;
    font-size: 28px;
    text-transform: uppercase;
    color: #e8e8e8;
    letter-spacing: 2px;
}

.credit-card-name {
    position: absolute;
    font-weight: 400;
    top: 335px;
    left: 100px;
    font-size: 22px;
    text-transform: uppercase;
    color: #e8e8e8;
    letter-spacing: 2px;
}

.idfc-credit-card-name {
    position: absolute;
    font-weight: 600;
    top: 295px;
    left: 60px;
    font-size: 20px;
    text-transform: uppercase;
    color: #e8e8e8;
    letter-spacing: 2px;
    transform: rotate(1deg);
    opacity: 0.9;
}

.idfc-credit-card-number {
    position: absolute;
    font-weight: 500;
    top: 263px;
    left: 34px;
    font-size: 28px;
    text-transform: uppercase;
    color: #e8e8e8;
    letter-spacing: 2px;
    opacity: 0.9;
}

.idfc-credit-valid-thru {
    position: absolute;
    font-weight: 500;
    top: 326px;
    left: 78px;
    font-size: 26px;
    text-transform: uppercase;
    color: #e8e8e8;
    letter-spacing: 2px;
    opacity: 0.9;
}

.sbi-credit-card-name {
    position: absolute;
    font-weight: 600;
    top: 310px;
    left: 60px;
    font-size: 24px;
    text-transform: uppercase;
    color: #e8e8e8;
    letter-spacing: 2px;
}

.sbi-credit-card-number {
    position: absolute;
    font-weight: 400;
    top: 255px;
    left: 34px;
    font-size: 36px;
    text-transform: uppercase;
    color: #e8e8e8;
    letter-spacing: 2px;
}

.sbi-credit-valid-thru {
    position: absolute;
    font-weight: 500;
    top: 313px;
    left: 307px;
    font-size: 22px;
    text-transform: uppercase;
    color: #e8e8e8;
    letter-spacing: 2px;
}

.hdfc-credit-card-name {
    position: absolute;
    font-weight: 500;
    top: 275px;
    left: 55px;
    font-size: 24px;
    text-transform: uppercase;
    color: #e8e8e8;
    letter-spacing: 2px;
    opacity: 0.7;
}

.hdfc-credit-card-number {
    position: absolute;
    font-weight: 400;
   top: 170px;
    left: 40px;
    font-size: 40px;
    text-transform: uppercase;
    color: #e8e8e8;
    letter-spacing: 2px;
    opacity: 0.7;
}

.hdfc-credit-valid-thru {
    position: absolute;
    font-weight: 500;
    top: 255px;
    left: 432px;
    font-size: 30px;
    text-transform: uppercase;
    color: #e8e8e8;
    letter-spacing: 2px;
    opacity: 0.7;
}

.count-box {
    width: 100%;
    min-height: 90px;
    border-radius: 5px;
    box-shadow: 0 0 5px #d5d5d5;
    border: solid 1px #d5d5d5;
    /* background-color: #edf8ff; */
    /* background-color: var(--primary-dark-3); */
    padding: 5px 15px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
}

.count-box h1 {
    font-size: 26px;
    opacity: 0.9;
    color: var(--primary-dark-3);
}

.count-box h2 {
    font-size: 16px;
    color: var(--primary-dark);
    font-weight: 500;
}

/*===ID CARD====*/

.bigmindz-main-id-card {
    width: 100%;
    max-width: 530px;
    position: relative;
    margin: auto;
    font-family: "Lato", sans-serif;
    padding: 10px;
    border: solid 1px #000;
}

.bigmindz-id-card-img {
    width: 100%;
    border: solid 1px #f0f0f0;
}

.bigmindz-id-photo {
    position: absolute;
    top: 160px;
    left: 157px;
}

.bigmindz-id-photo img {
    width: 216px;
    height: 264px;
}

.bigmindz-id-name {
    position: absolute;
    top: 470px;
    left: 220px;
    color: #fff;
    font-weight: 400;
    font-size: 26px;
}

.bigmindz-id-emp-id {
    position: absolute;
    top: 521px;
    left: 220px;
    color: #fff;
    font-weight: 400;
    font-size: 26px;
}

.bigmindz-id-designation {
    position: absolute;
    top: 572px;
    left: 220px;
    color: #fff;
    font-weight: 400;
    font-size: 26px;
}

.bigmindz-id-address {
    position: absolute;
    top: 623px;
    left: 220px;
    color: #fff;
    font-weight: 400;
    font-size: 26px;
}

.bigmindz-id-toll-free-number {
    position: absolute;
    top: 750px;
    left: 0;
    right: 0;
    width: 100%;
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    text-align: center;
}

/*=== TDS CSS ====*/

.tds-main {
    font-family: "Times New Roman", Times, serif;
}

.tds-main h1,
.tds-main h2,
.tds-main h3,
.tds-main h4,
.tds-main h5,
.tds-main h6 {
    font-family: "Times New Roman", Times, serif;
}
/*
.top-header-section-tds {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid black;
}

.tds-main .form {
    border-bottom: 1px solid black;
    text-align: center;
    padding: 4px;
}

.tds-main table {
    border: 1px solid black !important;
}
.tds-main th {
    text-align: center;
}
.tds-main span {
    font-weight: 500;
}
.tds-main .cin tr {
    text-align: center;
}
.tds-main .top-right-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tds-main .top-right-section p {
    font-size: 10px;
    line-height: 0;
}
.tds-main .top-right-section span {
    font-size: 10px;
    line-height: 1;
}

.border-around {
    border-left: solid 1px black;
    border-right: solid 1px black;
} */

.tds-main .container {
    width: 100%;
    max-width: 100%;
}

.tds-main .container-fluid {
    padding: 0px;
    border: 1px solid black;
}
.tds-main .income-tax-details {
    font-weight: 700;
}
.tds-main .border-line {
    border-top: 1px solid black;
    position: relative;
    bottom: 19px;
    left: 1px;
    overflow: hidden;
}
.tds-main .form-no {
    text-align: center;
    position: relative;
    bottom: 20px;
    font-weight: bold;
}
.tds-main .border-bottom {
    border-top: 1px solid black;
    position: relative;
    bottom: 28px;
}
.tds-main .rule {
    position: relative;
    bottom: 18px;
    border-bottom: 1px solid black;
    padding-bottom: 6px;
    font-size: 18px;
}
.tds-main .part-a {
    font-weight: bold;
    margin: 0px;
    position: relative;
    bottom: 17px;
    border-bottom: 1px solid black;
}
.tds-main .bg-secondary {
    background-color: rgb(178, 178, 178) !important;
}
.tds-main table {
    border: 2px solid black !important;
    font-size: 20px;
}
.tds-main .signature {
    position: relative;
    bottom: 15px;
}
.tds-main .oltas-table {
    border-left: 1px solid black !important;
}
.tds-main .signature-container {
    position: relative;
    width: 100%;
    height: 120px;
}

.tds-main .signature-box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 220px;
    font-size: 10px;
    line-height: 1.4;
    text-align: left;
    padding: 5px;
}

/* .tds-main .green-check {
	font-size: 75px;
	color: green;
	transform: rotate(-10deg);
	position: absolute;
	top: 20px;
	left: 40px;
	z-index: 1;
} */

.tds-main .green-check {
    position: absolute;
    top: 0px;
    left: 10px;
    z-index: 1;
}

.tds-main .signature-valid {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 3px;
}

.tds-main .signed-by {
    color: #0033cc;
    font-weight: bold;
}
.tds-main .signature-container-bottom {
    position: relative;
    width: 100%;
    height: 120px;
    top: 101px;
}
.tds-main .page {
    position: relative;
    top: 74px;
}
/* .tds-main tr,th,td{
    border: 2px solid black !important;
} */
.tds-main .sl-no {
    width: 190px !important;
}
.tds-main .price-tax {
    width: 280px !important;
}
.tds-main .bsr-width {
    width: 202px;
}
.tds-main .date-width {
    width: 245px;
}
@media (min-width: 786px) {
    .tds-main .sl-no {
        width: 190px !important;
    }
    .tds-main .price-tax {
        width: 280px !important;
    }
    .tds-main .bsr-width {
        width: 202px;
    }
    .tds-main .date-width {
        width: 245px;
    }
}

/*==== PAYSLIPS ====*/

.payslip table {
    border: 1px solid black !important;
}
.payslip .table-primary {
    border-right: 1px solid black !important;
    background-color: rgb(71, 184, 240) !important;
    color: WHITE !important;
}
.payslip .net-pay {
    border-bottom: 1px solid white !important;
    border-left: 1px solid white !important;
}
.payslip td {
    font-size: 16px;
}
.payslip .height {
    padding: 15px !important;
}
.payslip img {
    height: 90px;
}
.payslip .note {
    font-size: 16px;
}
.payslip .details {
    line-height: 0.5;
}

/*====END PAYSLIPS ====*/

.tox-notification {
    display: none !important;
}

.date-icon {
    position: absolute;
    font-size: 20px;
    right: 1px;
    top: 1px;
    display: inline-flex;
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    align-items: center;
    justify-content: center;
}

.dataTables_filter .form-control {
    box-shadow: none !important;
}

/* === MENU CSS ==== */

.menu {
    background-color: #fff;
    width: 100%;
    padding: 0 15px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
        rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    display: flex;
}

.menu li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menu li a {
    padding: 10px 10px;
    border-right: solid 1px #f0f0f0;
    color: #333;
    display: block;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 12px;
}

.menu li:last-child a {
    border: none;
}

.menu li a:hover {
    color: var(--primary-dark-2);
}

.menu li a.active {
    color: #fff;
    background-color: var(--primary-dark-2);
}

/*
 * We are hiding the invisible nav outside the screen
 * so we need to avoid the horizontal scroll
 */
body.okayNav-loaded {
    overflow-x: hidden;
}
.okayNav-header {
    position: fixed;
    top: 100px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 0 15px;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.okayNav:not(.loaded) {
    visibility: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.okayNav ul {
    /* We want two navigations - one hidden and one visible */
    float: left;
}
.okayNav a {
    position: relative;
    z-index: 1;
}
.okayNav__nav--visible {
    overflow: hidden;
    white-space: nowrap;
}
.okayNav__nav--visible li {
    display: inline-block;
}
.okayNav__nav--visible a {
    /* Link styling for the visible part of the nav */
    display: block;
    padding: 15px 15px;
    transition: color 200ms cubic-bezier(0.55, 0, 0.1, 1);
}
.okayNav__nav--visible:empty ~ .okayNav__menu-toggle {
    top: 0;
}
/* Link styling for the off-screen part of the nav */
.okayNav__nav--invisible {
    position: fixed;
    top: 7rem;
    bottom: 0;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}
.okayNav__nav--invisible a {
    display: block;
    width: 240px;
    padding: 15px;
    background: #fff;
}
.okayNav__nav--invisible.nav-left {
    left: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}
.okayNav__nav--invisible.nav-right {
    right: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}
.okayNav__nav--invisible.transition-enabled {
    transition: -webkit-transform 400ms cubic-bezier(0.55, 0, 0.1, 1);
    transition: transform 400ms cubic-bezier(0.55, 0, 0.1, 1);
    transition: transform 400ms cubic-bezier(0.55, 0, 0.1, 1),
        -webkit-transform 400ms cubic-bezier(0.55, 0, 0.1, 1);
}
.okayNav__nav--invisible.nav-open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
/* Kebab icon */
.okayNav__menu-toggle {
    position: relative;
    z-index: 1;
    top: 15px;
    float: left;
    width: 40px;
    height: 20px;
    cursor: pointer;
    transition: -webkit-transform 400ms cubic-bezier(0.55, 0, 0.1, 1);
    transition: transform 400ms cubic-bezier(0.55, 0, 0.1, 1);
    transition: transform 400ms cubic-bezier(0.55, 0, 0.1, 1),
        -webkit-transform 400ms cubic-bezier(0.55, 0, 0.1, 1);
}
.okayNav__menu-toggle.okay-invisible {
    position: absolute;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    opacity: 0;
}
.okayNav__menu-toggle span {
    position: absolute;
    right: 0;
    left: 0;
    display: block;
    width: 4px;
    height: 4px;
    margin: auto;
    pointer-events: none;
    border-radius: 50%;
}
.okayNav__menu-toggle span:nth-child(1) {
    top: 0;
}
.okayNav__menu-toggle span:nth-child(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.okayNav__menu-toggle span:nth-child(3) {
    bottom: 0;
}
.okayNav__menu-toggle.icon--active {
    /* Kebab icon when off-screen nav is open */
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.okayNav-header {
    height: 7rem;
    background-color: #fff;
}
.okayNav a {
    color: #2e2e33;
    font-size: 1.4rem;
    font-weight: bold;
}
.okayNav a:hover {
    color: #546edb;
}
.okayNav__nav--visible a:hover {
    color: #546edb;
}
.okayNav__nav--invisible {
    background: #fff;
}
.okayNav__menu-toggle span {
    background: #2e2e33;
}
.okayNav__menu-toggle.icon--active span {
    background: #546edb;
}

/*=== language ====*/

.langcontainer {
    max-width: 690px;
    width: 100%;
    padding: 20px;
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.title {
    font-weight: 600;
    margin-bottom: 10px;
}
.wrapper {
    border-radius: 5px;
    border: 1px solid #ccc;
}
.wrapper .text-input {
    display: flex;
    border-bottom: 1px solid #ccc;
}
.text-input .to-text {
    border-left: 1px solid #ccc;
}
.text-input textarea {
    height: 60px;
    width: 100%;
    border: none;
    outline: none;
    resize: none;
    background: none;
    font-size: 16px;
    padding: 10px 15px;
}
.text-input textarea::placeholder {
    color: #b7b6b6;
}
.controls {
    list-style: none;
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
}
.controls .row select {
    color: #333;
    border: none;
    outline: none;
    font-size: 16px;
    background: none;
    padding-left: 5px;
    width: 100%;
}
.left-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
    pointer-events: none;
}
@media (max-width: 660px) {
    .wrapper .text-input {
        flex-direction: column;
    }
    .text-input .to-text {
        border-left: 0px;
        border-top: 1px solid #ccc;
    }
    .text-input textarea {
        height: 50px;
    }
    .controls .row select {
        font-size: 14px;
    }
}

#address-langcontainer .from-text,
#address-langcontainer .to-text {
    height: 180px; /* bigger than name field */
}

/* === End ====*/
