html {
  --cta_image_width: 120px;
  --cta_image_height: 120px
}
@media (max-width:1023px) {
  html {
    --cta_image_width: 120px;
    --cta_image_height: 120px
  }
}
.cta_wrapper>.inside {
  position:fixed;
  top:80vh;
  z-index:1;
  
-moz-box-shadow:0px 0px 5px #333;
-webkit-box-shadow:0px 0px 5px #333;
box-shadow:0px 0px 5px #333;
}


.cta_wrapper>.inside.left {
  left:0
}
.cta_wrapper>.inside.right {
  right:0
}
.cta_wrapper>.inside a {
  display:block
}

.cta_wrapper>.inside a:hover {
	background-color:rgba(0,0,0,0.1);
}

.cta_wrapper>.inside a img {
  width:var(--cta_image_width);
  height:var(--cta_image_height);
  object-fit:contain;
  object-position:center;
  margin:auto

}


