/* The following code is adapted from the
 * transitionsView tutorial at
 * http://codepen.io/mikefowler/pen/Aiyfj
 */

 * {
   box-sizing: border-box;
   font-family: "Roboto", "Helvetica-Neue", "Helvetica Neue", Helvetica, sans-serif;
 }

 body {
   margin: 0;
   padding: 0;
   position: relative;
   background-color: #E9E9E9;
   background-color: rgba(233, 233, 233, 1.0);
 }

 h1 {
   font-weight: normal;
 }

 a {
   color: #089CDC;
   color: rgba(8, 156, 220, 1.0);
 }


/* =Utility Classes
---------------------------------------- */
.right-align {
  text-align: right;
}

.left-align {
  text-align: left;
}

.center-align {
  text-align: center;
}

.greyed {
  color: grey;
  color: rgba(180, 180, 180, 1.0);
}

.em8 {
  font-size: 0.8em;
}

/* the following is Bootstrap's own solution
   to the "row same height" problem.
   See: http://getbootstrap.com.vn/examples/equal-height-columns/
   for more information.
*/
.row-eq-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
}

.bottom-margin-md {
  margin-bottom: 25px;
}

/* this class requires flex */
.v-align-middle {
  align-items: center;
}

.no-border .category-box-points {
  border: none;
}

.no-padding-right {
  padding-right: 0;
}

.no-padding-left {
  padding-left: 0;
}

.no-padding-sides {
  padding-right: 0;
  padding-left: 0;
}

.full-height {
  height: 100%;
}

.cat-box-padding {
  padding: 45px;
}

 /* =Page Styling for Dynamic Pages
 --------------------------------------- */

 .container-fluid {
   padding-left: 0px;
   padding-right: 0px;
 }

 .page {
   position: absolute;
   /* top: 215px; */
   top: 50px;
   right: 0;
   bottom: 0;
   left: 0;
   padding-top: 1em;
   /* padding-bottom: 1em; */
   margin-bottom: 100px;
   text-align: center;
   background-color: #E9E9E9;
   background-color: rgba(233, 233, 233, 1.0);
   opacity: 0;
   transition: transform 0.5s ease, opacity 1s ease;
   transform: translate3d(100%, 0, 0);
 }

 .page.is-visible {
   opacity: 1;
   transform: translate3d(0, 0, 0);
 }

 .front-page-bknd {
   background-color: white;
   background-color: rgba(255, 255, 255, 1.0);
 }

 .atomite-page-header {
   display: block;
   width: 100%;
   min-height: 135px;
   top: 50px;
   margin-bottom: 15px;
 }

 .atomite-header-copy {
   color: #475E7C;
   color: rgba(71, 94, 124, 1.0);
   text-align: left;
   font-size: 1.5rem;
   font-family: "Roboto", 'HelveticaNeue', 'Helvetica-Neue', 'Helvetica Neue', Helvetica, sans-serif;
   font-weight: 100;
   width: 75%;
 }

 .atomite-header-copy p {
   font-weight: 300;
 }

 .atomite-header-title {
   display: inline-block;
   margin-left: 7px;
   padding-top: 5px;
   vertical-align: middle;
   font-size: 2.0rem;
   color: #475E7C;
   color: rgba(71, 94, 124, 1.0);
   text-align: left;
   font-family: "Roboto", 'HelveticaNeue', 'Helvetica-Neue', 'Helvetica Neue', Helvetica, sans-serif;
   font-weight: 300;
 }


 .atomite-header-copy img {
   width: 75px;
 }

 .footer {
   position: fixed;
   bottom: 0;
   left: 0;
   width: 100%;
   padding: 10px;
   background: white;
   z-index: 10;
 }

 .typography {
   width: 80%;
 }

 .relative {
   position: relative;
 }

