.consult-box {
    position: fixed;
    right: 15px;
    top: 33%;
    width: 320px;
    background: #73AF6F;
    border-radius: 16px;
	border: 3px solid #f9da28;
    padding: 10px 18px 10px 20px;
    z-index: 9999;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
}

/* Message bubble shape #73AF6F #ebebeb cdcdcd f9da28*/
.consult-box::before {
    content: "";
    position: absolute;
    right: -14px;
    top: 20px;
    border-width: 12px 0 12px 15px;
    border-style: solid;
    border-color: transparent transparent transparent #f9da28;
}

/* Hide state */
.consult-box.hidden {
    right: -280px;   /* hides 90% */
}

/* Hide button */
.hide-btn {
    position: absolute;
    left: -22px;
    top: 40%;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--nav-hover-color);
    border: none;
    color: #000;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Content */
.consult-content {
    width: 100%;
	padding: 12px 15px 12px 15px;
    border-radius: 10px;	
    background: #f1f1f1;	
}
