/*===========================================
BASE STYLING
=============================================*/
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Roboto', 'Helvetica Neue', Helvetica,Arial, sans-serif;
}

.container-for-editor {
    min-width: 975px;
}

.header, .template, .results {
    background-color: #DBDDDD;
}

/*===========================================
HEADER WITH LOGO AND APP NAME
=============================================*/
.header-logo-section {
    background: linear-gradient(to right, #0097bc, #25c4de);
    padding: 10px;
}

.img-logo-wco {
    height: 35px;
    float: left;
    margin-right: 10px;
}

.header-app-title {
    margin-top: 8px;
    margin-bottom: 5px;
    font-weight: bold;
    color: white;
}

/*===========================================
FORM CONTROLS (BUTTONS, INPUTS)
=============================================*/
#import-file{
    display: inline-block;
    margin-left: 0;
    width: 246px;

}

.button_menu {
    height: 50px;
    width: 100%;
    padding: 7px 10px;
}

button, .btn {
    color: #333;
    cursor: pointer;
    height: 34px;
    font-size: 14px;
    border:none;
    border-bottom: 1px solid #999;
    line-height: 17px;
    border-radius: 2px;
    outline: none;
    font-weight:bold;
    box-shadow: 0 1px 1px 0 rgba(0,0,0,.14),
    0 1px 1px -2px rgba(0,0,0,.2),
    0 1px 1px 0 rgba(0,0,0,.12);
}

button:hover {
    box-shadow: 0 2px 6px $secondary-black-60;
    border: 1px solid #999;
    outline: none;
}

/*hack to fix button alignment in firefox. From:
https://css-tricks.com/snippets/css/css-hacks-targeting-firefox/*/
@-moz-document url-prefix() {
    input.btn {
        text-align: left !important;
        padding: 0;
    }
}

.btn-primary-blue {
        background-color: #0097bc;
        color: white;
        &:hover {
                color: white;
        }
}

.btn-caution {
    color: #de243a;
}


/*.btn-secondary-blue {
        background-color: $secondary-blue;
        color: $white;
        &:hover {
                color: white;
        }
}
.btn-cancel-or-delete {
        background-color: $secondary-black-60;
        color: $white;
        &:hover {
                color: white;
        }
}*/

button:disabled, .btn:disabled {
    color: grey;
    background-color: rgb(221,221,221);
    cursor: not-allowed;
}

.input-save-locally {
    width: 200px;
    border-radius: 2px;
    display: inline-block;
}


/*===========================================
TABS
=============================================*/
.nav-tabs li a {
    height: 36px;
    line-height: 1.1;
    border-radius: 3px 3px 0 0;
    border: 1px solid #ccc;
}

.nav-tabs li a:active, .nav-tabs li a:focus, .nav-tabs li:active a {
    border: 1px solid lightgrey;
    color: #333;
    font-weight: bold;
}

.input_label {
    /*display: inline-block;
    vertical-align: middle;*/
    text-align: right;
    width: 80px;
    color: black;
}​

/*===========================================
TEMPLATE AND RESULTS PANELS (not including tabs)
=============================================*/



.editor {
    border:1px solid lightgrey;
    width:100%;
}

.message-body-panel{
    position: absolute;
    top: 0px;
    bottom: 0px;
    width: 100%;
}

.message-body{
    position: absolute !important;
    top: 0px;
    bottom: 0px;
    width: 100%;
}

.results {
    float: right;
    height: 100%;
    width: 50%;
}
.results_pane {
    width: 100%;
    height: 100%;
    margin: 0px;
}

.tab-pane{
    position: absolute;
    top: 0px;
    bottom: 0px;
    width: 100%;
    background-color: white;
}

.email-template-name {
    padding-left: 10px;
    padding-top: 8px;
    float: left;
    font-weight: bold;
 }

.template_panels, .results_panels {
    position: absolute;
    top: 146px;
    bottom: 0px;
    width: 50%;
    float: left;
}

.template {
    float: left;
    width: 50%;
    height: 100%;
}
.template_tabs, .results_tabs {
    height: 36px;
    width: 100%;
    padding-top: 5px;
    padding-left: 10px;
}

/*===========================================
MODAL
=============================================*/
.modal-content {
   border-radius: 3px;
}

.modal-header {
  font-size: 16px;
  font-weight: bold;
  padding: 25px 25px 10px 25px;
  border: none;
  color: #27292f;
}

.modal-footer {
  padding: 25px;
  border: none;
}

.modal-title {
  font-weight: inherit;
}

.modalCloseIcon {
  color: #27292f;
  float: right;
}

.modal-body {
  padding: 25px;
}

.template-name {
  padding-top: 5px;
  padding-bottom: 5px;
  list-style-type: none;
  cursor: pointer;
}

.template-name:hover{
  background-color: #DBDDDD;
}
