/*
 * Copyright (c) 2016. Nicolas Choukroun
 */

.bg-white {
    background: white;
}

.col-centered {
    float: none;
    margin: 0 auto;
}

.centered {
    float: none;
    margin: 0 auto;
    text-align: center;
}

.huge-padding {
    padding: 20px;
    padding-left: 20%;
    padding-right: 20%;
}

.large-padding {
    padding: 20px;
    padding-left: 10%;
    padding-right: 10%;
}

.medium-padding {
    padding: 10px;
    padding-left: 5%;
    padding-right: 5%;
}

.small-padding {
    padding: 5px;
    padding-left: 2%;
    padding-right: 2%;
}

.large-margin {
    margin: 20px;
    margin-left: 10%;
    margin-right: 10%;
}

.medium-margin {
    margin: 10px;
    margin-left: 5%;
    margin-right: 5%;
}

.small-margin {
    margin: 5px;
    margin-left: 2%;
    margin-right: 2%;
}

.shadowed {
    margin-top:10px;
    margin-bottom:10px;
    padding: 5px;
    -webkit-box-shadow: 10px 10px 43px -19px rgba(0, 0, 0, 1);
    -moz-box-shadow: 10px 10px 43px -19px rgba(0, 0, 0, 1);
    box-shadow: 10px 10px 43px -19px rgba(0, 0, 0, 1);
}

.softshadowed {
    margin-top:10px;
    margin-bottom:10px;
    padding: 5px;
    -webkit-box-shadow: 7px 2px 33px -11px rgba(0, 0, 0, 0.62);
    -moz-box-shadow: 7px 2px 33px -11px rgba(0, 0, 0, 0.62);
    box-shadow: 7px 2px 33px -11px rgba(0, 0, 0, 0.62);
}


.boxed {
    border-style: solid;
    border-top-color: #eeeebb;
    border-left-color: #aaaabb;
    border-right-color: black;
    border-bottom-color: black;
    border-width: 1px;
    margin: auto;
    width: 100%;
    background-color: #fefefe;
    -webkit-box-shadow: 3px 3px 5px rgba(50, 50, 50, 0.5);
    -moz-box-shadow: 3px 3px 5px rgba(50, 50, 50, 0.5);
    box-shadow: 3px 3px 5px rgba(50, 50, 50, 0.5);
    padding: 5px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.softboxed {
    border-style: solid;
    border-top-color: #eeeebb;
    border-left-color: #aaaabb;
    border-right-color: black;
    border-bottom-color: black;
    border-width: 1px;
    margin: auto;
    padding: 10px;
    /* width: 100%;*/
    background-color: #fefefe;
    -webkit-box-shadow: 7px 2px 33px -11px rgba(0, 0, 0, 0.62);
    -moz-box-shadow: 7px 2px 33px -11px rgba(0, 0, 0, 0.62);
    box-shadow: 7px 2px 33px -11px rgba(0, 0, 0, 0.62);
}

.bordered {
    border-style: solid;
    border-top-color: #eeeebb;
    border-left-color: #aaaabb;
    border-right-color: black;
    border-bottom-color: black;
    border-width: 1px;
    margin: auto;
    padding: 10px;
    /*width: 100%;*/
    background-color: #fefefe;
    -webkit-box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.62);
    -moz-box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.62);
    box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.62);
}

.hr0 {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, #CCC, #333, #CCC);
}

