/* $Id: style.css,v 1.5.2.6 2011/02/18 05:26:30 andregriffin Exp $ */
/* Drupal 7 Framework - Created by André Griffin
------------------------------------------------
[Table of contents]

 0.Reset
 1.Global
 2.Layout
 3.Main
 4.Sidebars
 5.Header
 6.Navigation
 7.Nodes
 8.Comments
 9.Blocks
10.Footer
11.CSS Support

[Font sizes - based on 75%/12px body font-size]
36px = 3em
30px = 2.5em
24px = 2em
18px = 1.5em
16px = 1.333333em
15px = 1.2em
14px = 1.1667em
12px = 1em
11px = .9167em
10px = .8333em

Equation for font sizing: 
-Desired px ÷ Default (or parent) px = em size
------------------------------------------------*/

/**
 * 0.RESET 
 */
@import "css/reset.css";
@import "css/main.css";

body, input{
  -webkit-font-smoothing: antialiased;
}
/**
 * 1.GLOBAL
 */
/*
body {
  background: #fff;
  color: #000;
  font-family: Lucida Grande, Verdana, Arial, sans-serif;
  font-size: 75%;
  line-height:1.5;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Helvetica, Helvetica Neue, Arial, sans-serif;
  font-weight: normal;
}



h1 {
  font-size: 3em;
  line-height: 1em;
  margin-bottom: .5em; 
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.5em;
  line-height: 2em;
}

h4 {
  font-size: 1.2em;
  line-height: 1.25em;
  margin-bottom: 1.25em; 
}

h5 {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 1.5em; 
}

h6 {
  font-size: .8333em;
  font-weight: bold;
  line-height: 1.8em;
  margin-bottom: 1.8em;
}

h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {
  margin: 0;
}

p {
  margin: 0 0 1.5em 0;
}

p a:link {
  text-decoration: underline;
}

a:link, a:visited {
  color: #069;
  outline: none;
  text-decoration: none;
}

a:focus {
  outline: 1px dotted;
}

a:hover, a:active, li a.active {
  color: #069;
  outline: none;
  text-decoration: underline;
}
*/
/* Common Styling 
li ul, li ol { margin: 0; }
ul, ol { margin: 0 1.5em 1.5em 0; padding-left: 1.5em; }
ul { list-style-type: disc; }
ol { list-style-type: decimal; }
dl { margin: 0 0 1.5em 0; }
dl dt { font-weight: bold; }
dd { margin-left: 1.5em; }
table { margin-bottom: 1.5em; width:100%; }
th, tr, td { padding: 0.1em 0.5em; vertical-align: middle; }
hr { background: #666; border: none; clear: both; float: none; height: 1px; margin: -1px 0 1.5em; width: 100%; }
fieldset { border: 1px solid #ccc; margin: .5em 0; padding: 1em; }
*/
/**
 * 2.LAYOUT
 */
#wrapper {
  margin: 0 auto;
  padding: 0 10px;
  width: 940px;
}

/* add this class to div#wrapper in page.tpl to show grid */
.showgrid {
  background: url(images/grid.gif) repeat-y;
}

/**
 * 3.MAIN
 */
/* 1 column: global values*/
#main {
  margin: 0 0 1.5em;
  position: relative;
}

/* 3 columns */
body.two-sidebars #main {
  float: left;
  margin: 0 20px 0 240px;
  padding: 0;
  width: 460px;
}

/**
 * 4.SIDEBARS
 */
/* 3 columns: sidebar-first */
body.two-sidebars #sidebar-first {
  float: left;
  padding: 0;
  width: 19%;
  width: -webkit-calc(170px);
  width: calc(170px);
  margin: 0 20px 0 0;
}

/* 3 columns: sidebar-second */
body.two-sidebars #sidebar-second {
  float: left;
  margin: 0 0 0 10px;
  padding: 0px;
  width: 19%;
  width: -webkit-calc(170px);
  width: calc(170px);
}
/* 3 columns: sidebar-second */
body.two-sidebars div#mainC {
  float: left;
  width: 58%;
  width: -webkit-calc(100% - 390px);
  width: calc(100% - 390px);
  margin-right: 10px;
  position: relative;
}
body.two-sidebars div.sub div.region-content div.content div.content {
    max-width: 543px;
}

