$panel-height: 400px; .ct-panel-builder { height: $panel-height; position: fixed; z-index: 999; left: 320px; right: 0; bottom: 0; padding: 30px 25px; background: #eee; box-sizing: border-box; border-top: 1px solid #ddd; transform: translateY(100%); transition: transform 0.18s linear; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; @media screen and (max-width: 600px) { display: none !important; } } .wp-full-overlay { @media screen and (min-width: 601px) { #customize-preview { transition: all 0.18s linear; } &.ct-show-builder { #customize-preview { height: auto; bottom: calc(#{$panel-height} + 25px); } .ct-panel-builder { transform: translateY(0); } } } }