/*!
 *   AdminLTE v2.4.2
 *   Author: Almsaeed Studio
 *	 Website: Almsaeed Studio <https://adminlte.io>
 *   License: Open source - MIT
 *           Please visit http://opensource.org/licenses/MIT for more information
 */
/*
 * Core: General Layout Style
 * -------------------------
 */
 
html,
body {
  height: 100%;
  min-height: 800px;
  background-color: #eee;
}

.innerContainer{
	background-color: white;
}

.h-100{
	height: 100%;
}

.row.no-gutters {
  margin-right: -15px;
  margin-left: -15px;
}

.row.no-gutters > [class^="col-"],
.row.no-gutters > [class*=" col-"] {
  padding-right: 0;
  padding-left: 0;
  margin-right: 0;
  margin-left: 0;
}

.gradient_ds{
	background: #0077c8; /* Old browsers */
	background: -moz-linear-gradient(left, #0077c8 0%, #f7a701 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #0077c8 0%,#f7a701 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #0077c8 0%,#f7a701 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0077c8', endColorstr='#f7a701',GradientType=1 ); /* IE6-9 */

}

.gradient_ds.flat{
	height: 1vh;
}

.gradient_ds.thin{
	height: 0.75vh;
}

/*
 * splash screen
 * -------------------------
 */
 
 #splash{
	 width: 100%;
	 height: 100vh;
	 background-image: url('/img/splash.png');
	 background-repeat: no-repeat;
	 background-position: center center;
	 display: none;
	 left: 0px;
	 /*background-size: 100% 100%;*/
	 
 }
 
 /*
 * login page
 * -------------------------
 */
 
 #login{
	 left: 0px;
	 width: 100%;
	 height: 100%;
	 /*background-size: 100% 100%;*/
	 
}

.loginForm{
	background-color: white;
	width: 80%;
	border-radius: 50px;
	min-height: 300px;
	position: absolute;
	bottom: 0px;
	left: 10%;
	right: 10%;
	padding: 20px 0px;
}

.loginForm a{
	color: #f8c63d;
}

.loginForm button{
	background-color: #f8c63d;
	text-transform: uppercase;
	border-color: #f8c63d;
	border-radius: 20px;
	margin: 50px 0px;
	color: white;
}

.loginForm button:hover{
	background-color: #ebbc3a;
	border-color: #ebbc3a;
}


.loginForm .form-group{
	margin-bottom: 0px;
	height: 70px;
}


.loginForm .input{
  
  	background-color: transparent;
	border-style: solid;
	border-width: 0px 0px 1px 0px;
	border-color: #f8c63d;
	width: auto;
	float: left;
	border-radius: 0px;
	width: 100%;
	height: 45px;
	margin-top: 20px;
}

.loginForm .input.username{
	background: url(/img/username.png) no-repeat scroll 8px 1px;
	padding-left:70px;
}

.loginForm .input.password{
	background: url(/img/password.png) no-repeat scroll 8px -2px;
	padding-left:70px;
}


 
 /*
 * home screen
 * -------------------------
 */
 
 #home{
	 left: 0px;
	 width: 100%;
	 height: 100%;
	 /*background-size: 100% 100%;*/
	 
}

/*.homeBackGround{
	transition:  0.2s ease-in-out;
	background: #4d4d4d; 
	background-size: 100% 100%;
	background-position: center center;
	height: 80vh;
	margin: 7.25vh 0 12.75vh 0;
	position: absolute;
	width: 35%;
	top: 0;
	z-index: 1;
	left: -50px;
}

.homeBackGround.black{
	transition:  0.2s ease-in-out;
	background: #4d4d4d;
	background-size: 100% 100%;
	background-position: center center;
	height: 100vh;
	margin: 0;
	position: absolute;
	width: 100%;
	top: 0;
	z-index: 1;
	left: 0;
}

.homeBackGround.white{
	transition:  0.2s ease-in-out;
	background: white;
	background-size: 100% 100%;
	background-position: center center;
	height: 100vh;
	margin: 0;
	position: absolute;
	width: 0%;
	top: 0;
	z-index: 1;
	left: 0;
}*/
 
#carouselHome{
	 height: 100%;
}
 
#carouselHome .carousel-inner,  #carouselHome .carousel-item{
	 height: 100%;
}

.carousel-control-next, .carousel-control-prev{
	bottom: 45vh;
	top: 45vh;
	width: 10%;
	z-index: 5;
}

.carousel-control-prev-icon{
	background-image: url('../img/Left_small.png');
	height: 36px;
	width: 14px;
}

