* {
    margin: 0;
    padding: 0;
}

html {
    margin: 0;
    padding: 0;
}

a, a:visited {
    text-decoration: none;
    color: #000000;
}

    a:hover {
        color: var(--theme-color);
        text-decoration: none;
    }

p {
    margin: 0;
}


/* Container for rows */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
}

/* Row class */
.row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

/* Column classes */
.col {
    flex: 1 0 0%; /* Default behavior: columns will take equal space */
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
}

/* Specific column sizes */
.col-1 {
    flex: 0 0 8.3333%;
    max-width: 8.3333%;
}

.col-2 {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
}

.col-5 {
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
}

.col-8 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
}

.col-11 {
    flex: 0 0 91.6667%;
    max-width: 91.6667%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .col {
        flex: 0 0 100%; /* Stack columns on smaller screens */
        max-width: 100%;
    }

    .col-md-1 {
        flex: 0 0 8.3333%;
        max-width: 8.3333%;
    }

    .col-md-2 {
        flex: 0 0 16.6667%;
        max-width: 16.6667%;
    }

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }

    .col-md-5 {
        flex: 0 0 41.6667%;
        max-width: 41.6667%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        flex: 0 0 58.3333%;
        max-width: 58.3333%;
    }

    .col-md-8 {
        flex: 0 0 66.6667%;
        max-width: 66.6667%;
    }

    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-md-10 {
        flex: 0 0 83.3333%;
        max-width: 83.3333%;
    }

    .col-md-11 {
        flex: 0 0 91.6667%;
        max-width: 91.6667%;
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .col {
        flex: 0 0 100%; /* Stack columns on extra small screens */
        max-width: 100%;
    }

    .col-sm-1 {
        flex: 0 0 8.3333%;
        max-width: 8.3333%;
    }

    .col-sm-2 {
        flex: 0 0 16.6667%;
        max-width: 16.6667%;
    }

    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }

    .col-sm-5 {
        flex: 0 0 41.6667%;
        max-width: 41.6667%;
    }

    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-sm-7 {
        flex: 0 0 58.3333%;
        max-width: 58.3333%;
    }

    .col-sm-8 {
        flex: 0 0 66.6667%;
        max-width: 66.6667%;
    }

    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 83.3333%;
        max-width: 83.3333%;
    }

    .col-sm-11 {
        flex: 0 0 91.6667%;
        max-width: 91.6667%;
    }

    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


table {
    margin: 0;
    padding: 0;
    font-size: 13px;
}

img {
    border: 0 none;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    margin: 0;
    padding: 0;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.clear {
    clear: both;
}

input {
    font-family: Lato, Lato, Arial, Helvetica, sans-serif;
}

body {
    margin: 0px;
    padding: 0px;
    border: 0px;
    font-size: 12px;
    font-family: Lato, Lato, Arial, Helvetica, sans-serif;
    color: #000000;
    background-color: #FFFFFF;
}

div.WholePageDiv {
    margin: 0 auto;
    width: 100%;
}

div.TopColourBar {
    height: 30px;
    background-color: var(--theme-color);
}

div.Logo {
    padding: 30px 30px 20px 30px;
    float: left;
    border: 0px;
}

div.SloganImage {
    padding: 30px 30px 20px 30px;
    float: left;
    border: 0px;
}

div.SloganText {
    font-size: 32px;
    color: #cccccc;
    height: 64px;
    padding: 50px 0px 20px 0px;
    float: left;
}

#LogoDivider {
    border-top: 1px solid #CCCCCC;
    padding-bottom: 5px;
}

