.Footer{
  background: #f6f4f4;
  background: #ffffff;
  width: 98%;
  padding: 3px 1%;
  height:80px;
  display:none;
  border-top:1px solid #d0d8db;
  border-bottom:1px solid #d0d8db;
  margin-top:20px;
}

.Footer ul {
  
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.Footer li {
  
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.Footer.Absolute{
  position:fixed;
  bottom:0px;
  left:0px;
  right:0px;
}

.Footer a,
.Footer a:is(:focus, :hover){
 
  text-decoration:none;
}

.Footer,
.Footer a{
  color: #333333;
}

.FooterLinks,
.FooterCredit{
  text-align:center;
}

.FooterCredit{
  
  direction:ltr;
  padding: 5px;
  box-sizing: borde-box;
}

.Footer > .FooterIcons {

  display: flex;
  justify-content: center;
  text-align: center;
}

.Footer > .FooterIcons > ul {
  
  display: flex;
  flex-flow: row wrap;
  margin: auto;
  padding: 15px;
}

.Footer > .FooterIcons > ul > li {

  margin: 0 5px;
}

.Footer > .FooterIcons > ul > li a {
  
  display: block;
  transition: 200ms;
}

.Footer > .FooterIcons > ul > li a:is( :focus, :hover ) {
  
  transform: scale(1.1);
}

.Footer > .FooterIcons .grayIconBackground {
  
  background: #5f5b5b;
  padding: 5px;
  border-radius: 50%;
  display: flex;
}

.Footer > .FooterIcons .grayIconBackground > img {
  
  width: 15px;
  height: 15px;
}

.Footer > .FooterLinks {
  
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  text-align: center;
}

.Footer > .FooterLinks > ul {
  
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  text-align: center;
  margin: 0;
}

.Footer > .FooterLinks > ul li a {
  
  position: relative;
  box-sizing: border-box;
  display: block;
  padding: 5px;
  line-height: 1;
  font-size: 12px;
}

.Footer > .FooterLinks > ul li a:before {
  
  content: '';
  box-sizing: border-box;
  position: absolute;
  bottom: 3px;
  right: 5px;
  left: 5px;
  width: 0;
  border-bottom: 1px solid var(--color3);
  transition: 200ms;
}

.Footer > .FooterLinks > ul li a:is(:focus, :hover):before {
  
  width: calc(100% - 10px);
}


.Footer > .FooterLinks > ul li a:after {
  
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-end: 0;
  border-inline-end: 1px solid var(--color3);
  height: 14px;
}

.Footer > .FooterLinks > ul li:last-child a:after {
  
  content: none;
}

.Footer.Relative {
  
  display: block;
  height: auto;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

.Footer.Absolute{
  
  display: table;
}