html {
    font-size: 14px;
    width: 100%;
}
/* Ensure the container has appropriate max-width and padding */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Full-width hero banner */
.hero-banner {
    width: 100%;
    overflow: hidden;
    max-height: 350px;
    border-top: 5px solid #b2b0a5;
    border-bottom: 5px solid #b2b0a5;
}

    .hero-banner img {
        width: 100%;
        height: auto; /* Maintain aspect ratio */
        display: block; /* Remove bottom margin/gap */
    }

main {
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 30px;
    margin-top:30px;
}

.maincontent {
    float: right;
    /*width: 75%;*/
    /*padding: 1px 15% 1px 0;*/
}
    .maincontent img {
        width: 100%;
        max-width: 100%;
    }
.container .maincontent a {
    color: #006870 !important;
}
.container .maincontent .arrow-list a {
    color: #555 !important;
}
.container .maincontent .yearly-results a {
    color: #2edae8 !important;
}
.share-price-widget span {
    font-size: 21px;
    color: #006870;
}
.sidebar {
    float: left;
    min-width: 25%;
    padding-right: 30px;
    padding-left: 15px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}
@media (max-width: 1200px) {
    .sidebar {
       display:none;
    }
}
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}
.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, .55) !important;
    font-size: 16px !important;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    background-color: #fff;
    font-family: "ff-dagny-web-pro", Helvetica, Arial, sans-serif;
    font-size: 1em;
    line-height: 1.5em;
    font-weight: 400;
    color: #555;
    font-style: normal;
    font-variant: normal;
}

.dropdown-item {
    color: #fff;
    background: #B2B0A5;
    border-bottom: 1px solid #666;
}
    .dropdown-item.active, .dropdown-item:hover {
        color: #fff;
        text-decoration: none;
        background-color: #006870 !important;
    }
