/****************************************************************************************
# Default css file for content edited with CKEditor
#
# Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
# For licensing, see LICENSE.md or http://ckeditor.com/license
#
# Defines a few class selectors that can be simply taken as examples by anyone who needs to configure the RTE.
# This css file is referenced by property RTE.default.contentCSS in TSconfig.
# ***************************************************************************************/

.button-link {
    background-color: rgba(45, 75, 85, 0.9);
    color: #fff !important;
    border-width: 3px !important;
    padding: 10px 10px;
    font-size: 18px;
    line-height: 1.42857143;
    min-width: auto;
    text-align: center;
    text-transform: uppercase;
    margin: 10px 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    border: 1px solid transparent !important;
    text-decoration: none;
}

.button-link:hover {
    color: #ffffff !important;
    background-color: #7fa851;
    text-decoration: none;
}


a {
    text-decoration: none;
    color: #ff8700;
    font-weight: 400;
    border-radius: 0;
}
a:focus, a:hover {
    color: #b35f00;
    text-decoration: underline;
}
a:hover {
    text-decoration: none;
}
.btn-link {
    color: #ff8700;
    font-weight: 400;
    border-radius: 0;
}
.btn-link:focus,
.btn-link:hover {
    color: #b35f00;
    text-decoration: underline;
    background-color: transparent;
}
.btn-block {
    display: block;
    width: 100%;
}
.btn,
.btn-default,
.btn-primary,
.btn-warning,
.btn-danger,
.btn-success {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 16px;
    line-height: 1.55;
    border-radius: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}
.btn-default:hover {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;
}
.btn-primary {
    color: #fff;
    background-color: #ff8700;
    border-color: #e67a00;
}
.btn-primary:hover {
    color: #fff;
    background-color: #cc6c00;
    border-color: #a85900;
}
.btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236;
}
.btn-warning:hover {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512;
}
.btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a;
}
.btn-danger:hover {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925;
}
.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}
.btn-success:hover {
    color: #fff;
    background-color: #449d44;
    border-color: #398439;
}