﻿/*
    codingtool.css v1.1

    N.B: this style is used in icd11codingtool project and in ICD-API project
*/

* {
    box-sizing: border-box;
}

body {
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
    font-family: "Helvetica Neue","Lucida Grande","Segoe UI",Arial,Helvetica,Verdana,sans-serif;
    color: #333;
    font-size: 14px;
    line-height: 1.42857143;
}

.body-content {
    padding-left: 0px;
    padding-right: 0px;
}

input[type=text]::-ms-clear {
    display: none;
}

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}
.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.navbar,
.placeholder {
    height: 67px !important;
}

.navbar {
    position: fixed;
    top: 0;
    background-color: #03038d;
    color: #EEEEEE;
    border: none;
    width: 100%;
}

.navbar h1 {
    font-size: 24px !important;
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 10px;
}

.navbar .navbar-header {
    margin-right: 0;
    margin-left: 0;
}

.navbar .navbar-title {
    line-height: 1.1;
    font-weight: 600;
}

.navbar .navbar-sidetitle {
    vertical-align: baseline;
    margin-left: 10px;
    font-weight: 400;
    font-size: 12px;
}

.navbar .navbar-sidetitle-div {
    border: none;
    font-size: 12px !important;
    display: inline-block;
    font-weight: normal;
    min-width: 300px;
    margin-left: 20px;
    vertical-align: bottom;
}

main {
    padding: 0px !important;
}

#searchbox {
    display: block;
    height: 38px;
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 4px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    width: 600px;
    font-size: 1.2em;
}

#searchbox:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
}

#searchbox[disabled] {
    cursor: not-allowed;
    background-color: #eee;
    opacity: 1;
}

#searchbox::placeholder {
    color: #aea79f;
    opacity: 1;
}

.search-jumbotron {
    margin-bottom: 0;
    height: 110px;
    padding: 30px 15px;
    padding-top: 30px !important;
    background-color: #eee;
    border-radius: 6px;
    position: relative; /* used by class .clear */
    width: 100%;
    float: left;
    min-height: 1px;
}

@media screen and (min-width: 768px) {
    .container .search-jumbotron {
        padding-left: 60px;
        padding-right: 60px;
    }
}
@media screen and (min-width: 768px) {
    .search-jumbotron {
        padding: 48px 0;
        padding-top: 48px;
        padding-right: 0px;
        padding-left: 0px;
    }
}

.search-jumbotron .working {
    float: right;
}

.hide {
    display: none !important;
}

.clear {
    padding: 0;
    position: absolute;
    color: #808080;
    margin-left: 574px;
    top: 38px;
    cursor: pointer;
}


/* RTL text direction */

.navbar-rtl .navbar-header {
    text-align: right;
    margin-right: 20px;
    direction: rtl;
}

.navbar-rtl,
.container-rtl .search-jumbotron #searchbox {
    direction: rtl;
}

.navbar-rtl .navbar-sidetitle-div {
    margin-left: initial;
    margin-right: 20px;
}

.container-rtl .search-jumbotron .clear {
    margin-left: initial;
    margin-right: 574px;
    padding-left: 10px;
}


/* orange beta version */

.navbar-beta {
    background-color: #ff9933;
    border-color: #ff9933;
    color: black;
}

.updatedate {
    cursor: help;
    position: absolute;
    right: 12px;
    top: 40px;
    z-index: 3110;
    color: black;
    font-size: 0.9em;
}


/* ICF version */

.navbar-icf {
    background-color: #c31b24;
    border-color: #c31b24;
    color: white;
}

.navbar-icf .updatedate {
    color: white;
}