Theme Name: Custom Theme
Text Domain: twentysixteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

#content img[src*="/tmp/"] {
    max-width: 100%;
    margin-bottom: 20px;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, ins, kbd, q, samp, small, strike, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    border: 0;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

header:after,
nav:after,
#content:after {
    content: '';
    display: table;
    clear: both;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #333;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

header, nav, section, article, aside, footer, #primary img {
    display: block;
}

div.wrap {
    width: 1024px;
    margin: 0 auto;
}

/*GENERAL*/
header {
    overflow: visible;
}

    header .flex {
        display: flex;
        flex-flow: row wrap;
        align-items: center;
        justify-content: space-between;
    }

    header #main-top-bar {
        background: #084f77;
        color: #fff;
        overflow: auto;
        padding: 10px 0;
    }

        header #main-top-bar a {
            color: #fff;
        }

        header #main-top-bar .user-auth {
            float: right;
        }

        header #main-top-bar a:hover {
            text-decoration: underline;
        }

    header #logo img {
        display: block;
        max-height: 80px;
        margin: 10px 0;
    }

    header nav {
        border-bottom: 1px solid #efefef;
    }

footer {
    background: #efefef;
    overflow: auto;
    clear: both;
    color: #333;
    padding: 30px 0;
}

div.heading {
    padding: 30px;
    background: #084f77;
}

#page {
    display: flex;
    flex-flow: column;
    flex: 1;
}

    #page #content-wrapper {
        width: 100%;
        flex: 1;
    }

/*CONTENT WRAPPER*/
#content-wrapper aside {
    width: 250px;
    background: #efefef;
    padding: 20px;
}

aside span.admin-section-tab {
    float: left;
    background: #f9f8f8;
    cursor: pointer;
    width: calc(50% - 5px);
    border: 1px solid #ccc;
    padding: 5px 10px;
    margin-bottom: 10px;
}

    aside span.admin-section-tab:hover {
        background: #fff;
        color: #084f77;
    }

    aside span.admin-section-tab.selected {
        background: #084f77;
        border-color: #084f77;
        color: #fff;
    }

        aside span.admin-section-tab.selected:hover {
            background: #0c6190;
            border-color: #0c6190;
        }

    aside span.admin-section-tab:last-of-type {
        float: right;
    }

aside ul {
    background: #f9f8f8;
    clear: both;
    display: none;
    padding-bottom: 15px;
}

    aside ul.visible {
        display: block;
    }

    aside ul li {
        list-style: none;
    }

    aside ul a {
        display: block;
        padding: 8px 15px;
    }

        aside ul a:hover {
            background: #fff;
            color: #084f77;
        }

        aside ul a.selected {
            background: #084f77;
            color: #fff;
        }

            aside ul a.selected:hover {
                background: #0c6190;
            }

    aside ul svg {
        width: 20px;
    }

#content {
    padding: 20px;
}

.flex #content {
    width: calc(100% - 250px);
    min-height: 500px;
}

/*FLEX STYLING*/
.flex {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

    .flex > * {
        padding: 20px;
        width: 50%;
    }

    .flex.full > *,
    .flex > .full {
        width: 100%;
    }

.entry-content .flex .flex > *,
.modal .flex > * {
    padding: 0 10px 15px;
}

.flex.border > * {
    border: 1px solid #e6e6e6;
    margin-bottom: -1px;
}

    .flex.border > *:nth-child(even) {
        border-left: none;
    }

.flex.col-3 > * {
    width: calc(100%/3);
}

.flex.col-4 > * {
    width: calc(100%/4);
}

/*INNER CONTENT*/
#login {
    width: 360px;
    border: 1px solid #efefef;
    padding: 30px;
    margin: 0 auto;
}

    #login > div {
        margin-bottom: 10px;
    }

    #login .submit {
        text-align: center;
    }

.filters {
    background: #efefef;
    padding: 20px;
    overflow: auto;
    margin-bottom: 20px;
}

    .filters .fields {
        float: left;
    }

    .filters .shortcuts {
        float: right;
    }

#content .filters a.selected {
    background: #1e72a0;
}

