/* site wrapper */

#page_wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}
#scroll_panel {
    flex: 1;
    overflow: auto;
    padding-bottom: 50px;
}
#whisper_header {
  width: 95%;
  margin: auto;
}
.your-comment-title {
  padding: 0 5px;
}

.reply-link {
  color: blue;
  cursor: pointer;
}

/* bulma overrides */
.navbar-item {
  display: flex;
}

.navbar,
.navbar-menu,
.navbar-start,
.navbar-end {
  align-items: stretch;
  display: flex;
  padding: 0;
}

.navbar-menu{
  flex-grow: 1;
  flex-shrink: 0;
}
.navbar-start{
  justify-content: flex-start;
  margin-right: auto;
}
.navbar-end{
  justify-content: flex-end;
  margin-left: auto;
}

.navbar .container {
  display: flex;
}
.navbar-item {
  display: flex;
  align-items: center;
}
.navbar-item.logout { margin-right: 10px; }
.navbar-end a:hover { background-color: #209cee; }
.navbar-item.profile-menu {
  margin-right: 5px;
}

.has-background-burgundy {
    background-color: #850000 !important;
}

.has-no-border-radius { border-radius: 0; }
footer.footer {
    height: 50px;
    bottom: 0;
    position: fixed;
    width: 100%;
}
footer .content { padding: 5px; }

.section { padding: 1em 1.5em; }


.columns.is-gapless:not(:last-child) {
    margin-bottom: .5rem;
}

.fa-box {
  border: 1px solid;
  padding: 3px;
}
.fa-box-margin-right {
  border: 1px solid;
  padding: 3px;
  margin-right: 10px;
}

.modal2 {
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;   
    z-index: 99;
}
.modal2 h1 {
  padding-right: 10px;
}
.modal2.showme {
   display: flex;
   flex-direction: column;
}
.modal2__header,
.modal2__footer {
    height: 100px;
    padding: 10px;
    background-color: #ccc;
}
.modal2__content {
    height: 100%;
    overflow-y: auto;
    background-color: #fff;
}

.error-msg { color: red; }

.sort-handle {
	cursor: move;
	cursor: -webkit-grabbing;
}

.site {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.site-content {
  flex: 1;
  overflow: scroll;
}

.dash_panel {
  padding: 5px;
}
.tile-wrapper { 
  border-radius: 5px; 
  border: 1px solid #ddd;
  max-width: 200px;
  margin: 0 auto; 
}
#invite_wrapper {
  padding: 10px;
  background-color: #23d1605e;
  border-radius: 6px;
}
#form_msg {
  margin-top: 10px;
}
.lazyload,
.lazyloading {
  opacity: 0;
}
.lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}
.navbar.is-fixed-top {
  z-index: 19;
}
.dropdown-title { font-weight: 600;font-size: 1.2em; }
.is-paddingless-bottom {
  padding-bottom: 0;
}
.hideme { display: none !important; }
hr.has-margin-12 { margin: 12px 0;}
.has-pointer {
  cursor: pointer;
}
.topic-list-item {
  padding: 10px 5px;
}
.topic-list-item:hover {
  background: #EDEDED;
}

/* conversation styles */

div.isowner {
   margin-right: 10%;
   margin-bottom: 20px;
   border-radius: 5px;
   background-color: #ededed;
   padding: 10px;

}
div.notowner {
   margin-left: 10%;
   margin-bottom: 20px;
   border-radius: 5px;
   background-color: #ffdd57;
   padding: 10px;
}


/* ohSnap alert styles */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 0px solid #eed3d7;
  border-radius: 4px;
  position: absolute;
  bottom: 0px;
  right: 21px;
  /* Each alert has its own width */
  float: right;
  clear: right;
  background-color: white;
}

.alert-red {
  color: white;
  background-color: #DA4453;
}
.alert-green {
  color: white;
  background-color: #006600;
}
.alert-blue {
  color: white;
  background-color: #4A89DC;
}
.alert-yellow {
  color: white;
  background-color: #F6BB42;
}
.alert-orange {
  color:white;
  background-color: #E9573F;
}