<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* VARIABLES -  START */
/* COLORS  */
/* VARIABLES - END */
/* COMMONS - START */
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
* {
  box-sizing: border-box;
  margin: 0;
}
/* COMMONS - END */
/* STYLES -  START */
.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #c1ffe2;
  position: relative;
  z-index: 2;
}
.wrapper .container {
  width: 120px;
  height: 120px;
}
.wrapper .container .button {
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 15px;
  cursor: pointer;
  position: relative;
  z-index: 10;
}
.wrapper .container .button .file,
.wrapper .container .button .file2 {
  height: 40px;
  width: 35px;
  background-color: #89e9be;
  position: absolute;
  top: 56px;
  left: 64px;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  z-index: 5;
}
.wrapper .container .button .file:after,
.wrapper .container .button .file2:after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  height: 14px;
  width: 14px;
  background: linear-gradient(45deg, #68b18d 50%, white 50%);
  z-index: 2;
}
.wrapper .container .button .file2 {
  transform-origin: right bottom;
}
.wrapper .container .button .file:before {
  content: "";
  position: absolute;
  top: 8px;
  left: -8px;
  height: 40px;
  width: 35px;
  background-color: #89e9be;
  opacity: 0.5;
  z-index: -2;
  border-radius: 5px;
}
/* STYLES - END */</pre></body></html>