.se-caas-sticky {
    position: sticky;
    top: 0;
    z-index: 10;
}

/* Mobile small screens */
@media (max-width: 429px) {
    .se-caas-sticky {
        min-height: 64px;
        height: 92px;
    }
}

/* Mobile/Tablet medium screens */
@media (min-width: 430px) and (max-width: 820px) {
    .se-caas-sticky {
        min-height: 64px;
        height: 88px;
    }
}

/* Desktop screens with height < 1181px */
@media (min-width: 821px) and (max-height: 1180px) {
    .se-caas-sticky {
        min-height: 64px;
        height: 88px;
    }
}

/* Desktop screens with height >= 1181px */
@media (min-width: 821px) and (min-height: 1181px) {
    .se-caas-sticky {
        min-height: 64px;
        height: 161px;
    }
}