ul.dropdown-menu {
    background: transparent;
    border: 0px;
}
.navbar .container {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.navbar .navbar-collapse {
    width: 100%; /* Make sure the collapsed menu takes full width */
}

.navbar .logo {
    width: 100%;
    text-align: left;
    margin-bottom: 10px; /* Space between logo and menu */
}

.navbar .navbar-toggler {
    margin-left: auto; /* Align the toggler to the right */
}


/*Colors - Fonts */
h1, h2, h3, h4, h5, h6 {
    color: #006870;
    font-family: "ff-dagny-web-pro", Helvetica, Arial, sans-serif;
}
blockquote {
    color: #b2b0a5;
    font-size: 1.7em;
    line-height: 1.4em;
}
.sidebar h3 {
    font-size: 23px;
    line-height: 25px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.sidebar ul {
    list-style: none; /* Remove default bullets */
    padding-left: 0; /* Remove default padding */
}

    .sidebar ul li {
        margin: 10px 0;
        position: relative; /* Needed for absolute positioning of the icon */
    }

        .sidebar ul li.active:before {
            font-family: "Font Awesome 5 Free"; /* Specify the Font Awesome font family */
            content: '\f0a9'; /* Unicode for 'fa-arrow-circle-right' */
            position: absolute;
            top: 50%;
            left: -30px;
            transform: translateY(-50%); /* Vertically center the icon */
            color: #006870;
            font-weight: 900; /* Font Awesome icons require font-weight */
            font-size: 18px; /* Adjust the icon size */
        }

        .sidebar ul li a {
            text-decoration: none; /* Remove underline from links */
            color: inherit; /* Use the inherited color */
            display: block;
            color: #b2b0a5;
            line-height: 1em;
        }
.sidebar li.active a {
    color: #006870;
}


/* Center align the logo container */
.brand-logos.footer-top {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.view-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.views-row {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo styling */
.logos {
    display: inline-block;
    position: relative;
    width: 150px; /* Adjust size as needed */
    height: auto;
}

    .logos img {
        display: block;
        width: 100%;
        transition: opacity 0.3s ease-in-out;
    }

.logo-grey {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.logo-colour {
    opacity: 0;
    width: 100%;
    height: auto;
}

/* Hover effect to show color logo */
.logos:hover .logo-colour {
    opacity: 1;
}

.logos:hover .logo-grey {
    opacity: 0;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .view-content {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .logos {
        width: 120px; /* Adjusted size for smaller screens */
    }
}

@media (max-width: 480px) {
    .logos {
        width: 100px; /* Further adjust for very small screens */
    }
}


/* Footer Styling */
/* Footer Styling */
.footer {
    background: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

    .footer .wrap {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        margin: 0 auto;
        max-width: 1200px;
        padding: 0 30px;
    }

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

    .footer-nav ul li {
        display: inline;
        float: left;
        border-right: 1px solid #fff;
        margin: 0;
        line-height: 1em;
    }

        .footer-nav ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
            padding: 0 10px;
        }

            .footer-nav ul li a:hover {
                color: #f4a261;
            }

.copyright p {
    margin: 0;
    font-size: 14px;
}

/* Ensure everything is in one line */
.footer .region-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .footer .wrap {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .footer .region-footer {
        flex-direction: column;
        gap: 5px;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 5px;
    }
}



/* Feature Boxes
	---------------------------------------- */

.feature-boxes {
}
.feature-box ul li div {
    padding-left: 15px;
    margin-top: -20px;
}
.feature-boxes-wrapper {
    width: 102%;
    margin-left: -1%;
}

.feature-box {
    float: left;
    width: 31.3333%;
    background: #ededea;
    margin: 25px 1% 0 1%;
    padding: 20px;
    height: 430px;
    -webkit-border-top-right-radius: 30px;
    border-top-right-radius: 30px;
}

    .feature-box h2 {
        font-size: 2em;
        line-height: 1em;
        margin: 0;
        padding-bottom:15px;
    }

    .feature-box h3 {
        font-size: 1.3em;
        text-transform: uppercase;
        color: #555;
    }

    .feature-box ul {
        margin-top: 20px;
        padding-left: 0px;
    }

        .feature-box ul li {
            line-height: 1.1em;
            margin-bottom: 15px;
        }

            .feature-box ul li::marker {
                display: none !important;
                content: "";
            }
            .feature-box ul li:before {
                font-family: "Font Awesome 5 Free"; /* Specify the Font Awesome font family */
                content: '\f0a9'; /* Unicode for 'fa-arrow-circle-right' */
                transform: translateY(-50%); /* Vertically center the icon */
                color: #006870;
                font-weight: 900; /* Font Awesome icons require font-weight */
                font-size: 18px; /* Adjust the icon size */
                padding-right: 10px;
            }

        .feature-box ul a {
            color: #555;
            text-decoration: none;
        }
.rule {
    background: #b2b0a5;
    height: 5px;
}
#block-views-block-asx-announcements-block.feature-box ul li span, #block-views-block-shareholder-timetable-block.feature-box ul li span {
    font-weight: 700;
    display: block;
    padding-left: 0px;
    margin-top: -18px;
}
#block-views-block-asx-announcements-block.feature-box ul li a, #block-views-block-shareholder-timetable-block.feature-box ul li a {
    margin-left: 25px;
    display: block;
}
#block-views-block-asx-announcements-block.feature-box a, #block-views-block-shareholder-timetable-block.feature-box a {
    color: #555;
    text-decoration: none;
}
#block-views-block-shareholder-timetable-block .yearly-results {
    background: rgb(51, 51, 51);
    padding: 20px;
}
    #block-views-block-shareholder-timetable-block .yearly-results a {
        color: #0081C6;
    }
    #block-views-block-shareholder-timetable-block .yearly-results {
    color: rgb(255, 255, 255);
    font-size: 13px;
}
        #block-views-block-shareholder-timetable-block .yearly-results h4 {
            font-size: 15px !important;
            color: rgb(255, 255, 255);
            margin: 0 0 10px 0;
            border-bottom: 1px solid rgb(255, 255, 255);
            text-transform: uppercase;
        }

.rule {
    background: #b2b0a5;
    height: 5px;
}

@media only screen and (max-width: 950px) {

    body.home .body-container .wrap {
        max-width: 720px;
    }

    .feature-boxes {
        padding-bottom: 40px;
    }

    .feature-box {
        float: none;
        width: 100%;
        height: auto;
        margin-left: 0;
        margin-right: 0;
    }

    .rule {
        display: none;
    }

    .asx-logo {
        margin-bottom: 30px;
    }
}