.carousel-control-next-icon{
	background-image: url('../img/Right_small.png');
	height: 36px;
	width: 14px;
}

.carousel-inner{
	z-index: 3;
}
 
.blackHalf{
	 background-color: #4d4d4d;
	 height: 80vh;
	 border-radius: 0px 50px 50px 0px;
}

.blackHalf .rotated-text__inner{
	color: white;
}

.whiteHalf .rotated-text__inner{
	color: #4d4d4d;
}
 
.whiteHalf{
	 background-color: white;
	 height: 80vh;
}
 
.rotated-text {
    display: flex;
    overflow: hidden;
    width: 100%;
}
.rotated-text__inner {
	position: absolute;
	left: 50%;
	top: 7%;
    white-space: nowrap;
    /* this is for shity "non IE" browsers
       that dosn't support writing-mode */
    -webkit-transform: translate(1.1em,0) rotate(90deg);
       -moz-transform: translate(1.1em,0) rotate(90deg);
         -o-transform: translate(1.1em,0) rotate(90deg);
            transform: translate(1.1em,0) rotate(90deg);
    -webkit-transform-origin: 0 0;
       -moz-transform-origin: 0 0;
         -o-transform-origin: 0 0;
            transform-origin: 0 0;
   /* IE9+ */
   -ms-transform: none;
   -ms-transform-origin: none;
   /* IE8+ */
   -ms-writing-mode: tb-rl;
   /* IE7 and below */
   *writing-mode: tb-rl;
   
   text-align: left;
   font-size: 50px;
   line-height: 45px;
   font-weight: lighter;
}
.rotated-text__inner:before {
    content: "";
    float: left;
    margin-top: 100%;
}

.actions{
	z-index: 5;
	margin-top: -48vh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	
/*
	position: absolute;
	bottom: 15vh;
	z-index: 5;
	left: 45vh;
*/
}

.action{
	width: 12vh;
	height: 12vh;
	border-radius: 50%;
	background-color: white;
	-webkit-box-shadow: -5px -5px 15px -4px rgba(31,31,31,1);
	-moz-box-shadow: -5px -5px 15px -4px rgba(31,31,31,1);
	box-shadow: -5px -5px 15px -4px rgba(31,31,31,1);	
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-size: 12px;
	font-weight: lighter;
	
}

.action img{
	max-height: 50%;
	max-width: 50%;
}

#implants{
	background-color: #4d4d4d;
}

#pre{
	background-color: white;
}


/*
input::-webkit-input-placeholder {
  color: #AAA;
}

input:focus::-webkit-input-placeholder {
  color: dodgerblue;
}
*/

/*
 * main
 * -------------------------
 */
 
 
 .main{
	position:absolute;
    top: 100px;
    bottom: 100px;
    left:0px;
    right:0px;
 }


 /*
 * topbar
 * -------------------------
 */
 
.top{
	height: 100px;
	position:absolute;
    top: 0px;
    left:0px;
    right:0px;
 }

.topbar{
	height: 7.25vh;
	width: 100%;
}

.topbar .mainTitle{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;

}

.topbar h1{
	font-size: 30px;
	color: #0077c8;
	font-weight: lighter;	
	align-self: center;
}

.topbar .mainTitle span{
	color: #4d4d4d;
}

.topbar small{
	font-size: 14px;
	color: #54c7fc;
	font-weight: lighter;	
	align-self: center;
	line-height: 16px;
}

.topbar h2{
	font-size: 24px;
	font-weight: bolder;	
	align-self: center;
	margin-bottom: 0px;
	line-height: 24px;
	margin-top: 0.25rem;
}

.topbar.implants h2{
	color: white;
}

.topbar.pre h2{
	color: #4d4d4d;
}

 /*
 * footer
 * -------------------------
 */
 
 .bottom{
	height: 100px;
	position:absolute;
    bottom: 0px;
    left:0px;
    right:0px;
 }
 
 footer{
	 height: 12.75vh;
	 padding-top: 2.75vh;
 }
 
 footer .footer{
	height: 100%;
 }
 
  footer .col-6.copyright{
	display: flex;
	align-items: center;
	justify-content: flex-start;
 }
 
 footer .copyright{
	font-weight: lighter;
	font-size: 15px;
	line-height: 17px;
	color: #4d4d4d;
 }
 
 footer .col-6.copylogo{
	display: flex;
	align-items: center;
	justify-content: flex-end;
 }
 
  footer .col-6.copylogo img{
  	max-height:50%;
 }
 
 .categoriesList{ 
	 height: 92vh; 
 }
 
