.tab {
    overflow: hidden;
    /* border-bottom: 1px solid; */
    background: url(filter-line.png) bottom center no-repeat;
    display: flex;
    justify-content: center;
}

.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    text-transform: uppercase;
}

.investor ul{
    list-style-type: none;
}

/* .tab button:hover {
    background-color: #28282B;
} */

.tab button.active {
    background-color: #ccc;
}



/* .tabcontent.active{
    display: block;
} */

.row {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: 13px;
    margin-left: -33px;
}

.investor-row li {
    display: inline-block;
    border-right: 1px solid #ccc;
    margin-top: -4px;
    padding: 10px 35px;
}

.investor-row li h5 {
    font-size: 21px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #666;
    text-align: center;
}

.heading18 {
    font-family: Quicksand;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #333;
}

.heading16 {
    font-size: 36px;
    line-height: 43px;
}

.investor-row li h3 span {
    text-transform: none;
    font-size: 18px;
    margin-top: -10px;
}
    
.filter {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.filter select {
    appearance: none;
    -webkit-appearance: none;
    background-color: #ffffff;
    color: #28251d;
    border: 1px solid #d4d1ca;
    border-radius: 6px;
    padding: 6px 32px 6px 12px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    max-width: 83px;
    width: 100%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    transition: border-color 180ms ease, box-shadow 180ms ease;

    /* Custom dropdown arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a7974' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.filter select:hover {
    border-color: #01696f;
}

.filter select:focus {
    outline: none;
    border-color: #01696f;
    box-shadow: 0 0 0 3px rgba(1, 105, 111, 0.15);
}

.tabcontent {
    padding: 6px 12px;
    border: none;
    display: block;
}

#yearFilter {
    font-size: 18px;
    border: none;
    border-bottom: 1px solid;
}

#shareyearFilter{
    font-size: 18px;
    border: none;
    border-bottom: 1px solid;
}

#announcementYearFilter{
    font-size: 18px;
    border: none;
    border-bottom: 1px solid;
}



/* PDF Styling */
/*new*/
* {
    transition: all 0.3s ease-out;
}

/* html,
body {
    height: 100%;
    font-family: Quicksand;
    font-size: 16px;
} */

.investor-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.investor-pdf{
    display: grid;
    grid-template-columns: auto auto auto;
}

.investor-pdf h3{
    text-align: center;
}

h3 {
    color: #262626;
    font-size: 31px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    
}

.investor-pdf h3{
    font-size: 21px;
}
p {
    font-size: 17px;
    font-weight: 400;
    line-height: 20px;
    color: #666666;

    &.small {
        font-size: 14px;
    }
}

.go-corner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 32px;
    height: 32px;
    overflow: hidden;
    top: 0;
    right: 0;
    background-color: #00b0f0;
    border-radius: 0 4px 0 32px;
}

.go-arrow {
    margin-top: -4px;
    margin-right: -4px;
    color: white;
    font-family: Quicksand;
}

button {
    margin-top: 20px
}

.card6 button{
    font-size: 11px;
    margin: 10px;
}

.text-center{
    margin-top: 40px !important;
}

.card6 {
    display: block;
    position: relative;
    max-width: 230px;
    background-color: #f2f8f9;
    border-radius: 4px;
    padding: 21px 73px;
    margin: 12px;
    text-decoration: none;
    z-index: 0;
    overflow: hidden;

    &:before {
        content: "";
        position: absolute;
        z-index: -1;
        top: -16px;
        right: -16px;
        background: #00b0f0;
        height: 32px;
        width: 32px;
        border-radius: 32px;
        transform: scale(1);
        transform-origin: 50% 50%;
        transition: transform 0.25s ease-out;
    }

    &:hover:before {
        transform: scale(21);
    }
}

.card6:hover {
    p {
        transition: all 0.3s ease-out;
        color: rgba(255, 255, 255, 0.8);
    }

    h3 {
        transition: all 0.3s ease-out;
        color: #ffffff;
    }

    button{
        color: black;
    }
}


/* Hide all PDF lists by default */
.tabcontent .pdf-list {
    display: none;
}

/* Show PDF list when its tab is active */
.tabcontent.show .pdf-list {
    display: block;
}

.investor{
    display: flex;
    justify-content: center;
}

.investor-button{
    position: relative;
    margin-top: 100px;
    left: -8%;
}

@media only screen and (max-width: 768px) {
    .tab {
        flex-direction: column;
    }
    .tab button {
        width: 100%; /* Make buttons full width on mobile */
        margin-bottom: 10px; /* Add some space between buttons */
    }
    .investor-container {
        max-width: 100%; /* Adjust the width for smaller screens */
    }
    .investor-pdf{
        max-width: 100%;
    }

    .investor-pdf{
        display: contents;
    }
}