/* Minification failed. Returning unminified contents.
(8,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(9,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(10,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(11,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(56,25): run-time error CSS1039: Token not allowed after unary operator: '-brand-color'
(60,29): run-time error CSS1039: Token not allowed after unary operator: '-brand-color'
(137,26): run-time error CSS1039: Token not allowed after unary operator: '-brand-color'
(142,21): run-time error CSS1039: Token not allowed after unary operator: '-brand-color'
(292,21): run-time error CSS1039: Token not allowed after unary operator: '-brand-color'
(426,21): run-time error CSS1039: Token not allowed after unary operator: '-brand-color'
(441,21): run-time error CSS1039: Token not allowed after unary operator: '-brand-color'
(464,25): run-time error CSS1039: Token not allowed after unary operator: '-brand-color'
(537,28): run-time error CSS1039: Token not allowed after unary operator: '-border-darker-color'
(969,21): run-time error CSS1039: Token not allowed after unary operator: '-brand-color'
(996,37): run-time error CSS1039: Token not allowed after unary operator: '-brand-color'
(1087,32): run-time error CSS1039: Token not allowed after unary operator: '-brand-color'
(1095,36): run-time error CSS1039: Token not allowed after unary operator: '-border-color'
(1149,37): run-time error CSS1039: Token not allowed after unary operator: '-border-color'
(1161,35): run-time error CSS1039: Token not allowed after unary operator: '-brand-color'
(1176,40): run-time error CSS1039: Token not allowed after unary operator: '-border-dark-color'
(1223,28): run-time error CSS1039: Token not allowed after unary operator: '-border-color'
(1268,32): run-time error CSS1039: Token not allowed after unary operator: '-border-color'
(1363,32): run-time error CSS1039: Token not allowed after unary operator: '-brand-color'
(1364,28): run-time error CSS1039: Token not allowed after unary operator: '-brand-color'
 */
/* CUSTOMISATIONS FOR ADMIN PAGES */


/*--------------------------------------------------
    [VARIABLES]
----------------------------------------------------*/
:root {
    --brand-color: var(--brand-color);
    --border-color: #ddd;
    --border-dark-color: #999;
    --border-darker-color: #666;
}

/*--------------------------------------------------
    [GENERAL]
----------------------------------------------------*/

.admin-container {
    margin-top: 120px;
}

.flex {
    display: flex;
}

.flex-auto {
    flex: auto;
}

.flex-initial {
    flex: initial;
}

/*--------------------------------------------------
    [BREADCRUMB]
----------------------------------------------------*/
.breadcrumb {
    color: #555;
    background-color: #e2e3e5;
    border: 1px solid #d6d8db;
    padding-right: 0;
    position: relative;
    top: 0;
}

    .breadcrumb li {
        color: #555;
    }

        .breadcrumb li.active {
            color: inherit;
            text-decoration: none;
        }

        .breadcrumb li a {
            color: var(--brand-color);
        }

            .breadcrumb li a:hover {
                color: var(--brand-color);
                text-decoration: underline;
            }

/* Hide or show the breadcrumb on mobile devices */
@media (max-width: 768px) {

    .breadcrumb {
        display: block;
        margin: -20px 0 20px 0;
    }
}


/*--------------------------------------------------
    [TITLE]
----------------------------------------------------*/

.admin-container .title-v1 {
    margin-bottom: 20px;
}

.title-v1 h1 .org-name {
    font-size: 85%;
}

.title-v1 h1 .raffle-name {
    font-size: 120%;
    font-weight: 700;
}

/*--------------------------------------------------
    [RAFFLE STATUS HEADING]
----------------------------------------------------*/

.title-v1 .rafflestatus-head {
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;   
}

    .title-v1 .rafflestatus-head .rafflestatus-label {
        font-size: 85%;
    }

    .title-v1 .rafflestatus-head .rafflestatus-text {
        font-size: 200%;
        font-weight: 700;
        display: inline-block;
        text-align: center;
        line-height: 1.2;
    }

    .title-v1 .rafflestatus-head i {
        
    }

