.reviewsio-floating-widget {
    position: fixed;
    cursor: pointer;
    z-index: 99;
    padding: 15px;
}

.reviewsio-floating-widget.left-center {
    left: 0;
    right: auto;
    top: calc(50% - 50px);
    bottom: auto;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.reviewsio-floating-widget.left-bottom {
    left: 0;
    right: auto;
    top: auto;
    bottom: 10px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.reviewsio-floating-widget.right-center {
    right: 0;
    left: auto;
    top: calc(50% - 50px);
    bottom: auto;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.reviewsio-floating-widget.right-bottom {
    right: 0;
    left: auto;
    top: auto;
    bottom: 10px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.floating-panel.left-center {
    left: 0;
    right: auto;
    top: 0;
    bottom: 0;
}

.floating-panel.left-bottom {
    left: 0;
    right: auto;
    top: auto;
    bottom: 8px;
}

.floating-panel.right-center {
    right: 0;
    left: auto;
    top: 0;
    bottom: 0;
}

.floating-panel.right-bottom {
    right: 0;
    left: auto;
    top: auto;
    bottom: 8px;
}

.floating-panel {
    position: fixed;
    margin-top: auto;
    margin-bottom: auto;
    max-width: 380px;
    max-height: 685px;
    height: 100%;
    width: 100%;
    overflow: hidden;
    z-index: 99999;
    opacity: 0;
    transform: scale(.9, .9) translateY(40px);
    transition: all .1s ease-in-out;
    pointer-events: none;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);;
}

.floating-panel .floating-panel-inner {
    height: 100%;
    background: #ffffff;
}

.floating-panel .floating-panel-inner .floating-panel-header {
    padding: 20px;
    backdrop-filter: blur(7px);
    z-index: 290;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-bottom: 0 solid rgba(0, 0, 0, 0.05);
}

.floating-panel .floating-panel-inner .floating-panel-header .header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    opacity: 0.9;

}

.floating-panel .floating-panel-inner .floating-panel-header .header-content {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.floating-panel .floating-panel-inner .floating-panel-header .header-content i.panel-close {
    color: #fff;
    font-size: 36px;
    cursor: pointer;
}

.floating-panel.isActive {
    transition: all .35s ease-in-out;
    opacity: 1;
    transform: scale(1, 1) translateY(0px);
    pointer-events: auto;
}

.floating-panel .floating-panel-content {
    padding: 20px;
    padding-top: 95px;
    padding-bottom: 70px;
    height: 100%;
    overflow-y: auto;
    overflow: -moz-scrollbars-none;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overscroll-behavior: contain;
}

.floating-panel .floating-panel-header .header-text {
    margin-top: 5px;
    font-weight: 600;
    font-size: 15px;
}

.floating-panel .floating-panel-content .content-subheader {
    margin-bottom: -100px;
    height: 250px;
    margin-top: -150px;
    display: block;
    margin-left: calc(20px * (-1));
    margin-right: calc(20px * (-1));
}

.floating-panel .floating-panel-content .content-card {
    background: #ffffff;
    box-shadow: 0 calc(6px / 4) 6px 0 rgba(0, 0, 0, 0.1);
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    margin-bottom: 20px !important;
    color: #0E1311;
}

.floating-panel .floating-panel-content .content-card .header {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
}

.floating-panel .floating-panel-content .content-card .header .author-name {
    font-size: 12px;
    font-weight: 700;
}

.floating-panel .floating-panel-content .content-card .customer-badge {
    margin-bottom: 7px;
}

.floating-panel .floating-panel-content .content-card .customer-badge span {
    font-size: 11px;
}

.floating-panel .floating-panel-content .content-card .review-date {
    font-size: 11px;
    text-align: right;
    font-weight: 400;
    margin-top: 5px;
}

.floating-panel .floating-panel-content .actions {
    display: flex;
    align-content: center;
    gap: 25px;
    margin: 20px 0 0;
    position: fixed;
    left: 0;
    bottom: 0;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px -3px 8px;
    background: #ffffff;
}

.floating-panel .floating-panel-content .actions a.btn {
    border-radius: 30px;
}

.floating-panel .floating-panel-content .actions a {
    width: 50%;
}

.floating-panel .floating-panel-content .actions a img {
    width: 90%;
}

.reviewsio-floating-widget .total-reviews {
    margin: 6px 0;
}

@media (max-width: 769px) {
    .floating-panel {
        max-width: 330px;
        max-height: 600px;
    }
}

.reviewsio-floating-widget .widget-close {
    position: absolute;
    top: -22px;
    right: 8px;
    border-radius: 50%;
    width: 18px;
    display: flex;
    align-items: center;
    height: 18px;
    justify-content: center;
    cursor: pointer;
}