/* code inspired by webdevtrick ( https://webdevtrick.com ) */
body {
    background-color:#FFEFD7;
}
.f15pt {
    font-size: 15pt;
}
.test {
    font-size: 24pt;
    background-color:red;
    border-radius: 3px;
    border: 3px solid #000000;
    color: rgb(10, 9, 9);
    padding: 7px; 
    margin-top: 10px;
    visibility: visible;
}
.test:hover {
    background-color: rgb(122, 0, 0);
}
.Ueberschrift {
    font-family: Arial;
    font-size:40px;
    color: black;
    Margin-bottom:20px;
}
select#cryptoAlgo {
    font-size: 18px;
    background-color: #7297B3;
    padding: 10px;
    color: rgb(0, 0, 0);
    margin-left: 152px;
    margin-bottom: 50px;
}
.content {
    background: black;
    padding: 10px;
    font-size: 15pt;
    color:black;
    width: 100%;
}
.voilet3 {
    font-family: Arial;
    background-color: #D6EDFF;
}
.voilet1 {
    font-family: Arial;
    background-color: #7297B3;
}
.voilet2 {
    font-family: Arial;
    background-color:  #D6EDFF;
}
textarea {
    width: 100%;
    min-height: 100px;
}
.eckeys {
    font-family: Arial;
    background-color: #D6EDFF;
    width: 70%;
    margin: auto;
    margin-top: 5px;
    top: 50px;
    position: relative
}
.encrypt {
    font-size: 24pt;
    background-color:#7297B3;
    border-radius: 3px;
    border: 3px solid #000000;
    color: rgb(10, 9, 9);
    padding: 7px; 
    margin-top: 10px;
}
.encrypt:hover {
    background-color:  #4f687a;
}

.center {
    width: 70%;
    margin: auto;
}
#passcode {
    border-radius: 3px;
    padding: 6px;
    border: 0px;
    outline: none;
}
#passcode:focus {
    border: 2px solid #000000;
}
.top-relative {
    top: 50px;
    position: relative;
}
.top-bar {
    width: 100%;
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    background-color:red;
	padding: 5px;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}
.ablock {
	text-decoration: none;
    color:red;
    font-size: 15pt;
}
.h35px {
	height: 35px;
}
.txtbld {
    font-weight: bold;
}
.prb12px {
	position: relative;
	bottom: 10px;
}
.w35px {
	width: 35px;
}


.tooltip { /* Container for our tooltip */
    border: 3px solid black;
    background-color: #7297B3;
    color: black;
    position: relative;
    margin-left:10px;
    display: inline-block;
}

.tooltip .tooltiptext { /* This is for the tooltip text */
    visibility: hidden;
    width: 500px;
    background-color: #D6EDFF;
    color: black;
    text-align: center;
    padding: 10px;
    border: 3px solid black;
    border-radius: 5px;  /* This defines tooltip text position */
    position: absolute;
    z-index: 1;
} 

.tooltip:hover .tooltiptext { /* Makes tooltip text visible when text is hovered on */
   visibility: visible;
}
.nonce {
    visibility: hidden;
}