/* 2 columns: sidebar-first */
body.sidebar-first #main, body.sidebar-first #mainC {
  float: right;
  margin: 0;
  padding: 0;
  width: 63%; /* 670px*/
  width: -webkit-calc(100% - 240px);
  width: calc(100% - 240px);
}

/* 2 columns: sidebar-second */
body.sidebar-second #main {
  float: left;
  margin: 0 20px 0 0;
  padding: 0;
  width: 70%; /* 700px*/
  width: -webkit-calc(100% - 240px);
  width: calc(100% - 240px);
}
/* 2 columns: sidebar-first */
body.sidebar-first #sidebar-first {
  float: left;
  margin: 0 20px 0 0;
  padding: 0;
  width: 33%;
  width: -webkit-calc(220px);
  width: calc(220px);
}

/* 2 columns: sidebar-second */
body.sidebar-second #sidebar-second {
  float: right;
  margin: 0;
  padding: 0;
  width: 33%;
  width: -webkit-calc(220px);
  width: calc(220px);
}

body.one-sidebar #mainC{
  margin: 0 0 0 0;
  padding: 0;
  width: 73%; /* 700px*/
  width: -webkit-calc(100% - 240px);
  width: calc(100% - 240px);
}
body.sidebar-first #sidebar-first{
  float: left;
  margin: 0;
  padding: 0;
  width: 23%;
  width: -webkit-calc(220px);
  width: calc(220px);
}
body.one-sidebar #sidebar-second{
  margin: 0 0 0 20px;
}


img{ 
  max-width: 100%;
  height: auto !important;
}

.media_embed,
.media-youtube-video{
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
  overflow: hidden;
}
.media_embed iframe,
.media-youtube-video iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.tableWrapper{
  width: 100%;
  overflow: auto;
}
table .insertedImage{
  width: 33%;
}
/**
 * 5.HEADER
 */
 /*
#header {
  margin: 0 0 1.5em;
  padding: 3em 0 0;
  position: relative;
}

#header #logo {
  float: left;
  margin: 0 1em 0 0;
}

#header #site-name-slogan {
  float: left;
}

#header #site-name {
  font-family: Helvetica, Helvetica Neue, Arial, sans-serif;
  font-size: 3em;
  font-weight: bold;
  line-height: 1em;
  margin: 0;
}

#header #site-name a:hover {
  text-decoration: none;
}

#header #site-slogan {
  margin: 0;
}*/

/**
 * 6.NAVIGATION
 */
 
 /*
#navigation {
  margin: 0 0 1.5em;
  padding: 0;
}

#navigation ul.main-menu {
  background: #ddd;
  margin: 0;
  padding: 0;
}

#navigation ul.main-menu li {
  float: left;
  margin: 0;
  padding: 0;
}

#navigation ul.main-menu li a {
  display: block;
  float: left;
  line-height: 3em;
  padding: 0 1em;
}

#navigation ul.secondary-menu {
  background: #eee;
  margin: 0;
  padding: 0;
}

#navigation ul.secondary-menu li {
  margin: 0;
  padding: 0;
}

#navigation ul.secondary-menu li a {
  display: block;
  float: left;
  line-height: 3em;
  padding: 0 1em;
}

#skip-link {
  position: absolute;
}

.breadcrumb {
  padding-bottom: 1.5em;
}
*/

/* menus and item lists */
.item-list ul {
  margin: 0;
  padding: 0;
}
.item-list ul li {
  margin: 0;
  padding: 0;
}

ul.menu li {
  margin: 0;
  padding: 0;
}

ul.inline {
  clear: both;
}

ul.inline li {
  margin: 0;
  padding: 0 1em 0 0;
}

/* admin tabs */
.tabs-wrapper {
  margin: 1px 0 1.5em;
}

ul.primary {
  margin: 0;
  padding: 1px 0 0;
}

ul.secondary {
  line-height: 3em;
  margin: 0 0 -1px;
  padding: 0;
}

ul.secondary a.active {
  border-bottom: none;
}

/**
 * 7.NODES
 */
