
/*============================================================================*/

* {
  box-sizing: border-box;
}

/*
.csr-oca-farms-map-hello-world {}
*/

.oca-regen-farm-single {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
}

.oca-regen-farm-single-tooltip {
  position: relative;
  display: inline-block;
/*
  border-bottom: 1px dotted black;
*/
  cursor: help;
  margin: 0.20rem;
}

.oca-regen-farm-single-tooltip .oca-regen-farm-single-tooltiptext {
  display: block;
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  top: 32px;
  left: 0;
  z-index: 1;
}

.oca-regen-farm-single-tooltip:hover .oca-regen-farm-single-tooltiptext {
  visibility: visible;
}

.oca-regen-farm-single-tooltip > img {
  height: 32px;
  width: 32x;
}

/*============================================================================*/

/* modal */

.csr-oca-farms-modal {
    display:    none;
    position:   fixed;
    z-index:    1000;
    top:        0;
    left:       0;
    height:     100%;
    width:      100%;
    background: rgba( 255, 255, 255, .8 )
                url('img/waiting.gif')
                50% 50%
                no-repeat;
}

/* When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */
body.csr-oca-farms-loading {
  overflow: hidden;
}

/* Anytime the body has the loading class, our
   modal element will be visible */
body.csr-oca-farms-loading .csr-oca-farms-modal {
  display: block;
}

/*============================================================================*/
/* =====[ (c) 2022 CSR Tech Concepts Inc All Rights Reserved.       ]=========*/