@import url('https://fonts.googleapis.com/css?family=Roboto');

body {
    font-family: 'Roboto', sans-serif !important;
    -ms-overflow-style: none;
}

/** INWENDO_BUTTONS **/

.btn {
	position: relative;
	padding: 0 30px;
    display: inline-block;
    height: 45px;
    line-height: 45px;
    font-size: 12px;
    text-transform: uppercase;
    -webkit-border-radius: 42px;
    -moz-border-radius: 42px;
    border-radius: 42px;
    text-decoration: none;
    letter-spacing: 1px;
    cursor: pointer;
}

.label__imitating__button{
    align-items: flex-start;
    text-align: center;
    cursor: default;
    color: buttontext;
    background-color: buttonface;
    box-sizing: border-box;
}

.button--discard {
    background-color: rgba(0,0,0,.12) !important;
    color: rgba(0,0,0,.26) !important;
}

.button--white {
    background: #fff;
    color: #000;
}

.button--pink {
    background: #E60A6F;
    color: white;
}

.button--transparent {
    color: rgba(0,0,0,.26);
    font-weight: 600;
    font-size: 14px;
}

.button--blue {
    background-color: #1b8bf9;
    color: white;
}

.button--green {
    background-color: rgb(87, 202, 126);
    color: white;
}

.button--disabled {
	background-color: rgba(0,0,0,.12);
    color: rgba(0,0,0,.26);
    font-weight: 600;
}

.button--outline-blue {
    border: 1px solid #1b8bf9;
    border-width: 2px;
    color: #000;
    font-weight: 600;
}