#Navigation {
    width: 227px;
    background-color: var(--theme-color);
    color: #FFFFFF;
    font-size: 15px;
}

    #Navigation a {
        color: #FFFFFF;
    }

        #Navigation a:hover {
            color: #7dbfdb;
        }

    #Navigation ul.subnav a:hover {
        color: #7dbfdb;
    }

    #Navigation ul {
        list-style: none;
        margin: 0px;
        padding: 0px;
    }

    #Navigation li {
        list-style: none;
        margin: 0px;
        padding: 0px 0px 0px 15px;
    }

    #Navigation ul li {
        line-height: 28px;
    }

        #Navigation ul li.Active {
        }

    #Navigation ul.subnav {
        display: none;
        list-style: none;
        font-size: 13px;
        padding: 5px 0px 8px 20px;
    }

        #Navigation ul.subnav li {
            line-height: 20px;
        }

            #Navigation ul.subnav li a {
                background-image: none;
                color: #FFFFFF;
                padding-left: 5px;
                font-weight: normal;
            }

    #Navigation ul li.Active span {
        font-weight: bold;
        display: inline;
    }

    #Navigation ul li span {
        cursor: pointer;
        display: inline;
    }

        #Navigation ul li span.NoPlus {
            background-image: url();
            background-repeat: no-repeat;
            padding-left: 25px;
            cursor: default;
            display: inline;
        }

#NavigationTop {
    width: 227px;
    background-color: var(--theme-color);
    background-repeat: no-repeat;
}

#NavigationBottom {
    height: 10px;
    width: 227px;
    background-image: url(../Images/MenuBottom.png);
    background-color: var(--theme-color);
    background-repeat: no-repeat;
    background-position: bottom;
}

div.TopTab {
    position: relative;
    top: -6px;
    display: block;
    float: right;
    padding-right: 10px;
}

div.MiddleText {
    height: 60px;
    background-image: url(../Images/TabMiddle.png);
    background-repeat: repeat-x;
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    color: White;
    padding-top: 5px;
}

div.HelpButton {
    position: relative;
    top: -6px;
    display: block;
    float: right;
    padding-right: 10px;
}

div.FAQsButton {
    position: relative;
    top: -6px;
    display: block;
    float: right;
    padding-right: 10px;
}

div.ContentBoxDivider {
    border: 1px solid var(--theme-color);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding-left: 25px;
    background-image: url(../Images/ContentBoxShading.gif);
    background-repeat: repeat-x;
    background-position: top;
    background-color: #FFFFFF;
}

@media print {
    div.ContentBox {
        border: 1px solid var(--theme-color);
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        padding-left: 25px;
        background-color: #FFFFFF;
    }
}

@media screen {
    div.ContentBoxNoPrint {
        border: none !important;
        padding-left: 25px;
        padding-right: 25px;
        margin-top: 10px;
        /*background-image:url(../Images/ContentBoxShading.gif); background-repeat:repeat-x; background-position:top; background-color:#FFFFFF;*/
    }
}

div.ContentPageTitle {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-right: 10px;
}

    div.ContentPageTitle #MainContent_lblPageTitle {
        font-size: 18px;
        font-weight: bold;
    }

    div.ContentPageTitle #lblPageTitle {
        font-size: 18px;
        font-weight: bold;
    }

.ContentSecondaryPageTitle {
    padding-bottom: 20px;
    font-size: 14px;
    font-weight: bold;
}

div.ContentThirdPageTitle {
    padding-bottom: 5px;
    font-size: 14px;
}