/* Home Content */
.home-content.intro-para blockquote {
    color: #006870;
    font-size: 1.7em;
    line-height: 1.4em;
}


.home-content .text-content {
    width: 80%;
    padding: 20px;
}

.home-content .image-content {
    width: 20%;
}

    .home-content .image-content img {
        width: 80px; /* Makes the image responsive */
        height: auto; /* Maintains aspect ratio */
    }

.home-content {
    display: flex;
    width: 100%;
    padding: 1px 0 1px 30px;
    border-left: 1px solid #B2B0A5;
    margin: 30px 0;
}


    .home-content.intro-para > p.sub-title {
        color: #0081C6;
    }

    .home-content.intro-para > p:only-of-type {
        color: inherit;
    }

/* ASX Logo
	---------------------------------------- */

.asx-logo {
    display: block;
    text-align: center;
    padding-top: 30px;
}

@media only screen and (max-width: 995px) {
    .home-content{
        display:block !important;
    }
    .home-content .text-content {
        width: 100%;
        padding: 0px;
    }

    .home-content .image-content {
        width: 100%;
    }
 
}

/*Data Table*/
table.dataTable {
    clear: both;
    margin-top: 6px !important;
    margin-bottom: 6px !important;
    max-width: none !important;
    border-collapse: separate !important
}

    table.dataTable td, table.dataTable th {
        -webkit-box-sizing: content-box;
        box-sizing: content-box
    }

        table.dataTable td.dataTables_empty, table.dataTable th.dataTables_empty {
            text-align: center
        }

    table.dataTable.nowrap th, table.dataTable.nowrap td {
        white-space: nowrap
    }

div.dataTables_wrapper div.dataTables_length label {
    font-weight: normal;
    text-align: left;
    white-space: nowrap
}

div.dataTables_wrapper div.dataTables_length select {
    width: 75px;
    display: inline-block
}

div.dataTables_wrapper div.dataTables_filter {
    text-align: right
}

    div.dataTables_wrapper div.dataTables_filter label {
        font-weight: normal;
        white-space: nowrap;
        text-align: left
    }

    div.dataTables_wrapper div.dataTables_filter input {
        margin-left: 0.5em;
        display: inline-block;
        width: auto
    }

div.dataTables_wrapper div.dataTables_info {
    padding-top: 8px;
    white-space: nowrap
}

div.dataTables_wrapper div.dataTables_paginate {
    margin: 0;
    white-space: nowrap;
    text-align: right
}

    div.dataTables_wrapper div.dataTables_paginate ul.pagination {
        margin: 2px 0;
        white-space: nowrap
    }

div.dataTables_wrapper div.dataTables_processing {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    margin-left: -100px;
    margin-top: -26px;
    text-align: center;
    padding: 1em 0
}

table.dataTable {
    border: 1px solid #E5E5E5;
}

table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting, table.dataTable thead > tr > td.sorting_asc, table.dataTable thead > tr > td.sorting_desc, table.dataTable thead > tr > td.sorting {
    padding-right: 30px
}

table.dataTable thead > tr > th:active, table.dataTable thead > tr > td:active {
    outline: none
}

table.dataTable thead .sorting, table.dataTable thead .sorting_asc, table.dataTable thead .sorting_desc, table.dataTable thead .sorting_asc_disabled, table.dataTable thead .sorting_desc_disabled {
    cursor: pointer;
    position: relative
}

    table.dataTable thead .sorting:after, table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_desc:after, table.dataTable thead .sorting_asc_disabled:after, table.dataTable thead .sorting_desc_disabled:after {
        position: absolute;
        bottom: 8px;
        right: 8px;
        display: block;
        font-family: 'Glyphicons Halflings';
        opacity: 0.5
    }

    table.dataTable thead .sorting:after {
        opacity: 0.2;
        content: "\e150"
    }

    table.dataTable thead .sorting_asc:after {
        content: "\e155"
    }

    table.dataTable thead .sorting_desc:after {
        content: "\e156"
    }

    table.dataTable thead .sorting_asc_disabled:after, table.dataTable thead .sorting_desc_disabled:after {
        color: #eee
    }