.button--outline-blue:hover {
	background: #1b8bf9;
	color: #fff;

	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.button--blue-shadow {
    -webkit-box-shadow: 4px 6.9px 16px rgba(27,139,249,0.4);
    -moz-box-shadow: 4px 6.9px 16px rgba(27,139,249,0.4);
    box-shadow: 4px 6.9px 16px rgba(27,139,249,0.4);
}

.button--std-shadow {
	box-shadow: 0 1px 2px rgba(43,59,93,.29);
}

		/** INWENDO_TEXT_FIELDS **/
		/* form starting stylings ------------------------------- */
		.tf__group 			  { 
		  position:relative; 
		}

		.tf__check {
			margin: 8px 0px;
    		color: #b5b5b5;
		}

		.textfield__error {
			/*color: #d50000;*/
			color: #F44336;
		    position: absolute;
		    font-size: 12px;
		    margin-top: 3px;
		    display: block;
		}

		.tf__group input 				{
		  font-size: 16px;
		  padding:10px 10px 10px 0px;
		  display:block;
		  width:300px;
      background-color: transparent;
		  border:none;
		  border-bottom: 1px solid rgba(0,0,0,.12);
		}
		.tf__group input:focus 		{ outline:none; }

		/* LABEL ======================================= */
		.tf_label				 {
		  color: #b5b5b5; 
		  font-size: 16px;
		  font-weight:normal;
		  position:absolute;
		  pointer-events:none;
		  left: 5px;
		  top:10px;
		  transition:0.2s ease all; 
		  -moz-transition:0.2s ease all; 
		  -webkit-transition:0.2s ease all;
		}

		/* active state */
		input:focus ~ label, input:valid ~ label 		{
		  top:-20px;
		  font-size:14px;
		  color:#1b8bf9;
		}

		input:focus ~ .tf_labelERR , input:valid ~ .tf_labelERR  		{
		  top:-20px;
		  font-size:14px;
		  color: #F44336 !important;
		}

    .inputERR {
      border-bottom: 1px solid #F44336;
    }

		/* BOTTOM BARS ================================= */
		.barERR 	{ position:relative; display:block; width:100%; }
		.barERR:before, .barERR:after 	{
		  content:'';
		  height: 2px; 
		  width: 0px;
		  bottom: 0px; 
		  position: absolute;
		  background: #F44336; 
		  transition: 0.2s ease all; 
		  -moz-transition: 0.2s ease all; 
		  -webkit-transition: 0.2s ease all;
		}
		.barERR:before {
		  left: 50%;
		}
		.barERR:after {
		  right: 50%; 
		}

		/* active state */
		input:focus ~ .barERR:before, input:focus ~ .barERR:after {
		  width: 50%;
		}

		.bar 	{ position:relative; display:block; width:100%; }
		.bar:before, .bar:after 	{
		  content:'';
		  height: 2px; 
		  width: 0px;
		  bottom: 0px; 
		  position: absolute;
		  background: #1b8bf9; 
		  transition: 0.2s ease all; 
		  -moz-transition: 0.2s ease all; 
		  -webkit-transition: 0.2s ease all;
		}
		.bar:before {
		  left: 50%;
		}
		.bar:after {
		  right: 50%; 
		}

		/* active state */
		input:focus ~ .bar:before, input:focus ~ .bar:after {
		  width: 50%;
		}

		/* ANIMATIONS ================ */
		@-webkit-keyframes inputHighlighter {
			from { background:#5264AE; }
		  to 	{ width:0; background:transparent; }
		}
		@-moz-keyframes inputHighlighter {
			from { background:#5264AE; }
		  to 	{ width:0; background:transparent; }
		}
		@keyframes inputHighlighter {
			from { background:#5264AE; }
		  to 	{ width:0; background:transparent; }
		}

/**INWENDO_TEXTAREA**/

.textarea__chat {
    font-family: 'Roboto', 'Noto', sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    line-height: 24px;
    border-bottom: none !important;
}

.textarea--twolines {
  height: 36px;
}

.textarea__width--100 {
  width: 100% !important;
}

textarea {
    resize: none;
    font-size: 16px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 317px;
    background-color: transparent;
    border-top: none;
    border-right: none;
    border-left: none;
    border-image: initial;
    border-bottom: 1px solid rgba(0, 0, 0, 0.117647);
    margin: 0px;
    /*height 18px * rows*/
}

/* active state */
textarea:focus ~ label, textarea:valid ~ label    {
  top:-20px;
  font-size:14px;
  color:#1b8bf9;
}

.tf__group textarea        {
      font-size: 16px;
      padding:10px 10px 10px 0px;
      display:block;
      width:300px;
      background-color: transparent;
      border:none;
      border-bottom: 1px solid rgba(0,0,0,.12);
    }
.tf__group textarea:focus    { outline:none; }

textarea:focus ~ .bar:before, textarea:focus ~ .bar:after {
      width: 50%;
    }
/** INWENDO_CHECKBOX **/


.checkbox {
  display: inline-block;
  padding: 10px 20px;
  transform: translateZ(0);
}
.checkbox label {
  cursor: pointer;
  padding-left: 0;
}
.checkbox input[type=checkbox] {
  opacity: 0;
  position: absolute;
  margin: 0;
  z-index: -1;
  width: 0;
  height: 0;
  overflow: hidden;
  left: 0;
  pointer-events: none;
}
.checkbox .checkbox-material {
  vertical-align: middle;
  position: relative;
  top: 3px;
}
.checkbox .checkbox-material:before {
  position: absolute;
  left: 7px;
  top: 4px;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  height: 4px;
  width: 4px;
  border-radius: 100%;
  z-index: 1;
  opacity: 0;
  margin: 0;
}
.checkbox .checkbox-material .check {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid;
  border-radius: 2px;
  overflow: hidden;
  z-index: 1;
  box-sizing: border-box;
}
.checkbox .checkbox-material .check:before {
  position: absolute;
  content: "";
  transform: rotate(45deg);
  display: block;
  margin-top: -5px;
  margin-left: 5px;
  width: 0;
  height: 0;
  box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0 inset;
  animation: checkbox-off 0.3s forwards ease-out;
}
.checkbox input[type=checkbox]:focus + .checkbox-material .check:after {
  opacity: 0.2;
}
.checkbox input[type=checkbox]:checked + .checkbox-material .check:before {
  box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
  animation: checkbox-on 0.3s forwards ease-out;
}
.checkbox input[type=checkbox]:not(:checked) + .checkbox-material:before {
  animation: rippleOff 700ms forwards ease-out;
}
.checkbox input[type=checkbox]:checked + .checkbox-material:before {
  animation: rippleOn 700ms forwards ease-out;
}
.checkbox input[type=checkbox]:not(:checked) + .checkbox-material .check:after {
  animation: rippleOff 700ms forwards ease-out;
}
.checkbox input[type=checkbox]:checked + .checkbox-material .check:after {
  animation: rippleOn 700ms forwards ease-out;
}
.checkbox input[type=checkbox][disabled]:not(:checked) ~ .checkbox-material .check:before,
.checkbox input[type=checkbox][disabled] + .circle {
  opacity: 0.5;
}
.checkbox input[type=checkbox][disabled] + .checkbox-material .check:after {
  background-color: rgba(0, 0, 0, 0.84);
  transform: rotate(-45deg);
}

.coloured .checkbox-material .check {
  color: #009688;
  border: 2px solid rgba(0,0,0,.54);
}
.coloured .checkbox-material:before {
  background-color: #009688;
}
.coloured input[type=checkbox]:checked + .checkbox-material .check {
  color: #009688;
  border: 2px solid #009688;
}

@keyframes checkbox-on {
  0% {
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px;
  }
  50% {
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px;
  }
  100% {
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
  }
}
@keyframes checkbox-off {
  0% {
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px, 0 0 0 0 inset;
  }
  25% {
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px, 0 0 0 0 inset;
  }
  50% {
    transform: rotate(45deg);
    margin-top: -5px;
    margin-left: 5px;
    width: 0px;
    height: 0px;
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px, 0 0 0 0 inset;
  }
  51% {
    transform: rotate(0deg);
    margin-top: -2px;
    margin-left: -2px;
    width: 20px;
    height: 20px;
    box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0px 0px 0 10px inset;
  }
  100% {
    transform: rotate(0deg);
    margin-top: -2px;
    margin-left: -2px;
    width: 20px;
    height: 20px;
    box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0px 0px 0 0px inset;
  }
}
@keyframes rippleOn {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: scale(13, 13);
  }
}
@keyframes rippleOff {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: scale(13, 13);
  }
}

/** PAPER MATERIAL **/

.paper-material-1 {
      box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

.paper-material-2 {
      box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.4);
}

.paper-material-3 {
      box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.4);
}

.paper-material-4 {
  box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.4);
}

