  .imageselectdividercell
  {
    width: 0px;
    border-left: 1px solid black;
  }
  
  .imageselectuploadcell
  {
    width: 25%;
  }
  


.LabeledTextInputParagraph
{
}

.LabeledTextInputLabel
{
  color: red;
}

.LabeledTextInputValue
{
  outline: none;
}

im-load-content
{
  width: 100%;
}

input[type="textbox"] {
  color: white;
  font-style: italic;
  border: 0;
  width: 200px;
  padding: 3px;
  border-radius: 4px;
  border-bottom: 1px solid gray;
  background: transparent;
  transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

input[type="textbox"]:focus {  
  border-bottom-color: white;
}


.LabeledTextParagraph
{
}

.LabeledTextValue
{
}

@keyframes hideAnimation
{
  0%   {opacity: 1; display: inline-block;position: initial;visibility: initial;}
  99%  {opacity: 0; display: inline-block;position: initial;visibility: initial;}
  100%  {opacity: 0; display: inline-block;position: absolute;visibility: colapse;}
}

@keyframes showAnimation
{
  0%  {opacity: 0; display: inline-block;position: absolute;visibility: colapse;}
  1%  {opacity: 0; display: inline-block;position: initial;visibility: initial;}
  100%   {opacity: 1; display: inline-block;position: initial;visibility: initial;}
}

.im-guard
{
  display: inline-block;
  opacity: 1;
  #animation-name: showAnimation;
  #animation-duration: 0.5s;  
}

.im-guard-collapsed
{
  visibility: collapse;
  opacity: 0;
  display: inline-block;
  position: absolute;
  #animation-name: hideAnimation;
  #animation-duration: 0.5s;  
}

.im-tabcontrol
{
  display: inline-block;
  width: 500px;
  height: 400px;
#  border: 1px solid black;
}

.im-tabheader
{
  background-color: transparent;
  height: 20px;
  #border-bottom: 2px solid red;
}

.im-tab
{
  display: block;
}

.im-tab:not(.im-tab-selected)
{
  display: block;
  visibility: collapse;
  position: absolute;
  padding: 0px;
}

.im-tab-selected
{
  height: 100%;
  border-radius: 0 0 5px 5px;
  padding: 10px
}

.im-tabpanel
{
  display: block;
  height: calc(100% - 20px);
  border-left: 2px solid black;
  border-right: 2px solid black;
  border-bottom: 2px solid black;
  border-top: 2px solid black;
  border-radius: 0 0 5px 5px;
}

.im-tabheader-button-selected
{
  background-color: white;
}


.im-tabheader-button:first-of-type
{
  border: none;
  border-top: 2px solid black;
  border-left: 2px solid black;
  border-right: 2px solid black;
  border-radius: 5px 5px 0 0;
}

.im-tabheader-button:first-of-type:not(.im-tabheader-button-selected)
{
  background-color: #CCC;
}

.im-tabheader-button
{
  border: none;
  border-top: 2px solid black;
  border-right: 2px solid black;
  border-radius: 5px 5px 0 0;
  font-weight: bold;
}

.im-tabheader-button:not(.im-tabheader-button-selected)
{
  background-color: #CCC;
  font-weight: normal;
}

.im-textinput {
	width: 80%;
	margin: 30px auto;
}

.im-textinput-el {
	border: 0;
	width: 100%;
	height: 40px;
	outline: none;
	display: block;
  background-color: transparent;
	border-bottom: 2px solid #ebebeb;
}

.im-textinput-el:focus + .im-textinput-line {
	width: 100%;
}

.im-textinput-line {
	top: -2px;
	width: 0%;
	height: 2px;
	content: "";
	margin: 0 auto;
	position: relative;
	background: #FF9800;
	transition: width .5s;
}

.button {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    border: solid 1px;
    border-color: #FF9800;
    border-radius: 4px;
    padding: 0 16px;
    min-width: 64px;
    height: 36px;
    vertical-align: middle;
    text-align: center;
    text-overflow: ellipsis;
    text-transform: uppercase;
    color: #FF9800;
    background-color: transparent;
    font-size: 14px;
    font-weight: 500;
    line-height: 34px;
    overflow: hidden;
    outline: none;
    cursor: pointer;
}

.button::-moz-focus-inner {
    border: none;
}

/* Overlay */
.button::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: currentColor;
    opacity: 0;
    transition: opacity 0.2s;
}

/* Ripple */
.button::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    padding: 50%;
    width: 32px;
    height: 32px;
    background-color: currentColor;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1) ;
    transition: opacity 1s, transform 0.5s;
}

/* Hover, Focus */
.button:hover::before {
    opacity: 0.04;
}

.button:focus::before {
    opacity: 0.12;
}

.button:hover:focus::before {
    opacity: 0.16;
}

/* Active */
.button:active::after {
    opacity: 0.16;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0s;
}

/* Disabled */
.button:disabled {
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
    background-color: transparent;
    cursor: initial;
}

.button:disabled::before {
    opacity: 0;
}

.button:disabled::after {
    opacity: 0;
}