/*
Theme Name: OnePress - Num-ERIC
Theme URI: https://num-eric.net/onepress-child/
Description: OnePress Child
Author: Num-ERIC
Author URI: https://num-eric.net/
Template: onepress
Version: 1.0.0
*/



/* ------------------------------ Num-ERIC : CSS */

/* Colors codes

Orange :							#FF9900 - rgba(255, 153, 0, 1)
Dark moderate blue :	#336688 - rgba(51, 102, 136, 1)
Tangerine yellow :		#ffcc00 - rgba(255, 204, 0, 1)
Grey San Juan :				#445761 - rgba(68, 87, 97, 1)
Very light gray :			#f2f2f2 - rgba(242, 242, 242, 1)
Snow									#fffafa - rgba(255, 250, 250, 1)
*/


:root {
	
	--nei_orange:			#FF9900;
	--nei_blue:				#336688;
	--nei_yellow:			#ffcc00;
	--nei_light-grey:	#f2f2f2;
	
	--dos_color:		#000000;
	--html-d_color:		#E44D26;
	--html-l_color:		#F16529;
	--css-d_color:		#264DE4;
	--css-l_color:		#2965F1;
	--js_color:				#f7df1e;
	--php_color:			#787CB4;
	--mysql-b_color:	#00758f;
	--mysql-o_color:	#f29111;
	--wamp_color:			#FF0099;
}


.wp-block-button a {
	cursor: pointer;
	background: #336688;
	border: none;
	display: inline-block;
	color: #ffffff !important;
	letter-spacing: 1px;
	text-transform: uppercase;
	line-height: 1;
	text-align: center;
	padding: 15px 23px 15px 23px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset;
	margin: 3px 0;
	text-decoration: none;
	font-weight: 600;
	font-size: 13px;
}



html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.breadcrumbs {
	display: none;
}

.site-content {
	background-color: rgba(255, 250, 250, 1); /* snow */
	background-color: #fffafa;
	/* background-image: url(https://num-eric.net/wp-content/uploads/2023/12/bg-001.png); */
}

#content p,
#content li {
	color: rgb(108, 121, 136);
	color: rgba(68, 87, 97, 1);
}
h1 {
	font-weight: 600 !important;
	text-shadow: 1px 1px 0px #666;
}

#content h2 {
	font-size: 1.3rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #336688;
}
	
