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;
    background: #F0F5FF;
    background: #fff url('/back.png');
    background-size: cover;
    background-attachment: fixed;
}
.smallpanel {
    max-width: 600px;
    padding: 40px 15px;
    margin: auto;
    box-shadow: 0 0 10px 1px rgba(0,0,0,0.2),0 0 10px 1px rgba(255,255,255,0.2);
    border-radius:5px;
    background: #fff;
}
.event-list {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

    .event-list li {
        background-color: rgb(255, 255, 255);
        box-shadow: 0px 0px 5px rgb(51, 51, 51);
        box-shadow: 0px 0px 5px rgba(51, 51, 51, 0.7);
        padding: 0px;
        margin: 0px 0px 20px;
    }
        .event-list li a{
            text-decoration:none;
            color:#000;
        }
        .event-list li:nth-child(even) time {
            background-color: rgb(165, 82, 167);
        }

        .event-list li img {
            width: 100%;
        }

        .event-list li .info {
            padding-top: 5px;
            text-align: center;
        }

            .event-list li .info .title {
                font-size: 13pt;
                font-weight: 700;
                margin: 0px;
            }

            .event-list li .info .desc {
                font-size: 10pt;
                font-weight: 300;
                margin: 5px 0px;
            }

            .event-list li .info ul {
                display: table;
                list-style: none;
                margin: 10px 0px 0px;
                padding: 0px;
                width: 100%;
                text-align: center;
            }

                .event-list li .info ul li {
                    display: table-cell;
                    cursor: pointer;
                    color: rgb(30, 30, 30);
                    font-size: 11pt;
                    font-weight: 300;
                    padding: 3px 0px;
                }

                    .event-list li .info ul li a {
                        display: block;
                        width: 100%;
                        color: rgb(30, 30, 30);
                        text-decoration: none;
                    }

                    .event-list li .info ul li:hover {
                        color: rgb(30, 30, 30);
                        background-color: rgb(200, 200, 200);
                    }


@media (min-width: 768px) {
    .event-list li {
        position: relative;
        display: block;
        width: 100%;
        height: 200px;
        padding: 0px;
    }

        .event-list li img {
            display: inline-block;
        }

        .event-list li img {
            width: 200px;
            float: left;
        }

        .event-list li .info {
            background-color: rgb(245, 245, 245);
            overflow: hidden;
        }

        .event-list li img {
            width: 200px;
            height: 200px;
            padding: 0px;
            margin: 0px;
        }

        .event-list li .info {
            position: relative;
            height: 200px;
            text-align: left;
            padding-right: 40px;
        }

            .event-list li .info .title,
            .event-list li .info .desc {
                padding: 0px 10px;
            }

            .event-list li .info ul {
                position: absolute;
                left: 0px;
                bottom: 0px;
            }
}
.text-right {
    text-align: right;
}
.twoline {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

    /* Style the buttons that are used to open the tab content */
    .tab button, .tab a {
        background-color: inherit;
        float: left;
        border: none;
        outline: none;
        cursor: pointer;
        text-decoration:none;
        color:#000;
        padding: 14px 16px;
        transition: 0.3s;
    }

        /* Change background color of buttons on hover */
        .tab button:hover, .tab a:hover {
            background-color: #ddd;
        }

        /* Create an active/current tablink class */
        .tab button.active, .tab a.active {
            background-color: #ccc;
        }

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}
.tabcontent {
    animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}