﻿body {
    background-color:black;
}

p {
    color: white;
    font-size: 12px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.Text {
    color:orange;
    font-size:12px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

h1 {
    color: orange;
    font-size: 25px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.form-label{
    color:gold;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size:15px;
}

.form-control{
    color:black;
}

.MandatoryField {
    color: red;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 15px;
}

.THTopAlign {
    vertical-align: top;
    background-color:darkgray;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 25px;
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
}

.TDTopAlign {
    vertical-align: top;
    color:gold;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 25px;
    text-align:left;
    padding-left:10px;
    padding-right:10px;
}

.TDTopAlignOdd {
    vertical-align: top;
    color: gold;
    background-color: black;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 25px;
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
}

.TDTopAlignEven {
    vertical-align: top;
    color: black;
    background-color:gold;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 25px;
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
}

/* Modify the background color */
.navbar-custom {
    background-color: black;
    color: white;
}


/* Modify brand and text color */
.navbar-custom .navbar-brand,
.navbar-custom .navbar-text {
    color: white;
}

/* Set Navbar Links color */
nav .navbar-nav li a {
    color: white !important;
}

.navbar-nav > li > .dropdown-menu {
    background-color:silver;
}
/* change the link color */

.navbar-custom .navbar-nav .nav-link {
    color: white;
}


/* change the color of active or hovered links */

.navbar-custom .nav-item.active .nav-link,
.navbar-custom .nav-item:hover .nav-link {
    color: white;
}


.navbar-toggle {
    background-color: black;
    text-decoration-color:white;
    color:white;
    background-image: none;
    border: 1px solid transparent;
}
.navbar-toggle .icon-bar {
    text-decoration-color: white;
    color: white;
    background-color: black;
}

.gallery {
    margin: 10px 50px;
    padding: 10px;
    transition: 1s;

}

/*.gallery a{
    display:block;
}*/

.gallery img {
    filter: grayscale(100%); /* Standard */
    -webkit-filter: grayscale(100%); /* Webkit */
    filter: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' height='0'><filter id='greyscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0' /></filter></svg>#greyscale"); /* Firefox4-34*/
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(1); /* Old WebKit */
}


.gallery img:hover {
    -webkit-filter: none;
    -webkit-filter: grayscale(0);
    filter: none;
    transform: scale(1.1);
}

.VideoContainer {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    align-items: flex-start;
    padding: 5px 5%;
}

.VideoContainer .main-video {
    background: #fff;
    border-radius: 5px;
    padding: 10px;
}

.VideoContainer .main-video video {
    width: 100%;
    border-radius: 5px;
}

.VideoContainer .main-video .title {
    color: #333;
    font-size: 23px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.VideoContainer .video-list {
    background: #fff;
    border-radius: 5px;
    height: 520px;
    overflow-y: scroll;
}

.VideoContainer .video-list::-webkit-scrollbar {
    width: 7px;
}

.VideoContainer .video-list::-webkit-scrollbar-track {
    background: #ccc;
    border-radius: 50px;
}

.VideoContainer .video-list::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 50px;
}

.VideoContainer .video-list .vid video {
    width: 100px;
    border-radius: 5px;
}

.VideoContainer .video-list .vid {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f7f7f7;
    border-radius: 5px;
    margin: 10px;
    padding: 10px;
    border: 1px solid rgba(0,0,0,.1);
    cursor: pointer;
}

.VideoContainer .video-list .vid:hover {
    background: #eee;
}

.VideoContainer .video-list .vid.active {
    background: #2980b9;
}

    .VideoContainer .video-list .vid.active .title {
        color: #fff;
    }

.VideoContainer .video-list .vid .title {
    color: #333;
    font-size: 17px;
}

@media(max-width:991px) {
.VideoContainer {
    grid-template-columns: 1.5fr 1fr;
    padding: 10px;
}
}

@media(max-width:768px) {
.VideoContainer {
    grid-template-columns: 1fr 1fr;
    padding: 10px;
}
}

/*.title {
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size:20px;
}*/