.paper-material-5 {
      box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.4);
}

/** END PAPER MATERIAL**/

    /** INWENDO_MENU **/

    .submenu {
      left: 320px !important;
      top: -32px !important;
    }

    .menu__item--cascading-divider {
      background: rgba(0,0,0,.12);
      height: 1px;
      margin: 8px 0;
    }

    .width--3x {
          min-width: 192px;
    }

    .width--2x {
          min-width: 128px;
    }

    .width--1k5x {
          min-width: 96px;
    }

    /** Cascading **/

    .menu__item--cascading {
    display: block;
    border: none;
    color: rgba(0,0,0,.87);
    background-color: transparent;
    text-align: left;
    margin: 0;
    padding: 0 24px;
    outline-color: #bdbdbd;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    text-decoration: none;
    cursor: pointer;
    height: 32px;
    line-height: 32px;
    white-space: nowrap;
    /* opacity: 0; */
    transition: opacity .2s cubic-bezier(.4,0,.2,1);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition-delay: 0.00923077s;
    }

    .menu--cascading {
          /*position: absolute;*/
        list-style: none;
        top: 0;
        left: 0;
        height: auto;
        width: auto;
        min-width: 320px;
        padding: 16px 0;
        margin: 0;

        opacity: 0;
        clip: rect(0px 149.422px 0px 149.422px);
        z-index: -1;
    }

    /** DESKTOP END **/

    .menu__container {
        display: block;
        margin: 0;
        padding: 0;
        border: none;
        position: absolute;
        overflow: visible;
        /*height: 0;
        width: 0;
        visibility: hidden;
        z-index: -1;*/
    }



    .menu__outline {
        display: block;
        background: #fff;
        margin: 0;
        padding: 0;
        border: none;
        border-radius: 2px;
        position: absolute;
        top: 0;
        left: 0;
        /*overflow: hidden;*/
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        /*box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);*/
        will-change: transform;
        transition: transform .3s cubic-bezier(.4,0,.2,1),opacity .2s cubic-bezier(.4,0,.2,1);
        transition: transform .3s cubic-bezier(.4,0,.2,1),opacity .2s cubic-bezier(.4,0,.2,1),-webkit-transform .3s cubic-bezier(.4,0,.2,1);
        z-index: -1;
    }

    .dropdown--hover:hover {
        background: rgba(0,0,0,.1);
        cursor: pointer;
    }

    .menu {
          /*position: absolute;*/
        list-style: none;
        top: 0;
        left: 0;
        height: auto;
        width: auto;
        padding: 8px 0;
        margin: 0;

        opacity: 0;
        clip: rect(0px 149.422px 0px 149.422px);
        z-index: -1;
    }

    .menushow {
        opacity: 1;
        clip: rect(0px 149.422px 208px 0px);
        z-index: 999;
    }

    .menu__item {
      display: block;
        border: none;
        color: rgba(0,0,0,.87);
        background-color: transparent;
        text-align: left;
        margin: 0;
        padding: 0 30px;
        outline-color: #bdbdbd;
        position: relative;
        overflow: hidden;
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 0;
        text-decoration: none;
        cursor: pointer;
        height: 48px;
        line-height: 48px;
        white-space: nowrap;
        /*opacity: 0;*/
        transition: opacity .2s cubic-bezier(.4,0,.2,1);
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        transition-delay: 0.00923077s;
    }

    .menu__item--cascading:hover {
        background-color: #eee;
    }

    .menu__item--cascading--disabled {
        color: #bdbdbd;
        background-color: transparent !important;
        cursor: auto;
    }

    .menu__item:hover {
        background-color: #eee;
    }

    .menu__item--disabled {
        color: #bdbdbd;
        background-color: transparent !important;
        cursor: auto;
    }

    .show {
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1);
      z-index: 999;
    }

    .menu--bottom-right {
      -webkit-transform-origin: 100% 0;
      transform-origin: 100% 0;
    }

    .menu--top-left {
      -webkit-transform-origin: 0 100%;
      transform-origin: 0 100%;
   }

    .menu--top-right {
      -webkit-transform-origin: 100% 100%;
      transform-origin: 100% 100%;
    }

    .menu__item-divider {
      border-bottom: 1px solid rgba(0,0,0,.12);
    }