div.dataTables_scrollHead table.dataTable {
    margin-bottom: 0 !important
}

div.dataTables_scrollBody > table {
    border-top: none;
    margin-top: 0 !important;
    margin-bottom: 0 !important
}

    div.dataTables_scrollBody > table > thead .sorting:after, div.dataTables_scrollBody > table > thead .sorting_asc:after, div.dataTables_scrollBody > table > thead .sorting_desc:after {
        display: none
    }

    div.dataTables_scrollBody > table > tbody > tr:first-child > th, div.dataTables_scrollBody > table > tbody > tr:first-child > td {
        border-top: none
    }

div.dataTables_scrollFoot > .dataTables_scrollFootInner {
    box-sizing: content-box
}

    div.dataTables_scrollFoot > .dataTables_scrollFootInner > table {
        margin-top: 0 !important;
        border-top: none
    }

@media screen and (max-width: 767px) {
    div.dataTables_wrapper div.dataTables_length, div.dataTables_wrapper div.dataTables_filter, div.dataTables_wrapper div.dataTables_info, div.dataTables_wrapper div.dataTables_paginate {
        text-align: center
    }
}

table.dataTable.table-condensed > thead > tr > th {
    padding-right: 20px
}

table.dataTable.table-condensed .sorting:after, table.dataTable.table-condensed .sorting_asc:after, table.dataTable.table-condensed .sorting_desc:after {
    top: 6px;
    right: 6px
}

table.table-bordered.dataTable th, table.table-bordered.dataTable td {
    border-left-width: 0
}

    table.table-bordered.dataTable th:last-child, table.table-bordered.dataTable th:last-child, table.table-bordered.dataTable td:last-child, table.table-bordered.dataTable td:last-child {
        border-right-width: 0
    }

table.table-bordered.dataTable tbody th, table.table-bordered.dataTable tbody td {
    border-bottom-width: 0
}

div.dataTables_scrollHead table.table-bordered {
    border-bottom-width: 0
}

div.table-responsive > div.dataTables_wrapper > div.row {
    margin: 0
}

    div.table-responsive > div.dataTables_wrapper > div.row > div[class^="col-"]:first-child {
        padding-left: 0
    }

    div.table-responsive > div.dataTables_wrapper > div.row > div[class^="col-"]:last-child {
        padding-right: 0
    }


table.dataTable tr.group td {
    font-weight: bold;
    background-color: #e0e0e0
}
.dt-search {
    float: left;
}
.dt-length {
    font-size:16px;
}
.dt-length label{
    margin-left:5px;
}
div #DataTables_Table_0_info {
    font-size: 12px;
}
table.dataTable tr td {
    border-right: 1px solid #E5E5E5;
}
.asx-announcements td.text-start.annoucement-date {
    min-width: 115px;
}

/*Our Brands Table*/
table.tblourbands tr td:first-child {
    width: 40%;padding:20px;
}
table.tblourbands tr td:nth-last-child(1) {
    width: 70%;
    margin: 0px auto;
    text-align: left;
    padding-top: 20px;
    margin-left: 20px;
}
    table.tblourbands tr td:nth-last-child(1) img {
        max-width: 200px;
        margin: 0px auto;
        padding-bottom:10px;
    }

@media only screen and (max-width: 700px) {
    table.tblourbands tr td:first-child {
        width: 100%; 
        float:left;
    }
    table.tblourbands tr td:nth-last-child(1) {
        width: 100%;
        float:right;
    }
}


/*Annual Reports*/
.annual-reports {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.annual-reports p {
    font-size: 16px;
    margin-bottom: 20px;
}

.report-year {
    border-top: 1px solid #ccc;
    padding-top: 20px;
    margin-top: 20px;
    clear: both;
}

    .report-year h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .report-year img {
        max-width: 200px;
        height: auto;
        margin-bottom: 10px;
        float: left;
    }

    .report-year ul {
        list-style-type: none;
        padding-left: 20px;
        display: inline-block;
    }

        .report-year ul li {
            margin-bottom: 8px;
        }

            .report-year ul li a {
                text-decoration: none;
                color: #0066cc;
            }

                .report-year ul li a:hover {
                    text-decoration: underline;
                }
