@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

a, .btn-link {
    color: #0366d6;
}

.video-image-container {
    position: relative;
    text-align: center;
    width:320px;
    height:200px;
    color: white;
    float: left;
    margin:2px;
}

.video-image {
    width: 100%;
    opacity:.8;
    border-color: white;
    border-style: solid;
    border-width: 1px;
}

.video-text {
    position: absolute;
    top: 50%;
    left: 50%;
    font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
    font-size: x-large;
    font-weight: bold;
    transform: translate(-50%, -50%);
    text-shadow: 2px 2px black;
}

.video-text-lower-left {
    position: absolute;
    bottom: 8px;
    left: 16px;
    font-family: Tahoma;
    color: lightgray;
    text-shadow: 2px 2px black;
}

.video-text-upper-left {
    position: absolute;
    top: 8px;
    left: 16px;
    font-family: Tahoma;
    color: lightgray;
    text-shadow: 2px 2px black;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.grid {
    margin: 0 0 $pad 0;
    text-align: center;
    &:after

{
    /* Or @extend clearfix */
    content: "";
    display: table;
    clear: both;
}

}

h1 {
    color: #ffd03f;
}

h2 {
    color: #ffd03f;
}

h3 {
    color: #ffd03f;
}

h4 {
    color: antiquewhite;
}

h5 {
    color: antiquewhite;
}

a:link {
    color: #ffffff;
}

a:visited {
    color: #dddddd;
}

a:hover {
    color: #0af;
}

a:active {
    color: #f00;
}

.splain {
    font-family: Arial;
    color: #cccccc;
}

#footer {
    width: 100%;
    overflow: hidden;
}

    #footer ul {
        list-style: none;
        position: relative;
        float: left;
        display: block;
        left: 50%;
    }

        #footer ul li {
            position: relative;
            float: left;
            display: block;
            right: 50%;
        }



/*Strip the ul of padding and list styling*/
ul {
    list-style-type: none;
}

/*Create a horizontal list with spacing*/
li {
    display: inline-block;
    float: left;
    margin-right: 1px;
}

    /*Style for menu links*/
    li a {
        display: block;
        min-width: 140px;
        height: 50px;
        text-align: center;
        line-height: 50px;
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        color: #fff;
        background: #2f3036;
        text-decoration: none;
    }

    /*Hover state for top level links*/
    li:hover a {
        background: #444444;
    }

    /*Style for dropdown links*/
    li:hover ul a {
        background: #444444;
        color: #2f3036;
        height: 40px;
        line-height: 40px;
    }

        /*Hover state for dropdown links*/
        li:hover ul a:hover {
            background: #444444;
            color: #fff;
        }

    /*Hide dropdown links until they are needed*/
    li ul {
        display: none;
    }

        /*Make dropdown links vertical*/
        li ul li {
            display: block;
            float: none;
        }

            /*Prevent text wrapping*/
            li ul li a {
                width: auto;
                min-width: 100px;
                padding: 0 20px;
            }

/*Display the dropdown on hover*/
ul li a:hover + .hidden, .hidden:hover {
    display: block;
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-decoration: none;
    color: #fff;
    background: #19c589;
    text-align: center;
    padding: 10px 0;
    display: none;
}

/*Hide checkbox*/
input[type=checkbox] {
    display: none;
    -webkit-appearance: none;
}

    /*Show menu when invisible checkbox is checked*/
    input[type=checkbox]:checked ~ #menu {
        display: block;
    }




[class*='col-'] {
    float: left;
    padding-right: $pad;
    .grid &:last-of-type

{
    padding-right: 0;
}

}

.col-2-3 {
    width: 60%;
}

.col-1-3 {
    width: 40%;
}

.col-1-2 {
    width: 50%;
}

.col-1-4 {
    width: 25%;
}

.col-1-8 {
    width: 12%;
}

.module {
    padding: $pad;
    word-wrap: break-word;
}

/* Opt-in outside padding */
.grid-pad {
    padding: $pad 0 $pad $pad;
    [class*='col-']:last-of-type

{
    padding-right: $pad;
}

}

.half-div-1 {
    width: 44%;
    float: left;
}

.half-div-2 {
    padding-top: 1vw;
    width: 44%;
    float: right;
}

.side-table {
    padding-left: 1vw;
    width: auto;
}
/*Responsive Styles*/

@media screen and (max-width : 760px) {
    /*Make dropdown links appear inline*/
    ul {
        position: static;
        display: none;
    }
    /*Create vertical spacing*/
    li {
        margin-bottom: 1px;
    }
        /*Make all menu links full width*/
        ul li, li a {
            width: 100%;
        }
    /*Display 'show menu' link*/
    .show-menu {
        display: block;
    }


    .half-div-1 {
        width: 98%;
        clear: both;
    }

    .half-div-2 {
        padding-top: 4vw;
        width: 98%;
        clear: both;
    }

    .side-table {
        width: 98%;
        float: none;
        clear: both;
    }
}