/*--------------------------------------------------
    [DRAW DATE HEADING]
----------------------------------------------------*/

.title-v1 .raffle-drawdt-heading {
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 15px;
    text-transform: uppercase;
    font-size: 85%;
}

    .title-v1 .raffle-drawdt-heading:after {
        bottom: 0;
        left: 50%;
        height: 1px;
        width: 70px;
        content: " ";
        margin-left: -35px;
        position: absolute;
        background: var(--brand-color);
    }

    .title-v1 .raffle-drawdt i {
        margin-left: 0.2em;
        color: var(--brand-color);
        font-size: 18px;
    }


/*--------------------------------------------------
    [WEBSITE URLs]
----------------------------------------------------*/

.raffle-url-outer {
    padding: 8px 12px 8px 12px;
}

    .raffle-url-outer h3 {
        margin: 5px 0;
        display: inline-block;
        vertical-align: middle;
    }

    .raffle-url-outer .url-label {

    }

    .raffle-url-outer .url-wrapper {
        margin-left: 0;
    }

    .raffle-url-outer .btn-copy-clipboard, .referral-url-outer .btn-copy-clipboard, .raffle-url-outer .url-button {
        margin-left: 0.4em;
    }

@media (max-width: 767px) {
    .raffle-url-outer h3 {
        font-size: 16px;
        line-height: 1.6;
        display: block;
        width: 100%;
        text-align: center;
        margin: 5px 0;
    }

    .raffle-url-outer .url-button {
        margin-left: 0;
    }
}

/*--------------------------------------------------
    [RAFFLE LINKS AND BUTTONS]
----------------------------------------------------*/

.raffle-links .row p {
    margin-bottom: 10px;
}

/* For p tags on lg screens and larger, set margin-bottom to 0 */
@media (min-width: 992px) {
    .raffle-links .row p {
        margin-bottom: 0;
    }
}

/* For screens md and smaller, set margin-bottom to 10px except for the last p tag */
@media (max-width: 991px) {
    .raffle-links .row p.sm-margin-bottom-0 {
        margin-bottom: 0;
    }
}

/*--------------------------------------------------
    [RT ADMIN PAGES]
----------------------------------------------------*/

    .admin-container span.prize-rrp {
        font-size: 75%;
        padding-left: 0.4em;
    }

    .admin-container #btnIsEnabledFl {
        display: none;
        min-width: 250px;
    }

    .admin-container span.label {
        font-size: 84%;
        font-weight: 400;
        padding: 4px 7px;
    }

    .admin-container .raffle-list span.label, .admin-container .org-list span.label, .admin-container .sources-list span.btn {
        display: inline-block;
        width: 95px;
        margin-bottom: 2px;
    }

        .admin-container .org-list span.label.label-auto {
            width: auto;
        }


    /*Corporate Colour*/
    .sp-replacer {
        margin-right: 10px;
    }

    .sp-preview {
        width: 100px;
    }  

    .btn-copy-clipboard {
        cursor: pointer;
    }

    .popover.fade.top.in {
        min-width: 120px;
    }

    .external-link + .popover.fade.top {
        white-space: nowrap;
    }
    /*------------------
    PROGRESS BAR
---------------------*/
    #target-revenue-progress-outer .progress {
        background: #ffffff;
        margin-bottom: 15px;
    }

    #target-revenue-progress-outer .flex {
        display: flex;
    }

    #target-revenue-progress-outer .flex-auto {
        flex: auto;
    }

    #target-revenue-progress-outer .flex-initial {
        flex: initial;
    }

    #target-revenue-progress-outer .target-revenue-progress, #target-revenue-progress-outer .target-revenue-progress-pct {
        font-weight: 700;
    }


    /*--------------------------------------------------
    [DATATABLES]
----------------------------------------------------*/
    td.editor_up, td.editor_down, td.editor_delete, td.editor_edit {
        cursor: pointer;
        text-decoration: underline;
        color: var(--brand-color);
    }

    table.dataTable.nowrap td.ticketNumbers, table.dataTable.nowrap span.dtr-data {
        white-space: normal;
    }

    table.dataTable td.nowrap {
        white-space: nowrap;
    }

    table.dataTable tbody tr:hover {
        background-color: #f5f5f5;
    }

        table.dataTable tbody tr:hover > .sorting_1 {
            background-color: #f5f5f5;
        }

    /* Special formatting for the list of raffles */
    #table-raffles .badge {
        margin: 0 0.2em 0 0;
    }

    table.dataTable .receipt .btn-sm, table.dataTable .dt-btn-sm .btn-sm, .dataTables_wrapper .action-list .btn-sm {
        width: 100%;
        max-width: 250px;
    }

    @media (min-width: 673px) {
        table.dataTable.nowrap td .word-break-mobile {
            margin-right: 20px;
        }
    }

    @media (max-width: 672px) {
        table.dataTable.nowrap td .word-break-mobile {
            white-space: normal !important;
            /* These are technically the same, but use both */
            overflow-wrap: break-word;
            word-wrap: break-word;
            -ms-word-break: break-word;
            word-break: break-word;
            /* Adds a hyphen where the word breaks, if supported (No Blink) */
            -ms-hyphens: auto;
            -moz-hyphens: auto;
            -webkit-hyphens: auto;
            hyphens: auto;
        }

        table.dataTable.nowrap td .word-break-space {
            white-space: break-spaces;
        }
    }

    div.dataTables_wrapper div.dataTables_info {
        white-space: break-spaces;
    }

    table.dataTable.nowrap td.source {
        min-width: 150px;
    }

