/*---------------------------------------------------
    LESS Elements 0.6
  ---------------------------------------------------
    A set of useful LESS mixins by Dmitry Fadeyev
    Special thanks for mixin suggestions to:
      Kris Van Herzeele,
      Benoit Adam,
      Portenart Emile-Victor,
      Ryan Faerman

    More info at: http://lesselements.com
-----------------------------------------------------*/
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  min-width: 1300px;
  min-width: 1024px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
::selection {
  background: #EC008C;
  /* Safari */

  color: #fff;
}
::-moz-selection {
  background: #EC008C;
  /* Firefox */

  color: #fff;
}
.onload {
  position: absolute;
  overflow: hidden;
  left: -9999px;
  top: -9999px;
  height: 1px;
  width: 1px;
}
.clearfix {
  clear: both;
}
/* COLORS */
.development .bg {
  background: #6c9ed0;
  color: #fff;
}
.development .bg h2,
.development .bg h3 {
  color: #fff;
}
.design .bg {
  background: #f65857;
  color: #fff;
}
.design .bg h2,
.design .bg h3 {
  color: #fff;
}
.business .bg {
  background: #5d9f95;
  color: #fff;
}
.business .bg h2,
.business .bg h3 {
  color: #fff;
}
.customer-service .bg {
  background: #847fb5;
  color: #fff;
}
.customer-service .bg h2,
.customer-service .bg h3 {
  color: #fff;
}
.production .bg {
  background: #c7b794;
  color: #fff;
}
.production .bg h2,
.production .bg h3 {
  color: #fff;
}
/* PARAGRAPHS */
p {
  font-size: 15px;
  line-height: 24px;
  margin: 0 0 15px 0;
}
/* LINKS */
/* HEADINGS */
h1 {
  color: #fff;
  font-size: 62px;
  line-height: 46px;
  font-weight: bold;
  text-transform: none;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
h1 .sub {
  font-size: 36px;
}
h2 {
  color: #414042;
  font-size: 36px;
  font-weight: bold;
  text-transform: none;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0 0 15px 0;
}
h3 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #414042;
  font-weight: bold;
  font-size: 25px;
  text-transform: none;
}
blockquote {
  border: none;
  font-style: italic;
  font-size: 14px;
  padding: 0;
  margin: 0 0 5px 0;
}
/* HEADER */
header {
  width: 100%;
  position: relative;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center bottom;
  background-color: #000000;
  background-repeat: no-repeat;
  height: 667px;
  /* background-attachment:fixed; */

}
header .breadcrumbs {
  color: #fff;
  display: block;
  font-size: 13px;
  margin-top: 40px;
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  -webkit-opacity: 0.7;
  opacity: 0.7;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: default;
}
header .breadcrumbs a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px dotted #fff;
}
header .breadcrumbs a:hover {
  border-bottom: none;
}
header .breadcrumbs:hover {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
}
header h1 {
  margin: 110px 0 0 0;
  display: inline-block;
}
header .learn-more {
  position: absolute;
  text-align: center;
  bottom: 50px;
  bottom: 120px;
  color: #fff;
  width: 100px;
  left: 50%;
  margin-left: -70px;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: 99;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  height: 23px;
  padding: 10px 20px;
}
header .learn-more:hover {
  border: 1px solid #fff;
}
header.home {
  background-image: url('../images/careers/office3.jpg');
}
/* BODY */
.bullet {
  color: #666666 !important;
  font-size: 11px;
}
/* > Departments */
.section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  padding: 130px 0;
  background: #fff;
}
.section.minheight {
  min-height: 300px;
}
.title {
  margin-bottom: 40px;
}
.center {
  text-align: center;
}
.section.departments {
  padding: 0;
}
.section.departments .row-fluid {
  margin-left: 10px;
}
.section.departments .gradient-left {
  background: -moz-linear-gradient(left, #ffffff 60%, rgba(255, 255, 255, 0) 100%);
  /* FF3.6+ */

  background: -webkit-gradient(linear, left top, right top, color-stop(60%, #ffffff), color-stop(100%, rgba(255, 255, 255, 0)));
  /* Chrome,Safari4+ */

  background: -webkit-linear-gradient(left, #ffffff 60%, rgba(255, 255, 255, 0) 100%);
  /* Chrome10+,Safari5.1+ */

  background: -o-linear-gradient(left, #ffffff 60%, rgba(255, 255, 255, 0) 100%);
  /* Opera 11.10+ */

  background: -ms-linear-gradient(left, #ffffff 60%, rgba(255, 255, 255, 0) 100%);
  /* IE10+ */

  background: linear-gradient(to right, #ffffff 60%, rgba(255, 255, 255, 0) 100%);
  /* W3C */

  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#00ffffff', GradientType=1);
  /* IE6-9 */

  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100px;
}
.section.departments .gradient-right {
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #ffffff 60%);
  /* FF3.6+ */

  background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(60%, #ffffff));
  /* Chrome,Safari4+ */

  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #ffffff 60%);
  /* Chrome10+,Safari5.1+ */

  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #ffffff 60%);
  /* Opera 11.10+ */

  background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #ffffff 60%);
  /* IE10+ */

  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #ffffff 60%);
  /* W3C */

  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1);
  /* IE6-9 */

  height: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100px;
}
.section.departments .row.first-row {
  border-bottom: 1px solid #d6d6d6;
}
.section.departments .department {
  height: 200px;
  color: #666666;
  font-size: 15px;
  display: block;
  border-right: 1px solid #d6d6d6;
  padding: 40px 20px 20px 20px;
  padding: 40px 20px 40px 20px;
  float: left;
  text-align: center;
  width: 28.90%;
}
.section.departments .department h2 {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
  font-size: 24px;
}
.section.departments .department p {
  margin: 0 0 10px 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.section.departments a.all-listings {
  cursor: pointer;
}
.section.departments .department.first-department {
  margin-left: 0px;
  border-left: 1px solid #d6d6d6;
}
.section.departments .department.all-listings {
  color: #8e8e8e;
}
.section.departments .department.all-listings h2 {
  color: #8e8e8e;
}
.section.departments .department.grey {
  background: #f8f8f8;
}
.section.departments .department:hover .links {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
}
.section.departments .department a {
  color: #666;
}
.section.departments .department.development:hover a {
  color: #6c9ed0;
}
.section.departments .department.development:hover a h2 {
  color: #6c9ed0;
}
.section.departments .department.design:hover a {
  color: #f65857;
}
.section.departments .department.design:hover a h2 {
  color: #f65857;
}
.section.departments .department.business:hover a {
  color: #5d9f95;
}
.section.departments .department.business:hover a h2 {
  color: #5d9f95;
}
.section.departments .department.customer-service:hover a {
  color: #847fb5;
}
.section.departments .department.customer-service:hover a h2 {
  color: #847fb5;
}
.section.departments .department.production:hover a {
  color: #c7b794;
}
.section.departments .department.production:hover a h2 {
  color: #c7b794;
}
.section.departments .department.all-listings:hover {
  color: #000000;
}
.section.departments .department.all-listings:hover h2 {
  color: #000000;
}
.section.departments .links {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
}
.section.departments .links a {
  color: #EC008C !important;
}
.section.departments .links a:hover {
  color: #bd0166 !important;
}
.section.departments:last-child {
  margin-right: 0px;
}
/* > Culture */
.section.culture {
  overflow: hidden;
  max-height: 546px;
  height: 100%;
  background: #000;
  padding: 0;
}
.section.culture .prev,
.section.culture .next {
  position: absolute;
  top: 50%;
  cursor: pointer;
  margin-top: -25px;
  z-index: 999;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.section.culture .prev:hover,
.section.culture .next:hover {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
}
.section.culture .prev {
  left: 50px;
}
.section.culture .next {
  right: 50px;
}
.section.culture img {
  max-width: none !important;
}
.section.culture .prev-image {
  float: left;
  /*margin-left:-11%; */

  margin-left: -10%;
  width: 30%;
  height: 100%;
  background: #957fb5;
  overflow: hidden;
}
.section.culture .prev-image img {
  filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
  /* Firefox 10+, Firefox on Android */

  filter: gray;
  /* IE6-9 */

  -webkit-filter: grayscale(100%);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  -webkit-opacity: 0.8;
  opacity: 0.8;
}
.section.culture .text {
  float: left;
  background: #957fb5;
  color: #fff;
  width: 590px;
  /* 690px */

  width: 34%;
  width: 36%;
  height: 600px;
  padding: 50px 50px 50px 50px;
  padding: 3% 3% 3% 3%;
}
.section.culture .text h2 {
  color: #fff;
}
.section.culture .text .avatar {
  float: left;
}
.section.culture .text .divider {
  height: 1px;
  width: 100%;
  background: #a997c3;
  margin-top: 40px;
}
.section.culture .text .thoughts {
  padding-top: 40px;
}
.section.culture .text .thoughts .thought {
  float: left;
  width: 77%;
  margin-left: 20px;
}
@media screen and (max-width: 1200px) {
  .section.culture .thoughts img {
    width: 50px;
    height: 50px;
  }
  .section.culture .thoughts .thought {
    width: 79% !important;
  }
  .section.culture .thoughts .thought blockquote,
  .section.culture .thoughts .thought cite {
    font-size: 13px;
  }
}
.section.culture .current-image {
  float: right;
  width: 40%;
  width: 38%;
  height: 100%;
  background: #000;
  overflow: hidden;
}
.section.quote {
  background: #f5f5f5;
  padding: 70px 0;
  text-align: center;
}
.section.quote img {
  max-width: auto !important;
  margin: 0 0 10px 0;
}
.section.quote blockquote {
  color: #666666;
  font-size: 24px;
  line-height: 31px;
  font-style: normal;
  margin: 13px 0 0 0;
  font-weight: 300;
  text-align: center;
}
.section.quote .office-snapshots img {
  margin-top: 9px;
}
.section.quote .office-snapshots blockquote {
  margin-top: 12px;
}
/* > Stats */
.section.stats {
  text-align: center;
  color: #666666;
  font-size: 15px;
  line-height: 25px;
}
.section.stats h2 {
  text-align: center;
}
.section.stats .individual-stat {
  border-left: 1px solid #d6d6d6;
  margin-left: 0px;
  padding: 0 10px;
}
.section.stats .individual-stat .number {
  color: #333333;
  font-size: 77px;
  line-height: 87px;
  font-weight: 200;
  height: 84px;
  display: inline-block;
}
.section.stats .first-individual-stat {
  border-left: none;
  padding-left: 0px;
}
.section.stats .last-individual-stat {
  padding-right: 0px;
}
/* > Video */
.section.video {
  padding-top: 50px;
  padding-bottom: 0px;
}
.section.video .text {
  position: absolute;
  top: 140px;
  left: 52%;
  z-index: 200;
  width: 430px;
  color: #fff;
  font-size: 22px;
  line-height: 39px;
  font-weight: 500;
}
.section.video .text p {
  font-size: 22px;
  line-height: 39px;
  margin: 0 0 10px 0;
}
.section.video .text h2 {
  color: #fff;
}
.section.video .vid {
  background: url('../images/careers/poster.jpg') no-repeat bottom center #000000;
  /* .background-size(cover); */

  height: 570px;
  /* 570 */

  overflow: hidden;
  position: relative;
}
.section.video .default {
  position: absolute;
  top: 0px;
  left: 50%;
  margin-left: -950px;
  z-index: 100;
  max-width: none;
}
.section.video .play {
  position: absolute;
  top: 220px;
  left: 36%;
  cursor: pointer;
  z-index: 200;
}
/* > Perks */
.section.perks .perk-row {
  margin-top: 30px;
  height: 155px;
  color: #666666;
}
.section.perks .perk-row h3 {
  margin-top: 0px;
  padding-top: 0px;
}
.section.perks .perk-row .icon {
  text-align: center;
}
.interested {
  background: #957fb5;
  padding: 30px 0 35px 0;
  text-align: center;
}
.interested h3 {
  color: #fff;
  font-weight: 200;
}
/* Open Fridays */
.section.openfridays {
  height: 403px;
  /* 603 */

  background: url('../images/careers/openfridays.jpg') no-repeat top center #000000;
  background: url('../images/careers/openfridays1.jpg') no-repeat top center #000000;
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;
  color: #fff;
  /*.text-shadow (@string: 0px 1px 5px rgba(0, 0, 0, 0.55));*/

}
.section.openfridays:hover {
  /* background-image:url('../images/careers/openfridays2.jpg'); */

}
.section.openfridays h2 {
  color: #fff;
}
.section.openfridays p {
  font-size: 22px;
  font-weight: 500;
  line-height: 39px;
}
.section.openfridays .eventbrite {
  background: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  padding: 15px 15px 5px 15px;
}
.back a {
  display: block;
  text-align: center;
  background: #e3e3e3;
  padding: 20px 0;
  color: #414042;
}
.back a:hover {
  background: #cbcbcb;
}
/* FOOTER */
#super-footer-container {
  margin-top: 0px;
}
#footer-top-container {
  display: none;
}
@media all and (min-width: 1500px) {
  header h1 {
    margin-left: -200px;
  }
  header .breadcrumbs {
    margin: 40px 0 0 -200px;
  }
}
/******* SUB PAGES *******/
.all-listings-modal-overlay {
  background: rgba(255, 255, 255, 0.99);
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 99999;
  display: none;
}
.all-listings-modal {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 999999;
  display: none;
  overflow-y: scroll;
  width: 100%;
  height: 100%;
  /* padding-top:50px; */

}
.all-listings-modal .the-listings {
  position: absolute;
  left: 50%;
  margin-left: -470px;
  z-index: 9999999;
  padding-bottom: 150px;
  margin-top: 100px;
}
.all-listings-modal .job-listing {
  display: none;
  margin-left: 0;
  margin-right: 20px;
}
.all-listings-modal .job-listing:nth-child(4) {
  margin-right: 0;
}
.all-listings-modal .job-listing:hover,
.all-listings-modal .job-listing.active {
  background: #957FB5 !important;
  color: #fff;
}
.all-listings-modal .job-listing:hover h3,
.all-listings-modal .job-listing.active h3 {
  color: #fff;
}
.all-listings-modal .top {
  display: none;
  margin-bottom: 40px;
}
.all-listings-modal .close {
  font-size: 37px;
  line-height: 37px;
  font-weight: normal;
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  -webkit-opacity: 0.8;
  opacity: 0.8;
}
.all-listings-modal .close:hover {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
}
.all-listings-modal .all-listings-iframe {
  width: 100%;
  display: none;
  margin-top: 20px;
}
header.development {
  background-image: url('../images/careers/development.jpg');
}
header.design {
  background-image: url('../images/careers/design.jpg');
}
header.business {
  background-image: url('../images/careers/business.jpg');
}
header.customer-service {
  background-image: url('../images/careers/customer-service.jpg');
}
header.production {
  background-image: url('../images/careers/production.jpg');
}
.section.center {
  text-align: center;
}
.section.center p {
  width: 660px;
  display: block;
  margin: 0 auto 30px auto;
  font-size: 22px;
  line-height: 39px;
}
.section.intro p {
  color: #666666;
  font-size: 22px;
  font-weight: 400;
  line-height: 39px;
}
.department-img {
  margin: 30px 0 0 0;
}
.the-listings {
  margin-top: 50px;
}
.the-listings .job-listing {
  background: #f2f0f0;
  min-height: 210px;
  min-height: 200px;
  /* 200 */

  padding: 30px 17px 34px 17px;
  padding: 30px 22px 34px 22px;
  text-align: center;
  color: #666666;
  font-size: 15px;
  line-height: 24px;
  cursor: pointer;
  margin-bottom: 30px;
}
.the-listings h3 {
  font-size: 19px;
  line-height: 27px;
}
.listings {
  padding: 140px 0;
}
.listings .job-listing {
  display: block;
}
.individual-listings {
  display: none;
  background: #fafafa;
}
.individual-listings .individual-listing {
  display: none;
  margin: 0;
}
.individual-listings .other-listings,
.individual-listings .share-listing {
  background: #fff;
  padding: 10px 20px 14px 20px;
}
.individual-listings .other-listings h3,
.individual-listings .share-listing h3 {
  font-size: 19px;
  line-height: 24px;
}
.individual-listings .other-listings a,
.individual-listings .share-listing a {
  color: #666666;
  font-size: 15px;
}
.individual-listings .other-listings ul,
.individual-listings .share-listing ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.individual-listings .other-listings ul li,
.individual-listings .share-listing ul li {
  margin-bottom: 10px;
}
.share-listing {
  margin: 20px 0 0 0;
}
.share-listing input[type=text] {
  width: 92%;
  -webkit-box-shadow: 0px 0px 0px rgba(255, 255, 255, 0) !important;
  -moz-box-shadow: 0px 0px 0px rgba(255, 255, 255, 0) !important;
  box-shadow: 0px 0px 0px rgba(255, 255, 255, 0) !important;
}
.share-listing input[type=text]:focus {
  border: 1px solid #333;
}
.listing-iframe {
  width: 100%;
  background: #fafafa;
  border: none;
  /* height:720px;
  height:100%;*/

}
.other-bar {
  text-align: center;
  padding: 10px 0 12px 0;
  font-weight: 300;
  cursor: pointer;
}
.other-departments {
  display: none;
}
.arrow {
  width: 17px;
  height: 9px;
  background: url('../images/careers/downarrow.png') top center no-repeat;
  display: inline-block;
  margin-bottom: 2px;
}
.arrow.up {
  background: url('../images/careers/uparrow.png') top center no-repeat;
}
/**** COLORS ****/
/* DESIGN */
.design .other-listings a:hover,
.design .other-listings a.active {
  color: #f65857;
}
.design .listings .job-listing:hover,
.design .listings .job-listing.active {
  background: #f65857;
  color: #fff;
}
.design .listings .job-listing:hover h3,
.design .listings .job-listing.active h3 {
  color: #fff;
}
/* DEVELOPMENT */
.development .other-listings a:hover,
.development .other-listings a.active {
  color: #6c9ed0;
}
.development .listings .job-listing:hover,
.development .listings .job-listing.active {
  background: #6c9ed0;
  color: #fff;
}
.development .listings .job-listing:hover h3,
.development .listings .job-listing.active h3 {
  color: #fff;
}
.section.macbook {
  background: url('../images/careers/development-mac.jpg') no-repeat bottom right;
  height: 480px;
  border-bottom: 1px solid #d4d4d4;
  padding-top: 200px;
}
/* No greater than 900px, no less than 400px */
@media (max-width: 1450px) and (min-width: 0px) {
  .section.macbook {
    background: url('../images/careers/development-mac2.jpg') no-repeat 690px 80px;
  }
}
/* BUSINESS*/
.business .other-listings a:hover,
.business .other-listings a.active {
  color: #5d9f95;
}
.business .listings .job-listing:hover,
.business .listings .job-listing.active {
  background: #5d9f95;
  color: #fff;
}
.business .listings .job-listing:hover h3,
.business .listings .job-listing.active h3 {
  color: #fff;
}
.section.tweets {
  border-bottom: 1px solid #d4d4d4;
}
.section.tweets p {
  width: 420px;
  font-size: 19px;
  line-height: 29px;
  margin-bottom: 5px;
}
.section.tweets .tweet {
  margin-bottom: 30px;
}
/* CS */
.customer-service .other-listings a:hover,
.customer-service .other-listings a.active {
  color: #847fb5;
}
.customer-service .listings .job-listing:hover,
.customer-service .listings .job-listing.active {
  background: #847fb5;
  color: #fff;
}
.customer-service .listings .job-listing:hover h3,
.customer-service .listings .job-listing.active h3 {
  color: #fff;
}
/* PRODUCTION */
.production .other-listings a:hover,
.production .other-listings a.active {
  color: #c7b794;
}
.production .listings .job-listing:hover,
.production .listings .job-listing.active {
  background: #c7b794;
  color: #fff;
}
.production .listings .job-listing:hover h3,
.production .listings .job-listing.active h3 {
  color: #fff;
}
.section.lovinglymade {
  height: 370px;
  background: url('../images/careers/lovinglymade.jpg') no-repeat bottom center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  color: #fff;
}
.section.lovinglymade p {
  color: #666666;
  font-size: 22px;
  font-weight: 400;
  line-height: 39px;
}
