body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

.btn-menu-desk{
    position: absolute;
    left: 15px;
    top: 12px;
    z-index: 99999999;
}

.slideout-menu {
    position: fixed;
    top: 71px;
    bottom: 0;
    width: 256px;
    min-height: 100vh;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    z-index: 0;
    display: none;
}

.slideout-menu-left {
    left: 0;
}

.slideout-menu-right {
    right: 0;
}

.slideout-panel {
    position: relative;
    margin-top: 71px;
    z-index: 0;
    will-change: transform;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
    overflow: hidden;
}

.slideout-open .slideout-menu {
    display: block;
}


.menu {
    background-color: #1D1F20;
    background-image: linear-gradient(145deg, #1D1F20, #404348);
}

a {
    color: #4B5;
    text-decoration: none;
}

.menu a {
    color: #fff;
}

.menu a:hover {
    text-decoration: underline;
    color: #dc3545;
}

.menu-header {
    text-align: center;
    border-bottom: 1px solid #2a2d2f;
    padding: 12.5px;
    box-shadow: 5px 5px 5px #CCC;
    background: #f7f7f7;
    min-height: 56px;
    background-size: 32px;
}

.menu-header-title {
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0;
}

.menu-section {
    margin: 25px 0;
}

.menu-section-title {
    text-transform: uppercase;
    color: #85888d;
    font-weight: 200;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 0 20px;
    margin:0;
}

.menu-section-list {
    padding:0;
    list-style:none;
}

.menu-section-list a {
    display: block;
    padding: 10px 20px;
}

#panel{
    background: #f7f7f7;
}

.toggle-button{
    margin: 10px auto;
}
.toggle-button-mobile{
    position: absolute;
    top: 40px;
    left: 15px;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 999;
    color: #252324;
    background: #f7f7f7;
    padding: 5px 10px;
}

header{
    position: fixed;
    top: 0;
    background: #f7f7f7;
    overflow: hidden;
    width: 100%;
    min-height: 71px;
    padding: 3px 0px;
    border-bottom: 1px solid #CCC;
}

.conteudo{
    width: 100%;
}

/*search box css start here*/
.divSearch{
    padding: 5px !important;
}
.search-sec{
    padding: 2rem;
}
.search-slt{
    display: block;
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #55595c;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    height: calc(3rem + 2px) !important;
    border-radius:0;
}
.wrn-btn{
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    height: calc(3rem + 2px) !important;
    border-radius:0;
}
@media (min-width: 992px){
    .search-sec{
        position: absolute;
        background: rgba(255, 255, 255, 0.51);
        width: 100%;
        z-index: 99999999;
    }
}

@media (max-width: 992px){
    .search-sec{
        position:inherit;
        background: rgba(255, 255, 255, 0.51);
        width: 100%;
        top: 55px;
    }
}

/* Animation
---------------------------------- */
@-webkit-keyframes shake {
    0%, 100% {
        -webkit-transform:translate3d(0, 0, 0);
        transform:translate3d(0, 0, 0);
    }

    50% {
        -webkit-transform:translate3d(-10px, 0, 0);
        transform:translate3d(-10px, 0, 0);
    }
}

@keyframes shake {
    0%, 100% {
        -webkit-transform:translate3d(0, 0, 0);
        transform:translate3d(0, 0, 0);
    }

    50% {
        -webkit-transform:translate3d(-10px, 0, 0);
        transform:translate3d(-10px, 0, 0);
    }
}