@media (max-width: 768px) {
    div.dataTables_wrapper .dt-buttons .dt-button {
        width: 100%; /* Full width on mobile */
    }
}

    /* Special formatting for the list of organisers */
    /* Having trouble setting the width without affecting the danger shading */
    /*#table-organisers .email div {
    min-width: 180px;
    display: inline-block;
}*/

    /*--------------------------------------------------
    [FILE UPLOAD]
----------------------------------------------------*/
    #progressbar {
        background-color: black;
        background-repeat: repeat-x;
        border-radius: 13px;
        padding: 3px;
    }

        #progressbar > div {
            background-color: orange;
            width: 0%;
            height: 20px;
            border-radius: 10px;
        }


    input.image-file, input.asset-file {
        display: none;
    }

    .input-group-btn:first-child > .btn.roundedgroup {
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
    }

    .input-group-btn:last-child > .btn.roundedgroup {
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
    }

    .image-save-container .input-group .form-control, .asset-save-container .input-group .form-control {
        line-height: 1.55;
        height: 36px;
    }

/*--------------------------------------------------
    [LIST GROUP]
----------------------------------------------------*/

.list-group-item {
    padding: 10px 15px;
    display: flex;
}

    .list-group-item:first-child {
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
    }

    .list-group-item:last-child {
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
        margin-bottom: 0;
    }

    .list-group-item i.fa-sort {
        color: var(--brand-color);
        font-size: 24px;
        padding: 2px 6px 0;
        cursor: grabbing;
    }

    .list-group-item .flex-auto {
        flex: auto;
    }

    .list-group-item .flex-initial {
        flex: initial;
    }

    .list-group-item .list-group-item-sort i {
        color: var(--brand-color);
        font-size: 24px;
        padding-top: 2px;
    }

    .list-group-item .additional-info {
        display: flex;
        gap: 0; /* Adjust gap as needed */
        margin: 0 0 5px 0; /* Add some space between the heading and additional info */
        font-size: 0.85em; /* Adjust font size as needed */
    }

        .list-group-item .additional-info span.label {
            min-width: 100px;
            font-size: 1.0em; /* Adjust font size as needed */
        }

    .list-group-item .list-group-item-img {
        width: 25px;
        margin-right: 10px;
    }

        .list-group-item .list-group-item-img i {
            color: var(--brand-color);
            font-size: 22px; /* be consistent */
            padding: 0 0;
            cursor: default;
        }

    .list-group-item .list-group-item-clone {
        margin-right: 10px;
        position: relative;
        top: -2px;
    }

        .list-group-item .list-group-item-clone span.label {
            font-size: 0.75em;
        }

        .list-group-item .list-group-item-clone i {
            margin-right: 5px;
        }

    .list-group-item .list-group-item-remove {
        margin-right: 0;
    }

        .list-group-item .list-group-item-remove i {
            color: #d9534f;
            font-size: 22px; /* be consistent */
            padding: 0 0;
            cursor: pointer;
        }

