/* 
    Document   : jevcustom
    Created on : 22-Apr-2013, 14:12:51
    Author     : Tony Partridge - GWE Systems Ltd
    Description: To allow customisation of CSS Strings where they can never be lost.
    Purpose of the stylesheet follows.
*/

/* LATEST EVENTS ITEM COLORS */
.jevisotope.isotope #jeviso_main .jeviso_container .jeviso_item {
    background-color: white;
    border-color: #0d3e6b;
    border-style: solid;
    margin: 2px;
}

/* REMOVE HUGE GAP BELOW LATEST EVENTS ITEMS */
.jeviso_container {
    grid-gap: unset !important;
    grid-auto-rows: unset !important;
    align-items: center;
    justify-content: center;
}

/* CHANGE NUMBER OF FLOAT TEMPLATE COLUMNS FOR DEVICE SIZE */
/* DESKTOP */
@media only screen and (min-width: 992px) {
.jeviso_container {
  grid-template-columns: 350px 350px 350px !important; }
}

/* TABLET */
@media only screen and (max-width: 991px) and (min-width: 768px) {
.jeviso_container {
  grid-template-columns: 350px 350px !important; }
}

/* MOBILE */
@media only screen and (max-width: 767px) {
.jeviso_container {
  grid-template-columns: 350px !important; }
}

/* COLORS OF CALENDAR EVENT BLOCK */
div.eventfull div {
    background-color: #a05a20 !important;
    color: white !important;
}

/* TEXT HOVER COLOR OF CALENDAR EVENT BLOCK */
div.eventfull div a:hover{
    color: white !important;
}

/* COLOR FOR TODAY IN CALENDAR */
#jevents_body .jev_underlay .jev_underlay_daynum_today div {
    background-color: #c0c0c0;
}
