﻿
@font-face {
    font-family: "Raleway-Light";
    src: url(Content/fonts/Raleway-Light.ttf) format('truetype')
}

@font-face {
    font-family: "Raleway-Thin";
    src: url(Content/fonts/Raleway-Thin.ttf) format('truetype')
}

.btn-outlined {
    border-radius: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    color: #fff;
    background-color: #000;
}

    .btn-outlined:hover {
        background-color: #eee;
    }

.squareprimarybtn {
    border-radius: 0;
    border: 3px solid #428bca;
}

.btn-primary {
    background: none;
    border: 3px solid #428bca;
    color: #428bca;
}

    .btn-primary:hover,
    .btn-primary:active {
        color: #FFF;
        background: #428bca;
        border-color: #428bca;
    }

.hideme {
    visibility: hidden;
}

.showme {
    visibility: visible;
}

.cardshadow {
    box-shadow: 0 4px 8px rgba(66,139,202,0.36);
}

tr:hover {
    box-shadow: 4px 0px 8px rgba(66,139,202,0.36);
    border-radius: 7px;
}

.slow-glow {
    transition: box-shadow 0.3s ease-in-out;
    border-radius: 7px;
    -moz-border-radius: 7px;
    -khtml-border-radius: 7px;
    -webkit-border-radius: 7px;
    overflow: hidden !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    box-shadow: 0 2px 6px rgba(66,139,202,0.12), 0 2px 4px rgba(66,139,202,0.24);
}

    .slow-glow:hover {
        box-shadow: 0 0px 14px #428bca;
    }

.header-glow {
    transition: box-shadow 0.3s ease-in-out;
    overflow: hidden !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    box-shadow: 0 2px 6px rgba(66,139,202,0.12), 0 2px 4px rgba(66,139,202,0.24);
}

    .header-glow:hover {
        box-shadow: 0 0px 18px #428bca;
    }

.table-glow {
    transition: box-shadow 0.3s ease-in-out;
    overflow: hidden !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    box-shadow: 0 0 14px #428bca;
    background-color: #333;
    color: #ddd;
    border-radius: 7px;
    -moz-border-radius: 7px;
    -khtml-border-radius: 7px;
    -webkit-border-radius: 7px;
}

.med-glow {
    box-shadow: 0 0px 0px 5px 5px #fff;
    margin-bottom: 1px;
}

.smalltitle {
    color: #fff;
    font-size: 24px;
    font-family: Raleway-Light;
}

@font-face {
    font-family: "monsterrat";
    src: url(/fonts/monsterrat-regular.ttf) format("truetype");
}

th {
    font-family: monsterrat;
}

.collapsible {
    background-color: #777;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
}

    .active, .collapsible:hover {
        background-color: #555;
    }

.content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.do{
    border:1px solid green;
}

.doTitle{
    color:green;
}

.dont{
    border:3px solid red;
    border-style:inset;
}

.dontTitle{
    color:red;
}

dontImage{

}

.smallPreview{
    max-width:300px;
    pointer-events:all;
    cursor:pointer;
}

/*using a fancy stuff tutorial because I'm good with python not css*/
@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {

    /* Force table to not be like tables anymore */
    table, thead, tbody, th, td, tr {
        display: block;
    }

        /* Hide table headers (but not display: none;, for accessibility) */
        thead tr {
            position: absolute;
            top: -9999px;
            left: -9999px;
        }

    tr {
        border: 1px solid #ccc;
    }

    td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
    }

        td:before {
            /* Now like a table header */
            position: absolute;
            /* Top/left values mimic padding */
            top: 6px;
            left: 6px;
            width: 45%;
            padding-right: 10px;
            white-space: nowrap;
        }
}
