html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}



.fc-event {
    color: #666;
    background-color: #fff;
}

.pointer {
    cursor:pointer;
}


@keyframes blink {
    0% {
        opacity: 1;
    }

    30% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.5;
    }

    70% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

.icon-blink {
    animation: blink 1s linear infinite;
}

#calendar > .fc-header-toolbar {
    flex-wrap: wrap;
}


@media print {
    .no-print {
        display: none !important;
    }

    .print {
        display: block !important;
    }
}
/*
@media screen {
    .print {
        visibility: visible !important;
    }

    .no-print {
        visibility: visible !important;
    }
}*/


@media (max-width: 768px) {
    .fc .fc-toolbar.fc-header-toolbar {
        padding: 5px;
        font-size: 14px;
    }

    .fc .fc-daygrid-day-number {
        font-size: 12px;
        padding: 2px;
    }

    .fc .fc-event {
        font-size: 14px;
        padding: 6px;
        border-radius: 6px;
    }

    .fc .fc-list-event {
        padding: 10px;
        font-size: 16px;
    }

    .fc .fc-list-day {
        font-size: 18px;
        font-weight: bold;
    }

    .fc .fc-toolbar{
        justify-content: center;
    }

    .col-sm-12{
        padding-left: 5px;
        padding-right: 5px;
    }

    .fc .fc-toolbar h2 {
        margin: 0;
        font-size: 14px;
        padding-bottom: 10px !important;
        padding-top: 10px !important;
    }

    .fc-timeGridDay-button {
        display: none !important;
    }

    .fc-timeGridWeek-button{
        display:none !important;
    }

    .fc-dayGridMonth-button {
        display: none !important;
    }

    .fc-listMonth-button {
        display: none !important;
    }
}