﻿/************** DEFAULT CONTROLS ***************/
html {
    position: relative;
    min-height: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    padding-top: 90px;
    /*ADD 40px Padding Bottom FOR FOOTER*/
}

html, body {
    height: 100%;
    background-color: #283b8d;
    background: -moz-linear-gradient(180deg, #283b8d, #26a4db);
    background: -webkit-gradient(180deg, #283b8d, #26a4db);
    background: -webkit-linear-gradient(180deg, #283b8d, #26a4db);
    background: -o-linear-gradient(180deg, #283b8d, #26a4db);
    background: -ms-linear-gradient(180deg, #283b8d, #26a4db);
    background: linear-gradient(180deg, #283b8d, #26a4db);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00517d', endColorstr='#008bd6', GradientType=0 );
    background-attachment: fixed;
}

footer.footer {
    display: none; /*REMOVE TO SHOW FOOTER*/
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 40px;
    background-color: #e8e8e8;
    text-align: left;
    vertical-align: middle;
    padding: 10px;
}

table {
    border-collapse: collapse;
}

.spaced-table td {
    padding-top: .3em;
    padding-bottom: .3em;
    font-weight: 300;
}

/*****************************/

/************** CLASS SPECIFIC ***************/

.above-all {
    z-index: 999;
}

.fixed {
    position: fixed;
}

.balance {
    display: block;
    text-align: center;
    padding: 14px 16px;
    margin: 0 6px;
    vertical-align: middle;
}

@media screen and (max-width: 1480px) {
    .balance {
        display: block;
        text-align: center;
        padding: 12px 14px;
        margin: 0 6px;
        vertical-align: middle;
        max-width: 300px;
        word-wrap: break-word;
    }
}

.limit {
    font-size: 16px;
    text-align: center;
}

.btn-search {
    background-image: url(../Images/search.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-color: ghostwhite;
}

    .btn-search:hover, .btn-search:active {
        background-image: url(../Images/search.png);
        background-position: left center;
        background-repeat: no-repeat;
    }

.bold {
    font-weight: bold;
}

.fileinput-button {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

    .fileinput-button input {
        position: absolute;
        top: 0;
        right: 0;
        margin: 0;
        opacity: 0;
        -ms-filter: 'alpha(opacity=0)';
        font-size: 200px !important;
        direction: ltr;
        cursor: pointer;
    }

/* Fixes for IE < 8 */
@media screen\9 {
    .fileinput-button input {
        filter: alpha(opacity=0);
        font-size: 100%;
        height: 100%;
    }
}


/*****************************/

/******* NAVBAR STYLE *******/

#menu {
    background-color: white;
    width: 100%;
    top: 0;
    position: fixed;
    z-index: 3;
}

#menu-items {
    display: inline;
    float: right;
    height: 100%;
    font-size: 1.2em;
    font-weight: 300;
}

    #menu-items li a {
        display: block;
        color: #283b8d;
        background-color: white;
        text-align: center;
        padding: 14px 16px;
        margin: 0 6px;
        text-decoration: none;
        -moz-border-radius: 32px;
        -webkit-border-radius: 32px;
        border-radius: 32px;
    }

    #menu-items .dropbtn {
        padding: 8px 14px;
        margin: 0;
        text-align: center;
        vertical-align: middle;
        border-radius: 8px;
        border: 2px solid #283b8d;
    }

    #menu-items .dropdown {
        padding: 0 10px 0 10px;
        margin: 0;
        border-radius: 0;
    }

    #menu-items ul {
        float: right;
        list-style-type: none;
        margin: 19px 0;
        padding: 0;
        overflow: hidden;
    }

    #menu-items li {
        float: right;
    }

        #menu-items li a:hover {
            background-color: #283b8d;
            color: white;
            text-decoration: none;
            -o-transition: .5s;
            -ms-transition: .5s;
            -moz-transition: .5s;
            -webkit-transition: .5s;
            transition: .5s;
        }

    #menu-items .dropdown:hover .dropbtn {
        background-color: #283b8d;
        color: white;
        text-decoration: none;
        -o-transition: .5s;
        -ms-transition: .5s;
        -moz-transition: .5s;
        -webkit-transition: .5s;
        transition: .5s;
    }


    #menu-items li.dropdown {
        display: inline-block;
        z-index: 10;
    }

    #menu-items .dropdown-content {
        display: none;
        position: fixed;
        background: none;
        min-width: 160px;
        border-radius: 32px;
        margin-left: -95px;
    }

        #menu-items .dropdown-content a {
            padding: 12px 16px;
            text-decoration: none;
            border-radius: 0;
            display: block;
            text-align: left;
        }

            #menu-items .dropdown-content a.top-dropdown {
                border-top-left-radius: 16px;
                border-top-right-radius: 16px;
                border: 2px solid #283b8d;
                border-bottom: 0;
            }

            #menu-items .dropdown-content a.middle-dropdown {
                border-radius: 0;
                border: 2px solid #283b8d;
                border-top: 0;
                border-bottom: 0;
            }

            #menu-items .dropdown-content a.bot-dropdown {
                border-bottom-left-radius: 16px;
                border-bottom-right-radius: 16px;
                border: 2px solid #283b8d;
                border-top: 0;
            }

            #menu-items .dropdown-content a:hover {
                background-color: #283b8d;
            }

    #menu-items .dropdown:hover .dropdown-content {
        display: block;
    }

