@media (max-width: 768px) {
    .mobile-responsive {
        width: 100% !important;
    }
}

.table th,
.table td {
    text-align: center;
    vertical-align: middle;
}

.table th {
    font-weight: normal;
    font-size: 0.8rem;
}

.table tbody td {
    font-size: 0.8rem;
}

.table tbody button {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
}

.cursor-pointer {
    cursor: pointer;
}

/*
.single-course {
  display: flex;
  justify-content: center;
}

.single-course .swiper-slide {
  max-width: 350px;
}
*/

.single-course .swiper-slide {
    max-width: 350px;
    /*display: flex;
    justify-content: space-around;*/
}

.loader {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #3498db;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    position: fixed;
    z-index: 99999;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#calendar {
    max-width: 900px;
    margin: 40px auto;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: white;
    background-size: 100%, 100%;
    width: 2rem;
    height: 2rem;
}

.carousel-control-prev-icon {
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="%23000" viewBox="0 0 16 16"%3E%3Cpath d="M11.354 1.646a.5.5 0 0 0-.708 0L5.646 6.646a.5.5 0 0 0 0 .708l5 5a.5.5 0 0 0 .708-.708L6.707 7.5l4.647-4.646a.5.5 0 0 0 0-.708z"/%3E%3C/svg%3E');
}

.carousel-control-next-icon {
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="%23000" viewBox="0 0 16 16"%3E%3Cpath d="M4.646 1.646a.5.5 0 0 1 .708 0l5 5a.5.5 0 0 1 0 .708l-5 5a.5.5 0 0 1-.708-.708L9.293 7.5 4.646 2.854a.5.5 0 0 1 0-.708z"/%3E%3C/svg%3E');
}

.calendar-container {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    height: 100%;
}