
/* Prevent page moving with scroll bars appearing on report editing*/
/*html {
    margin-left: calc(100vw - 100%);
    margin-right: 0;
}*/

body.inspection {
    overflow-y: scroll;
}

/* =================== */
/* WRAPPER */
/* =================== */
.wrapper {
    margin: 0 auto;
}

.warpper.container-fluid {
    padding: 0px 10px;
}

.inspection .wrapper {
    width: 1375px;
    margin: 0 auto;
}
    .inspection .wrapper .container-fluid {
        padding-left: 0px;
        padding-right: 0px;
    }

    .inspection .wrapper .container-fluid, .agent .wrapper .container-fluid, .property .wrapper .container-fluid {
        margin-top: 10px;
    }


/* =================== */
/* UNIVERSAL */
/* =================== */
.page-header h2 {
    margin-top: 0;
}

h2 {
    font-size: 26px;
}
h3 {
    font-size: 24px;
}
h4 {
    font-size: 18px;
}
.btn {
    border-radius: 100px;
    padding: 5px 13px;
    margin: 0px 5px;
}

.btn-simple {
    background-image: linear-gradient(to bottom, #e4e4e4, #f7f7f7);
    border-top: 1px solid #d3d3d3;
    border-left: 1px solid #d3d3d3;
    border-right: 1px solid #afafaf;
    border-bottom: 1px solid #afafaf;
    padding: 1.5px 5px;
    color: black;
    display: inline-block;
    vertical-align: middle;
}
    .btn-simple:hover {
        background-image: linear-gradient(to bottom, #ebeaea, #fbf8f8);
    }
    .btn-simple:active {
        border-top: 1px solid #afafaf;
        border-left: 1px solid #afafaf;
        border-right: 1px solid #d3d3d3;
        border-bottom: 1px solid #d3d3d3;
    }

input::-webkit-calendar-picker-indicator {
    display: none;
} 

/* =================== */
/* NAV BAR & TABS */
/* =================== */
.navbar-nav {
    font-size: 18px;
    padding-left: 10px;
    padding-right: 10px;
}

ul.navbar-nav.me-auto li.nav-item.active a.nav-link {
    text-decoration-line: underline;
    text-decoration-color: red;
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
}

.nav-tabs .nav-link.disabled {
    color: lightgrey;
}

.nav-tabs .nav-link, .nav-tabs .nav-link.disabled {
    border-color: #f2f1f1 #f2f1f1;
}

    .nav-tabs .nav-link.active {
        background-color: #f2f2f2;
    }

/* =================== */
/* FORMS */
/* =================== */
fieldset.group-border {
    border: 1px solid #ddd !important;
    /*padding: 1.4em 1.4em 1.4em 1.4em !important;*/
    padding: 15px;
    margin: 0 0 0 0 !important;
    -webkit-box-shadow: 0px 0px 0px 0px #000;
    box-shadow: 0px 0px 0px 0px #000;
    
}
    fieldset.group-border.dashboard, fieldset.group-border.agent {
        margin-bottom: 40px !important;
    }
.inspection fieldset.group-border, .property fieldset.group-border, .edit-template fieldset.group-border, .agent fieldset.group-border {
    background-color: #f2f2f2;
}

.inspection .form-group .form-control-sm {
    font-size: 11px;
    padding: 5px 5px;
    line-height: 1.2;
}

.agent .form-group .form-control-sm, .agent .form-select-sm {
    font-size: 12px;
    padding: 5px 5px;
    line-height: 1.2;
}

.inspection .form-group input.form-control-sm {
    height: 26.5px;
}

.inspection .form-group.row {
    margin-bottom: 0px;
}

.inspection .col-form-label-sm {
    text-align: right;
    font-size: 11px;
    height: 29px;
    vertical-align: middle;
}

.inspection label.col-sm-1, .inspection label.col-sm-2 {
    padding-right: 0px;
}

.btn-submit {
    padding: 10px 30px;
    background-color: #333;
    border: #E0E0E0 1px solid;
    color: #FFF;
    font-size: 0.9em;
    width: 100px;
    border-radius: 0px;
    cursor: pointer;
    position: absolute;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    -webkit-appearance: none;  /* Hide number stepper - Chrome, Safari, Edge, Opera */
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;  /* Hide number stepper - Firefox */
}

.invalid-form-value {
    border-color: red !important;
    border-width: 2px !important;
    border-style: solid !important;
}


/* =================== */
/* DASHBOARD */
/* =================== */
.dashboard-warning {
    color: orange;
    font-size: 22px;
}


/* =================== */
/* INSPECTIONS */
/* =================== */
table.jobs-table td, table.properties-table td, table.agents-table td, table.contacts-table td, table.settings-table td, table.users-table td {
    padding: 4px 5px 4px 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    /*max-width: 100px;*/
    line-height: 1;
}

table.settings-table td {
    line-height: 1.2;
}

.upload-status-icon {
    width: 15px;
    font-size: 13px;
    font-weight: normal;
}

    .upload-status-icon.fas.fa-exclamation-circle, .upload-status-icon.fas.fa-microphone {
        color: red;
    }

    .upload-status-icon.fas.fa-check {
        font-weight: normal;
    }

    .upload-status-icon.fas.fa-check {
        color: #18ab18;
    }
    .upload-status-icon.fas.fa-check.warning {
        color: red;
    }

        .upload-status-icon.fas.fa-check.in-progress, .upload-status-icon.fas.fa-microphone.in-progress {
            color: orange;
        }

        .upload-status-icon.fas.fa-check.complete, .upload-status-icon.fas.fa-check.processed.complete, .upload-status-icon.fas.fa-microphone.processed {
            color: #53a453;
        }

        .upload-status-icon.fas.fa-check.cancelled {
            color: darkgray;
        }

    .upload-status-icon.fas.fa-times {
        color: grey;
    }

        .upload-status-icon.fas.fa-times.complete {
            color: #53a453;
        }

        .upload-status-icon.fas.fa-times.cancelled {
            color: darkgrey;
        }



.inspections a.disabled, .outstanding a.disabled {
    pointer-events: none;
    cursor: default;
    color: darkgray;
}
.inspections .date-group-header, .outstanding .date-group-header {
    font-weight: 700;
    padding-left: 8px;
    background-color: #f0f0f0;
    line-height: 12px;
    vertical-align: bottom;
}

.btn-simple.table-header-btn {
    padding-bottom: 3px;
}

.inv-included {
    font-size: 14px;
    font-weight: 100;
}

/* =================== */
/* VIEW INSPECTION */
/* =================== */
.inspection fieldset.group-border {
    border-top: none !important;
}

.inspection #internal-notes-textarea {
    margin-left: -110px;
}

.inspection #quote-tool {
    margin-bottom: 5px;
}
.inspection .quote-tool-label {
    margin-left: -50px;
    margin-right: 13px;
}
.inspection .client-label {
    margin-left: -40px;
    margin-right: 2px;
}

