.mWidgetBody {
  margin: 0 !important;
  background-color: #000;
  overflow: hidden !important;
  padding: 15px !important;
}

.mWidget {
  background-color: #000;
  padding: 15px;
  -webkit-border-radius:  6px;
  -moz-border-radius:     6px;
  -o-border-radius:       6px;
  -ms-border-radius:      6px;
  border-radius:          6px;
}

.monacoWidgetHeader {
  display: none;
}

.monaco {
  position: relative;
}

.monaco-editor {
  outline: 1px solid silver;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: inherit !important;
}

div[id^=checkbox] {
  float: left;
}

span[id^=fileName] {
  float: right;
  color: #fff;
  text-decoration: underline;
}

.swal2-html-container pre {
  font-weight: bold;
  color: red;
  text-align: left;
}

.modal {
  max-width: 850px;
  background-color: #f5c8d3;
  overflow: visible;
}

.modal a.close-modal.icon-close {
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  color: #fff;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-indent: 0;
  background: #900;
  border: 2px solid #fff;
  -webkit-border-radius:  26px;
  -moz-border-radius:     26px;
  -o-border-radius:       26px;
  -ms-border-radius:      26px;
  border-radius:          26px;
  -moz-box-shadow:    1px 1px 5px rgba(0,0,0,0.5);
  -webkit-box-shadow: 1px 1px 5px rgba(0,0,0,0.5);
  box-shadow:         1px 1px 5px rgba(0,0,0,0.5);
  box-sizing: content-box;
  font-family: Sans-Serif;
}

/* tiny checkbox */
@-moz-keyframes dothabottomcheck {
  0% {
    height: 0;
  }
  100% {
    height: 5.5px;
  }
}
@-webkit-keyframes dothabottomcheck {
  0% {
    height: 0;
  }
  100% {
    height: 5.5px;
  }
}
@keyframes dothabottomcheck {
  0% {
    height: 0;
  }
  100% {
    height: 5.5px;
  }
}
@keyframes dothatopcheck {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: 13.2px;
  }
}
@-webkit-keyframes dothatopcheck {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: 13.2px;
  }
}
@-moz-keyframes dothatopcheck {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: 13.2px;
  }
}
.check-box-input {
  display: none;
}
.check-box-label {
  cursor: pointer;
  font-weight: bold;
  margin-left: 5px;
  font-size: small;
  font-family: cursive;
  font-style: italic;
}
.check-box-container {
  margin-bottom: 10px;
}
.check-box {
  height: 11px;
  width: 11px;
  background-color: #FEF2E0;
  border: 0.73333px solid darkviolet;
  border-radius: 5px;
  position: relative;
  display: inline-block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: border-color ease 0.2s;
  -o-transition: border-color ease 0.2s;
  -webkit-transition: border-color ease 0.2s;
  transition: border-color ease 0.2s;
  cursor: pointer;
  margin-bottom: -1px;
  margin-right: 2px;
  transform: scale(1.2);
}
.check-box::before, .check-box::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  height: 0;
  width: 2.2px;
  background-color: deeppink;
  display: inline-block;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  border-radius: 5px;
  content: ' ';
  -webkit-transition: opacity ease .5;
  -moz-transition: opacity ease .5;
  -o-transition: opacity ease .5;
  transition: opacity ease .5;
}
.check-box::before {
  top: 7.92px;
  left: 4.51px;
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.check-box::after {
  top: 4.07px;
  left: 0.55px;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
input[type=checkbox]:checked + .check-box,
input[type=radio]:checked + .check-box,
.check-box.checked {
  border-color: #19197A;
  background-color: #FFFFF0;
}
input[type=checkbox]:checked + .check-box::after,
input[type=radio]:checked + .check-box::after,
.check-box.checked::after {
  height: 5.5px;
  -moz-animation: dothabottomcheck 0.2s ease 0s forwards;
  -o-animation: dothabottomcheck 0.2s ease 0s forwards;
  -webkit-animation: dothabottomcheck 0.2s ease 0s forwards;
  animation: dothabottomcheck 0.2s ease 0s forwards;
}
input[type=checkbox]:checked + .check-box::before,
input[type=radio]:checked + .check-box::before,
.check-box.checked::before {
  height: 13.2px;
  -moz-animation: dothatopcheck 0.4s ease 0s forwards;
  -o-animation: dothatopcheck 0.4s ease 0s forwards;
  -webkit-animation: dothatopcheck 0.4s ease 0s forwards;
  animation: dothatopcheck 0.4s ease 0s forwards;
}
input[type=checkbox][disabled].check-box-input ~ label {
  opacity: 0.65;
  cursor: not-allowed;
}