#content .filters input,
#content .filters select,
.modal .filters input,
.modal .filters select {
    margin-right: 20px;
    border: none;
    width: 200px;
}

.entry-content {
    font-size: 13px;
}

    .entry-content .flex,
    .entry-content table {
        margin-bottom: 50px;
    }

        .entry-content .flex .flex,
        .entry-content .flex table {
            margin-bottom: 0;
        }

    .entry-content table {
        width: 100%;
        border-collapse: collapse;
        border: 1px solid #e6e6e6;
    }

        .entry-content table th {
            padding: 5px;
            text-align: left;
            font-weight: bold;
        }

        .entry-content table tfoot th a {
            text-decoration: none !important;
        }

        .entry-content table tfoot select {
            width: calc(100% - 150px);
            float: left;
            margin: 0 10px 0 5px;
        }

        .entry-content table tfoot.prices label {
            display: block;
            font-weight: normal;
            clear: both;
            padding: 5px;
        }

        .entry-content table thead.contact-separator th {
            padding: 15px 5px 5px;
        }

        .entry-content table td {
            border: 1px solid #e6e6e6;
            padding: 5px;
            vertical-align: middle;
        }

            .entry-content table td.text-center {
                text-align: center;
            }

                .entry-content table td.text-center input {
                    float: none;
                }

        .entry-content table tr:nth-child(even) td {
            background: #f9f9f9;
        }

        .entry-content table tr:hover td {
            background: #f5fafd;
        }

        .entry-content table input[class*="_filter"] {
            border: 1px solid #ccc;
            outline: none;
            padding: 5px;
        }

        .entry-content table a[class*="-detail"],
        .entry-content table a[class*="-edit"] {
            padding: 4px 15px;
        }

            .entry-content table a[class*="-detail"] + span[class*="remove"] svg,
            .entry-content table a[class*="-edit"] + span[class*="remove"] svg {
                margin-top: 7px;
            }

        .entry-content table svg[class*="fa-trash"] {
            cursor: pointer;
            float: right;
            color: red;
            margin-right: 5px;
        }

        .entry-content table svg[class*="fa-window-restore"] {
            cursor: pointer;
            float: right;
            color: #084f77;
            margin-right: 5px;
        }

        .entry-content table td p {
            margin: 0;
        }

        .entry-content table.addresses a[class*="btn-edit"] {
            float: left;
        }

        .entry-content table.addresses a[class*="btn-remove"] {
            float: right;
        }

        .entry-content table span.status {
            display: block;
            text-align: center;
        }

            .entry-content table span.status svg {
                color: #ccc;
            }

            .entry-content table span.status.ACTIVE svg {
                color: green;
            }

        .entry-content table .profile-picture {
            width: 50px;
            height: 50px;
            float: left;
            margin-right: 15px;
        }

            .entry-content table .profile-picture img {
                width: 50px;
                cursor: default;
                opacity: 1;
            }

/*FROMS & FIELDS*/
form > div {
    display: block;
    margin-bottom: 15px;
}

form label {
    font-weight: bold;
    display: block;
}

    form label.input {
        float: left;
        padding-top: 5px;
        margin-right: 20px;
        font-weight: 100;
    }

        form label.input input {
            float: left;
        }

input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="time"],
input[type="number"],
input[type="submit"],
textarea,
select {
    outline: none;
    height: 35px;
    padding: 0 5px;
    border: none;
    color: #084f77;
    border: 1px solid #ccc;
    width: 100%;
}

    input[type="text"][disabled],
    input[type="email"][disabled],
    input[type="password"][disabled],
    input[type="date"][disabled],
    input[type="time"][disabled],
    input[type="number"][disabled],
    input[type="submit"][disabled],
    textarea[disabled],
    select[disabled],
    input[type="submit"][disabled],
    input[type="submit"][disabled]:hover,
    input[disabled]::placeholder {
        color: #ccc;
        background: #efefef;
    }

select {
    text-transform: capitalize;
}

input[type="submit"] {
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
}

table thead input[type="text"],
table thead input[type="email"],
table thead input[type="date"],
table thead input[type="time"],
table thead input[type="number"],
table thead select {
    height: 25px;
}

input[type="radio"],
input[type="checkbox"] {
    float: left;
    margin: 3px 5px 0 0;
}

