﻿.Button1, .Button2, .Button3, .Button4, .Button5 {
    height: 120px;
    width: 180px;
    margin: 10px;
    white-space: normal;
    vertical-align: middle;
    font-size: 19px;
    padding: 10px;
    border-radius: 12px;
    font-family: verdana;
    background-color: white;
    color: black;
}

.Button1 {
    border: 5px solid #DA532C; /* Red-ish */
}

    .Button1:hover {
        background-color: #DA532C; /* Red-ish */
        /*box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);*/
    }

.Button2 {
    border: 5px solid #0089D1;
}

    .Button2:hover {
        background-color: #0089D1;
    }

.Button3 {
    border: 5px solid #009900;
}

    .Button3:hover {
        background-color: #009900;
    }

.Button4 {
    border: 5px solid #9E00A5;
}

    .Button4:hover {
        background-color: #9E00A5;
    }

.Button5 {
    border: 5px solid #AE193F;
}

.Button5:hover {
    background-color: #AE193F;
}


body {
    padding-top: 50px;
}

.main-template {
    padding: 40px 15px;
    text-align: center;
}

.Pointer {
    cursor: pointer;
}

.BgWhite {
    background-color: White;
}

div#MasterButtonLeft {
    float: left;
}

div#MasterButtonRight {
    float: right;
}

.ErrorMessage {
    color: Red;
}

.UpperCase {
    text-transform: uppercase;
}

.navbar-custom {
    color: white;
    background-color: #0089D1;
}

.tr-red {
    color: red;
}

.td-price {
    width: 100px;
}

.td-date {
    width: 150px;
}

.td-boolean {
    width: 25px;
}

.td-integer {
    width: 25px;
}

.td-textsmall {
    width: 50px;
}

.td-textmedium {
    width: 75px;
}

.btn-textmedium {
    width: 90px;
}

.outlet-glyphicon {
    color: gray;
    font-size: 18px;
    padding-top: 10px;
    padding-right: 5px;
}

.outlet-text {
    color: gray;
    font-size: 20px;
    font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;
    padding-top: 8px;
}

/* frmAdmin */
.FrontPageLinks {
    font-size: large;
}

/* frmNewAccount/frmAccount */
.AccountField {
    max-width: 400px;
}

@media only screen and (max-width: 767px) {

    /* Force table to not be like tables anymore */
    #reactive-table table,
    #reactive-table thead,
    #reactive-table tbody,
    #reactive-table th,
    #reactive-table td,
    #reactive-table tr {
        display: block;
    }

        /* Hide table headers (but not display: none;, for accessibility) */
        #reactive-table thead tr {
            position: absolute;
            top: -9999px;
            left: -9999px;
        }

    #reactive-table tr {
        border: 1px solid #ccc;
    }

    #reactive-table td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        white-space: normal;
        text-align: left;
    }

        #reactive-table 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;
            text-align: left;
            font-weight: bold;
        }

        /*
	Label the data
	*/
        #reactive-table td:before {
            content: attr(data-title);
        }

    .glyphicon-sort {
        color: none;
    }
}

@media only screen and (min-width: 768px) {

    .glyphicon-sort {
        color: darkgray;
    }
}
