/* 
 * 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: 100px;
   display: -webkit-flex;
   display: flex;
   -webkit-flex-direction: column;
   flex-direction: column;
   align-items: center;
 }
 
 .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: 10px 20px;
 }
 
 .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;
 }
 

 .loader-container {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  background: rgba(255, 255, 255, 0.834);
  z-index: 1;
}

.spinner {
  width: 64px;
  height: 64px;
  border: 8px solid;
  border-color: #3d5af1 transparent #3d5af1 transparent;
  border-radius: 50%;
  animation: spin-anim 1.2s linear infinite;
}

@keyframes spin-anim {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

/* triangles */

.triangles {
  transform: translate(-50%, -50%);
  height: 81px;
  width: 90px;
  position: absolute;
  left: 50%;
  top: 50%;
}

.tri {
  position: absolute;
  animation: pulse 750ms ease-in infinite;
  border-top: 27px solid #5a5a5a;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 0px;
}
.tri.invert {
  border-top: 0px;
  border-bottom: 27px solid #5a5a5a;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
}
.tri:nth-child(1) {
  left: 30px;
}
.tri:nth-child(2) {
  left: 15px;
  top: 27px;
  animation-delay: -125ms;
}
.tri:nth-child(3) {
  left: 30px;
  top: 27px;
}
.tri:nth-child(4) {
  left: 45px;
  top: 27px;
  animation-delay: -625ms;
}
.tri:nth-child(5) {
  top: 54px;
  animation-delay: -250ms;
}
.tri:nth-child(6) {
  top: 54px;
  left: 15px;
  animation-delay: -250ms;
}
.tri:nth-child(7) {
  top: 54px;
  left: 30px;
  animation-delay: -375ms;
}
.tri:nth-child(8) {
  top: 54px;
  left: 45px;
  animation-delay: -500ms;
}
.tri:nth-child(9) {
  top: 54px;
  left: 60px;
  animation-delay: -500ms;
}
@keyframes pulse {
  0% {
    opacity: 1;
  }
  16.666% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}