.sortable .list-group-item .list-group-item-heading {
    margin-left: 5px;
    margin-right: 5px;
}

.sortable .list-group-item .additional-info {
    margin-left: 5px;
}

@media (max-width: 768px) {
    .list-group-item .list-group-item-sort {
            margin: 0;
            padding-left: 0; /* overwriting other properties */
        }

        .list-group-item .list-group-item-heading {
            font-size: 16px;
            line-height: 20px;
            font-weight: 500;
        }

        .list-group-item .list-group-item-clone i {
            margin-right: 0;
            display: none;
        }
    }

/*--------------------------------------------------
    [IMAGES]
----------------------------------------------------*/

/* Overwrite this unwanted style */
.tab-v1 .tab-content .image-preview img {
    margin: 0;
}
/* General container styling */
.custom-page-admin-org-raffle .image-preview {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f0f0f0;
    margin: 0 0 20px 0;
    border: 2px solid var(--border-darker-color);
    border-radius: 10px;
}

/* Landscape container - width 100%, height 56.25% of the width */
/* Laptop could 1920 x 1080. This is 16:9 orientation */
/* We need to allow for the navigation of 80px */
.image-preview-landscape {
    padding-bottom: 56.25%; /* This ensures the height is 56.25% of the width */
}

/* Portrait container - max height 500px, max width 250px, height 2x width */
.image-preview-portrait {
    max-width: 250px;
    max-height: 500px;
    margin: 0 auto 20px auto; /* Center horizontally */
    position: relative;
    overflow: hidden;
}

/* Responsive portrait using aspect ratio container */
.image-preview-portrait::before {
    content: "";
    display: block;
    padding-top: 200%; /* Height is 2x width */
}

/* Social media preview container - width 100%, height 52.25% of the width */
.image-preview-social {
    padding-bottom: 52.25%; /* This ensures the height is 52.25% of the width */
}

/* Content inside the containers */
.custom-page-admin-org-raffle .image-preview img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Optional: Some responsive constraints for the portrait container */
@media (min-width: 500px) {
    .image-preview-portrait {
        width: 250px;
        height: 500px;
        padding-bottom: 0; /* Disable the padding-based height control for larger screens */
    }

    .image-preview-portrait::before {
        padding-top: 0;
    }
}

/*--------------------------------------------------
    [PRIZES]
----------------------------------------------------*/

#div-prizes .list-group-item .row-number {
    font-size: 0.75em;
    text-align: right;
    margin-right: 5px;
    padding-top: 5px;
}

    #div-prizes .list-group-item .row-number.rn10 {
        width: 1.5em;
    }

    #div-prizes .list-group-item .row-number.rn100 {
        width: 2em;
    }

#div-prizes .list-group-item .additional-info .prize-rrp {
    padding-left: 0; /* remove padding from .admin-container span.prize-rrp */
    font-size: 1.0em; /* remove font-size from .admin-container span.prize-rrp  */
}

#div-prizes .prize-winner-info {
    background: #fcfcfc;
    border: solid 1px #e5e5e5;
}

    #div-prizes .prize-winner-info .winners {
        font-weight: 700;
        text-align: center;
    }

#div-prizes .list-group-item .additional-info .winner-name {
    font-size: 1.0em;
}

#div-prizes .list-group-item .additional-info .winner-phone {
    font-size: 1.0em;
}

#div-prizes .list-group-item .winner-number {
    font-size: 2.0em;
    font-weight: 700;
    line-height: 1.0;
}

@media (max-width: 768px) {

    #div-prizes .prize-winner-info h4 {
        font-size: 16px;
        line-height: 20px;
    }
}

/* MODAL */

