@import url('https://fonts.googleapis.com/css?family=Roboto:300,400');

body {
  font-family: 'Roboto', sans-serif;
}
footer {
    margin-left: 11em;
}
.link {
  color: #0066AF;
}
.link a {
  color: #0066AF;
}
.content {
    padding-left: 10%;
    padding-right: 10%;
    margin-bottom: 10px;
}
.content-l {
    padding-left: 20%;
    padding-right: 20%;
    margin-bottom: 10px;
    text-align: left;
}

.HEADER_LOGO {
  color: #0062A8;
  margin-top: 5%;
  margin-bottom: 5%;
  margin-left: 5%;
  font-size: 30px;
  font-family: 'Roboto', sans-serif;
}
.HEADER_LOGO a {
  text-decoration: none;
  color: #0062A8;
}
.NAV {

}

.MAIN_NAV {
  min-height:40px;
  background-color: #0062A8;
  color: #fff;

}
.MAIN_NAV ul {
  list-style: none;
  justify-content: flex-start;
  flex-direction: row;
  align-items: center;
  padding-top: 10px;
}
.MAIN_NAV ul li {
  display: inline;

}
.MAIN_NAV a {
  color: #fff;
  text-decoration: none;
  /*transition: 0.5s;*/
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 5px;
  padding-left: 5px;
}
.MAIN_NAV a:hover {
  background-color: #006FBF;
}

/* Loggedin */
.MAIN_NAV_L {
  min-height:40px;
  background-color: #0062A8;
  color: #fff;
  border-bottom: 2px solid #000;
  border-bottom-width: 4px;

}
.MAIN_NAV_L ul {
  list-style: none;
  justify-content: flex-start;
  flex-direction: row;
  align-items: center;
  padding-top: 15px;
}
.MAIN_NAV_L ul li {
  display: inline;

}
.MAIN_NAV_L a {
  color: #fff;
  text-decoration: none;
  /*transition: 0.5s;*/
  padding-top: 15px;
  padding-bottom: 16px;
  padding-right: 5px;
  padding-left: 5px;
}
.MAIN_NAV_L a:hover {
  background-color: #006FBF;
}
.NAV_LOGGEDIN {
  min-height:25px;
  background-color: #00518C;
  color: #fff;
  font-size: 12px;

}
.NAV_LOGGEDIN ul {
  list-style: none;
  justify-content: flex-start;
  flex-direction: row;
  align-items: center;
  padding-top: 5px;
  margin-top: 0px;
  margin-bottom: 0px;
}
.NAV_LOGGEDIN ul li {
  display: inline;

}
.NAV_LOGGEDIN a {
  color: #fff;
  text-decoration: none;
  /*transition: 0.5s;*/
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 5px;
  padding-left: 5px;
}
.NAV_LOGGEDIN a:hover {
  background-color: #005FA3;
}
/* ResourceList */

.resource_list {
  min-height: 64px;
}
.resource_list_item {
  /*border: 2px solid #0062A8;*/
  transition: 0.3s;
}
.resource_list.non-link {
  color: #000;
}
.resource_list.non-link a {
  color: #000;
}
.resource_list_item:hover {
  /*border: 2px solid #0075C9;*/
}
.resource_list_item hr {
  border: 1px solid #000;
}
.resource_list_item p {
  margin-top: 0px;
  color: #000;
  text-decoration: none;
}
.resource_list_item a {
  color: #0066AF;
  text-decoration: none;
}
.resource_list_item a:hover {
  color: #006EBC;
  text-decoration: none;
}
.resource_list_item small a {
  color: #878787;
  text-decoration: none;
}
.resource_list_item small {
  color: #878787;
  text-decoration: none;
}
.resource_list_item img {
  float: left;
  margin-right: 10px;
}

/* RESOURCE */
.resource_lock {
  color: #818181 !important;
}
.resource_lock:hover {
  color: #3d8f29 !important;
}