.home h5:before {
	content: "";
	position: absolute;
	left:0;
	width: 24px;
	height: 24px;
	background-image: url(https://num-eric.net/wp-content/uploads/2023/04/nei_icon_square_24.png);
	background-repeat: no-repeat;
	background-position: center center;
	line-height: 24px;
}

.home h5:after {
	content: "";
	position: absolute;
	right:0;
	width: 24px;
	height: 24px;
	background-image: url(https://num-eric.net/wp-content/uploads/2023/04/nei_icon_square_24.png);
	background-repeat: no-repeat;
	background-position: center center;
	line-height: 24px;
}

/*
.home .site-content h2:before {
	content: '';
	display: inline-block;
	height: 1px;
	background: #336688;
	width: 35%;
	float: left;
	margin-top: 15px;
}
.home .site-content h2:after {
	content: '';
	display: inline-block;
	height: 1px;
	background: #336688;
	width: 35%;
	float: right;
	margin-top: 15px;
}
*/

#primary h2:after,
#secondary h2:after {
	background-image: none;
	background-color: var(--nei_orange);
	content: "";
	display: block;
	height: 2px;
	margin: 10px 0 0;
	width: 40px;
}

a {
	color: var(--nei_orange);
}

hr {
	margin: 40px auto;
	color: #cccccc;
}


.icon-background-default {
	color: var(--nei_orange);
}
.feature-item:hover .icon-background-default {
	color: #336688;
}

input[type=reset], input[type=submit], input[type=submit], .pirate-forms-submit-button, .contact-form div.wpforms-container-full .wpforms-form .wpforms-submit {
	background: rgba(51, 102, 136, 0.7);
}
input[type=reset]:hover, input[type=submit]:hover, input[type=submit]:hover, .pirate-forms-submit-button:hover, .contact-form div.wpforms-container-full .wpforms-form .wpforms-submit:hover {
  background: rgba(51, 102, 136, 1);
}


.nei_display-none {
	display: none;
}

.nei_red-star {
 color: red !important;
}

.nei_code {
	position: relative;
	line-height: 18px;
	font-size: 0.9em;
	color: #666666;
	background-color: rgba(242, 242, 242, 1);
	border: 1px solid #eceeef;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.nei_code strong {
	color: #333333;
}
.nei_code:after {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 32px;
	height: 32px;
	padding: 2px;
	text-align: center;
	line-height: 28px;
	font-size: 12px;
	color: #ffffff;
	background-color: #eeeeee;
	border-top: 1px solid #eceeef;
	border-left: 1px solid #eceeef;

	-webkit-border-top-left-radius: 3px;
	-moz-border-radius-topleft: 3px;
	border-top-left-radius: 3px;

	cursor: pointer;
}

.nei_code_dos:after {
	content: "DOS";
	font-size: 10px;
	background-color: var(--dos_color);
}
.nei_code_html:after {
	content: "HTML";
	font-size: 10px;
	background-color: var(--html-l_color);
}
.nei_code_css:after {
	content: "CSS";
	background-color: var(--css-l_color);
}
.nei_code_js:after {
	content: "JS";
	background-color: var(--js_color);
	color: #666666;
}
.nei_code_php:after {
	content: "PHP";
	background-color: var(--php_color);
}

.nei_code_mysql:after {
	content: "MySQL";
	font-size: 8px;
	background-color: var(--mysql-b_color);
}


/* -------------------------------------------------- HEADER */
.site-header {
	background-color: rgba(255, 250, 250, 1); /* snow */
	background-color: #fffafa;
}

.home .site-header .site-logo-div img,
.single-post .site-header .site-logo-div img {
	/* margin-top: 19px; */
}


/* ------------------------- ONEPRESS MENU */
.onepress-menu li#menu-item-7877 {
	width: 280px;
	text-align: center;
	background-color: rgba(255, 153, 0, 0.8);
	background-color: #336688;
}

.onepress-menu a {
	color: #336688;
}

.onepress-menu li#menu-item-7877 a {
	font-size: 1.1em;
	letter-spacing: 0;
	color: #ffffff;
}

.onepress-menu ul.sub-menu {
	left: -50%;
	text-align: center;
	background-color: #fffafa;
}

.onepress-menu ul.sub-menu a {
	text-transform: uppercase;
	color: #336688;
	background-color: #fffafa;
}
.onepress-menu ul.sub-menu a:hover {
  color: #ffffff;
	background-color: #336688;
}
.onepress-menu ul li.current-menu-item > a {
	color: var(--nei_orange);
}


/* -------------------------------------------------- HOME PAGE */

/* HOME PAGE - Section HERO */

.particles-js-canvas-el {
	position: absolute;
	top: 0;
	z-index: 1000;
	width: 100%;
	height:100%;
	
}

/* opacité sur image */
#parallax-hero .jarallax-container .parallax-bg:before {
	background: rgba(0, 0, 0, 0);
}


/* NUAGE DES VILLES DANS LE HERO */
#header-section .hero-slideshow-wrapper:before {
	display: none;
	content: "";
	position: absolute;
	right: 0;
	height: 100%;
	z-index: 10000;

	background-image: url(https://num-eric.net/wp-content/uploads/2023/03/gtm_round_01.png);
	background-repeat: no-repeat;
	background-position: center right;
	background-size: contain;
}
/*
#header-section .hero-slideshow-wrapper:before::hover {
	width: 380px;
}
*/
@media (min-width: 1200px) {
  #header-section .hero-slideshow-wrapper:before {
		display: inherit;
		width: 256px;
  }
}
@media (min-width: 1360px) {
  #header-section .hero-slideshow-wrapper:before {
		display: inherit;
		width: 320px;
  }
}


#hero img {
	display: inline-block;
}

#hero h4 {
	font-size: 0.9em !important;
}