.categoriesBox{
	 height: 30.66vh;
	 display: flex;
	 align-content: center;
	 justify-content: center;
	 cursor: pointer;
 }
 
 .implants.categoriesContent{
	 align-self: center;
	 display: flex;
	 flex-direction: column;
	 color: white;
	 justify-content: center;
	 width: 100%;
 }
 
 .categoriesContent img{
	 width: 25%;
	 align-self: center;
 }
 
.implants.categoriesContent span{
	 align-self: center;
	 margin-top: 1rem;
	 text-transform: uppercase;
 }
 
.pre.categoriesContent{
	 align-self: center;
	 display: flex;
	 flex-direction: column;
	 color: #4d4d4d;
	 justify-content: center;
	 width: 100%;
}

.pre.categoriesContent span{
	 align-self: center;
	 margin-top: 1rem;
	 text-transform: uppercase;
 }
 
 
 main{
	 min-height: 85vh;
 }
 

 body.black .innerContainer{
	 background-color: #4d4d4d;
 }

 
body.black .topbar h2{
	color: white;	
}

[data-toggle="collapse"] .fa:before {  
  content: "\f077";
}

[data-toggle="collapse"].collapsed .fa:before {
  content: "\f078";
}

.iconbar{
	height: 7vh;
	text-align: center;
}

.iconbar img{
	height: 6vh;
	margin: 0.5vh 0;
	
}

#accordion{
	width: 100%;
}

#accordion .card{
	border: 0px !important;
	border-radius: 0px;
}

#accordion .card a{
	text-decoration: none;	
	font-size: 1rem;
	font-weight: lighter;
	padding: 
}

.content-slider-item{
	display: block;
}

.black #accordion .card{
	background-color: #6e6e6e !important;
	color: white;
}

.white #accordion .card{
	background-color: #f5f5f5 !important;
	color: white;
}

.black #accordion .card a{
	color: white;
}

.white #accordion .card a{
	color: #4d4d4d;
}

.card-header{
	padding: 1.5rem 1.5rem;
	position:relative;
	background-color: transparent;
}

.card-header i{
	float: right;
}

.black .card-header.opened:after {
    content:'';
    position: absolute;
    top: 100%;
    left: 10%;
    width: 0;
    height: 0;
    border-top: solid 20px #6e6e6e;
    border-left: solid 20px transparent;
    border-right: solid 20px transparent;
}

.white .card-header.opened:after {
    content:'';
    position: absolute;
    top: 100%;
    left: 10%;
    width: 0;
    height: 0;
    border-top: solid 20px #f5f5f5;
    border-left: solid 20px transparent;
    border-right: solid 20px transparent;
}


.black .card-body{
	padding: 2rem;
	background-color: #4d4d4d;
	min-height: 30vh;
}

.white .card-body{
	padding: 2rem;
	background-color: #fafafa;
	min-height: 30vh;
}