div.BoldCenter24px {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

div.BoldCenter18px {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

div.BoldCenter16PX {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

div.BoldCenter14PX {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

div.Bold18PX {
    font-size: 18px;
    font-weight: bold;
}

div.Bold16PX {
    font-size: 16px;
    font-weight: bold;
}

div.Bold14PX {
    font-size: 14px;
    font-weight: bold;
}

div.Text14PX {
    font-size: 14px;
}

div.Text10PX {
    font-size: 10px;
}

div.Text8PX {
    font-size: 8px;
}

div.CompetitionHeader {
    font-size: 30px;
    font-weight: bold;
    text-decoration: underline;
}

div.CompetitionItemHeader {
    font-size: 20px;
    font-weight: bold;
}

div.Center {
    text-align: center;
}

tr.Control {
    height: 35px;
}

td.ControlLabel {
    width: 180px;
}

div.FAQGlossaryHeader {
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 10px;
}

td.GlossaryLine {
    vertical-align: top;
    padding-bottom: 5px;
    padding-top: 5px;
    border-bottom: solid 1px #AAAAAA;
}

.RoundedBox {
    padding:5px;
    margin-bottom: 2px;
    border: 1px solid #d2d2d2;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}


input[type="text"][disabled] {
    padding: 5px;
    border: 1px solid #d2d2d2;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: #F0F0F0;
}

select[disabled] {
    padding: 5px;
    border: 1px solid #d2d2d2;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: #F0F0F0;
}

.RoundedButton {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #FFFFFF;
    background-color: #0081b8;
    font-weight: bold;
    border-style: none;
    height: 34px;
    /*width: 90px;*/
    padding: 0px 10px;
    border: 1px solid var(--theme-color);
    margin: 1px;
}

.FilterDropDown {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #FFFFFF;
    background-color: var(--theme-color) !important;
    font-weight: bold;
    height: 34px;
    width: 150px;
    text-align: center;
}

    .FilterDropDown option {
        background: white !important;
        color: black !important;
    }

.AnchorButton {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #FFFFFF;
    background-color: var(--theme-color);
    padding: 10px 8px;
    line-height: 36px;
    transition: all 0.3s ease;
    margin-right: 10px;
}

    .AnchorButton:hover {
        cursor: pointer;
        color: #FFFFFF;
        filter: brightness(85%);
    }

input [type="submit"][disabled] {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    color: #FFFFFF;
    background-color: #A0A0A0;
    font-weight: bold;
    border-style: none;
    padding: 6px 18px;
}

.RoundedButtonSmall {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    color: #FFFFFF;
    background-color: var(--theme-color);
    font-size: 12px;
    border-style: none;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
}

.RoundedButton:hover {
    cursor: pointer;
    background-color: var(--theme-color);
    color: white;
}

select:focus-visible {
    border: none !important;
}

.InactiveCheckBox {
    background-color: #CCCCCC;
}

.Seperator {
    border-top: 1px solid #CCCCCC;
    margin-right: 15px;
}

.Hint {
    padding: 10px 12px;
    position: absolute;
    margin-top: -38px;
    width: 266px;
    z-index: 1;
    display: none;
    color: #333;
    font-size: 92%;
}

.HintX {
    width: 14px;
    height: 14px;
    position: absolute;
    right: 17px;
    top: 15px;
    cursor: pointer;
    z-index: 2;
    background-image: url(../Images/HintClose.png);
    background-repeat: no-repeat;
}

.Hint .HintText {
    background-image: url(../Images/HintTop.png);
    background-repeat: no-repeat;
}

.Hint .HintTextExtended {
    background-image: url(../Images/HintTopExtended.png);
    background-repeat: no-repeat;
}

.Hint .HintText p {
    padding: 8px 16px 1px 37px;
    margin: 0px;
}

.Hint .HintTextExtended p {
    padding: 8px 16px 1px 37px;
    margin: 0px;
}

.Hint .HintBottom {
    background-image: url(../Images/HintBottom.png);
    height: 5px;
    background-repeat: no-repeat;
}

span.HintBox {
    background-image: url(../Images/HintQuestionMark.png);
    background-repeat: no-repeat;
    padding-top: 5px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    background-position: center;
    cursor: pointer;
    display: inline-block;
}

    span.HintBox p {
        display: none;
    }

.LoginCode {
    font-style: italic;
    font-size: 12px;
    color: #999999;
}

@media print {
    table.MainGrid {
        width: 98%;
        border: 0;
        padding: 15px;
    }
}

@media screen {
    table.MainGrid {
        width: 98%;
        border: 0;
        background: white;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        border: 1px solid #EEEEF0;
        padding: 15px;
    }
}

table.MainGrid th {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 3px;
    padding-right: 3px;
    text-align: left;
}

table.MainGrid td {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 3px;
    padding-right: 3px;
    text-align: left;
}

table.MainGrid tr:nth-child(2n+2) {
    background-color: #FBFBFB;
}

table.MainGrid tr:hover {
    background-color: #d2d2d2;
}

td.ProgressSize, div.ProgressCell {
    width: 15px;
    height: 15px;
}

div.ProgressCell {
    background-color: #dd2222;
    display: none;
    text-align: center;
    vertical-align: middle;
}

table.TableWithGridlines {
    width: 100%;
    border-collapse: collapse;
}

    table.TableWithGridlines td {
        vertical-align: top;
        padding: 2px;
        border-top: 1px solid #d2d2d2;
        border-bottom: 1px solid #d2d2d2;
        border-left: 1px solid #d2d2d2;
        border-right: 1px solid #d2d2d2;
    }

@media print {
    .NoPrint {
        display: none;
    }
}

@media screen {
    .NoScreen {
        display: none;
    }
}

th {
    position: sticky;
    top: 0px;
    background: white;
}

#signatureparent {
    text-align: center;
}

/*popup css*/
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-wrap {
    background: #fff;
    border-radius: 5px;
    max-width: 480px;
}

.popup-head {
    padding: 10px;
    background: #a52a2a;
    color: #fff;
    border-radius: 4px 4px 0 0;
    position: relative;
}

    .popup-head .close {
        position: absolute;
        color: #fff;
        right: 0;
        top: 0;
        width: 20px;
        text-align: center;
        font-size: 20px;
    }

.popup-body {
    padding: 15px;
    min-height: 60px;
    font-size: 1rem;
}

.popup-foot {
    padding: 15px;
    border-top: 1px solid #ccc;
    text-align: right;
}







/* --------------New Design--------------------*/


.section_title {
    margin-bottom: 40px;
}

    .section_title h2 {
        color: #333333;
        font-size: 25px;
        font-weight: 700;
        letter-spacing: 1.8px;
        text-transform: uppercase;
    }

.brand_border .fa.fa-minus {
    color: #fff;
    font-size: 8px;
    height: 2px;
    background: #F8C01B none repeat scroll 0 0;
    width: 100px;
}

.brand_border .fas.fa-handshake {
    font-size: 14px;
    color: #000000;
}


.section_title p {
    color: #333333;
    font-size: 14px;
    line-height: 25px;
    padding: 14px 0;
}

.choose_us .section_title {
    margin-top: 45px;
}

#service .single_service {
    padding: 32px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

    #service .single_service:hover {
        box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.4);
    }

#service .icon {
    border: 1px solid #666;
    border-radius: 5%;
    color: #333333;
    font-size: 35px;
    line-height: 65px;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    width: 70px;
}

#service .single_service .single_service-left {
    padding-right: 25px;
}

