@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap");
:root {
  --scrollbarWidth: 14px;
  --scrollbarBg: rgba(0, 0, 0, 0.2);
  --scrollbarThumb: rgba(255, 255, 255, 0.1);
}

body, *[data-simplebar] {
  scrollbar-width: var(--scrollbarWidth);
  scrollbar-color: var(--scrollbarThumb) var(--scrollbarBg);
  overflow: overlay;
}

body::-webkit-scrollbar, *[data-simplebar]::-webkit-scrollbar {
  width: var(--scrollbarWidth);
}

body::-webkit-scrollbar-track, *[data-simplebar]::-webkit-scrollbar-track {
  background: var(--scrollbarBg);
}

body::-webkit-scrollbar-thumb, *[data-simplebar]::-webkit-scrollbar-thumb {
  background-color: var(--scrollbarThumb);
  border-radius: 6px;
}

* {
  outline: 0;
  /*backface-visibility: hidden;*/
}

*, *:before, *:after {
  box-sizing: border-box;
}

/*@font-face {
    font-family: 'DIN 1451 Mittelschrift';
    src: url('/Fonts/DIN1451Mittelschrift.eot');
    src: url('/Fonts/DIN1451Mittelschrift.eot?#iefix') format('embedded-opentype'), url('/Fonts/DIN1451Mittelschrift.woff') format('woff');
}*/
html {
  /*box-sizing: border-box;*/
  background-color: #1c1b20;
  /*background-image: url($imagePath + "Grid010.png");*/
  /*background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;*/
}

html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

form {
  height: auto;
  min-height: 100%;
  max-height: 100vh;
}

body, input, textarea, select, h1, h2, h3 {
  margin: 0;
  padding: 0;
  /*font-family: 'DIN 1451 Mittelschrift', Arial;*/
  /*font-family: 'Roboto', sans-serif;*/
  font-family: Lato, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  /*font-weight: 300;*/
  font-weight: 400;
  color: #ffffff;
}

.AllMap {
  display: none;
}

.Canvasses {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 200;
  /*display: none;*/
}

form {
  width: 100%;
}

a {
  text-decoration: none;
  color: rgb(185, 232, 31);
}

input, textarea, select {
  display: block;
  width: 100%;
  background-color: #2f3038;
  color: #ffffff;
  padding: 6px;
  outline: none;
  border: 0;
  border-radius: 4px;
  resize: none;
  font-size: 12px;
  margin-bottom: 20px;
}

textarea {
  height: 100px;
}

h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

hr {
  border: none;
  border-bottom: 1px solid #303a55;
  margin-top: 20px;
  margin-bottom: 20px;
}

p {
  margin: 0;
}

ul {
  margin: 0;
}

.Panels .Button.Grey {
  margin-left: 20px;
  margin-right: 20px;
}

.TextBox {
  position: relative;
  margin-bottom: 10px;
  border-radius: 4px;
  padding: 10px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.TextBox input {
  background-color: #232323;
  /*background-color: #2f3038;*/
  color: #ffffff;
  position: absolute;
  top: 0;
  right: 10px;
  width: 70%;
}

.TextArea {
  position: relative;
  margin-bottom: 20px;
  border-radius: 4px;
  height: 200px;
  background-color: #33343d;
  padding: 8px;
  overflow: hidden;
}

.TextArea textarea {
  position: absolute;
  left: 0;
  top: 31px;
  width: 100%;
  height: 168px;
}

.DropDown {
  position: relative;
  margin-bottom: 10px;
  border-radius: 4px;
  /*background-color: #33343d;*/
  padding: 10px;
  padding-top: 6px;
  padding-bottom: 6px;
  /*border: 2px solid #33343d;*/
}

.DropDown select {
  background-color: #232323;
  /*background-color: #2f3038;*/
  color: #ffffff;
  position: absolute;
  top: 0;
  right: 10px;
  width: 70%;
  padding-top: 5px;
  padding-bottom: 5px;
}

.Panel .TextBox {
  margin-left: 10px;
  margin-right: 10px;
}

.Panel .TextArea {
  margin-left: 20px;
  margin-right: 20px;
}

.Panel .CheckBox {
  margin-left: 10px;
  margin-right: 10px;
}

.Panel .DropDown {
  margin-left: 10px;
  margin-right: 10px;
}

.MapContainer {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 100;
}

.MapContainer .PanZoom {
  display: inline-block;
}

.MapContainer .PanZoom .Map {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-shadow: 0px 6px 28px -10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 6px 28px -10px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 150px 0px rgba(0, 0, 0, 0.75);
  /* border: 10px solid #444c3c; */
  border-radius: 10px;
  overflow: hidden;
}

.MapContainer .PanZoom .Map .DMMap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: opacity 0.2s ease-in-out;
  opacity: 1;
}

.MapContainer .PanZoom .Map .DMMap.Hidden {
  opacity: 0;
}

.MapContainer .PanZoom .Grid {
  /*position: absolute;
  top: 0;
  left: 0;*/
}

.MapContainer .PanZoom .Drawing {
  position: absolute;
  top: 0;
  left: 0;
}

.MapContainer .PanZoom .FogOfWar {
  position: absolute;
  top: 0;
  left: 0;
}

.MapContainer .Brush {
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 5px 1px rgb(255, 255, 255);
  -moz-box-shadow: 0px 0px 5px 1px rgb(255, 255, 255);
  box-shadow: 0px 0px 5px 1px rgb(255, 255, 255);
  display: none;
  z-index: 9999999;
  pointer-events: none;
}

.MapContainer.ShowBrush .Map {
  cursor: crosshair !important;
}

.MapContainer.ShowBrush .Map:hover .Brush {
  display: block;
}

.MapContainer.ShowBrush .Token {
  pointer-events: none !important;
}

.MapContainer.DefineGrid .Map {
  cursor: crosshair !important;
}

.MapContainer.DefineGrid .Map:hover .Brush {
  display: block;
}

.MapContainer.DefineGrid .Token {
  pointer-events: none !important;
}

.Body.Measure .Token {
  pointer-events: none !important;
}

.Body.Measure .MapContainer {
  cursor: crosshair;
}

.DM .Canvasses .FogOfWar {
  opacity: 0.7;
}

.MeasureBox {
  position: absolute;
  z-index: 999999999;
}

.MeasureBox .Line {
  height: 100%;
  width: 100%;
  transform: scale(1.66);
}

.MeasureBox .Line svg {
  position: absolute;
  height: 100%;
  width: 100%;
}

.MeasureBox .Value {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  background-color: rgba(34, 33, 39, 0.9);
  border-radius: 999px;
  padding: 10px;
}

.CharacterFrame .Token.Me:hover, .DM .CharacterFrame .Token:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.CharacterFrame {
  position: absolute;
  top: 0;
  left: 0;
}

/* Non Player Characters */
.CharacterFrame .Token {
  position: absolute;
  box-sizing: border-box;
  /*        display: block;*/
  border-radius: 15%;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  /*margin: 1px;*/
  z-index: 1;
  /*        -webkit-transition: opacity 1.5s ease-in-out;
      -moz-transition: opacity 1.5s ease-in-out;
      transition: opacity 1.5s ease-in-out;
  */
  /*        background-color: rgba(0,0,0,.2);*/
  pointer-events: none;
  display: flex;
  justify-content: center;
  /*backface-visibility: hidden;*/
  width: 100px;
  height: 100px;
  transform-origin: top left;
}

.CharacterFrame .Token:hover {
  z-index: 10;
}

.CharacterFrame .Token:hover .Name {
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 1;
}

.CharacterFrame .Token:hover .DMFrame {
  background-color: rgba(0, 0, 0, 0.9);
  display: block;
}

.CharacterFrame .Token.Me {
  pointer-events: all;
  z-index: 999999;
}

