﻿/*.glass {
    position: relative;
    display: inline-block;
    padding: 15px 25px;
    background: green;
    background-image: linear-gradient(green,lightgreen);
    text-decoration: none;
    color: #fff;
    font-size: 25px;
    font-family: sans-serif;
    font-weight: 100;
    border-radius: 3px;
    box-shadow: 0px 1px 4px -2px #333;
    text-shadow: 0px -1px #333;
}

    .glass:after {
        content: '';
        position: absolute;
        top: 2px;
        left: 2px;
        width: calc(100% - 4px);
        height: 50%;
        background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.2));
    }

    .glass:hover {
        background: linear-gradient(#073,#0fa);
    }*/

.InputField {
    font-size: 18px;
    border: 1px lightgray solid;
    height: 35px !important;
    width: 100%;
    border-radius: 3px;
    box-sizing: border-box !important;
}

.SelectField {
    font-size: 18px !important;
    border: 1px lightgray solid;
    height: 35px !important;
    width: 100%;
    border-radius: 3px;
    box-sizing: border-box !important;
}

.TextareaField {
    font-size: 20px !important;
    border: 1px lightgray solid;
    width: 100%;
    border-radius: 3px;
    box-sizing: border-box !important;
}

.LabelField {
    font-size: 18px;
    margin: 0px 10px;
    display: block;
}

.MandatoryRedStar {
    color: red;
    vertical-align: bottom;
    font-size: 20px;
}

.FieldWrapper {
    margin: 5px;
    display: inline-block;
    /*text-align: center;*/
}

table tr td {
    width: 0%;
}

.SubmitButton {
    border: 0;
    padding: 10px 30px;
    border-radius: 7px;
    background-image: linear-gradient(green, darkgreen);
    color: white;
    font-size: 20px;
    cursor: pointer;
}

    .SubmitButton:disabled {
        border: 0;
        padding: 10px 30px;
        border-radius: 7px;
        background-image: linear-gradient(gray, darkgray);
        color: white;
        font-size: 20px;
        cursor: pointer;
    }

.ModalBackground {
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: #808080;
    opacity: 0.5;
    z-index: 1;
}

.ModalWindow {
    position: fixed;
    top: 30%;
    right: 30%;
    bottom: 30%;
    left: 30%;
    background: white;
    border: 0;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 10px 10px 5px #888888;
    z-index: 1;
}

.ModalCloseButton {
    border-radius: 20px;
    border: 1px gray solid;
    position: absolute;
    right: -10px;
    top: -10px;
    background-color: white;
    padding: 7px 10px;
    color: gray;
}

.ModalWrapper {
}

.NonValidated {
border: red 1px solid !important;
}

 [ng\: cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x- ng-cloak {
      display: none !important;
    }