form select[multiple] {
    width: 100%;
    min-height: 200px;
}

form textarea {
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    height: 200px;
    padding: 5px;
}

form input[type="submit"] {
    color: #fff;
    background: #127db9;
    border: none;
    cursor: pointer;
    width: 130px;
}

    form input[type="submit"]:hover {
        background: #188fd2;
    }

form input + input {
    margin-top: 5px;
}

.from_to, .group-elearning {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

    .from_to label, .from_to input {
        width: calc(50% - 10px);
    }

    .from_to label {
        order: 0;
    }

    .from_to input + label {
        order: 1;
    }

    .from_to label + input {
        order: 2;
    }

.entry-content form div.submit {
    border: 0;
    padding: 20px 0;
}

    .entry-content form div.submit.right {
        width: 100%;
        text-align: right;
        margin-bottom: 0;
    }

.entry-content form div.submit-inline.right {
    text-align: right;
    margin-bottom: 0;
}


/*STYLES*/
a {
    color: #333;
    text-decoration: none;
    outline: none;
}

.entry-content a {
    color: #3683af;
}

button.btn {
    display: inline-block;
    padding: 10px 15px;
    background: #084f77;
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: filter 0.2s;
    cursor: pointer;
    border-radius: 4px;
    border: 0;
}

a.btn {
    display: inline-block;
    padding: 6px 10px;
    background: #084f77;
    color: #fff !important;
    text-align: center;
    text-decoration: none;
    transition: filter 0.2s;
    cursor: pointer;
    font-size: 12px;
    border-radius: 4px;
}

.entry-content a:not(.btn):hover {
    text-decoration: underline;
}

a.btn:hover {
    background: #0c6190 !important;
    color: #fff;
}

a.scroller {
    position: fixed;
    bottom: 25px;
    padding: 5px 10px;
}

p {
    margin-bottom: 15px;
}

    p.small {
        font-size: 12px;
        color: #949494;
    }

        p.small:last-of-type {
            margin-bottom: 0;
        }

h1, h2, h3 {
    font-size: 18px;
    font-weight: normal;
    color: #fff;
    text-transform: uppercase;
}

h2 {
    font-size: 18px;
    color: #084f77;
    margin-bottom: 10px;
}

h3 {
    font-size: 16px;
    color: #000;
    margin-bottom: 10px;
}

strong {
    font-weight: 600;
}

svg {
    margin-right: 5px;
}

.icon svg {
    margin: 0;
}

dl {
    display: flex;
    flex-flow: row wrap;
    width: 400px;
    margin-bottom: 20px;
}

    dl dt {
        font-weight: bold;
    }

    dl dt, dl dd {
        width: 50%;
        padding: 5px 0;
    }

.order-detail dl {
    width: 100%;
}

    .order-detail dl dt {
        width: 30%;
    }

    .order-detail dl dd {
        width: 70%;
    }

dl dt:not(:last-of-type), dl dd:not(:last-of-type) {
    border-bottom: 1px solid #efefef;
}

.modal {
    border-radius: 0;
    line-height: 18px;
    padding: 20px;
    max-width: 1024px;
}

#modal-ShowEdit, #modal-ShowEditTwo {
    max-width: 800px;
}

#modal-ShowLarge {
    max-width: 90%;
}

.modal .modal-title {
    width: 100%;
    padding: 10px;
    color: #000;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 25px;
    border-bottom: 1px solid #ccc;
}

.modal .modal-footer {
    padding: 20px 0 0;
    width: 100%;
    overflow: auto;
}

    .modal .modal-footer a {
        float: left;
    }

        .modal .modal-footer a[rel="modal:close"] {
            background: #6c7377;
        }

            .modal .modal-footer a[rel="modal:close"]:hover {
                background: #838a8e !important;
            }

    .modal .modal-footer input {
        float: right;
    }

.modal a.close-modal {
    border: none;
}

.picture img {
    width: 150px;
    cursor: pointer;
}