#prizeWinner .flex {
    display: flex;
}

#prizeWinner .flex-auto {
    flex: auto;
}

#prizeWinner .flex-initial {
    flex: initial;
}

    #prizeWinner .flex-initial.label {
        min-width: 100px;
    }

#prizeWinner .winners {
    color: #3c763d;
    word-break: break-word;
    text-align: center;
}

    #prizeWinner .winners span {
        font-size: 2.0em;
        font-weight: 700;
        line-height: 1.0;
    }

#prizeWinner .prize-winner-info h4, #div-prizes .prize-winner-info h4 {
    font-weight: 200;
    text-transform: uppercase;
    margin-bottom: 5px;
}

/*--------------------------------------------------
    [TICKET PRICES]
----------------------------------------------------*/

/*--------------------------------------------------
    [VALID STATES]
----------------------------------------------------*/

#div-stateadmin .list-group-item .additional-info {
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

/*--------------------------------------------------
    [SPONSOR LEVELS]
----------------------------------------------------*/

/*--------------------------------------------------
    [SPONSORS]
----------------------------------------------------*/
/*--------------------------------------------------
    [BOOTSTRAP MODAL]
----------------------------------------------------*/
.modal {
    /* ... */
    overflow-y: scroll;
}

.modal-content {
    max-height: calc(100vh - 100px); /* 100px accounts for sticky footer */
    overflow-y: auto;
}

    /* For mobile, make the btn-u-lg buttons smaller when in a modal */
    @media (max-width: 767px) {
        .modal .btn-u-lg {
            min-width: 150px;
        }

        .modal-footer {
            text-align: left;
        }
    }

    /* Add some styling when the button is a link inside a form modal*/
    .sky-form a.btnHTML {
        color: #ffffff;
        text-decoration: none;
    }


    /*--------------------------------------------------
    [ALERTIFY MODAL]
----------------------------------------------------*/

    .modal-alerts-lg .ajs-dialog {
        width: 300px;
    }

    .modal-alerts-med-tall .ajs-dialog {
        height: 60%;
    }

    .modal-alerts-tall .ajs-dialog {
        height: 80%;
    }

    .modal-alerts-tall textarea.prompt-text-value {
        height: 400px;
    }

    @media (min-width: 430px) {
        .modal-alerts-lg .ajs-dialog {
            width: 400px;
            /* height: 800px; */
        }

        .modal-alerts-tall .ajs-dialog {
            height: 80%;
        }

        .modal-alerts-tall textarea.prompt-text-value {
            height: 400px;
        }
    }

    @media (min-width: 580px) {
        .modal-alerts-lg .ajs-dialog {
            width: 520px;
            /* height: 800px; */
        }

        .modal-alerts-tall .ajs-dialog {
            height: 80%;
        }

        .modal-alerts-tall textarea.prompt-text-value {
            height: 500px;
        }
    }

    @media (min-width: 768px) {
        .modal-alerts-lg .ajs-dialog {
            width: 700px;
            /* height: 800px; */
        }

        .modal-alerts-tall .ajs-dialog {
            height: 80%;
        }

        .modal-alerts-tall textarea.prompt-text-value {
            height: 500px;
        }
    }

    @media (min-width: 992px) {
        .modal-alerts-lg .ajs-dialog {
            width: 900px;
            /* height: 800px; */
        }

        .modal-alerts-tall .ajs-dialog {
            height: 80%;
        }

        .modal-alerts-tall textarea.prompt-text-value {
            height: 500px;
        }
    }

    /* re-define the button when we have .save-changes-alert */