.radio-label-vertical-wrapper {
    width: 424px;
    height: 70px;
    padding: 8px 0px 13px 20px;
    display: inline-block;
    margin: 0px 10px 13px 12px;
    border: solid 1px #ced4da;
    border-radius: 5px 5px;
}

.radio-label-vertical {
    float: left;
    vertical-align: middle;
    text-align: center;
    font-size: 11px;
    height: 26px;
    width: 50px;
}
.radio-label-vertical.quote-buttons {
    margin-left: 15px;
    width: 70px;
}

    .radio-label-vertical input {
        margin: auto;
        display: block;
        cursor: pointer;
    }

    .radio-label-vertical .btn-simple.show-vat, .radio-label-vertical .btn-simple.show-agent-prices {
        width: 72px;
        margin: 3px 0px;
    }

.showing-agent-prices {
    color: #1842bf;
}

.manually-quoted {
    border-color: red;
}

.quoted-picker-disc {
    margin-top: 2px;
}

.quoted-picker-price {
    margin-top: 3px;
    cursor: pointer;
}
.quoted-picker-disc {
    cursor: pointer;
}

    .quoted-picker-price:hover, .quoted-picker-disc:hover {
        opacity: 0.4;
    }
    .quoted-picker-price:active, .quoted-picker-disc:active {
        opacity: 0.2;
    }

