<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.cd__main{
   display: block !important;
}

.fab-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  user-select: none;
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
  opacity: 0.2;
}
.fab-container:hover {
  height: 100%;
  opacity: 0.9;
}
.fab-container:hover .sub-button:nth-child(2) {
  transform: translateY(-20px);
}
.fab-container:hover .sub-button:nth-child(3) {
  transform: translateY(-100px);
}
.fab-container:hover .sub-button:nth-child(4) {
  transform: translateY(-180px);
}
.fab-container:hover .sub-button:nth-child(5) {
  transform: translateY(-260px);
}
.fab-container:hover .sub-button:nth-child(6) {
  transform: translateY(-340px);
}
.fab-container .fab {
  position: relative;
  height: 100px;
  width: 100px;
  background-color: red;
  border-radius: 50%;
  z-index: 1000;
}
.fab-container .fab::before {
  content: " ";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 50px;
  width: 50px;
  background-color: inherit;
  border-radius: 0 0 5px 0;
  z-index: -999;
}
.fab-container .fab .fab-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  border-radius: 50%;
}

.fab-container .fab .fab-content .material-icons {
  color: white;
  font-size: 60px;
}

.fab-container  .title {
  position: fixed ;
  left:100px;
  bottom: 30px;
  padding: 10px 10px 10px 40px;
  background-color: maroon;
  color: #fff;
  border-radius: 10px;
  font-family: Montserrat;
}

.fab-container .sub-button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 10px;
  left: 10px;
  height: 70px;
  width: 70px;
  background-color: #4ba2ff;
  border-radius: 50%;
  transition: all 0.3s ease;

}
.fab-container .sub-button:hover {
  cursor: pointer;
  background-color: red;
    -webkit-transition: background-color 1000ms linear;
    -ms-transition: background-color 1000ms linear;
    transition: background-color 1000ms linear;
}
.fab-container .sub-button .material-icons {
  color: white;
  padding-top: 5px;
  font-size: 32px;
}</pre></body></html>