.contact-panel {
    z-index: 10000;
	position: fixed;
    top: 50%;
    transform:translateY(-50%);
    right: 20px;
}
.contact-panel:hover .floatboxmain{
    display: block;
    pointer-events: auto;
}
.contact-panel .floatbox a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fe682d;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    margin: 5px 0;
    pointer-events: none;
}
.contact-panel .floatbox {
	padding: 10px;
    border-radius: 45px;
    background: #fff;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
}
.contact-panel .floatboxmain {
    display: none;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}
.floatboxmain-wrapper {
    padding: 15px 23px;
    border-radius: 45px;
    background: #fff;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
    width: 302px;
}
.contact-panel .floatboxmain a {
    display: flex;
    align-items: center;
    display: inline-flex;
}
.contact-panel .floatboxmain i {
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    background: #fe682d;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    margin-right: 5px;
}
.floatboxmain ul li {
    margin: 5px 0;
}
.floatboxmain ul {
    padding: 5px;
}
.contact-panel .floatboxmain .close {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 15px;
    top: 15px;
}
.contact-panel .floatboxmain .close i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-panel .floatboxmain.open {
    display: block;
}
@media screen and (min-width: 768px) {
    .contact-panel .floatboxmain .close {
        display: none;
    }
}
@media(max-width: 991px) {
    .contact-panel .floatbox a,
    .contact-panel .floatboxmain i {
        width: 40px;
        height: 40px;
        font-size: 13px;
    }
    .contact-panel .floatboxmain .floatboxmain-wrapper {
        width: 230px;
        padding: 20px 15px 15px;
        border-radius: 20px;
    }
}
@media only screen and (max-width: 767px) {
    .contact-panel {
        right: 10px;
    }
}
@media only screen and (max-width: 575px) {
    .contact-panel {
        right: 5px;
    }
}