html, body {
    font: 16px 'Raleway', 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	/* background-color: #ddd; */
}

#install-button {
  visibility: hidden;
  position: fixed;
  color: #FF8340;
  /* width: 30px; */
  cursor: pointer;
  top: 14px;
  right: 80px;
  z-index: 99999999;
  width: 120px;
}

#page-container {
	position: relative;
	padding-bottom: 60px;
	min-height: 100vh;
}

#code, #result {
  position: relative;
  width: 100%;
  height: 400px;
  border-style: solid;
  border-width: thin;
  font-size: 1.1em;
}

#code {
  border-radius: 8px;
	margin: 1em auto;
	white-space: pre-wrap;
  background-color: #fff;
  border: 1px solid #888;
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
}

[placeholder]:empty::before {
  content: attr(placeholder);
  color: #555; 
}
[placeholder]:empty:focus::before {
  content: "";
}

.list-group-item:hover {
    background-color: #3e9cc7;
}

#transformResult {
    position: relative;
    width: 100%;
    height: 600px;
}

.detailText {
 margin-top: 15px;
}

header {
    margin-top: 60px;
}
header h1 {
    width: 100%;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    /* color: #fff; */
    -webkit-text-rendering: optimizeLegibility;
    -moz-text-rendering: optimizeLegibility;
    text-rendering: optimizeLegibility;
}

.info {
	z-index: 9999;
	position: absolute;
    top: 3px;
    left: 10px;
}

.resize {
	z-index: 9999;
	position: absolute;
    top: 3px;
    right: 10px;
    cursor:pointer;
    color: #fff;
}
.flipHoriz {
	-moz-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
	filter: FlipH;
	-ms-filter: "FlipH";
}
.linangdata {
	z-index: 9999;
	position: absolute;
	width: 50px;
    top: 3px;
    right: 0px;
    cursor:pointer;
    color: #fff;
}

.save {
	/* color: #2ECC40; */
	color: #3D9970;
	font-weight:bold;
}
.icon {
	font-size: 14px;
	color: #fff;
}

.close {
  /* position: fixed; */
  top: 3px;
  left: 7px;
}

.code-textarea {
	padding-top: 5px;
}
textarea {
   resize: none;
}

#formatter {
	width: 295px; 
	min-width: 295px; 
	font: 14px "Roboto-Regular", Roboto-Regular, Arial, helvetica, sans-serif;
	margin: 0;
	padding: 5px;
}

#formatter.large {
	 width: 100%;
} 

#formatter h1 {
  font-size: 22px;
}
#formatter p {
  font: 14px Arial, Sans-Serif;
}
#formatter a {
  color: black;
  outline: none;
  text-decoration: none;
}
#formatter input:disabled {
  color: #000000;
}
#formatter textarea:disabled {
  color: #000000;
}

#formatterFooter {
  bottom: 5px;
  left: 5px;
  position: absolute;
}
#formatterFooter #linangdata {
  color: #337ab7;
  font-size: medium;
  outline: none;
  text-decoration: underline;
}

@media ( max-width: 621px ) { .adslot_desktop_only { display: none; } }

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
    display: block;
}

audio, canvas, video {
    display: inline-block;
}

img {
    border: none;
    vertical-align: middle;
} 


.clear:before, .clear:after {
    height: 0; 
    content: "";
    font-size: 0;
    display: table;
    line-height: 0;     /* for Opera */
    visibility: hidden;
}

.clear:after {
    clear: both;
}

.btns {
    padding-top: 0;
}

.btns button {
    padding: 2px 8px;
}
#layout > header, .btns {
    /* padding: 15px 0; */
    width: 90%;
}
#layout > header > h1 {
    font-size: 20px;
    margin-bottom: 10px;
}


/* Dropdown styles */
select {

    /* styling */
    background-color: white;
    border: thin solid blue;
    border-radius: 4px;
    display: inline-block;
    font: inherit;
    line-height: 1.5em;
    padding: 0.5em 3.5em 0.5em 1em;
  
    /* reset */
  
    margin: 0;      
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  
  
  /* arrows */
  
  select.classic {
    background-image:
      linear-gradient(45deg, transparent 50%, blue 50%),
      linear-gradient(135deg, blue 50%, transparent 50%),
      linear-gradient(to right, skyblue, skyblue);
    background-position:
      calc(100% - 20px) calc(1em + 2px),
      calc(100% - 15px) calc(1em + 2px),
      100% 0;
    background-size:
      5px 5px,
      5px 5px,
      2.5em 2.5em;
    background-repeat: no-repeat;
  }
  
  select.classic:focus {
    background-image:
      linear-gradient(45deg, white 50%, transparent 50%),
      linear-gradient(135deg, transparent 50%, white 50%),
      linear-gradient(to right, gray, gray);
    background-position:
      calc(100% - 15px) 1em,
      calc(100% - 20px) 1em,
      100% 0;
    background-size:
      5px 5px,
      5px 5px,
      2.5em 2.5em;
    background-repeat: no-repeat;
    border-color: grey;
    outline: 0;
  }
  

  select.round {
    background-image:
      linear-gradient(45deg, transparent 50%, gray 50%),
      linear-gradient(135deg, gray 50%, transparent 50%),
      radial-gradient(#ddd 70%, transparent 72%);
    background-position:
      calc(100% - 20px) calc(1em + 2px),
      calc(100% - 15px) calc(1em + 2px),
      calc(100% - .5em) .5em;
    background-size:
      5px 5px,
      5px 5px,
      1.5em 1.5em;
    background-repeat: no-repeat;
  }
  
  select.round:focus {
    background-image:
      linear-gradient(45deg, white 50%, transparent 50%),
      linear-gradient(135deg, transparent 50%, white 50%),
      radial-gradient(gray 70%, transparent 72%);
    background-position:
      calc(100% - 15px) 1em,
      calc(100% - 20px) 1em,
      calc(100% - .5em) .5em;
    background-size:
      5px 5px,
      5px 5px,
      1.5em 1.5em;
    background-repeat: no-repeat;
    border-color: green;
    outline: 0;
  }
  

  select.minimal {
    background-image:
      linear-gradient(45deg, transparent 50%, gray 50%),
      linear-gradient(135deg, gray 50%, transparent 50%),
      linear-gradient(to right, #ccc, #ccc);
    background-position:
      calc(100% - 20px) calc(1em + 2px),
      calc(100% - 15px) calc(1em + 2px),
      calc(100% - 2.5em) 0.5em;
    background-size:
      5px 5px,
      5px 5px,
      1px 1.5em;
    background-repeat: no-repeat;
  }
  
  select.minimal:focus {
    background-image:
      linear-gradient(45deg, green 50%, transparent 50%),
      linear-gradient(135deg, transparent 50%, green 50%),
      linear-gradient(to right, #ccc, #ccc);
    background-position:
      calc(100% - 15px) 1em,
      calc(100% - 20px) 1em,
      calc(100% - 2.5em) 0.5em;
    background-size:
      5px 5px,
      5px 5px,
      1px 1.5em;
    background-repeat: no-repeat;
    border-color: green;
    outline: 0;
  }
  
  
  select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
  }
  
  
  
