* { font-family: "Poppins", sans-serif; }

#calendar {
	display: block;
	margin: auto;
	width: 80%;
}

@media only screen and (max-width: 990px) {
  #calendar { width: 99% !important; }
  .desktop {display: none}
  pre { font-size: 14px; font-family: "Poppins", sans-serif !important; }
  .abc { font-size: 12px !important }
}
@media only screen and (min-width: 990px) {
  .mobile {display: none}
}

.fc-popover {
    position: absolute !important;
    top: 34% !important;
    left: 50% !important;
    margin-right: -50% !important;
    transform: translate(-50%, -50%) !important;
	border: 2px solid #212121 !important;
}

#modal-background {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: .50;
    -webkit-opacity: .5;
    -moz-opacity: .5;
    filter: alpha(opacity=50);
    z-index: 1000;
}

#modal-content {
    background-color: white;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    box-shadow: 0 0 20px 0 #222;
    -webkit-box-shadow: 0 0 20px 0 #222;
    -moz-box-shadow: 0 0 20px 0 #222;
    display: none;
    height: 170px;
    left: 50%;
    margin: -120px 0 0 -160px;
    padding: 10px;
    position: fixed;
    top: 50%;
    width: 320px;
    z-index: 1000;
}

#modal-background.active, #modal-content.active {
    display: block;
}​
