/* Colors */
/* Fonts */
/* Images */
/*---------------------------------------------------
    LESS Prefixer
  ---------------------------------------------------

    All of the CSS3 fun, none of the prefixes!

    As a rule, you can use the CSS properties you
    would expect just by adding a '.':

    box-shadow => .box-shadow(@args)

    Also, when shorthand is available, arguments are
    not parameterized. Learn CSS, not LESS Prefixer.

    -------------------------------------------------
    TABLE OF CONTENTS
    (*) denotes a syntax-sugar helper
    -------------------------------------------------

        .animation(@args)
            .animation-delay(@delay)
            .animation-direction(@direction)
            .animation-duration(@duration)
            .animation-iteration-count(@count)
            .animation-name(@name)
            .animation-play-state(@state)
            .animation-timing-function(@function)
        .background-size(@args)
        .border-radius(@args)
        .box-shadow(@args)
            .inner-shadow(@args) *
        .box-sizing(@args)
            .border-box() *
            .content-box() *
        .columns(@args)
            .column-count(@count)
            .column-gap(@gap)
            .column-rule(@args)
            .column-width(@width)
        .gradient(@default,@start,@stop) *
            .linear-gradient-top(@default,@color1,@stop1,@color2,@stop2,[@color3,@stop3,@color4,@stop4])*
            .linear-gradient-left(@default,@color1,@stop1,@color2,@stop2,[@color3,@stop3,@color4,@stop4])*
        .hyphens(@args)
        .opacity(@factor)
        .transform(@args)
            .rotate(@deg)
            .scale(@factor)
            .translate(@x,@y)
            .translate3d(@x,@y,@z)
            .translateHardware(@x,@y) *
        .text-shadow(@args)
        .transition(@args)
            .transition-delay(@delay)
            .transition-duration(@duration)
            .transition-property(@property)
            .transition-timing-function(@function)



    Credit to LESS Elements for the motivation and
    to CSS3Please.com for implementation.

    Copyright (c) 2012 Joel Sutherland
    MIT Licensed:
    http://www.opensource.org/licenses/mit-license.php

-----------------------------------------------------*/
/* Animation */
/* Background Size */
/* Border Radius */
/* Box Shadows */
/* Box Sizing */
/* Columns */
/* Gradients */
/* Opacity */
/* Text Shadow */
/* Transforms */
/* Transitions */
/* Typography stuff */
article {
  background: #fff;
  margin-top: 20px;
  padding: 30px;
}
article:first-child {
  margin-top: 0;
}
article h1 {
  margin-top: 0;
  padding-top: 0;
}
#deactivated-msg {
  color: #cc0000;
  font-weight: bold;
}
#user-nav {
  margin-bottom: 20px;
}
.change-avatar {
  position: relative;
}
.change-avatar > .tip {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  display: none;
  margin-top: 5px;
  padding: 10px;
  position: absolute;
  width: 300px;
}
.change-avatar:hover > .tip {
  display: block;
}
#profile .avatar {
  float: left;
  padding: 7px 10px 0 0;
  text-align: center;
  width: 48px;
}
#profile h1.user {
  line-height: 1em;
  margin: 2px 0 0 60px;
}
#profile h1.user .username {
  color: #888888;
  font-style: normal;
}
#profile h2 {
  margin: 20px 0 0;
}
#profile h2.location {
  margin: 0 0 0 60px;
}
#profile li {
  margin: 2px 0 5px;
}
#profile .pm-or-signout {
  margin: 0 0 0 60px;
}
#profile .bio {
  width: 54%;
}
#profile .contributions {
  width: 40%;
}
#profile .bio,
#profile .contributions {
  clear: left;
  float: left;
}
#profile .bio ul,
#profile .contributions ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#profile .bio p,
#profile .contributions p {
  margin: 10px 0;
}
#profile .contact {
  padding: 15px 0 0;
  width: 60%;
}
#profile .contact label {
  display: inline-block;
  font-weight: bold;
  padding: 0 10px 0 0;
  text-align: right;
  width: 90px;
}
#profile .groups {
  width: 44%;
}
#profile .groups,
#profile .contact {
  clear: right;
  float: right;
}
#profile .groups ul,
#profile .contact ul {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}
#profile .badges {
  clear: both;
}
#profile .badges ul {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}
#profile .badges ul li {
  float: left;
  margin: 0 25px 25px 0;
}
#profile .badges ul li img {
  height: 128px;
  width: 128px;
}
#admin-actions a.edit {
  background: transparent url(../img/icons.actions.png) no-repeat 4px -21px;
  float: right;
  padding: 0 0 0 18px;
}
.html-rtl #profile .avatar {
  float: right;
}
.html-rtl #profile h1.user {
  margin: 2px 60px 0 0;
}
.html-rtl #profile h2.location {
  margin: 0 60px 0 0;
}
.html-rtl #profile .pm-or-signout {
  margin: 0 60px 0 0;
}
.html-rtl #profile .contributions {
  float: left;
}
.html-rtl #profile .contact {
  float: right;
}
.html-rtl #admin-actions a.edit {
  background-position: right -25px;
  float: left;
  padding: 0 18px 0 0;
}
article ul.questions {
  margin-left: 20px;
}
article ul.questions li {
  margin: .3em 0;
}
article form {
  margin: 25px 0;
}
article form ul {
  margin: 0;
  padding: 0;
}
article form li {
  list-style: none;
  padding: 8px 0;
}
article form li input {
  margin-top: -8px;
  width: 200px;
}
article form li input[type="checkbox"] {
  width: auto;
}
article form li img {
  max-width: 100%;
}
article form li ul.errorlist {
  margin: 0;
  padding: 0 0 0 140px;
}
article form li ul.errorlist li {
  margin: 0;
  padding: 0 0 2px;
}
article form li.checkbox label {
  padding: 0 5px 0 168px;
  width: auto;
}
article form li.checkbox input {
  margin: 0 7px 0 0;
}
article form label {
  display: inline-block;
  padding: 0 5px 0 0;
  text-align: right;
  vertical-align: top;
  width: 160px;
}
article form div.val-wrap {
  display: inline-block;
  width: 350px;
}
article form div.val-wrap input {
  display: block;
}
article form div.submit {
  clear: both;
  padding: 10px 0 0 165px;
}
article form textarea {
  margin-top: -8px;
  width: 325px;
}
article form fieldset {
  border: none;
}
article p.instruct {
  margin: 0 0 15px;
}
.html-rtl article ul.questions {
  margin-left: 0;
  margin-right: 20px;
}
.html-rtl article form label {
  padding: 0 0 0 5px;
  text-align: left;
}
.html-rtl article form li ul.errorlist {
  padding: 0 140px 0 0;
}
.html-rtl article div.submit {
  padding: 10px 198px 0 0;
}
#edit-profile-avatar a {
  padding: 0 0 0 .5em;
}
#edit-profile-avatar ul {
  display: inline-block;
  margin: 0 0 0 .5em;
}
.html-rtl #edit-profile-avatar a {
  padding: 0 .5em 0 0;
}
.html-rtl #edit-profile-avatar ul {
  margin: 0 .5em 0 0;
}
#change-avatar .helptext {
  display: block;
  margin: 10px 0 0 198px;
}
#change-avatar div.val-wrap {
  line-height: 35px;
  margin-right: 10px;
  padding: 0 0 0 10px;
  width: auto;
}
#id_avatar {
  line-height: 35px;
  margin-right: 10px;
  padding: 0 0 0 10px;
  width: auto;
}
.html-rtl #id_avatar,
.html-rtl #change-avatar div.val-wrap {
  margin-left: 10px;
  margin-right: 0;
  padding: 0 10px 0 0;
}
#flag {
  float: right;
}
#flag form {
  margin: 0px;
}
.html-rtl #flag {
  float: left;
}
#avatar-delete .form-actions {
  margin: 1em 0;
}
#avatar-delete .form-actions input {
  margin-left: 1em;
}
#avatar-delete h1 {
  margin-bottom: 1em;
}
.html-rtl #avatar-delete .form-actions input {
  margin-right: 1em;
}
#avatar-preview {
  text-align: center;
}
#edit-settings form label {
  width: 300px;
}
.documents-contributed {
  clear: both;
  margin: 20px 0 0;
}
#password-rules,
#username-rules {
  font-size: 85%;
  margin: 5px 0 0 170px;
  width: 240px;
}
#deactivations-log {
  margin-bottom: 24px;
  width: 100%;
}
#deactivations-log tbody tr:nth-of-type(2n) {
  background: rgba(255, 255, 255, 0.1);
}
#deactivations-log tbody tr:nth-of-type(2n-1) {
  background: rgba(255, 255, 255, 0.2);
}
#deactivations-log th {
  background: rgba(0, 0, 0, 0.05);
  color: #000;
}
#deactivations-log td,
#deactivations-log th {
  padding: 10px;
}
.get-involved-icon {
  background: url('../img/get-involved-icons.png') no-repeat scroll -15px 0px transparent;
  background-size: 109px 436px;
  float: right;
  height: 59px;
  width: 79px;
}
.get-involved-icon.questions {
  background-position: -15px -134px;
}
.get-involved-icon.localize {
  background-position: -15px -352px;
}
.contributor #login {
  display: none;
  margin-top: 40px;
}
.contributor #login-section h3 {
  text-align: center;
}
.contributor #login-section.show-form h3 {
  display: none;
}
.contributor #login-section.show-form #login {
  display: block;
}
#report-abuse {
  position: relative;
  float: right;
}
#report-abuse a {
  color: #999;
  cursor: pointer;
}
#report-abuse .popup {
  display: none;
  padding: 12px;
  position: absolute;
  left: -190px;
  top: 30px;
  width: 255px;
  z-index: 3;
  background: #FFF;
  border: 1px solid #CCC;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