/*#page-title {
  font-size: 2em;
  line-height: 1.5em;
  margin-bottom: 0;
}*/

.node {
  margin-bottom: 1.5em;
}

/* tags */
.field-name-field-tags {
  margin: 0 0 1.5em;
}

.field-name-field-tags div {
  display: inline;
}

.field-name-field-tags .field-item {
  margin: 0 1em 0 0;
}

/* profile */
.profile {
  margin: 1.5em 0;
}

.profile h3 {
  border: none;
}

.profile dt {
  margin-bottom: 0;
}

.profile dd {
  margin-bottom: 1.5em;
}

.password-parent {
  width: 36em;
}

/**
 * 8.COMMENTS
 */
#comments {
  clear: both;
  margin-top: 1.5em;
}

.comment {
  margin-bottom: 1.5em;
}

.comment .new {
  color: red;
  text-transform: capitalize;
}

/**
 * 9.BLOCKS
 */

/**
 * 10.FOOTER
 */
#footer {
  clear: both;
  padding: 1.5em 0;
  position: relative;
}

#footer a.feed-icon {
  position: absolute;
  right: 0;
  top: 1.416667em;
}

#block-switchtheme-switch-form{
  float: left;
}

/**
 * 11.CSS SUPPORT
 *
 * Built-in classes:
 * .clearfix                            | float clearing
 * .element-invisible                   | hide element visually
 * .element-invisible.element-focusable | allow element to be focusable when navigated to via keyboard
 * .element-hidden                      | hide element from all users
 */

/**
 * 12.TESTS
 */

.page-node-11623 .pub-date,
.page-node-11624 .pub-date,
.page-node-11625 .pub-date,
.page-node-11626 .pub-date,
.page-node-11627 .pub-date,
.page-node-11620 .pub-date,
.node-type-quiz footer {
  display: none;
}

.node-type-quiz .field-name-body img {
  margin: 10px 0 !important;
}

.node-type-quiz form#quiz-start-quiz-button-form input.form-submit,
#mainC .node-quiz input.form-submit {
  background: url('images/Start-test-button.jpg') no-repeat;
  border: none;
  cursor: pointer;
  display: block;
  height: 82px;
  margin: 0;
  padding: 0;
  text-indent: -9999px;
  width: 200px;  
}

.not-logged-in.node-type-quiz form#quiz-start-quiz-button-form input.form-submit {
  display: none;
}

div.content .node-quiz {
  float: none;
  width: auto;
}

/* Flags */

.view-quizes h2.China,
.view-quizes h2.France,
.view-quizes h2.Latvia,
.view-quizes h2.Lithuania,
.view-quizes h2.Poland,
.view-quizes h2.Portugal,
.view-quizes h2.Spain {
  background: url('images/flag-sprite.png') no-repeat;
  display: block;
  padding-left: 33px;
}

.view-quizes h2 a {
  margin-left: 10px;
}

.view-quizes h2.English a {
  margin-left: 0;
}

.view-quizes h2.China {
  background-position: 0px -51px;
}
.view-quizes h2.France {
   background-position: 0px -102px;
}
.view-quizes h2.Latvia {
   background-position: 0px -155px;
}
.view-quizes h2.Lithuania {
   background-position: 0px -128px;
}
.view-quizes h2.Poland {
   background-position: 0px -76px;
}
.view-quizes h2.Portugal {
   background-position: 0px -25px;
}
.view-quizes h2.Spain {
   background-position: 0px 0px;
}

.view-tests-related-languages ul li {
  border: none !important;
  float: left;
  margin-right: 20px;
}

.view-tests-related-languages h2 a {
  display: block;
  padding-top: 50px;
  margin-right: 15px;
}

.view-tests-related-languages h2.China,
.view-tests-related-languages h2.France,
.view-tests-related-languages h2.Latvia,
.view-tests-related-languages h2.Lithuania,
.view-tests-related-languages h2.Poland,
.view-tests-related-languages h2.Portugal,
.view-tests-related-languages h2.Spain {
  display: block;
  text-align: center;
}

.view-tests-related-languages h2.Bulgaria {
    background: url('images/Bulgarianflag.jpg') no-repeat;
}
.view-tests-related-languages h2.English {
  background: url('images/UKflag.jpg') no-repeat;
}

