.browser {
  top: -60px;
  width: 0px;
  height: 0px;
  float: right;
  position: relative;
}

/* ---------------------------------------------------------------------------------- Toolbar Settings */
/* Container for columns and the top "" */
.toolbar {
  align-items: center;
justify-content: center;
  display: flex;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  left: auto;
  right: auto;
  top: -33px;
  width: 45%;
  height: 30px;
}
.toolbar-Large {
  align-items: center;
justify-content: center;
  display: flex;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  left: auto;
  right: auto;
  top: -33px;
  border: white solid 1px;
  background-color: #D22B2B;
  height: 30px;

  width: 40%;
  width: calc(40% - 140px);
  width: -moz-calc(40% - 140px);
  width: -webkit-calc(40% - 140px);
}
/* ---------------------------------------------------------------------------------- Toolbar Parts Location */
.left {
  width: 15px;
  height: 100%;
}
.middle {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  width: 90%;
}
.fbr-btn {
  position: relative;
  top: 2px;
  height: fit-content;
  width: 105px;
  display: flex;
  float: right;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
}
.right {
  width: 50px;
  height: 100%;
}
/* ---------------------------------------------------------------------------------- Arrow Buttons */
.internet-buttons {
  position: relative;
  top: -4px;
  font-size: 25px;
  font-weight: bold;
  color: #AEAEAE;
  margin-right: 10px;
}
.int-but-extra {
  position: relative;
  top: -6px;
}
.internet-buttons:hover {
  cursor: pointer;
  color: #FFF;
}
.end-reverse {
  position: relative;
  top: -7px;
  font-size: 26px;
  font-weight: bold;
  color: #666;
  margin-right: 10px;
}
.end-reverse:hover {
  cursor: pointer;
  color: #555;
}

/* ---------------------------------------------------------------------------------- Input Field */
.input-type-text {
  width: 100%;
  width: calc(100% - 35px);
  width: -moz-calc(100% - 35px);
  width: -webkit-calc(100% - 35px);
  border-radius: 3px;
  border: none;
  background-color: white;
  margin-left: 10px;
  height: 25px;
  color: #666;
  padding: 5px;
}
.go {
  top: -1px;
  height: fit-content;
  width: 32px;
  float: left;
}

/* ---------------------------------------------------------------------------------- Drop Down */

.dropdown {
  top: 2px;
  position: relative;
  display: inline-block;
}
.dropbtn {
  background: linear-gradient(to top, #212121, #333);
  color: #AEAEAE;
  padding: 5px 3px 0 3px;
  border: 1px solid #666;
  cursor: pointer;

  position: relative;
  left: -7px;
  width: 24px;
  height: 25px;
  text-align: center;
  display: block;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
}
.dropbtn:hover, .dropbtn:focus {
  color: #FFF;
  background: linear-gradient(to top, #333, #212121);
}
.dd-icon {
  top: -2px;
  position: relative;
  font-size: 25px;
}

.huge {
max-height: 490px;
}
.big {
max-height: 350px;
}
.small{
max-height: 212px;
}

.dropdown-content {
display: none;
position: absolute;
background-color: #f6f6f6;
overflow-y: scroll;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;

margin: auto;
margin-left: 10px;
border: 1px solid #AEAEAE;
}

.regular-dropdown {
top: 35px;
width: 45%;
}
.full-screen-drop {
top: 70px;
width: 47.5%;
}
.full-screen-half {
top: 35px;
width: 47.5%;
}

.dropdown-content a {
color: black;
padding: 8px 16px;
display: block;

height: 35px;
overflow:hidden;
white-space: nowrap;
text-overflow:ellipsis;
}
.dropdown-content a:hover {background-color: #AEAEAE;}

.show {display: block;}

/* ---------------------------------------------------------------------------------- Screen Buttons */
.container-screen-switch-buttons {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-content: flex-start;
  position: relative;
  /*border: 1px solid yellow;*/
  font-size: 10px;font-weight: bolder;
  float: right;
  height: 26px;
  width: 86px;
}
.all-parts-full-screen-switching {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-content: flex-start;
  position: relative;
  /*border: 1px solid red;*/
  float: right;
  height: 28px;
  width: 28px;
}
.half-part-screen-switching {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-content: flex-start;
  position: relative;
  /*border: 1px solid purple;*/
  float: right;
  height: 28px;
}
.task-box-vertical {
  cursor: pointer;
  width: 10px;
  height: 24px;
  background-color: #AEAEAE;
  border-radius: 2px;
  display: block;
}
.task-box-vertical:hover {
  background-color: #FFF;
}
.task-box-horizontal {
  cursor: pointer;
  width: 24px;
  height: 10px;
  background-color: #AEAEAE;
  border-radius: 2px;
  display: block;
}
.task-box-horizontal:hover {
  background-color: #FFF;
}

.task-box {
  cursor: pointer;
  width: 10px;
  height: 10px;
  background-color: #AEAEAE;
  border-radius: 2px;
  display: block;
}
.task-box:hover {
  background-color: #FFF;
}
.top-box-screen-space {
  margin-top: 4px;
}
.left-box-screen-space {
  margin-left: 4px;
}
.right-box-screen-space {
  margin-right: 4px;
}

/* ---------------------------------------------------------------------------------- Page Content */

.content {
  position: relative;
  top: -30px;

  width: 100%;
  height: 100%;;
  height: calc(100% - 35px);
  height: -moz-calc(100% - 35px);
  height: -webkit-calc(100% - 35px);
}

#webframe {
width: 100%;
height: 100%;
resize: both;
overflow: auto;
display: block;
background: #FFF;
border: none;
}
.hide-loading {
visibility: hidden;
display: none;
}
.loading {
position: absolute;
z-index: 1;
top:50%;
left:50%;
transform:translate(-50%,-50%);
width:150px;
height:150px;
background:transparent;
border:5px solid #333;
border-radius:50%;
text-align:center;
line-height:150px;
font-family:sans-serif;
font-size:20px;
color: #333;
letter-spacing:4px;
font-weight: bold;
/*text-transform:uppercase;*/
text-shadow:0px 0px 10px #000;
box-shadow:0 0 20px rgba(0, 0, 0, 0.5);
}

/* loading rotating line */
.loading:before
{
content:'';
position:absolute;
top: 0px;
left: 0px;
width:100%;
height:100%;
border:3px solid #47c2f6;
border-top:3px solid transparent;
border-right:3px solid #47c2f6;
border-left: 3px solid transparent;
border-bottom: 3px solid transparent;
border-radius:50%;
animation:animateC 2s linear infinite;
}
.loading span {
display:block;
position:absolute;
top:calc(50%);
left:50%;
width:50%;
height: 0px;
background: transparent;
transform-origin:left;
animation:animate 2s linear infinite;
}

/* Ball in Orbit */
.loading span:before
{
content:'';
position:absolute;
width:10px;
height:10px;
border-radius:50%;
background: #47c2f6;
box-shadow: 0 0 10px #0087b8;
/*top:-6px;
right:-8px;*/
top:-6px;
right:-6px;
}
@keyframes animateC
{
0%
{
transform:rotate(0deg);
}
100%
{
transform:rotate(360deg);
}
}
@keyframes animate
{
0%
{
transform:rotate(45deg);
}
100%
{
transform:rotate(405deg);
}
}