:root {
    --bg-color: 255,255,255;
    --tx-color: 20,23,26;
    --hi-color: 227,208,36;
    --hii-color: 227,208,36;
    --btn-color: 20,25,30;
    --btt-color: 20,25,30;
}
:root.text--theme {
    --bg-color: 0,0,0;
    --tx-color: 255,255,255;
    --hi-color: 255,127,80;
    --hii-color: 255,127,80;    
    --btn-color: 255,255,255;
    --btt-color: 255,255,255;
}

::-moz-selection { background: var(--hi-color); }
::selection { background: var(--hi-color); }
input:focus { outline:none; }
:focus { background-color: transparent; }

* {
  cursor: none;
}

body { 
	font-family: 'IBM Plex Sans', sans-serif;
	font-size: 14px;
    line-height: 16px;
    color: rgb(var(--tx-color));
    background-color: rgb(var(--bg-color));        
/*    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;    
    opacity: 0;
    -webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;	
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-delay: .3s;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }   */
}

#backimage {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: fixed;
    opacity: .8;
    background-image: url("");
    background-repeat: repeat-x;
    background-position: center;
    background-size: contain;
    background-attachment: fixed;
    z-index: -1000;
}

.cursor {
  position: absolute;
  height: 10px;
  width: 10px;
  transform:scale(1);
  border-radius: 50%;
  transition: all 0.35s, top 0s, left 0s;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2000;
  background-color: rgb(var(--hi-color));
}

.cursor.second-cursor {
    background-color: rgba(var(--hii-color),1);
    border:1px solid rgba(var(--hi-color),0);
    height:20px;
    width:20px;
    padding: 10px;
    mix-blend-mode: multiply;    
}

.second-cursor.big { 
    height:200px;
    width:200px;  
    background-color: rgba(var(--hii-color),1);
}

h1, h2 {
    font-family: 'IBM Plex Sans', sans-serif;        
    font-size: 20px; 
    line-height: 20px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 4px;
}

h1 {
    line-height: 1;
}

h2 {
    font-size: 48px; 
    line-height: 42px; 
}

.fit {
    display: inline-block;
    white-space: nowrap;
}

.keep {
    white-space:nowrap;
}


a {
    color: rgb(var(--tx-color));
    text-decoration: none;    
}

a:hover, a:focus, a:active { 
    color: rgb(var(--tx-color));    
	text-decoration: none;
}

a:hover p.loud, a.credits:hover { 
    text-decoration: none;
}

sup {
    font-size: 60%;
    color: blue;
    text-transform: capitalize;
}

a:hover sup {
    color: rgb(var(--tx-color));    
}

.arrow {
    color: blue;
}

a:hover .arrow {
    color: rgb(var(--tx-color));    
}


/* BTN BAR */

.btn-menu {
    pointer-events: none;
}

.btn-float {
    height: 30px;
    border-radius: 25px;
    font-size: small;
    padding: 0 20px;
    margin: 0 1px;
    color: rgba(var(--btt-color),.3);    
    background: rgba(var(--btn-color),.1);    
    z-index: 1200;
    pointer-events: auto;
    border: 1px solid transparent;
    transition: all .5s ease;        
}

.btn-float.active {
    color: rgba(var(--btt-color),.7);    
    background: rgba(var(--btn-color),.2);             
    border: 1px solid transparent;
    cursor: none;
    outline: 0;
    box-shadow: none;
}

.btn-float:hover,
.btn-float:focus {
    color: rgba(var(--bg-color),1);    
    background: rgba(var(--btn-color),1);             
    border: 1px solid transparent;
    cursor: none;
    transition: all .5s ease;   
    outline: 0;
    box-shadow: none;
}

.btn-float:focus {
    color: rgba(var(--btt-color),.7);    
    background: rgba(var(--btn-color),.2);             
}

.btn-external {
height: 16px;
    border-radius: 25px;
    font-size: 9px;
    padding: 0 10px;
    margin: -2px 1px 4px;
    color: rgba(var(--tx-color), .6);
    /* background: transparent; */
    border: 0px solid rgba(var(--white), .4);
    z-index: 1200;
    pointer-events: auto;
    transition: all .5s ease;
    letter-spacing: 1px;
}

.btn-external:hover,
.btn-external:focus {
    color: rgba(var(--tx-color), 1);    
    background: rgba(var(--white), .2);    
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);    
    border: 0px solid rgba(var(--white), .4);
    cursor: none;
    transition: all .5s ease;   
    outline: 0;
    box-shadow: none;
}

