[v-cloak] {
  display: none;
}

.searchBtn {
  border-left: solid 1px #0072bc;
  text-align: center;
}

.sessionText {
  font-size: medium;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.paperTitle:hover {
  background-color: #d6d6d6;
  /* font-family: ‘Gill Sans’, ‘Gill Sans MT’, Calibri, ‘Trebuchet MS’, sans-serif; */
}

.modalGather {
  text-decoration: underline;
}

.modalGather:hover {
  text-decoration: underline;
  background: #cccccc;
}

.tab-pane {
  padding: 10px;
}

.dropdown-item.active,
.dropdown-item:active {
  color: white;
  text-decoration: none;
  background-color: #f5821e;
}

.dropdown-menu {
  padding: 0;
}

.card-img {
  border-radius: unset;
}

.pic-row {
  padding-top: calc(var(--bs-gutter-x, 0.75rem) / 2);
  padding-bottom: calc(var(--bs-gutter-x, 0.75rem) / 2);
}

.style_time {
  background-color: #e8e8e8;
  font-size: 18px;
  font-family: ‘Gill Sans’, ‘Gill Sans MT’, Calibri, ‘Trebuchet MS’, sans-serif;
  text-align: center;
}

.style_timeover {
  background-color: #e8e8e8;
  font-size: 18px;
  font-family: ‘Gill Sans’, ‘Gill Sans MT’, Calibri, ‘Trebuchet MS’, sans-serif;
  text-align: center;
  text-decoration: line-through;
}

.gather {
	margin: 0em 0em 0em 0em;
  border-radius: 25px;
  border: solid 4px #80bff9;
  text-align: center;
  font-size: 15px;
}

.style_session {
	margin: 0em 0em 0em 0em;
  word-break: break-word;
  text-align: center;
}

.style_session:hover {
	margin: 0em 0em 0em 0em;
  word-break: break-word;
  background-color: #e2efda;
  cursor: pointer;
  text-align: center;
}

.style_sessionover {
	margin: 0em 0em 0em 0em;
  word-break: break-word;
  text-align: center;
}

.style_socializing {
	margin: 0em 0em 0em 0em;
  border: solid 4px #acb9ca;
  text-align: center;
  font-size: 15px;
  line-height: 2.5;
}

.style_socializing:hover {
	margin: 0em 0em 0em 0em;
  background-color: #acb9ca;
  text-align: center;
  font-size: 15px;
  line-height: 2.5;
  cursor: pointer;
}

.style_event {
	margin: 0em 0em 0em 0em;
  border: solid 4px #ffdea3;
  text-align: center;
  font-size: 15px;
  line-height: 2.5;
}

.style_event:hover {
  margin: 0em 0em 0em 0em;
  background-color: #ffdea3;
  text-align: center;
  font-size: 15px;
  line-height: 2.5;
  cursor: pointer;
}

.style_community {
  margin: 0em 0em 0em 0em;
  border: solid 4px #198754;
  text-align: center;
  font-size: 15px;
  line-height: 2.5;
}

.style_community:hover {
  margin: 0em 0em 0em 0em;
  background-color: #198754;
  text-align: center;
  font-size: 15px;
  line-height: 2.5;
  cursor: pointer;
}

.style_day {
  border: 0.3px #cccccc;
  border-left-style: solid;
  border-right-style: solid;
}

.tip {
  display: inline-block;
  position: relative;
}

.tip:before,
.tip:after {
  opacity: 0; /*透明度为完全透明*/
  position: absolute;
  z-index: 1000; /*设为最上层*/
  /*鼠标放上元素上时的动画，鼠标放上后效果在.tip-*:hover:before, .tip-*:hover:after中设置;
			0.2s:规定完成过渡效果需要多少秒或毫秒,ease:规定慢速开始，然后变快，然后慢速结束的过渡效果*/
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
}

.tip:before {
  content: "";
  border: 6px solid transparent;
}

.tip:after {
  content: attr(data-tip); /*后去要提示的文本*/
  padding: 5px;
  white-space: nowrap; /*强制不换行*/
  font-size: 10px;
  color: #0072bc;
  background-color: #ddd;
}

.tip:hover:before,
.tip:hover:after {
  opacity: 1; /*鼠标放上时透明度为完全显示*/
  z-index: 1000;
}

 /*bottom*/
 .tip-bottom:before {
	top: 100%;
	left: 50%;
	border-bottom-color: rgba(0, 0, 0, 0.8);
	margin-left: -3px;
	margin-top: -9px;
}

.tip-bottom:after {
	top: 100%;
	left: 50%;
	margin-left: -6px;
	margin-top: 3px;
}

.tip-bottom:hover:before {
	margin-top: -3px;
}

.tip-bottom:hover:after {
	margin-top: 9px;
}

/*right*/
.tip-right:before {
  top: 50%;
  left: 100%;
  border-right-color: #ddd;
  margin-left: -9px;
  margin-top: -3px;
}

.tip-right:after {
  top: 50%;
  left: 100%;
  margin-left: 3px;
  margin-top: -6px;
}

.tip-right:hover:before {
  margin-left: -3px;
}

.tip-right:hover:after {
  margin-left: 9px;
}

/*left*/
.tip-left:before {
  top: 50%;
  left: 0%;
  border-left-color: #ddd;
  margin-left: 0px;
  margin-top: -3px;
}

.tip-left:after {
  top: 50%;
  right: 100%;
  margin-right: 0px;
  margin-top: -6px;
}

.tip-left:hover:before {
  margin-left: -6px;
}

.tip-left:hover:after {
  margin-right: 6px;
}

.col-xs-1-5,
.col-sm-1-5,
.col-md-1-5,
.col-lg-1-5 {
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
}

.col-xs-1-5 {
  width: 20%;
  float: left;
}

@media (min-width: 768px) {
  .col-sm-1-5 {
    width: 20%;
    float: left;
  }
}
@media (min-width: 992px) {
  .col-md-1-5 {
    width: 20%;
    float: left;
  }
}
@media (min-width: 1200px) {
  .col-lg-1-5 {
    width: 20%;
    float: left;
  }
}

/* NEW */

.schedule-nav {
  position: sticky;
  top: 5rem;
  right: 0;
  z-index: 2;
  height: calc(100vh - 7rem);
  overflow-y: auto;
  grid-area: toc;
  background-color: inherit;
}

.schedule-nav .list-group-item {
  background-color: inherit;
}

.workshop-calendar-time-cell {
  border: 0.3px #cccccc;
  border-style: solid;
}

.workshop-calendar-time-cell > p {
  margin: 0;
  text-align: center;
  font-size: small;
}

.style_time {
  padding-top: 5px;
  padding-bottom: 5px;
}

.style_event {
  border: none;
  background-color: #ffeac5;
}

.style_event:hover {
  border: none;
  background-color: #ffdea3;
}

.gather {
  border-radius: unset;
  border: none;
  background-color: #bbdfff;
}

.style_socializing {
  border: none;
  background-color: #ced5df;
}

.style_socializing:hover {
  border: none;
  background-color: #acb9ca;
}

.style_session {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #eff7eb;
}

.style_time {
  background-color: #f4f4f4;
}

.paperTitle-link:hover {
  background-color: #bedbac !important;
}

.eventsTitle-link:hover {
  background-color: #f8c05f !important;
}

@media (max-width: 1490px){
	.mobileVanished{
		display:none;
	}
}

@media (min-width: 1491px){
	.pcVanished{
		display:none;
	}
}
