.dev{
  position: absolute;
  bottom: 0px;
  width: 100%;
  bottom: 20px;
  display: none !important;
}
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
  display: none !important;
}
.imgcache{
    display: none;
}
@font-face {
  font-family: 'open_sans';
  src: url('../fonts/OpenSans-Regular.ttf')  format('truetype');
}
/* --------------------------------

Primary style

-------------------------------- */
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@import url(http://fonts.googleapis.com/css?family=Open+Sans:300,400&subset=latin,latin-ext);
body {
  font-size: 100%;
  font-family: 'open_sans', sans-serif;
  color: rgba(2, 23, 37, 0.7);
  background-color: #D3D3D3;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
}
body.overflow-hidden {
  /* when primary navigation is visible, the content in the background won't scroll */
  overflow: hidden;
}
h1, h2, h3, h4, h5, h6{
    font-weight: 300;
}

a {
  color: white;
  text-decoration: none;
}
/* --------------------------------

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 768px;
  margin: 0 auto;
}
.cd-container:after {
  content: "";
  display: table;
  clear: both;
}

/* --------------------------------

Main components

-------------------------------- */
html, body {
  height: 100%;
}

.cd-header {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(202, 201, 201, 0.9);
  height: 50px;
  width: 100%;
  z-index: 4;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cd-header.move-out {
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  -ms-transform: scale(0.6);
  -o-transform: scale(0.6);
  transform: scale(0.6);
}
@media only screen and (min-width: 768px) {
  .cd-header {
    height: 80px;
    background: transparent;
    box-shadow: none;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-header {
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    transition: background-color 0.3s;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .cd-header.is-fixed {
    /* when the user scrolls down, we hide the header right above the viewport */
    position: fixed;
    top: -80px;
    background-color: rgba(2, 23, 37, 0.96);
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
  }
  .cd-header.is-visible {
    /* if the user changes the scrolling direction, we show the header */
    -webkit-transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  .cd-header.menu-is-open {
    /* add a background color to the header when the navigation is open */
    background-color: rgba(202, 201, 201, 0.9);
  }
}

.cd-infobar {
  display: block;
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: .875em;
}
.cd-infobar > div{
    float: left;
    background-color: rgb(104, 125, 177);
    padding: 7px;
}
.cd-infobar p {
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .cd-logo {
    left: 2.6em;
  }
}

.cd-secondary-nav {
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10em;
  /* hidden on small devices */
  display: none;
}
.cd-secondary-nav li {
  display: inline-block;
  margin-left: 2.2em;
}
.cd-secondary-nav a {
  display: inline-block;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .cd-secondary-nav {
    display: block;
  }
}

.cd-primary-nav-trigger {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
  background-color: #aba8a8;
}
.cd-primary-nav-trigger .cd-menu-text {
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  /* hide the text on small devices */
  display: none;
}
.cd-primary-nav-trigger .cd-menu-icon {
  /* this span is the central line of the menu icon */
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 18px;
  height: 2px;
  background-color: white;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  transition: background-color 0.3s;
  /* these are the upper and lower lines in the menu icon */
}
.cd-primary-nav-trigger .cd-menu-icon::before, .cd-primary-nav-trigger .cd-menu-icon:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: white;
  right: 0;
  -webkit-transition: -webkit-transform .3s, top .3s, background-color 0s;
  -moz-transition: -moz-transform .3s, top .3s, background-color 0s;
  transition: transform .3s, top .3s, background-color 0s;
}
.cd-primary-nav-trigger .cd-menu-icon::before {
  top: -5px;
}
.cd-primary-nav-trigger .cd-menu-icon::after {
  top: 5px;
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked {
  background-color: rgba(255, 255, 255, 0);
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::before, .cd-primary-nav-trigger .cd-menu-icon.is-clicked::after {
  background-color: white;
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::before {
  top: 0;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::after {
  top: 0;
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
}
@media only screen and (min-width: 768px) {
  .cd-primary-nav-trigger {
    width: 100px;
    padding-left: 1em;
    background-color: #687db1;
    height: 30px;
    line-height: 30px;
    right: 2.2em;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .cd-primary-nav-trigger .cd-menu-text {
    display: inline-block;
  }
  .cd-primary-nav-trigger .cd-menu-icon {
    left: auto;
    right: 1em;
    -webkit-transform: translateX(0) translateY(-50%);
    -moz-transform: translateX(0) translateY(-50%);
    -ms-transform: translateX(0) translateY(-50%);
    -o-transform: translateX(0) translateY(-50%);
    transform: translateX(0) translateY(-50%);
  }
}

.cd-primary-nav {
  /* by default it's hidden - on top of the viewport */
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(202, 201, 201, 0.9);
  z-index: 3;
  text-align: center;
  padding: 50px 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: auto;
  /* this fixes the buggy scrolling on webkit browsers - mobile devices only - when overflow property is applied */
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.cd-primary-nav li {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: .2em 0;
  text-transform: capitalize;
}
.cd-primary-nav a {
  display: inline-block;
  padding: .4em 1em;
  border-radius: 0.25em;
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
}
.cd-primary-nav a:hover {
  background-color: #687db1;
}
.cd-primary-nav .cd-label {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  margin: 2.4em 0 .8em;
}
.cd-primary-nav .cd-social {
  display: inline-block;
  margin: 0 .4em;
}
.cd-primary-nav .cd-social a {
  width: 44px;
  height: 44px;
  padding: 0;
  background-image: url("../img/cd-socials.svg");
  background-repeat: no-repeat;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.cd-primary-nav .cd-facebook a {
  background-position: 0 0;
}
.cd-primary-nav .cd-instagram a {
  background-position: -44px 0;
}
.cd-primary-nav .cd-dribbble a {
  background-position: -88px 0;
}
.cd-primary-nav .cd-twitter a {
  background-position: -132px 0;
}
.cd-primary-nav.is-visible {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
@media only screen and (min-width: 768px) {
  .cd-primary-nav {
    padding: 80px 0;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-primary-nav li {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .cd-primary-nav .cd-label {
    font-size: 16px;
    font-size: 1rem;
  }
}

.cd-intro {
  position: relative;
  height: 100%;
  background: url("../img/cd-background-img.jpg") no-repeat center center;
  background-size: cover;
  z-index: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cd-intro h1 {
  position: absolute;
  width: 90%;
  max-width: 1170px;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  color: white;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 300;
  text-align: center;
}
#Grid{
  max-width: 1072px;
  margin: 0 auto;
  padding-top: 82px;
}
#Grid::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}
/* Flip ==== */
.flip_container,
.flipper,
.front,
.back
{
    background-color: transparent;
    width: 132px;
    height: 132px;
}
.flipper img,
.thumbnails img
{
    border: 1px solid #aba8a8;
    width: 132px;
    height: 132px;
}
.card
{
    /* margin: 50px auto 80px; */
    position: relative;

    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -webkit-perspective: 1000;
            perspective: 1000;
}
.card.flipped .front
{
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
}
.card.flipped .back
{
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
.card .flipper
{
    /* margin: auto; */
    position: relative;

    -webkit-transition: .2s;
            transition: .2s;

    -webkit-transform-style: preserve-3d;
        -ms-transform-style: preserve-3d;
            transform-style: preserve-3d;
}
.card .front,
.card .back
{
    position: absolute;
    top: 0;
    left: 0;

    cursor: pointer;
    -webkit-transition: .2s;
            transition: .2s;
    text-align: center;

    background: transparent;

    -webkit-transform-style: preserve-3d;
        -ms-transform-style: preserve-3d;
            transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}

.flip_container .front
{
    z-index: 2;

    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
}
.flip_container .back
{
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
}
.card img
{
    pointer-events: none;
}

.section-title{
    color: #aba8a8;
    font-size: 2em;
    text-align: center;
    padding-top: 90px;
    text-transform: uppercase;
}
/* --------------------------------

xgallery

-------------------------------- */
.grid {
  margin-top: 2em;
  position: relative;
  z-index: 1;
}
.grid > li {
  position: relative;
  float: left;
  margin: 2px 2px 0 0;
}

/* MODAL */

/* --------------------------------

xpopup

-------------------------------- */

.cd-popup
{
    position: absolute;
    top: 15%;
    left: 0;
    visibility: hidden;
    width: 100%;
    /* height: 100%; */
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
       -moz-transition: opacity .3s 0s, visibility 0s .3s;
            transition: opacity .3s 0s, visibility 0s .3s;
    opacity: 0;
    z-index: 2
}
.cd-bg{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 0;
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
       -moz-transition: opacity .3s 0s, visibility 0s 0s;
            transition: opacity .3s 0s, visibility 0s 0s;
    background-color: rgba(68, 68, 68, 0.9);
}
.cd-popup.is-visible
{
    visibility: visible;
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
       -moz-transition: opacity .3s 0s, visibility 0s 0s;
            transition: opacity .3s 0s, visibility 0s 0s;
    opacity: 1;
}
.cd-popup-container
{
    position: absolute;
    display: inline-block;
    width: 400px;
    /* height: auto; */
    top: 15%;
/*    bottom: 0;*/
    left: 0;
    right: 0;
    margin: auto;
    vertical-align: middle;
    -webkit-transition-duration: .3s;
       -moz-transition-duration: .3s;
            transition-duration: .3s;
    -webkit-transition-property: -webkit-transform;
       -moz-transition-property:    -moz-transform;
            transition-property:         transform;
    -webkit-transform: translateY(-40px);
       -moz-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
         -o-transform: translateY(-40px);
            transform: translateY(-40px);
    text-align: center;
    /* border-radius: .25em .25em .4em .4em; */
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
    /* Force Hardware Acceleration in WebKit */
    -webkit-backface-visibility: hidden;
    z-index: 1;
    overflow: hidden;
}
.cd-style-info-bar{
    position: absolute;
    bottom: 33px;
    background-color: #fff;
    min-height: 170px;
    -webkit-overflow-scrolling: touch;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    transition-duration: 0.4s;
    z-index: 0;
}
.cd-style-info-bar.is-visible{
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.cd-text{
    text-align: left;
    line-height: 1.4em;
}
/* .gal-fix{
  margin: -370px 0 0 -200px;
} */
.cd-popup-container h3
{
    line-height: 60px;
    display: block;
    height: 60px;
    text-transform: uppercase;
    color: #fff;
    /* border-radius: .25em .25em 0 0; */
    background: #aba8a8;
}
.cd-popup-container h2
{
    font-size: 1.2em;
    padding: 1em 3em 0em 3em;
    color: #aba8a8;
}
.cd-popup-container p
{
    font-size: .9em;
    padding: 1em 3em 0em 3em;
    color: #aba8a8;
}
p.time-score
{
    padding: 3em 1em;
}
.cd-popup-container p:last-child
{
    padding: 1em 3em 1em 3em;
    color: #aba8a8;
}
.cd-popup-container span
{
  display: block;
  font-size: 2em;
  margin: -1em 0 1em 0;
  color: #aba8a8;
}
.cd-popup-container .cd-buttons:after
{
    display: table;
    clear: both;

    content: '';
}
.cd-popup-container .cd-buttons li
{
    float: left;
    width: 50%;
}
.cd-popup-container .cd-buttons a
{
    line-height: 60px;
    display: block;
    height: 60px;
    -webkit-transition: background-color .2s;
       -moz-transition: background-color .2s;
            transition: background-color .2s;
    text-transform: uppercase;
    color: #fff;
}
.cd-popup-container .cd-buttons li:last-child a
{
    background: #687db1;
}
.no-touch .cd-popup-container .cd-buttons li:last-child a:hover
{
    background-color: #687db1;
}
.cd-popup-container .cd-buttons li:first-child a
{
    background: #aba8a8;
}
.no-touch .cd-popup-container .cd-buttons li:first-child a:hover
{
    background-color: #c5ccd8;
}
.is-visible .cd-popup-container
{
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
        -ms-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
}
.message
{
    position: fixed;
    bottom: 0;
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    color: #fff;
    text-align: center;
    background-color: #687db1;
    z-index: 2;
}
.cd-style{
    position: relative;
    font-size: .8em;
    color: #fff;
    text-align: center;
    margin-top: 18px;
    background-color: #aba8a8;
    float: left;
    width: 100%;
    z-index: 10;
}
.cd-style li{
    padding: 10px;
    display: inline-block;
    float: left;
}
.cd-style li:hover{
    cursor: pointer;
    background-color: #687db1;
}
.cd-style li:first-child{
    background-color: #687db1;
}
.cd-style li:first-child:hover{
    cursor: default;
    background-color: #687db1;
}
@media only screen and (min-width: 768px) {
  .cd-intro h1 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-intro {
    height: 700px;
  }
}

.cd-main-content {
  position: relative;
  z-index: 1;
}
.cd-main-content p {
  line-height: 1.6;
  margin: 2em 0;
}
@media only screen and (min-width: 1170px) {
  .cd-main-content p {
    font-size: 20px;
    font-size: 1.25rem;
  }
}