@font-face {
    font-family: 'Roboto';
	src: url('fonts/roboto-regular.eot');
    src: url('fonts/roboto-regular.eot?#iefix') format('embedded-opentype'),
		url('fonts/roboto-regular.woff2') format('woff2'),
		url('fonts/roboto-regular.woff') format('woff'),
		url('fonts/roboto-regular.ttf') format('truetype'),
		url('fonts/roboto-regular.svg#robotoregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
	src: url('fonts/roboto-medium.eot');
    src: url('fonts/roboto-medium.eot?#iefix') format('embedded-opentype'),
		url('fonts/roboto-medium.woff2') format('woff2'),
		url('fonts/roboto-medium.woff') format('woff'),
		url('fonts/roboto-medium.ttf') format('truetype'),
		url('fonts/roboto-medium.svg#robotomedium') format('svg');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
	src: url('fonts/roboto-bold.eot');
    src: url('fonts/roboto-bold.eot?#iefix') format('embedded-opentype'),
		url('fonts/roboto-bold.woff2') format('woff2'),
		url('fonts/roboto-bold.woff') format('woff'),
		url('fonts/roboto-bold.ttf') format('truetype'),
		url('fonts/roboto-bold.svg#robotobold') format('svg');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
	src: url('fonts/roboto-italic.eot');
    src: url('fonts/roboto-italic.eot?#iefix') format('embedded-opentype'),
		url('fonts/roboto-italic.woff2') format('woff2'),
		url('fonts/roboto-italic.woff') format('woff'),
		url('fonts/roboto-italic.ttf') format('truetype'),
		url('fonts/roboto-italic.svg#robotitalic') format('svg');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
	src: url('fonts/roboto-bolditalic.eot');
    src: url('fonts/roboto-bolditalic.eot?#iefix') format('embedded-opentype'),
		url('fonts/roboto-bolditalic.woff2') format('woff2'),
		url('fonts/roboto-bolditalic.woff') format('woff'),
		url('fonts/roboto-bolditalic.ttf') format('truetype'),
		url('fonts/roboto-bolditalic.svg#robotobold_italic') format('svg');
    font-weight: bold;
    font-style: italic;
}

html {
    font-size: 16px;
	overflow-x: hidden;
    overflow-y: scroll;
	-webkit-text-size-adjust: none;
	-webkit-overflow-scrolling: touch;
}

html, body {
	padding: 0;
	margin: 0;
}

body {
    height: 100%;
    background-color: #515050;
    background-image: url('../images/bg.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    font-family: Roboto, sans-serif;
    color: #fff;
    padding-right: 0 !important; /* Bootstrap modal fix */
}

header {
    box-sizing: border-box;
    padding: 10px 15px;
    border-bottom: 1px solid #515050;
    z-index: 999;
}

main {
    display: block; /* IE fix */
    padding: 1rem 0;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

h5 {
    font-size: 1rem;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
}

select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-image: url('../images/icon-chevron-down.svg');
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 12px auto;
}

/*select:required:valid {
    background-image: url('../images/icon-chevron-down.svg'), url('../images/icon-ok-green.svg');
    background-position: right 10px center, left 10px center;
    padding-left: 32px;
}*/

select > option {
    background-color: #fff;
    color: #000;
}

select.form-control-sm {
    background-size: 12px auto;
}

input[type="checkbox"],
input[type="radio"] {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: rgba(81, 80, 80, 0.75);
    width: 1rem;
    height: 1rem;
    border: 2px solid #9a9a9a;
    border-radius: .25rem;
    outline: none;
}

input[type="checkbox"]:checked {
    background-image: url('../images/icon-ok.svg');
    background-position: center;
    background-repeat: no-repeat;
}

input[type="radio"] {
    border-radius: 50%;
}

input[type="radio"]:checked {
    background-image: url('../images/icon-radio-checked.svg');
    background-position: center;
    background-repeat: no-repeat;
}

input[type="checkbox"]:disabled,
input[type="radio"]:disabled,
.btn.disabled, .btn:disabled {
    opacity: .4;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type="number"] {
    -moz-appearance:textfield; /* Firefox */
}

fieldset  {
    position: relative;
    background-color: #393939;
    padding: 0 1rem 2rem 1rem;
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem;
    margin: 1rem 0 0 0;
}

legend {
    position: relative;
    top: -1.25rem;
    background-color: rgba(57, 57, 57, .75);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: .5rem 1rem;
    margin: 0 -1rem;
    box-sizing: content-box;
    border-bottom: 1px solid #515050;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

fieldset .form-group:last-child {
    margin-bottom: .5rem;
}

/* Hide jQuery Validation error messages */
span.error {
    display: none !important;
}

/* Bootstrap overrides */
.container-fluid {
    max-width: 1200px;
}

.btn {
    font-weight: 500;
    /*text-transform: uppercase;*/
    padding: .25rem .5rem;
}

.btn-sm {
    text-transform: none;
}

.btn-secondary,
.btn-dark {
    color: #74ed6a;
}

.btn-tp {
    background-color: transparent;
}

.btn.icon:before {
    content: "";
    display: inline-block;
    position: relative;
    top: 2px;
    width: 16px;
    height: 16px;
    margin-right: .25rem;
}

.btn.icon-chevron-left-dark:before {
    background-image: url('../images/icon-chevron-left-dark.svg');
}

.form-control {
    background-color: rgba(81, 80, 80, 0.75);
    height: auto;
    padding: .5rem;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: rgba(81, 80, 80, 0.75);
    opacity: 0.4;
}

.form-check-input {
    margin-top: .25rem;
}

.form-check-label {
    font-weight: normal;
    margin-bottom: 0;
}

/*select.form-control:not([size]):not([multiple]) {
    height: auto;
}*/

.table {
    background-color: transparent;
}

.table thead th {
    border-top: none;
    padding-bottom: 0;
}

.table th,
.table thead th,
.table td,
.table tbody td {
    border-color: #515050;
    border-width: 1px;
    padding-left: 0;
    padding-right: 0;
}

.table tbody tr:last-child td,
.table tbody tr:last-child th {
    border-bottom: 1px solid #515050;
}

.table-striped > tbody > tr:nth-child(even) {
    background-color: #393939;
}

.table-striped > tbody > tr:nth-child(odd) {
    background-color: #323232;
}

.table-hover > tbody > tr:hover {
    background-color: #515050;
}

.table-treatments > tbody > tr > td:first-child {

}

.table-treatments .form-check {
    padding-left: 0;
}

.table-treatments .form-check-input {
    margin-top: .05rem !important;
}

.modal-title {
    font-size: 1rem !important;
    margin-bottom: 0 !important;
}
.modal-content {
    background-color: #393939;
}
.modal-header {
    border-bottom: 1px solid #515050;
}
.modal-footer {
    border-top: 1px solid #515050;
}
/* /Bootstrap overrides */

.twitter-typeahead {
    width: 100%;
}

.tt-menu {
    width: 100%;
    background-color: #393939;
    background-color: #fff;
    color: #000;
    border: 2px solid #fff;
    border-top: none;
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem;
    margin-top: -3px;
}

.tt-suggestion {
    padding: .5rem 1rem;
    border-bottom: 1px solid #ddd;
}

.tt-suggestion:hover,
.tt-suggestion.tt-cursor {
    cursor: pointer;
    color: #212529;
    background-color: #74ed6a;
    border-color: #74ed6a;
}

.tt-suggestion small {
    display: block;
    color: #666;
    font-size: 75%;
    margin: 0;
}

/* Fix for input button addon with Typeahead */
.input-group > .twitter-typeahead {
     position: relative;
     -ms-flex: 1 1 auto;
     -webkit-box-flex: 1;
     flex: 1 1 auto;
     width: 1%;
     margin-bottom: 0;
 }
 .input-group > .twitter-typeahead:not(:last-child) {
     border-top-right-radius: 0;
     border-bottom-right-radius: 0;
 }
 .input-group > .twitter-typeahead>.tt-input {
     border-top-right-radius: 0;
     border-bottom-right-radius: 0;
 }
 .form-control.tt-input:focus {
     z-index: 3
 }
/* /Typeahead fix */

.gc-logo {
	width: 300px;
	max-width: 100%;
	height: 63px;
	display: block;
	background-image: url('../images/gekko-logo-green.png');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
}

.gc-content-bg {
    background-color: rgba(57, 57, 57, 0.5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding-bottom: 30px;
}

.gc-icon,
[class*="gc-icon-"] {
    background-repeat: no-repeat;
    background-position: center;
}

.gc-icon-32 {
    width: 32px;
    height: 32px;
}

.gc-icon-24 {
    width: 24px;
    height: 24px;
}

.btn.gc-icon:hover {
    box-shadow: 0 0 0 .2rem rgba(116,237,106,.25);
}

.gc-icon-trash,
.btn.gc-icon-trash:active {
    background-image: url('../images/icon-trash.svg') !important;
}

.gc-icon-info,
.btn.gc-icon-info:active {
    background-image: url('../images/icon-info.svg') !important;
}

.gc-icon-include,
.btn.gc-icon-include:active {
    background-image: url('../images/icon-include.svg') !important;
    display: none;
}

.gc-icon-exclude,
.btn.gc-icon-exclude:active {
    background-image: url('../images/icon-exclude.svg') !important;
}
.bg-green {
	background-color: #000000 !important; /*Changed 15.6.2020 from 00ff00*/
}
.gc-loader {
    position: relative;
    width: 100%;
    min-height: 32px;
    margin: 30px 0;
    z-index: 9999;
}

.gc-loader:after {
    display: block;
    content: "";
    background-image: url('../images/icon-loading.svg');
    background-size: contain;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-animation: spin 1s linear infinite;
    -moz-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

.gc-loader-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(81, 81, 81, 0.75);
    margin: 0;
}

fieldset .gc-loader-overlay {
    top: -1.25rem;
}

.modal .gc-loader-overlay,
.card .gc-loader-overlay {
    background-color: rgba(57, 57, 57, 0.75);
}

.form-group .gc-loader:after {
    margin-top: -2px;
}

.gc-loader-fixed {
    position: fixed;
}

.pos-br {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0 1rem 1rem 0;
}

#symptomsTable td {
    vertical-align: bottom;
    padding: .3rem;
}

.disease {
    position: relative;
    font-size: 14px;
    margin: 1rem 0;
}

.disease .form-check-input {
    margin-top: .25rem;
}

.disease.excluded,
.disease.excluded h2,
.disease.excluded h3,
.disease.excluded h4,
.disease.excluded p {
    opacity: .5;
    text-decoration: line-through;
}

.disease.excluded .gc-icon-include {
    display: inline-block;
}

.disease.excluded .gc-icon-exclude {
    display: none;
}

.disease .form-check-input {
    position: static;
    margin-left: 0;
    margin-right: .5rem;
}

.disease h2 {
    float: left;
    font-size: 1.1rem;
    padding-right: 3.5rem;
    margin: .1rem 0 0 0;
}

.disease h2:hover {
    text-decoration: underline;
    cursor: pointer;
}

.disease h2:before {
    /*content: "\25B6";*/
    content: "";
    display: inline-block;
    width: 1rem;
    height: .9rem;
    background-image: url('../images/icon-chevron-right.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    cursor: pointer;
    margin-right: .25rem;
}

.disease.open h2:before {
    /*content: "\25BC";*/
    background-image: url('../images/icon-chevron-down.svg');
}

.disease h3 {
    font-size: 1rem;
    text-transform: uppercase;
    margin: 1rem 0 0 0;
    font-weight: bold;
}

.disease h4,
.disease h5,
.disease h6 {
    font-size: .9rem;
    font-weight: bold;
    margin-bottom: 0;
}

.disease h4 {
    /*text-transform: uppercase;*/
    font-size: 1rem;
}

.disease h3 + h4 {
    margin-top: 1rem;
}

.disease h4 + table {
    margin-top: .25rem;
}

.disease .table-treatments h4 {
    margin-bottom: 1rem;
}

.disease .collapse,
.disease .collapsing {
    padding: 1rem 0;
    clear: both;
}

.disease p {
    color: #ddd;
}

.disease-symptom-yes:before,
.disease-symptom-no:before {
    content: "";
    display: inline-block;
    width: 2rem;
    height: 1rem;
    background-image: url('../images/icon-ok-green.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
}

.disease-symptom-no:before {
    background-image: url('../images/icon-exclude.svg');
    background-size: 16px 14px;
}

.disease .disease-buttons {
    position: absolute;
    top: 0;
    right: 0;
}

.disease .probability-score {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    color: #000;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.5rem;
    text-align: center;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: .25rem;
}

.initial-dose,
.dose {
    max-width: 5rem;
}

#loginForm {
    max-width: 600px;
    margin: 0 auto;
}

main.gc-dashboard {
    padding-left: 240px;
}

nav.gc-dashboard-nav {
    position: absolute;
    top: 84px;
    left: 0;
    bottom: 0;
    width: 240px;
    height: 100%;
    font-size: 14px;
    padding: 1rem;
    z-index: 9999;
    transition: left 500ms;
}

nav.gc-dashboard-nav.fixed {
    position: fixed;
    top: 0;
}

nav.gc-dashboard-nav > .nav > .nav-item {
    padding: 1rem 0;
}

nav.gc-dashboard-nav .nav-link {
    color: #999;
    line-height: 24px;
    padding: 0;
}

nav.gc-dashboard-nav .nav-link.active {
    color: #fff;
}

nav.gc-dashboard-nav .nav-link:hover {
    color: #74ed6a;
}

[data-icon-before] svg,
[data-icon-after] svg {
    width: 24px;
    height: 24px;
    vertical-align: top;
    margin-right: .5rem;
}

[data-icon-after] svg.svg-after {
    float: right;
    vertical-align: middle;
    margin: 0;
}

nav.gc-dashboard-nav .nav-link[aria-expanded="true"] svg.svg-after {
    transform: rotate(90deg);
}

svg[data-src] {
    fill: currentColor;
}

nav.gc-dashboard-nav .nav-item ul {
    list-style-type: none;
    padding: .25rem 0 0 0;
    margin: 0;
}

nav.gc-dashboard-nav .nav-item ul .nav-link {
    padding: .25rem 0 .25rem 2rem;
}

a.gc-patient-info {
    display: block;
    color: #fff;
    padding: 1rem;
    border-bottom: 1px solid #515050;
}

a.gc-patient-info:first-child {
    border-top: 1px solid #515050;
}

a.gc-patient-info:hover {
    background-color: #515050;
    text-decoration: none;
}

a.gc-patient-info h2 {
    font-size: 1.5rem;
    line-height: 1.5rem;
    color: #74ed6a;
    margin: 0 0 .25rem 0;
}

a.gc-patient-info h2[data-icon-before] svg {
    margin-right: .25rem;
}

a.gc-patient-info p {
    font-size: .9rem;
    margin: 0;
}

.card {
    background-color: transparent;
    height: 100%;
    border: none;
    overflow: hidden;
}

.card-header {
    background-color: rgba(57, 57, 57, .75);
    font-weight: 500;
    text-transform: uppercase;
    padding-bottom: .5rem;
    border-bottom: 1px solid #515050;
}

.card-header[data-icon-before] svg {
    margin-right: .25rem;
}

.card-body {
    background-color: #393939;
}

.gc-dashboard-form {
    max-width: 700px;
    margin: 0 auto;
}

#menuBtn {
    background-color: transparent;
    color: #fff;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    display: none;
}

#menuBtn:hover {
    color: #74ed6a;
}

#menuBtn[data-icon-before] svg {
    width: 48px;
    height: 48px;
    margin: 0;
}

#closeMenuBtn {
    background-color: transparent;
    color: #999;
    padding: 0;
    border: none;
}

