/**
 * mobilemenu - Display a Mobile Menu in a full overlay.
 * @version v1.0.0
 * @link https://github.com/ergopix-sarl/JS-Search-Bar
 */
.mobilemenu{text-transform:uppercase;background-color:#000;text-align:center;top:0;left:0;bottom:0;right:0;position:fixed;z-index:9999;font-size:30px;display:none;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;-ms-grid-row-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.mobilemenu--visible{display:-webkit-box;display:-ms-flexbox;display:flex}.mobilemenu ul{padding:0;margin:0;-webkit-animation-name:fadeInUp;animation-name:fadeInUp;-webkit-animation-duration:.6s;animation-duration:.6s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.mobilemenu li{display:block;list-style-type:none!important}.mobilemenu li+li{margin-top:10px}.mobilemenu a{color:#fff}.mobilemenu__close{color:#fff;position:absolute;top:18px;right:15px;width:30px;height:30px}.mobilemenu__close:after,.mobilemenu__close:before{content:'';position:absolute;width:26px;height:3px;background-color:#fff;border-radius:2px;top:15px}.mobilemenu__close:before{-webkit-transform:rotate(45deg);transform:rotate(45deg);left:2px}.mobilemenu__close:after{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);right:2px}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,30%,0);transform:translate3d(0,30%,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,30%,0);transform:translate3d(0,30%,0)}to{opacity:1;-webkit-transform:none;transform:none}}