<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.oculto{
	display:none;
	opacity:0;  /* make things invisible upon start */
}

.fade-in {
	opacity:0;  /* make things invisible upon start */
	-webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
	-moz-animation:fadeIn ease-in 1;
	animation:fadeIn ease-in 1;

	-webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;

	-webkit-animation-duration:0.5s;
	-moz-animation-duration:0.5s;
	animation-duration:0.5s;
}


input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
input[type=radio] + label {
  cursor: pointer;
  text-indent: 1.2em;
  line-height: 2em;
  color: rgba(3, 3, 3);
  display: block;
  position: relative;
  transition: 0.15s;
}
input[type=radio] + label &gt; i {
  border-radius: 18px;
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 22px;
  margin-top: -14px;
  background: #FFF;
  border: 3px solid #337ab7;
  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.08), 1px 1px 1px rgba(255, 255, 255, 0.03);
}
input[type=radio] + label &gt; i:after {
  content: "";
  position: absolute;
  border-radius: 36px;
  background: #333;
  background: rgba(255, 255, 255, 0.7);
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  margin-left: -8px;
  margin-top: -8px;
  opacity: 1;
  transform: scale(0.5);
}
input[type=radio]:hover + label {
  color: #333;
}
input[type=radio]:hover + label &gt; i:after {
  opacity: 1;
}
input[type=radio]:focus + label, input[type=radio]:active + label {
  color: #333;
}
input[type=radio]:focus + label &gt; i, input[type=radio]:active + label &gt; i {
//  box-shadow: 0 0 1px #333, 0 0 2px #a3e0f8, 0 0 5px #15b0ed;
}
input[type=radio]:checked + label {
  color: #333;
}
input[type=radio]:checked + label &gt; i:after {
  opacity: 1;
  border-radius: 90px;
  background: #f08b3b;
  transform: scale(0.8);
  transition: all 0.2s cubic-bezier(0.555, -0.375, 0, 1.615);
}
input[type=radio]:checked + label &gt; i {
	border: 3px solid #f08b3b;
}
input[type=radio]:focus:checked + label, input[type=radio]:active:checked + label {
  color: #000;
}

.overy{
	position:relative;
}
.overlay
{
	 position: absolute;
	 top: 0;
	 left: 0;
	 right: 0;
	 bottom: 0;
	 background-color: rgba(3, 3, 3, 0.15);
	 z-index: 9999;
	 color: white;
	 cursor:not-allowed;

	display: flex;
	justify-content: center;
	align-items: center;
}

table thead th {
    background: rgb(218,229,238);
}

.scrollable-menu {
    height: auto;
    max-height: 200px;
    overflow-x: hidden;
}

.glyphicon.spinning {
    animation: spin 1s infinite linear;
    -webkit-animation: spin2 1s infinite linear;
}

@keyframes spin {
    from { transform: scale(1) rotate(0deg); }
    to { transform: scale(1) rotate(360deg); }
}

@-webkit-keyframes spin2 {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}</pre></body></html>