@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  --shadow: rgba(0, 0, 0, 0.05) 0px 6px 10px 0px,
    rgba(0, 0, 0, 0.1) 0px 0px 0px 1px;
  --color: #166e67;
  --gap: 0.5rem;
  --radius: 5px;
}

body {
  margin: 1rem;
  background-color: WhiteSmoke;
  font-size: 0.9rem;
  color: black;
}

.sep{
	border-left: 1px solid #E0E0E0;
	border-right: 1px solid lightgrey;
	//margin: 0 5px;
	margin-top: 3px; 
	height: 50px;
	position: relative;
	width: 0;
	float: left;
}


.btn {
  background-color: white;
 // display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: var(--gap);
  padding: 0.05rem;
  cursor: pointer;
  border-radius: var(--radius);
  border: none;  
  position: relative;
}
 
.btn:hover {
  border: 1px solid #F1C43F;
  background: #fdeeb3;
}
 

.v-div{

	display: grid;
    grid-template-rows: auto;
}


.h-div{
	//width: 100px; 
	 height: 35px;
	float:left; 
	margin:3px; 
	margin-right:8px;
}

.fixed-div {
    position: fixed;
    top: 0px; /* Adjust as needed */
    left: 0px; /* Adjust as needed */
    z-index: 125;
}


.canvas {
    //position: fixed;
    top: 50px; /* Adjust as needed */
    left: 0px; /* Adjust as needed */
    min-width: 768px;
    z-index: 120;
}


.ribbon
{
  font-family: "Segoe UI" , Verdana, Tahoma, Helvetica, sans-serif;
  cursor: default;
	font-size: 8pt;
	padding-top: 2px;
	background-color: white;
	border-bottom: 1px solid #8b9097;
	border-radius: 3px 3px 3px 3px;
	-webkit-box-shadow: #8b9097 0px 1px 3px;
	-moz-box-shadow: #8b9097 0px 1px 3px;	
	box-shadow: #8b9097 0px 1px 3px;
	overflow: hidden;
	z-index: 25;
	//position: fixed;	
	top: 0;
	left: 0;
	right: 5;
	height: 80px;
	min-width: 768px;
}



.tab {
  background-color: WhiteSmoke;
 // display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: var(--gap);
  padding: 0.4rem;
  cursor: pointer;
  border-radius: var(--radius);
  border: none;
  //box-shadow: var(--shadow);
  position: relative;
}
/*
.tab:hover {
  text-decoration: underline;
  text-decoration-color: red;
  text-underline-offset: 3px;
}
*/
.bx {
  font-size: 1.1rem;
}

.adropdown {
  position: absolute;
   position: relative;
   left: 100px;
  width: 250px;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  margin-top: 0.3rem;
  background: white;
}

.dropdown a {
  display: flex;
  align-items: center;
  column-gap: var(--gap);
  padding: 0.8rem 1rem;
  text-decoration: none;
  color: black;
}

.dropdown a:hover {
  background-color: var(--color);
  color: yellow;
}



.Operations{ 
position: absolute;
left: 82px;
}

.Analysis { 
position: absolute;
left: 228px;
}

.Help { 
position: absolute;
left: 325px;
}

.dropdown {
   position: absolute;
//  position: relative;
 
  width: 250px;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  margin-top: 0.3rem;
  background: white;
  transition: all 0.1s cubic-bezier(0.16, 1, 0.5, 1);

  transform: translateY(0.5rem);
  visibility: hidden;
  opacity: 0;
}

.show {
  transform: translateY(0rem);
  visibility: visible;
  opacity: 1;
}

.arrow {
  transform: rotate(180deg);
  transition: 0.2s ease;
}