#hero .nei_gtm {
	font-size: 1.1em !important;
	font-style: normal;
	font-weight: 500;
	color: #ffffff !important;
}

#hero .btn {
	padding: 10px 14px;
	font-size: 1.1em !important;
	color: #ffffff !important;
	background-color: rgba(255, 153, 0, 0.8) !important;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
#hero .btn:hover {
	background-color: rgba(255, 153, 0, 1) !important;
}


/* HOME PAGE - Section LES SERVICES */
/* gradient sur background color */
.section-meta {
	background-color: rgba(255,255,255,0);
	background-image: radial-gradient(circle at center,#ffffff 5%,#f1f1f1 100%)!important;
}

/* HOME PAGE - Section VIDEO LIGHTBOX */
#videolightbox .nei_videolightbox_h2 {
	font-size: 40px;
	letter-spacing: 3.5px;
	font-weight: 800;
	position: relative;
	margin-bottom: 0px;
	text-transform: uppercase;
}

.section-parallax .jarallax-container {
	background-color: rgba(255,255,255,0);
	background-image: url(https://num-eric.net/wp-content/uploads/2023/03/light-no-lines.jpg);
	background-repeat: no-repeat;
}

.section-parallax .jarallax-container .parallax-bg img {
	max-width: 1600px !important;
	max-height: 200px !important;
	object-fit: none !important;
}

/* HOME PAGE - Section ABOUT - A PROPOS */

#about {
	display: none;
	text-align: center !important;
}



/* HOME PAGE - Section PORTFOLIO */

/*
#gallery.section-gallery {
	background-image: linear-gradient(-40deg, #769a31 10%, #526b22 25%) !important;
}
#gallery.section-gallery:before {
	background-image: url("https://num-eric.net/wp-content/uploads/2023/07/white_wall-bg.png") !important;
	background-position: center;
}
*/

/* PC Screen frame */
/*
#gallery .gallery-content .gallery-masonry a.g-item {
	padding-bottom: 26px !important;
	background-image: url("https://num-eric.net/wp-content/uploads/2023/03/monitor-foot_128.png");
	background-position: center bottom;
	background-repeat: no-repeat;
}

#gallery .gallery-content .gallery-masonry a span.inner {
	width: 96%;
	margin: 0 2%;
	padding: 3px;
	background-color: #445761;
	background-color: #8ea3af;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}
*/

#gallery {
	background: none;
}

#gallery .gallery-content .inner .inner-content {
	border-radius: 2px;
	box-shadow: 0 1px 7px rgba(0, 0, 0, .5);
}

#gallery .gallery-content .gallery-masonry-wrap .g-zoom-in .g-item:hover img {
	-ms-transform: none !important;
	-webkit-transform: none !important; /* Safari */
	transform: none !important;
}

#gallery .gallery-content .gallery-masonry-wrap .gallery-masonry a:nth-child(n+5):nth-child(-n+8) .inner .inner-content {
	box-shadow: none;
}

#gallery .gallery-content .gallery-masonry-wrap .gallery-masonry a:nth-child(n+5):nth-child(-n+8) .inner .inner-content img {
	width: 60%;
	margin: 0 auto;
	-webkit-transition: none !important;
	transition: none !important;

	filter:grayscale(100%);
	opacity: 0.8;
}

/*
#gallery .gallery-content .gallery-masonry-wrap .gallery-masonry a.g-item:(5) .inner .inner-content:hover img {
	-webkit-transform: none !important;
	transform: none !important;
}

#gallery .gallery-content .gallery-masonry-wrap .gallery-masonry a.g-item:nth-child(n+5):nth-child(-n+8) .inner .inner-content:hover img {
	-webkit-transform: none !important;
	transform: none !important;
}
*/

#gallery .btn-theme-primary-outline {
	padding: 10px 14px;
	font-size: 1em !important;
	font-weight: normal;
	color: #ffffff !important;
	background-color: rgba(255, 153, 0, 0.8) !important;
	border: none;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	box-shadow: none;
}


/* -------------------------------------------------- SIDEBAR */