#top-menubar {
   position: fixed;
   top: 0;
   width: 100%;
   height: 70px;
   padding: 10px;
   z-index: 5;
   background: -moz-linear-gradient(#FFF, #EDEDED);
   background: -webkit-linear-gradient(#FFF, #EDEDED);
   background: -ms-linear-gradient(#FFF, #EDEDED);
   background: linear-gradient(#FFF, #EDEDED);
   box-shadow: 0px 0px 16px 3px rgba(0, 0, 0, 0.1);
 }

 #top-menubar img {
   max-height: 50px;
   text-align: center;
 }

 #top-menubar span.glyphicon {
   font-size: 3rem;
 }

 .nav-container {
   display: block;
   position: relative;
   max-height: 100%;
   text-align: center;
 }

 /* top logo */
 .logo-col .logo {
  background: url('../img/atomite-logo.png') 0 0 no-repeat;
  width: 200px;
  height: 55px;
 }


 .hamburger-container {
   text-align: left;
   display: block;
   position: relative;
   margin-top: 5%;
 }

 .current-points-wrapper {
   position: relative;
   display: fixed;
   right: -10px;
   text-align: right;
 }

 /* If errors with the static
    current points container in
    the menubar persist, change
    the display property of the
    below class to 'fixed'
    -
    You will lose the alignment with
    category-boxes on the page, however
 */
 .current-points-container {
   position: fixed;
   display: block;
   top: 0;
   min-height: 150px;
   min-width: 200px;
   border: 1px solid rgba(150, 150, 150, 0.5);
   background-color: #2BA3D8;
   background-color: rgba(43, 163, 216, 1.0);
   border-bottom-left-radius: 5px;
   border-bottom-right-radius: 5px;
   box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.1);
   color: white;
   font-family: "Roboto", "Helvetica Nueue", Helvetica, sans-serif;
   font-weight: 300;
   text-align: center;
   z-index: 99;
 }

 #current-points-container img {
   display: inline-block;
 }

 #current-points {
   font-size: 1.5rem;
   font-weight: 100;
   padding-top: 5px;
   padding-bottom: 5px;
   margin-top: 5px;
   margin-bottom: 5px;
   border-top: 1px solid rgba(255, 255, 255, 0.3);
   border-bottom: 1px solid rgba(255, 255, 255, 0.3);
   display: inline-block;
   transition: all 0.5s ease;
 }

 #current-points span.points {
   font-size: 6rem;
   line-height: 7rem;
   font-weight: 200;
   font-family: "Roboto", Helvetica, serif;
   padding: none;
 }

 #current-points span.current-points-label {
   display: block;
   font-size: 1.2rem;
 }

 #points-container-name {
   font-family: "Roboto";
   font-weight: 300;
   font-size: 1.8rem;
   padding-bottom: 5px;
   margin-top: 5px;

 }

 #current-points-bottom {
   padding-top: 5px;
   margin-bottom: 10px;
 }

 #current-points-bottom a {
   color: #089CDC;
   color: rgba(8, 156, 220);
   background-color: white;
 }

 #front-page-welcome {
   display: none;
   font-family: "Roboto", "Helvetica Nueue", Helvetica, sans-serif;
   font-weight: 300;
   font-size: 3.0rem;
   color: #013E7F;
   color: rgba(1, 62, 127, 1.0);
 }

 .scale-pop {
   transform: scale(1.2);
   transition: all 0.5s ease;
 }

 .points-added {
   color: green;
   color: rgba(0, 230, 0, 1.0);
   transition: all 0.5s ease;
 }

 .points-deducted {
   color: red;
   color: rgba(230, 0, 0, 1.0);
   transition: all 0.5s ease;
 }

 /* =Nav Hidden Menu Styling
 --------------------------------------- */

 .hamburger-container:hover {
   cursor: pointer;
 }

 .hamburger-menu {
   display: none;
   opacity: 0;
   position: absolute;
   top: 0;
   left: 0;
   border: 1px solid rgba(150, 150, 150, 0.5);
   border-radius: 5px;
   padding: 7px;
   transition: opacity 0.3s ease;
   background-color: white;
   text-align: left;
   min-width: 175px;
 }

 .hamburger-menu:before {
   content: "";
   position: absolute;
   right: 0;
   top: 5%;
   height: 90%;
   width: 1px;
   box-shadow: 0px 0px 17px 5px rgba(150, 150, 150, 0.3);
   z-index: -1;
 }

 .hamburger-menu:after {
   content: "";
   position: absolute;
   right: 5%;
   bottom: 0;
   width: 90%;
   box-shadow: 0px 0px 17px 5px rgba(150, 150, 150, 0.3);
   z-index: -1;
 }

 .show-menu {
   display: block;
   opacity: 1;
   transition: opacity 0.3s ease;
 }

 .hamburger-menu ul {
   list-style-type: none;
   display: block;
   padding: 10px;
 }

 .hamburger-menu ul li {
   display: block;
   border-top: 1px solid rgba(150, 150, 150, 0.5);
   color: #475E7C;
   color: rgba(71, 94, 124, 1.0);
   padding: 5px;
 }

 .hamburger-menu li:hover {
   cursor: pointer;
   background-color: rgba(0, 0, 0, 0.2);
 }

 .hamburger-menu ul a:active,
 .hamburger-menu ul a:hover,
 .hamburger-menu ul a {
   text-decoration: none;
   border: none;
   color: #475E7C;
   color: rgba(71, 94, 124, 1.0);
 }