.view-tests-related-languages h2.China {
  background: url('images/Chineseflag.jpg') no-repeat;
}
.view-tests-related-languages h2.France {
   background: url('images/Franceflag.jpg') no-repeat;
}
.view-tests-related-languages h2.Latvia {
   background: url('images/Latvianflag.jpg') no-repeat;
}
.view-tests-related-languages h2.Lithuania {
   background: url('images/Lithuanianflag.jpg') no-repeat;
}
.view-tests-related-languages h2.Poland {
   background: url('images/Polishflag.jpg') no-repeat;
}
.view-tests-related-languages h2.Portugal {
   background: url('images/Portugeseflag.jpg') no-repeat;
}
.view-tests-related-languages h2.Spain {
   background: url('images/Spanishflag.jpg') no-repeat;
}

.node-type-quiz .field-name-field-pin {
  display: none;
  margin: 10px 0 20px;
}

.node-type-quiz.video-completed .field-name-field-pin,
.node-type-quiz .field-name-field-pin .field-label {
  display: block !important;
}

#block-block-41 img {
  display: block;
  height: auto;
  margin: 0 auto;
  padding: 0 0 20px;
}

.certificate-link a {
  display: block;
  padding: 20px 0;
}


/* Introduction Test */

.page-node-11622 .certificate-link,
.page-node-11622 .region-content form .form-submit,
.page-node-11622.node-type-quiz.video-completed .field-name-field-pin,
.page-node-11622.node-type-quiz .field-name-field-pin .field-label {
  display: none !important;
}

/* Tweets Block */

#block-views-tweets-block {
  clear: both;
  margin: 10px auto;
  max-width: 915px;
  width: 100%;
}
#block-views-tweets-block h2 {
  height: 29px;
  background: url("images/twitter-head.png") no-repeat;
  color: #fff;
  float: none;
  font-size: 1.67em;   
  line-height: 1.1; 
  margin: 0;
  padding: 15px 10px 5px 70px;
}
#block-views-tweets-block .content {
  background: #fff;
  padding: 10px;
}
#block-views-tweets-block .view-content {
  display: inline-block;
  width: 80%;
}
#block-views-tweets-block .view-content li {
  color: #000;
  margin: 0;
  list-style: none;
}
#block-views-tweets-block .view-content li a {
  color: #4D6D41;
  display: inline;
}
#block-views-tweets-block .view-footer {
  display: inline-block;
  float: right;
}
#block-views-tweets-block .view-footer a {
  background: #2995d3;
  color: #fff;
  margin: 5px 0;
  padding: 5px 25px;
  text-decoration: none;
}
#block-views-tweets-block .view-footer,
#block-views-tweets-block .views-field-created-time {
  color: #666;
}

/* Other new stuff May 2013 */

.homebox-column-wrapper-1,
.homebox-column-wrapper-2 {
  margin-right: 1%;
}
.social li.rss-feeds a {
  background: url('images/rss-button.jpg') no-repeat;
  display: block;
  text-indent: -9999px;
  height: 21px;
  padding: 2px;
  width: 22px;
}
.page-node-12134 a.rss-feed {
  background: url('images/rss.gif') no-repeat;
  padding-left: 46px;
  min-height: 20px;
}

.page-node-12134 a.rss-feed.events,
.page-node-12134 a.rss-feed.research,
.page-node-12134 a.rss-feed.publications,
.page-node-12134 a.rss-feed.news, 
.page-node-12134 a.rss-feed.newsletters,
.page-node-12134 a.rss-feed.videos,
.page-node-12134 a.rss-feed.industry.news {
  background: url('images/rss-icons.png') no-repeat;
  display: block;
  padding: 0;
  text-indent: -9999px;
}

.page-node-12134 a.rss-feed.research {
  background-position: 0 -30px;
}
.page-node-12134 a.rss-feed.publications {
  background-position: 0 -60px;
}
.page-node-12134 a.rss-feed.presentations {
  background-position: 0 -90px;
} 
.page-node-12134 a.rss-feed.news {
  background-position: 0 -120px;
} 
.page-node-12134 a.rss-feed.newsletters {
  background-position: 0 -150px;
}
.page-node-12134 a.rss-feed.videos,
.page-node-12134 a.rss-feed.industry.news {
  background-position: 0 -180px;
  color: #FFF;
  font-size: 13px;
  font-weight: bold;
  padding: 2px 0 0 25px;
  text-decoration: none;
  text-indent: 0;
}
.page-node-12134 a.rss-feed.videos {
  width: 60px;
}