.save-changes-alert .ajs-button.btn-u {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}



    /*--------------------------------------------------
    [ACCORDIONS]
----------------------------------------------------*/
    #accordion-sponsors .panel-heading, #accordion .panel-heading {
        cursor: pointer;
    }

    .btnalertsponsor, .sponsor-button-disabled .btnAddSponsor {
        display: none;
    }

    .sponsor-button-disabled .btnalertsponsor {
        display: block;
    }

    .sponsor-button-disabled .popover {
        text-align: center;
    }


    /*--------------------------------------------------
    [RESPONSIVE ALIGNMENTS]
----------------------------------------------------*/
    .text-left-not-xs, .text-left-not-sm, .text-left-not-md, .text-left-not-lg {
        text-align: left;
    }

    .text-center-not-xs, .text-center-not-sm, .text-center-not-md, .text-center-not-lg {
        text-align: center;
    }

    .text-right-not-xs, .text-right-not-sm, .text-right-not-md, .text-right-not-lg {
        text-align: right;
    }

    .text-justify-not-xs, .text-justify-not-sm, .text-justify-not-md, .text-justify-not-lg {
        text-align: justify;
    }

    @media (max-width: 767px) {
        .text-left-not-xs, .text-center-not-xs, .text-right-not-xs, .text-justify-not-xs {
            text-align: inherit;
        }

        .text-left-xs {
            text-align: left;
        }

        .text-center-xs {
            text-align: center;
        }

        .text-right-xs {
            text-align: right;
        }

        .text-justify-xs {
            text-align: justify;
        }
    }

    @media (min-width: 768px) and (max-width: 991px) {
        .text-left-not-sm, .text-center-not-sm, .text-right-not-sm, .text-justify-not-sm {
            text-align: inherit;
        }

        .text-left-sm {
            text-align: left;
        }

        .text-center-sm {
            text-align: center;
        }

        .text-right-sm {
            text-align: right;
        }

        .text-justify-sm {
            text-align: justify;
        }
    }

    @media (min-width: 992px) and (max-width: 1199px) {
        .text-left-not-md, .text-center-not-md, .text-right-not-md, .text-justify-not-md {
            text-align: inherit;
        }

        .text-left-md {
            text-align: left;
        }

        .text-center-md {
            text-align: center;
        }

        .text-right-md {
            text-align: right;
        }

        .text-justify-md {
            text-align: justify;
        }
    }

    @media (min-width: 1200px) {
        .text-left-not-lg, .text-center-not-lg, .text-right-not-lg, .text-justify-not-lg {
            text-align: inherit;
        }

        .text-left-lg {
            text-align: left;
        }

        .text-center-lg {
            text-align: center;
        }

        .text-right-lg {
            text-align: right;
        }

        .text-justify-lg {
            text-align: justify;
        }
    }


    /*--------------------------------------------------
    [CLONE|DUPLICATE]
----------------------------------------------------*/
    p i.dashboard {
        margin-right: 5px;
    }

    .xsmall {
        font-size: 70%;
    }

    /*--------------------------------------------------
    [ANALYTICS]
----------------------------------------------------*/
    .chart-container h3 i {
        margin-left: 12px;
        color: var(--brand-color);
    }

        .chart-container h3 i:hover {
            cursor: pointer;
        }

    /*--------------------------------------------------
    LOADING
----------------------------------------------------*/
    .loading-outer {
        position: relative;
        width: 100%;
        height: 200px;
        background-color: #fff;
    }

    .loading {
        position: absolute;
        left: calc(50% - 60px);
        top: 50%;
        z-index: 1;
        width: 120px;
        height: 120px;
        margin: -76px 0 -76px 0px;
        border: 16px solid #f3f3f3;
        border-radius: 50%;
        border-top: 16px solid var(--brand-color);
        -webkit-animation: spin 2s linear infinite;
        animation: spin 2s linear infinite;
    }

    @-webkit-keyframes spin {
        0% {
            -webkit-transform: rotate(0deg);
        }

        100% {
            -webkit-transform: rotate(360deg);
        }
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }


    /*--------------------------------------------------
    COUNTDOWN TIMER
----------------------------------------------------*/

    .container-clock {
        width: 100%;
    }

    #clockdiv {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        column-gap: 0.5em;
    }

        #clockdiv .clockitem {
            min-width: 4em;
            text-align: center;
            text-transform: uppercase;
        }

            #clockdiv .clockitem .clockcount {
                background: rgba(0,0,0,.7);
                padding: 0.10em 0.75em;
                font-size: 1.4em;
                font-weight: 600;
                color: #fff;
            }

            #clockdiv .clockitem .clocklabel {
                padding: 0.25em 1.0em;
                font-size: 0.75em;
                font-weight: normal;
                color: inherit;
            }


    /*--------------------------------------------------
    [RT ADMIN HOME KPIs]
----------------------------------------------------*/

    .admin-kpi-outer li {
        border-bottom: 1px solid rgba(71, 101, 160, 0.3);
        font-size: 14px;
        margin: 0;
        padding: 12px 20px;
    }

        .admin-kpi-outer li i {
            float: right;
            font-style: normal;
        }


