h1{
    color:rebeccapurple;
}
body{
    background-color: rgb(244, 246, 249);
}

html, body {
    height:100%;
    overflow:hidden;
    background-color: rgb(244, 246, 249);
}
.wrapper {
    overflow-y:scroll;
    height: 90%;
}
.footer {
    position:static;
    bottom: 0;
    height: 10%;
    text-align: center;
}


.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid  rgb(46, 112, 203);
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.flex-container {
    display: flex;
    justify-content: center;
    text-align: center;
}
.fb {
    background-color: #3B5998;
    color: white;
}
.sf{
    background-color: rgb(46, 112, 203);
    color: white;
}
.btn {
    text-align:center;
    /* width: 40%;
    height: 60px; */
    padding: 12px;
    border: none;
    border-radius: 4px;
    margin: 5px;
    display: inline-block;
    font-size: 17px;
    line-height: 20px;
    text-decoration: none;
}
.btnlogin {
    text-align:center;
    /* width: 40%;
    height: 60px; */
    padding: 12px;
    border: none;
    border-radius: 4px;
    margin: 5px;
    display: inline-block;
    font-size: 17px;
    line-height: 20px;
    text-decoration: none;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: #3B5998;
    color: white;
}
.btn:hover{
    opacity: 0.7;
}
.btn-lo {
    width:40px;
    height:20px;
}
.card{
    margin: 20px;
    padding: 0;
    background: var(--lwc-cardColorBackground,rgb(255, 255, 255));
    border: var(--lwc-borderWidthThin,1px) solid var(--lwc-cardColorBorder,rgb(221, 219, 218));
    border-radius: var(--lwc-borderRadiusMedium,0.25rem);
    background-clip: padding-box;
    box-shadow: var(--lwc-cardShadow,0 2px 2px 0 rgba(0, 0, 0, 0.10));
    text-align: center;
}
.logo{
    width: 50px;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
}
#info{
    margin-left: 20px;
    margin-bottom: 5px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    text-align: left;
}
#description{
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 0px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: lighter;
    text-align: left;
}

#pageComp{
    margin: 20px;
    padding: 0;
    background: var(--lwc-cardColorBackground,rgb(255, 255, 255));
    border: var(--lwc-borderWidthThin,1px) solid var(--lwc-cardColorBorder,rgb(221, 219, 218));
    border-radius: var(--lwc-borderRadiusMedium,0.25rem);
    background-clip: padding-box;
    box-shadow: var(--lwc-cardShadow,0 2px 2px 0 rgba(0, 0, 0, 0.10));
}
#pageHeader{
    font-family: Arial, Helvetica, sans-serif;
    background: rgb(243, 242, 242);
    margin-top: 0px;
    padding-bottom: 20px;
    padding-top: 20px;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    padding-left: 20px;
    display: flex;
}
#pageimage{
    background-color:  rgb(229, 122, 122);
    width: auto;
    height: 25px;
    border-radius: var(--lwc-borderRadiusMedium,0.25rem);
    margin-right: 10px;
}

/* #pagelist{
    border:solid lightgrey 2px;
    border-radius:10px;
} */
#pageitem{
    border-bottom: var(--lwc-borderWidthThin,1px) solid var(--lwc-cardColorBorder,rgb(221, 219, 218));
    margin-bottom: 10px;
    padding-bottom: 10px;
}
#pagelist > div{    
    font-family:Arial, Helvetica, sans-serif; 
}
#pagelist > hr {
    width : 90%;
}
#nolist{
    border:solid lightgrey 2px;
    border-radius:10px;
    margin:5%;
    padding:30px;
    display:flex;
    text-align: center;
    align-items:center;
    justify-content:center;
}
#successComp{
    border:solid lightgrey 2px;
    border-radius:10px;
    margin:5%;
    padding:30px;
    display:flex;
    text-align: center;
    align-items:center;
    justify-content:center;
}
#user_name {
    font-family:Arial, Helvetica, sans-serif;
    text-align:right;
    color:grey;
    font-size:12px;
}
#connectbtn {
    position: fixed;
    width:100%;
}
/* Toast */
#snackbar {
    visibility: hidden;
    opacity : 90%;
    min-width: 80%;
    min-height: 10%;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    top: 30px;
    font-size: 17px;
  }
  
  #snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }
  
  @-webkit-keyframes fadein {
    from {top: 0; opacity: 0;} 
    to {top: 30px; opacity: 0.9;}
  }
  
  @keyframes fadein {
    from {top: 0; opacity: 0;}
    to {top: 30px; opacity: 0.9;}
  }
  
  @-webkit-keyframes fadeout {
    from {top: 30px; opacity: 0.9;} 
    to {top: 0; opacity: 0;}
  }
  
  @keyframes fadeout {
    from {top: 30px; opacity: 0.9;}
    to {top: 0; opacity: 0;}
  }