.height-full {
    height: 100vh;
}
  
.bg-main {
    background-color: #d35400  ;
    color: #ececec;
}

.bg-second {
    background-color: #f18c48  ;
    color: #ececec;
}

.fg-main {
    color: #d35400;
}

table.tab_seq {
    font-family: monospace;
    border-collapse: collapse;
}

tr.tab_seq {
    border: solid;
    border: 1px dotted;
    border-top: none;
    border-left: none;
    border-right: none;
}

.seq{
    padding: 1px;
    cursor: default;
    font-size: 15px;
}

.seq:hover {
    background-color: #f18c48;
    font-weight: bold;
  }

.seq-div {
    line-height: 15px;
}

td.ligand {
    cursor: default;
    border-left:  1px dotted;
    border-right:  1px  dotted;
}

td.ligand.partial {
    color: #ff3075;
}

td.ligand:hover {
    background-color: #f18c48;
    font-weight: bold;
}

tr.info:hover {
    background-color: #f3bc98;
}

th.seq {
    border-right: 1px  solid;
    float: left;
    font-size:12px;
    width: 70px;
    margin-right: 2px;
}

a.main:link {
    color: #d35400;
}


td.seq.lig {
    color: #d35400;
    font-weight: bold;
}

td.lig {
    color: #d35400;
    font-weight: bold;
}

span.lig {
    color: #d35400;
    font-weight: bold;
}


td.seq.clig {
    color: #d35400;
    font-weight: bold;
    border-left:  1px dashed;
    border-right:  1px  dashed;
    background-color: #f5ecbc;
    
}

td.lig:hover {
    color: #e4e2e2;
    font-weight: bold;
    background-color: #f18c48;
}

div.scrollable {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: auto;
}

nav.navbar a {
    color: #fcfcfc;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}
  
nav.navbar a:hover {
    color: #d6d6d6;
    font-weight: bold;
}

nav.navbar a::before {
    content: '';
    display: block;
    height: 5px;
    background-color: #fcfcfc;

    position: absolute;
    top: 0;
    width: 0%;

    transition: all ease-in-out 250ms;
}

nav.navbar a:hover::before {
    width: 100%;
}

nav.navbar li {
    display: inline-block;
    margin-left: 50px;
    padding-top: 10px;

    position: relative;
}

.card-header.orange {
    font-weight: bold;
    background-color: #d35400;
    color: #ffffff;
}

.card-header.bg-light {
    font-weight: bold;
    color: #d35400;
}

/* HTML: <div class="loader"></div> */
.loader {
    width: 70px;
    aspect-ratio: 1;
    display: grid;
    border: 4px solid #0000;
    border-radius: 50%;
    border-color: #ccc #0000;
    animation: l16 1s infinite linear;
  }
  .loader::before,
  .loader::after {    
    content: "";
    grid-area: 1/1;
    margin: 2px;
    border: inherit;
    border-radius: 50%;
  }
  .loader::before {
    border-color: #d35400 #0000;
    animation: inherit; 
    animation-duration: .5s;
    animation-direction: reverse;
  }
  .loader::after {
    margin: 8px;
  }
  @keyframes l16 { 
    100%{transform: rotate(1turn)}
  }

  .msg {
    font-size: clamp(2rem, 14vmin, 8rem);
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    display: grid;
    line-height: 1;
  }

/* Zoom behavior */
.zoom {
    transition: transform .2s; /* Animation */
}

.zoom:hover {
    transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}


.ttip_cls{
	background-color: rgb(29, 29, 29);
	padding: 10px 10px 10px 10px;
	position: absolute;
	border-radius: 4px;
	margin-top: -55px;
	margin-left: 5px;
	color: white;
	font-weight: bold;
	z-index:10000;
}


