body {
    margin: 0px;
    font-size: 14pt;
    font-family: 'RobotoMono', monospace;
    background-color: #0F0F0F;
    color: #EEE;
}

#viewDiv {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 0px;
}


#pageHeader {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    text-align: center;
    background-color: #181818;
    height: 64px;
}

#bottomBar {
    background-color: #181818;
    height: 64px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#serviceInfo {
    color: #EEE;
}

div.contentTextContainer {
    text-align: center;
    display: flex;
    justify-content: center;
}

div.contentText {
    max-width: 600px;
    padding: 10px;
    text-align: justify;
}

a {
    color: #3AD;
    text-decoration: none;
}

a:hover {
    color: #38A8D8;
    text-decoration: underline;
}

a.header {
    font-size: 24pt;
    color: #3AD;
    text-decoration: none;
}

a.header:hover {
    color: #3AD;
    text-decoration: none;
}

.fontMono {
    font-family: 'Roboto Mono';
    font-weight: 200;
}

.contentDataParent {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.select-color-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    margin: 10px;
    cursor: pointer;
}

.bottomButtonImage {
    opacity: 0.8;
    width: 48px;
    height: 48px;
}

.bottomButtonImage:hover {
    opacity: 1;
}

html {
    scrollbar-color: #555 #2c2c2c;
    scrollbar-width: auto;
}

/* For WebKit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 20px;
    height: 20px;
}

::-webkit-scrollbar-track {
    background-color: #2c2c2c;
}

::-webkit-scrollbar-thumb {
    background-color: #555;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #888;
}


button.bottomButtons {
    background-color: #00000000;
    color: #aaa;
    font-size: 24pt;
    border: 0px solid #000;
    width: 48px;
    height: 48px;
    cursor: pointer;
    padding: 0px;
}

button.bottomButtons:hover {
    color: #5ee86e;
}

.btn {
    display: inline-block;
    margin: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background-color: rgb(36, 117, 36);
    cursor: pointer;
    color: #FFF;
    background: #00A0E3;
}

.btn:hover {
    color: #FFF;
    background: #50A0E3;
}

input {
    background-color: #222;
    color: #FFF;
    border: 1px solid #666;
    padding: 5px;
    font-size: 14pt;
}

.textPage {
    display: flex;
    flex-direction: column;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
    border-left: 1px solid #66a1ee;
    padding: 6px;
    background-color: #88888808;
}


.code_with_scrilling {
    max-height: 500px;
    overflow: auto;
    border: 1px solid #888;
    padding: 10px;
    max-width: calc(100% - 20px);
}

h1 {
    font-size: 20pt;
}

h2 {
    font-size: 18pt;
    color: #3ad;
}



#cookie_notification{
  display: none;
  justify-content: space-between;
  align-items: flex-end;
  position: fixed;
  bottom: 5px;
  right: 5px;
  width: 390px;
  max-width: 90%;
  padding: 25px;
  background-color: #111111;
  border-color: rgb(0, 136, 41);
  border-radius: 4px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
  border: 1px solid rgb(0, 136, 41);
}

#cookie_notification div{
  margin: 0;
  font-size: 12pt;
  text-align: left;
  color: #FFFFFF;
}


@media (min-width: 576px){
  #cookie_notification.show{
    display: flex;
  }
  .cookie_accept{
    margin: 0 0 0 25px;
	min-width: 120px;
	max-width: 120px;
	min-height: 70px;
	max-height: 70px;
	color: #0A0;
	background-color: #111;
	border: 1px solid rgb(0, 136, 41);
	border-radius: 4px;
    cursor: pointer;
  }
  .cookie_accept:hover{
	background-color: #020;
  }
}

@media (max-width: 575px){
  #cookie_notification.show{
    display: block;
    text-align: left;
  }
  .cookie_accept{
    margin: 10px 0 0 0;
	min-width: 120px;
	max-width: 120px;
	min-height: 70px;
	max-height: 70px;
    color: #0A0;
	background-color: #111;
	border: 1px solid rgb(0, 136, 41);
	border-radius: 4px;
    cursor: pointer;
  }
  .cookie_accept:hover{
	background-color: #020;
  }
}

.bottom_columns {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
}

.bottom_list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
}

.bottom_item {
    margin-right: 25px;
}

.bottom_item:last-child {
    margin-right: 0;
}

.bottom_item_copyright {
    font-size: 12px;
    color: #777777;
    flex-grow: 1;
    text-align: right;
}

.bottom_link {
    font-size: 14px;
    color: #999999;
    text-decoration: none;
}

.bottom_link:hover, .bottom_link:focus, .bottom_link:active {
    opacity: .75;
}


.wrapper {
    max-width: 1000px;
    margin: 0 auto;
}


table.usual {
    border: 1px solid #555;
    border-collapse: collapse;
}

table.usual th, table.usual td {
    border: 1px solid #555;
    padding: 8px;
    text-align: left;
}