/** INWENDO_TABLE **/

.table {
      position: relative;
    border: 1px solid rgba(0,0,0,.12);
    border-collapse: collapse;
    white-space: nowrap;
    font-size: 13px;
    background-color: #fff;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);
}

.table tbody tr {
    position: relative;
    height: 48px;
    transition-duration: .28s;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-property: background-color;
}

.table__cell {
      position: relative;
    height: 48px;
    border-top: 1px solid rgba(0,0,0,.12);
    border-bottom: 1px solid rgba(0,0,0,.12);
    padding: 22px 18px;
    box-sizing: border-box;
}

/** INWENDO_TOGGLE **/

.toggle__group {
  padding: 15px;
}

.lbl {
  position: relative;
  display: block;
  height: 14px;
  width: 36px;
  border-radius: 14px;
  background: rgba(0,0,0,.4);
  cursor: pointer;
  transition: all .3s ease;
}

.lbl:after {
    position: absolute;
    left: 0px;
    top: -3px;
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fafafa;
    /*box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);*/
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.5);
    content: '';
    transition: all .2s ease;
}

.cbx:checked ~ label {
  background: rgba(0, 150, 136, .5);
}

.cbx:checked ~ label:after {
  left: 16px;
  background: rgb(0, 150, 136);

}
    
.cbx:disabled ~ label {
  background: rgba(189, 189, 189, .5);
  pointer-events: none;
}

.cbx:disabled ~ label:after {
      background: rgb(189, 189, 189);
}
  
.hidden {
  display: none;
}
 

/** DROPDOWN **/

.expand__box {
    z-index: 998;
    width: 192px;
    height: 185px;
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
    will-change: transform;
    /*transition: transform .3s cubic-bezier(.4,0,.2,1),opacity .2s cubic-bezier(.4,0,.2,1);
    transition: transform .3s cubic-bezier(.4,0,.2,1),opacity .2s cubic-bezier(.4,0,.2,1),-webkit-transform .3s cubic-bezier(.4,0,.2,1);*/
}