.menu-close {
   display: block;
   font-size: 1.5rem;
   padding-left: 15px;
   height: 20px;
 }

 .menu-close:hover {
   cursor: pointer;
 }


 /* =TOC and Pages Styling
 --------------------------------------- */

 .bordered-left {
   display: block;
   position: relative;
   height: 100%;
   border-left: 1px solid rgba(150, 150, 150, 0.5);
 }

 .vertical-divider {
   position: relative;
   display: block;
   height: 100%;
   width: 5px;
   background-color: black;
 }

 .category-box {
   display: block;
   position: relative;
   padding: 15px;
   margin-bottom: 35px;
   text-align: left;
   border: solid 1px rgba(150, 150, 150, 0.5);
   background-color: white;
   background-color: rgba(255, 255, 255, 1.0);
   box-shadow: none;
   border-radius: 5px;
   transition: box-shadow 0.3s ease, border 0.3s ease;
 }

 /*.category-box div {
   padding-top: 0;
   padding-bottom: 0;
   margin-top: 0;
   margin-bottom: 0;
 } */

 .category-box div.election-points-container {
   padding-bottom: 20px;
   padding-top: 20px;
 }

 .category-box div.election-points-container:first-child {

 }

 .do-not-use {
   vertical-align: text-top;
   font-weight: normal;
   font-family: "Roboto", Helvetica, sans-serif;
   color: #475E7C;
   color: rgba(71, 94, 124, 1.0);
 }

 .do-not-or {
   margin-left: 5px;
   margin-right: 5px;
   font-weight: normal;
 }

 .do-not-use span.red {
   color: red;
   margin-left: 10px;
 }

 .category-box-icon {
   display: block;
   position: relative;
   margin-right: 20px;
 }

 .category-box-icon img {
   max-height: 100%;
 }

 .category-box-body {
   margin-left: 20px;
 }

 .category-box-points {
   display: block;
   height: 100%;
   text-align: center;
   font-weight: 400;
   margin-top: 10px;
   margin-bottom: 10px;
   /* border-left: 1px solid rgba(150, 150, 150, 0.5); */
 }

 .category-box-points p {
   margin-bottom: 0px;
 }

 .category-box-header {
   font-family: "Roboto", "Helvetica Nueue", Helvetica, sans-serif;
   font-weight: 300;
   font-size: 2.5rem;
   color: #013E7F;
   color: rgba(1, 62, 127, 1.0);
 }

 .category-box-copy {
   font-family: "Roboto", "Helvetica Nueue", Helvetica, sans-serif;
   font-weight: 300;
   font-size: 1.5rem;
   color: #013E7F;
   color: rgba(1, 62, 127, 0.7);
 }

 .points-display {
   font-size: 6rem;
   font-weight: 200;
   padding: 0px;
   margin: 0px;
 }

 .points-display-top, .points-display-bottom {
   line-height: 1rem;
   font-size: 2rem;
   font-weight: 200;
 }

 .points-display-middle {
   display: inline-block;
   margin: 0px;
   padding: 0px;
 }

 .points-earned {
   color: #00A651;
   color: rgba(0, 166, 81, 1.0);
   transition: color 0.3s ease;
 }

 .points-up-to {
   color: #2C9FD2;
   color: rgba(44, 159, 210);
   transition: color 0.3s ease;
 }

 .checked-ok {
   border-color: rgba(170, 220, 241, 1.0);
   box-shadow: 0px 0px 7px 2px rgba(170, 220, 241, 1.0);
   transition: box-shadow 0.3s ease, border 0.3s ease
 }

 .checked-ok-icon {
   position: absolute;
   display: block;
   top: 35%;
   right: -20px;
   opacity: 0;
   transition: opacity 0.3s ease;
    background: url(../img/small-check.png) 0 0 no-repeat;
    width: 39px;
    height: 50px; 
  }

 .checked-ok > .checked-ok-icon {
   opacity: 1;
   transition: opacity 0.3s ease;
 }

 .checked-ok-icon img {
   height: 100%;
   width: 100%;
 }

 .data-dependent-disabled {
   opacity: 0.3;
 }

 .padded-panel {
   padding-top: 25px;
   padding-bottom: 25px;
 }

 .inline-middle {
   display: inline-block;
   vertical-align: middle;
 }

 .panel-img {
   display: inline-block;
   margin-right: 25px;
 }

 .panel-header {
   display: block;
   text-align: center;
 }

 .panel-header-left {
   display: block;
   text-align: left;
 }


 /* =Election Forms Styling
 ----------------------------------- */
 .election-input-container {
   margin: 0 auto;
   margin-top: 0;
   margin-bottom: 0;
   margin-left: 25px;
   padding-bottom: 0;
 }

 .election-label {
   width: 100%;
   text-align: left;
 }

 .election-points-container {
   display: inline-block;
   vertical-align: middle;
   width: 100%;
   height: 100%;
   text-align: center;
   font-size: 2.5rem;
   /* border-left: solid 1px rgba(150, 150, 150, 0.5); */
   border-top: solid 1px rgba(150, 150, 150, 0.5);
   padding-right: 0;
 }

 .election-enabled {
   color: #00A651;
   color: rgba(0, 166, 81, 1.0);
   transition: color 0.3s ease;
 }

 .election-disabled {
   color: grey;
   color: rgba(150, 150, 150, 0.7);
 }

 .election-disabled {
   color: grey;
   color: rgba(150, 150, 150, 0.5);
   transition: color 0.3s ease;
 }

 .election-dropdown {
   background-color: #eee;
 }

 .input-group-btn button:disabled {
   cursor: not-allowed;
 }

 .input-currency {
   position: relative;
   padding-left: 24px;
 }

 .input-currency:before {
   content: "$";
   display: block;
   position: absolute;
   left: 0;
 }

 button.edit-button span.fader {
   opacity: 0;
   transition: opacity 1s ease;
   transition-delay: 0.3s;
 }

 .enabler {
   transition: background-color 0.3s;
 }

 .enabler-color {
   background-color: #2897C8;
   background-color: rgba(40, 151, 200, 1.0);
 }

 .enable-specific-color {
   background-color: #20789E;
   background-color: rgba(32, 120, 158, 1.0);
 }

 .category-box-footer {
   margin-top: 0;
   padding-top: 0;
 }

 .category-box-footer > .row {
   padding-top: 25px;
   border-top: 1px solid rgba(150, 150, 150, 0.5);
 }

 .survey-panel-footer {
   width: 100%;
   padding-top: 25px;
   border-top: 1px solid rgba(150, 150, 150, 0.5);
 }