/*--------------------------------------------------
    [FAQ IN-CONTEXT]
----------------------------------------------------*/

.faq-wrapper {
    margin: 0 0 20px 0;
}

    .faq-wrapper.alert-clear {
        border: 1px solid var(--brand-color);
    }

    .faq-wrapper h3 {
        font-weight: 700;
    }

    .faq-wrapper .faq-item {
        border-top: 1px solid var(--border-color);
    }

        .faq-wrapper .faq-item:last-child {
            /* border-bottom: 1px solid #ccc; */
        }

        .faq-wrapper .faq-item .faq-h {
            display: flex;
            align-items: center;
            padding: 10px 0;
            cursor: pointer;
        }

            .faq-wrapper .faq-item .faq-h:hover {
                background: #f4f6f7;
            }

            .faq-wrapper .faq-item .faq-h .faq-q {
                flex: 1;
                font-weight: 600;
                margin-right: 10px;
            }

            .faq-wrapper .faq-item .faq-h .faq-i {
                width: 36px;
                height: 36px;
                background: #f4f6f7;
                border-radius: 50%;
                display: flex;
                justify-content: center;
                align-items: center;
                flex-shrink: 0;
                margin: 0 0 0 12px;
            }

            .faq-wrapper .faq-item .faq-h:hover .faq-i {
                background: #fff;
            }

                .faq-wrapper .faq-item .faq-h .faq-i .rotate {
                    transform: rotateZ(180deg);
                }

        .faq-wrapper .faq-item .faq-a {
            padding: 10px 0;
        }

/*--------------------------------------------------
    [RIGHT-HAND SIDE]
----------------------------------------------------*/
            /* MEDIA query for screens md and greater */
            @media (min-width: 768px) {
                .rhs {
        border-left: 1px solid var(--border-color);
        border-radius: 0;
    }
}


/*--------------------------------------------------
    [TABS and NOTIFICATIONS]
----------------------------------------------------*/
/* <span class="badge badge-danger"><i class="fa fa-exclamation"></i></span> */

.tab-v1 .nav-tabs {
    border-bottom: 2px solid var(--brand-color);
    padding-bottom: 2px;
}

    .tab-v1 .nav-tabs a {
        padding: 8px 15px;
    }

    .tab-v1 .nav-tabs > li {
        position: relative;
        box-sizing: border-box;
        padding: 3px 0px 3px 0px;
    }

        .tab-v1 .nav-tabs > li > a {
            box-shadow: 0 0 0 1px var(--border-dark-color);
            border-top-right-radius: 4px;
            border-top-left-radius: 4px;
            margin-right: 5px;
        }

        .tab-v1 .nav-tabs > li a span.badge {
            position: absolute;
            right: 0.3em;
            bottom: 2.2em;
            z-index: 10;
            padding: 4px 8px;
        }

.tab-v1 .badge {
    border-radius: 50%;
}

.tab-v1 .badge-danger {
    color: #fff;
    background-color: #dc3545;
}

@media (min-width: 576px) and (max-width: 992px) {

    .tab-v1 .nav-tabs > li {
        padding: 3px 0px 3px 0px;
        min-width: 33.33%;
    }
}

@media (max-width: 576px) {
    .tab-v1 .nav-tabs > li {
        padding: 6px 0px 6px 0px;
        min-width: 50%;
    }
}

.tab-v1 .nav-tabs > li {
    padding: 6px 0 6px 0;
}


/*--------------------------------------------------
    [FORM]
----------------------------------------------------*/
.sky-form {
    border: 1px solid var(--border-color);
}

