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

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

body {
    font-family: 'Helvetica', sans-serif; 
    background-color: #FFF;
    color: #656565;
    font-weight: 200;
}

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

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

.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;
}

.Pelem {
    font-size: 16px;
}

#MapHeight p {
    font-weight: 400;
}

#MapHeight a {
    font-weight: 400;
}

#wel {
    padding: 15px 0px;
}

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

.AgTool {
    display: inline-flex;
}

.AgToolM {
    display: none;
}

.AgTool img {
    width: 300px;
    margin: 19px 0px
}

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

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

.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 #42C280;
    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: #42C280;
    transition: all 0.4s ease-in;
}

@media (hover: hover) and (pointer: fine) {
  .head:hover { 
        color: #42C280;
        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: 6px solid rgba(255, 255, 255, 0);
    border-top: 6px solid var(--UniGreen);
    border-right: 6px solid var(--UniGreen);
    border-bottom: 6px solid var(--UniGreen);
    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;
}

.ModCust {
    border: none;
    border-radius: 10px;
}

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

.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;
}

/*----- 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(--UniGreen);
}

/*-- 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 {
    border: 1px solid #FFF;
    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;
}

.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(--UniGreen);
    padding-left: 10px;
    padding-right: 10px;
    margin: 10px 5px;
    border: 1px solid var(--UniGreen);
    padding-top: 8px;
}

#CreateAccount {
    background-color: var(--UniGreen);
    color: #FFF;
    padding-left: 11px;
    margin: 10px 5px;
    border: 1px solid var(--UniGreen);
    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 */
}

/*--- 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: 150px;
    max-height: 150px;
    background-color: #CCC;
    background-image: url("Assets/media/image/NewFarm.png");
    background-position: center;
    background-size: cover;
    border: 1px solid #d6d6d6;
    /*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 -8px #000000;
}

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

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

.FImg img {
    width: 100%;
}

.FControls {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    color: #696969;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    padding: 5px 10px;
    background-color: #FFF;
    border-radius: 0px 0px 9px 9px;
}

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

.Fcell {
    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: -13px;
}

/*---- 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);
}

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

.PImg {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    height: 180px;
    width: 180px;
    border-radius: 100%;
    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%;
    width: 100%;
    object-fit: cover;
}

.LightBut {
    border: 1px solid var(--UniGreen);
    color: var(--UniGreen);
    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: 300;
}

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

input:focus {
    outline: none !important;
    border: 1px solid var(--UniGreen);
}

.leaflet-control-layers-selector:focus {
    outline: none !important;
    border: none !important;
}

input {
    color: var(--DarkGrey);
}

.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;
}

.CardButs {
    background-color: var(--UniGreen);
    color: #FFF;
    margin: 20px 0px 0px 0px;
}

/*--------- 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(--UniGreen) !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;
}

.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);
    }
    } 
    

/*--- App colours----*/

:root {
    --UniGreen: #42C280;
    --UniGrey: #ebebeb;
    --MidGrey: #c7c7c7;
    --DarkGrey: #696969;
    --close: #e3554f;
    --open: #42C280;
    --warn: #f5a639;
}

.Mclose {
    background-color: var(--close);
    color: #FFF;
}

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

.Mwarn {
    background: var(--warn);
    color: #FFF;
}

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

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

.MAgvencha {
    color: #FFF;
    padding-right: 11px;
    border: 1px solid #42C280;
    /*-- background: rgb(247,184,0);
    background: linear-gradient(45deg, rgba(247,184,0,1) 0%, rgba(255,223,102,1) 50%, rgba(251,145,0,1) 100%); --*/
    background: linear-gradient(219deg, #088280 20%, #35C677 50%, #088280 80%);
    background-size: 1000% 1000%;

    -webkit-animation: AnimationName 5s ease infinite;
    -moz-animation: AnimationName 5s ease infinite;
    animation: AnimationName 5s ease infinite;
}

.MFailure {
    color: #FFF;
    padding-right: 11px;
    border: 1px solid #b22c0c;
    /*-- background: rgb(247,184,0);
    background: linear-gradient(45deg, rgba(247,184,0,1) 0%, rgba(255,223,102,1) 50%, rgba(251,145,0,1) 100%); --*/
    background: linear-gradient(219deg, #b22c0c 20%, #ea4234 50%, #b22c0c 80%);
    background-size: 1000% 1000%;

    -webkit-animation: AnimationName 5s ease infinite;
    -moz-animation: AnimationName 5s ease infinite;
    animation: AnimationName 5s ease infinite;
}

@-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;
    }
    
    .nwFarm {
        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;
    }
    
}