/* =User Summary Page Styling
-------------------------------------- */
.user-elections-table {
  text-align: left;
}

.user-elections-table tr.danger {
  color: grey;
  color: rgba(150, 150, 150, 0.7);
}

/* =Header Styling
---------------------------------------- */
.header-img {
  height: 40px;
  z-index: 999;
}

.right-padding {
 padding-right: 20px;
}

.breadcrumb {
  background-color: inherit;
  margin-bottom: 0;
  margin-left: 0;
  padding-left: 0;
}

#breadcrumbs-container {
  text-align: left;
  margin-top: 10px;
  margin-left: 0;
}

/* =Redeem Page Styling
----------------------------------------- */
.prize-container {
  margin-bottom: 70px;
}

.redeem-page-header {
  margin-bottom: 50px;
}

.redeem-page-header span {
  color: #013E7F;
  color: rgba(1, 62, 127, 1.0);
}

.redeem-header {
  font-family: "Roboto", "Helvetica Nueue", Helvetica, sans-serif;
  font-weight: 300;
  font-size: 2.5rem;
  color: #013E7F;
  color: rgba(1, 62, 127, 1.0);
  margin-top: 0;
}

.generic-redeem-card {
  display: inline-block;
  width: 100%;
  min-height: 166px;
  background-color: white;
  border: 1px solid grey;
  border: 1px solid rgba(150, 150, 150, 0.3);
  border-radius: 10px;
  text-align: center;
  padding: 15px;
}