#report-abuse .popup h2 {
  margin: 0 0 10px;
  font-size: 1.5em;
}
#report-abuse .popup form {
  padding: 0;
  margin: 0;
}
#report-abuse .popup form label {
  text-align: left;
  width: 100%;
  margin-bottom: 6px;
  display: block;
}
#report-abuse .popup form input[type=radio] {
  margin-right: 5px;
}
#report-abuse .popup form textarea {
  margin: 0 0 6px;
  width: 100%;
}
#report-abuse .popup .result {
  display: none;
}
#report-abuse .popup:after {
  content: "";
  background: #FFF;
  box-shadow: -1px -2px 1px rgba(0, 0, 0, 0.3);
  display: block;
  height: 10px;
  width: 10px;
  position: absolute;
  left: 225px;
  top: -5px;
  transform: rotate(45deg);
  z-index: 2;
}

a.main_homelink:hover{
    text-decoration: none;
    color: #0095DD;
}

#revoke_cert, #redownload_cert, #revoke_or_regenerate_button {
    display: block;
    margin-bottom: 6px;
}

.standard_text_input {
    width: 100px !important;
    padding-left: 4px;
}
.wide_text_input {
    width: 400px !important;
    padding-left: 4px;
}
textarea {
    padding-left: 4px;
}
#private_id {
    width: 135px !important;
}
#aes_key {
    width: 360px !important;
}
#secret {
    width: 420px !important;
}
.disabled_input {
    color: #DADAE6;
}