#secondary {
	width: 280px;
	padding-left: 25px;
	padding-right: 25px;
	background-color: rgba(238,238,238, 0.5);
}

.right-sidebar .content-area {
	border-right: none;
}

.right-sidebar .sidebar {
	border-left: none;
}

.sidebar h2,
.sidebar .widget-title {
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 13px;
	font-weight: 700;
	color: #777777 !important;
}

#secondary .widget_nav_menu a {
	text-transform: uppercase;
	text-decoration: none;
	color: #336688 !important;
}
#secondary .widget_nav_menu a:hover {
	color: #336688;
	font-weight: bold;
}


/* -------------------------------------------------- PAGE */

/* banner titre */
.page-header.page--cover {
	padding: 5% 0px;
}

article .entry-content p,
article .entry-content ul li {
	text-align: justify;
}
@media (max-width: 1279px) {
	article .entry-content p,
	article .entry-content ul li {
		text-align: left;
	}
}


/* article ul */
article .entry-content ul {
	margin-top: 0;
}
/* article ul li */
article .entry-content ul li {
	margin: 0;
}

/* WP bloc media texte */

article .wp-block-media-text .wp-block-media-text__content {
	padding-left: 0;
}

/* puces */
article .wp-block-media-text .wp-block-media-text__content li {
	margin-left: 0;
}

/* figure media */
article .wp-block-media-text figure.wp-block-media-text__media {
	text-align: center;
	align-self: center !important;
}

/* image media */
article .wp-block-media-text figure.wp-block-media-text__media img {
	width: auto;
	max-width: 100%;
	margin-bottom: 20px;
}



/* -------------------------------------------------- PAGE - PORTFOLIO */

.nei-site-wp-block-media-text {
	padding: 10px 0 50px 10px;
}

/* Image dans WP BLOCK TEXT */
.nei-site-wp-block-media-text figure.wp-block-media-text__media {
	display: block;
	width: 90%;
	height: 250px;
	overflow: hidden;
	position: relative;
	margin: 0 auto !important;

	border: 1px solid #dddddd;
	border-radius: 5px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}

.nei-site-wp-block-media-text figure.wp-block-media-text__media img {
	width: 100% !important;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	transition: all 2s ease-in-out;
}

.nei-site-wp-block-media-text figure.wp-block-media-text__media:hover img {
  object-position: bottom center;
}

.nei-site-wp-block-media-text div.wp-block-media-text__content {
	position: relative;
	padding-left: 70px;
	text-align: center !important;
}

@media screen and (max-width: 600px) {
 .nei-site-wp-block-media-text div.wp-block-media-text__content {
  padding-top: 20px;
		padding-left: 140px;
 }
	.nei-site-wp-block-media-text div.wp-block-media-text__content h3,
	.nei-site-wp-block-media-text div.wp-block-media-text__content h4,
	.nei-site-wp-block-media-text div.wp-block-media-text__content p,
	.nei-site-wp-block-media-text div.wp-block-media-text__content a {
		font-size: 0.9em !important;
	}
	.nei-site-wp-block-media-text {
		margin-bottom: 50px;
	}

}



.nei-site-wp-block-media-text div.wp-block-media-text__content h3,
.nei-site-wp-block-media-text div.wp-block-media-text__content h4,
.nei-site-wp-block-media-text div.wp-block-media-text__content p,
.nei-site-wp-block-media-text div.wp-block-media-text__content a {
	margin-bottom: 15px;
	line-height: 20px;
	text-align: center !important;
}
.nei-site-wp-block-media-text div.wp-block-media-text__content h3 {
	font-variant: small-caps;
	color: #666;
}
.nei-site-wp-block-media-text div.wp-block-media-text__content a {
	text-decoration: underline;
}
.nei-site-wp-block-media-text div.wp-block-media-text__content a:after {
	margin-left: 10px;
	font-family: FontAwesome;
	content: "\f08e";
}



/* Etiquettes Activité */
.nei_group_websites-categories {

}

