/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
/* --------------------------------------------- */
/* 			 Popdown Plugin Styling              */
/* --------------------------------------------- */
/* The dark transparent background */
#popdown-opacity {
    background: url(../img/blend-bg.png) repeat;
  }
  /* The white dialog itself */
  #popdown-dialog {
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  }
  #popdown-dialog .body {
    padding: 0px;
    font-family: 'PT Sans', sans-serif;
  }
  /* The dialog loading indicator */
  .popdown-loading {
    padding: 20px;
    background: url(../img/popdown-loading.gif) no-repeat center center;
  }
  /* Added to dialog when loading is complete */
  /* --------------------------------------------- */
  /* 			 Your Styling Styling                */
  /* --------------------------------------------- */
  div.popdown-content {
        float: left;
        background: #fff;
        display: block;
        width: 100%;
        /* box-shadow: 0px 0px 18px 5px #d1dcd9; */
  }
  
  div.popdown-content section.body {
    padding: 0px;
    text-align: left;
  }
  
  button.close-popdown {
      float: right;
      margin: 0;
      padding: 0;
      padding: 10px 30px;
      background-color: #fff;
      border: none;
      font-size: 14px;
      cursor: pointer;
      outline: none;
      color: #9D8265;
      text-transform: uppercase;
      border-bottom-right-radius: 5px;
      border-bottom-left-radius: 5px;
      font-weight: 700;

  }
  button.close-popdown:hover {
    color: #000;
  }
  /* endof div.popdown-content*/
  .popdown_logo{
      float: left;
      width: 100%;
      display: block;
  }
  .popdown_logo img{
      margin: 0 auto;
      width: 200px;
      display: block;
  }
  .popdown_project_title{
      float: left;
      width: 100%;
      height: auto;
      background-color: #0e68a9;
      margin-top: 25px;
  }
  .popdown_project_title h1{
      text-align: center;
      color: #fff;
      font-size: 20px;
      line-height: 25px;
      text-transform: uppercase;
      padding: 0;
      margin: 5px;
  }
  .popdown_project_description img {
      margin: 23px auto;
      width: 175px;
      clear:  both;
      display:  block;
  }
  .popdown_project_description{
      float: left;
      width: 100%;
      height: auto;
  }
  .popdown_project_description p{
      text-align: center;
      color: #666666;
  }
  
  .projects p{
       text-align: left;
       color: #fff;
       padding: 0px 0px 0px 15px;
  }
  .container_project{
      margin: 0 auto;
      width: 90%;
  }