@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500');
@import url('https://fonts.googleapis.com/css?family=Raleway');

/***********************/
/* General style reset */
/***********************/
html, body {
    height: 100%;
    background-color: #363b46;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #FFF;
    margin: 0px;
}

.content-container {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#5e637b+0,5d6c89+50,363b46+100 */
    background: #5e637b; /* Old browsers */
    background: -moz-linear-gradient(top,  #5e637b 0%, #5d6c89 50%, #363b46 100%); /* FF3.6-15 */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#5e637b), color-stop(50%,#5d6c89), color-stop(100%,#363b46)); /* Chrome4-9,Safari4-5 */
    background: -webkit-linear-gradient(top,  #5e637b 0%,#5d6c89 50%,#363b46 100%); /* Chrome10-25,Safari5.1-6 */
    background: -o-linear-gradient(top,  #5e637b 0%,#5d6c89 50%,#363b46 100%); /* Opera 11.10-11.50 */
    background: -ms-linear-gradient(top,  #5e637b 0%,#5d6c89 50%,#363b46 100%); /* IE10 preview */
    background: linear-gradient(to bottom,  #5e637b 0%,#5d6c89 50%,#363b46 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5e637b', endColorstr='#363b46',GradientType=0 ); /* IE6-9 */
}

h1, h2, h3, h4, h5, h6 {
    margin: 5px 0;
    font-weight: 300;
}

h1 { font-size: 40px; }
h2 { font-size: 24px; }

a,
a:link,
a:visited,
a:active {
    color: #FFF;
    text-decoration: none;
}

a:hover,
a.current {
    color: #A9CAED;
}

/*******************/
/* Navigation Menu */
/*******************/
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 300px;
    height: 70px;
    overflow: hidden;
    background-color: #333333;
    box-shadow: 0 1px 20px #D0D0D0;
    z-index: 100;
}

.nav-container .nav-logo {
    float: left;
    width: 180px;
    height: 70px;
    background-image: url("../img/vizbot_logo.svg");
    background-size: 170px 170px;
    background-repeat: no-repeat;
    background-position: 0px -50px;
}

.nav-container nav {
    width: auto;
    overflow: hidden;
}

.nav-container nav ul {
    float: right;
    margin: 0;
    padding: 0 15px;
    height: 70px;
    list-style-type: none;
}

.nav-container nav ul li {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    padding: 0 10px;
    line-height: 70px;
    font-weight: 500;
}

/*****************/
/* Trial message */
/*****************/
.trial-message {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 12px 10px;
    background-color: #139ae5;
    color: #FFF;
    text-align: center;
    z-index: 100;
}

/*********************/
/* Content container */
/*********************/
.content-container {
    width: 100%;
    min-width: 300px;
    /*max-width: 1280px;*/
    margin: 0 auto;
    padding: 70px 0 40px 0;
}

.robot-logo {
    margin: 0 auto;
    margin-top: 4rem;
    padding-top: 2.25rem;
    width: 200px;
    height: 200px;
    background-image: url("../img/vizbot.svg");
    background-size: 200px auto;
    background-repeat: no-repeat;
}

.robot-logo + .vizbot-form {
    margin-top: 0;
}

/**************************/
/* Form Placeholder Color */
/**************************/
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #ddd;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #ddd;
   opacity: 1;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #ddd;
   opacity: 1;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #ddd;
}

/****************/
/* VIZbot Forms */
/****************/
.vizbot-form {
    margin-top: 80px;
    text-align: center;
}

.vizbot-form form {
    margin: 20px auto;
    width: 325px;
    border: 0;
}

fieldset {
    border: 0;
}

label {
    display: block;
    padding: 10px 0 5px 0;
    width: 100%;
    color: #FFF;
    font-size: 12px;
    font-weight: 500;
    text-align: left;
}

input, select {
    display: inline-block;
    width: 100%;
    height: 35px;
    padding: 0 10px;
    font-size: 16px;
    color: #ACAEAD;
    background-color: #FFF;
    border: 0;
    border-radius: 0;
    border-style: solid;
    box-shadow: none;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
}

select {
    padding: 5px 15px 5px 5px;
    font-size: 14px;
    background-image: url('../img/select-arrow.png');
    background-size: 15px 15px;
    background-repeat: no-repeat;
    background-position: right center;
}

select.read-only {
    background-image: none;
}

input.invalid, select.invalid {
    background-color: #FFE4BF;
}

label.checkbox-wrapper {
    position: relative;
    margin: 0;
    padding: 0;
    line-height: 21px;
}

input[type="checkbox"] {
    position: absolute;
    top: 2px;
    left: 0;
    margin: 0;
    width: 15px;
    height: 15px;
    z-index: 1;
    opacity: 0;
    cursor: pointer;
}

input[type="checkbox"] + label {
    display: inline-block;
    margin: 0;
    padding: 0;
}

input[type="checkbox"] + label:before {
    display: inline-block;
    height: 11px;
    width: 11px;
    line-height: 11px;
    font-size: 15px;
    background-color: transparent;
    color: transparent;
    text-align: center;
}

input[type="checkbox"]:not(:checked) + label:before {
    content: "\002E";
    border: solid 2px #000;
}

input[type="checkbox"]:checked + label:before {
    content: " \2713";
    color: #000;
    border: solid 2px #000;
}

.btn, a.btn {
    display: inline-block;
    width: 250px;
    height: 60px;
    line-height: 60px;
    border: 1px solid #139ae5;
    background-color: #139ae5;
    color: #FFF;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s;
}

a.btn {
    font-weight: 500;
}

.btn:hover {
    background-color: #6686B5;
    color: #FFF;
}

.btn:focus {
    outline: 0;
}

.btn:disabled, .btn.disabled {
    background-color: transparent;
    color: #139ae5;
    cursor: default;
}

.btn.btn-small {
    width: auto;
    min-width: 100px;
    height: 30px;
    line-height: 20px;
}

.block-btn {
    margin: 10px 0;
}

.row-btn {
    display: inline-block;
    vertical-align: top;
    width: 265px;
}

.row-btn .btn {
    margin: 20px 0 15px 0;
}

.row-btn .btn:not(:first-child) {
    margin-left: 10px;
}

.account-admin {
    display: none;
}

.sub-text {
    font-size: 10px;
}

.g-recaptcha {
    padding: 10px;
}

.g-recaptcha > div > div {
    margin: 0 auto;
}

/***********************/
/* VIZbot Report table */
/***********************/
.table-container {
    max-width: 1024px;
    min-width: 300px;
    margin: 0 auto;
}

.table-container.full {
    max-width: 1280px;
    margin: 0 auto;
}

.table-container h1, .table-container h2 {
    text-align: center;
}

.before-table, .after-table {
    margin: 20px 0;
    text-align: left;
}

.before-table:after, .after-table:after {
    content: " ";
    display: block;
    height: 0;
    clear: both;
}

.before-table .btn:not(.add-row), .after-table .btn:not(.add-row) {
    margin-left: 10px;
}

.before-table .btn.right, .after-table .btn.right {
    float: right;
}

.before-table select {
    margin-top: 10px;
}

.after-table .form-container {
    float: right;
}

.after-table .form-container form {
    margin: 0;
    width: auto;
    text-align: right;
}

.after-table .form-container .btn {
    position: relative;
    width: 75px;
}

.after-table .form-container .btn input {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 5;
}

.after-table .form-container .btn div {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 0;
}

.after-table .form-container .btn.upload-file {
    height: 28px;
}

.row-actions {
    display: none;
}

#form-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

#form-table thead {
    background-color: #1D4580;
    color: #FFF;
}

#form-table th {
    padding: 8px 0 8px 10px;
    font-weight: 500;
    text-align: left;
}

#form-table th:first-child {
    padding-left: 0;
}