/* Sub/Super Resets */

sub {
    vertical-align: sub;
}
sup {
    vertical-align: super;
}
sub, sup {
    font-size: 0.5em;
    line-height: 100%;
}

.page-media-gallery .media-gallery-detail img {
  padding-bottom: 0 !important;
}

.page-media-gallery .media-gallery-detail .field-name-field-license-other {
  padding-bottom: 20px;
}

span.flag-message {
  position: static;
  margin-bottom: 15px;
}

span.flag-bookmarks a.flag {
  background: url('images/add-bookmark.png') no-repeat;
  display: block;
  height: 20px;
  margin-top: 15px;
  text-indent: -9999px;
  width: 111px;
}

span.flag-bookmarks a.flag.unflag-action {
  background: url('images/remove-bookmark.png') no-repeat;
  width: 171px;
}

/* Search Page Tabs */

body.page-search #block-system-main {
width: 917px;
}

body.page-search .search-tabs {
  margin-bottom: 20px;
}

body.page-search .search-tabs ul {
  padding: 0px !important;
  margin: 0px !important; 
  height: 66px;
  background: url('images/tabs_bg.jpg') repeat-x !important;
  width: 917px;
}

body.page-search .search-tabs ul li {
  float: left;
  padding: 0px;
  margin: 0px;
  list-style: none !important;
}

body.page-search .search-tabs ul li a{
  float: left;
  font-family: 'StRydeRegular';
  font-size: 17px;
  padding: 19px 10px 19px;
  text-decoration: none;
  border-right: 2px solid #D7D7D7;
  color: #333333
}

body.page-search .search-tabs ul li a:hover,
body.page-search .search-tabs ul li a.active {
  background: url('images/tab_hover.jpg') repeat-x !important;
  color: white;
}

/* Follow Icons */
div#footer ul.social-follow {
  margin-right: 20px;
  float: right;
}
ul.social-follow li {
  float: left;
  padding: 0;
  margin-left: 15px;
  margin-top: -5px; 
}

ul.social-follow li a {
  background: url('images/potato-follow-us-t.png') no-repeat;
  display: block;
  height: 70px;
  padding: 0;
  text-indent: -9999px;
  width: 82px;
}

ul.social-follow li a#social-facebook {
  width: 185px;
}

ul.social-follow li a#social-twitter {
  background-position: -185px 0;
  width: 175px;
}

ul.social-follow li a#social-youtube {
  background-position: -360px 0;
  width: 62px;
}

div.addtoany {
  float: right;
}

/* Fivestar Help */
.page-rating .rating-help {
  background: url("images/info.png") no-repeat;
  cursor: pointer;
  display: block;
  text-indent: 21px;
  height: 16px;
  margin: 10px 0;
  overflow: hidden;
  width: 16px;
}

.page-rating .rating-help.visible {
  height: auto;
  width: 300px;
}

#block-menu-menu-footer-menu {
  clear: both;
  width: 100%;
  float: none;
  display: block;
  margin: 0;
  padding: 0;
}

/* Event Amends */

.view-calendar .date-nav {
  margin-bottom: 0 !important;
}
.view-calendar .date-nav-wrapper li.date-prev a,
.view-calendar .date-nav-wrapper li.date-next a {
  display: inline !important;
}
.view-calendar .date-nav-wrapper li.date-prev {
  left: 0;
  right: auto;
}
a.submit-event,
a.events-map {
  display: block;
  text-align: center;
}

.page-node-add-event form.node-event-form .field-name-field-content-image,
.page-node-add-event form.node-event-form .field-name-field-default-image-nid,
.page-node-add-event form.node-event-form .field-name-field-tag,
.page-node-add-event form.node-event-form .form-item-default-image-selection,
.page-node-add-event form.node-event-form .field-name-field-event-type,
.page-node-add-event form.node-event-form .vertical-tabs {
  display: none;
}

