@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
@font-face {
    font-family: great-vibes;
	src: url("GreatVibes-Regular.ttf");
}

@font-face {
    font-family: lateef;
	src: url("Lateef-Regular.ttf");
}

@font-face {
    font-family: lateef;
    font-weight: bold;
	src: url("Lateef-SemiBold.ttf");
}

*{
    list-style: none;
    text-decoration: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body{
    background: #f5f6fa;
}

.diamond {
    background-image: url("../images/Certified_Diamonds_Header_V3.png");
    background-position: center top;
    background-color: #000000;
    background-size: cover;
}

.diamond-dark {
    background-color: #3F3F3F;
}

.diamond-light {
    color: #f4fbff;
    font-size: 20px;
}

.navbar {
    height: 160px;
}

.navbar .profile img{
    display: block;
    width: 205px;
    height: 120px;
    text-align: center;
}

.sidebar ul li a{
    display: block;
    padding: 13px 30px;
    /*border-bottom: 1px solid #10558d;*/
    color: rgb(241, 237, 237);
    font-size: 16px;
    position: relative;
}

.sidebar ul li a .icon{
    color: #dee4ec;
    width: 30px;
    display: inline-block;
}

.diamond-layout {
    height: 100%;
    background-image: url("../images/diamond-upload.jpg");
}

.diamond-hamburger {
    height: 50px;
}

.diamond-hamburger a{
    font-size: 30px;
    color: #9B8E69;
    padding-left: 30px;
}

.diamond-hamburger a:hover{
    color: #3F3F3F;
    padding-bottom: 10px;
}

.diamond-navheading{
    color: #dee4ec;
    font-weight: bold;
    font-family: Cabin, sans-serif;
    display: block;
    font-size: 16px;
    padding: 15px 30px;
}

.diamond-sidebar ul li a .diamond-icon{
    color: #dee4ec;
    width: 20px;
    display: inline-block;
}

#diamond-sidebar{
    background: #3F3F3F;
    min-width:310px;
    max-width:310px;
    color: #dee4ec;
    transition: all 0.5s ease;
    padding-left: 15px;
    border: 1px solid #3F3F3F;
    border-radius: 15px;
    position: relative;
    left: 10px;
}

#diamond-sidebar.active {
    margin-left:-285px
  }

.diamond-content {
    width: calc(100% - 275px);
    padding-left: 20px;
}

.diamond-wrapper {
    display:flex;
    width:100%;
    align-items:stretch;
    margin-bottom: 20px;
}

.diamond-sidebar ul li a:hover,
.diamond-sidebar ul li a.active{
    color: #9B8E69;
    background:white;
}

.diamond-sidebar ul li a:hover:before,
.diamond-sidebar  ul li a.active:before{
    display: block;
}

.diamond-sidebar ul li a:hover .diamond-icon,
.diamond-sidebar ul li a.active .diamond-icon {
    color: #9B8E69;
}

.diamond-sidebar ul li a:hover:before .diamond-icon,
.diamond-sidebar ul li a.active:before .diamond-icon {
    display: block;
}

.diamond-button,
.diamond-table-thead {
    background: #9B8E69;
    color: white;
}

.diamond-link {
    color: #9B8E69;
    font-size: 16pt;
}

.diamond-subtitle {
    text-decoration-line: underline;
    font-size: 22pt;
}

.diamond-header-subtitle-container {
    line-height: .75;
}

.diamond-header-subtitle {
    text-align: center;
}

.diamond-header-subtitle span {
    font-family: great-vibes;
    color: #9b8e69;
    font-size: 60px;
    text-rendering: optimizeLegibility;
    margin: 0px;
    padding: 0px;
}

#line2  {
    text-align: center;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: Lateef,cursive;
    vertical-align: top;
}

.diamond-header-subtitle-separator {
    margin: 2px 0 0 0;
    height: 4px;
    width: 70px;
    display: inline-block;
    vertical-align: middle;
    background-color: #9b8e69;
    text-align: center;
}

/* Tooltip container */
.diamond-tooltip {
  position: relative;
  display: inline-block;
}

/* Tooltip text */
.diamond-tooltip .diamond-tooltiptext {
  visibility: hidden;
  width: 300px;
  background-color: #9B8E69;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.diamond-tooltip:hover .diamond-tooltiptext {
  visibility: visible;
}