.inspection #quoted {
    text-align: center;
    min-height: 23px;
    height: 23px;
}

.inspection #invoice_to, .inspection #invoice_to_contact, .inspection #invoice_to_type, .inspection #accounts_pricelist_name2 {
    background-color: beige;
}
.inspection #invoice_to, .inspection #invoice_to_contact {
    float: left;
    width: 310px;
}

.inspection #address_field {
    float: left;
    width: 480px;
}

.inspection #clerk_po_number {
    float: left;
    width: 75px;
}

.ui-autocomplete.ui-widget {
    font-size: 11px;
}
.ui-menu .ui-menu-item-wrapper {
    padding: 0.8px 3px;
}
.ui-autocomplete {
    z-index: 2147483647;
}

.inspection #created, .inspection #last_updated_by {
    width: 180px;
}

.inspection .address_field-dropdown-arrow {
    font-weight: 400;
    margin-left: -23px;
    margin-top: 6px;
    float: left;
}

.inspection .dropped-file-button {
    margin-left: 2px;
    font-weight: 400;
    color: grey;
}
    .inspection .dropped-file-button:hover {
        color: #bf1e1e;
    }

.inspection .btn-simple.populate-button, .inspection .btn-simple.copy-button, .inspection .btn-simple.raise-po, .inspection .btn-simple.get-discount, #quoteModal .btn-simple.copy-button, .inspection .btn-simple.typist-docx-button {
    height: 17px;
    width: 17px;
    vertical-align: middle;
    margin-left: 5px;
}

.inspection #accounts_pricelist_name2 {
    width: 62px;
}

.inspection #subject_text {
    background-color: #e1f1fe;
}
.inspection #sync_status_name {
    background-color: #d9efdb;
    width: 84px;
    margin-left: 6px;
    float: left;
}
.inspection #report_type_name {
    background-color: #fce2e4;
}
.inspection #ready_to_sync {
    background-color: #f0e1fe;
}
.inspection #clerk_id {
    background-color: #bee3e5;
    width:185px;
    float: right;
}
.inspection #attending {
    margin-bottom: 2px;
}
.inspection #previous_jobs {
    width: 265px;
    background-color: #f3ecdb;
}
.inspection #furnished2 {
    width: 110px;
}

.inspection #jobHours {
    width: 40px;
    float: left;
}

.inspection #jobMinutes {
    margin-left: 2px;
    margin-right: 15px;
    width: 40px;
    float: left;
}

.btn-icon {
    font-size: 14px;
    height: 23px;
    width: 24px;
}

.btn-icon i {
    position: relative;
    left: -1.5px;
    top: -1.5px;
}

.inspection .continue-buttons {
    float: left;
    margin-left: 5px; 
}
.inspection .import-src-btn {
    color: #ff6c00;
}
    .inspection .import-src-btn.disabled {
        color: darkgrey;
    }

.inspection .open-previous-btn {
    color: #5d93fb;
}
    .inspection .open-previous-btn.disabled {
        color: darkgrey;
    }

.inspection .continue-btn {
    color: forestgreen;
}
    .inspection .continue-btn.disabled {
        color: darkgrey;
    }

.inspection .btn.customer-confo {
    background-color: #e8e8f9;
    padding: 5px 5px;
    width: 100px;
    margin-bottom: 8px;
    font-size: 12px;
    box-shadow: 0px 0.5px 0.5px 0px rgba(0,0,0,0.2);
}