.node-type-event .view-event-ical-feed .view-content {
  display: none;
}

.flag-wrapper {
  clear: both;
  display: block;
  position: relative;
}

.calendar-calendar td.has-events {
  background-color: #4C6C40;
}
.calendar-calendar td.has-events a {
  color: #fff;
  font-weight: bold;
}

.pub-image {
  /*min-width: 140px;*/
}

.view-events-map .read-more a,
.view-events .read-more a {
  color: #000;  
  font-size: 14px;
  font-weight: bold;
}

.view-events-map li > .field-content,
.view-events li > .field-content,
.single-event span.date,
.single-event span.location {
  display: block;
  padding-bottom: 10px;
}

.view-event-ical-feed a.ical-icon img {
  display: none;
}

.view-event-ical-feed a.ical-icon {
  background: url('images/add-to-calendar.png') no-repeat;
  display: block;
  height: 26px;
  width: 153px;
}

.node-type-event a {
  color: #4D6D41;
}

.node-type-event #block-system-main h1,
.node-type-event #block-system-main h2,
.node-type-event #block-system-main h3,
.node-type-event #block-system-main h4,
.node-type-event #block-system-main h5,
.node-type-event #block-system-main h6 {
  color: #4C6C40;
}

.node-type-event a:hover {
  color: #000;
}

p.event-type {
  color: #4C6C40;
  font-weight: bold;
}

.external-event p.event-type,
p.event-type.external-event {
  color: #E28C1A;
}

.view-events-map .view-header #key {
  margin: 0 0 20px;
}
.view-events-map .view-content {
  clear: both;
}
.view-events-map .view-header h3 {
  color: #85A678;
  font-size: 1.8em;
  margin-bottom: 3px;
}
.view-events-map .view-header span#external-marker,
.view-events-map .view-header span#pcl-marker {
  display: block;
  float: left;
  background: url('images/external-marker.png') no-repeat;
  padding: 0 0 0 30px;
  min-height: 34px;
}
.view-events-map .view-header span#pcl-marker {
  background: url('images/pcl-marker.png') no-repeat;
  padding: 0 50px 0 30px;
}

.gmap-popup .views-field {
  display: block;
  max-width: 300px;
  padding-bottom: 10px;
} 

/* New ad to cal */

.single-event .date {
  position: relative;
  padding-top: 50px;
}

.field-name-field-event-date .addtocal {
  background: url('images/add-to-calendar.png') no-repeat;
  border: none;
  display: block;
  height: 26px;
  width: 153px;
  margin: 10px 0 0;
  text-indent: -9999px;
  position: absolute;
  top: 0;
}

.field-name-field-event-date span.date-display-end {
  margin-right: 20px;
}

.field-name-field-event-date .item-list {
  position: relative;
}

ul.addtocal_menu {
  position: static;
  max-width: 200px;
}

.addtocal_menu li {
  background: #fff;
}

ul.addtocal_menu li a:hover {
  background: #85A678;
  color: #fff;
}

span.date-display-single {
  display: inline;
}

/* Media Browser */

iframe#mediaBrowser {
  min-height: 500px;
}

/* License */

.media-gallery-detail-info {
  min-height: 25px;
}

.media-license.dark .copyright {
  font-size: 12px;
  padding-left: 20px;
  width: auto;
}

/* Newsletter Blocks */

#block-block-49 {
  font-size: 16px;
}

#block-block-50 {
  background: #ebf0e8;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 20px;
}

/************ MEDIA QURIES ************/
@media screen and (max-width: 1000px){
  div#header ul#nice-menu-1{
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 790px){
  #onlineToolbox .box.last {
    margin-right: 4%;
  }
  #onlineToolbox .box.first {
      clear: none;
  }
  #onlineToolbox .box{
    width: 46%;
    margin: 0 4% 0 0; 
  }
  #onlineToolbox .box:nth-child(2n+1){
    clear: left;
  }
}

@media only screen and (max-width: 1024px){
  input[type="text"],input[type="password"]{
    -moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
    box-sizing: border-box; 
    border-radius: 0;
    border-color: #999;
  }
}
