/* Global Styles */

html,
body {
    font-family: Montserrat;
    --primary-color: #23276E;
    --primary-light-color: #23276E;
    --hr-color-with-text: #8C8C8C;
    --hr-background-color-with-text: #E6E7E9;
    --primary-red-color: #C8161D;
    --primary-yellow-color: #FFCA28;
    --green-check-color: #236e34ff;
    --background-color: #F6F6F6;
    --background-mid-gray: #E6E7E9;
    --background-gray: #cacbcc;
    --primary-white-color: #ffff;
    --background-color: #F6F6F6;
    --dark-gray: #2E2C2C;
    --light-gray: #8C8C8C;
    --border-radius-null: 0px;
    --letter-spacing-null: 1px;
    --kendo-spacing-0: 0px;
    --kendo-spacing-2: 8px;
    --kendo-spacing-3: 12px;
    --kendo-spacing-4: 16px;
    --kendo-spacing-6: 24px;
    --kendo-spacing-15: 60px;
    --kendo-color-border: rgba(33, 33, 33, 0.12);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    font-family: Montserrat;
}

.main-background {
    background-color: var(--background-color);
}

.primary-text {
    color: var(--primary-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.primary-light-text {
    color: var(--primary-light-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.primary-text-red {
    color: var(--primary-red-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.primary-button-red {
    background-color: var(--primary-red-color);
    color: var(--primary-white-color);
    text-transform: uppercase;
    margin-left: 2%;
    margin-right: 2%;
}

.quick-view-heading {
    font-family: Montserrat;
    text-align: center;
    color: var(--primary-white-color);
    margin-bottom: 15px;
    font-weight: 800;
    font-size: 32px;
    font-style: normal;
}

.form-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-container-small {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
}

@media (max-width: 768px) {
    .form-container {
        flex-direction: column;
    }
    .form-container-small {
        flex-direction: column;
    }
    .quick-view-heading {
        display: none; 
    }
}

.form-container>* {
    width: 100%;
    box-sizing: border-box;
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 8px;
    min-height: auto;
    padding: 8px;
}

.global-flex-styling {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-width: 250px;
    word-break: break-word;
}

.background-nav-bar {
    background-color: var(--primary-color);
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-bar {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.nav-items {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0 20px;
    width: 100%;
    justify-content: space-between;

}

.nav-item {
    font-size: 12px;
    color: var(--primary-white-color);
    text-align: center;
}

@media  (max-width: 768px) {
    .nav-bar {
        overflow: scroll;
    }
    
    .nav-item {
        min-width: 150px;
    }
    
}

.background-landing-page-image {
    background-image: url('/landing-page-one-new.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
}

.background-landing-page-image-full {
    background-image: url('/landing-page-one-new.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw; /* Full viewport width */
    height: 100vh; /* Full viewport height */
    position: absolute; /* Ensure it covers the entire screen */
    top: 0;
    left: 0;
}

.background-water-image {
    background-image: url('/pending-volunteer-page.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
}

.background-jetski-image {
    background-image: url('/volunteer-onboarding-page.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 200px;
}

.background-expense-page-image {
    background-image: url('/ExpenseHeader.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
}


@media (max-width: 768px) {
    .background-landing-page-image {
        background-image: none;
        background-color: var(--background-mid-gray);
    }
    .background-water-image {
        background-image: none;
        background-color: var(--background-mid-gray);
    }
    .hide-mobile-background{
        display: none;
    }
}

.background-white {
    background-color: var(--primary-white-color);
}

.background-mid-gray {
    background-color: var(--background-mid-gray);
}

.full-width {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-width: 300px;
}

.container-no-padding {
    padding: 0;
}

.link-icon {

    display: flex;
    align-items: center;

    .icon {
        width: 12px;
        height: 13px;
        background: url('/icon-links.png');
        background-size: contain;
        margin-right: 15px;
    }

    .text {
        font-size: 18px;
        font-style: normal;
        font-weight: 800;
        line-height: normal;
        text-transform: uppercase;
        color: var(--primary-color);
    }
}

.boat-icon {

    display: flex;
    align-items: center;

    .icon {
        width: 15px;
        height: 16px;
        background: url('/icon-boat.png');
        background-size: contain;
        margin-right: 15px;
    }

    .text {
        font-size: 18px;
        font-style: normal;
        font-weight: 800;
        line-height: normal;
        text-transform: uppercase;
        color: var(--primary-color);
    }
}

.corporate-icon {

    display: flex;
    align-items: center;

    .icon {
        width: 16px;
        height: 17px;
        background: url('/icon-corporate.png');
        background-size: contain;
        margin-right: 15px;
    }

    .text {
        font-size: 18px;
        font-style: normal;
        font-weight: 800;
        line-height: normal;
        text-transform: uppercase;
        color: var(--primary-color);
    }
}

.corporate-icon-small {

    display: flex;
    align-items: center;

    .icon {
        width: 16px;
        height: 17px;
        background: url('/icon-corporate.png');
        background-size: contain;
        margin-right: 15px;
    }

    .text {
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        color: var(--primary-color);
    }
}

.paper-icon {

    display: flex;
    align-items: center;

    .icon {
        width: 13px;
        height: 13px;
        background: url('/icon-paper.png');
        background-size: contain;
        margin-right: 8px;
    }

    .text {
        font-size: 18px;
        font-style: normal;
        font-weight: 800;
        line-height: normal;
        text-transform: uppercase;
        color: var(--primary-color);
    }
}

.news-icon {

    display: flex;
    align-items: center;

    .icon {
        width: 13px;
        height: 13px;
        background: url('/icon-news.png');
        background-size: contain;
        margin-right: 8px;
    }

    .text {
        font-size: 18px;
        font-style: normal;
        font-weight: 800;
        line-height: normal;
        text-transform: uppercase;
        color: var(--primary-color);
    }
}

.volunteer-tasks-icon {

    display: flex;
    align-items: center;

    .icon {
        width: 16px;
        height: 12px;
        background: url('/volunteer-tasks.png');
        background-size: contain;
        margin-right: 8px;
    }

    .text {
        font-size: 18px;
        font-style: normal;
        font-weight: 800;
        line-height: normal;
        text-transform: uppercase;
        color: var(--primary-color);
    }
}

.folder-icon {

    display: flex;
    align-items: center;

    .icon {
        width: 15px;
        height: 13px;
        background: url('/icon-folder.png');
        background-size: contain;
        margin-right: 8px;
    }

    .text {
        font-size: 18px;
        font-style: normal;
        font-weight: 800;
        line-height: normal;
        text-transform: uppercase;
        color: var(--primary-color);
    }
}

.view-all-icon {
    display: flex;
    align-items: center;

    .icon {
        width: 8px;
        height: 13px;
        background: url('/icon-view-all.png');
        margin-left: 13px;
    }

    .text {
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-transform: uppercase;
        color: var(--primary-red-color);
    }
}

.thumbs-up-icon {
    width: 40px;
    height: 40px;
    background: url('/thumbs-up-icon.png');
    background-size: contain;
}

.primary-blue-buttons {
    display: flex;
    height: 48px;
    padding: var(--kendo-spacing-6, 24px) 0px;
    justify-content: center;
    align-items: center;
    gap: var(--kendo-spacing-25, 10px);
    align-self: stretch;
    border-radius: 4px;
    background: var(--Primary-Blue, #23276E);
    color: var(--White, #FFF);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
}

.success-button {
    background: var(--dark-grey, #2E2C2C) !important;
}

.Heading {
    font-family: Montserrat;
    font-size: 32px;
    font-weight: 800;
    line-height: 39.01px;
    text-align: center;
    color: #FFFFFF;
    margin: 80px 0px;
}

.text-normal-heading {
    color: var(--Primary-Blue, #23276E);
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
    margin: 0px;
}

.text-important-heading {
    color: var(--Primary-Red, #C8161D);
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
}

.text-normal {
    color: var(--dark-gray);
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: auto;
    margin: 0px;
}

.text-normal-submit {
    color: var(--Primary-Blue, #23276E);
    text-align: right;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: var(--font-family-font-family, Roboto);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: var(--letter-spacing-null, 0px);
}

.text-normal-center {
    color: var(--Primary-Grey, #8C8C8C);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 24px 24px 0px 24px
}

.blue {
    color: var(--Primary-Blue, #23276E);
}

.column-top-block {
    padding: 12px 24px;
    margin-top: 24px;
}

.column-bottom-block {
    padding: 12px 24px;
    margin-bottom: 60px;
}

.column-block {
    padding: 12px 24px;
}

.container-style {
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
}

.hide {
    display: none !important;
}

.loader-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.k-loader-error {
    color: var(--primary-red-color) !important;
}

.bold-arrow{
    font-weight: 800;
}

.progress-text{
    color: var(--primary-color);
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.k-pager-sizes{
    margin-left: 20px !important;
    display: block !important;
}

.modal.hidden {
    display: none;
  }
  
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  
  .modal-content {
    background-color: #fff;
    padding: 32px;
    border-radius: 8px;
    text-align: center;
    width: 420px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  
  .modal-label {
    display: block;
    margin: 15px 0 5px;
    text-align: left;
    font-size: 14px;
    font-style: normal;
    font-weight: 550;
    line-height: normal;
  }
  
  .modal-agenda-label {
    display: block;
    margin: 25px 0 5px;
    text-align: left;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  
  .modal-select {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .modal-close-button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  
  .hidden {
    display: none;
  }
  
  .modal-content h2 {
    color: var(--Mono-Dark-Grey);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  
  .modal-content p {
    margin-top: 24px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  
  .modal-content button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .modal-header {
    background-color: #fff;
    height: 80px;
    display: flex; 
    justify-content: center; 
    align-items: center; 
    border-bottom: 2px solid var(--primary-color);
    margin: -32px -32px 0 -32px;
    position: relative;
}

.overlay-image {
    max-height: 60px; 
    max-width: 100%;
}

.receipt-image {
    width: calc(33.33% - 10px); /* 3 per row, minus gap */
    margin-right: 10px;
    height: auto;
    border-radius: 8px;
}

.capture-header-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.capture-heading-text-red{
    color: var(--primary-red-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;    
}

.capture-heading-text-blue{
    color: var(--primary-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;       
}

.capture-back-button {
    width: 100%;
    background-color: var(--light-gray);
    color: var(--primary-white-color);
    border: none;
    padding-right: 10px;
    padding-left: 10px;
    border-radius: 5px;
    cursor: pointer;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: bold;
    min-height: 40px;
    text-transform: uppercase;
}

.capture-save-button {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--primary-white-color);
    border: none;
    padding-right: 10px;
    padding-left: 10px;
    border-radius: 5px;
    cursor: pointer;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: bold;
    min-height: 40px;
    text-transform: uppercase;
}

.capture-heading-container{
    padding: 25px 25px 10px 25px;
}

.capture-heading-container-table{
    padding:10px;
}

.capture-sub-headings{
    color: var(--primary-color) !important;
    font-size: 16px;
    font-style: normal !important;
    font-weight: 550 !important;
    line-height: 28px !important; 
    text-transform: uppercase;
}

.capture-sub-heading-value{
    color: var(--primary-color) !important;
    font-size: 16px;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 28px !important; 
}

.loading-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.loader {
    width: 40px;
    height: 40px;
    border: 4px solid #e0e0e0;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media screen and (max-width: 485px) {

    .k-pager-nav {
        display: none !important;
    }

    .thumbs-up-icon {
        width: 24px;
        height: 24px;
    }
}

@media screen and (max-width: 1367px) {
    .thumbs-up-icon {
        width: 24px;
        height: 24px;
    }
}