#form-table th.select-rows,
#form-table th.move,
#form-table th.delete {
    font-size: 12px;
    font-weight: 300;
}

#form-table th input[type="checkbox"] + label:before {
    border-color: #FFF;
}

#form-table th input[type="checkbox"]:checked + label:before {
    color: #FFF;
}

#form-table tbody tr {
    background-color: #FFF;
    font-size: inherit;
}

#form-table tbody tr:hover {
    background-color: #F5F8FD;
}

#form-table tbody tr.highlight {
    background-color: #EEE;
}

#form-table tbody tr,
#form-table tbody tr.highlight {
    transition: all 1s;
}

#form-table tbody tr.vbc-row {
    background-color: #F5F8FD;
    transition: all .2s;
}

#form-table tbody tr.vbc-sub-row {
    background-color: #F5F8FD;
}

#form-table tbody tr.vbc-row input[name="url"] {
    background-color: #FFF;
}

#form-table td {
    border-bottom: 1px solid #eee;
    font-size: inherit;
    text-align: center;
}

#form-table td.url-cell {
    position: relative;
}

#form-table td .vbc-url-select {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 15px;
    height: 35px;
    line-height: 35px;
}

#form-table td .vbc-sub-toggle {
    display: none;
    cursor: pointer;
    transition: all .5s;
}

#form-table td .vbc-sub-toggle.expanded {
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

#form-table td .vbc-sub-toggle .arrow {
    stroke: 0;
    fill: #ACAEAD;
}

#form-table td.move-row {
    border-left: 0;
    border-right: 0;
}

#form-table td.move-row .up,
#form-table td.move-row .down {
    width: 20px;
    height: 20px;
    opacity: 0.15;
    cursor: pointer;
}

#form-table td.move-row .down {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

#form-table tr:first-child td.move-row .up,
#form-table tr:last-child td.move-row .down {
    display: none;
}

#form-table .remove-row {
    cursor: pointer;
}

#form-table input, #form-table select {
    width: 99%;
    height: 35px;
    background-color: transparent;
    font-size: inherit;
}

#form-table select {
    width: 100%;
    cursor: pointer;
}

#form-table input.invalid, #form-table select.invalid {
    background-color: #FFE4BF;
}

#form-table label.checkbox-wrapper,
#form-table label.checkbox-wrapper label {
    text-align: center;
}

#form-table td input[type="checkbox"] + label:before {
    border-color: #ACAEAD;
}

#form-table tfoot {
    display: none;
}

#form-table tr.hide {
    display: none;
}

/*****************/
/* Modal overlay */
/*****************/
.modal-mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1D4580;
    opacity: 0.8;
    z-index: 1000;
}

.loading {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    text-align: center;
    z-index: 1001;
}

.loading .message {
    color: #F1F1FB;
}

.loading > div {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: #F1F1FB;
    border-radius: 100%;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.loading .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.loading .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0) }
    40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

/* TEMP: Site map */
.site-map {
    font-size: 20px;
}

.no-resize {
    resize: none;
}