/* Imports */
@import url("animate.css");

/* form input placeholders */
*::-webkit-input-placeholder {
  color: #f00!important;
}
*:-moz-placeholder {
  /* FF 4-18 */
  color: f00!important;
}
*::-moz-placeholder {
  /* FF 19+ */
  color: f00!important;
}
*:-ms-input-placeholder {
  /* IE 10+ */
  color: f00!important;
}

/* Parsley Form Validator CSS */
input.parsley-success,
select.parsley-success,
textarea.parsley-success {
  color: #468847;
  background-color: #DFF0D8;
  border: 1px solid #D6E9C6;
}

input.parsley-error,
select.parsley-error,
textarea.parsley-error {
  color: #B94A48;
  background-color: #F2DEDE;
  border: 1px solid #EED3D7;
}

.parsley-errors-list {
  margin: 2px 0 3px;
  padding: 0;
  list-style-type: none;
  font-size: 0.9em;
  line-height: 0.9em;
  opacity: 0;
  color: crimson;

  transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
}

.parsley-errors-list.filled {
  opacity: 1;
}

/* JQuery Tabs */
.ui-tabs .ui-tabs-nav {
  display: flex;
}

.ui-tabs .ui-tabs-nav li {
  flex: 1;
  display: flex;
  /* If placed in a small width sidebar or something like that disabling nowrap will fix the overflow issue */
  white-space: normal;
}

.ui-tabs .ui-tabs-nav li a {
  flex: 1;
  /* If you want to align tab titles center */
  text-align: center;
}

/* Tablesorter */
.tablesorter-pager .btn-group-sm .btn {
  font-size: 1.2em; /* make pager arrows more visible */
}

.cl {
  white-space : pre-line;
  text-align: center;
}

.popover {
  max-width: 400px;
}

@media all and (max-width: 992px) {
  div.popover {
    display: none;
  }
}

@media all and (max-height: 800px) {
  div.popover {
    display: none;
  }
}

/* Set the size of the div element that contains the map */
#map {
  height: 400px;  /* The height is 400 pixels */
  width: 100%;  /* The width is the width of the web page */
 }


.no-style {
  -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
    font-size: .8em;
    background: transparent;
}

/* change the background color */
.navbar {
  background-color: #ffbb00;
}
/* change the brand and text color */
.navbar .navbar-brand,
.navbar .navbar-text {
  color: #0000ff;
}
/* change the link color */
.navbar .navbar-nav .nav-link {
  color: #0000ff;
}
/* change the color of active or hovered links */
.navbar .nav-item.active .nav-link,
.navbar .nav-item:hover .nav-link {
  color: #00ffff;
}

.navbar-collapse { 
  border-color: #c9c9c9;
}

.custom-toggler .navbar-toggler {
  border-color: rgb(255, 255, 0);
}

.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,0, 1)' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

body {
  background-color: #c9c9c9;
}

section, .row {
  background-color: #ffffff;
  padding: 0 1em;
  margin: 0;
}

.card-header .row, {
  background-color: transparent;
}

h2 {
  color: #0000ff;
}

a.uninvite_button:hover{
  cursor: pointer;
}

/* Event floater for Event invitations */

#event-floater {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  opacity: 0.5;
}

#event-floater:hover {
  opacity: 1;
}

/* invitation watermark */
.wm {
  background-image:url("../images/bigkis_wm.png");
  background-color:yellow;
  background-repeat:no-repeat;
  background-attachment:fixed;
  background-position:center;
}

/* pulsating effect */
.pulsate {
  -webkit-animation: pulsate 2s ease-out;
  -webkit-animation-iteration-count: infinite; 
  opacity: 0.1;
}
@-webkit-keyframes pulsate {
  0% { 
      opacity: 0.1;
  }
  50% { 
      opacity: 1.0;
  }
  100% { 
      opacity: 0.1;
  }
}