/*
 * 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;
     padding: 0;
 }

 ul {
     margin: 0;
     padding: 0;
 }

 .ms-welcome__header {
    padding: 20px;
    padding-bottom: 30px;
    padding-top: 30px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
 }

 #sideload-msg {
   position: absolute;
   width: 100%;
   z-index: -1;
 }
 .ms-welcome__main {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex: 1 0 0;
    flex: 1 0 0;
    padding: 0px;
    height: 100%;
 }

 .ms-welcome__main > h2 {
     width: 100%;
     text-align: center;
 }

 .ms-welcome__features {
     list-style-type: none;
     margin-top: 20px;
 }

 .ms-welcome__features.ms-List .ms-ListItem {
     padding-bottom: 20px;
     display: -webkit-flex;
     display: flex;
 }

 .ms-welcome__features.ms-List .ms-ListItem > .ms-Icon {
     margin-right: 10px;
 }

 .ms-welcome__action.ms-Button--hero {
     margin-top: 30px;
 }

.ms-Button.ms-Button--hero .ms-Button-label {
  color: #0078d7;
}

.ms-Button.ms-Button--hero:hover .ms-Button-label,
.ms-Button.ms-Button--hero:focus .ms-Button-label{
  color: #005a9e;
  cursor: pointer;
}

b {
    font-weight: bold;
}

.ms-font-su{
  margin-bottom: 0px;
}

.popup{
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.59);
}
.popup .content{
  width: 250px;
  max-width: 95%;
  padding: 20px;
  z-index: 1;
  background-color: white;
  display: flex;
  flex-flow: column;
}
.popup .content .header{
  border-bottom: 1px solid darkgray;
  text-align: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.popup .content .body{
  margin-bottom: 15px;
  text-align: center;
}
.popup .content .footer{
  display: flex;
  flex-flow: row;
  justify-content: center;
}
.popup .content .footer a{
  text-decoration: none;
  margin-right: 15px;
}
.popup .content .footer .button{
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 2px;
  background-color: #f4f4f4;
  color: #333;
  cursor: pointer;
  border: 1px solid darkgray;
}