.accounts_customer_id_confirmed, .accounts_customer_contact_id_confirmed, .agent_contact_id_confirmed, .agent_id_confirmed, .agent_branch_id_confirmed {
    color: red;
    float: left;
    margin-left: -20px;
}
    .accounts_customer_id_confirmed.true, .accounts_customer_contact_id_confirmed.true, .agent_contact_id_confirmed.true, .agent_id_confirmed.true, .agent_branch_id_confirmed.true {
        color: green;
    }
.inspection #agent_name_manual, .inspection #agent_contact_name_manual, .inspection #agent_branch_name_manual {
    float: left;
    width: 427px;
}
.inspection #agent_contact_name_manual {
    width: 427px;
    float: left;
}

.inspection .btn-simple.view-agent-details-btn {
    color: #5d93fb;
}

.inspection .btn-simple.view-invoice-btn, .inspection #view_or_create_customer_btn_img.fas.fa-arrow-circle-up {
    color: #36ac2c;
}

.btn-simple i.unverified {
    color: #e61313;
    font-weight: 500;
    margin-left: -1px;
}

.inspection .btn-simple.email-invoice-btn {
    color: #5d93fb;
}

.inspection .btn-simple.invoice-paid-status-btn {
    color: #60973b;
}

.inspection .btn-simple.inactive {
    color: lightgrey;
}

.inspection .btn-simple.create-invoice {
    font-weight: 400;
    margin-left: 5px;
    vertical-align: middle;
    width: 18px;
    height: 18px;
}

.inspection .btn-simple.create-invoice i {
    font-weight: 400;
    position: relative;
    left: -3px;
    top: -5.5px;
}



.inspection .report-upload-status, .inspection .attachments-upload-status {
    color: #aaa7a7;
    font-size: 18px;
}


.inspection .upload-status {
    color: gray;
    font-weight: 400;
    font-size: 14px;
    margin-left: -5px;
}
    .inspection .upload-status.uploaded {
        margin-left: -7px;
        color: #1fb51a;
    }

    .inspection .upload-status.not-uploaded {
        margin-left: -5px;
        color: red;
    }

    .inspection .upload-status.uploaded.attachments {
        margin-left: -11px;
            
    }

    .inspection .upload-status.not-uploaded.attachments, .inspection .upload-status.attachments {
        margin-left: -7px;
    }

.inspection #id {
    width: 72px;
}

.inspection #source_name {
    width: 80px;
    float: left;
}
.spinner-border {
    margin-top: 50px; /* Report loading spinner*/
}

