#speakaboutWrapper mark.h_item {
    position:relative;
    padding:0;
	margin:0; 
}

mark.h_item .h_wrapper {
    position:absolute;
    min-width: 200px;
    right: -15px;
    top:-45px;
    border-radius: 5px;
    padding: 0px;
    margin: 0px;
    z-index: 2;
}

mark.h_item .h_wrapper .h_comment{
    width: 87%;
    background-color:#fff;
    box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.20);
    border-radius: 3px;
}

mark.h_item .h_wrapper .h_comment input{
    width: 100%;
    font-size: 15px;
    color: #5B5B5B;
    font-family: sans-serif;
    border-radius: 3px;
    border: none;
    border-style: none;
    padding: 13px;
	background: #fff; 
	display: block;
	height: auto;
	line-height: 16px;
	margin:0px;    
}

mark.h_item .h_wrapper .h_submit,
mark.h_item .h_wrapper .h_cancel {
    position: absolute;
    right: 0px;
    width: 20px;
    height: 20px;
    background-color:#fff;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.20);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color .3s ease-out, top .05s ease-in-out;
}
mark.h_item .h_wrapper .h_submit{
    top:1px;
}
mark.h_item .h_wrapper .h_cancel{
    top: 24px; 
}
mark.h_item .h_wrapper .h_submit:hover,
mark.h_item.submitted .h_wrapper .h_submit {
    cursor:pointer;
    background-color: #5BC992;
}
mark.h_item .h_wrapper .h_submit g,
mark.h_item .h_wrapper .h_cancel g {
    transition: fill .1s ease-out;
}
mark.h_item .h_wrapper .h_submit:hover g,
mark.h_item .h_wrapper .h_cancel:hover g,
mark.h_item.submitted .h_wrapper .h_submit g{
    fill:#fff;
}
mark.h_item .h_wrapper .h_cancel:hover {
    cursor:pointer;
    background-color: #FF7070;
}
mark.h_item.sa_hidden .h_submit{
    transition: transform .17s ease-out; 
}
mark.h_item.sa_hidden .h_submit:hover{
    transform: scale(1.3);
}

mark.h_item.sa_hidden .h_comment {
    height: 0;
    width: 0;
}
mark.h_item.sa_hidden .h_comment input {
    display: none;
}
mark.h_item.sa_hidden .h_wrapper .h_submit{
    top: 33px;
}
mark.h_item.sa_hidden .h_wrapper .h_cancel{
    display:none;
}


/* mark.h_item .h_comment {
    position: absolute;
    right:0;
    top:-45px;
    font-size: 15px;
    background-color:#fff;
    box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.21);
    padding: 0px;
    z-index: 2px;
}
mark.h_item .h_comment input[type="text"] {
    border:none;
}
mark.h_item .h_comment .h_close {
    border-style: solid;
    border-width: 3px;
    cursor: pointer;
    position: absolute;
    top:-3px;
    right:-3px;
    box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.11);
    color:#999;
    border-radius: 100%;
    height:15px;
    width:15px;
    font-size: 12px;
    display: flex;
    justify-content:center;
    align-items:center;
    transform: all .2s ease;
}

mark.h_item .h_comment.sa_hidden .h_close {
    top: 36px;
} */







/* Default colors */
mark.h_item {
    background-color: #ccc;
}
mark.h_item .h_comment .h_close{
    border-color: #ccc;
}
mark.h_item .h_comment.sa_hidden .h_close{
    background-color: #ccc;
}
#speakaboutWrapper ::selection{
    background-color: #ccc;
}



#sa_commentBtn {
 position: fixed;
 width: 50%;
 min-width: 250px;
 height: 50px;
 bottom: 60px;
 left: 0px;
 right: 0px;
 margin: auto;
 background-color: #fafafa;
 font-family: sans-serif;
 font-size: 18px;
 display: flex;
 justify-content: center;
 align-items: center;
 color: #444;
 box-shadow: 1px 2px 5px 1px rgba(0, 0, 0, 0.2);
 transition: .2s ease;
 transform:scale(0);
}

#sa_commentBtn.sa_visible {
    transform:scale(1);
}