#bodytop {
    display: flex;
    justify-content: center;
	margin: 12px 0;
    gap: 12px;
}

#floating-banners {
    position: sticky;
    top: 12px;
    height: 1px;
    width: 1170px;
    margin: auto;
}

#floating-left {
    display: flex;
    flex-direction: column;
    z-index: 1;
    position: absolute;
    left: 0; 
    top: 0;
    transform: translateX(-100%);
}

#floating-right {
    display: flex;
    flex-direction: column;
    z-index: 1;
    position: absolute;
    top: 0; 
    right: 0;
    transform: translateX(100%);
}

#mobile-catfish,
#catfish {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#mobile-catfish {
    display: none;
}

.close-catfish {
    position: absolute;
    top: 0;
    right: 0;
    background: rgb(0 0 0/40%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    z-index: 100;
    cursor: pointer;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1200px) {
    #bodytop,
    #catfish,
    #floating-banners {
       display: none;
    }
}

@media (max-width: 768px) {
    #mobile-catfish {
        display: flex;
    }
}