/* From https://css.glass */
.glass {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

#change-theme {
    color: rgba(var(--tx-color), 1);
}

/* TABLE */

#memoriesTable {
    padding-top: 20rem;
}

@keyframes fadein {
  from { display: flex; opacity: 0;}
  to { opacity: 1;}
}

@keyframes fadeout {
  from { display: flex;}
  to { opacity: 0;}
}

.memory {
    transition: opacity 100ms, display 100ms;
    display: none!important;
    opacity: 0;
    margin-bottom: 8px;        
}

.memory p {
    text-transform: uppercase;
    margin-bottom: 0;
}

.show {
    display: flex!important;
    animation: fadein .5s;
    opacity: 1;
}

.tab {
    background-color: rgba(var(--white), .1);
    border-radius: 10px;    
}

.workin .rotate-tab {
    position: absolute;
    bottom: 30px;
    left: -5px;
    width: 80px;  
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);
}

.workin .rotate-tab p {
    line-height: 4px;
}

.whatsup {
    width: 100%;
    height: 80px;
    padding: 10px;
    line-height: 20px;
    background-color: rgba(var(--white), .1);
    border-radius: 10px;
}

.linked {
    transition: .2s all;
}

.linked:focus, .linked:hover {
  background: #fff;
}
.linked:focus ~ .linked, .linked:hover ~ .linked {
  background: #fff;
}

.linked-no:focus, .linked-no:hover {
    background-color: rgba(var(--white), .1);
}




.table {
    color: rgba(var(--tx-color), .8);
    font-size: small;
    font-weight: 400;
    border-top: none; 
    margin-top: 14rem;
}

.table>:not(caption)>*>* {
    border-bottom: none;
    box-shadow: none;
}

.table>:not(:last-child)>:last-child>* {
    border-bottom: none;
}

.table-hover > tbody > tr {
    transition: all 1s ease;
    background-color: rgba(var(--hi-color), 1);
    border-radius: 25px;  

}

.table-hover > tbody > tr:hover {
    color: rgba(var(--tx-color), 1);
    background-color: rgba(var(--white), .2);
    transition: all .5s ease;         
}

.table-hover > tbody > tr:hover a {
    color: rgba(var(--tx-color), 1);
}

.table-hover > tbody > tr a:after {
        content: ' \2192';
}

.table-hover a:hover { 
    color: rgba(var(--tx-color), 1);
    text-decoration: none;
}

/* TABLE RESULTS */

tr {
}


/* .results tr[visible='false'],
.no-result{
    display:none;
}

.results tr[visible='true']{
    display:table-row;
} */


/* TABLE SEARCH 

.cerca {
    margin-top: 8rem;
} 

.count {
    min-width: 100px;
}

.counter {
  line-height: 1.5; 
  color: rgba(var(--tx-color), .25);
}

.form-control, .form-control:focus {
    text-transform: uppercase;
    background: none;
    border-radius: 0;
    border: none;
    border-bottom: 0px solid rgba(var(--white), .4);
    line-height: 1.5;
    color: rgba(var(--tx-color), .6);
}

.form-control:focus {
    box-shadow: none!important;
}

.form-control::placeholder {
    color: rgba(var(--tx-color), .25);
}

*/

/* TABLE IMAGES */

#td-img {
    height: 48px;
    mix-blend-mode: soft-light;
}


/* ABOUT TEXT */

.deleted {
     position: relative;
     width: fit-content;
   }
  
.deleted::after {
    content: "";
    width: 100%;
    height: 1px;
    background: rgba(var(--tx-color)); 
    position: absolute;
    bottom: 6px;
    left: 0; 
   }

/* STICKER DRAGGABLE */

#draggable {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: none;
}

.sticky-round {
    width:120px;
    height: 120px;
    top: 32px;
    left: 260px;
    border-radius: 50%;
    background: rgba(var(--tx-color), .25);        
    z-index: 1090;
    transform: rotate(-5deg);
}

.sticky-round p {
    position: absolute;
    top: 50px;
    left: 35px;
    font-size: 12px;
    letter-spacing: .6em;
    color: rgb(var(--tx-color));
}

.sticky-round g {
    fill: rgb(var(--tx-color));
}

/* UTILITY */

.halftone {
    color: rgba(var(--tx-color), .3);
}

.text p {
    font-size: 18px;
    line-height: 22px;
    margin: 2px 0 4px;
    width: 80%;
}

p.loud {
    font-size: 20px;
    line-height: 22px;
    text-transform: uppercase;
    margin: 2px 0 2px;
}

p.louder {
    font-size: 28px;
    line-height: 30px;
    width: 100%;
}