.expand__box--show {
    opacity: 1;
    transform: scale(1);
    background: #fff;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

.dropdown__menu {
          /*position: absolute;*/
        list-style: none;
        top: 0;
        left: 0;
        height: auto;
        width: auto;
        padding: 0px 0px 16px 0;
        margin: 0;

        opacity: 1;
        clip: rect(0px 149.422px 0px 149.422px);
        z-index: -1;
    }

.dropdown__outline {
        display: block;
        margin: 0;
        padding: 0;
        border: none;
        border-radius: 2px;
        position: absolute;
        top: 0;
        left: 0;
        /*overflow: hidden;*/
        /*opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);*/
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        /*box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);*/
        will-change: transform;
        transition: transform .3s cubic-bezier(.4,0,.2,1),opacity .2s cubic-bezier(.4,0,.2,1);
        transition: transform .3s cubic-bezier(.4,0,.2,1),opacity .2s cubic-bezier(.4,0,.2,1),-webkit-transform .3s cubic-bezier(.4,0,.2,1);
        /*z-index: -1;*/
}

.show--dropdown {
      /*opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1);
      z-index: 999;*/

     /*background: #fff;
     box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);*/
    }

.dropdown__item:hover {
        background-color: #eee;
    }

.dropdown__item{
    display: none;
    border: none;
    color: rgba(0,0,0,.87);
    background-color: transparent;
    text-align: left;
    margin: 0;
    padding: 0 24px;
    outline-color: #bdbdbd;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    text-decoration: none;
    cursor: pointer;
    height: 32px;
    line-height: 32px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity .2s cubic-bezier(.4,0,.2,1);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition-delay: 0.00923077s;
    }

.dropdown__item--display {
  display: block;
  opacity: 1;
}

.dropdown__item--first{
    display: block;
    border: none;
    color: rgba(0,0,0,.87);
    background-color: transparent;
    text-align: left;
    margin: 0;
    padding: 0 16px 0 24px;
    outline-color: #bdbdbd;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    text-decoration: none;
    cursor: pointer;
    height: 56px;
    line-height: 56px;
    white-space: nowrap;
    /*opacity: 0;*/
    transition: opacity .2s cubic-bezier(.4,0,.2,1);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition-delay: 0.00923077s;
}

.dropdown__item--first-focused {
    background: transparent;
    border-bottom: 1px solid rgba(0,0,0,.12);
    margin-bottom: 16px;
}

    .dropdown__item--disabled {
        color: #bdbdbd;
        background-color: transparent !important;
        cursor: auto;
    }

    .dropdown__item-divider {
        border-bottom: 1px solid rgba(0,0,0,.12);
    }

/** END DROPDOWN**/ 

/** RADIO BUTTON **/
  .mdl-radio {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    display: inline-block;
    box-sizing: border-box;
    margin: 0;
    padding-left: 0;
}

.mdl-radio.is-upgraded {
    padding-left: 24px;
    margin: 20px;
}

.mdl-color-text--grey-600 {
    color: #757575 !important;
}

.mdl-radio.is-upgraded .mdl-radio__button {
    position: absolute;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
    -ms-appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: none;
}

.mdl-radio__button {
    line-height: 24px;
}

.mdl-radio__label {
    cursor: pointer;
}

.mdl-radio__outer-circle {
    position: absolute;
    top: 4px;
    left: 0;
    display: inline-block;
    box-sizing: border-box;
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
    border: 2px solid rgba(0,0,0,.54);
    border-radius: 50%;
    z-index: 2;
}

.mdl-radio__inner-circle {
    position: absolute;
    z-index: 1;
    margin: 0;
    top: 8px;
    left: 4px;
    box-sizing: border-box;
    width: 8px;
    height: 8px;
    cursor: pointer;
    transition-duration: .28s;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-property: transform;
    transition-property: transform,-webkit-transform;
    -webkit-transform: scale3d(0,0,0);
    transform: scale3d(0,0,0);
    border-radius: 50%;
    background: #3f51b5;
}

.mdl-radio__ripple-container {
    position: absolute;
    z-index: 2;
    top: -9px;
    left: -13px;
    box-sizing: border-box;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(circle,#fff,#000);
}

.mdl-radio__ripple-container .mdl-ripple {
    background: #3f51b5;
}

.mdl-ripple.is-animating {
    transition: transform .3s cubic-bezier(0,0,.2,1),width .3s cubic-bezier(0,0,.2,1),height .3s cubic-bezier(0,0,.2,1),opacity .6s cubic-bezier(0,0,.2,1);
    transition: transform .3s cubic-bezier(0,0,.2,1),width .3s cubic-bezier(0,0,.2,1),height .3s cubic-bezier(0,0,.2,1),opacity .6s cubic-bezier(0,0,.2,1),-webkit-transform .3s cubic-bezier(0,0,.2,1);
}

.mdl-ripple {
    background: #000;
    border-radius: 50%;
    height: 50px;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 50px;
    overflow: hidden;
}

.mdl-radio.is-checked .mdl-radio__outer-circle {
    border: 2px solid rgb(63,81,181);
}

.mdl-radio.is-checked .mdl-radio__inner-circle {
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
}

.mdl-radio.is-checked .mdl-radio__inner-circle {
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
}

.mdl-ripple.is-visible {
    opacity: .3;
}
/** END RADIO BUTTON **/

/* Individual Controls
 ------------------------------------------------------------- */

.radio {
    display: inline-block;
    cursor: pointer;
    margin: 20px;
}

.radio input {
    position: absolute;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
    -ms-appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: none;
}

.radio input:checked + .outer .inner {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.radio input:checked + .outer {
    border: 2px solid rgb(63,81,181);
}

.radio input:focus + .outer .inner {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    background-color: rgb(63,81,181);
}

.radio .outer {
    height: 12px;
    width: 12px;
    display: block;
    float: left;
    border: 2px solid rgba(0,0,0,.54);
    border-radius: 50%;
    background-color: #fff;
}

.radio .inner {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    height: 8px;
    width: 8px;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    display: block;
    margin: 2px;
    border-radius: 50%;
    background: #3f51b5;
    opacity: 0;
}

/** TEXTEDITOR **/
.pathfill {
   fill: rgba(0,0,0,.87);
    opacity: 0.6;
}

.text__editor {
    background-color: #f1f1f1;
    float: left;
}

.text__editor--tools {
  margin: 8px 0px;
  float: left;
  padding-left: 16px;
  padding-right: 16px;
  /*border-left: 1px solid rgba(0,0,0,.12);*/
}

.text__editor--dropdown {
  float: left;
}

.text__editor--divider {
  float: left;
  width: 1px;
  height: 34px;
  margin: 11px 0;
  background: rgba(0,0,0,.12);
}

/**  END TEXTEDITOR **/

/** RANGE **/



/** RANGE **/


/** LISTS **/

.section__title {
    margin: 8px 33px;
}

.list__body--minwidth265 {
  min-width: 265px;
}

.ticket__item:hover {
  background: antiquewhite;
}

.list__box {
 /* background: antiquewhite;*/
     background: #eaeaea;
}

.display--flex {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.list__item {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    font-family: 'Roboto', 'Noto', sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;

    position: relative;
    min-height: 48px;
    padding: 0px 16px;
}

.list__item--margin {
    margin: 8px 33px;
}

.list__item--spacer {
  height: 30px;
}

.list__item--shadow {
    box-shadow: 0 1px 2px rgba(43,59,93,.29);
    border-radius: 3px;
    background: white;
    margin: 8px 33px;
}

.list__item--upload {
    box-shadow: none;
    background: transparent;
    border: 3px solid #acacac;
    border-style: dashed;
    border-radius: 3px;
    margin: 18px 33px;
}

.list__icon {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: 56px;

}

.list__body {
    width: 230px;
    min-height: 72px;
    overflow: hidden;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex: 1 1 0.000000001px;
    -webkit-flex: 1;
    flex: 1;
    -webkit-flex-basis: 0.000000001px;
    flex-basis: 0.000000001px;
}

.list__body [secondary] {
    font-family: 'Roboto', 'Noto', sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #737373;
}

.list__avatar {
    display: inline-block;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffc107;
}

.list__body--center {
  text-align: center;
}


/** END LISTS**/

/** TAG **/

.dot--grey {
    background: #eeeeee !important;
}

.dot--red {
    background: rgb(229, 73, 58) !important;
}

.dot--green {
      background: rgb(99, 186, 60) !important;
}

.dot__tag {
    /*min-width: 56px !important;*/
    min-width: 112px !important;
    text-align: left !important;
    padding: 0 12px !important;
}

.dot {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    /*background: #1b8bf9;*/
    background: white;
}

.dot__container {
    float: left;
    padding: 10px 10px 10px 0px;
}

.text__color--blue {
    color: #1b8bf9 !important;
}

.text__color--green {
    color: #63ba3c !important;
}

.text__color--red {
    color: #e5493a !important;
}

.tag--minwidth {
  min-width: 83px;
  text-align: center;
}

.float--right {
  float: right;
}

.tag__margin-right {
      margin-right: 18px;
}

.tag--shadow {
    box-shadow: 0 1px 2px rgba(43,59,93,.29);
    margin-left: 8px;

}

.tag {
    position: relative;
    padding: 0 18px;
    display: inline-block;
    height: 28px;
    line-height: 28px;
    font-size: 12px;
    text-transform: uppercase;
    -webkit-border-radius: 42px;
    -moz-border-radius: 42px;
    border-radius: 42px;
    text-decoration: none;
    letter-spacing: 1px;
}

.tag--disabled {
    box-shadow: none;
    background-color: rgba(0,0,0,.12) !important;
    color: rgba(0,0,0,.26);
}

.tag--pink {
    background: -webkit-linear-gradient(45deg, #fc4278, #fa68a3);
}

.tag--wartend {
    margin-right: 12px;
    border-width: 2px;
    font-weight: bold;
    background: #dcdddd;
    background-color: rgba(0,0,0,.12);
    color: rgba(0,0,0,.26);
}

.tag--standard {
    background-color: #1b8bf9;
    color: white;
}

.tag--allANDopen {
    color: rgb(189, 189, 189);
    background: transparent;
    border: 2px solid transparent;
}

.tag--green {
    background: rgb(99, 186, 60);
    color: white;
}

.tag--orange {
    background: rgb(247, 146, 50);
    color: white;
}

.tag--blue {
    background: rgb(75, 174, 232);
    color: white;
}

.tag--red {
    background: rgb(229, 73, 58);
    color: white;
}

.tag--white {
    background-color: white;
    color: rgba(0,0,0,.26);
}

.tag--transparent {
    background-color: transparent;
    color: #bdbdbd;
}

.tag--yellow {
    background: rgb(255, 211, 81);
    color: rgba(0,0,0,.26);
}
/** END TAG **/

/** TABS **/

.chevron__left {
    width: 48px;
    height: 48px;
    padding: 12px;
    margin: 0 4px;
}

.tab__list {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    height: 48px;
    font-size: 14px;
    font-weight: 500;
    overflow: hidden;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
     text-transform: uppercase;
}

.tab__list--style {
    background-color: #0d47a1;
    color: #fff;
}

.tabs__container {
    position: relative;
    height: 100%;
    white-space: nowrap;
    overflow: hidden;
    -ms-flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
}

.tabs__content {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
    height: 100%;
    -moz-flex-basis: auto;
    -ms-flex-basis: auto;
    flex-basis: auto;
}

.tabs__selection {
    position: absolute;
    height: 2px;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffff8d;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    transition: -webkit-transform;
    transition: transform;

    transform: translateX(0%) scaleX(0.322573);
}

.tab {
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
    position: relative;
    padding: 0 12px;
    overflow: hidden;
    cursor: pointer;
    vertical-align: middle;
    font-family: 'Roboto', 'Noto', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.tab__content {
  height: 100%;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transition: opacity 0.1s cubic-bezier(0.4, 0.0, 1, 1);
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
}
/** END TABS **/

/** BADGE **/
.badge__container {
    display: block;
    position: absolute;
    outline: none;
}

.badge {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    font-family: 'Roboto', 'Noto', sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: normal;
    font-size: 11px;
    border-radius: 50%;
    margin-left: 20px;
    margin-bottom: 0px;
    width: 20px;
    height: 20px;
    background-color: #ff4081;
    opacity: 1.0;
    color: white;
}

.badge__text {
    -webkit-font-smoothing: antialiased;
    font-weight: normal;
    font-size: 11px;
    color: white;
}
/** END BADGE **/

/** TICKET LIST ITEM **/

.ticket__time {
  min-height: 0px;
  min-width: 56px;
  min-height: 72px;
  overflow: hidden;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex: 1 1 0.000000001px;
  /* -webkit-flex: 1; */
  /* flex: 1; */
  -webkit-flex-basis: 0.000000001px;
  flex-basis: 0.000000001px;
}

.text__overflow {
    overflow: hidden;
    white-space: nowrap;
    margin-right: 24px;
    text-overflow: ellipsis;
}

.prio {
    width: 40px;
    min-width: 40px;
    height: 40px;
    padding: 8px;
    margin: 0;
    box-shadow: 0 1px 2px rgba(43,59,93,.29);
    border-radius: 50%;
}

.prio--disabled {
    background-color: rgba(0,0,0,.12) !important;
    box-shadow: none;
}

.prio__noshadow {
    box-shadow: none !important;
}

.prio__transparent {
   background: transparent !important;
}

.prio__light--blue {
   background: rgba(27,139,249,.1) !important;
}

.prio__light--red {
    background: rgba(234,68,68,.1) !important;
}

.prio__light--green {
    background: rgba(85,165,87,.1) !important;
}

.prio__light--orange {
    background: rgba(234,125,35,.1) !important;
}

.prio__light--yellow {
    background: rgba(255,211,81,.1) !important;

}
.prio__light--purple {
    background: rgba(171, 71, 188,.1) !important;

}

.prio--high {
  background: white;
}

/*KOMMENTARE*/

.user__img {
    width: 40px;
    min-width: 40px;
    height: 40px;
    /*padding: 8px;*/
    margin: 0;
    background: rgba(0,0,0,.1);
    border-radius: 3px;
}

.user__name {
    font-weight: 900;
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user__function {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #1b8bf9;
    padding-top: 4px;
}

.timestamp {
    max-width: 127px;
    padding-right: 18px;
    color: rgba(0,0,0,.2);
}

.comment__text {
    font-family: 'Roboto', 'Noto', sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    color: #737373;
    word-break: break-word;

        font-weight: 400;
    line-height: 24px;
    font-size: 16px;
    border-bottom: none !important;
}

.comment__attach {
    width: 180px;
    float: left;
    box-shadow: 0 1px 2px rgba(43,59,93,.29);
    border-radius: 50px;
    background: white;
    margin-right: 18px;
    min-height: 34px;
    height: 34px;
    margin-top: 12px;
}

.comment {
      display: block;
    padding-top: 17px;
    padding-left: 17px;
    text-decoration: none;
    animation: fadein 2s;
}

.comment__container {
      margin-left: 55px;
    padding-right: 17px;
}

.comment__attachements__container {
    margin-left: 56px;
    padding-top: 12px;
}

.comment__body {
    padding-left: 18px;
    border-radius: 4px;
    position: relative;
}

.comment__header {
      margin-bottom: 12px;
}

.name__container {
      display: inline-flex;
      margin: 0 50px 0 0;
}

.width--100P {
  width: 100% !important;
}

.display--none {
  display: none;
}

.send__container--fix {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
}

.filter__container--fix {
    position: absolute;
    top: 0px;
    right: 0;
    width: 100%;
}

.material-animated {
    transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.textarea__autosize--fix {
    margin: 10px 10px 10px 0px;
    padding: 0px !important;
    max-height: 192px;
}

.bar__sutosize--fix {
    background: rgba(0,0,0,.12);
    height: 1px;
}

.fab {

    /*
    z-index: 1000;
    position: absolute;
    top: 100px;
    left: 48px;
    */

    z-index: 1000;
    position: absolute !important;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    /*background: #F50057;*/
    background: #1b8bf9;
    border-radius: 50%;
    cursor: pointer;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    display: -webkit-inline-flex;
    display: inline-flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    vertical-align: middle;
    /*background-image: -webkit-linear-gradient(bottom, #ff2c6c, #ff4480);*/
    /*box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0px 0px 16px 0 rgb(27, 139, 249), 0 3px 1px -2px rgba(0, 0, 0, .2);*/
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.4);
}

.message__time {
    margin-left: 8px;
    color: #9e9ea6 ;
    font-size: .75rem;
}

.wrapper{
    height: 100%;
    overflow: hidden;
    background: #fafafa;
}