@font-face {
  font-family: "VisbyCF";
  src: url(../fonts/visby/VisbyCF-Regular.ttf);
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "VisbyCF";
  src: url(../fonts/visby/VisbyCF-Medium.ttf);
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: "VisbyCF";
  src: url(../fonts/visby/VisbyCF-Bold.ttf);
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "VisbyCF";
  src: url(../fonts/visby/VisbyCF-ExtraBold.ttf);
  font-style: normal;
  font-weight: 700;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Main Code */

body {
  background: #1c1d21;
  color: #fefefe;
  font-family: VisbyCF;
  transition: all ease 350ms;
}

header {
  padding: 20px 25px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80vw;
  margin: 0 auto;
  transition: all ease 350ms;
}

main {
  background: #242529;
  padding: 20px;
  width: 80vw;
  margin: 0 auto;
  border-radius: 10px;
  transition: all ease 350ms;
}

footer {
  text-align: center;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  box-shadow: -50px -50px 100px 10px rgba(28, 29, 33, 1) inset;
  padding: 1em 0;
  transition: all ease 350ms;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  align-items: center;
}

header > h1 {
  font-size: 1.6em;
  font-weight: 700;
}

main > h1 {
  margin: 0 auto;
  text-align: center;
  width: 50%;
}

.table-container {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 0.8em;
}

.thead {
  font-weight: bolder;
  transition: all ease 350ms;
}

.col-name,
.col-status,
.col-links,
.col-action {
  display: flex;
  justify-content: center;
  align-items: center;
  /* border: 1px solid#fefefe ; */
  padding: 10px 0px;
  font-size: 1em;
  letter-spacing: 0.04em;
}

.col-name {
  /* grid-column: 1/3; */
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5em;
  /* border-bottom: .1px outset gray; */
  box-shadow: 0px 4px 5px -6px grey;
}

.col-name:first-child {
  box-shadow: none;
  margin-right: -1em;
}

.thead {
  position: sticky;
  top: 0;
  background: #2425297d;
  z-index: 1;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.app-name {
  grid-column: 1/3;
  align-self: end;
  font-weight: 600;
}

.app-updated,
.app-version {
  font-size: 12px;
  color: #a9a9a9;
  align-self: start;
}

.col-links > a > img {
  height: 50px;
  /* transform: scale(1.6); */
  /* translate: 0 2px; */
  /* border-radius: 10px; */
  /* height: 20px; */
}

/* images */

.android,
.ios {
  overflow: hidden;
  border-radius: 10px;
  display: inherit;
}

header > picture {
  display: inline-grid;
  width: 50%;
  justify-items: right;
}

footer > picture {
  grid-column: 2;
}

footer > .switch {
  grid-column: 3;
  justify-self: end;
  margin-right: 20px;
}

#FS_iso {
  width: 25%;
}

#FS_logo {
  width: 30vw;
}

@media only screen and (min-width: 1025px) {
  #FS_logo {
    width: 15%;
  }

  #FS_iso {
    width: 14%;
  }
}

.body-light {
  background: #eee;
  color: #454545;
}

.main-light {
  background: #fff;
}

.header-light {
  background: none;
}

.cls-2-light {
  fill: #6f6f6e !important;
}

.footer-light {
  box-shadow: -50px -50px 100px 10px #eee inset;
}

.img-light {
  box-shadow: 0px 0px 0px 1px #cccccc75;
}

.thead-light{
  background: rgba(255, 255, 255, 0.6);
}

/* sections */

fieldset {
  grid-column: 1/3;
  border-top: 1px dotted gray;
  line-height: 0px;
  margin-top: 3em;
}

fieldset:nth-child(0){
  margin-top: 0px;
}

legend {
  text-align: center;
  margin: 0 auto;
  padding: 1em;
  font-weight: 700;
  font-size: 1.2em;
}


/* installing */

.installing{
display: none;
}