.btn-spinner {
    display: inline-block;
    border: 2px solid #f3f3f3; /* Light grey */
    border-top: 2px solid #3498db; /* Blue */
    border-radius: 50%;
    top: -1px !important;
    width: 15px;
    height: 15px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* =================== */
/* TEMPLATES */
/* =================== */
table.templates-table td {
    padding: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100px;
}
table.templates-table td.wrap {
    white-space:normal;
}

.template-INV {
    color: darkred !important;
}

.template-ICI {
    color: darkblue !important;
}

.template-CI\+CO {
    color: darkmagenta !important;
}

.templates td.template-name {
    width: 350px;
    min-width: 280px;
}

.templates td.template-type {
    width: 80px;
    min-width: 40px;
}

.templates td.template-beds {
    width: 80px;
    min-width: 40px;
}

.templates td.template-furn {
    width: 80px;
    min-width: 40px;
}

.templates td.template-clerks {
    width: 180px;
    min-width: 120px;
}

/* =================== */
/* TABLES */
/* =================== */
.table-hover tbody tr:hover td, .table-hover tbody tr:hover th {
    background-color: #dfefff;
}

.clickable-cell {
    cursor: pointer;
}

td.center, th.center {
    text-align: center;
}

td.complete {
    color: #53a453;
}
td.query {
    color: #b5b356;
}
td.cancelled {
    color: darkgrey;
}
td.needs-processing {
    color: royalblue;
}
td.overdue {
    color: red;
}
td.overdue-not-uploaded {
    color: #a40000;
}
td.now-due {
    color: #120e8c;
}
td.needs-sending {
    color: #9802ae;
}
td.account-disabled {
    color: darkgray;
}

.table thead th {
    padding: 12px 8px;
    background-color: white;
}
.table tr {
    background-color: white;
}

td.grey-text{
    color: grey;
}
.container {
    position: relative;
}

td.quick-links {
    width: 130px;
}
.quick-links a, .quick-links i {
    margin: 0px 5px;
}

td.job-status {
    width: 86px;
    min-width: 76px;
}
td.job-date {
    width: 110px;
    min-width: 65px;
}
td.job-time {
    width: 65px;
    min-width: 44px;
}
td.address {
    max-width: 150px;
    min-width: 150px;
}
td.current-status {
    max-width: 140px;
    min-width: 100px;
}
td.free-text {
    max-width: 140px;
    min-width: 100px;
}
td.inv-date {
    width: 75px;
    min-width: 58px;
}
td.contains-inv {
    width: 45px;
    min-width: 35px;
}
td.invoice-no {
    max-width: 65px;
    min-width: 40px;
}
td.worksorder {
    max-width: 50px;
    min-width: 40px;
}
td.report-src-name {
    width: 80px;
    min-width: 70px;
}
td.report-type-name {
    width: 100px;
    min-width: 90px;
}
td.sync-status-name {
    width: 90px;
    min-width: 80px;
}
td.upload-time {
    width: 80px;
    min-width: 70px;
}
td.uploads-status {
    width: 65px;
    min-width: 44px;
}
td.job-code {
    width: 65px;
    min-width: 55px;
}
td.clerk-name {
    width: 120px;
    min-width: 80px;
}
td.paid {
    width: 75px;
    min-width: 65px;
}
td.audio-status, td.soc-status {
    width: 45px;
}






/* =================== */
/* VIEW PROPERTY */
/* =================== */
.property #previous_jobs {
    width: 240px;
    float: left;
    margin-right: 10px;
}
.property #beds {
    width: 100px;
}


/* =================== */
/* VIEW AGENT */
/* =================== */
.agent #report_address {
    float: left;
}

.agent #edit-address-btn {
    width: 35px;
    margin-left: -83px;
    margin-top: 5px;
    line-height: 1;
    padding-bottom: 6px;
}

.agent #edit-branch-report-emails-btn, .agent #edit-agent-report-emails-btn {
    width: 35px;
    margin-left: -40px;
    margin-top: 5px;
    line-height: 1;
    padding-bottom: 6px;
}

.agent #copy-address-btn {
    width: 35px;
    margin-left: 3px;
    margin-top: 5px;
    line-height: 1;
    padding-bottom: 6px;
}

.agent .has-left {
    color: lightgrey;
}


/* =================== */
/* POs */
/* =================== */
.viewPOs .job-not-found {
    color:red;
}

#po-list.invalid, #invoice-clerk.invalid {
    border: 2px solid red;
}

#jobs-on-invoice-count.invalid {
    color: red;
}

#jobs-on-invoice-count.valid {
    color: green;
}

td.table-total {
    background-color: white;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    height: 20px;
}


/* =================== */
/* Users */
/* =================== */
td.api, .table th.api {
    background-color: #f2f2f2;
}



/* =================== */
/* PREDICTIVE TEXT */
/* =================== */
.predictive-text td {
    padding: 4px 5px 4px 5px;
    line-height: 1;
    vertical-align: middle;
}
.predictive-text th.col1 {
    width: 400px;
    font-size: 14px;
}
.predictive-text th.col2, .predictive-text th.col3, .predictive-text th.col4, .predictive-text th.col5, .predictive-text th.col6 {
    width: 160px;
    text-align: center;
    font-size: 14px;
}
.predictive-text td.col2, .predictive-text td.col3, .predictive-text td.col4, .predictive-text td.col5, .predictive-text td.col6 {
    text-align: center;
}

