.contactus-action-button-container {
    position: fixed;
    right: 0;
    z-index: 999999;
    top: calc(50% - ((55px*6)/2));
}
.contactus-action-button {
    overflow: hidden;
    box-shadow: 0 0.46875rem 2.1875rem rgba(90,97,105,.1), 0 0.9375rem 1.40625rem rgba(90,97,105,.1), 0 0.25rem 0.53125rem rgba(90,97,105,.12), 0 0.125rem 0.1875rem rgba(90,97,105,.1);
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    border-radius: 1rem 0 0 1rem !important;
    background-color: #fff!important;
}
.contactus-action-button .contactus-action-item.hotline {
    color: var(--danger);
}
.contactus-action-button .contactus-action-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-bottom: 1px solid #dee2e6;
}
.contactus-close{
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    height: 0px;
    margin-top: -10px;
}
.contactus-close:hover,
.contactus-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.contactus-modal-content {
  background-color: #fefefe;
  margin: auto;
  border: 1px solid #888;
  max-width: 100%;
  width: 600px;
}
.contactus-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
  }
.contactus-m-0{
    height: 52px;
    padding: 10px 20px;
}
.contactus-form-wapper{
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px;
}
.contactus-action-tooltip{
    display: none;
    position: absolute;
    right: 65px;
    padding: 7px;
    width: auto;
    min-width: 120px;
    border-radius: 3px;
    background-color: #000;
    background-color: hsla(0, 0%, 20%, 0.9);
    color: #fff;
    content: attr(data-tooltip);
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
}
.contactus-action-tooltip:before {
    content: '';
    position: absolute;
    top: 10px;
    right: -5px;
    display: block;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid rgba(0, 0, 0, 0.6);
}
.contactus-action-item:hover .contactus-action-tooltip{
    display: block;
}
.contactus-form-title{
    font-weight: bold;
    text-transform: uppercase;
}
.contactus-action-item i{
    font-size: 30px;
}
.contactus-action-item img{
    width: 30px;
}
@media (max-width: 991px){
    .contactus-action-button-container {
        width: 100%;
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
    }
    .contactus-action-button {
        display: flex;
        align-items: stretch;
        justify-content: center;
        border-radius: 0 !important;
        border-top: #f1f1f1 solid 1px;
        overflow: inherit;
    }
    .contactus-action-button .action-item {
        width: calc(100%/3);
        height: auto;
        flex-direction: column;
        border-bottom: 0;
        border-right: 1px solid #dee2e6;
        padding: .75rem 0 .5rem;
    }
    .contactus-action-middle{
        width: 60px !important;
        height: 60px !important;
        margin-top: -20px;
        border-radius: 50%;
        background: rgb(255, 255, 255);
    }
    .contactus-action-middle i{
        font-size: 40px;
    }
    .contactus-action-tooltip{
        display: none !important;
    }
}