.hr1 {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

.hr2 {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, #CCC, #333, #CCC);
}

.hr3 {
    border: 0;
    border-bottom: 1px dashed #ccc;
    background: #999;
}

.hr4 {
    height: 12px;
    border: 0;
    box-shadow: inset 0 12px 12px -12px rgba(0, 0, 0, 0.5);
}

.hr5 {
    border: 0;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* see: https://codepen.io/ibrahimjabbari/pen/ozinB */

hr.style1 {
    border-top: 1px solid #8c8b8b;
}

hr.style2 {
    border-top: 3px double #8c8b8b;
}

hr.style3 {
    border-top: 1px dashed #8c8b8b;
}

hr.style4 {
    border-top: 1px dotted #8c8b8b;
}

hr.style5 {
    background-color: #fff;
    border-top: 2px dashed #8c8b8b;
}

hr.style6 {
    background-color: #fff;
    border-top: 2px dotted #8c8b8b;
}

hr.style7 {
    border-top: 1px solid #8c8b8b;
    border-bottom: 1px solid #fff;
}

hr.style8 {
    border-top: 1px solid #8c8b8b;
    border-bottom: 1px solid #fff;
}

hr.style8:after {
    content: '';
    display: block;
    margin-top: 2px;
    border-top: 1px solid #8c8b8b;
    border-bottom: 1px solid #fff;
}

hr.style9 {
    border-top: 1px dashed #8c8b8b;
    border-bottom: 1px dashed #fff;
}

hr.style10 {
    border-top: 1px dotted #8c8b8b;
    border-bottom: 1px dotted #fff;
}

hr.style11 {
    height: 6px;
    background: url(/img/hr-11.png) repeat-x 0 0;
    border: 0;
}

hr.style12 {
    height: 6px;
    background: url(/img/hr-12.png) repeat-x 0 0;
    border: 0;
}

hr.style13 {
    height: 10px;
    border: 0;
    box-shadow: 0 10px 10px -10px #8c8b8b inset;
}

hr.style14 {
    border: 0;
    height: 1px;
    background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
    background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
    background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
    background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
}

hr.style15 {
    border-top: 4px double #8c8b8b;
    text-align: center;
}

hr.style15:after {
    content: '\002665';
    display: inline-block;
    position: relative;
    top: -15px;
    padding: 0 10px;
    background: #f0f0f0;
    color: #8c8b8b;
    font-size: 18px;
}

hr.style16 {
    border-top: 1px dashed #8c8b8b;
}

hr.style16:after {
    content: '\002702';
    display: inline-block;
    position: relative;
    top: -12px;
    left: 40px;
    padding: 0 3px;
    background: #f0f0f0;
    color: #8c8b8b;
    font-size: 18px;
}

hr.style17 {
    border-top: 1px solid #8c8b8b;
    text-align: center;
}

hr.style17:after {
    content: '§';
    display: inline-block;
    position: relative;
    top: -14px;
    padding: 0 10px;
    background: #f0f0f0;
    color: #8c8b8b;
    font-size: 18px;
    -webkit-transform: rotate(60deg);
    -moz-transform: rotate(60deg);
    transform: rotate(60deg);
}

hr.style18 {
    height: 30px;
    border-style: solid;
    border-color: #8c8b8b;
    border-width: 1px 0 0 0;
    border-radius: 20px;
}

hr.style18:before {
    display: block;
    content: "";
    height: 30px;
    margin-top: -31px;
    border-style: solid;
    border-color: #8c8b8b;
    border-width: 0 0 1px 0;
    border-radius: 20px;
}

.shadowedstrong {
    -webkit-box-shadow: 9px 7px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 9px 7px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 9px 7px 5px 0px rgba(0, 0, 0, 0.75);
}

.shadowedhuge {
    -webkit-box-shadow: 0px 0px 72px 5px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 72px 5px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 72px 5px rgba(0, 0, 0, 0.75);
}

.whitebg {
    background-color: #FEFAF0;
}

.boxed {
    border-style: solid;
    border-top-color: #EEEEBB;
    border-left-color: #AAAABB;
    border-right-color: black;
    border-bottom-color: black;
    border-width: 1px;
    margin: auto;
    width: 100%;
    background-color: #FEFEFE;
    -webkit-box-shadow: 3px 3px 5px rgba(50, 50, 50, 0.5);
    -moz-box-shadow: 3px 3px 5px rgba(50, 50, 50, 0.5);
    box-shadow: 3px 3px 5px rgba(50, 50, 50, 0.5);
    padding: 5px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.softboxed {
    margin: 5px;
    border-style: solid;
    border-color: #FFF;
    border-width: 1px;
    width: 100%;
    background-color: #FEFEFE;
    -webkit-box-shadow: inset 2px 2px 6px -180px rgba(0, 0, 0, 0.58);
    -moz-box-shadow: inset 2px 2px 6px -180px rgba(0, 0, 0, 0.58);
    box-shadow: inset 2px 2px 6px -180px rgba(0, 0, 0, 0.58);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.shadowed {
    -webkit-box-shadow: 3px 2px 11px -2px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 3px 2px 11px -2px rgba(0, 0, 0, 0.75);
    box-shadow: 3px 2px 11px -2px rgba(0, 0, 0, 0.75);
}

/* enable absolute positioning */
.inner-addon {
    position: relative;
}

.left-margin {
    padding-left: 50px;
}

/* style icon */
.inner-addon .glyphicon {
    position: absolute;
    padding: 10px;
    pointer-events: none;
}

/* align icon */
.left-addon .glyphicon {
    left: 0px;
}

.right-addon .glyphicon {
    right: 0px;
}

/* add padding  */
.left-addon input {
    padding-left: 30px;
}

.right-addon input {
    padding-right: 30px;
}

.right {
    position: absolute;
    right: 0px;
    width: 100%;
    padding: 10px;
}

.left {
    position: absolute;
    left: 0px;
    width: 100%;
    padding: 10px;
}

.center {
    position: absolute;
    margin: auto;
    width: 100%;
    padding: 10px;
}

.form-group {
    margin-bottom: 15px;
}

.radio,
.checkbox {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}

.radio label,
.checkbox label {
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
}

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
    position: absolute;
    margin-left: -20px;
    margin-top: 4px \9;
}

.radio + .radio,
.checkbox + .checkbox {
    margin-top: -5px;
}

.radio-inline,
.checkbox-inline {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    vertical-align: middle;
    font-weight: normal;
    cursor: pointer;
}

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
    margin-top: 0;
    margin-left: 10px;
}

input[type="radio"][disabled],
input[type="radio"].disabled,
fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input[type="checkbox"].disabled,
fieldset[disabled] input[type="checkbox"] {
    cursor: not-allowed;
}

.radio-inline.disabled,
fieldset[disabled] .radio-inline,
.checkbox-inline.disabled,
fieldset[disabled] .checkbox-inline {
    cursor: not-allowed;
}

.radio.disabled label,
fieldset[disabled] .radio label,
.checkbox.disabled label,
fieldset[disabled] .checkbox label {
    cursor: not-allowed;
}

.form-control-static {
    padding-top: 7px;
    padding-bottom: 7px;
    margin-bottom: 0;
    min-height: 34px;
}

.form-control-static.input-lg,
.input-group-lg > .form-control-static.form-control,
.input-group-lg > .form-control-static.input-group-addon,
.input-group-lg > .input-group-btn > .form-control-static.btn,
.form-control-static.input-sm,
.input-group-sm > .form-control-static.form-control,
.input-group-sm > .form-control-static.input-group-addon,
.input-group-sm > .input-group-btn > .form-control-static.btn {
    padding-left: 0;
    padding-right: 0;
}

.input-sm,
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
    height: 25px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 0;
}

select.input-sm,
.input-group-sm > select.form-control,
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > select.btn {
    height: 25px;
    line-height: 25px;
}

textarea.input-sm,
.input-group-sm > textarea.form-control,
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-btn > textarea.btn,
select[multiple].input-sm,
.input-group-sm > select[multiple].form-control,
.input-group-sm > select[multiple].input-group-addon,
.input-group-sm > .input-group-btn > select[multiple].btn {
    height: auto;
}

.form-group-sm .form-control {
    height: 25px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 0;
}

.form-group-sm select.form-control {
    height: 25px;
    line-height: 25px;
}

.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
    height: auto;
}