.CharacterFrame .Token .Avatar {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 15%;
  pointer-events: none;
}

.CharacterFrame .Token .Avatar video {
  max-width: 100%;
  max-height: 100%;
}

.CharacterFrame .Token .Avatar.Small {
  position: absolute;
  width: 75%;
  height: 75%;
  left: 13%;
  top: 13%;
  /*transform: translate(-50%, -50%);*/
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 4px;
  pointer-events: none;
}

/*.CharacterFrame .Token .Name {
    position: absolute;
    top: 100%;
    left: 50%;*/
/*margin-top: 5%;*/
/*font-size: 10px;*/
/*font-size: 30%;*/
/*transform: translateX(-50%);
    pointer-events: none;
    opacity: .7;
    background-color: rgba(0, 0, 0, 0.70);
    border-radius: 100px;*/
/*            padding: 5% 15% 5% 15%;*/
/*white-space: nowrap;
    z-index: 3;

    font-size: 13% !important;
    line-height: 150%;
    padding-left: 20%;
    padding-right: 20%;
    padding-top: 5%;
    text-align: center;
}*/
.CharacterFrame .Token .Name {
  position: absolute;
  top: 100%;
  /*            left: 50%;*/
  /* margin-top: 5%; */
  /* font-size: 10px; */
  /* font-size: 30%; */
  /*            transform: translateX(-50%);*/
  pointer-events: none;
  opacity: 0.7;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 100px;
  /* padding: 5% 15% 5% 15%; */
  /* padding: 10%; */
  /* height: 100%; */
  /*            width: 100%;*/
  /* line-height: 10%; */
  /* margin-top: 7%; */
  /*            font-size: 30%;*/
  font-size: 18px;
  white-space: nowrap;
  padding: 5px 10px;
}

.CharacterFrame .Token .ArmorClass {
  color: #ffffff;
  pointer-events: none;
  font-size: 8px;
  padding-top: 8px;
  z-index: 99;
}