input[type=text].predictive-text {
    border: none;
    width: 100%;
    font-size: 13px;
    background: transparent;
}

input[type=checkbox].predictive-text {
    background: green;
}

/* =================== */
/* CALENDAR */
/* =================== */
.agent #select_branch {
    width: 300px;
    padding-bottom: 3px;
    padding-top: 2px;
    font-weight: 600;
}

.calendar-closer {
    float: right;
    font-size: 16px;    
}

    .calendar-closer i {
        cursor: pointer;
        padding: 5px;
    }

/* =================== */
/* PROPERTY NOTES MODAL  */
/* =================== */
#propertyNotesModal .modal-dialog {
    max-width: 1000px;
}
#propertyNotesModal .modal-body {
    padding-bottom: 40px;
}

/* =================== */
/* PURCHSE ORDERS MODAL  */
/* =================== */
#acceptInvoiceModalDialog .row {
    margin-bottom: 5px;
}

/* =================== */
/* QUOTE MODAL TOOL */
/* =================== */
#quoteModal .quote-table {
    margin-top: 30px;
    font-size: 13px;
}
    #quoteModal .quote-table th {
        border: 0.5px solid black;
        width: 80px;
        text-align: center;
    }

    #quoteModal .quote-table .quote-cell {
        border: 0.5px solid black;
        text-align: center;
        padding: 2px 6px;
        cursor: pointer;
    }
        #quoteModal .quote-table .quote-cell:hover {
            color: red;
        }
        #quoteModal .quote-table .quote-cell:active {
            opacity: 0.2;
        }

    #quoteModal .quote-table .quote-type-cell {
        border: 0.5px solid black;
        padding: 2px 6px;
    }

#quoteModal .show-vat {
    margin-top: 10px;
    font-size: 14px;
}

#quoteModal .form-control-sm, .quote-form .form-select-sm, #quoteModal .form-select .form-control-sm .input-sm {
    font-size: 14px;
    padding: 5px 5px;
    line-height: 1.2;
}

#quoteModal .property_address-dropdown-arrow {
    font-weight: 400;
    margin-left: -23px;
    margin-top: 6px;
    float: left;
}


/* =================== */
/* CALENDAR */
/* =================== */

.ui-datepicker-current-day .ui-state-active {
    background: #5180ca;
    border: 1px solid #2456a6;
}

.ui-datepicker-current-day .ui-state-highlight {
    background: #fffa90;
    border: 1px solid #dad55e;
}

.calendar .tui-full-calendar-time-schedule-content {
    border-left-width: 6px;
}

/* Two month date picker*/
.ui-datepicker-inline.ui-datepicker.ui-widget.ui-widget-content.ui-helper-clearfix.ui-corner-all.ui-datepicker-multi-3.ui-datepicker-multi {
    width: 225px !important;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
    width: 100%;
}

.calendar .hasDatepicker {
    padding: 10px 2px;
}

.calendar .modal-backdrop {
    background-color: rgba(0,0,0,.0001) !important;
}

.calendar #jobInfoModal .modal-dialog, .calendar #allDayModal .modal-dialog {
    position: absolute;
    width: 400px;
}

.calendar #jobInfoModal .modal-dialog.right:after {
    left: -7px;
    top: 45%;
    height: 16px;
    width: 16px;
    border: 1.5px solid rgba(0,0,0,.2);
    border-right: none;
    border-top: none;
    content: " ";
    background-color: white;
    position: absolute;
    pointer-events: none;
    transform: rotate(45deg);
}
    .calendar #jobInfoModal .modal-dialog.right .modal-footer {
        justify-content: flex-start;
    }

.calendar #jobInfoModal .modal-dialog.left:after {
    left: 391px;
    top: 45%;
    height: 16px;
    width: 16px;
    border: 1.5px solid rgba(0,0,0,.2);
    border-left: none;
    border-bottom: none;
    content: " ";
    background-color: white;
    position: absolute;
    pointer-events: none;
    transform: rotate(45deg);
}
    .calendar #jobInfoModal .modal-dialog.left .modal-footer {
        justify-content: flex-end;
    }
    

