.product-view {
width:50%;float:left;
}

.article-request {
	float:left;width:40%;
}


.mobile-search {
    visibility: hidden;
    opacity: 0;
    background-color: rgba(0,0,0,.5);
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
     backdrop-filter: saturate(200%) blur(3px);
    -webkit-backdrop-filter: saturate(200%) blur(3px);
    z-index: 101;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease 0s;
}

body.search-mask .mobile-search {
    visibility: visible;
    opacity: 1;
}


.mobile-header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	visibility: hidden;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(200%) blur(6px);
    -webkit-backdrop-filter: saturate(200%) blur(6px);
    height: 80px;
    box-shadow: 0 1px 1.25rem 0.0625rem rgba(0,0,0,.1);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s;
}

.search-input {
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    height: 45px;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    min-width: 240px;
}

.search-input i {
    color: #CCC;
}

.search-input input {
    flex: 1;
    border: 0;
    background:none;
    font: inherit;
    font-family: Rubik;
    font-size: 13px;
    font-weight: 500;
}

.search-input input::placeholder {
    font-weight: 400;
    color: #CCC;
}

.search-input input:focus {
    outline: none;
}

.mobile-header .mh-contact {
    text-align: center;
    font-size: 1.5em;
    width: 100px;
}

.mobile-header .mh-logo {
    flex: 1;
    text-align: center;
}

.mobile-header .mh-logo a {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.mobile-header .mh-bars {
    width: 100px;
    text-align: center;
}

.mobile-header .mh-logo img {
	max-width: 100%;
	max-height: 50px;
}

.mobile-header .bar-toggle {
    display: block;
    width: 25px;
    margin: 0 auto;
    height: 16px;
    position: relative;
    transform: rotate(0);
    transition: all .5s ease-in-out 0s;
    cursor: pointer;
    padding-left: 0!important;
}

.mobile-header .bar-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #000;
    opacity: 1;
    left: 0;
    transform: rotate(0);
    transition: all .25s ease-in-out 0s;
}

.mobile-header .bar-toggle span:nth-child(1) {
    top: 0;
    transform-origin: left center;
}

.mobile-header .bar-toggle span:nth-child(2) {
    top: 7px;
    transform-origin: left center;
}

.mobile-header .bar-toggle span:nth-child(3) {
    top: 14px;
    transform-origin: left center;
}

#sidebar {
    z-index: 9;
    position: fixed;
    top: 0;
    left: 0;
    visibility: hidden;
    width: 260px;
    height: 100%;
    padding: 25px;
    box-sizing: border-box;
    overflow-y: auto;
    background-color: #0074cc;
    background-image: -ms-linear-gradient(top,#08c,#05c);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#08c),to(#05c));
    background-image: -webkit-linear-gradient(top,#08c,#05c);
    background-image: -o-linear-gradient(top,#08c,#05c);
    background-image: -moz-linear-gradient(top,#08c,#05c);
    background-image: linear-gradient(top,#08c,#05c);
    background-repeat: repeat-x;
    transition: all 0.5s;
    transform: translate3d(-260px,0,0);
    z-index: 100;
}

#sidebar .social {
    display: flex;
}

#sidebar h4 {
    display: block;
    margin: 0;
    padding: 8px 0;
    font-size: 11px;
    color: rgba(255,255,255,.5);
}

#sidebar .social a {
    width: 32px;
    height: 32px;
    border-radius: 32px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

#sidebar .social .fa-twitter {
    color: #55acee;
}

#sidebar .social .fa-youtube {
    color: red;
}

#sidebar nav {
    margin-top: 10px;
}

#sidebar nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#sidebar nav ul:before {
    display: block;
    content: attr(data-title);
    padding: 8px 0;
    font-size: 11px;
    color: rgba(255,255,255,.5);
}

#sidebar nav ul li {
    padding: 4px 0;
    clear: both;
}

#sidebar nav ul li a {
    color: #fff;
    display: block;
}

body.side .mobile-header {
    -webkit-transform: translate3d(260px,0,0);
    transform: translate3d(260px,0,0);
}

body.side #sidebar {
    visibility: visible;
    transform: translate3d(0,0,0);
}

body.side #sidebar-mask {
    display: block;
}

#sidebar-mask {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0,.5);
    z-index: 31;
    position: fixed;
    backdrop-filter: saturate(200%) blur(2px);
        -webkit-backdrop-filter: saturate(200%) blur(2px);
    display: none;
}

#sidebar > img {
    max-height: 40px;
}

@media (max-width:1200px) {
	#nav-justified{float:inherit;width:auto}
	#logo{top:-70px}
}

.mobile-whatsapp {
    position: fixed;
    left: 15px;
    right: 15px;
    bottom: 15px;
    padding: 15px;
    border-radius: 8px;
    color: #fff;
    display: flex;
    align-items: center;
    background-color: #2bb640;
    visibility: hidden;
    justify-content: center;
    z-index: 103;
    text-decoration: none;
}

.mobile-whatsapp:focus,.mobile-whatsapp:visited {
    outline: none;
}

.mobile-whatsapp .mfh {
    margin: 0 1em;
}

.mobile-whatsapp i {
    margin-right: 1em;
}

@media (max-width:960px) {
    body{font-family:Rubik;background-color:#f0f0f0;font-size:13px}
	#slider-outer{display:none}
	#left-nav{display:none}
	#doc #content{margin:0;box-shadow:none;background:none}

    .content-header p.bold{font:inherit;font-weight:600}

	.box{width:auto;float:inherit;padding:15px;font-family:inherit;background-color:#fff;box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.1);-webkit-box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.1);border-radius:8px}
	#head{display:none}
	.navbar-wrapper{display:none}
	.content-header p.bold{font-size:13px}
	.mobile-header{visibility:visible}
	body{padding-top:80px}
	#footer{text-align:center}
	#footer .copyright{position:inherit;right:inherit;bottom:inherit;opacity:.6;font-size:12px}
	#footer{height:auto;margin-top:0;padding:15px 0}
	#footer .container{height:auto}
	#footer ul{position:inherit;padding-left:0;display:inherit;left:inherit;margin:0}
	.product-view, .article-request {
		float: inherit;
		width: auto;
	}
	#doc #content .intro.note{width:auto;padding-bottom:5px!important}
	#doc #content .note{float:inherit;margin:inherit}
    .content-header{background:none;border:0;box-shadow:none}
    .box-image img{border:0;border-radius:8px}
    .product-list {
        padding:0;
        box-sizing: border-box;
            display: grid;
            gap: 15px;
    grid-template-columns: 45% 45%;
    justify-content: center;
    }
    .product-list .box{margin-top:0;float:inherit;width:auto;height:265px}
    .product-list .clearfix{display:none!important}
    .box-code {
        position: absolute;
        top: 10px;
        left: 0;
        right: 0;
        text-align: center;
    }

    .product-hit h2 {
        position: absolute;
        top: 0;
    }

    .product-hit {
        padding: 0;
          display: grid;

        padding-top: 45px!important;
            gap: 15px;
    grid-template-columns: 45% 45%;
    justify-content: center;
    }
    .product-hit .clearfix{display:none!important}
    .product-footer{background:none;margin-top:0!important}
    .product-view .article {background-color:#fff;box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.1);
        border-radius: 0;
        padding: 0;
    }
    .icon-plus-sign {
        position: absolute;
        left: 1em;
        top: 1em;
    }
    .mobile-whatsapp {
        visibility: visible;
    }
}

