﻿@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,600&display=swap');

* {
    box-sizing: border-box;
}

p {
    color:rgba(153,153,153,1);
    margin-bottom:30px;
}

body {
    background-color: rgb(250,250,250);
    font-family: 'Roboto', Arial, Verdana;
    font-size: 12pt;
    margin: 0px;
    color: #666666;
    font-weight: 400;
}

a {
    color: #666666;
}

.boxMenuHeaderIcon {
    top: 5px;
    position: relative;
    margin-right: 8px;
}

.myLoginHeaderContainer {
    width: 100vw;
    padding: 10px;
}

.headerLogoContainer {
    width: 100%;
    text-align: center;
}

.topLogo {
    width: auto;
    max-height: 58px;
    max-width: 100%;
}

.headerWelcomeContainer {
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin-top: 6px;
    margin-bottom: 6px;
}

.headerUserNameContainer {
    width: 100%;
    text-align: center;
    font-size: 12pt;
}

.logOffContainer {
    padding: 12px;
    width: 100%;
    text-align: center;
}

.boxContainer {
}

.box {
    width: 830px;
    margin: 0 auto;
    color: black;
    font-size: 16px;
    margin-bottom: 50px;
    background-color: #FFFFFF;
    box-sizing: border-box;
    padding: 60px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 1px 5px 0px rgba(153,153,153,1);
    -moz-box-shadow: 0px 1px 5px 0px rgba(153,153,153,1);
    box-shadow: 0px 1px 5px 0px rgba(153,153,153,1);
    -webkit-border-radius: 3px;
}

.boxCloseCSS {
    position: relative;
    top: -50px;
    left: calc(100% + 35px);
    color: rgba(0,0,0,0.5);
    font-size: 20px;
    display: inline;
    cursor: pointer;
}

.boxMenuItem {
    width: 32%;
    margin: 0 auto;
    color: black;
    font-size: 16px;
    margin-bottom: 20px;
    background-color: #FFFFFF;
    box-sizing: border-box;
    padding: 8px;
    border: 1px solid rgba(153,153,153,1);
    color: rgba(153,153,153,1);
    border-radius: 3px;
    float: left;
    height: 137px;
    display: inline-block;
    margin-right: 8px;
}
.boxMenuItem:hover {
    background-color: #F0F0F0;
}

.boxMenuDescription {
    font-style:italic;
    height:80px;
    overflow:hidden;
    text-align:center;
}

.boxMenuHeader {
    /* Fill out styles here to change the menu items heading from boxHeaderStyle*/
}

.boxHeader {
    width: 100%;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: rgba(0,0,0,0.5);
}

.boxLabel {
    margin-bottom: 10.5pt;
    color: rgba(0,0,0,0.5);
    display: inline-block;
    text-transform: uppercase;
    font-size: 14px;
    width: 250px;
}

.boxDropDownListFullWidth {
    margin-bottom: 10.5pt;
    display: inline-block;
    width: 100%;
    font-size: 16px;
    font-family: Roboto;
    border-radius: 5px;
    border: 1px solid #F1EEEA;
    cursor: pointer;
    padding: 10px;
    position: relative;
    height: 42px;
    line-height: 28px;
    box-sizing: border-box;
    background: #f4f4f4;
    -webkit-border-radius: 5px;
}

.boxDropDownList {
    display: inline-block;
    width: 455px;
    font-size: 16px;
    font-family: Roboto;
    border-radius: 5px;
    border: 1px solid #F1EEEA;
    cursor: pointer;
    padding: 10px;
    position: relative;
    height: 42px;
    line-height: 28px;
    box-sizing: border-box;
    background: #f4f4f4;
    -webkit-border-radius: 5px;
}

.boxTextField {
    border-radius: 5px;
    border: 1px solid #F1EEEA;
    cursor: pointer;
    padding: 10px;
    position: relative;
    height: 42px;
    line-height: 28px;
    box-sizing: border-box;
    width: 455px;
    font-size: 16px;
    font-family: Roboto;
    background: #f4f4f4;
    -webkit-border-radius: 5px;
}

.boxFieldContainer {
    width: 100%;
    margin-bottom: 30px;
}

.boxBtnContainer {
    text-align: right;
}

.right {
    text-align: right;
}

.left {
    text-align: left;
}

.center {
    text-align: center;
}

.button {
    height: 50px;
    padding: 10px 20px;
    min-width: 200px;
    background: rgb(235,93,11);
    text-transform: uppercase;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    -webkit-appearance: none;
    font-family: Roboto;
    cursor: pointer;
    font-size: 16px;
    color: white;
    border: 1px solid #F1EEEA;
    text-decoration: none;
    margin-bottom: 5px;
}

.boxErrorContainer {
    background-color: #f4f4f4;
    border: 1px solid #808080;
    border-radius: 5px;
    padding: 12px;
    color: #BA3B3B;
    margin-bottom: 24px;
}

.boxMessageContainer {
    background-color: #f4f4f4;
    border: 1px solid #808080;
    border-radius: 5px;
    padding: 12px;
    color: rgb(91,187,58);
    margin-bottom: 24px;
}

@media only screen and (max-width: 767.999999999px) {
    .box {
        padding: 15px;
        min-width: unset;
        width: auto;
        margin-left: 5px;
        margin-right: 5px;
    }

    .boxCloseCSS {
        left:calc(100% - 10px);
        top:0px;
    }

    .boxTextField {
        width: 100%;
    }

    .boxBtnContainer {
        text-align: center;
    }

    .boxMenuItem {
        width: 48%;
    }
}

@media only screen and (max-width: 500px) {
    .boxMenuItem{
        width:100%;
    }
}

.logOffContainer {
    padding: 12px;
    width: 100%;
    text-align: center;
}

.bottomContainer {
    clear: both;
    margin-bottom: 12px;
    color: #666666;
    box-sizing: border-box;
    padding: 50px 12px;
    border-top: solid 1px #e5e5e5;
    margin-top: 20px;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.bottomCompanyName {
    font-weight: 300;
    font-size: 18pt;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.gridView {
    width: 100%;
    border-spacing: 0px;
    border-collapse:collapse;
} 

.gridView td {
    padding:3px;
}

.gridViewAlternateRow {
    background-color:#eeeeee;
}

.gridViewHead {
    color: black;
    border-bottom: 1px solid black;
    font-weight: 500;
}

.fileUploadContainer {
    width: 100%;
    height: 75px;
    background-color: rgb(91,187,58);
    color:white;
    font-size:48px;
    text-align:center;
    background-image:url('/MitLogin/Resources/CSS/fileupload_background.png');
    background-position:center center;
    background-repeat:no-repeat;
}

.fileUploadContainer input[type='file'] {
    opacity:0;
    width:100%;
    height:100%;
    position:relative;
    top:-30px;
}