.form-group-sm .form-control-static {
    height: 25px;
    min-height: 32px;
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1.5;
}

.input-lg,
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
    height: 45px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 0;
}

select.input-lg,
.input-group-lg > select.form-control,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn {
    height: 45px;
    line-height: 45px;
}

textarea.input-lg,
.input-group-lg > textarea.form-control,
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-btn > textarea.btn,
select[multiple].input-lg,
.input-group-lg > select[multiple].form-control,
.input-group-lg > select[multiple].input-group-addon,
.input-group-lg > .input-group-btn > select[multiple].btn {
    height: auto;
}

.form-group-lg .form-control {
    height: 45px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 0;
}

.form-group-lg select.form-control {
    height: 45px;
    line-height: 45px;
}

.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
    height: auto;
}

.form-group-lg .form-control-static {
    height: 45px;
    min-height: 38px;
    padding: 11px 16px;
    font-size: 18px;
    line-height: 1.3333333;
}

.has-feedback {
    position: relative;
}

.has-feedback .form-control {
    padding-right: 47.5px;
}

.form-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    pointer-events: none;
}

.input-lg + .form-control-feedback,
.input-group-lg > .form-control + .form-control-feedback,
.input-group-lg > .input-group-addon + .form-control-feedback,
.input-group-lg > .input-group-btn > .btn + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
    width: 45px;
    height: 45px;
    line-height: 45px;
}