select{
    margin-top: -2px;
    padding:4px;
}

.error_msg {
    color: #ff0000;
}

ul.errors > li {
    text-align: left;
    /*width: 160px;*/
    margin-left: 170px;
    color: red;
}ul.errors-no-margin > li {
    text-align: left;
    /*width: 160px;*/
    color: red;
}
div.active_operating_system {
    border: 1px solid gray;
    width: 80%;
    margin: 0 0 20px 0;
}
div.active_operating_system  > hr{
    width: 90%;
}
#revoke_button {
    margin-top: 8px;
}
li.operating_system {
    margin-bottom: 8px;
}
.left {
    float: left;
}
.right {
    float: right;
}
div.certificate_revoke {
    height: 200px;
    width: 80%;
    margin: 0 0 20px 0;
}
a.right-margin-5 {
    margin: 0 25px 0 0;
}
hr.operating_system_hr {
    margin-right: 10px;

}
#copied {
  display: none;
}

.introjs-tooltip{
  width: 900px;
}

.introjs-tooltiptext{
  height: 500px;
}

.introjs-floating {
  max-width: 900px !important;
}
.introjs-tooltip {
  margin-left: -408.5px !important;
  margin-top: -309px !important;
}

h1.duo_wizard_heading {
  width: 99%;
  background-color: #0095DD;
  padding: 5px 5px 5px 5px;
}

div.deprecated_mfa_page_header {
  border: 1px solid #cc0000;
}
div.deprecated_mfa_page_header > p {
  padding-left: 8px;
  font-weight: bold;
  margin-bottom: 5px;
}

div.deprecated_mfa_page_header_header {
  background-color: #cc0000;
  color: #FFFFFF;
  font-weight: bold;
  padding-left: -8px;
  text-align: center;
}
p.ribbon {
  padding: 8px 0 0 8px;
  font-weight: bold;
}