.calendar .modal-header {
    padding: 10px 10px 10px 15px;
}

.calendar #allDayModal .modal-dialog {

    left: 40%;
    top: 30%;
}

#allDayModal select {
    padding-left: 4px !important;
    margin-bottom: 10px;
}

.tui-full-calendar-time-resize-handle.handle-x {
    display: none;
}

.calendar i.copy-address {
    cursor: pointer;
}
    .calendar i.copy-address:hover {
        opacity: 0.4;
    }
    .calendar i.copy-address:active {
        opacity: 0.2;
    }



.modal-dialog.email {
    max-width:1000px;
}

.modal-dialog .dragable_touch {
    cursor: move;
}

.modal-content.email{
    height: 760px;
}

#email-body{
    margin-top: 5px;
}

.email-row {
    margin: 10px;
    height: 30px;
}

.email-row-label {
    float: left;
    width: 55px;
}

#emailer-wrapper, .modal-content.email {
    background-color: aliceblue;
}

#email-attachments-container {
    width: 880px;
    height: 30px;
    background-color: #ececec;
    padding: 0px 5px;
    margin-left: 10px;
    text-align: left;
    float: left;
}

.attached-files, .attached-library-docs {
    font-size: 12px;
    padding: 2px 5px;
    float: left;
    border: 1px solid #b3b3b3;
    border-radius: 4px;
    margin: 3px 10px 0px 0px;
}

.remove-attachment-button {
    cursor: pointer;
    margin-left: 3px;
}
.remove-attachment-button:hover {
    color: red;
}


#email-modal-minimised {
    display: none;
    position: fixed;
    top: 95%;
    margin-left: 10px;
    width: 900px;
    background: #e49c3f;
    border-radius: 20px;
    box-shadow: 2px 2px #bbb;
    z-index: 10000;
}

.resume-email {
    padding: 3px 20px;
    color: white;
    cursor: pointer;
    font-size: 13px;
}

/*Slide Notification*/
.visible {
    animation: movein 0.5s ease forwards, moveout 0.5s 3s ease forwards;
}

#success-alert {
    width: 250px;
    height: 50px;
    padding: 5px 20px;
    background: #70c48f;
    color: white;
    border-radius: 3px;
    font-size: 16px;
    display: flex;
    justify-content: left;
    align-items: center;
    position: fixed;
    bottom: 100px;
    left: -250px;
    z-index: 9999999;
}

#paid-alert {
    width: 250px;
    height: 50px;
    padding: 5px 20px;
    background: purple;
    color: white;
    border-radius: 3px;
    font-size: 16px;
    display: flex;
    justify-content: left;
    align-items: center;
    position: fixed;
    bottom: 100px;
    left: -250px;
    z-index: 9999999;
}

@keyframes movein {
    from {
        left: -250px;
    }

    to {
        left: 10px;
    }
}

@keyframes moveout {
    from {
        left: 10px;
    }

    to {
        left: -250px;
    }
}






/* Dropdown Button */
/*.dropbtn {
    background-color: #3498DB;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}*/

    /* Dropdown button on hover & focus */
    /*.dropbtn:hover, .dropbtn:focus {
        background-color: #2980B9;
    }*/

/* The container <div> - needed to position the dropdown content */
/*.dropdown {
    position: relative;
    display: inline-block;
}*/

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 140px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    /* Links inside the dropdown */
    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

    .dropdown-content .option-disabled {
        color: grey;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        /* Change color of dropdown links on hover */
        .dropdown-content a:hover {
            background-color: #ddd
        }


.audio-docx-dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 140px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    /* Links inside the dropdown */
    .audio-docx-dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        /* Change color of dropdown links on hover */
        .audio-dropdown-content a:hover {
            background-color: #ddd
        }


/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
    display: block;
}