html .sky-form .input input[disabled] {
    background-color: #f0f0f0; /* Light gray background to indicate disabled state */
    color: #999; /* Muted text color */
    border-color: #ccc; /* Lighter border */
    cursor: not-allowed; /* Not allowed cursor */
}

html .sky-form .input input[readonly] {
    background-color: #f0fff0; /* Light green background to indicate readonly state */
    color: #999; /* Muted text color */
    border-color: #ccc; /* Lighter border */
    cursor: not-allowed; /* Not allowed cursor */
}

.save-pending, .saving, .saved {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
}

.unsaved-notice {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: block;
    z-index: 9999;
}

@media (max-width: 768px) {

    .unsaved-notice .btn-u-lg {
        min-width: 150px;
    }

}



    /*--------------------------------------------------
    [ALERTS]
----------------------------------------------------*/
    .alert-clear {
        border: 1px solid var(--border-color);
    }

    /*--------------------------------------------------
    [TOGGLE]
----------------------------------------------------*/

    /* Container for the toggle switch and label */
    .toggle-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Wrapper for the toggle switch to ensure full right alignment */
    .toggle-switch-wrapper {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
        margin-bottom: 5px;
        min-height: 40px;
    }

    /* Label for the toggle switch */
    .toggle-label {
        font-size: 16px;
        font-weight: 500;
        margin-right: 10px;
    }

    /* Hidden Checkbox */
    .toggle-input {
        display: none;
    }

    /* Toggle Switch Container */
    .toggle-switch {
        position: relative;
        width: 62px;
        min-width: 62px;
        height: 34px;
    }

    /* Toggle Slider */
    .toggle-slider {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: white;
        border: 2px solid #ccc; /* Border when OFF */
        border-radius: 20px;
        cursor: pointer;
        transition: background-color 0.3s, border-color 0.3s;
    }

    /* ON Text */
    .toggle-text-on {
        opacity: 0;
        transition: opacity 0.3s;
        position: absolute;
        top: 8px;
        left: 6px;
        font-size: 10px;
        line-height: 1.5;
    }

    /* OFF Text */
    .toggle-text-off {
        opacity: 1;
        transition: opacity 0.3s;
        position: absolute;
        top: 8px;
        right: 6px;
        font-size: 10px;
        line-height: 1.5;
    }

    /* Slider Knob */
    .toggle-slider::before {
        content: "";
        position: absolute;
        top: 3px;
        left: 3px;
        width: 24px;
        height: 24px;
        background-color: #ccc;
        border-radius: 50%;
        transition: transform 0.3s;
    }

    /* Toggle ON State */
    .toggle-input:checked + .toggle-switch .toggle-slider {
        background-color: var(--brand-color);
        border-color: var(--brand-color); /* No border when ON */
        color: white;
    }

        .toggle-input:checked + .toggle-switch .toggle-slider::before {
            transform: translateX(30px);
            background-color: #fff;
        }

    .toggle-input:checked + .toggle-switch .toggle-text-on {
        opacity: 1; /* Show ON text when checked */
    }

    .toggle-input:checked + .toggle-switch .toggle-text-off {
        opacity: 0; /* Hide OFF text when checked */
    }

    /*--------------------------------------------------
    [FOR DELETION]
----------------------------------------------------*/

    /*
@media (max-width: 768px) {

    #div-prizes h3.list-group-item-heading .prize-name {
        white-space: nowrap;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
    }

    #div-prizes h3.list-group-item-heading {
        margin-left: 25px;
    }

    #div-prizes .list-group-item-sort {
        margin: 0;
        padding-left: 10px;
    }

    #div-prizes h3.list-group-item-heading .list-group-item-clone {
        margin-right: 5px;
    }

    #div-prizes h3.list-group-item-heading span.prize-rrp {
        margin-left: 0;
        padding-left: 0;
    }

    h3 .btn-qrcode {
        margin: auto !important;
    }

        h3 .btn-qrcode a {
            margin: 0 !important;
        }
}*/


    /* END FOR DELETION */
