body a:hover, body a:active, body a:focus {
    outline: 0;
    text-decoration: none;
    color: #fff;
}

.hidden, [hidden] {
    display: none!important;
}

.btn-darkblue, .btn-darkblue:focus, .btn-darkblue:hover, .btn-darkblue:active {
    border: 0;
    background: #1b3f59;
    color: white;
    text-transform: uppercase;
    border-bottom: 5px solid #12293a;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 300;
    padding-top: 25px;
    padding-bottom: 25px;
    line-height: 1;
    -webkit-transition: transform 0.2s ease;
    -moz-transition: transform 0.2s ease;
    -o-transition: transform 0.2s ease;
    transition: transform 0.2s ease;
}

.capitalize{
    text-transform: capitalize;
}
.checkbox label:after{
    content: '';
    display: table;
    clear: both;
}
.checkbox label{
    padding-left: 0;
}

.checkbox .cr{
    position: relative;
    display: inline-block;
    border: 2px solid #cbc9c9;
    border-radius: .25em;
    width: 1.3em;
    height: 1.3em;
    float: left;
    margin-right: .5em;
}

.checkbox .cr .cr-icon{
    position: absolute;
    font-size: .8em;
    line-height: 0;
    top: 50%;
    left: 15%;
}

.checkbox label input[type="checkbox"]{
    display: none;
}

.checkbox label input[type="checkbox"] + .cr > .cr-icon{
    transform: scale(3) rotateZ(-20deg);
    opacity: 0;
    transition: all .3s ease-in;
}

.checkbox label input[type="checkbox"]:checked + .cr > .cr-icon{
    transform: scale(1) rotateZ(0deg);
    opacity: 1;
}

.checkbox label input[type="checkbox"]:disabled + .cr{
    opacity: .5;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}


.loading-spinner{
    height: 100px;
    background: url(/static/frontend/images/Spin-Preloader.gif) center no-repeat #fff;
    background-size: 200px;
}

.nav-tabs .nav-link:hover {
    color: #0056b3;
}
.pricing__item--invert a {
    color: #000000;
}
.pricing__item--invert a:hover {
    color: #0056b3;
}

.alert .alert-link {
    color: blue;
}
.alert .alert-link:hover {
    text-decoration: underline;
}

.hijacked-warning-bootstrap {
    text-align: center;
    padding: 0;
}