.generic-redeem-card-head {
  font-family: "Roboto", "Helvetica-Neue", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 4.5rem;
  font-weight: 100;
  color: #013E7F;
  color: rgba(1, 62, 127, 0.7);
}

.generic-redeem-card-text {
  font-family: "Roboto", "Helvetica-Neue", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: #013E7F;
  color: rgba(1, 62, 127, 0.7);
}

.redeem-cost-display {
  display: block;
  margin-top: 25px;
  margin-bottom: 25px;
  height: 33px;
  color: grey;
  color: rgba(0, 0, 0, 0.7);
  font-family: "Roboto", "Helvetica-Neue", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 100;
  font-size: 24px;
}

.redeem-item-button {
}

.redeem-image {
  display: inline-block;
  margin-bottom: 25px;
  max-height: 165px;
  text-align: center;
}

.redeem-selection {
  margin-bottom: 25px;
}

.redeem-item-button {
  width: 100%;
}


/* =Front Page Styling
--------------------------------------- */
#hero-unit {
  position: relative;
  width: 100%;
  min-height: 540px;
  /*background-image: url('../img/front_page_woman.png');
  background-position: right;
  background-repeat: no-repeat; */
  text-align: left;
}

.hero-unit-img {
  position: absolute;
  right: 0px;
  top: 0px;
  background: url('../img/front_page_woman.png');
  width: 819px;
  height: 546px;
  background-repeat: no-repeat;
}
/*
.hero-unit-img:before {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 15%;
  left: 0px;
  bottom: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(233,233,233,1.0)), to(rgba(233,233,233,0.0)));
  background: -webkit-linear-gradient(left, rgba(233,233,233,1.0), rgba(233,233,233,0.0));
  background: -moz-linear-gradient(left, rgba(233,233,233,1.0), rgba(233,233,233,0.0));
  background: -o-linear-gradient(left, rgba(233,233,233,1.0), rgba(233,233,233,0.0));
  border: 1px solid red;
}

.hero-unit-img:after {
  content: "";
  position: absolute;
  display: block;
  height: 15%;
  width: 100%;
  bottom: 0px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(233,233,233,1.0)), to(rgba(233,233,233,0.0)));
  background: -webkit-linear-gradient(bottom, rgba(233,233,233,1.0), rgba(233,233,233,0.0));
  background: -moz-linear-gradient(bottom, rgba(233,233,233,1.0), rgba(233,233,233,0.0));
  background: -o-linear-gradient(bottom, rgba(233,233,233,1.0), rgba(233,233,233,0.0));
  border: 1px solid red;
}
*/

#hero-unit-inner {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 20%;
  text-align: left;
}

#hero-unit-inner h1 {
  font-size: 7rem;
  font-family: "Roboto", "Helvetica-Neue", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 100;
  color: #475E7C;
  color: rgba(71, 94, 124, 1.0);
  text-align: left;
}

#hero-unit-inner h1 span {
  display: block;
}

#hero-unit-inner p {
  font-size: 1.7rem;
  font-family: "Roboto", "Helvetica-Neue", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 300;
  color: #475E7C;
  color: rgba(71, 94, 124, 1.0);
  text-align: left;
}

