/*---- eb edits - beginning -----*/

/*----- Notifications ----*/

.notification-wrapper {
        z-index: 5000;
        position: relative;
        display: inline-block;
    }

    /* Enhanced version of your original button */
    .Notifications {
        display: flex;
        height: 40px;
        width: 40px;
        margin: 10px 0px 10px 10px;
        border-radius: 25px;
        align-items: center;
        justify-content: center;
    }


    /* Notification badge using the data attribute */
    .Notifications[data]:not([data=""]):not([data="0"])::before {
        content: attr(data);
        position: absolute;
        top: 4px;
        right: -6px;
        background: #ff4757;
        color: white;
        border-radius: 50%;
        width: 22px;
        height: 22px;
        font-size: 11px;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid white;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); }
    }

    /* Dropdown container */
    .notification-dropdown {
        position: absolute;
        right: 0;
        background: white;
        border-radius: 12px;
        box-shadow: var(--boxShadow1);
        width: 350px;
        max-height: 400px;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px) scale(0.95);
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 1000;
        border: 1px solid var(--primaryBlue);
    }

    .notification-dropdown.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    /* Triangle pointer */
    .notification-dropdown::before {
        content: '';
        position: absolute;
        top: -8px;
        right: 20px;
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid white;
    }

    /* Dropdown header */
    .dropdown-header {
        padding: 16px 20px;
        border-bottom: 1px solid var(--midGrey);
        background: #f8f9fa;
        border-radius: 12px 12px 0 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .dropdown-header h3 {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
        color: var(--primaryBlue);
    }

    .clear-all {
        color: var(--darkGrey);
        font-size: 14px;
        cursor: pointer;
        text-decoration: none;
    }

    .clear-all:hover {
        text-decoration: underline;
    }

    /* Notification list */
    .notification-list {
        max-height: 300px;
        overflow-y: auto;
        padding: 0;
    }

    .notification-item {
        padding: 16px 20px;
        border-bottom: 1px solid #f1f3f4;
        cursor: pointer;
        transition: background-color 0.2s ease;
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

    .notification-item:hover {
        background-color: var(--hoverGrey);
    }

    .notification-item:last-child {
        border-bottom: none;
    }

    .notification-item.unread {
        background-color: #f8ffff;
        border-left: 3px solid #00cec3;
    }

    .notification-icon {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        flex-shrink: 0;
    }

    .notification-icon.sale { background: #e3fded; color: #0ca854; }
    .notification-icon.order { background: #f3e5f5; color: #7b1fa2; }
    .notification-icon.reminder { background: #fff3e0; color: #f57c00; }
    .notification-icon.payment { background: #e8f5e8; color: #388e3c; }
    .notification-icon.comment { background: #fce4ec; color: #c2185b; }
    .notification-icon.system { background: #f5f5f5; color: #6c757d; }

    .notification-content {
        flex: 1;
    }

    .notification-title {
        font-weight: 500;
        color: var(--primaryBlue);
        margin: 0 0 4px 0;
        font-size: 14px;
        line-height: 1.4;
    }

    .notification-text {
        color: var(--darkGrey);
        font-size: 13px;
        margin: 0 0 6px 0;
    }

    .notification-time {
        color: var(--midGrey);
        font-size: 12px;
    }

    /* Empty state */
    .empty-notifications {
        padding: 40px 20px;
        text-align: center;
        color: #6c757d;
    }

    .empty-notifications i {
        font-size: 48px;
        margin-bottom: 16px;
        opacity: 0.5;
    }

    /* Scrollbar styling */
    .notification-list::-webkit-scrollbar {
        width: 6px;
    }

    .notification-list::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .notification-list::-webkit-scrollbar-thumb {
        background: #c1c1c1;
        border-radius: 3px;
    }

    .notification-list::-webkit-scrollbar-thumb:hover {
        background: #a8a8a8;
    }

    /* Responsive design */
    @media (max-width: 480px) {
        .notification-dropdown {
            width: 300px;
            right: -50px;
        }
    }

    /* Demo styling */
    .demo-section {
        margin: 40px 0;
        padding: 20px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }


/*--- Varibales ---*/

:root {
    --primaryBlue: #141459;
    --secondaryBlue: #00cec3;
    --activeBlue: #eef7ff; 
    --hoverGrey: #f8f9fa;
    --darkOver: rgba(0, 0, 0, 0.7);
    --lightOver: rgba(255, 255, 255, 0.7);
    --white: #FFF;
    --uniGrey: #ebebeb;
    --midGrey: #c7c7c7;
    --darkGrey: #696969;
    --close: #e3554f;
    --open: #42C280;
    --warn: #f5a639;
    
    /*--- Shadows --*/
    --boxShadow1: 0 10px 40px rgba(0, 0, 0, 0.1);
    --boxShadow2: 0 0px 10px rgba(0, 0, 0, 0.2);
}

.subForm2 {
    border-radius: 10px;
    box-shadow: var(--boxShadow2)!important;
}

/** TEXT **/

.txt_White {
    color: #FFF!important;
}

.primaryTxt {
    color:var(--primaryBlue);
}

.disbaled_txt {
    color: var(--midGrey)!important;
}

/** BORDERS **/

.border_PBlue {
    border: 1px solid var(--primaryBlue);
}

.border_SBlue {
    border: 1px solid var(--secondaryBlue);
}

.border_uniGrey {
    border: 1px solid var(--uniGrey);
}

.border_midGrey {
    border: 1px solid var(--midGrey);
}

/** BACKGROUNDS **/

.bg-primary {
    background: var(--primaryBlue);
}

.bg-secondary {
    background: var(--secondaryBlue);
}

.bg-hoverGrey {
    background: var(--hoverGrey);
}

.bg-uniGrey {
    background: var(--uniGrey);
}

.bg-midGrey {
    background: var(--midGrey);
}

.bg-darkGrey {
    background: var(--darkGrey);
}


html, body {
    max-width: 100%;
    overflow-x: hidden;
    height: 100%;
}

.table-condensed .available {
    background: none;
}

body {
    font-family: 'Helvetica', sans-serif; 
    background-color: #FFF;
    font-size: 0.9em;
    color: var(--darkGrey);
    font-weight: 500;
}

body::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
body {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

input:disabled {
  background-color: #fafafa!important;
  color: gray;
}

.media-element::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.media-element {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.media-scroller::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.media-scroller {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.Headings::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.Headings {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

a, a:visited, a:hover, a:active {
    text-decoration: none;
    color: inherit;
}

b {
    font-weight: 800;
}

br {
    line-height: 0.5; !important
}

hr {
    margin-top: 10px;
    margin-bottom: 10px;
}

p {
    font-weight: 200;
}

input {
    color: var(--darkGrey);
    border: none;
}

input:focus {
    outline: none !important;
}

input:active {
    outline: none !important;
}

.inputUnit {
    background: var(--uniGrey);
    margin-top: 5px;
    margin-left: -5px;
    padding: 5px 10px 0px 10px;
    border-radius: 0px 5px 5px 0px;
    border: 1px solid var(--midGrey);
    color: #a2a2a2;
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: var(--secondaryBlue);
    background-color: var(--secondaryBlue);
}

.custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 .2rem rgba(0, 226, 255, 0.25);
}

select {
    width: 100%;
    padding: 6px 5px 6px 5px;
    margin-bottom: 10px;
    background: #ffffff;
    border-radius: 5px;
    border: solid 1px #CCC;
    font-size: 1em;
    color: var(--darkGrey);
    margin-top: 5px;
    margin-bottom: 0px;
}

select:disabled {
    -webkit-appearance: none;
    background: #f7f7f7;
    opacity: 1;
}

select:active {
    -webkit-appearance: none;
    border: none;
    outline: none;
}

.dropdown-menu {
    padding: 3px;
    min-width: 8rem;
}

.dropdown-item {
    font-size: 0.85em;
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: 1px solid var(--uniGrey);
}

.hide {
    display: none;
}

.butPri {
    background: var(--primaryBlue);
    color: var(--white);
    outline: none;
}

.butPri:hover {
    background: var(--secondaryBlue);
    color: var(--white);
    outline: none;
}

.butPri:active {
    background: var(--secondaryBlue);
    color: var(--white);
    outline: none;
}

.tooltip {
    font-size: 12px;
    font-family: Arial, sans-serif;
    color: var(--primaryBlue);
}

.tooltip-inner {
    background-color: var(--secondaryBlue);
    color: #fff;
    border-radius: 4px;
    padding: 4px 8px;
    max-width: 200px;
    text-align: center;
}

.tooltip .arrow::before {
    border-top-color: var(--secondaryBlue);
    border-bottom-color: var(--secondaryBlue);
}

.Pelem {
    font-size: 16px;
}

#MapHeight p {
    font-weight: 400;
}

#MapHeight a {
    font-weight: 400;
}

#StatusTable td:nth-child(2) {
    font-size:1.2em;
    font-weight: 600;
    color: var(--darkGrey);
}

#StatusTable th {
    font-size:1em;
    font-weight: 600;
    color: var(--darkGrey);
}

#wel {
    padding: 15px 0px;
}

.Hcont {
    height: 60px;
    padding: 0px 40px;
    width: 100%;
}

.HomeImg {
    display: inline-flex;
}

.HomeImgM {
    display: none;
}

.HomeImg img {
    height: 36px;
    margin: 12px 0px
}

.NavButs {
    float: right;
    display: inline-flex;
    text-align: right;
    cursor: pointer;
}

.NaPos {
    text-align: right;
    margin: 2px 10px;
    height: 100%;
    vertical-align: middle;
}

.ImageSelect {
    max-width: 250px;
}

.PimgP {
    height: 40px;
    width: 40px;
    margin: 10px 0px 10px 10px;
    background-color: #ebebeb;
    border-radius: 25px;
    float: right;
    overflow: hidden;
    background-image: url(Assets/media/image/Profile_pic@2x.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.PimgP img {
    height: 100%;
    width: 100%;
    border-radius: 25px;
    object-fit: cover;
}


.InfoHead {
    font-weight: 200;
    color: #03AC7D
}

.LAnim {
    text-align: center;
}

.InfoBox {
    transition: all 0.8s ease;
    overflow: hidden;
}

.closeX {
    display: block;
    text-align: center;
    height: 30px;
    width: 30px;
    border-radius: 15px;
    margin-top: -37px;
    padding-top: 3px;
    float: right;
}

.closeInfo {
    animation: CloseInfo;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.openInfo {
    animation: OpenInfo;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.closeX:hover{
    cursor: pointer;
}

.Headings {
    margin-top: 10px;
    border-bottom: 1px solid var(--primaryBlue);
    overflow-x: auto;
}

.Bottom {
    margin-top: 20px;
    border-top: 1px solid #03AC7D;
}

.HeSc {
    margin-left: -5px;
}

#AppUpdates {
    overflow: hidden;
}

.head {
    display: inline-flex;
    font-weight: 800;
    padding-right: 20px;
    font-size: 26px;
    color: #EBEBEB;
    margin-bottom: 5px;
    user-select: none;
}

.headActive {
    color: var(--primaryBlue);
    transition: all 0.4s ease-in;
}

@media (hover: hover) and (pointer: fine) {
  .head:hover { 
        color: var(--secondaryBlue);
        cursor: pointer;
        transition: all 0.3s ease-in;
    }
}

.scrollOne {
    position: fixed;
    right: 0;
    background: #acffa5;
    border: 1px solid #23C162;
    color: #156a37;
    width: 100px;
    height: 40px;
    text-align: center;
    padding: 7px;
    z-index: 2000;
}

.scrollTwo {
    position: fixed;
    right: 0;
    background: #f5ba6b;
    border: 1px solid #d17701;
    color: #a75300;
    width: 100px;
    height: 40px;
    text-align: center;
    padding: 7px;
    margin-right: 100px;
    z-index: 2000;
}

.Scroll {
    scroll-behavior: smooth;
}

.fixed {
    position: fixed;
    z-index: 1000;
    background: #FFF;
}

.scrfix {
    position: fixed;
    z-index: -1;
    margin-top: 20px;
}

.BR{
    border: 1px solid red;
}

/*--------------- Loading Spinner ------------*/

/* The overlay that covers the whole page */
#loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent background */
    z-index: 10999; /* High z-index to stay above other content */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Spinner animation */
.spinner {
    border: 2px solid rgba(255, 255, 255, 0);
    border-top: 2px solid var(--primaryBlue);
    border-right: 2px solid var(--primaryBlue);
    border-bottom: 2px solid var(--primaryBlue);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/*--------------- Modal Custom ------------*/

body.modal-open {
    overflow: hidden;
}

.modal-body{
    padding: 15px;
}

.modal-backdrop {
    background-color: rgb(14, 36, 111);
}

.ModCust {
    border: none;
    border-radius: 10px;
    border: 1px solid var(--primaryBlue);
}

.MInfoHead {
    font-weight: 600;
    padding-bottom: 15px;
    color: var(--primaryBlue);
}

.LLhead {
    display: flex;
    width: 100%;
    background: #FFF;
    line-height: 15px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-weight: 600;
    font-size: 20px;
    color: var(--primaryBlue);
}

.MoHead {
    font-weight: 600;
}

.ModFoot {
    display: flex;
    border-top: 1px solid #EBEBEB;
}

.socLogIn span{
    font-family: 'Helvetica', sans-serif; 
}

.bounce {
    animation: fadeInApp;
    animation-delay: 0s;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

/**--- Transaction ---**/

.joinLine {
    border-top: 1px solid var(--primaryBlue);
    height: 0px;
    top: 50%;
    left: 0;
    right: 0;
}

.joinLineIcon {
    margin-top: -12px;
}

.joinLineIcon i {
    padding: 5px 8px;
    border-radius: 5px;;
    background: #FFF;
    font-size: 0.8em;
    color: var(--primaryBlue);
    border: 1px solid var(--primaryBlue);
}

.tableDetails > tbody > tr > td {
    height: 40px!important;
    color: var(--darkGrey);
}

.docDown {
    padding: 1em;
    border: 1px solid var(--midGrey);
}

/*----- International Phone Numbers -----*/

.iti {
    height: auto!important;
}

/*----- Oops Max Pax -----*/

.OopsB {
    height: 150px;
    width: 100%;
    border-radius: 10px;
    margin: 10px 0px;
    padding: 10px;
    color: #FFF;
    background-color: var(--midGrey);
    cursor: pointer;
}

.UpAccount {
    background-image: url(Assets/media/image/AgButton.png);
    background-size: cover;
}

.AnnPay {
    border: 1px solid #FFF;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    background-color: #FFF;
    color: var(--primaryBlue);
}

/*-- Section Scroll --*/

.media-scroller {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
}

.media-element {
    scroll-behavior: smooth;
}

.snaps-inline {
    scroll-snap-type: inline mandatory;
    scroll-padding-inline: 0px;
}

.snaps-inline > * {
    scroll-snap-align: center;
}

.Fcontent {
    color: #FFF;
    margin-top: 10px;
}

.AppDown {
    border-radius: 10px;
    margin: 20px 0px;
    text-align: center; 
    animation: fadeInApp;
    animation-delay: 0s;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.AppList {
    position: relative;
    margin: 20px 0px;
}

#tble {
    
}

.table > tbody > tr > td {
    vertical-align: middle;
    height: 60px;
}

.table > tbody > tr > td:first-child {
    width: 50px;
}

.table > tbody > tr > td:last-child {
    text-align: right;
}

.table > tbody > tr > th:last-child {
    text-align: right;
}

.tab-sub {
    font-size: 12px;
    margin-top: -5px;
}

.btnDown {
    background: #03AC7D;
    padding: 5px 10px;
    color: #FFFFFF
}

.UpText {
    text-align: left;
    padding: 25px 10px 0px;
}

.UpText h6 {
    font-weight: 600;
}

.UpText p {
    font-size: 11px;
}

#UpPImg span {
    font-size: 13px;
}

.off {
    display: none;
}

.offx {
    display: none;
}

.taboff {
    display: none;
}


.NoApp {
    position: relative;
    border-radius: 10px;
    border: 1px dashed #c9c9c9;
    color: #c9c9c9;
    font-weight: 200;
    height: 360px;
    font-size: 16px;
    margin-top: 20px;
    animation: fadeInApp;
    animation-delay: 0s;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.NoAppTxt {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

.update {
    display: block;
    height: auto;
}

.UpAv {
    position: absolute;
    border-radius: 5px;
    border: 1px solid #FFF;
    padding: 3px 6px;
    color: #FFF;
    font-weight: 400;
    font-size: 12px;
    right: 10px;
    background-color: #FF4500;
}

.UpText {
    height: 150px;
    overflow: hidden;
}

.fadex {
    position: relative;
    margin-top: -50px;
    height: 60px;
}

.AppButs {
    text-align: center;
    border-radius: 5px;
    font-size: 14px;
    padding: 7px;
    margin: 10px;
}

.AppButs:hover {
    cursor: pointer;
}

.DoAppButs {
    border: 1px solid #FFF;
    box-shadow: 0px 0px 14px -8px #000000;
    border-radius: 5px;
    background: #FFF;
    font-size: 14px;
    font-weight: 400;
    padding: 5px;
    margin: 10px;
}

.DoAppButs:hover {
    cursor: pointer;
}

.DoAppButs:active {
    opacity: 90%;
}

.TelInput input {
    height: 38px!important;
}

.price {
    border-radius: 5px 0px 0px 5px !important;
}

.cm2 {
    border-radius: 0px 5px 5px 0px !important;
    margin-left: -1px;
    height: 31px;
    background: var(--uniGrey);
    border: 1px solid var(--midGrey);
    margin-top: 5px;
    text-align: center;
    font-weight: 300;
    font-size: 13px !important;
    padding: 5px;
    color: var(--darkGrey);
}

.iti {
    width: 100%;
    margin: 5px 0px;
    height: 38px;
}

.AppButs:hover {
    
}

.DAppButs {
    display: inline-block;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    padding: 5px 10px;
    background: #F76239;
    color: #FFF;
    font-weight: 400;
    width: auto;
    user-select: none;
}

.DAppButs:hover {
    cursor: pointer;
}

.DAppButs:active {
    filter: brightness(85%);
}

.spcr {
    width: 10px;
    max-width: 10px;
}

.MAppButs {
    display: inline-grid;
    text-align: center;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    padding: 7px 10px;
    width: 50%;
    font-weight: 400;
    margin: 15px 0px 0px 0px;
    user-select: none;
    font-weight: 200;
}

.MAppButs:hover {
    cursor: pointer;
}

.MAppButs:active {
    filter: brightness(85%);
}

.FacebookLog {
    background-color: #495fd9;
    color: #FFF;
    margin: 5px 0px; 
    padding: 10px;
}

.GoogleLog {
    background-color: #cb3f2d;
    color: #FFF;
    margin: 5px 0px;
    padding: 10px;
}

.xsubmit {
    opacity: 0.5; !important
}

.submit {
    width: 100%;
    font-weight: 200;
}

#UpgradeAccount {
    padding-top: 8px;
}

#LogIn {
    background-color: #FFF;
    color: var(--primaryBlue);
    padding-left: 10px;
    padding-right: 10px;
    margin: 10px 5px;
    border: 1px solid var(--primaryBlue);
    padding-top: 8px;
}

#CreateAccount {
    background-color: var(--primaryBlue);
    color: #FFF;
    padding-left: 11px;
    margin: 10px 5px;
    border: 1px solid var(--primaryBlue);
    padding-top: 8px;
}

.TCbox {
    display: flex;
    border-radius: 5px;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #CCC
}

#TcCheck {
    margin: 0px 10px;
}

#TcCheck input {
    cursor: pointer;
}

#TcTxt {
    line-height: 20px;
    font-size: 12px;
    margin-left: 5px;
}

#TnCTxt {
    height: 300px;
    padding: 15px;
    font-size: 14px;
    border: 1px solid var(--midGrey);
    border-radius: 5px;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    box-shadow: 0px 0px 20px -14px #000000 inset;
}

#TnCTxt::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}

/*--- Sub-Naviagtion ----*/



/*--- Bottom Info ----*/

.botInf {
    margin-bottom: 30px;
    padding: 10px;
    text-align: right;
    font-size: 10px;
    color: #c4c4c4;
}

/*--- Themify ----*/

.FControls .ti-trash:hover {
    color: #cb0000;
    cursor: pointer;
}

/*--- Tabs ----*/

.NfBg {
    display: flex;
    height: 200px;
    max-height: 200px;
    background-color: #FFF;
    border: 1px solid var(--primaryBlue);
    /*box-shadow: 0px 0px 14px -8px #000000;*/
}

#MobNo {
    display: none;
}

.MobNo {
    color: var(--midGrey);
    text-align: left;
    font-family: 'Helvetica', sans-serif;
    padding: 20px;
    border: 1px solid var(--midGrey);
}

.HovHilite:hover {
    box-shadow: 0px 0px 14px -7px var(--darkGrey);
}

.HovHilite:hover h6 {
    color: var(--secondaryBlue);
}

.HovHilite:hover span {
    color: var(--secondaryBlue);
}



.ButHilite:hover {
    cursor: pointer;
    background-color: var(--uniGrey);
}

.FImg {
    overflow: hidden;
    border-radius: 10px 10px 10px 10px;
}

.FImg img {
    width: 100%;
}

.PInfo {
    padding: 0.5em;
    text-align: left;
    color: var(--primaryBlue);
}

.PInfo h6 {
    color: var(--midGrey);
}

.PControls {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    color: va(--White)
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    padding: 5px 10px;
    background-color: var(--primaryBlue);
    border-radius: 0px 0px 9px 9px;
}

.FCard {
    margin-left: auto;
    font-size: 15px;
    padding: 3px 0px;
}

.FCard div {
    display: inline-flex;
    padding: 0.3em;
}

.FCard div:hover {
    color: var(--secondaryBlue);
}

.Procell {
    cursor: pointer;
    transition: all 1.5s linear;
}

.FButts {
    display: flex;
    flex-direction: column;
    flex: 1;
    border-radius: 10px;
    font-size: 30px;
}

.FAdd {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.PDel {
    cursor: pointer;
    padding: 8px;
    z-index: 10;
    position: relative;
}

/*---- Upgrade Account -----*/

.AgCont {
    background-image: url(Assets/media/image/Gradient_colour_v.png);
    background-size: cover
}

/*---- Profile Edit -----*/

.proCard {
    border-radius: 10px;
    margin-top: 20px;
    border: 1px solid var(--midGrey);
}

.leftNav {
    margin-top: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-right: 1px solid var(--primaryBlue);
}

.leftNav .navItem{
    color: #EBEBEB; 
    padding: 5px 0px;
    font-size: 1.3em;
}

.leftNav .navItem:hover {
    color: var(--secondaryBlue);
    cursor: pointer;
}

.leftNav > .active {
    color: var(--primaryBlue);
}


.card-body {
    color: var(--darkGrey);
}

.PImg {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    height: 180px;
    width: 180px;
    border-radius: 50%;
    overflow: hidden;
    background-image: url(Assets/media/image/Profile_pic@2x.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.PImg img {
    height: 100%;
    object-fit: cover;
}

.uploadFile {
    height: 150px;
    overflow: hidden;
    border: 1px solid var(--midGrey);
    border-radius: 5px;
    /*background-image: url(Assets/media/image/Profile_pic@2x.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;*/
}

.uploadFie img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    box-shadow: none;
}

.upFile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--midGrey);
    border: 2px dashed var(--uniGrey);
    height: 100%;
    border-radius: 8px;
}

.uploadFile .Uploaded {
    display: none;
}

.fileUploaded {
    background: var(--hoverGrey);
    box-shadow: inset 0 0 5px #CCC;
    text-align: center;
}

.fileUploaded img {
    box-shadow: 0px 0px 4px 2px #ccc;
}

.fileButtons {
    position: absolute!important;
    bottom: 0;
    right: 0;
}

.missingFile {
    position: absolute!important;
    right: 0;
    top: 0;
    font-size: 0.65em!important;
    background: var(--danger);
    padding: 2px 7px;
    color: #FFF;
    border-radius: 0px 0px 0px 4px
}

.LightBut {
    border: 1px solid var(--primaryBlue);
    color: var(--primaryBlue);
    margin: 20px 0px 0px 0px;
    padding: 5px
}

#UploadImg {
    display: none;
}

.DragArea.active {
    opacity: 0.4;
    border: 2px dashed var(--darkGrey);
    box-shadow: 0px 0px 18px -4px #000000 inset;
}

.InPut {
    margin-top: 8px;
}

.InPut div {
    font-weight: 500;
    font-size: 14px;
}

.InPut input{
    width: 100%;
    border-radius: 5px;
    border: 1px solid var(--midGrey);
    padding: 5px 8px;
    margin-top: 5px;
}

::placeholder{
    color: var(--midGrey);
    font-weight: 400;
}

::selection {
    background-color: var(--secondaryBlue);
    color: #FFF;
}

.FPassword {
    font-size: 11px;
    margin: 6px 2px;
    font-style: italic;
    color: var(--darkGrey);
    cursor: pointer;
}

.viewPass {
    position: absolute;
    margin-left: -28px;
    margin-top: 14px;
    color: #acacac;
}

.eyeSee {
    color: #fc932a;
}

.viewPass:hover {
    cursor: pointer;
}

.card {
    padding: 0px;
}

.card-header {
    padding: 5px 10px;
}

.card-header div:first-child {
    font-weight: 600;
}

.card-header div:nth-child(2) {
    opacity: 0.8;
    font-size: 0.8em;
    padding: 2px;
}

.CardButs {
    background-color: var(--primaryBlue);
    color: #FFF;
    margin: 20px 0px 0px 0px;
    outline: none!important;;
}

.CardButs:hover {
    background-color: var(--secondaryBlue);
    outline: none!important;
}


/*--------- Sheperd --------*/

.InfoHelp {
    padding: 10px;
}

.cancShep {
    background-color: #FFFFFF !important;
    color: var(--midGrey) !important;
    box-shadow: 0px 0px 0px 1px var(--midGrey) inset !important;
    font-weight: 200;
}

.nxtShep {
    background-color: var(--primaryBlue) !important;
    color: #FFFFFF !important;
    font-weight: 200;
}

.Stp1Map {
    margin-left: 20px;
}

.WelcImg {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.infTab {
    width: 100%;
    margin-top: 10px;
}

.infTab td {
    padding: 10px;
}

.infTab td span {
    padding-left: 10px;
    vertical-align: middle;
}

.infoBoxSmall {
    font-size: 0.75em !important;
    margin-top:5px;
    background-color:#ddedff;
    color:#13437b;
    padding:5px 10px; 
    border-radius:5px;
    width: fit-content;
}

.inputInfoBox {
    font-size: 0.75em !important;
    background-color:#ddedff;
    color:#13437b;
    margin-top: -6px;
    padding: 10px 8px 5px 8px;
    border-radius: 0px 0px 5px 5px;
    z-index: 0;
}

.CreditInfo {
    font-size: 0.9em !important;
    margin-top:5px;
    background-color:#ffe4a8;
    color:#794100;
    padding:5px 10px; 
    border-radius:5px;
    width: fit-content;
}

.CreditSalesContainer{
    
}

.grayscale {
    filter: grayscale(100%);
    opacity: 0.3;
}

.inline-flex {
    display: inline-flex !important;
}

.Stp4Map {
    margin-left: -20px;
}

.Stp8Map {
    margin-top: 23px;
    margin-left: 20px;
}

.Stp2Map {
    margin-top: 20px;
}

.shepherd-button {
    padding: 5px 20px !important;
    border-radius: 5px !important;
}

/*----- Adverts -------*/

.AdCont1 {
    width: 50%;
    background-color: var(--uniGrey);
    border-radius: 10px 10px 0px 0px;
    margin: auto;
}

.AdCont1 img {
    width: 100%;
}

.Ad1 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

.closeAd {
    position: absolute;
    padding: 10px;
    cursor: pointer;
    color: #FFF;
}

/*----- Copywright -------*/

.copywright {
    position: fixed;
    bottom: 0;
    right: 0;
    color: var(--midGrey);
    font-size: 13px;
    padding: 10px;
}

.loadDown {
    display: none;
}

.loader{
      display: block;
      text-align: center;
      position: relative;
      height: 6px;
      margin: 22px 20px;
      border: 1px solid rgba(255, 255, 255, 0.5);
      border-radius: 10px;
      overflow: hidden;
    }
    .loader::after {
      content: '';
      width: 40%;
      height: 100%;
      background: #ffffff;
      position: absolute;
      top: 0;
      left: 0;
      box-sizing: border-box;
      animation: animloader 2s linear infinite;
    }
    
    @keyframes animloader {
      0% {
        left: 0;
        transform: translateX(-100%);
      }
      100% {
        left: 100%;
        transform: translateX(0%);
      }
    }

.loader2 {
    width: 12px;
    height: 12px;
    border: 1px solid #A3A3A3;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    } 

.loader3 {
    width: 10px;
    height: 10px;
    border: 1px solid #ffffff;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    } 


.Mclose {
    color: var(--primaryBlue);
}

.Mopen {
    background: var(--open);
    color: #FFF;
}

.Mwarn {
    background: var(--primaryBlue);
    border: none;
    color: #FFF;
}

.Mwight {
    background: #FFF;
    color: #FFF;
}

.Mshadow {
    box-shadow: 0px 0px 14px -6px #000000;
}

.MBlur {
    -webkit-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    -o-backdrop-filter: blur(5px);
    -ms-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}


@-webkit-keyframes AnimationName {
    0%{background-position:15% 0%}
    50%{background-position:86% 100%}
    100%{background-position:15% 0%}
}
@-moz-keyframes AnimationName {
    0%{background-position:15% 0%}
    50%{background-position:86% 100%}
    100%{background-position:15% 0%}
}
@keyframes AnimationName {
    0%{background-position:15% 0%}
    50%{background-position:86% 100%}
    100%{background-position:15% 0%}
}

/*--- animations ----*/

@-webkit-keyframes fadeInApp {
    0%{ -webkit-transform:scale(0.89); opacity:0;}
    40%{ -webkit-transform:scale(1.01); opacity:1;}
    70%{ -webkit-transform:scale(0.99); opacity:0.9;}
    100%{ -webkit-transform:scale(1); opacity:1;}
}


/*--- mobile devices ----*/

@media (max-width: 1600px) {
    
}

@media (max-width: 1200px) {
    .Hstyle {
        font-size: 35px; 
        font-weight: 600; 
        color:#193B83;
    }
}

@media (max-height: 600px) {
    
    
}

@media (max-width: 992px) {
    
    .Pimg {
        height: 40px;
        width: 40px;
        border-radius: 20px;
        float: right;
        overflow: hidden;
    }
    
    #NewFarm {
        width: 280px;   
    }
    
    .NaPos {
        display: none;
    }
    
    #OvTxt {
        display: none;
    }
    
    .AppDown {
        margin-top: 20px;
        margin-bottom: 0px;
    }
    
    .AgTool {
        display: none;
    }
    
    .AgToolM {
        display: inline-flex;
        padding: 25px 0px;
    }
    
    .AgToolM img {
        width: 180px;
    }
    
    .AdCont1 {
        width: 100%;
    }
    
    #MobNo {
        display: block;
    }

}

@media (max-width: 768px) {
    
    #UpgradeAccount {
        display: none;
    }
    
    #CreateAccount {
        display: none;
    }
    
    .nwProj {
        display: none;
    }
    
    .BtSpac {
        display: block;
        width: 5px;
    }
    
    .toolbox {
        margin: 0px 20px;
    }
    
    .Headings {
        margin-top: 10px;
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .Bottom {
        margin-top: 20px;
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .AppDown {
        margin-top: 20px;
    }
    
    .Fcontent {
        margin: 0px 5px 0px;
    }
    
}