/* MODAL */

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
/* Input */
input[type=text]{
  	width: 84%;
	padding: 12px 20px;
	margin: 8px 0;
	display: inline-block;
	border: 1px solid #ccc;
  border-left: 2px solid #0062A8;
	border-radius: 4px;
	box-sizing: border-box;
}
input[type=password]{
  	width: 84%;
	padding: 12px 20px;
	margin: 8px 0;
	display: inline-block;
	border: 1px solid #ccc;
  border-left: 2px solid #0062A8;
	border-radius: 4px;
	box-sizing: border-box;
}
input[type=email]{
  	width: 84%;
	padding: 12px 20px;
	margin: 8px 0;
	display: inline-block;
	border: 1px solid #ccc;
  border-left: 2px solid #0062A8;
	border-radius: 4px;
	box-sizing: border-box;
}
input[type=search]{
  	width: 84%;
	padding: 12px 20px;
	margin: 8px 0;
	display: inline-block;
	border: 1px solid #ccc;
  border-left: 2px solid #0062A8;
	border-radius: 4px;
	box-sizing: border-box;
}
.input-text {
	width: 84%;
	padding: 12px 20px;
	margin: 8px 0;
	display: inline-block;
	border: 1px solid #ccc;
  border-left: 2px solid #0062A8;
	border-radius: 4px;
	box-sizing: border-box;
}
.input-password {
	width: 84%;
	padding: 12px 20px;
	margin: 8px 0;
	display: inline-block;
	border: 1px solid #ccc;
  border-left: 2px solid #0062A8;
	border-radius: 4px;
	box-sizing: border-box;
}

/*

Buttons

*/
.btn-wired{
    border:1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    background-color: rgb(0,0,0,0);
    cursor: pointer;
    padding: 0.65em 1.7em;
    padding-top: 5px;
    padding-bottom: 9px;
}
.w-red{
    border:1px solid #ff0000;
}
.w-blue{
    border:1px solid #00b1ff;
}
.w-yellow{
    border:1px solid #FFFF00;
}
.w-white{
    border:1px solid #fff;
}
.w-green{
    border:1px solid #33cc33;
    color: #33cc33;
}
.w-gray {
    border:1px solid darkgray;
}
.w-disabled{
    border:1px solid darkgray;
    color: darkgray;
    cursor: not-allowed;
}
.w-disabled:hover{
    border:1px solid darkgray;
    background-color: darkgray;
    color: #ffffff;
}
/*

Vorgefertigte Buttons

*/
.button-1 {
  width: 15%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-left: 2px solid #0062A8;
background-color: #ffffff;
border-radius: 4px;
box-sizing: border-box;
text-decoration: none;
color: #0066AF;
}
.button-1:hover {
  width: 15%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-left: 2px solid #026bb6;
background-color: #f4faff;
border-radius: 4px;
box-sizing: border-box;
}

.button-1-red {
  width: 15%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-left: 2px solid #a40000;
background-color: #ffffff;
border-radius: 4px;
box-sizing: border-box;
}
.button-1-red:hover {
  width: 15%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-left: 2px solid #ba0000;
background-color: #fff4f4;
border-radius: 4px;
box-sizing: border-box;
}


.button-1.small {
  width: 12%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-left: 2px solid #0062A8;
background-color: #ffffff;
border-radius: 4px;
box-sizing: border-box;
}
.button-1.small:hover {
  width: 12%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-left: 2px solid #026bb6;
background-color: #f4faff;
border-radius: 4px;
box-sizing: border-box;
}
textarea {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

	width: 100%;
}

/*

Background

*/
.bg-white {
    background-color: #fff;
}
.bg-black {
    background-color: #000;
}
.bg-red {
    background-color: #ff0000;
}
.bg-yellow {
    background-color: #FFFF00;
}
.bg-blue {
    background-color: #00b1ff;
}
.bg-green {
    background-color: #33cc33;
}
.bg-darkgray {
    background-color: #333;
}
.bg-green {
    background-color: darkgray;
}
.bg-gray {
    background-color: darkgray;
}
.bg-white-h:hover {
    background-color: #fff;
}
.bg-black-h:hover {
    background-color: #000;
}
.bg-red-h:hover {
    background-color: #ff0000;
}
.bg-yellow-h:hover {
    background-color: #FFFF00;
}
.bg-blue-h:hover {
    background-color: #00b1ff;
}
.bg-gray-h:hover {
    background-color: darkgray;
}
.bg-green-h:hover {
    background-color: #33cc33;
}
.bg-darkgray-h:hover {
    background-color: #333;
}
.bg-gray-h:hover {
    background-color: darkgray;
}

