﻿@font-face {
    font-family: 'MSLA';
    src: url('../fonts/mdl2.woff') format('woff'),
        url('../fonts/mdl2.eot') format('embedded-opentype'),
        url('../fonts/mdl2.svg') format('svg'),
        url('../fonts/mdl2.ttf') format('truetype');
}
.bodystyle {
    margin: 0 auto;
    font-family: 'Cairo', sans-serif;
    font-size: 12pt;
    overflow: hidden;
    background: rgb(15,30,65);
}

.OverHidden{
    overflow: hidden !important;
}

h1, h2, h3, h4, h5 {
    margin: 0px;
    padding: 0px;
}

h1 {
    font-size: 30pt;
    font-weight: 900;
}

h2 {
    font-size: 25pt;
    font-weight: 400;
}

h3 {
}

h4 {
}

h5 {
}

p {
    margin: 0px;
}

article {
}

aside {
}

blockquote {
}

a {
    color: rgb(237,28,36);
    text-decoration: none;
}

    a:hover {
        cursor: pointer !important;
    }

abbr, acronym {
}

ul, li, ol {
}

address {
}

button, input, textarea {
    font-family: 'Cairo', sans-serif !important;
    font-size: 12pt;
    border: none !important;
    outline: none !important;
}

input, textarea {
    margin: 0px !important;
    padding: 0px !important;
}
/* ScrollBar */


::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-button {
    display: none;
}

::-webkit-scrollbar-track {
    /*background-color: darkred;*/
}

::-webkit-scrollbar-track-piece {
    background: rgb(35,55,105);
    /*border-left: 1px #111 solid;*/
}

::-webkit-scrollbar-thumb {
    background: rgb(0,174,239);
}

::-webkit-scrollbar-corner {
    display: none;
}

::-webkit-resizer {
    display: none;
    /*background-color: darkred;*/
}


/* Grid */

.DataGrid {
    width: 103%;
    padding: 20px 50px;
    background: rgb(35,55,105) !important;
    box-sizing: border-box;
}

.TwoGrid {
    display: grid;
    grid-template-columns: 4fr 1fr;
    grid-column-gap: 20px;
}

.ThreeGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 20px;
}

.FourGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 20px;
}

.FiveGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-column-gap: 20px;
}

.SixGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-column-gap: 20px;
}


/* Other Styles */

.validation {
    position: absolute;
    top: 0px;
    left: -15px;
    max-width: 110px;
    line-height: 20px;
    color: rgb(237,28,36);
    font-weight: 700;
    font-size: 1em;
}

.PositionReletive {
    position: relative;
}

.InputLabel {
    position: absolute;
    top: 0px;
    left: 10px;
    color: #909090 !important;
    font-weight: 300;
    transform: translate3d(0, 0, 0);
    transition: all 0.2s ease-in-out;
}

input:valid + .InputLabel, input:focus + .InputLabel {
    color: #51A2DA !important;
    font-weight: 700;
    font-size: 12px;
    transform: translate3d(0, -20px, 0);
}

.iconAsset {
    font-family: MSLA;
}

.clear {
    clear: both;
}

/* Grid Style */

.GridLink a {
    text-decoration: underline;
    color: #00AEEF !important;
    font-weight: 600;
    transition: 0.3s all;
}

    .GridLink a:hover {
        color: #ed1c24 !important;
    }

.GridTableThree > Table > thead > tr:nth-child(2) > th, .GridTableThree > Table > thead > tr:nth-child(2) > th > a,
.GridTable > Table > thead > tr:nth-child(2) > th, .GridTable > Table > thead > tr:nth-child(2) > th > a {
    background: rgb(0,130,180);
    color: white !important;
    height: 40px;
}

.GridTableThree > Table > thead > tr:nth-child(1) > td, .GridTableThree > Table > thead > tr:nth-child(2) > th,
.GridTable > Table > thead > tr:nth-child(1) > td, .GridTable > Table > thead > tr:nth-child(2) > th {
    border: 0px;
}

.GridTableThree > Table > thead > tr > th, .GridTableThree > Table > thead > tr > th > a,
.GridTable > Table > thead > tr > th, .GridTable > Table > thead > tr > th > a {
    color: white !important;
}


.GridTableThree > Table > thead > tr, .GridTableThree > Table > tfoot > tr, .GridTableThree > Table > tbody > tr,
.GridTable > Table > thead > tr, .GridTable > Table > tfoot > tr, .GridTable > Table > tbody > tr {
    min-height: 30px;
    height: 30px;
    max-height: 30px;
}

    .GridTableThree > Table > tbody > tr > td:nth-child(1), .GridTableThree > Table > tbody > tr > td:nth-child(2),
    .GridTable > Table > tbody > tr > td:nth-child(1), .GridTable > Table > tbody > tr > td:nth-child(2) {
        width: 35px !important;
    }

    .GridTable > Table > tbody > tr > td:nth-child(3), .GridTable > Table > tbody > tr > td:nth-child(4) {
        width: 50% !important;
    }

.GridCommandsStyle > td {
    background: rgb(35,55,105) !important;
    border: 0px;
}

.GridCommandBox {
    padding: 20px 0px;
}

    .GridCommandBox > div {
        display: inline-block;
        line-height: 40px;
    }

.GridCommandText {
    margin-right: 50px;
}

.CommandsStyle {
    width: 100%;
    text-align: center;
    color: rgb(0,0,0);
}

    .CommandsStyle a {
        box-sizing: border-box;
        margin: 0px 20px;
        font-weight: 600;
        color: rgb(255,255,255) !important;
        transition: all 0.5s;
    }

        .CommandsStyle a:hover {
            color: rgb(0,174,239) !important;
        }

            .CommandsStyle a:hover > span {
                color: rgb(237,28,36) !important;
            }

        .CommandsStyle a > span {
            margin-right: 15px;
            font-weight: 400;
            color: rgb(255,255,255) !important;
            transition: all 0.5s;
        }

.SectionSettingsInput {
    width: 100% !important;
    text-indent: 2px;
}

.GridTable > Table > tbody > tr > td > div, .GridTable > Table > thead > tr > td > div {
    width: 100% !important;
}

.rgEditRow > td {
    border-color: #e6e6e6 !important;
    background: rgb(0,174,239) !important;
}

    .rgEditRow > td, .rgEditRow > td > a {
        color: white !important;
    }

.rgSelectedRow > td > span {
    color: white !important;
}
