/*---------------------------------------------------
    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(../images/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: 20px;
}
/* The dialog loading indicator */
.popdown-loading {
  padding: 20px;
  background: url(../images/popdown-loading.gif) no-repeat center center;
}
/* Added to dialog when loading is complete */
/* --------------------------------------------- */
/* 			 Your Styling Styling                */
/* --------------------------------------------- */
div.popdown-content {
  /* endof footer */

}

div.popdown-content header{
   color: rgb(20,20,10);
   /*background-color: rgb(240,230,230);*/
  border-bottom-width: 1px;
   border-bottom-style: solid;
   border-bottom-color: rgb(240,230,230);
}

div.popdown-content header h2 {
  margin: 5px;
  padding: 0;
  /*background-color: #f0f0f0;*/
  font-size: 16px;
  text-align: left;
  padding: 5px 10px;
  font-weight: 400;
  font-family: "Helvetica Neue", Helvetica, "pragmatica-web", Arial, sans-serif;
  /*color: #464646;*/
}
div.popdown-content section.body {
  padding: 0px;
  text-align: center;
}
div.popdown-content section.body h3 {
  margin: 0;
  padding: 0;
  font-size: 18px;
  color: #727272;
  font-family: "Helvetica Neue", Helvetica, "pragmatica-web", Arial, sans-serif;
}
div.popdown-content section.body p {
  font-size: 16px;
  color: #B3B3B1;
}
div.popdown-content footer {
  padding: 0px 20px 20px 0;
  text-align: right;
}
div.popdown-content footer button {
  margin: 0;
  padding: 0;
  padding: 10px 30px;
  background-color: #3BB69E;
  border: none;
  font-size: 12px;
  cursor: pointer;
  outline: none;
  color: #fff;
  text-transform: uppercase;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
div.popdown-content footer button:hover {
  background-color: #329c87;
}
/* endof div.popdown-content*/

button.close {
    -webkit-appearance: none;
    cursor: pointer;
    background: 0 0;
    border: 0;
    padding-top: 12px;
    padding-bottom: 10px; 
    padding-right: 10px;
    line-height: 1;
    font-weight: 200;
}
.close {
    float: right;
    font-size: 13px;
    font-weight: 200;
    line-height: 1;
    color: rgb(20,20,10);
    text-shadow: 0 1px 0 #fff;
    /*filter: alpha(opacity=20);*/
    opacity: .3;
    outline: none;
}
.close:focus, .close:hover {
    /*color: #000;*/
    text-decoration: none;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: .6;
}