#hero-unit-inner a.btn {
  font-weight: 100;
  font-size: 2rem;
  text-align: left;
  vertical-align: middle;
}

.right-caret {
  display: inline;
  max-height: 2rem;
  vertical-align: middle;
  margin-left: 7px;
}

.button-txt {
  vertical-align: middle;
}

.vertical-infobox {
  display: block;
  margin-top: 25px;
  text-align: center;
  padding-top: 110px;
  background-position: 50% 0%;
  background-repeat: no-repeat; 
}

.learn-info {
  background-image: url('../img/transparency_rev.png');
}

.decide-info {
  background-image: url('../img/control_rev.png');
}

.earn-info {
  background-image: url('../img/rewards_rev.png');
}

.vertical-infobox h3 {
  font-size: 3rem;
  font-family: "Roboto", "Helvetica Neue", "Helvetica-Neue", Helvetica, sans-serif;
  font-weight: 300;
  color: #013E7F;
  color: rgba(1, 62, 127, 1.0);
  text-align: center;
}

.vertical-infobox p, .vertical-infobox a {
  text-align: left;
}

.vertical-infobox a {
  display: block;
  width: 100%;
}

/* =Survey Page Styling (some is in general page section)
---------------------------------------------------------- */
.more-surveys-wrapper {
  margin-right: 30px;
  text-align: left;
}
.survey-select-container {
  position: relative;
  width: 100%;
  color: white;
  font-family: "Roboto", Helvetica, sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  padding: 0;
  margin:0;
  background-color: #2DA0D3;
  background-color: rgba(45, 160, 211, 1.0);
  border-radius: 5px;
  padding: 7px;
}

.survey-select-container span {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
}

.survey-select-container span img {
  width: 75%;
  height: 75%;
}

.survey-select-container h5 {
  display: inline-block;
  width: 85%;
  vertical-align: middle;
  text-align: left;
  font-family: "Roboto", "Helvetica Nueue", Helvetica, sans-serif;
  background-color: #2DA0D3;
  background-color: rgba(45, 160, 211, 1.0);
  font-weight: 300;
  font-size: 1.75rem;
  color: white;
  margin: 0;
  margin-left: 5px;
}

.survey-select-caret {
  display: inline-block;
  text-align: right;
  height: 100%;
}

.more-surveys {
  display: block;
  text-align: left;
  font-family: "Roboto", "Helvetica Nueue", Helvetica, sans-serif;
  font-weight: 300;
  font-size: 1.75rem;
  color: #475E7C;
  padding-top: 0;
  margin: 0;
  margin-bottom: 5px;
}

.survey-table-wrapper {
  padding-left: 15px;
  padding-right: 15px;
}

.table-header-row .category-box-header {
  font-size: 1.7rem;
}

.survey-choice-header {
  text-align: center;
}

.survey-check:hover {
  cursor: pointer;
}

.survey-check span {
  visibility: hidden;
}

.survey-points-display {
    min-width: 75px;
    font-size: 1.9rem;
}

.survey-points-display span.points-display {
  display: inline-block;
  font-size: inherit;
  color: inherit;
  font-weight: 500;
}

.table > tbody > tr > td {
  vertical-align: middle;
}