@media screen and (max-width: 738px) {
    body {
        padding-top: 354px;
    }

    #menu-items ul, #menu-items li, #menu-items {
        float: none;
    }

        #menu-items .dropdown-content {
            display: block;
        }

    #menu > img {
        display: none;
    }
}

/*************************************************************/

/***************** CUSTOM BUTTON ********************/

.btn-blue {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 8px 16px;
    text-decoration: none;
    color: #fff;
    position: relative;
    display: inline-block;
    background-color: #283b8d;
    box-shadow: 0px 3px 0px 0px #1d1d1d;
    border: 0;
    font-size: 1.2em;
    font-weight: 300;
}

    .btn-blue:hover {
        color: #b2b2b2;
    }

	.btn:focus {
        color: #ffffff;
    }
    .btn:hover {
        color: #b2b2b2;
    }

    .btn-blue:active {
        transform: translate(0px, 2px);
        -webkit-transform: translate(0px, 2px);
        box-shadow: 0px 1px 0px 0px #3C93D5;
        color: #fff;
    }

a {
  color: #283b8d;
  text-decoration: none;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #283b8d;
  border-color: #283b8dd;
}

.btn-white {
    padding: 8px 16px;
    text-decoration: none;
    color: #555555;
    position: relative;
    display: inline-block;
    background-color: #fff;
    border: 1px #777777 solid;
    font-size: 1.2em;
    font-weight: 300;
    border-radius: 0;
}

    .btn-white:active, .btn-white:hover {
        background-color: #2C99D4;
        color: #fff;
        border: 1px #2C99D4 solid;
        -o-transition: 1s;
        -ms-transition: 1s;
        -moz-transition: 1s;
        -webkit-transition: 1s;
        transition: 1s;
        border-radius: 0;
    }

.btn-space {
    margin: 10px;
}

/*************************************************************/

/***************************** CUSTOM RADIO ********************************/

input[type="radio"] {
    display: none;
}

    input[type="radio"] + label span {
        display: inline-block;
        width: 19px;
        height: 19px;
        margin: -2px 4px 0 0;
        vertical-align: middle;
        background: url(../Images/radiosheet.png) left top no-repeat;
        cursor: pointer;
    }

    input[type="radio"]:checked + label span {
        background: url(../Images/radiosheet.png) -19px top no-repeat;
        font-weight: 300;
    }

input.radio-force[type="checkbox"] {
    display: none;
}

    input.radio-force[type="checkbox"] + label span {
        display: inline-block;
        width: 19px;
        height: 19px;
        margin: -2px 4px 0 0;
        vertical-align: middle;
        background: url(../Images/radiosheet.png) left top no-repeat;
        cursor: pointer;
    }

    input.radio-force[type="checkbox"]:checked + label span {
        background: url(../Images/radiosheet.png) -19px top no-repeat;
        font-weight: 300;
    }

.radiobutton {
    display: inline;
}
/**************************************************************/

/***************** DATATABLE SORT ICONS (FONT AWESOME) ********************/

table.dataTable thead th.sorting:after {
    font-family: FontAwesome;
    content: "\f07d";
    color: #000;
    font-size: 0.8em;
    padding-top: 0.12em;
}

table.dataTable thead th.sorting_asc:after {
    font-family: FontAwesome;
    content: "\f062";
}

table.dataTable thead th.sorting_desc:after {
    font-family: FontAwesome;
    content: "\f063";
}

/**************************************************************************/

/************************************** CUSTOM CONTENT CONTIANERS ************************************/
.content-small {
    width: 500px;
    background-color: #f7f7f7;
    padding: 15px 50px;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
}

.content-medium {
    width: 750px;
    background-color: #f7f7f7;
    padding: 15px 50px;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
}

.content-large {
    width: 100%;
    background-color: #f7f7f7;
    padding: 15px 50px;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
}
/**************************************************************************/