.nei_group_websites-categories p {
	display: inline-block;
	margin: 0 3px;
	padding: 2px 5px;
	font-size: 0.8em;
	background-color: rgba(255, 127, 0, 1);
	color: #ffffff !important;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}
div.nei_group_websites-categories div p:first-child {
  margin-left: 0 !important;
}
div.nei_group_websites-categories div p:last-child {
  margin-right: 0 !important;
}

.nei-site-wp-block-media-text div.wp-block-media-text__content a {
	display: inline-block;
	margin-bottom: 15px;
}

.nei-site-wp-block-media-text div.wp-block-media-text__content figure.wp-block-gallery {
}

.nei-site-wp-block-media-text div.wp-block-media-text__content figure.wp-block-gallery .wp-block-image {
	width: 24px !important;
	height: 24px !important;
}

.nei-site-wp-block-media-text div.wp-block-media-text__content figure.wp-block-gallery .wp-block-image img {
	margin: 0 auto;
	width: 24px !important;
	height: 24px !important;
	filter:grayscale(100%);
	opacity: 0.8;
}
.nei-site-wp-block-media-text div.wp-block-media-text__content figure.wp-block-gallery .wp-block-image img:hover {
	filter:grayscale(0%);
	opacity: 1;
}


/* Image MOBILE */
.nei_img_decalee {
	position: absolute;
	left: -50px;
	z-index: 1;
	bottom: -80px;
	width: 96px;
	height: 192px;
	padding-top: 14px;
	padding-bottom: 19px;
	text-align: center;
	align-self: center !important;
	background-position: top center !important;
	background-image: url("https://num-eric.net/wp-content/uploads/2024/08/mobile_01.png") !important;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}

@media screen and (max-width: 600px) {
 .nei_img_decalee {
  left: 26px;
		top: 20px;
		
 }
}


.nei_img_decalee img {
	width: 90px;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	vertical-align: middle;
	transition: all 2s ease-in-out;	
}

.nei_img_decalee:hover img {
  object-position: bottom center;
}





/* -------------------------------------------------- PAGE - WordPress - Les plugins */
article .nei_widget-group {
	margin-bottom: 20px;
}

article .nei_widget-group h3,
article .nei_widget-group h4 {
	margin-bottom: 10px;
}

article .nei_widget-group .wp-block-media-text {
	grid-template-columns: 100px 1fr;
}

article .nei_widget-group .wp-block-media-text__media {
	text-align: left !important;
}

article .nei_widget-group img {
	max-width: 80px !important;
}


/* BLOC SERVICES A DISTANCE */
.nei_services-a-distance {
	margin-top: 20px;
}

.nei_services-a-distance hr {
	margin: 40px auto;
	color: #cccccc;
}

.nei_services-a-distance h2 {
	font-size: 24px;
}
.nei_services-a-distance p,
.nei_services-a-distance li {
	font-size: 0.9em;
	text-align: justify;
}
.nei_services-a-distance .wp-block-group {
	padding : 20px 25px;
	background-color: rgba(238,238,238, 0.5);
	border-radius: 7px;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	-moz-box-shadow: 1px 1px 3px 0 rgba(0,0,0,.1);
	-webkit-box-shadow: 1px 1px 3px 0 rgba(0,0,0,.1);
	-o-box-shadow: 1px 1px 3px 0 rgba(0,0,0,.1);
	box-shadow: 1px 1px 3px 0 rgba(0,0,0,.1);
}





/* -------------------------------------------------- PAGE PORTFOLIO */

/* PC Screen frame */
.nei_portfolio_item .wp-block-media-text__media {
	margin: 0 2%;
	padding: 3px;
	padding-bottom: 19px !important;
	background-image: url("https://num-eric.net/wp-content/uploads/2023/03/monitor-foot_128.png");
	background-position: center bottom;
	background-repeat: no-repeat;
}

.nei_portfolio_item .wp-block-media-text__media img {
	margin-bottom: 0 !important;
	border: 3px solid #8ea3af;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}



/* -------------------------------------------------- POSTS */


/* -------------------------------------------------- SINGLE POST */
.single-post .entry-header h1.entry-title {
	font-size: 1.5rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #336688;
}

.single-post .entry-thumbnail img {
	max-width: 128px;
}








/* ------------------------- BLOCKS ESSENTIALS */
article .nei_block_essentials {
	margin-bottom: 30px;
}

article .nei_block_essentials h3 {
	margin-bottom: 0.7rem;
}

article .nei_block_essentials h4 {
	margin-bottom: 0;
	font-weight: normal;
}

article .nei_block_essentials .wp-block-media-text__content {
  padding-left: 16px;
}

article .nei_block_essentials .wp-block-media-text {
  grid-template-columns: 48px auto !important;
	margin-bottom: 16px;
}

article .nei_block_essentials figure.wp-block-media-text__media img {
	margin-bottom: 0;
  max-width: 48px;
}


/* -------------------------------------------------- FOOTER */

/* ------------------------- FOOTER WIDGETS */

#footer-widgets {
	text-align: center;
}

#footer-widgets h2,
#footer-widgets widget-title
 {
  color: var(--nei_orange) !important;
}

#footer-widgets li.menu-item {
	/*
	margin-top: 5px;
	margin-bottom: 0;
	*/
}