.input-sm + .form-control-feedback,
.input-group-sm > .form-control + .form-control-feedback,
.input-group-sm > .input-group-addon + .form-control-feedback,
.input-group-sm > .input-group-btn > .btn + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
    width: 25px;
    height: 25px;
    line-height: 25px;
}

@media (min-width: 320px) {
    .form-inline .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }

    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }

    .form-inline .form-control-static {
        display: inline-block;
    }

    .form-inline .input-group {
        display: inline-table;
        vertical-align: middle;
    }

    .form-inline .input-group .input-group-addon,
    .form-inline .input-group .input-group-btn,
    .form-inline .input-group .form-control {
        width: auto;
    }

    .form-inline .input-group > .form-control {
        width: 100%;
    }

    .form-inline .control-label {
        margin-bottom: 0;
        vertical-align: middle;
    }

    .form-inline .radio,
    .form-inline .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle;
    }

    .form-inline .radio label,
    .form-inline .checkbox label {
        padding-left: 0;
    }

    .form-inline .radio input[type="radio"],
    .form-inline .checkbox input[type="checkbox"] {
        position: relative;
        margin-left: 0;
    }

    .form-inline .has-feedback .form-control-feedback {
        top: 0;
    }
}

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 7px;
}

.form-horizontal .radio,
.form-horizontal .checkbox {
    min-height: 27px;
}

.form-horizontal .form-group {
    margin-left: -15px;
    margin-right: -15px;
}

.form-horizontal .form-group:before,
.form-horizontal .form-group:after {
    content: " ";
    display: table;
}

.form-horizontal .form-group:after {
    clear: both;
}

@media (min-width: 768px) {
    .form-horizontal .control-label {
        text-align: right;
        margin-bottom: 0;
        padding-top: 7px;
    }
}

.form-horizontal .has-feedback .form-control-feedback {
    right: 15px;
}

@media (min-width: 768px) {
    .form-horizontal .form-group-lg .control-label {
        padding-top: 14.333333px;
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .form-horizontal .form-group-sm .control-label {
        padding-top: 6px;
        font-size: 12px;
    }
}

.checkbox {
    padding-left: 20px;
}

.checkbox label {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-left: 5px;
}

.checkbox label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    margin-left: -20px;
    border: 1px solid #CCCCCC;
    border-radius: 3px;
    background-color: #FFF;
    -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

.checkbox label::after {
    display: inline-block;
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    top: 0;
    margin-left: -20px;
    padding-left: 3px;
    padding-top: 1px;
    font-size: 11px;
    color: #555555;
}

.checkbox a {
    text-decoration: none;
    border-size: 0px;
}

.checkbox input[type="checkbox"],
.checkbox input[type="radio"] {
    opacity: 0;
    z-index: 1;
}

.checkbox input[type="checkbox"]:focus + label::before,
.checkbox input[type="radio"]:focus + label::before {
    /*outline: thin dotted;
      outline: 5px auto -webkit-focus-ring-color;
      outline-offset: -2px;*/
}

.checkbox input[type="checkbox"]:checked + label::after,
.checkbox input[type="radio"]:checked + label::after {
    font-family: "FontAwesome";
    /* content: "\f00c";*/
}

.checkbox input[type="checkbox"]:disabled + label,
.checkbox input[type="radio"]:disabled + label {
    opacity: 0.65;
}

.checkbox input[type="checkbox"]:disabled + label::before,
.checkbox input[type="radio"]:disabled + label::before {
    background-color: #EEEEEE;
    cursor: not-allowed;
}

.checkbox.checkbox-circle label::before {
    border-radius: 50%;
}

.checkbox.checkbox-inline {
    margin-top: 0;
}

.checkbox-primary input[type="checkbox"]:checked + label::before,
.checkbox-primary input[type="radio"]:checked + label::before {
    background-color: #337AB7;
    border-color: #337AB7;
}

.checkbox-primary input[type="checkbox"]:checked + label::after,
.checkbox-primary input[type="radio"]:checked + label::after {
    color: #FFF;
}

.checkbox-danger input[type="checkbox"]:checked + label::before,
.checkbox-danger input[type="radio"]:checked + label::before {
    background-color: #D9534F;
    border-color: #D9534F;
}

.checkbox-danger input[type="checkbox"]:checked + label::after,
.checkbox-danger input[type="radio"]:checked + label::after {
    color: #FFF;
}

.checkbox-info input[type="checkbox"]:checked + label::before,
.checkbox-info input[type="radio"]:checked + label::before {
    background-color: #5BC0DE;
    border-color: #5BC0DE;
}

.checkbox-info input[type="checkbox"]:checked + label::after,
.checkbox-info input[type="radio"]:checked + label::after {
    color: #FFF;
}

.checkbox-warning input[type="checkbox"]:checked + label::before,
.checkbox-warning input[type="radio"]:checked + label::before {
    background-color: #F0AD4E;
    border-color: #F0AD4E;
}

.checkbox-warning input[type="checkbox"]:checked + label::after,
.checkbox-warning input[type="radio"]:checked + label::after {
    color: #FFF;
}

.checkbox-success input[type="checkbox"]:checked + label::before,
.checkbox-success input[type="radio"]:checked + label::before {
    background-color: #5CB85C;
    border-color: #5CB85C;
}

.checkbox-success input[type="checkbox"]:checked + label::after,
.checkbox-success input[type="radio"]:checked + label::after {
    color: #FFF;
}

.radio {
    padding-left: 20px;
}

.radio label {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-left: 5px;
}

.radio label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    margin-left: -20px;
    border: 1px solid #CCCCCC;
    border-radius: 50%;
    background-color: #FFF;
    -webkit-transition: border 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out;
    transition: border 0.15s ease-in-out;
}

