 @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

 :root {
     --primary-color: rgba(28, 29, 95, 1);
     --secondary-color: #f4f4f4;
     --success-color: #8bc34a;
     --danger-color: #f44336;
     --info-color: #2196f3;
     --text-dark: #222;
     --text-muted: #777;
     --highlight-bg: #e0e0e0;
     --positive: #c8e6c9;
     --negative: rgb(255 203 203);
     --success: #8bc34a87;
     --tem: #c39b43;
     --font-family: "Poppins", sans-serif;
 }

 body {
     font-family: var(--font-family);
     margin: 0;
     background: #fff;
     color: var(--text-dark);
 }

 .container {
     max-width: 80%;
     margin: auto;
 }

 header.main-header {
     padding: 0;
     border: 0;
     margin: .5rem .5rem 0 .5rem;
     display: flex;
     align-items: center;
     justify-content: end;
 }

 header.main-header img,
 .logo img {
     width: 22%;
 }

.disabled-link {
    pointer-events: none;
    opacity: 0.6; /* optional visual cue */
    cursor: not-allowed;
}

 .dashboard {
     display: grid;
     grid-template-columns: 1fr;
     gap: 1rem;
     padding: .5rem;
 }

 
 .bank-item {
     color: #222223;
     padding: .3rem 1rem;
     text-align: left;
     font-weight: 500;
     border-radius: 5px;
     font-size: 1.3rem;
     margin-bottom: .4rem;
     display: flex;
 }

 .bank-item.active {
     background: var(--primary-color);
     color: white;
     border: none;
 }

 .account-section {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(159px, 1fr));
     gap: .5rem;
 }

 .account-box {
     padding: 1rem .5rem 1rem 2rem;
     border-radius: .8rem;
     box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
     background: #fff;
     position: relative;
 }

 .agent-table table tr td {
     border-right: 1px solid #ddd;
     border-left: 1px solid #ddd;
 }

 .account-box::before {
     content: "";
     position: absolute;
     top: .8rem;
     bottom: .8rem;
     left: .8rem;
     width: .4rem;
     border-radius: 0;
 }

 .account-box.green1::before {
     background: var(--success-color);
 }

 .account-box.yellow::before {
     background-color: rgba(250, 189, 99, 1);
 }

 .account-box.red1::before {
     background-color: rgba(221, 112, 112, 1);
 }

 .account-box h3 {
     margin: 0;
     font-size: .9rem;
     color: var(--primary-color);
     font-weight: 500;
 }

 .account-box h4 {
     font-size: 1.4rem;
     color: #000;
     font-weight: 700;
     letter-spacing: .1rem;
     margin-bottom: 0rem;
     margin-top: 0;
 }

 .account-box small {
     font-size: .8rem;
     color: #888;
 }

 .account-box .positive {
     color: var(--success-color);
     font-weight: 500;
 }

 .negative {
     background: var(--negative);
 }

 .success {
     background-color: var(--success);
 }

 .agent-section {
     display: grid;
     grid-template-columns: 2fr 3fr;
     gap: .8rem;
 }

 .agent-table {
     border: 1px solid #ccc;
     border-radius: 5px;
     overflow-x: auto;
     padding: 0 .7rem;
 }

 table {
     width: 100%;
     border-collapse: collapse;
 }

 .agent-table thead tr th {
     color: var(--primary-color);
     font-weight: 600;
     font-size: 1.1rem;
 }

 .agent-table table tbody tr td p {
     font-size: 1.1rem;
     margin: 0;
     padding: .5rem;
 }

 td.output {
     padding: .3rem .1rem;
 }

 th,
 td {
     padding: 0.75rem !important;
     border-bottom: 1px solid #ddd;
     text-align: left;
     border-right: 1px solid #ddd;
     border-left: 1px solid #ddd;
     width: 50%;
 }

 .chart-area {
     display: grid;
     grid-template-columns: repeat(10, 1fr);
     gap: 1rem;
 }

 .chart-box,
 .chart-img {
     background: #fff;
     padding: 1rem;
     border-radius: 8px;
     box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
 }

 .box1 {
     grid-column: 1 / span 10;
 }

 .box2,
 .box3 {
     grid-column: span 3;
 }

 .box4:not(.last-box) {
     grid-column: span 4;
 }

 .chart-box.box2 {
     overflow-x: scroll;
 }

 .box4.last-box {
     grid-column: span 3;
     background-color: transparent;
     padding: 0;
     border: none;
     box-shadow: none;
 }

 .update-banner {
     text-align: right;
     padding: 0.5rem 1rem;
     background: var(--primary-color);
     color: #fff;
     font-size: 0.9rem;
     display: inline;
 }

 .agent-status {
     display: flex;
     gap: 4px;
     margin-top: 5px;
     flex-wrap: wrap;
 }

 .dot {
     width: .8rem;
     height: .8rem;
     border-radius: 50%;
     display: inline-block;
 }

 .green {
     background-color: var(--success-color);
 }

 .red {
     background-color: #e57373;
 }

 .agent-main {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: .7rem;
     border-bottom: 1px solid #ddd;
 }

 .agent-main h5 {
     font-size: 1.1rem;
     color: var(--primary-color);
     font-weight: 500;
     margin: 0;
 }

 .search-controls {
     display: flex;
     gap: .4rem;
 }

 .search-controls input[type="text"] {
     padding: .6rem .8rem;
     border: 1px solid var(--primary-color);
     border-radius: .2rem;
     outline: none;
     color: var(--primary-color);
     font-weight: 500;
     font-size: .9rem;
 }

 .search-controls input::placeholder {
     color: var(--primary-color);
     font-weight: 500;
 }

 .search-controls button {
     padding: .6rem .8rem;
     background-color: #fff;
     border: 1px solid #ccc;
     border-radius: .2rem;
     font-weight: bold;
     cursor: pointer;
     font-size: .9rem;
 }

 .collateral h3 {
     background-color: var(--primary-color);
     color: #fff;
     margin: 0;
     margin-bottom: .7rem;
     font-weight: 500;
     padding: 0.6rem;
 }

 .collateral {
     border: 1px solid #e2e2e2;
     margin-top: 1rem;
 }

 .collateral h4 {
     font-size: 2rem;
     margin: 0;
     font-weight: 600;
     padding: 0 .6rem;
 }

 .collateral small {
     font-size: 1rem;
     color: #888;
     padding: 0 .6rem;
 }

 .collateral small span {
     color: var(--success-color);
     font-weight: 500;
 }

 .chart-area img {
     width: 100%;
 }

 .header-agent-account {
     background-color: #fff;
     padding: 2rem 2rem;
     margin-bottom: 3rem;
 }

 .header-agent-account.agent {
     background-color: rgba(249, 249, 249, 1);
 }

 body.agent-body {
     background-color: #fff;
 }

 .header-agent-account.state {
     background-color: #fff;
 }

 body.agent-body-state {
     background-color: rgba(249, 249, 249, 1);
 }

 .header-text h2 {
     color: rgba(28, 29, 95, 1);
     text-align: center;
     font-size: 2.5rem;
     margin: 0;
     font-weight: 600;
 }

 hr.agent-hr {
     background-color: rgba(196, 155, 68, 1);
     height: .4rem;
     border: 0;
     max-width: 6rem;
 }

 .header-text {
     padding: 1rem;
     text-align: center;
 }

 .card.card-main {
     position: relative;
     background-color: #fff;
     border-radius: 1rem;
     padding: 1.5rem;
     display: flex;
     align-items: center;
     justify-content: space-between;
     border: 1px solid rgba(217, 217, 217, 1);
 }

 .card.card-main::before {
     content: "";
     position: absolute;
     left: 0;
     top: 1rem;
     bottom: 1rem;
     width: 0.3rem;
     background-color: rgba(196, 155, 68, 1);
     border-radius: 0.2rem;
 }

 .agency-name h3 {
     font-size: 2rem;
     font-weight: 700;
     margin: 0;
     margin-bottom: 1.3rem;
     color: rgba(28, 29, 95, 1);
     font-family: "Inter", sans-serif;
 }

 .agency-name h4 {
     font-size: 1.5rem;
     margin: 0;
     font-weight: 500;
     margin-bottom: .4rem;
     color: rgba(13, 14, 13, 1);
     font-family: "Inter", sans-serif;
     display: flex;
     align-items: center;
     gap: .5rem;
 }

 a.btn-stant,
 .btn-export {
     background-color: rgba(196, 155, 68, 1);
     color: #fff;
     text-decoration: none;
     padding: .7rem 1rem;
     border-radius: 0.8rem;
     font-family: "Inter", sans-serif;
     font-size: 1.1rem;
     font-weight: 500;
 }

 .btn-export {
     margin-top: 1rem;
     display: inline-flex;
     align-items: center;
     justify-content: center;
 }

 .agency-dates h5 {
     font-size: 1.2rem;
     font-weight: 400;
     margin-top: 0;
     margin-bottom: .4rem;
     color: rgba(108, 108, 108, 1);
     font-family: "Inter", sans-serif;
     margin-top: 1.5rem;
 }

 .agency-dates {
     text-align: end;
 }

 .tabs {
     display: flex;
     border-bottom: 2px solid #ccc;
     margin-bottom: 2rem;
 }

 .tab {
     padding: 10px 20px;
     cursor: pointer;
     font-weight: bold;
     border-bottom: 2px solid transparent;
 }

 .tab.active {
     border-color: #f39c12;
     color: #f39c12;
 }

 .tab-content {
     display: none;
 }

 .tab-content.active {
     display: block;
 }

 .summary-boxes {
     display: flex;
     justify-content: space-between;
     margin-bottom: 0;
     background-color: #fff;
     max-width: 50%;
     width: 50%;
     padding: .7rem .7rem .7rem 2rem;
     border-radius: 1rem;
     box-shadow: 0 4px 34px rgba(0, 0, 0, 0.07);
 }

 .box.simple-box {
     padding: 3rem 0;
     font-family: "Inter", sans-serif;
 }

 .summary-inner h3,
 .recent-table-inner h3,
 .tracker-update h3 {
     font-size: 1.5rem;
     margin: 0;
     font-weight: 700;
     color: rgba(28, 29, 95, 1);
     text-transform: uppercase;
     font-family: "Inter", sans-serif;
     margin-bottom: 1.2rem;
 }

 .box {
     font-family: "Inter", sans-serif;
     width: 50%;
 }

 .box h2 {
     margin: 0;
     font-size: 24px;
 }

 .box p {
     margin: 5px 0 0;
     color: #777;
 }

 .box.box-green {
     background-color: rgba(243, 255, 239, 1);
     padding: 2rem;
     border-radius: .7rem;
 }

 .box.box-gray {
     background-color: rgba(249, 249, 249, 1);
     padding: 1rem;
     border-radius: .7rem;
 }

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

 th,
 td {
     padding: 10px;
     text-align: left;
     border-bottom: 1px solid #ccc;
 }

 .payment-box input {
     width: 92%;
     padding: .8rem;
     margin-top: 5px;
     margin-bottom: .5rem;
     background-color: rgba(57, 58, 121, 1);
     outline: 0;
     border: 0;
     border-radius: .7rem;
     color: #fff;
     font-size: 1rem;
 }

 .link {
     color: var(--tem);
     text-decoration: none;
     font-size: .9rem;
 }

 .agency-data {
     margin-bottom: 2rem;
 }

 .main-box,
 .headings {
     display: flex;
     align-items: flex-start;
     justify-content: space-between;
     gap: 1rem;
 }

 .summary-boxes .box h2 {
     font-size: 3rem;
     font-weight: 700;
     margin-bottom: 1.2rem;
     font-family: 'Inter';
 }

 .summary-boxes .box h4,
 .recent-table h4 {
     font-size: 1.4rem;
     margin: 0;
     font-weight: 400;
     margin-bottom: 1.3rem;
     text-transform: uppercase;
 }

 .card.statement-card h3 {
     font-size: 1.4rem;
     margin: 0;
     font-weight: 600;
     border-bottom: 4px solid #c49b44;
     padding-bottom: 0.4rem;
 }

 .account-table-sec h3,
 .statement-card-info h3,
 .statement-card-qr h3 {
     font-size: 1.4rem;
     margin: 0;
     font-weight: 600;
     padding-bottom: 1rem;
 }

 .summary-boxes .box h5 {
     margin: 0;
     font-size: 1.3rem;
     font-weight: 500;
     color: rgba(108, 108, 108, 1);
 }

 .recent-table-inner {
     background-color: #fff;
     padding: 1.5rem 0;
     border-radius: 1rem;
     margin-bottom: 1.5rem;
 }

 .recent-table th,
 td {
     border-right: 0;
     border-left: 0;
 }

 .recent-table-main {
     display: flex;
     justify-content: space-between;
     gap: 1.5rem;
 }

 .recent-table.b-1 {
     width: 100%;
 }

 .recent-table.b-2 {
     width: 40%;
 }

 .recent-table th {
     font-size: 1.1rem;
     font-weight: 500;
 }

 .account-card {
     flex-wrap: wrap;
     justify-content: flex-start !important;
 }

 .account-card .account-data {
     max-width: 25%;
     width: 25%;
 }

 .account-data h4 {
     color: rgba(87, 94, 98, 1);
     font-weight: 400;
     font-size: 1rem;
     margin: 0;
 }

 .account-data p {
     font-size: 1rem;
     margin: 0;
     color: rgba(34, 42, 46, 1);
     font-weight: 600;
 }

 .account-data {
     margin-bottom: 1rem;
     display: flex;
     gap: .5rem;
     align-items: center;
 }

 .account-table {
     width: 100%;
     border-collapse: separate;
     border-spacing: 0;
     border-radius: 1.1rem;
     overflow: hidden;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
     border: 1px solid #d0d0d0;
 }

 section.account-table-sec {
     background-image: url(./images/RAF.png);
     background-repeat: no-repeat;
     background-position: center;
     background-size: contain;
 }

 .account-table thead {
     background-color: var(--primary-color);
     color: #ffffff;
 }

 .account-table th,
 .account-table td {
     padding: 1rem 1.1rem !important;
     text-align: left;
     font-size: 1rem;
     font-weight: 500;
     border: 0;
     border-bottom: 1px solid #d0d0d0;
     width: auto;
 }

 .account-table tbody tr:not(:last-child) {
     border-bottom: 1px solid #eee;
 }

 .account-table th:first-child {
     border-top-left-radius: 20px;
 }

 .account-table th:last-child {
     border-top-right-radius: 20px;
 }

 .account-table tr:last-child td {
     border-bottom: none !important;
 }

 p.top-text {
     margin-bottom: 2rem;
     text-align: left;
 }

 .dates {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .agent-tabs .tab.active {
     color: rgba(28, 29, 95, 1);
     margin-bottom: -0.1rem;
 }

 .agent-tabs .tab {
     display: flex;
     align-items: center;
     gap: .5rem;
     color: rgba(88, 88, 123, 1);
     font-weight: 500;
     font-family: "Inter", sans-serif;
     font-size: 1.2rem;
 }

 .statement-data {
     display: flex;
     justify-content: space-between;
     gap: 1.5rem;
 }

 .card.statement-card {
     background-color: #fff;
     padding: 1rem;
     border-radius: 1rem;
     max-width: 50%;
     width: 50%;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
     margin-bottom: 2rem;
 }

 .account-statement-data {
     margin-top: 1rem;
 }

 .statement-card-info {
     width: 70%;
     max-width: 70%;
 }

 .statement-card-qr {
     width: 30%;
     max-width: 30%;
     display: flex;
     align-items: center;
     justify-content: end;
 }

 .statement-card-qr img {
     width: 7rem;
     height: 7rem;
 }

 section.container.disclaimer {
     margin-bottom: 4rem;
     margin-top: 2rem;
 }

 .statement-card-info .account-data {
     margin-bottom: .5rem;
 }

 .statement-card-info .account-statement-data,
 .statement-card-qr .account-statement-data {
     margin: 0;
 }


 .highcharts-figure,
 .highcharts-data-table table {
     min-width: 310px;
     max-width: 800px;
     margin: 1em auto;
 }

 .highcharts-data-table table {
     font-family: Verdana, sans-serif;
     border-collapse: collapse;
     border: 1px solid #ebebeb;
     margin: 10px auto;
     text-align: center;
     width: 100%;
     max-width: 500px;
 }

 .highcharts-data-table caption {
     padding: 1em 0;
     font-size: 1.2em;
     color: #555;
 }

 .highcharts-data-table th {
     font-weight: 600;
     padding: 0.5em;
 }

 .highcharts-data-table td,
 .highcharts-data-table th,
 .highcharts-data-table caption {
     padding: 0.5em;
 }

 .highcharts-data-table thead tr,
 .highcharts-data-table tbody tr:nth-child(even) {
     background: #f8f8f8;
 }

 .highcharts-data-table tr:hover {
     background: #f1f7ff;
 }

 .highcharts-description {
     margin: 0.3rem 10px;
 }

 .chart-box figure {
     margin: 0;
     max-width: 100%;
     min-width: 100%;
 }

 .recent-table-inner.payment.b-1 {
     background-color: var(--primary-color);
     color: #fff;
     padding: 1.5rem;
 }

 a.outline-btn {
     border: 2px solid rgba(28, 29, 95, 1);
     color: rgba(28, 29, 95, 1);
     text-transform: uppercase;
     text-decoration: none;
     padding: .4rem 1.5rem;
     border-radius: .6rem;
 }

 .tracker-update-inner {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: .8rem .8rem 0 .8rem;
 }

 .tracker-update h3 {
     margin: 0;
 }

 .tracker-update {
     border: 1px solid rgba(217, 217, 217, 1);
     border-radius: 1rem;
     width: 50%;
 }

 .tracker-header {
     background-color: rgba(249, 249, 249, 1);
     display: flex;
     justify-content: space-between;
     padding: .8rem;
     margin-top: 1rem;
     margin-bottom: .4rem;
 }

 .tracker-header h6 {
     color: rgba(13, 14, 13, 1);
     font-size: 1.2rem;
     font-weight: 500;
     margin: 0;
 }

 .tracker-data-inner {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 0.5rem 1rem;
 }

 .tracker-data-inner p {
     color: rgba(0, 0, 0, 1);
     font-size: 1.1rem;
     font-weight: 500;
     margin-bottom: .4rem;
 }

 span.status-pending,
 span.status-success {
     padding: .5rem 1rem;
     border-radius: .5rem;
     font-size: .9rem;
 }

 .tracker-data {
     padding-bottom: .5rem;
 }

 span.status-pending {
     color: rgba(255, 149, 0, 1);
     background-color: rgba(255, 149, 0, 0.1);
 }

 span.status-success {
     color: rgba(52, 199, 89, 1);
     background-color: rgba(52, 199, 89, 0.1);
 }

 .sortable {
     cursor: pointer;
     font-weight: bold;
     user-select: none;
 }

 .sortable:hover {
     text-decoration: underline;
 }

 .header-agent-account.state .logo {
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .item-yellow img {
     width: 26%;
     display: flex;
     margin: auto;
 }

 .item-yellow {
     background-color: rgba(255, 239, 211, 1);
 }

 .item-purple {
     background-color: rgba(239, 227, 255, 1);
 }

 .item-purple img {
     width: 50%;
     margin: auto;
     display: flex;
 }

 .bank-item.item-blue img {
     display: flex;
     margin: auto;
     width: 90%;
 }

 .bank-item.item-blue {
     background-color: rgba(222, 239, 251, 1);
 }

 .item-yellow h4 {
     margin: 0;
     display: flex;
     justify-content: center;
     align-items: center;
     text-align: center;
     margin: auto;
     color: rgba(237, 158, 42, 1);
     font-weight: 600;
 }

 .item-red {
     background-color: rgba(255, 230, 230, 1);
 }

 .item-red h4 {
     margin: 0;
     display: flex;
     justify-content: center;
     align-items: center;
     text-align: center;
     margin: auto;
     color: rgba(213, 70, 70, 1);
     font-weight: 600;
 }

 .item-yellow,
 .item-purple,
 .item-blue,
 .item-red {
     height: 2.8rem;
 }

 .main-yellow,
 .main-red,
 .main-blue,
 .main-purple {
     border: 1px solid;
     border-radius: .5rem;
     padding: .5rem;
 }

 .main-yellow {
     border-color: rgba(236, 172, 46, 1);
 }

 .main-red {
     border-color: rgba(213, 70, 70, 1);
 }

 .main-purple {
     border-color: rgba(46, 26, 71, 1);
 }

 .main-blue {
     border-color: rgba(0, 41, 73, 1);
 }

 .tab-state {
     margin: 3rem 0;
 }

 .payment-box {
     background-color: #1a1860;
     padding: 1rem;
     border-radius: 0.5rem;
     color: #fff;
 }

 .custom-dropdown {
     position: relative;
     width: 100%;
     margin-bottom: 1.2rem;
 }

 .custom-dropdown select {
     width: 100%;
     padding: 0.75rem 2.5rem 0.75rem 1rem;
     background-color: #312d73;
     color: white;
     border: none;
     border-radius: 0.5rem;
     font-size: 1rem;
     appearance: none;
     -webkit-appearance: none;
     -moz-appearance: none;
 }

 .submit-btn {
     background-color: #fff !important;
     color: var(--primary-color);
     padding: 0.5rem 1rem;
     font-weight: 500;
     border-radius: 0.4rem;
     border: none;
     cursor: pointer;
     transition: background 0.3s;
     font-size: 1rem;
 }

 .submit-btn:hover {
     background-color: #e5e5ff;
     color: rgb(28 29 95) !important;
 }


 .custom-dropdown {
     position: relative;
     width: 100%;
     font-family: sans-serif;
 }

 .selected-option {
     background-color: #35326d;
     color: #fff;
     padding: 12px 16px;
     border-radius: 10px;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .arrow {
     transition: transform 0.3s ease;
 }

 .arrow.rotate {
     transform: rotate(180deg);
 }

 .dropdown-options {
     background: #fff;
     border-radius: 10px;
     margin-top: 5px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     display: none;
 }

 .dropdown-options.show {
     display: block;
 }

 .option {
     display: flex;
     align-items: center;
     padding: 12px 16px;
     cursor: pointer;
 }

 .option img {
     width: 24px;
     margin-right: 10px;
 }

 .checkmark {
     margin-left: auto;
     width: 24px;
     height: 24px;
     border-radius: 6px;
     border: 2px solid rgba(237, 237, 237, 1);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 14px;
     font-weight: bold;
     color: #1c1d5f;
     background: #f2f2f8;
 }

 .option.selected .checkmark {
     visibility: visible;
 }

 .option span {
     color: #000;
 }


 .custom-dropdown {
     position: relative;
     width: 100%;
     font-family: sans-serif;
 }

 .selected-option {
     background-color: #322f78;
     color: white;
     padding: 1rem;
     border-radius: 0.75rem;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .arrow {
     font-size: 1rem;
     transition: transform 0.3s;
 }

 .dropdown-options {
     background-color: white;
     margin-top: 5px;
     border-radius: 1rem;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     display: none;
     flex-direction: column;
     overflow: hidden;
 }

 .option {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 1rem;
     cursor: pointer;
     border-bottom: 1px solid #eee;
 }

 .option:last-child {
     border-bottom: none;
 }

 .option img {
     width: 24px;
     margin-right: 10px;
 }

 .option span {
     flex: 1;
     font-size: 1rem;
     color: #000;
 }

 .checkmark {
     width: 24px;
     height: 24px;
     background-color: #eee;
     border-radius: 6px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .checkmark::after {
     content: '';
     display: none;
     width: 10px;
     height: 10px;
     background-color: #312f78;
     border-radius: 50%;
 }

 .option.selected .checkmark::after {
     display: block;
 }

 .chart-box.plenty-box {
     margin-bottom: 1rem;
 }

 .agent-body-state section.contact-info {
     margin-top: 4rem;
 }

 #container-box1,
 #container-box2,
 #container-box3,
 #container-box4 {
     height: auto;
 }

 @media screen and (min-width: 1400px) {

     body,
     html {
         font-size: 1vw;
     }
 }

 @media screen and (max-width: 1399.98px) {
     .banks {
         grid-template-columns: 3fr 1fr 1fr 1fr 1fr;
     }

     .item-yellow img {
         width: 30%;
     }

     .bank-item.item-blue img {
         width: 100%;
     }

     .item-purple img {
         width: 65%;
     }
 }

 @media screen and (max-width: 1199.98px) {
     .box4:not(.last-box) {
         display: flex;
         gap: 1rem;
         align-items: flex-start;
         grid-column: span 10;
     }

     .chart-box.plenty-box {
         width: 100%;
     }

     .chart-box.collateral-box {
         width: 100%;
     }

     .box2,
     .box3 {
         grid-column: span 5;
     }

     .container {
         max-width: 95%;
     }

     .banks {
         grid-template-columns: 3fr 1fr 1fr;
     }

     .account-section {
         grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
     }

     .header-text h2 {
         font-size: 2rem;
     }

     .agency-name h3 {
         font-size: 1.5rem;
     }

     .agency-name h4 {
         font-size: 1.2rem;
     }

     .agency-dates h4,
     .agency-dates h5,
     .summary-boxes .box h4,
     .recent-table h4 {
         font-size: 1.1rem;
     }

     .summary-boxes .box h2 {
         font-size: 1.5rem;
     }

     .summary-inner h3 {
         font-size: 1.5rem;
         margin-bottom: 1rem;
     }

     .recent-table th {
         font-size: 1rem;
     }

 }

 @media screen and (max-width: 991.98px) {
     .account-section {
         grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
     }

     .summary-boxes {
         max-width: 95%;
         width: 95%;
     }

     .tracker-update {
         width: 100%;
     }

     .tabs.agent-tabs {
         flex-wrap: wrap;
     }


     .main-box,
     .headings {
         flex-direction: column;
     }

     .bank-item.item-blue img {
         width: 35%;
     }

     .account-table {
         margin: 0;
     }

     .banks {
         grid-template-columns: 3fr 1fr;
     }

     .agent-section {
         grid-template-columns: 1fr;
     }

     header.main-header img,
     .logo img {
         width: 30%;
     }

     .recent-table-main {
         flex-direction: column;
     }

     .recent-table.b-1,
     .recent-table.b-2 {
         width: 100%;
     }
 }

 @media screen and (max-width: 767.98px) {

     .chart-box.plenty-box,
     .chart-box.collateral-box {
         width: 93%;
     }

     .box4:not(.last-box) {
         flex-direction: column;
     }

     .statement-card-info {
         width: 100%;
         max-width: 100%;
     }

     .statement-data {
         flex-direction: column;
     }

     .card.statement-card {
         max-width: 95%;
         width: 95%;
         margin: 0;
     }

     .table-responsive {
         overflow-x: scroll;
     }

     .statement-card-qr {
         justify-content: start;
     }

     header.main-header img,
     .logo img {
         width: 38%;
     }

     .chart-area {
         grid-template-columns: 1fr;
     }

     .banks {
         grid-template-columns: 3fr;
     }

     .item-purple img {
         width: 25%;
     }

     .main-box,
     .headings {
         flex-direction: column;
     }

     .summary-boxes {
         margin-bottom: 0;
         max-width: 92%;
         width: 92%;
     }

     .card.card-main.account-card {
         flex-direction: row;
         flex-wrap: wrap;
         gap: 1rem;
     }
 }

 @media screen and (max-width: 576.98px) {
     .agency-name {
         margin-bottom: 1.5rem;
     }

     .account-table-sec .container {
         overflow-x: auto;
     }

     .account-table {
         min-width: 600px;
     }

     .account-card .account-data {
         max-width: 48%;
         width: 48%;
     }

     header.main-header img {
         margin-bottom: 1rem;
         width: 50%;
     }

     header.main-header {
         flex-direction: column;
     }

     .box3,
     .box4,
     .box2 {
         grid-column: span 10;
     }

     .box4:not(.last-box),
     .box4.last-box {
         grid-column: span 10;
     }

     .card.card-main {
         flex-direction: column;
         align-items: baseline;
     }

     .agency-dates {
         text-align: start;
     }

     .recent-table-inner {
         overflow-x: scroll;
     }

     .dates {
         flex-direction: column;
         align-items: baseline;
     }

     p.top-text {
         margin-bottom: 1.5rem;
         margin-top: 0;
     }

     header.main-header img,
     .logo img {
         width: 51%;
     }
 }

 @media screen and (max-width: 479.98px) {
     .account-section {
         grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     }

     .item-yellow img {
         width: 50%;
     }

     .item-purple img {
         width: 35%;
     }

     .bank-item.item-blue img {
         width: 60%;
     }

     .account-card .account-data {
         max-width: 45%;
         width: 45%;
     }

     .banks {
         grid-template-columns: 1fr;
     }

     .agent-main {
         flex-direction: column;
         gap: 1rem;
         align-items: baseline;
         padding: .7rem 0;
     }

     header.main-header img {
         width: 75%;
     }

     header.main-header img,
     .logo img {
         width: 75%;
         margin: auto;
         display: flex;
         margin-bottom: 1rem;
     }

     .tabs {
         flex-wrap: wrap;
     }

     .header-text {
         padding: 3rem 0rem;
         text-align: center;
     }

     .chart-box,
     .chart-img {
         overflow-x: scroll;
     }

     .summary-boxes {
         flex-direction: column;
     }

     .box {
         width: 80%;
     }

     .summary-boxes {
         margin-bottom: 0;
         max-width: 90%;
         width: 90%;
         padding: 1rem;
     }

     .tracker-update-inner {
         flex-direction: column;
         align-items: baseline;
         gap: 1rem;
     }

 }
@media (min-width:991px){
section.dashboard .banks {
    grid-template-columns: 3fr 1fr 1fr 1fr 1fr 1fr !important;
    display: grid !important;
    gap: 6px !important;
}
}