/* 
 * Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
 * See LICENSE in the project root for license information.
 */

 html,
 body {
     width: 100%;
     height: 100%;
     margin: 0 2%;
     padding: 0;
     overflow-x: hidden;
 }
 
 ul {
     margin: 0;
     padding: 0;
 }
 
 .ms-welcome__main {
     display: -webkit-flex;
     display: flex;
     -webkit-flex-direction: column;
     flex-direction: column;
     -webkit-flex-wrap: nowrap;
     flex-wrap: nowrap;
     -webkit-flex: 1 0 0;
     flex: 1 0 0;
 }
 
 .ms-welcome__main > h2 {
     font-weight: 500;
 }
 
 .ms-welcome__features {
     list-style-type: none;
     margin-top: 20px;
 }
 
 .ms-welcome__features.ms-List .ms-ListItem {
     padding-bottom: 10px;
     display: -webkit-flex;
     display: flex;
 }
 
 .ms-welcome__features.ms-List .ms-ListItem > .ms-Icon {
     margin-right: 10px;
 }
 
 .ms-welcome__action.ms-Button--hero, #edit {
     margin-top: 30px;
 }

 #delete, #new {
    margin-top: 10px;
 }
  
 .ms-Button.ms-Button--hero .ms-Button-label,
 .ms-Button.ms-Button--hero i {
     color: #0078d7;
     cursor: pointer;
 }
 
 .ms-Button.ms-Button--hero:hover .ms-Button-label,
 .ms-Button.ms-Button--hero:focus .ms-Button-label {
     color: #005a9e;
 }

 #cancel .ms-Button-label {
     color: #555555;
     cursor: pointer;
 }

 #cancel:hover .ms-Button-label {
     color: #555555;
 }

 #delete .ms-Button-label,
 #delete i {
     color: #ff0000;
     cursor: pointer;
 }

 #delete:hover .ms-Button-label,
 #delete:focus .ms-Button-label {
     color: #aa0000;
 }

 #new .ms-Button-label,
 #new i {
     color: #008000;
     cursor: pointer;
 }

 #new:hover .ms-Button-label,
 #new:focus .ms-Button-label {
     color: #004a00;
 }

 .ms-DropdownList {
     width: 92%;
     padding: 7px;
 }
 
 .ms-Inputs {
     padding: 5px;
     width: 88%;
 }

 .padR {
    padding-right: 10px;
 }

 .error-msg, .error-msg-2 {
    color: #ff0000;
    display: none;
    margin-bottom: 0;
 }

 .buttons {
    display: flex;
    width: 92%;
    justify-content: space-between;
 }

 .buttons > div {
    flex: 1;
    text-align: center;
 }

 .buttons > div:first-of-type {
    text-align: left;
 }

 .buttons > div:last-of-type {
    text-align: right;
 }

 #save_mod  {
    display: none;
    text-align: left;
 }

 b {
     font-weight: bold;
 }

 br {
     display: block;
     content: " ";
     margin-top: 20px;
 }

 .flex {
     width: 92%;
     display: flex;
     justify-content: space-between;
 }

 .equal {
     width: 30%;
 }

 .full {
     width: 100%;
 }

 .hidden {
     display: none;
 }

 .titles {
     padding-bottom: 5px;
 }

 .pad1 {
     margin-left: 10px;
 }

 .pad2 {
    margin-left: 25px;
}