.radio label::after {
    display: inline-block;
    position: absolute;
    content: " ";
    width: 11px;
    height: 11px;
    left: 3px;
    top: 3px;
    margin-left: -20px;
    border-radius: 50%;
    background-color: #555555;
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}

.radio input[type="radio"] {
    opacity: 0;
    z-index: 1;
}

.radio input[type="radio"]:focus + label::before {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

.radio input[type="radio"]:checked + label::after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

.radio input[type="radio"]:disabled + label {
    opacity: 0.65;
}

.radio input[type="radio"]:disabled + label::before {
    cursor: not-allowed;
}

.radio.radio-inline {
    margin-top: 0;
}

.radio-primary input[type="radio"] + label::after {
    background-color: #337AB7;
}

.radio-primary input[type="radio"]:checked + label::before {
    border-color: #337AB7;
}

.radio-primary input[type="radio"]:checked + label::after {
    background-color: #337AB7;
}

.radio-danger input[type="radio"] + label::after {
    background-color: #D9534F;
}

.radio-danger input[type="radio"]:checked + label::before {
    border-color: #D9534F;
}

.radio-danger input[type="radio"]:checked + label::after {
    background-color: #D9534F;
}

.radio-info input[type="radio"] + label::after {
    background-color: #5BC0DE;
}

.radio-info input[type="radio"]:checked + label::before {
    border-color: #5BC0DE;
}

.radio-info input[type="radio"]:checked + label::after {
    background-color: #5BC0DE;
}

.radio-warning input[type="radio"] + label::after {
    background-color: #F0AD4E;
}

.radio-warning input[type="radio"]:checked + label::before {
    border-color: #F0AD4E;
}

.radio-warning input[type="radio"]:checked + label::after {
    background-color: #F0AD4E;
}

.radio-success input[type="radio"] + label::after {
    background-color: #5CB85C;
}

.radio-success input[type="radio"]:checked + label::before {
    border-color: #5CB85C;
}

.radio-success input[type="radio"]:checked + label::after {
    background-color: #5CB85C;
}

input[type="checkbox"].styled:checked + label:after,
input[type="radio"].styled:checked + label:after {
    font-family: 'FontAwesome';
    /* content: "\f00c";*/
}

input[type="checkbox"] .styled:checked + label::before,
input[type="radio"] .styled:checked + label::before {
    color: #FFF;
}

input[type="checkbox"] .styled:checked + label::after,
input[type="radio"] .styled:checked + label::after {
    color: #FFF;
}

section {
    margin-top: 40px;
    margin-bottom: 40px;
}

img.img-center {
    margin-right: auto;
    margin-left: auto;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.navbar {
    min-height: 35px;
}

.alert {
    border-radius: 0px;
}

.compatible-icon {
    z-index: 2;
    margin: 0;
    /*+placement: -30% -23px;*/
    position: relative;
    left: -30%;
    top: -23px;
    text-align: left;
    padding: 0;
    height: 0;
    width: 0;
}