.content-icon{
	width: 12.5%;
	min-height: 26vh;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.content-icon img{
	width: 50%;
}

.black .content-text{
	width: 87.5%;
	min-height: 26vh;
	border-right: 1px solid white;
	padding-right: 2rem;
}

.white .content-text{
	width: 87.5%;
	min-height: 26vh;
	border-right: 1px solid #4d4d4d;
	padding-right: 2rem;
	color: #4d4d4d;
}

.content-text button.module{
	background-color: #f7b61d;
	border: 1px solid #f7b61d;
	border-radius: 2rem;
	padding: 0.75rem 1.5rem;
	font-size: 1.25rem;
	font-weight: lighter;
	text-transform: uppercase;
}

.content-text button.document{
	background-color: transparent;
	border: 1px solid #f7b61d;
	border-radius: 2rem;
	padding: 0.75rem 1.5rem;
	font-size: 1.25rem;
	font-weight: lighter;
	text-transform: uppercase;
	color: #f7b61d;
}

.content-text.last{
	
	border-right:0px;
}

::-webkit-scrollbar { 
    display: none; 
}

.backIcon{
	display: flex;
	align-items: center;
	justify-content: left;
	cursor: pointer;
}

.list{
	width: 100%; display: block; position: relative; background: #fff; overflow: hidden; height: 85vh
}

.list-content ul{
	list-style: none; padding-left: 0px
}

.list-content ul li a { padding: 10px 10px; display:block; border-bottom: 1px solid #f3f3f3; text-transform: capitalize; color: #4d4d4d; font-weight: lighter; width: 100%}

.list-content ul li a span {
	align-self: flex-start;
}

.list-content ul li a img {
	height: 30px;
	float: right;
}

/*
 *  SliderNav - A Simple Content Slider with a Navigation Bar
 *  Copyright 2010 Monjurul Dolon, http://mdolon.com/
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://devgrow.com/slidernav
 */
.slider { width: 100%; display: block; position: relative; background: #fff; overflow: hidden; height: 85vh}
.slider ul { list-style: none; padding-left: 0px}
.slider-content ul ul{ padding-left: 10px;}
.slider-content { float: left; width: 100%; display: block; overflow: auto; min-height: 85vh; height: 85vh;}
.slider-content ul { float: left; width: 100%; display: block; position: relative; background-color: white;}
.slider-content ul li { float: left; width: 100%; }
.slider-content ul ul li { padding: 10px 10px; display: block; border-bottom: 1px solid #f3f3f3; text-transform: capitalize; color: #4d4d4d; font-weight: lighter}
.slider-content ul ul li a:hover { background: #f3faff; border-color: #d5ebf9; }
.slider-content .title { padding: 5px 0; text-indent: 10px; background: #fafafa; color: #54c7fc !important; width: 100%; float: left; font-weight: bold; text-transform: uppercase; }
.slider-content .selected .title { background: #fafafa; }
.slider .slider-nav { position: absolute; right: 0; top: 0; background: white; min-height: 85vh; }
.slider .slider-nav ul { padding: 5px 0; }
.slider .slider-nav li a{ padding: 3px 5px; line-height: 13px; text-align: center; color: #54c7fc; font-weight: bold; display: block; text-transform: uppercase; cursor: pointer; }
.slider #debug { position: absolute; bottom: 0; left: 0; padding: 5px; background: #000; color: #fff; }
.slider .arrow { font-size: 0px; line-height: 0%; width: 0px; border-bottom: 8px solid #fff; border-left: 5px solid #333; border-right: 5px solid #333; position: relative; top: 5px; }
.slider .down { border-bottom: none; border-top: 8px solid #fff; top: 15px; }
.slider .slide-up, .slider .slide-down { height: 0; background: white; text-align: center; cursor: pointer; float: right; width: 100%; position: relative; }

.contactLine{
	
}
.contactLine div{
	float: left;
}
/*
.slider-content ul li ul li span{
	float: left;
}
*/


body .modal-dialog {
    /* new custom width */
    width: 90%;

}

.moduleElements .btn-group{
	margin: 3px 0px;
}

.moduleElements hr{
	margin: 7px 0px;
}


/* preview module style */

.modulePreview{
	min-height: 100vh;
}


.modulePreview h4{
	margin-top: 20px;
}

.modulePreview fieldset{
	padding: 20px;
	border: 1px solid black;
	margin-top: 20px;
}

.modulePreview fieldset legend{
	border: none;
	width: auto !important;
	font-size: 15px;
	margin: 0px 10px 5px;
	padding: 0px 10px;
	font-weight: 300;
}

.modulePreview .inputtext{
	margin: 0px;
	font-weight: 300;
	display: inline-block;
}

.modulePreview .inputtext label{

	float: left;
	font-weight: 300;
	display: block;
	white-space: nowrap;
}

/*
.modulePreview .inputtext span.center{

	overflow: hidden;
	display: block;
}
*/

.modulePreview .inputtext input{

	background-color: transparent;
	border-style: solid;
	border-width: 0px 0px 1px 0px;
	border-color: #f8c63d;
	width: auto;
	float: left;
}

.modulePreview .inputcheck label{
	min-width: 90px;
	padding-left: 0px;
	font-weight: 300;	
}

.modulePreview .inputcheck div{
	margin: 0px 3px;
}

.modulePreview .inputradio label{
	min-width: 90px;
	padding-left: 0px;
	font-weight: 300;	
}

.modulePreview .inputradio div{
	margin: 0px 3px;
}

#submitButton{
	text-align: center;
	padding: 10px 30px;
	font-size: 20px;
	background-color: #f8c63d;
	text-transform: uppercase;
}

#submitButton:hover{
	background-color: #d0a222;
	color: white;
	
}


/**** installation page *****/

.androidButton{
	border: 3px solid #4d4d4d; 
	border-radius: 30px;
	padding: 10px; 
	color: #4d4d4d;
}

.androidButton:hover{
	border: 3px solid #4d4d4d; 
	background-color: #4d4d4d;
	color: white;
	text-decoration: none;
}

.iosButton{
	border: 3px solid white; 
	border-radius: 30px;
	padding: 10px; 
	color: white;
}

.iosButton:hover{
	border: 3px solid white; 
	background-color: white;
	border-radius: 30px;
	padding: 10px; 
	color: #4d4d4d;
	text-decoration: none;
}