/*

Color

*/
.white {
    color: #fff;
}
.black {
    color: #000;
}
.red {
    color: #ff0000;
}
.gray {
    color: darkgray;
}
.blue{
    color: #00b1ff;
}
.green{
    color: #33cc33;
}
.darkgray{
    color: #333;
}
.white a {
    color: #fff;
}
.black a {
    color: #000;
}
.red a {
    color: #ff0000;
}
.gray a {
    color: darkgray;
}
.blue a{
    color: #00b1ff;
}
.green a{
    color: #33cc33;
}
.darkgray a{
    color: #333;
}
/*

Hover

*/
.trans {
    transition: all 0.4s ease 0s;
}
.transition {
    transition: all 0.4s ease 0s;
}
.h-blue:hover {
    color: #00b1ff;
}
.h-red:hover {
    color: #ff0000;
}
.h-yellow:hover {
    color: #FFFF00;
}
.h-white:hover {
    color: #fff;
}
.h-green:hover {
    color: #33cc33;
}
.h-gray {
    color: darkgray;
}
.h-darkgray:hover{
    color: #333;
}


/* Resource List Page Nav */
.resources_list_page {

}
.resources_list_page {
  min-height:40px;
  background-color: #0062A8;
  color: #fff;

}
.resources_list_page ul {
  list-style: none;
  justify-content: flex-start;
  flex-direction: row;
  align-items: center;
  padding-top: 10px;
  padding-left: 5px;
}
.resources_list_page ul li {
  display: inline;

}
.disabled {
  cursor: not-allowed;
  color: #5e5e5e;
}
.disabled a {
  cursor: not-allowed;
  color: #5e5e5e;
}
.disabled li {
  cursor: not-allowed;
  color: #5e5e5e;
}
.resources_list_page a {
  color: #fff;
  text-decoration: none;
  /*transition: 0.5s;*/
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 5px;
  padding-left: 5px;
}
.resources_list_page a:hover {
  background-color: #006FBF;
}
.resources_list_page_item.active a {
  background-color: #006FBF;
}
.resources_list_page_item.active  {
  background-color: #006FBF;
}



.resources_list_page_item {

}

.nt {
  text-decoration: none;
}
.nt a {
  text-decoration: none;
}
.resource_item_version {
  font-weight: 100;
  color: #5e5e5e;
}
.resource_desc {
  font-family: 'Roboto', sans-serif;
  background-color: #ffffff;
    overflow-x: auto;
}

.resource_code {
  font-family: 'Roboto', sans-serif;
  overflow: auto;
  height: 50%;
}
.resource_smcode {
  font-family: 'Roboto', sans-serif;
  overflow: auto;
  height: 30%;
}
.resource_xsmcode {
  font-family: 'Roboto', sans-serif;
  overflow: auto;
  height: 10%;
}


/*

Profil

*/
.img-circle {
    border-radius: 50%;
}
.i-1 {
  font-weight: 100;
  color: #5e5e5e;
}

.profil.info.tab.active {
  border: 1px solid #0075C9;
  color: #0062A8;
  border-bottom: none;
  cursor: default;

}
.profil.info.tab {
    border: 1px solid #0075C9;
    color: #0062A8;
    padding: 5px;
    cursor: pointer;
}
/*

Alert

*/


.alert-red.resource{
  background-color: rgba(199, 0, 0, 0.55);
  min-height:30px;
  margin-top: 10px;
  padding-top: 10px;
  padding-left: 10px;
  border-bottom: 3px solid #a60000;
  color: #fff;
}
.alert-red.resource hr {
  color: rgba(175, 1, 1, 0.82);
}
.alert-red.resource h4 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.alert-red {
  background-color: rgb(199, 0, 0);
  min-height:30px;
  margin-top: 10px;
  padding-top: 10px;
  padding-left: 10px;
  border-bottom: 3px solid #a60000;
  color: #fff;
}

.alert-green {
  background-color: rgb(16, 199, 0);
  min-height:30px;
  margin-top: 10px;
  padding-top: 10px;
  padding-left: 10px;
  border-bottom: 3px solid rgb(13, 159, 0);
  color: #fff;
}

.alert-close {
    color: #ffffff;
    float: right;
    padding-right: 10px;
    font-size: 28px;
    font-weight: bold;
}

.alert-close:hover,
.alert-close:focus {
    color: #aaaaaa;
    text-decoration: none;
    cursor: pointer;
}
