﻿
/*Tabs */

.tab-content {
    display: block !important;
}

.cu-tab {
    /* text-decoration: none !important; */
    margin: 0;
    padding: 0 0 20px !important;
    list-style: none;
    /*    display: table;
    table-layout: fixed;*/
    gap: 30px;
    width: 100%;
    border: none;
    color: #000;
    
}

.cu-item {
    border:1px solid #be8c44;
    background:#be8c44;
    padding:15px;
    vertical-align: middle;

}

    .cu-item:has(.cu-link.active) {
        background-color:transparent;

    }

    .cu-item:has(.cu-link:hover) {
        /*border-bottom: 2px solid #be8c44;*/
        background-color: transparent;
        /*border-color: #fff #fff black #fff !important;*/
    }




.cu-tab .cu-link {
    border: none;
    /*font-size: 22px;*/
    font-size: 18px;
    font-weight: normal;
    padding: 20px 0;
    cursor: pointer;
}


.cu-link:focus-visible {
    outline: 0;
    /*box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);*/
}

.cu-tab .cu-link.active {
    color: #be8c44;
    font-weight: bold;
    background-color: transparent !important;
    border-bottom: 1px solid #be8c44;
}

.cu-tab .cu-link:hover {
    color: var(--gold-text);
    font-weight: bold;
    background-color: transparent !important;
    border-bottom: 1px solid #be8c44;
}

.cu-tab a {
    color: white;
    /*text-transform: uppercase;*/
}


ul.custom-list {
   list-style:none;
}
.pdf-div {
    padding: 15px;
    background-color: #f2f2f2;
    margin:20px 0;
    font-size:18px;
    cursor:pointer;
}
.pdf-download-icon {
    display: inline-block;
    background-image: url('/website/assets/images/pdf download.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 35px;
    height: 35px;
    margin:0 4px;
    /*margin-left: 10px;*/
    vertical-align: middle;
    flex-shrink: 0;
    transition: background-image 0.3s ease;
}
.custom-list li a {
    color: black;
}

        .custom-list li a .pdf-download-icon {
            display: inline-block;
            background-image: url('/website/assets/images/pdf download.svg');
            background-size: contain;
            background-repeat: no-repeat;
            width: 40px;
            height: 40px;
            margin-left: 10px;
            vertical-align: middle;
            flex-shrink: 0;
            transition: background-image 0.3s ease;
        }

    .custom-list li:hover a .pdf-download-icon{
        background-image: url('/website/assets/images/pdf download filled.svg'); /* new image on hover */
    }
.custom-list li:hover a {
    color: var(--gold-text);
}


/*accordion*/
.accordion-body {
    margin-top: 2rem;
}
.pdf-file {
    margin: 13px;
    padding: 10px 10px;
    border-bottom: 1px solid black;
    width: auto;
    background: #e9e9e9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--black);
    font-size:16px;
    text-transform:capitalize;
}
    .pdf-file:hover .pdf-download-icon {
        background-image: url('/website/assets/images/pdf download filled.svg'); /* new image on hover */
    }

.accordion-button .icon-bullet {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url('/website/assets/images/Buller point black.svg') no-repeat center;
    flex-shrink: 0;
    transition: background-image 0.3s ease;
}

.accordion-header .accordion-button {
    font-size: 18px;
}
.custom-list li:hover a .icon-bullet {
    background: url('/website/assets/images/Bullet-point.svg') no-repeat center;
}

.accordion-button:not(.collapsed) {
    color: var(--gold-text);
}

.accordion-button:not(.collapsed) .icon-bullet {
    background: url('/website/assets/images/Bullet-point.svg') no-repeat center;
    transform: rotate(90deg);
    transition: background-image 0.3s ease;
}

.pdf-div:hover .accordion-header {
    color: var(--gold-text);
}


    .pdf-div:hover  .icon-bullet {
        background: url('/website/assets/images/Bullet-point.svg') no-repeat center;
        color: var(--gold-text);
    }

@media(max-width:576px) {
    .cu-tab .cu-link {
        font-size: 1rem;
    }

    .cu-item {
        padding: 8px;
    }

    .cu-tab {
        gap: 10px;
    }

    .pdf-div {
        padding: 8px;
        margin: 10px 0;
    }

    .accordion-body {
        margin-top: 0;
    }
    .accordion-header .accordion-button {
        font-size: 1.2rem;
    }
    .accordion-button .icon-bullet{
        width:13px;
        height:13px;
    }
    .pdf-file{
        margin:10px;
        padding:5px;
        font-size:1.1rem;
    }
    .pdf-download-icon{
        width:30px;
        height:30px;
        margin:0 2px;
    }
}
