/* 
 *  This is the default license template.
 *  
 *  File: index.css
 *  Author: EdmundLiu
 *  Copyright (c) 2020 EdmundLiu
 *  
 *  To edit this license information: Press Ctrl+Shift+P and press 'Create new License Template...'.
 */

html,
body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    background: #233747;
    color: #FFF;
}

.cofense-app-container {
    padding: 0;
}

.cofense-loading-panel {
    padding: 25px 20px;
    text-align: center;
}

.cofense-interactive {
    padding: 20px 0;
}

.cofense-text {
    color: #FFF;
    font-size: 16px;
    letter-spacing: 0;
}

.cofense-text-main {
    font-family: Arial, sans-serif;
    font-weight: 400; /*Taken from the previously used Roboto-Regular value*/
    text-align: center;
    padding: 0 10px;
}

.cofense-text-sub {
    font-family: Arial, sans-serif;
    font-weight: 500; /*Taken from the previously used Roboto-Medium value*/
    text-align: center;
    margin-top: 20px;
}

.hidden {
    display: none;
}

.cofense-button {
    font-family: Arial, sans-serif;
    font-weight: 700; /*Taken from the previously used Roboto-Bold value*/
    width: 85%;
    display: table;
    margin: 0 auto;
    margin-top: 30px;
    text-align: center;
    border: none;
    -webkit-box-shadow: 0px 3px 4px #333;
    -moz-box-shadow: 0px 3px 4px #333;
    box-shadow: 0px 3px 4px #333;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    font-size: 13px;
    color: #FFF;
    background: #3079B9;
    padding: 10px 15px;
    letter-spacing: 1;
    line-height: 18px;
    cursor: pointer;
}

.cofense-button:active {
    -webkit-box-shadow: 0 1px 2px #333;
    -moz-box-shadow: 0 1px 2px #333;
    box-shadow: 0 1px 2px #333;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.cofense-checkboxes {
    margin-top: 30px;
}

.cofense-checkbox {
    padding: 10px 20px;
    border-top: 1px solid white;
    background-color: #253E51;
}

.cofense-checkbox:last-child {
    border-bottom: 1px solid white;
}

.cofense-checkbox label {
    font-size: 14px;
    letter-spacing: 0;
    font-family: Arial, sans-serif;
    font-weight: 300; /*Taken from the previously used Roboto-Light value*/
}

.cofense-checkbox span {
    display: inline-block;
    width: 70%;
    vertical-align: middle;
    margin-right: 30px;
}

.cofense-comments-box {
    text-align: center;
    margin-top: 40px;
    padding: 0 20px;
}

.cofense-comments-box textarea {
    width: 100%;
    height: 70px;
}

.cofense-post-report-action-complete-container {
    font-family: Arial, sans-serif;
    font-weight: 700; /*Taken from the previously used Roboto-Bold value*/
    text-align: center;
    padding: 0 10px;
}

.status-text-regular {
    color: #FFF;
}

.status-text-error {
    color: #FFF;
}

.logging {
    font-size: 12px;
    /* These are technically the same, but use both */
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    /* This is the dangerous one in WebKit, as it breaks things wherever */
    word-break: break-all;
    /* Instead use this non-standard one: */
    word-break: break-word;
    /* Adds a hyphen where the word breaks, if supported (No Blink) */
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.logging .error {
    /* no red text for now */
    color: #FFF;
}

.logging .info {
    color: #FFF;
}

.logging .logging-content {
    /* Init to display: none; Slide down to display later */
    display: none;
    overflow-y: auto;
}

.logging .slide-down .title {
    display: inline-block;
    vertical-align: middle;
    width: 90%;
    padding-left: 5px;
    font-weight: bold;
}

.logging .slide-down {
    width: 100%;
    height: 50px;
    background-color: #2F4252;
    border-bottom: 1px solid #1F2D38;
}

.logging .slide-down .sprite {
    width: 3%;
    display: inline-block;
    color: #FFF;
    padding-top: 15px;
}

.logging .slide-down.contracted .sprite:before {
    content: '\25BC';
}

.logging .slide-down.expanded .sprite:before {
    content: '\25B2';
}

.log-trace {
    padding: 20px;
}

.clipboard-area {
    position: fixed;
    bottom: -9000px;
    width: 0;
    height: 0;
    border: none;
}

#btnCopyTrace {
    margin-left: 20px;
}

#error-pane {
    padding: 10px 0;
}

#error-pane .error-title {
    text-align: center;
    font-weight: bold;
    font-size: 1.1em;
}

#error-pane .error-msg {
    display: table;
    margin: 0 auto;
    margin-top: 15px;
    width: 80%;
    margin-bottom: 15px;
}

#error-pane .error-try-list .try-list-component li {
    margin-left: 8px;
}