#footer-widgets a {
	text-decoration: none;
	text-transform: uppercase;
}
#footer-widgets a:hover {
	color: var(--nei_orange);
}

.widget {
	margin-bottom: 30px !important;
}


/* ------------------------- FOOTER COPYRIGHT */

.site-footer .site-info {
  padding: 10px 0px;
  background: #445761;
  color: #ffffff;
}

.site-footer .site-info a.back-to-top {
  color: #ffffff;
}
.site-footer .site-info a.back-to-top:hover {
  color: var(--nei_orange);
}


/* Page - PRODUIT */
/* ------------ */
/* taille max image */
.woocommerce div.product div.images img {
 /* max-width: 320px; */
}

/* taille du prix */
.woocommerce div.product p.price, .woocommerce div.product span.price {
 font-size: 1.5em;
}

/* variation alignée à droite */
.woocommerce div.product div.summary form.variations_form table.variations select {
 text-align-last: right;
}
.woocommerce div.product div.summary form.variations_form table.variations option {
}


/* masque le lien "effacer" */
.woocommerce div.product div.summary form.variations_form table.variations a.reset_variations {
 visibility: hidden !important;
}

/* masque le SKU */
.woocommerce div.product div.summary div.product_meta span.sku_wrapper {
 display: none;
}
/* masque les catégories */
.woocommerce div.product div.summary div.product_meta span.posted_in {
 display: none;
}






/*** WP Lightbox ***/

.wp-lightbox-overlay .lightbox-image-container {
 border-radius: 9px;
 -moz-border-radius: 9px;
 -webkit-border-radius: 9px;
	-webkit-box-shadow: 0px 0px 10px 0px #999999; 
	box-shadow: 0px 0px 10px 0px #999999;
}

.wp-lightbox-overlay.zoom.active .scrim {
	background-color: rgba(255, 255, 255, 0.7) !important;
}








/*** Simple Lightbox ***/

.slb_viewer_overlay {
 background-color: #ffffff !important;
 opacity: 0.3 !important;
}

#slb_viewer_wrap .slb_container {
 padding: 5px !important;
 background-color: #333333 !important;
 background-color: #ffffff !important;
}

#slb_viewer_wrap .slb_data_title {
  margin-top: 5px !important;
  line-height: 1.5em !important;
  font-size: 1.5em !important;
  font-family: inherit !important;
  color: #fff !important;
  color: #666666 !important;
}

#slb_viewer_wrap .slb_data_desc {
  display: none !important;
}

#slb_viewer_wrap .slb_group_status {
 display: none !important;
}

#slb_viewer_wrap #numberDisplay {
  padding-bootom: 0px !important;
  color: #666 !important;
}

#slb_viewer_wrap #bottomNav {
  margin-top: 5px !important;
}

#slb_viewer_wrap #imageDataContainer {
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}

#slb_viewer_wrap #outerImageContainer {
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
}

#slb_viewer_wrap #outerImageContainer img {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}



