.investor-kits-container {
     display: flex;
     flex-wrap: wrap;
     gap: 20px;
}
 .investor-kit-item {
     flex-basis: calc(33.3333% - 14px);
}
 .investor-kit-item label.checkbox-wrapper {
     flex-basis: calc(25% - 15px);
     position: relative;
}
 .quarterly-docs {
     display: flex;
     flex-wrap: wrap;
     gap: 20px;
}
 .global-download-section {
     background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
     border: 2px solid #009de0;
     border-radius: 12px;
     padding: 20px;
     box-shadow: 0 4px 8px rgba(0,123,186,0.1);
}
 .global-controls {
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 20px;
}
 .global-select-all-wrapper {
     margin-bottom: 0;
     font-weight: 600;
     font-size: 16px;
     color: #009de0;
}
 .global-select-all-wrapper .checkmark {
     border-color: #009de0;
     border-width: 2px;
     height: 20px;
     width: 20px;
}
 .global-select-all-wrapper:hover input ~ .checkmark {
     background-color: #e8f4f8;
     border-color: #005a87;
}
 .global-select-all-wrapper input:checked ~ .checkmark {
     background-color: #009de0;
     border-color: #009de0;
}
 .global-select-all-wrapper input:indeterminate ~ .checkmark {
     background-color: #009de0;
     border-color: #009de0;
}
 .global-select-all-wrapper input:indeterminate ~ .checkmark:after {
     display: block;
     left: 4px;
     top: 8px;
     width: 10px;
     height: 2px;
     border: none;
     background-color: white;
     transform: none;
}
 .global-download-btn {
      box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 24px 0px;
     background: linear-gradient(116deg, rgb(131, 27, 71) 0%, rgb(50, 43, 128) 50.5%, rgb(0, 157, 224) 100%) transparent;
     color: white;
     border: none;
     padding: 14px 28px;
     border-radius: 8px;
     cursor: pointer;
     font-size: 16px;
     font-weight: 600;
     transition: all 0.3s ease;
     position: relative;
     min-width: 220px;
     box-shadow: 0 3px 6px rgba(40,167,69,0.2);
     border-radius: 50px;
     font-weight: 400;
}
 .global-download-btn:hover:not(:disabled) {
     box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 24px 0px;
     background: linear-gradient(116deg, rgb(131, 27, 71) 0%, rgb(50, 43, 128) 50.5%, rgb(0, 157, 224) 100%) transparent;
     transform: translateY(-1px);
     box-shadow: 0 4px 8px rgba(40,167,69,0.3);
}
 .global-download-btn:disabled {
     opacity: 0.6;
     cursor: not-allowed;
     transform: none;
}
 .investor-kit-item {
     background: #fff;
     border: 1px solid #ddd;
     border-radius: 8px;
     padding: 20px;
     box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
 .investor-kit-item h3 {
    color: rgb(0, 157, 224);
    text-align: center;
    padding: 0 0 1rem;
    margin: 0px;
    font-size: 2rem;
    position: relative;
}
 .total-size {
     color: #555;
     font-size: 14px;
}
 .total-size-value {
     font-weight: 600;
     color: #009de0;
}
 .global-total-size {
     color: #555;
     font-size: 16px;
     font-weight: 600;
}
 .global-total-size .total-size-value {
     color: #009de0;
}
 .document-section {
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
 .document-section h4 {
     color: #555;
     font-size: 14px;
}
 .checkbox-wrapper {
     display: block;
     position: relative;
     padding-left: 25px;
     cursor: pointer;
     font-size: 14px;
     user-select: none;
}
 .checkbox-wrapper input[type="checkbox"] {
     position: absolute;
     opacity: 0;
     cursor: pointer;
     height: 0;
     width: 0;
}
 .checkmark {
     position: absolute;
     top: 0;
     left: 0;
     height: 18px;
     width: 18px;
     background-color: #eee;
     border: 2px solid #ddd;
     border-radius: 3px;
     transition: all ease-in-out 350ms;
}
 .checkbox-wrapper:hover input ~ .checkmark {
     background-color: #ccc;
}
 .checkbox-wrapper input:checked ~ .checkmark {
     background-color: #009de0;
     border-color: #009de0;
}
 .checkmark:after {
     content: "";
     position: absolute;
     display: none;
}
 .checkbox-wrapper input:checked ~ .checkmark:after {
     display: block;
}
 .checkbox-wrapper.disabled {
     opacity: 0.5;
     cursor: not-allowed;
}
 .checkbox-wrapper.disabled input[type="checkbox"] {
     cursor: not-allowed;
}
 .checkmark.disabled {
     background-color: #f5f5f5;
     border-color: #ccc;
     cursor: not-allowed;
}
 .no-file {
     color: #999;
     font-style: italic;
}
.checkbox-wrapper .checkmark:after {
    left: 4px;
    top: 0px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
 .download-controls {
     margin-top: 20px;
     padding-top: 15px;
     border-top: 1px solid #ddd;
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 15px;
}
 .select-all-wrapper {
     margin-bottom: 0;
     font-weight: 500;
     color: #333;
}
 .select-all-wrapper .checkmark {
     border-color: #009de0;
}
 .select-all-wrapper:hover input ~ .checkmark {
     background-color: #e8f4f8;
}
 .select-all-wrapper input:checked ~ .checkmark {
     background-color: #009de0;
     border-color: #009de0;
}
 .select-all-wrapper input:indeterminate ~ .checkmark {
     background-color: #009de0;
     border-color: #009de0;
}
 .select-all-wrapper input:indeterminate ~ .checkmark:after {
     display: block;
     left: 3px;
     top: 7px;
     width: 10px;
     height: 2px;
     border: none;
     background-color: white;
     transform: none;
}
 .download-controls button {
     color: white;
     border: none;
     padding: 12px 24px;
     border-radius: 4px;
     cursor: pointer;
     font-size: 14px;
     font-weight: 500;
     transition: background-color 0.3s;
     position: relative;
     min-width: 180px;
     text-align: right;
}
 .download-controls button:hover:not(:disabled) {
    opacity: 0.7;
}
 .download-controls button:disabled {
     opacity: 0.6;
     cursor: not-allowed;
}
 .deselect-all-btn {
     background: #666 !important;
}
 .deselect-all-btn:hover:not(:disabled) {
     background: #444 !important;
}
 .download-selected-btn {
     background: #28a745 !important;
     min-width: 180px;
}
 .download-selected-btn:hover:not(:disabled) {
     background: #218838 !important;
}
 .loading-spinner {
     display: inline-block;
}
/* Loading animation */
 .loading-spinner::after {
     content: '';
     display: inline-block;
     width: 12px;
     height: 12px;
     margin-left: 8px;
     border: 2px solid #ffffff;
     border-radius: 50%;
     border-top-color: transparent;
     animation: spin 1s ease-in-out infinite;
}
span.filesize {
    display: none;
}
.investor-kit-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 16px 0px;
    border: 0;
}
.investor-kit-item .total-size {
    margin: 0;
    display: flex;
    justify-content: space-between;
}
.investor-kit-item h3:after {
    background: linear-gradient(90deg, #35297b 0%, #9e1a23 100%);
    height: 2px;
    display: block;
    width: 100%;
    content: '';
    position: absolute;
    bottom: 0;
}
label.checkbox-wrapper.select-all-wrapper {
     position: relative;
     display: flex;
     align-items: center;
     box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 24px 0px;
     background: linear-gradient(116deg, rgb(131, 27, 71) 0%, rgb(50, 43, 128) 50.5%, rgb(0, 157, 224) 100%) transparent;
     padding: 10px;
     border-radius: 50px;
     color: #fff;
     text-align: center;
     justify-content: center;
}
 .download-selected-btn:hover:not(:disabled), .download-controls button {
     background: transparent !important;
     color: rgb(0, 157, 224);
     padding-right: 0;
}
 .select-all-wrapper .checkmark {
     top: 50%;
     transform: translateY(-50%);
     left: 20px;
}
.global-download-section {
    flex-basis: 100%;
    margin: 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 16px 0px;
    border: 0;
    background: #fff;
}
.investor-kit-item {
    margin: 0;
}
form.download-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.history-finance.invest-kits_box {
    padding: 5em 0;
}
label.checkbox-wrapper.select-all-wrapper {
    padding: 10px 20px 10px 42px;
    flex: unset;
    font-weight: 400;
}
.download-controls button {
    min-width: auto;
}
.history-finance.invest-kits_box {
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
}
 @keyframes spin {
     to {
         transform: rotate(360deg);
    }
}
/*ipad (tablet)*/
@media (max-width: 1024px) {
    .history-finance.invest-kits_box {
        padding: 2em 2em;
    }
    .investor-kits-container {
        gap: 20px;
    }
    .investor-kit-item {
        flex-basis: calc(50% - 10px);
    }
}
 @media (max-width: 768px) {
     .quarterly-docs {
         grid-template-columns: 1fr;
    }
     .download-controls {
         flex-direction: column;
         align-items: stretch;
    }
     .download-controls button {
         width: 100%;
         margin: 5px 0;
    }
     .select-all-wrapper {
         text-align: center;
         justify-self: center;
    }
     .global-controls {
         flex-direction: column;
         align-items: stretch;
         text-align: center;
    }
     .global-download-btn {
         width: 100%;
         margin-top: 15px;
    }
    .history-finance.invest-kits_box {
        padding: 2em 1.5em;
    }
    .global-download-btn, .global-download-btn:hover:not(:disabled) {
        position: relative;
        box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 24px 0px;
        background: linear-gradient(116deg, rgb(131, 27, 71) 0%, rgb(50, 43, 128) 50.5%, rgb(0, 157, 224) 100%) transparent;
        padding: 10px;
        border-radius: 50px;
        color: #fff;
        text-align: center;
    }
    .investor-kits-container {
        gap: 20px;
    }
    .investor-kit-item {
        flex-basis: 100%;
    }
}
