::-webkit-scrollbar {
    width: 0.5rem;
    height: 0.5rem;
}


::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1); 
    border-radius: 1rem;
}

::-webkit-scrollbar-thumb {
    border-radius: 1rem;
    /*-webkit-box-shadow: inset 0 0 6px rgba(255,255,255,0.5); */
/*     background-color: rgba(50,187,230,0.5); */
    background-color: rgba(255,255,255,0.5);
    
    width:0.1rem;
}




/* Hide the browser's default checkbox */
/* The container */
.floating-checkBox-container {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.floating-checkBox-container input {
  opacity: 0;
  cursor: pointer;
}

/* Create a custom checkbox */
.floating-checkMark {
  top: 0;
  left: 0;
  background-color: #eee;
}

.floating-checkBox-container input {
  opacity: 0;
  cursor: pointer;
}

/* Create a custom checkbox */
.floating-checkMark {
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.floating-checkBox-container:hover input ~ .floating-checkMark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.floating-checkBox-container input:checked ~ .floating-checkMark {
  background-color: #2196F3;
}

/* Create the floating-checkMark/indicator (hidden when not checked) */
.floating-checkMark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the floating-checkMark when checked */
.floating-checkBox-container input:checked ~ .floating-checkMark:after {
  display: block;
}

/* Style the floating-checkMark/indicator */
.floating-checkBox-container .floating-checkMark:after {
  left: 50%;
  top: 45%;
  width: 25%;
  height: 50%;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: translate(-50% , -50%) rotate(45deg);
}

.floating-text-shadow-long
{
text-shadow: 1px -1px 0 #767676, -1px 2px 1px #737272, -2px 4px 1px #767474, -3px 6px 1px #787777, -4px 8px 1px #7b7a7a, -5px 10px 1px #7f7d7d, -6px 12px 1px #828181, -7px 14px 1px #868585, -8px 16px 1px #8b8a89, -9px 18px 1px #8f8e8d, -10px 20px 1px #949392, -11px 22px 1px #999897, -12px 24px 1px #9e9c9c, -13px 26px 1px #a3a1a1, -14px 28px 1px #a8a6a6, -15px 30px 1px #adabab, -16px 32px 1px #b2b1b0, -17px 34px 1px #b7b6b5, -18px 36px 1px #bcbbba, -19px 38px 1px #c1bfbf, -20px 40px 1px #c6c4c4, -21px 42px 1px #cbc9c8, -22px 44px 1px #cfcdcd, -23px 46px 1px #d4d2d1, -24px 48px 1px #d8d6d5, -25px 50px 1px #dbdad9, -26px 52px 1px #dfdddc, -27px 54px 1px #e2e0df, -28px 56px 1px #e4e3e2;
}


.floating-full{
    position:absolute !important;
    left:0 !important;
    right:0 !important;
    top:0 !important;
    bottom:0 !important;
}
.floating-full-1{
    position:absolute !important;
    left:1rem !important;
    right:1rem !important;
    top:1rem !important;
    bottom:1rem !important;
}
.floating-full-2{
    position:absolute !important;
    left:2rem !important;
    right:2rem !important;
    top:2rem !important;
    bottom:2rem !important;
}