#closeMenuBtn:hover {
    color: #74ed6a;
}

#closeMenuBtn[data-icon-before] svg {
    margin: 0;
}

#myProfileDropdown {
    height: 48px;
}

#myProfileDropdown .dropdown-menu {
    margin-top: 12px;
}

#myProfileDropdown .dropdown-menu [data-icon-before] svg,
#myProfileDropdown .dropdown-menu [data-icon-after] svg {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-top: -2px;
}

#myProfileDropdown .dropdown-menu:after {
    display: block;
    content: "";
    position: absolute;
    top: -14px;
    right: 5px;
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 16px solid #fff;
}

#myProfileDropdown .dropdown-menu h2 {
    font-size: 1rem;
    color: #000;
    white-space: nowrap;
    padding: 0 1rem .5rem 1rem;
    border-bottom: 1px solid #eee;
    margin: 0 0 .5rem 0;
}

#myProfileDropdown .dropdown-menu .dropdown-item {
    padding: .25rem 1rem;
}

#myProfileBtn {
    display: inline-block;
    color: #fff;
    line-height: 48px;
}

#myProfileBtn:hover {
    color: #74ed6a;
    text-decoration: none;
}

#myProfileBtn svg {
    width: 48px;
    height: 48px;
    margin: 0;
}

@media (max-width: 767px) {
    #menuBtn {
        display: inline-block;
    }
    main.gc-dashboard {
        padding-left: 0;
        padding-right: 0;
    }
    nav.gc-dashboard-nav {
        left: -100%;
    }
    nav.gc-dashboard-nav.open {
        left: 0;
    }
}

@media (max-width: 575px) {
    .row.buttons .btn {
        display: block;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .gc-logo {
        width: auto;
        height: 40px;
    }
    .gc-logo-dashboard {
        background-position: center;
        width: 300px;
        margin: 0 1rem;
    }
    nav.gc-dashboard-nav {
        position: fixed;
        top: 69px;
        width: 100%;
    }
    .nav-tabs .nav-link {
        font-size: .8rem;
        padding: .25rem .5rem;
    }
    .tt-full-width {
        width: 100% !important;
    }
}

@media (max-width: 374px) {
    .disease h3 {
        float: none;
        clear: left;
        padding-right: 0;
    }
}


@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-ms-keyframes spin {
  0% {
    -ms-transform:: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -ms-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes spin {
    0% {
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(359deg);
        -o-transform: rotate(359deg);
        -webkit-transform: rotate(359deg);
        -ms-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

/* W8 Phone fix */
@-ms-viewport{
	width: device-width;
}
