.page-wrapper {
    position: relative;
}
.tree-left {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.tree-icon {
    position: relative;
    width: 35px;
    height: 51px;
    margin-left: 13px;
}

.tree-svg {
    position: absolute;
    width: 100%;
    fill: #3d3d3d; /* trunk color */
    z-index: 2;
}

.leaves-svg {
    position: absolute;
    width: 100%;
    fill: #9acd48; /* leaf color */
    z-index: 1;
}
    .treeapp-custom-widget {
    display: flex;
    align-items: center;
    width: 175px;
    height: 80px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #ccc;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
    position: absolute;
    bottom: 215px;
    left: 30px;
    font-family: Work Sans, workSansFallback, workSansFallbackAndroid, Arial
}

.treeapp-custom-widget:hover {
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}
.treeapp-custom-widget a{
    display: contents;

}

.tree-left {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.tree-right {
    width: 73.333%;
    flex: 1;
    text-align: center;
    line-height: initial;
}

.tree-count {
    font-size: 30px;
    font-weight: 700;
    color: #75be00;
}

.tree-label {
    font-size: 16px;
    color: #3d3d3d;
}

.tree-sub {
    font-size: 11px;
    color: #3d3d3d;
    margin-top: 5px;
}
@media screen and (max-width: 1400px) {
.treeapp-custom-widget {
    width: 230px;
    height: 95px;
  }
  .tree-icon {
    width: 40px;
    height: 61px;
}
.tree-count {
    font-size: 40px;
}
.tree-label {
    font-size: 18px;
}
.tree-sub {
    font-size: 13px;
}
}
@media screen and (max-width: 768px) {
.treeapp-custom-widget {
    bottom: 436px;
  }
}