.single_service-heading {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
}

.single_service-body p {
    font-size: 13px;
    line-height: 25px;
}

.single_service-left {
    display: table-cell;
    vertical-align: top;
}

.single_service-body {
    color: #333333;
    display: table-cell;
    vertical-align: top;
}

.hvr-curl-top-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
}

#service .single_service:hover {
    background: #F8C01B none repeat scroll 0 0;
}

div#MainContent_pnlOverview a {
    display: inline-block;
    background: #ffffff;
    height: auto;
    box-shadow: 5px 8px 12px 0px rgba(0,0,0,0.47);
    margin: 15px;
    transition: .3s;
}

div#MainContent_pnlOverview img {
    width: auto;
    padding: 6px !important;
}

div#MainContent_pnlOverview a:hover {
    background: rgb(102,124,65);
    box-shadow: none;
    transform: scale(0.95,0.95);
}

div#MainContent_pnlOverview img:hover {
    background: none;
}

.profile-name {
    float: right;
    color: #fff !important;
    margin-right: 20px;
    margin-top: 7px;
    font-weight: 600;
    font-size: 15px;
}

/* Add these styles to your CSS file */
.tab-navigation {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    overflow: hidden;
}

.tab-button {
    padding: 10px 20px;
    margin-right: 5px;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
    white-space: nowrap;
}

    .tab-button.active {
        background: var(--theme-color, var(--theme-color));
        color: white;
    }

.overflow-menu {
    position: relative;
    display: none;
}

.overflow-button {
    padding: 10px 15px;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.overflow-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 5px;
    min-width: 200px;
    z-index: 1000;
}

    .overflow-content a {
        display: block;
        padding: 10px 15px;
        text-decoration: none;
        color: #333;
    }

        .overflow-content a:hover {
            background: #f5f5f5;
        }