.done-for-now {
  border: 1px solid #9D9C9C;
  background: -moz-linear-gradient(#FFF, #E0E0E0);
  background: -webkit-linear-gradient(#FFF, #E0E0E0);
  background: -ms-linear-gradient(#FFF, #E0E0E0);
  background: linear-gradient(#FFF, #E0E0E0);
  color: #1A83C2;
  color: rgba(26, 131, 194, 1.0);
}

.next-page {
  color: white;
  color: rgba(255, 255, 255, 1.0);
  border: 1px solid #9D9C9C;
}

/* =Social Network page styling
-------------------------------------------------- */
.inconsistencies-warning {
  display: none;
  margin-left: 15px;
}


/* =Modal Window Styles
-------------------------------------------------- */
#modal-content {
  position: fixed;
  bottom: 0;
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
  padding-bottom: 25px;
  z-index: 100;
}

#modal-success-content {
  text-align: center;
  padding: 40px;
  z-index: 100;
}

.modal-connect-linkedin {
    background-image: url('../img/modal-connect-linkedin.png');
    width: 308px;
    height: 110px;
    margin: 0 auto;
}

.network-login-linkedin {
  margin: 0;
  margin-top: 20px;
  padding: 0;
  width: 100%
}

.warning-img-wrapper {
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
}

.modal-warning-box {
  display: block;
  position: relative;
  text-align: left;
}

.modal-warning-box p {
  display: inline-block;
  width: 80%;
}

.warning-box-buttons {
  text-align: center;
}

.btn-modal {
  border: none;
  color: #1A83C2;
  color: rgba(26, 131, 194, 1.0);
}

.btn-modal-default {
  border: none;
  background-color: #2A9DD0;
  background-color: rgba(42, 157, 208, 1.0);
  color: white;
}

/* =Footer Styling for the whole site
----------------------------------------------- */

.powered-by {
  display: none;
}

#site-footer {
  display: block;
  width: 100%;
  height: 60px;
  padding-top: 10px;
  background-color: #282626;
  background-color: rgba(40, 38, 38, 1.0);
  z-index: 9999;
}

.footer-copy {
  color: white;
}

.footer-media-icons {
  display: block;
  text-align: right;
  background-image: url('../img/footer-icons.png');
  background-repeat: no-repeat;
  width: 196px;
  height: 43px;
}

/* =PI Reset
------------------- */
#pi-reset {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.0);
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 1em;
  margin-bottom: 10px;
  transition: color 0.3s ease, backgroun-color 0.3s ease;
}

#pi-reset:hover {
  color: rgba(255, 20, 20, 1.0);
  background-color: (255, 255, 255, 0.8);
  transition: color 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
}

/* =SurveySuccess styles
-------------------------------------- */
#success-top-section {
  text-align: center;
}

.success-icon {
  background: url('../img/alex-success.png');
  width: 77px;
  height: 77px;
  margin: 0 auto;

}

.panel-img {
  background: url('../img/bullhorn-icon.png');
  width: 70px;
  height: 70px;
}

.success-copy {
  text-align: left;
  color: grey;
  color: rgba(150, 150, 150, 0.7);
}

.success-header {
  color: #013E7F;
  color: rgba(1, 62, 127, 1.0);
}

.additional-survey-button {
  display: inline-block;
  position: relative;
  width: 100%;
  background-color: #2BA3D8;
  background-color: rgba(43, 163, 216, 1.0);
  border-radius: 5px;
  color: white;
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 10px;
}

.additional-survey-button.survey-completed {
  background-color: #3CB878;
  background-color: rgba(60, 184, 120, 1.0);
}

.additional-survey-earnings {
  display: inline-block;
  text-align: right;
  width: 100%;
}

.survey-check-icon {
  text-align: left;
  position: absolute;
  top: 7px;
  right: 10px;
}

#additional-surveys {
  margin-bottom: 50px;
}

/* =FAQ Pages and Accordion Boxes
-------------------------------------- */
.citation-info {
  font-size: 0.8em;
  font-style: italic;
  display: block;
  width: 80%;
}

.faq-collapsable-set {
  font-family: "Roboto", Helvetica, sans-serif;
}

.faq-collapsable-set .panel,
.faq-collapsable-set .panel-heading {
  border-radius: 10px;
}

.faq-collapsable-set .panel-heading {
  background-color: white;
  position: relative;
}

.faq-panel .panel-body {
  text-align: left;
}

.faq-title {
  text-align: left;
  font-family: "Roboto", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1.2em;
  color: #475E7C;
  color: rgba(71, 94, 124, 1.0);
}

.faq-accordion-toggler {
  position: absolute;
  right: 10px;
  top: 5px;
  display: block;
  text-align: right;
  font-size: 1.2em;
}


/* =Popover and other Util Styles
-------------------------------------- */
.popover {
  background-color: #FDF797;
}

.popover.left > .arrow:after {
  border-left-color: #FDF797;
}