.CharacterFrame .Token .ArmorClass:before {
  position: absolute;
  left: 50%;
  top: 5px;
  transform: translateX(-10.5px);
  content: "";
  background-image: url("/Images/Shield.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 20px;
  height: 20px;
  opacity: 0.7;
  z-index: -10;
}

/*        .CharacterFrame .Token:before {
    content: '';
    position: absolute;
    left: -100%;
    top: -100%;
    width: 300%;
    height: 300%;
    border: 1px solid maroon;
    background-color: rgba(191, 14, 14, 0.46);
    z-index: -10000;
    pointer-events: none;
}*/
/*           .CharacterFrame .Token .Name:after {
        content: '';
        position: absolute;
        left: -10%;
        top: 0;
        width: 110%;
        height: 100%;
        z-index: -1;
        background-color: maroon;
    }*/
/*.CharacterFrame .Token .Name span {*/
/* vertical-align: middle; */
/*font-size: 20%;*/
/* display: block; */
/*position: absolute;
        transform: translate(-50%, 5%);*/
/*background-color: #000000db;
        padding: 3% 14% 6% 16%;
        border-radius: 1000px;*/
/* top: 150%; */
/*white-space: nowrap;
    }
    .CharacterFrame .Token .Name span:before {
        content: '';
        position: absolute;
        left: -5%;
        top: -5%;
        width: 110%;
        height: 110%;
        background-color: #000000db;
        border-radius: 1000px;
        z-index: -1;
    }*/
.CharacterFrame .Token .DMFrame {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8px;
  opacity: 0.7;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 6px;
  padding: 4px;
  white-space: nowrap;
  z-index: 3;
  display: none;
  backdrop-filter: blur(3px);
}

.CharacterFrame .Token .DMFrame .Effects div {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  border-radius: 100%;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
  pointer-events: all;
  margin: 3px;
}

.CharacterFrame .Token .DMFrame .Effects .Yellow {
  background-color: #ffbb00;
}

.CharacterFrame .Token .DMFrame .Effects .Green {
  background-color: #15b549;
}

.CharacterFrame .Token .DMFrame .Effects .Red {
  background-color: maroon;
}

.CharacterFrame .Token .DMFrame .Effects .Blue {
  background-color: #0a79b9;
}

.CharacterFrame .Token[conditions*=YellowEffect] .Effects .Yellow {
  opacity: 1;
}

.CharacterFrame .Token[conditions*=GreenEffect] .Effects .Green {
  opacity: 1;
}

.CharacterFrame .Token[conditions*=RedEffect] .Effects .Red {
  opacity: 1;
}

.CharacterFrame .Token[conditions*=BlueEffect] .Effects .Blue {
  opacity: 1;
}

.DM .CharacterFrame .Token, .CharacterFrame .Token.Me {
  pointer-events: all;
}

.CharacterFrame .Token .DMFrame .Conditions div {
  display: inline-block;
  cursor: pointer;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  pointer-events: all;
  margin: 3px;
  opacity: 0.5;
  transition: opacity 0.2s ease-in-out;
}

.CharacterFrame .Token .DMFrame .Conditions .BtnDead {
  background-image: url("/Images/IconSkull.png");
}

.CharacterFrame .Token .DMFrame .Conditions .BtnUnconscious {
  background-image: url("/Images/streamline-icon-interface-weather-moon@140x140.png");
}

.CharacterFrame .Token .DMFrame .Conditions .BtnIsVisible {
  background-image: url("/Images/streamline-icon-view-off@140x140.png");
}

.CharacterFrame .Token .DMFrame .Conditions .BtnInInitiative {
  background-image: url("/Images/streamline-icon-video-game-sword@140x140.png");
}

.CharacterFrame .Token .DMFrame .Conditions .BtnProperties {
  background-image: url("/Images/streamline-icon-interface-setting-cog@140x140.png");
  opacity: 1;
}

.CharacterFrame .Token[conditions*=Dead] .Conditions .BtnDead {
  opacity: 1;
}

.CharacterFrame .Token[conditions*=Unconscious] .Conditions .BtnUnconscious {
  opacity: 1;
}

.CharacterFrame .Token.Hidden .Conditions .BtnIsVisible {
  opacity: 1;
}

.CharacterFrame .Token.InInitiative .Conditions .BtnInInitiative {
  opacity: 1;
}

.DM .CharacterFrame .InInitiative:before {
  content: "";
  width: 50%;
  height: 50%;
  z-index: 999;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-mask-image: url("/Images/streamline-icon-video-game-sword@140x140.png");
  mask-image: url("/Images/streamline-icon-video-game-sword@140x140.png");
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: rgb(255, 255, 255);
  opacity: 0.5;
}

/*.CharacterFrame .Dead:after {*/
.CharacterFrame .Token[conditions*=Dead]:after {
  content: "";
  width: 30%;
  height: 30%;
  z-index: 999;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("/Images/IconSkull.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.CharacterFrame .Token[conditions*=Unconscious]:after {
  content: "";
  width: 30%;
  height: 30%;
  z-index: 999;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("/Images/streamline-icon-interface-weather-moon@140x140.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.DM .CharacterFrame .Hidden:after, .CharacterFrame .Me.Hidden:after {
  content: "";
  width: 30%;
  height: 30%;
  z-index: 999;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("/Images/streamline-icon-view-off@140x140.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

/*.CharacterFrame .Token.Active {
            z-index: 2;
        }

            .CharacterFrame .Token.Active .Name {
            }*/
.CharacterFrame .Token[conditions*=YellowEffect] .Avatar {
  border: 2px solid #ffbb00;
  box-shadow: 0 0 0 #ffbb00;
  animation: YellowEffect 2s infinite;
}

.CharacterFrame .Token[conditions*=GreenEffect] .Avatar {
  border: 2px solid #15b549;
  box-shadow: 0 0 0 #15b549;
  animation: GreenEffect 2s infinite;
}

.CharacterFrame .Token[conditions*=RedEffect] .Avatar {
  border: 2px solid maroon;
  box-shadow: 0 0 0 maroon;
  animation: RedEffect 2s infinite;
}

.CharacterFrame .Token[conditions*=BlueEffect] .Avatar {
  border: 2px solid #0a79b9;
  box-shadow: 0 0 0 #0a79b9;
  animation: BlueEffect 2s infinite;
}

.CharacterFrame .YellowEffect .DMFrame,
.CharacterFrame .GreenEffect .DMFrame,
.CharacterFrame .RedEffect .DMFrame,
.CharacterFrame .BlueEffect .DMFrame {
  /*margin-top: -2px;
      margin-left: 2px;*/
}

.CharacterFrame .YellowEffect .Name,
.CharacterFrame .GreenEffect .Name,
.CharacterFrame .RedEffect .Name,
.CharacterFrame .BlueEffect .Name {
  /*margin-top: 4px;*/
}

.CharacterFrame .Token[conditions*=Dead] .Avatar {
  opacity: 0.4;
}

.CharacterFrame .Unconscious .Name {
  /*margin-top: 4px;*/
}

.CharacterFrame .Token[conditions*=Unconscious] .Avatar {
  opacity: 0.4;
}

.CharacterFrame .Token{
  z-index: 5;
}
.CharacterFrame .Token.IsLocked {
  z-index: 0 !important;
}
.CharacterFrame .Token.IsLocked:hover {
  background-color: transparent !important;
}
.CharacterFrame .Token[conditions*=Dead]
{
  z-index: 2;
}

.CharacterFrame .Dead .Name {
  /*margin-top: 4px;*/
}

.CharacterFrame .Hidden {
  /*    opacity: 0;*/
}

.Dragging {
  z-index: 20 !important;
}

/*.NonPlayerCharacter.Small {
    transform: scale(2);
}*/
.CharacterFrame .Token.HasTurn .Avatar {
  box-shadow: 0 0 0 10px #15b549 !important;
  /*animation: YellowEffect 5s infinite;*/
}

.InfoContainer {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 300px;
  background-color: rgba(16, 16, 16, 0.8);
  display: none;
}

.InfoContainer .Avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto;
  margin-top: 20px;
  background-color: maroon;
}

.InfoContainer .Name {
  color: #ffffff;
  height: 20px;
  margin: 0 auto;
  text-align: center;
}

.InfoContainer .Level {
  color: #ffffff;
  height: 20px;
  margin: 0 auto;
  text-align: center;
}

.InfoContainer .GenderRaceClass {
  color: #ffffff;
  height: 20px;
  margin: 0 auto;
  text-align: center;
}

/*.MapFrame {
    position: relative;
    display: inline-block;
}*/
.GridFrame {
  position: fixed;
  right: 20px;
  top: 26px;
  width: 200px;
  color: #eee;
  display: none;
}

.GridFrame .Text {
  position: absolute;
  left: -90px;
  top: -4px;
  opacity: 0.5;
}

.HeaderContainer {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  height: 80px;
  text-align: center;
  /*background-color: rgba(0, 0, 0, 0.40);*/
  background-image: url("/Images/Header.png");
  background-position: center bottom;
  -webkit-box-shadow: 0px 0px 40px 15px rgb(0, 0, 0);
  -moz-box-shadow: 0px 0px 40px 15px rgb(0, 0, 0);
  box-shadow: 0px 0px 40px 15px rgb(0, 0, 0);
  display: none;
}

.ui-slider {
  opacity: 0.5;
}

.SubMenu {
  margin: 0 auto;
  width: 473px;
  height: 113px;
  background-image: url("/Images/DrawingMenu.png");
  background-position: center bottom;
  -webkit-box-shadow: 0px 0px 40px 15px rgb(0, 0, 0);
  -moz-box-shadow: 0px 0px 40px 15px rgb(0, 0, 0);
  box-shadow: 0px 0px 40px 15px rgb(0, 0, 0);
  margin-top: 0;
  display: none;
  padding: 50px;
}

.SubMenu.Drawing.Active {
  display: block;
  margin-top: 70px;
}

.SubMenu.FogOfWar.Active {
  display: block;
  margin-top: 70px;
}

.Map.FogOfWar.DM {
  opacity: 0.8;
}

.MessageFrame {
  padding: 50px;
  width: 400px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: none;
  background-color: #282a30;
  -webkit-box-shadow: 10px 6px 59px -9px rgb(0, 0, 0);
  -moz-box-shadow: 10px 6px 59px -9px rgb(0, 0, 0);
  box-shadow: 10px 6px 59px -9px rgb(0, 0, 0);
  margin-left: 25px;
}

.MessageFrame.Offline {
  display: block;
}

.EncounterFrame {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 400px;
  background-color: #282a30;
  display: none;
  padding: 20px;
  font-size: 14px;
  -webkit-box-shadow: 10px 6px 59px -9px rgb(0, 0, 0);
  -moz-box-shadow: 10px 6px 59px -9px rgb(0, 0, 0);
  box-shadow: 10px 6px 59px -9px rgb(0, 0, 0);
}

.EncounterFrame.DM {
  display: block;
}

.EncounterFrame .Encounter {
  border-bottom: 1px dotted #ffffff;
}

.EncounterFrame .Encounter h1 {
  font-size: 18px;
}

.EncounterFrame .Encounter h1::first-letter {
  border-bottom: 3px solid #bf0e0e;
}

.Me.Hidden {
  opacity: 0.5;
}

.DM .CharacterFrame .Hidden {
  opacity: 1;
  /*-moz-box-shadow: 0 0 0 2px #bf0e0e;
  box-shadow: 0 0 0 2px #bf0e0e;*/
  box-shadow: 0 0 2px 2px #E91E63;
}

.DM .CharacterFrame .Hidden .Avatar {
  opacity: 0.5;
}

.DM .CharacterFrame .Hidden .Name {
  opacity: 0.5;
}

/*.DM .CharacterFrame .Hidden .DMFrame {
        margin-left: 2px;
        margin-top: -2px;
    }*/
.DM .InitiativeFrame {
  left: 70px !important;
}

.InitiativeFrame {
  position: fixed;
  left: 10px;
  top: 75px;
  border-radius: 6px;
  /*background-color: rgba(0,0,0,.7);*/
  padding: 20px;
  font-size: 14px;
  transition: visibility 1.5s, opacity 1.5s ease;
  visibility: hidden;
  opacity: 0;
  min-width: 90px;
  min-height: 80px;
  text-align: left;
  z-index: 450;
  background-color: rgba(34, 33, 39, 0.25);
  backdrop-filter: blur(3px);
}

.InitiativeFrame .Logo {
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background-image: url("/Images/streamline-icon-video-game-sword@140x140.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: none;
}

.InitiativeFrame.Active {
  visibility: visible;
  opacity: 1;
}

.InitiativeFrame .Token {
  display: block;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
  white-space: nowrap;
}

.InitiativeFrame .Token[conditions*=Dead] {
  opacity: 0.7;
}

.InitiativeFrame .Token[conditions*=Dead]:before {
  content: "";
  width: 14px;
  height: 14px;
  z-index: 999;
  display: block;
  position: absolute;
  left: 0;
  top: 1px;
  background-image: url("/Images/Test.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.InitiativeFrame .Token .Hidden {
  display: none;
}

.InitiativeFrame .Token[conditions*=Unconscious] {
  opacity: 0.7;
}

.InitiativeFrame .Token[conditions*=Unconscious]:before {
  content: "";
  width: 14px;
  height: 14px;
  z-index: 999;
  display: block;
  position: absolute;
  left: 0;
  top: 1px;
  background-image: url("/Images/streamline-icon-interface-weather-moon@140x140.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.InitiativeFrame .HasTurn {
  color: #15b549;
}

.InitiativeFrame .Hidden {
  display: none !important;
}

.InitiativeFrame .Name {
  display: inline-block;
  /*width: 60px;*/
}

.InitiativeFrame .Health, .InitiativeFrame .Wound, .InitiativeFrame .Remaining {
  display: inline-block;
  border: 1px solid rgba(137, 137, 137, 0.5);
  width: 30px;
  text-align: center;
  background-color: transparent;
  font-size: 14px;
  margin: 0;
  padding: 2px;
}

.InitiativeFrame .Wound {
  width: 100px;
}

.InitiativeFrame .Title {
  font-size: 10px;
  border: 0;
}

.Button.Reset {
  background-image: url("/Images/ButtonReset.png");
}

.Panels {
  position: fixed;
  top: 47px;
  bottom: 0;
  -webkit-box-shadow: 0px 0px 10px 0px #1c1b20;
  -moz-box-shadow: 0px 0px 10px 0px #1c1b20;
  box-shadow: 0px 0px 10px 0px #1c1b20;
  display: none;
  z-index: 500;
}

.Panels .Buttons {
  position: absolute;
  right: 100%;
  z-index: 99;
  padding-top: 37px;
  user-select: none;
}

.Panels .Buttons div {
  background-color: rgba(34, 33, 39, 0.25);
  cursor: pointer;
  /*padding: 20px;*/
  display: inline-block;
  width: 55px;
  height: 55px;
  margin-bottom: 2px;
  text-align: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 16px;
  margin-left: 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  backdrop-filter: blur(3px);
}

.Panels .Buttons div:hover {
  background-color: rgba(40, 42, 48, 0.8);
}

.Panels .Buttons .Active, .Panels .Buttons .Active:hover {
  background-color: rgba(255, 101, 0, 0.8);
}

.Panels.Left {
  left: 0;
}

.Panels.Left .Buttons {
  position: absolute;
  left: 100%;
}

.Panels.Right {
  right: 0;
}

.Panels.Right .Buttons {
  padding-right: 10px;
}

.Panels .Buttons .Initiative {
  background-image: url("/Images/streamline-icon-video-game-sword@140x140.png");
}

.Panels .Buttons .Maps {
  background-image: url("/Images/streamline-icon-interface-align-layers-1@140x140.png");
}

.Panels .Buttons .Tokens {
  background-image: url("/Images/streamline-icon-interface-user-multiple@140x140.png");
}

.Panels .Buttons .Campaign {
  background-image: url("/Images/IconBook.png");
}

.Panels .Buttons .Properties {
  background-image: url("/Images/streamline-icon-interface-setting-cog@140x140.png");
}

.Panels .Buttons .Drawing {
  background-image: url("/Images/streamline-icon-color-brush-3@140x140.png");
}

.Panels .Buttons .FogOfWar {
  background-image: url("/Images/streamline-icon-color-brush-paint-1-alternate@140x140.png");
}

.Panels .Buttons .DMMap {
  background-image: url("/Images/streamline-icon-interface-id-iris-scan@140x140.png");
}

.Panels .Buttons .DMMap.Activated {
  background-image: url("/Images/streamline-icon-interface-id-iris-scan-alternate@140x140.png");
  background-color: rgba(255, 101, 0, 0.8);
}

.Panels .Panel {
  display: none;
  background-color: #282a30;
  width: 400px;
  height: 100%;
  overflow-y: auto;
  z-index: 999;
}

.Panels .Panel.Active {
  display: inline-block;
}

.Panels .Title {
  position: fixed;
  top: 0;
  width: 400px;
  background-color: rgb(52, 54, 59);
  padding: 16px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgb(36, 38, 44);
}

.Panels.Left .Title {
  left: 0;
}

.Panels.Right .Title {
  /*        right: 0;*/
}

/* Tokens panel */
.Panels .Title .Filter {
  position: absolute;
  top: 0;
  right: 48px;
  width: 170px;
  border-radius: 0;
  padding: 18px;
  /*        border-left: 1px solid rgb(36, 38, 44);*/
  background-color: transparent;
}

.Panels .Title .Button.Create {
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background-image: url("/Images/streamline-icon-interface-add-1@140x140.png");
  background-size: 12px 12px;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 1;
  transition: all 0.2s ease-in-out;
  /*        background-color: rgba(21, 181, 73, 0.2);*/
  /*        border-radius: 4px;*/
  border-left: 1px solid rgb(36, 38, 44);
}

.Panels .Title .Button.Create:hover {
  background-color: #15b549;
}

/*    .Panels .Panel .Size {
    display: inline-block;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.10);
    margin: 2px;
    width: 60px;
    cursor: pointer;
    text-align: center;
    border-radius: 4px;
}

    .Panels .Panel .Size.Active, .Panels .Panel.Drawing .Size:hover {
        background-color: #ff6500;
    }*/
.Panels .Panel.FogOfWar {
  /*        padding: 5px;*/
}

.Panels .Panel.FogOfWar, .Panels .Panel.FogOfWar .Title {
  width: 101px;
}

.Panels .Panel.FogOfWar .Size {
  display: inline-block;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 2px;
  width: 40px;
  cursor: pointer;
  text-align: center;
  border-radius: 4px;
  position: relative;
}

.Panels .Panel.FogOfWar .Size.Active, .Panels .Panel.FogOfWar .Size:hover {
  background-color: #34363b;
}

.Panels .Panel.FogOfWar .Fill {
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 2px;
  cursor: pointer;
  text-align: center;
  border-radius: 4px;
}

.Panels .Panel.FogOfWar .Fill:hover {
  background-color: #34363b;
}

.Panels .Panel.FogOfWar .Clear {
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 2px;
  cursor: pointer;
  text-align: center;
  border-radius: 4px;
}

.Panels .Panel.FogOfWar .Clear:hover {
  background-color: #34363b;
}

.Panels .Panel.Drawing {
  /*        padding: 5px;*/
}

.Panels .Panel.Drawing, .Panels .Panel.Drawing .Title {
  width: 101px;
}

.Panels .Panel.Drawing .Color {
  display: inline-block;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 2px;
  width: 40px;
  cursor: pointer;
  text-align: center;
  border-radius: 4px;
  position: relative;
  /*border: 2px solid #1c1b20;*/
}

.Panels .Panel.Drawing .Color.Active,
.Panels .Panel.Drawing .Color:hover {
  /*border: 2px solid #ff6500;*/
}

.Panels .Panel.Drawing .Color[color="#ffffff"] {
  background-color: #ffffff;
}

.Panels .Panel.Drawing .Color[color="#000000"] {
  background-color: #000000;
}

.Panels .Panel.Drawing .Color[color="#ff6500"] {
  background-color: #ff6500;
}

.Panels .Panel.Drawing .Color[color="#15b549"] {
  background-color: #15b549;
}

.Panels .Panel.Drawing .Color[color="#bf0e0e"] {
  background-color: #bf0e0e;
}

.Panels .Panel.Drawing .Color[color="#0a79b9"] {
  background-color: #0a79b9;
}

.Panels .Panel.Drawing .Size {
  display: inline-block;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 2px;
  width: 40px;
  cursor: pointer;
  text-align: center;
  border-radius: 4px;
  position: relative;
}

.Panels .Panel.Drawing .Size.Active, .Panels .Panel.Drawing .Size:hover {
  background-color: #34363b;
}

.Panels .Panel.Drawing .Clear {
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 2px;
  cursor: pointer;
  text-align: center;
  border-radius: 4px;
}

.Panels .Panel.Drawing .Clear:hover {
  background-color: #34363b;
}

.Spacer {
  border-top: 1px solid #222127;
  margin-top: 20px;
  margin-bottom: 20px;
}

.Panels .Encounter {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 10px;
}

.Panels .Encounter h2 {
  cursor: pointer;
}

/*.Panels .Encounter .EditIcon {
            position: absolute;
            height: 16px;
            width: 16px;
            mask: url($imagePath + "IconEdit.svg");
            mask-size: cover;
            background: rgba(137, 137, 137, 0.5);
        }*/
/* Sidebar maps */
.Panels .Panel.Maps .List {
  background-color: #1c1b20;
}

.Panels .Panel.Maps .List .Map {
  position: relative;
  cursor: pointer;
  border-left: 10px solid #34363b;
  padding: 10px;
  margin-bottom: 1px;
  background-color: #282a30;
  transition: all 0.2s ease-in-out;
}

.Panels .Panel.Maps .List .Map:hover {
  background-color: rgb(36, 38, 44);
}

.Panels .Panel.Maps .List .Map h2 {
  color: #ffffff;
  font-size: 14px;
}

.Panels .Panel.Maps .List .Map .Image {
  height: 100px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: relative;
}

video {
  max-width: 100%;
  max-height: 100%;
}

.Panels .Panel.Maps .List .Map .Button.Live {
  position: absolute;
  top: 8px;
  right: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: transparent;
  opacity: 0.3;
  transition: opacity 0.2s ease-in-out;
  font-size: 9px;
  padding: 5px;
  border-radius: 4px;
  cursor: pointer;
}

.Panels .Panel.Maps .List .Map .Button.Live:hover {
  opacity: 1;
}

.Panels .Panel.Maps .List .Map .Button.Live span:before {
  content: "Go live";
}

.Panels .Panel.Maps .List .Map .Button.Edit {
  position: absolute;
  top: 10px;
  right: 15px;
  width: 16px;
  height: 16px;
  background-image: url("/Images/streamline-icon-interface-setting-cog@140x140.png");
  background-size: contain;
  background-color: transparent;
  opacity: 0.3;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
}

.Panels .Panel.Maps .List .Map .Button.Edit:hover {
  opacity: 1;
}

.Panels .Panel.Maps .List .Map.Current {
  background-color: #2f3038;
  border-left: 10px solid #15b549;
}

/*.Panels .Panel.Maps .List .Map.Current .Button.Live, .Panels .Panel.Maps .List .Map.Current .Button.Live:hover {
        opacity: 1;
        background-color: #15b549;
        -webkit-box-shadow: 0 0 5px #15b549;
        border: 1px solid #2ad963;
    }

        .Panels .Panel.Maps .List .Map.Current .Button.Live span:before {
            content: "Current";
        }*/
.Panels .Panel.Maps .List .Map.Active {
  background-color: #3f2525;
  border-left: 10px solid #bf0e0e;
}

.Panels .Panel.Maps .List .Map.Active .Button.Live, .Panels .Panel.Maps .List .Map.Active .Button.Live:hover {
  opacity: 1;
  background-color: #bf0e0e;
  -webkit-box-shadow: 0 0 5px #bf0e0e;
  border: 1px solid #e40f0f;
}

.Panels .Panel.Maps .List .Map.Active .Button.Live span:before {
  content: "Live";
}

.Panels .Panel.Tokens .List .Token {
  padding: 10px;
  display: flex;
  position: relative;
  border-left: 10px solid #34363b;
  margin-bottom: 1px;
  position: relative;
}

.Panels .Panel.Tokens .List .Token:hover {
  background-color: rgb(36, 38, 44);
}

.Panels .Panel.Tokens .List .Token .Image {
  display: inline-block;
  height: 50px;
  width: 50px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin-right: 10px;
  position: relative;
}

.Panels .Panel.Tokens .List .Token .Button {
  position: absolute;
  top: 10px;
  right: 15px;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-color: transparent;
  opacity: 0.3;
  transition: opacity 0.2s ease-in-out;
}

.Panels .Panel.Tokens .List .Token .Button:hover {
  opacity: 1;
}

.Panels .Panel.Tokens .List .Token .Button.Edit {
  background-image: url("/Images/streamline-icon-interface-setting-cog@140x140.png");
}

.Panels .Panel.Tokens .List .Token .Button.CreatePosition {
  background-image: url("/Images/streamline-icon-interface-arrows-button-right-duoble@140x140.png");
  top: 45px;
}

.Panels .Panel.Tokens .List .Token.Static .Button.CreatePosition {
  background-image: url("/Images/streamline-icon-interface-arrows-button-right@140x140.png");
  top: 45px;
}

.Panels .Panel.Tokens .List .Token.Static {
  border-left: 10px solid #ffa400;
}

.Panels .Panel.Tokens .List .Token.Static .Details .Name {
  padding-left: 16px;
  position: relative;
}

.Panels .Panel.Tokens .List .Token.Static .Details .Name:before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  left: 6px;
  top: 0;
  background-image: url("/Images/streamline-icon-interface-award-crown@140x140Gold.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transform: translateX(-50%);
}

.Panels .Panel.Tokens .List .Group .GroupName {
  padding: 10px;
  background-color: rgb(47, 48, 56);
  /*background-color: rgb(52, 54, 59);*/
  border-bottom: 1px solid rgb(36, 38, 44);
  cursor: pointer;
  background-image: url("/Images/streamline-icon-interface-page-controller-scroll-up@140x140.png");
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: 378px center;
}

.Panels .Panel.Maps .List .Group .GroupName {
  padding: 10px;
  background-color: rgb(47, 48, 56);
  border-bottom: 1px solid rgb(36, 38, 44);
  cursor: pointer;
  background-image: url("/Images/streamline-icon-interface-page-controller-scroll-up@140x140.png");
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: 378px center;
}

/* Sidebar Panel CampaignMaps */
.Panels .Panel.CampaignMaps {
  border-top: 2px solid #ff6500;
}

.Panels .Panel.CampaignMaps .Map {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  margin-bottom: 40px;
  cursor: pointer;
}

.Panels .Panel.CampaignMaps .Map .Image {
  height: 100px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-color: rgb(36, 38, 44);
  border: 5px solid rgb(36, 38, 44);
  margin-bottom: 20px;
}

/* Sidebar encounters*/
.Panels .Panel.Encounters .Map {
  display: none;
}

.Panels .Panel.Encounters .Map.Active {
  display: block;
}

.Panels .Panel.Encounters .Map .Encounter {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
}

.Panels .Panel.Encounters .Map .Encounter .Button {
  background-color: #3e4045;
  padding: 8px;
}

.Panels .Panel.Encounters .Map .NPC {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 2px;
}

.Templates {
  display: none;
}

.DM .Panels {
  display: block;
}

.Panel.Maps .Image {
  display: block;
  width: 100%;
}

/*.Panels .Initiative {
    padding: 0;
}*/
.Panels .Initiative .Token {
  position: relative;
  /*height: 110px;*/
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  border-left: 10px solid rgba(255, 255, 255, 0.1);
}

.Panels .Initiative .Token:hover {
  background-color: rgba(255, 255, 255, 0.06);
}

.Panels .Initiative .Token.Focus {
  border-left: 10px solid #15b549;
}

.Panels .Initiative .Token.HasTurn {
  background-color: #3f2525;
  border-left: 10px solid #bf0e0e;
}

.Panels .Initiative .Token .Avatar {
  position: absolute;
  font-size: 22px;
  text-align: center;
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 15%;
  cursor: pointer;
}

.Panels .Initiative .Token .Avatar video {
  max-width: 100%;
  max-height: 100%;
}

.Panels .Initiative .Token .Name {
  position: absolute;
  font-size: 18px;
  text-align: left;
  top: 20px;
  left: 70px;
  width: 100%;
  max-width: 175px;
  overflow: hidden;
  white-space: nowrap;
}

.Panels .Initiative .Token .Name input {
  display: inline-block;
  width: 30px;
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  padding: 4px;
  border: 0;
  font-size: 12px;
  text-align: center;
  margin-right: 5px;
  position: relative;
  top: -2px;
  color: #828282;
}

.Panels .Initiative .Token .ArmorClass {
  position: absolute;
  font-size: 12px;
  text-align: left;
  top: 48px;
  left: 80px;
  width: 100%;
  max-width: 175px;
  overflow: hidden;
  white-space: nowrap;
  background-image: url("/Images/ShieldWhite.svg");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 15px;
  opacity: 0.5;
}

.Panels .Initiative .Token .Effects {
  position: absolute;
  font-size: 18px;
  text-align: left;
  top: 20px;
  right: 20px;
  overflow: hidden;
}

.Panels .Initiative .Token .Effects div {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  border-radius: 100%;
  margin-right: 5px;
  opacity: 0.2;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
}

.Panels .Initiative .Token .Effects .Yellow {
  background-color: #ffbb00;
}

.Panels .Initiative .Token .Effects .Green {
  background-color: #15b549;
}

.Panels .Initiative .Token .Effects .Red {
  background-color: #bf0e0e;
}

.Panels .Initiative .Token .Effects .Blue {
  background-color: #0a79b9;
}

.Panels .Initiative .Token .Effects a {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/Images/IconBook.png");
  background-color: transparent;
  border-radius: 0;
}

.Panels .Initiative .Token[conditions*=YellowEffect] .Effects .Yellow {
  background-color: #ffbb00;
  opacity: 1;
}

.Panels .Initiative .Token[conditions*=GreenEffect] .Effects .Green {
  background-color: #15b549;
  opacity: 1;
}

.Panels .Initiative .Token[conditions*=RedEffect] .Effects .Red {
  background-color: #bf0e0e;
  opacity: 1;
}

.Panels .Initiative .Token[conditions*=BlueEffect] .Effects .Blue {
  background-color: #0a79b9;
  opacity: 1;
}

.Panels .Initiative .Token .Description {
  position: absolute;
  font-size: 12px;
  text-align: left;
  top: 45px;
  left: 70px;
  width: 100%;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #adadad;
}

.Panels .Initiative .Token .States {
  position: absolute;
  font-size: 12px;
  top: 45px;
  right: 20px;
}

.Panels .Initiative .Token .States div {
  display: inline-block;
  width: 16px;
  height: 16px;
  /*background-color: #ffffff;*/
  /*border-radius: 100%;*/
  margin-left: 5px;
  opacity: 0.2;
  cursor: pointer;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.Panels .Initiative .Token .States .Dead {
  background-image: url("/Images/IconSkull.png");
}

.Panels .Initiative .Token .States .Unconscious {
  background-image: url("/Images/streamline-icon-interface-weather-moon@140x140.png");
}

.Panels .Initiative .Token .States .Hidden {
  background-image: url("/Images/streamline-icon-view-off@140x140.png");
}

.Panels .Initiative .Token .States .InInitiative {
  background-image: url("/Images/streamline-icon-video-game-sword@140x140.png");
}

.Panels .Initiative .Token[conditions*=Dead] .States .Dead {
  opacity: 1;
}

.Panels .Initiative .Token[conditions*=Unconscious] .States .Unconscious {
  opacity: 1;
}

.Panels .Initiative .Token.Hidden .States .Hidden {
  opacity: 1;
}

.Panels .Initiative .Token.InInitiative .States .InInitiative {
  opacity: 1;
}

.Panels .Initiative .Token .Health {
  position: absolute;
  font-size: 13px;
  text-align: center;
  top: 70px;
  left: 20px;
  width: 40px;
  color: #15b549;
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  padding: 4px;
}

.Panels .Initiative .Token .Wound {
  position: absolute;
  text-align: left;
  top: 70px;
  left: 70px;
  width: 100%;
  max-width: 300px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  white-space: nowrap;
  color: #15b549;
  border-radius: 6px;
  padding: 4px;
}

.Panels .Initiative .Token .Wound input {
  display: inline-block;
  background-color: transparent;
  border: 0;
  font-size: 13px;
  color: #ffffff;
  width: 90%;
  margin: 0;
  padding: 4px;
}

.Panels .Initiative .Token .SpellSlots {
  padding-top: 110px;
}

.Panels .Initiative .Token .SpellSlots .Group {
  position: relative;
  display: flex;
  /*border: 1px solid maroon;*/
}

.Panels .Initiative .Token .SpellSlots .Group .GroupTitle {
  padding-left: 10px;
  padding-top: 5px;
  width: 40px;
  font-size: 10px;
  color: #828282;
}

.Panels .Initiative .Token .SpellSlots .Group .CheckBox {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  margin-left: 0;
  margin-bottom: 3px;
  margin-right: 5px;
}

.Panels .Initiative .Token .SpellSlots .Group .CheckBox .Mark {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-size: 12px;
  background-position: center center;
  background-image: none;
  background-repeat: no-repeat;
  transition: opacity 0.2s ease-in-out;
  background-image: url("/Images/streamline-icon-interface-validation-check@140x140.png");
  opacity: 0;
}

.Panels .Initiative .Token .SpellSlots .Group .CheckBox[value=true] .Mark {
  opacity: 1;
}

.ChatFrame {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 500;
  background-color: rgb(40, 42, 48);
  width: 300px;
  opacity: 1;
  overflow: hidden;
  width: 300px;
  -webkit-box-shadow: 0px 0px 10px 0px #1c1b20;
  -moz-box-shadow: 0px 0px 10px 0px #1c1b20;
  box-shadow: 0px 0px 10px 0px #1c1b20;
  z-index: 999;
  padding-bottom: 40px;
  display: none;
}

.ChatFrame .History {
  position: relative;
  /*border: 1px solid maroon;*/
  /*height: 100%;*/
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  /*padding-bottom: 30px;*/
  /*        overflow: hidden;*/
  max-height: 100%;
  /*        height: 100%;*/
  /*padding: 20px;*/
  opacity: 1;
  transition: all 0.8s ease;
}

.ChatFrame .History .List {
  background-color: #1c1b20;
  overflow-y: auto;
}

/*.ChatFrame .History .Entry {
    position: relative;
    padding: 10px;
    padding-top: 30px;
    margin-bottom: 1px;
    background-color: #282a30;
    min-height: 60px;*/
/*            border-bottom: 1px solid rgba(28, 27, 32, 0.8);*/
/*}

    .ChatFrame .History .Entry .From {
        position: absolute;
        top: 15px;
        left: 60px;
        font-size: 10px;
    }

    .ChatFrame .History .Entry .Message {*/
/*background-color: rgba(28, 27, 32, 0.3);*/
/*padding: 10px;*/
/*border-radius: 10px;*/
/*color: #cbcbcb;
        overflow: hidden;
        overflow-wrap: break-word;
        margin-left: 50px;
    }

    .ChatFrame .History .Entry .Avatar {
        position: absolute;
        width: 40px;
        height: 40px;
        left: 10px;
        top: 10px;*/
/*border: 1px solid maroon;*/
/*background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        border-radius: 15%;
    }*/
.ChatFrame .History .Entry {
  position: relative;
  padding: 10px;
  padding-top: 10px;
  /*margin-bottom: 1px;*/
  background-color: #282a30;
  min-height: 60px;
  /*            border-bottom: 1px solid rgba(28, 27, 32, 0.8);*/
}

.ChatFrame .History .Entry .From {
  position: absolute;
  top: 15px;
  left: 60px;
  font-size: 10px;
  display: none;
}

.ChatFrame .History .Entry .Message {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 10px;
  border-radius: 10px;
  color: #ffffff;
  overflow: hidden;
  overflow-wrap: break-word;
  margin-left: 45px;
  margin-right: 5px;
}

.ChatFrame .History .Entry .Avatar {
  position: absolute;
  width: 30px;
  height: 30px;
  left: 15px;
  bottom: 10px;
  /*border: 1px solid maroon;*/
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 10px;
}

.ChatFrame .History .Entry.Me .Message {
  background-color: rgba(8, 8, 8, 0.2901960784);
}

.ChatFrame .Input {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 300px;
  min-height: 40px;
}

.ChatFrame .Text {
  position: absolute;
  left: 0;
  width: 260px;
  margin: 0;
  padding: 12px;
  border-radius: 0;
  margin-right: 40px;
  height: auto;
}

.ChatFrame .Send {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 100%;
  margin: 0;
  /*        background-color: #ff6500;*/
  background-image: url("/Images/streamline-icon-send-email-3@140x140.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 16px;
  border-radius: 0;
  cursor: pointer;
}

.ChatVisible .ChatFrame {
  display: block;
}

.ChatVisible .Panels.Right {
  right: 300px;
}

.Button.ChatToggle {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(34, 33, 39, 0.25);
  backdrop-filter: blur(3px);
  cursor: pointer;
  display: inline-block;
  width: 55px;
  height: 55px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 16px;
  background-image: url("/Images/streamline-icon-conversation-chat-2@140x140.png");
  border-radius: 6px;
  z-index: 99999;
  pointer-events: all;
}

.Button.ChatToggle.Active, .Button.ChatToggle:hover {
  background-color: rgba(40, 42, 48, 0.8);
}

.Button.ChatToggle.Unread {
  background-color: rgba(255, 101, 0, 0.8);
}

.ChatVisible .Button.ChatToggle {
  background-color: rgba(40, 42, 48, 0.8);
}

.Button.Table {
  position: absolute;
  bottom: 100px;
  right: 10px;
  background-color: rgba(34, 33, 39, 0.25);
  backdrop-filter: blur(3px);
  cursor: pointer;
  width: 55px;
  height: 55px;
  /*    transform: translateX(5px);*/
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 26px;
  background-image: url("/Images/streamline-icon-earth-move@48x48.png");
  border-radius: 0;
  z-index: 99999;
  pointer-events: all;
  border-radius: 6px;
  display: none;
}

body.Table .Button.Table {
  background-color: #E91E63;
}

.DM .Button.Table {
  display: inline-block;
}

.Button.Leave {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(34, 33, 39, 0.25);
  backdrop-filter: blur(3px);
  cursor: pointer;
  width: 55px;
  height: 55px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 16px;
  border-radius: 0;
  z-index: 99999;
  background-image: url("/Images/streamline-icon-single-neutral-home@140x140.png");
  pointer-events: all;
  border-radius: 6px;
}

.Button.Leave:hover {
  opacity: 1;
}

.AmbianceFrame {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 300;
  opacity: 0.2;
  transition: all 0.8s ease;
  display: none;
  /*width: 40px;*/
}

.AmbianceFrame:hover {
  opacity: 1;
}

input[type=range] {
  -webkit-appearance: none;
  margin: 0;
  width: 100%;
  /*    transform: rotateZ(270deg);*/
  background-color: #222127;
  border-radius: 4px;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.2);
}

input[type=range]::-webkit-slider-thumb {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background-color: #ffffff;
  cursor: pointer;
  border: 2px solid #222127;
  -webkit-appearance: none;
  margin-top: -6px;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background-color: rgba(255, 255, 255, 0.2);
}

input[type=range]::-moz-range-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.2);
}

input[type=range]::-moz-range-thumb {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background-color: #ffffff;
  cursor: pointer;
  border: 2px solid #222127;
}

input[type=range]::-ms-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 2px;
  color: transparent;
}

input[type=range]::-ms-fill-lower {
  background: #2a6495;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}

input[type=range]::-ms-fill-upper {
  background: #3071a9;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}

input[type=range]::-ms-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}

input[type=range]:focus::-ms-fill-lower {
  background: #3071a9;
}

input[type=range]:focus::-ms-fill-upper {
  background: #367ebd;
}

.PropertyFrame {
  position: fixed;
  top: 44px;
  left: 0;
  bottom: 0;
  -webkit-box-shadow: 0px 0px 10px 0px #1c1b20;
  -moz-box-shadow: 0px 0px 10px 0px #1c1b20;
  box-shadow: 0px 0px 10px 0px #1c1b20;
  /*display: none;*/
  background-color: #282a30;
  width: 400px;
  height: 100%;
  padding: 20px;
  overflow-y: auto;
  z-index: 999;
  border-top: 2px solid #ff6500;
}

.Column.Characters .Entry {
  position: relative;
}

.Column.Characters .Entry .Avatar {
  position: absolute;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.Panels .Panel.Properties .Image, .Panels .Panel.Campaign .Image {
  position: relative;
  display: block;
  /*width: 100%;*/
  height: 100px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-color: #232323;
  border: 5px solid #232323;
  margin: 10px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 5px;
  border-radius: 4px;
  margin-top: 40px;
  text-align: center;
}

.Panels .Panel.Properties .Image .ImageName, .Panels .Panel.Campaign .Image .ImageName {
  position: absolute;
  top: -30px;
  left: -5px;
}

.Panels .Panel.Properties .Image .Delete, .Panels .Panel.Campaign .Image .Delete {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 16px;
  height: 16px;
  /*background-color: #33343d;*/
  /*border: 10px solid maroon;*/
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("/Images/streamline-icon-interface-delete-bin-1@140x140.png");
  background-size: contain;
  margin: 0;
  cursor: pointer;
  opacity: 0.3;
  transition: opacity 0.2s ease-in-out;
}

.Panels .Panel.Properties .Image .Delete:hover, .Panels .Panel.Campaign .Image .Delete:hover {
  /*background-color: #ff6500;*/
  opacity: 1;
}

.Panels .Panel.Properties .Image .Button, .Panels .Panel.Campaign .Image .Button {
  position: absolute;
  top: 5px;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin: 0;
  cursor: pointer;
  opacity: 0.3;
  transition: opacity 0.2s ease-in-out;
}

.Panels .Panel.Properties .Image .Button:hover, .Panels .Panel.Campaign .Image .Button:hover {
  /*background-color: #ff6500;*/
  opacity: 1;
}

.Panels .Panel.Properties .Image .Button.Delete, .Panels .Panel.Campaign .Image .Button.Delete {
  right: 5px;
  background-image: url("/Images/streamline-icon-interface-delete-bin-1@140x140.png");
}

.Panels .Panel.Properties .Image .Button.UploadMap {
  left: 5px;
  background-image: url("/Images/streamline-icon-interface-upload-desktop@140x140.png");
}

.Panels .Panel.Properties .Image .Button.UploadDMMap {
  left: 5px;
  background-image: url("/Images/streamline-icon-interface-upload-desktop@140x140.png");
}

.Panels .Panel.Properties .Image .Button.AvatarUpload {
  left: 5px;
  background-image: url("/Images/streamline-icon-interface-upload-desktop@140x140.png");
  padding-top: 20px;
}

.Panels .Panel.Campaign .Image .Button.CampaignUpload {
  left: 5px;
  background-image: url("/Images/streamline-icon-interface-upload-desktop@140x140.png");
}

.Panels .Panel.Properties .TextArea {
  background-color: transparent;
  margin-left: 20px;
  margin-right: 20px;
  padding: 0;
  padding-top: 6px;
}

.Panels .Panel.Properties .TextArea textarea {
  background-color: #232323;
}

.Panel.Properties .G {
  margin-bottom: 20px;
  /*margin-top: 10px;*/
}

.Panel.Properties .G .GN {
  position: relative;
  padding: 10px;
  text-shadow: 0px 0px 2px #282a30;
  color: #838383;
  margin-bottom: 20px;
}

.Panel.Properties .G .GN:after {
  content: "";
  position: absolute;
  top: 16px;
  left: 60px;
  right: 20px;
  /*            border-right: 10px solid #282a30;*/
  /*            margin-left: 10px;*/
  /*            margin-right: 50px;*/
  /*            width: 100%;*/
  height: 1px;
  background-color: #33343d;
  z-index: -10;
}

.Panel.Properties .Note {
  padding: 10px 20px 10px 20px;
  color: #838383;
}

.Panel.Properties .Note b {
  color: #cecece;
  font-weight: normal;
}

/*.Panels .TokenProperties .Image {
    display: block;
    width: 100%;
    height: 100px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    background-color: #232323;
    border: 1px solid #33343d;
}
*/
/*.Panels .TokenPositionProperties .Image {
    display: block;
    width: 100%;
    height: 100px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    background-color: #232323;
    border: 1px solid #33343d;
}
*/
.TokenMoveGridLength {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0.7;
  border-radius: 15%;
  width: 100px;
  height: 100px;
  transform-origin: top left;
  font-size: 18px;
  z-index: 0;
}

.TokenMoveGridLength .Value {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
}

.TOS {
  padding-left: 100px;
  padding-right: 100px;
}

.TOS p {
  margin-bottom: 10px;
  color: #acacac;
}

.TOS h2 {
  margin-top: 30px;
}

.TOS ul {
  margin-bottom: 20px;
}

.CookieFrame {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 20px;
  color: #acacac;
  text-align: center;
  display: none;
  z-index: 99999;
}

.CookieFrame h1 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 16px;
}

.CookieFrame p {
  margin-bottom: 10px;
}

.CookieFrame .Button {
  background-color: #15b549;
  padding: 10px 20px 10px 20px;
  display: inline-block;
  border-radius: 4px;
}

.Button.Dice.Throw {
  position: fixed;
  bottom: 20px;
  right: 20px;
  transform: translateX(-50%);
  background-color: #15b549;
  padding: 20px;
  z-index: 999999;
  display: none;
}

.Button.Dice.Throw * {
  display: none;
}

.DiceTop {
  z-index: 9999;
  border: 1px solid maroon;
}

.Canvasses .Dice {
  z-index: 99999;
}

.PatreonTier {
  font-size: 14px;
}

.PatreonTier .Tier {
  margin-bottom: 20px;
}

.PatreonTier .Price {
  font-size: 36px;
  margin-bottom: 10px;
}

.PatreonTier .Price {
  margin-bottom: 10px;
}

.PatreonTier .PriceTax {
  margin-bottom: 20px;
  color: #939393;
  font-size: 13px;
}

.PatreonTier .Join {
  margin-bottom: 20px;
  background-color: #ff6500;
  padding: 20px;
  border-radius: 9999px;
  display: inline-block;
  color: #ffffff;
  padding-left: 50px;
  padding-right: 50px;
}

.PatreonTier .Description {
  text-align: left;
  color: #d7d7d7;
  margin-bottom: 20px;
}

.PatreonTier .Description p {
  margin-bottom: 10px !important;
  text-align: left !important;
  padding: 0 !important;
}

.PatreonTier .DiscordBenefit {
  text-align: left;
  background-image: url("/Images/Discord-Logo-White.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  padding-left: 35px;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #d7d7d7;
  margin-bottom: 5px;
}

.PatreonTier .PatreonBenefits {
  text-align: left;
  color: #d7d7d7;
}

.PatreonTier .PatreonBenefits ul {
  list-style-type: square;
  padding-left: 35px;
  margin-bottom: 10px;
  display: none;
}

.PatreonTier .PatreonBenefits ul li {
  margin-bottom: 10px;
}

.DefineGridButton {
  position: absolute;
  top: 0;
  right: 10px;
  background-color: #33343d;
  cursor: pointer;
  padding: 6px;
  padding: 6px 12px;
  font-size: 12px;
}

.Stream .DiceFrame, .Stream .Button.ChatToggle, .Stream .ChatFrame .Input {
  display: none;
}

.Stream .ChatFrame {
  display: block;
  padding-bottom: 0;
}

/*.RollAnnouncement {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 400px;
    transform: translate(-50%,-50%);
    background: radial-gradient(ellipse closest-side,rgb(25 25 25 / 72%) 30%,rgba(0, 0, 0, 0));
    z-index: 999;
    pointer-events: none;*/
/*border: 1px solid maroon;*/
/*text-align: center;
    display: none;
}*/
.RollAnnouncement {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 400px;
  transform: translate(-50%, -50%);
  z-index: 999;
  pointer-events: none;
  text-align: center;
  display: none;
  -webkit-mask-image: radial-gradient(ellipse closest-side, rgb(25, 25, 25) 30%, rgba(0, 0, 0, 0));
  mask-image: radial-gradient(ellipse closest-side, rgb(25, 25, 25) 30%, rgba(0, 0, 0, 0));
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.4901960784);
  backdrop-filter: blur(6px);
}

.RollAnnouncement .Line {
  position: absolute;
  width: 60%;
  height: 1px;
  left: 20%;
  top: 150px;
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 20%, rgb(255, 255, 255) 43%, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0) 55%, rgb(255, 255, 255) 60%, rgb(255, 255, 255) 80%, rgba(255, 255, 255, 0) 100%);
}

.RollAnnouncement .Line:after {
  position: absolute;
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  content: "";
  background-image: url("/Images/die-d20.png");
  background-repeat: no-repeat;
  background-size: contain;
}

.RollAnnouncement .Message {
  margin-top: 180px;
  color: rgba(255, 255, 255, 0.75);
}

.RollAnnouncement .Result {
  margin-top: 5px;
  color: rgb(255, 255, 255);
  font-size: 30px;
}

.XXYBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.6);
  padding: 50px;
}

.XXY {
  width: 200px;
  /*    width: 500px;
      height: 250px;
  */ /*min-height: 20em;*/
  background: radial-gradient(circle, rgb(0, 0, 0) 30%, #152226);
  z-index: 999;
  /*    pointer-events: none;*/
  border: 1px solid #847861;
  border-radius: 1px;
  text-align: center;
  /*    display: none;*/
  padding: 10px;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.75), inset 0px 1px 5px 0px rgba(0, 0, 0, 0.75);
}

.XXY:focus {
  box-shadow: 0px 1px 5px 0px #635843, inset 0px 1px 5px 0px #5f5644;
}

.Notepad {
  position: absolute;
  width: 300px;
  height: 400px;
  top: 300px;
  left: 300px;
  z-index: 999999;
  /* background-color: #4e4e4eba; */
  padding: 20px;
  backdrop-filter: blur(10px);
  background-color: rgba(34, 33, 39, 0.25);
  border-radius: 6px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5215686275);
  display: none;
}

/* Youtube frame */
iframe {
  pointer-events: none;
}

.Changelog .Row .Content h1 {
  text-align: left;
  font-size: 24px;
  margin-bottom: 20px;
  color: rgb(185, 232, 31);
}

.Changelog .Row .Content h2 {
  text-align: left;
  font-size: 20px;
  margin-bottom: 20px;
}

.Changelog .Row .Content li {
  font-size: 13px;
  line-height: 24px;
}

.Changelog .Row .Content p {
  text-align: left;
  max-width: unset;
  font-size: 13px;
  line-height: 24px;
}

.campaignPage {
  overscroll-behavior-y: contain;
  width: 100%;
  height: 100%;
  position: fixed;
  overflow: hidden;
}

/*# sourceMappingURL=Master.css.map */

.CharacterFrame .Token.Note 
{
  display: none !important;
}
.DM .CharacterFrame .Token.Note 
{
  display: flex !important;
}

.CharacterFrame .Token.Asset 
{
  z-index: 1;
}