/* Floating Tab */
#fsp-floating-tab {
    position: fixed;
    z-index: 1000;
    bottom: 50px;
    right: 0;
    cursor: pointer;
    transform: rotate(-90deg);
    right: -55px;    
    gap: 10px;
    align-items: center;
    display: flex;
    padding: 16px 22px 26px 22px;
    transition: all 0.5s;
    text-decoration: none;
}
#fsp-floating-tab .fsp-floating-tab__label {
    transition: transform 0.5s;
}
#fsp-floating-tab .fsp-floating-tab__image {
    width: 24px;
    height: 24px;
    transition: transform 0.5s;
}
#fsp-floating-tab .fsp-floating-tab__image svg {
    transform: rotate(90deg);
}
#fsp-floating-tab .fsp-floating-tab__image__static {
    display: block;
}
#fsp-floating-tab .fsp-floating-tab__image__animated {
    display: none;
}            
.fsp-floating-tab__label {
    font-family: "museo-sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.4px;
    -webkit-font-smoothing: antialiased;
}
#fsp-floating-tab:hover .fsp-floating-tab__label,
#fsp-floating-tab:hover .fsp-floating-tab__image {
    transform: translateX(5px);
}
#fsp-floating-tab:hover .fsp-floating-tab__image__animated {
    display: block;
}
#fsp-floating-tab:hover .fsp-floating-tab__image__static {
    display: none;
}
#fsp-floating-tab.fsp-floating-tab-hidden {
    right: -110px;
}


/* Popup */
#fsp-popup {
    position: fixed;
    z-index: 999999999;
    right: 30px;
    border-radius: 18px;
    display: flex;
    transition: bottom 0.7s  cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 320px;
}
#fsp-popup .image {
    justify-content: center; 
    align-items: center; 
    display: flex; 
    padding: 10px 0 10px 10px;
}
#fsp-popup .text {
    padding: 10px; 
    display: flex; 
    justify-content: center; 
    align-items: center;
    padding: 0 10px 0 10px;
}
#fsp-popup .text .ft-message {
    display: none; 
    flex-direction: column; 
    justify-content: center; 
    align-items: flex-start;
}
#fsp-popup .buttons {
    display: flex; 
    flex-direction: column;
    width: 120px;
}
#fsp-popup .buttons .show {
    cursor: pointer; 
    padding: 10px; 
    border-radius: 0 18px 0 0;

}
#fsp-popup .buttons .close {
    cursor: pointer; 
    padding: 10px; 
    border-radius: 0 0 18px 0;
}
#fsp-popup .buttons div {
    white-space: nowrap;
}
@media (max-width: 500px) {
    #fsp-popup {
        right: calc(50vw - 160px);
    }
}



/* Floating Iframe Block */
#fsp-floating-iframe-block {
    position: fixed;
    z-index: 1000;
    bottom: 20px;
    right: 0;
    width: 100%;
}
.fsp-floating-iframe-block-inner {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    background-color: white;
    border-radius: 9px;
    box-shadow: 0px -2px 3px 2px rgba(0, 0, 0, 0.12), 2px 0px 3px 2px rgba(0, 0, 0, 0.12), -2px 0px 3px 2px rgba(0, 0, 0, 0.12);
    padding: 22px 20px 24px 20px;
}
.fsp-floating-iframe-block-inner iframe {
    width: calc(100% - 40px);
}
.fsp-floating-iframe-block-close {
    color: black;
    cursor: pointer;
}



/* Static Iframe Block */
.foursite-promotions-static-iframe-block {
    width: 100%;    
}
.foursite-promotions-static-iframe-block iframe {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}