

/*==============================
    Blured effect on views
==============================*/
.views {
  -webkit-transition-duration: 400ms;
  -moz-transition-duration: 400ms;
  -ms-transition-duration: 400ms;
  -o-transition-duration: 400ms;
  transition-duration: 400ms;
  -webkit-filter: blur(0px);
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  -moz-transform: translate3d(0, 0, 0) scale(1);
  -ms-transform: translate3d(0, 0, 0) scale(1);
  -o-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}
.views.blured {
  -webkit-filter: blur(10px);
  -webkit-transform: translate3d(0, 0, 0) scale(1.3);
  -moz-transform: translate3d(0, 0, 0) scale(1.3);
  -ms-transform: translate3d(0, 0, 0) scale(1.3);
  -o-transform: translate3d(0, 0, 0) scale(1.3);
  transform: translate3d(0, 0, 0) scale(1.3);
}

/*==============================
    Body Styling
==============================*/
/*
html,
body {
  overflow: hidden;
  height: 100%;
  width: 100%;
}
body {
  background: #000;
}
*/
/*==============================
    Pages Styling
==============================*/

/* background image */
.page[data-page="home"],
.page[data-page="page4504"],
.page[data-page="detail"] {
  background: none;
  background: #000000 url(../img/cbg.jpg) no-repeat center;
  -webkit-background-size: cover;
  background-size: cover;
}
.pages{
 	background: #ffffff;
}


/*==============================
    ios Over Scrolling Fix
==============================*/
/*
html.ios .page {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
html.ios .page-content {
  margin-bottom: 1px;
}*/
/*==============================
    Navbar, Toolbar
==============================*/

/* fixes a problem with where toolbars are located on panels */
.panel .navbar-fixed .toolbar {
    top: unset;
}


       
/*==============================
    popup styling
==============================*/
/*==============================
    Styles for case with statusbar overlay
==============================*/

/*==============================
    Text colors
==============================*/
/*==============================
    Accordion Blocks, forms and other list blocks
==============================*/

/*==============================
    Left Panels and Right Panels
==============================*/

/*==============================
    Modal
==============================*/

/*==============================
    Static Images
==============================*/

.static_image,.static_image2{
   background-size:cover;
   background-repeat:no-repeat;
   background-position-x: 50%;
   width: 100%;
   height: 100%;
}

/*==============================
    Page Backgrounds
==============================*/

div.page {
  background-position-y:0% !important;
}
/*==============================
    Upload modals
==============================*/

.dzoneform.upload {
   border: 1px solid black;
   padding: 10%;
}
.upload_div progress {
   width: 100%;
}
.upload_div .dzonelink {
}




/*==============================
    Maps
==============================*/

.map, .map_internal {
   width: 100%; 
   height:100%;
    margin:0px;
    padding:0;
}

/*==============================
    data list end markers mark the ends of lists of data
==============================*/

.data_list_end_marker {
	display : none;
}

/* styling fix for panels in ios style*/
.panel.panel-left {
    border-right: 1px solid #c4c4c4;
}
.panel.panel-right {
    border-left: 1px solid #c4c4c4;
}