.profile-picture {
    overflow: hidden;
    border-radius: 50%;
    position: relative;
    width: 150px;
    height: 150px;
    border: 1px solid #ccc;
}

    .profile-picture img {
        position: relative;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

        .profile-picture img:hover {
            opacity: 0.8;
        }

a#btnDeletePicture {
    color: red;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    padding: 5px;
    border-radius: 50%;
}

    a#btnDeletePicture:hover {
        color: #fff;
    }

    a#btnDeletePicture svg {
        margin: 0;
    }

.profile-picture:hover a#btnDeletePicture {
    display: block;
}

.third-inline {
    width: 33%;
}

.type_priv.hide,
.type_corp.hide {
    display: none;
}

.hide + .third-inline,
.hide + .third-inline + .third-inline,
.modal .third-inline {
    width: 50%;
}

.radio-inline, .checkbox-inline {
    display: inline-block;
    margin: 0 10px 0 0;
    font-weight: normal;
}

    .radio-inline label, .checkbox-inline label {
        display: inline-block;
    }

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

h3 + a[class*="-create"],
h3 + a[class*="-create"] + a[class*="-create"],
.box.float + .box.float h3 + a[class*="-create"],
h3 + div.buttons {
    position: absolute;
    right: 0;
    top: -8px;
}

.box.float h3 + a[class*="-create"] {
    right: 15px;
}

#content a[class*="-quick"] {
    right: 90px;
    background: #0d84c7;
}

    #content a[class*="-quick"]:hover {
        background: #128ed4 !important;
    }

tr.pending td {
    background-color: #d2d2d2 !important;
}

table.addresses tr.owned td {
    font-style: italic;
    color: #a7a7a7;
}

table.addresses td:first-child span {
    display: block;
    font-style: italic;
    color: #a7a7a7;
}

table.addresses tr td:last-child {
    text-align: right;
}

.border-bottom {
    border-bottom: 1px solid #ccc;
}

a.btn.disabled {
    pointer-events: none;
    color: #717171 !important;
    background: #ccc !important;
    cursor: default !important;
}

a.disabled {
    cursor: not-allowed;
    filter: alpha(opacity=65);
    opacity: .65;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.dataTables_wrapper .bottom {
    padding: 5px 0;
}

.dataTables_length select {
    width: 60px;
}

.ck-editor__editable_inline {
    min-height: 250px;
}

.dataTables_length {
    margin-bottom: 5px;
}

.ck-content ul, .ck-content ol {
    margin-left: 20px;
}

.datatable-hidden {
    display: none !important;
}

.text-center {
    text-align: center !important;
}

.p-20 {
    padding: 20px;
}

.w-200 {
    width: 200px;
}


.titlecomplement .ck-editor__editable {
    min-height: 100px;
}

.select2-selection {
    border-radius: unset !important;
    height: 35px !important;
    border: none !important;
}

.select2-search__field::placeholder {
    color: #084f77 !important;
}

#membershipsTreeView ul li ul {
    margin-left: 35px;
}


.btnAttendeesExportToExcel {
    position: absolute;
    right: 205px;
    top: -8px;
}

.btn-cancel-edit {
    color: red;
    float: right;
}

.w-100-percent {
    width: 100%;
}

.pull-center {
    text-align: center;
}

.tooltip {
    position: relative;
    display: inline;
    border-bottom: 1px dotted black;
}

    .tooltip .tooltiptext {
        width: 600px;
        background-color: black;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px 0;
        /* Position the tooltip */
        position: absolute;
        z-index: 1;
        margin-top: 20px;
    }

.rowActive {
    background: #f5fafd !important;
}

.subRows td {
    background: #dddcdc !important;
}

.rowOrderCancel td {
    background: #a2a2a2 !important;
}

.accordion {
    background-color: #eee;
    color: #444;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: 0.4s;
    display: block;
    cursor: pointer;
    position: relative;
    margin: 2px 0 0 0;
    padding: .5em .5em .5em .7em;
    font-size: 100%;
}

    .accordion:hover:not(.accordionActive) {
        background-color: #ccc;
    }

.accordionActive {
    border: 1px solid #003eff;
    background: #007fff;
    font-weight: normal;
    color: #fff;
}

.accordionPanel {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    padding: 1em 2.2em;
    border-top: 0;
    overflow: auto;
}

.mt-10 {
    margin-top:10px;
}