﻿/*Global variables and MIXINS only
    PLEASE DO NOT CREATE STYLES HERE
    Globl Styles are to go into Site.scss
*/
/*Color Variables*/
/*#region Theme Colours*/
/*#endregion*/
/*#region Eye Colours*/
/*#endregion*/
/*Mix Ins - 
 * usage:   .box { @include border-radius(10px); }  
*/
/*@import 'Site.scss';*/
.dox-form {
  height: 100%;
  /* Bootstrap alerts shouldn't have top/bottom extra space! */
}
.dox-form .absolute {
  position: absolute;
  overflow-y: auto;
}
.dox-form .alert {
  margin: 0 10px;
}
.dox-form .data-edit-page {
  height: 100%;
}
.dox-form .data-edit-page .header {
  background: #c5e8f7; /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left top, #9ED3E8, #c5e8f7); /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(bottom right, #9ED3E8, #c5e8f7); /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(bottom right, #9ED3E8, #c5e8f7); /* For Firefox 3.6 to 15 */
  background: linear-gradient(to bottom right, #9ED3E8, #c5e8f7); /* Standard syntax */
  color: #003471;
  text-shadow: 1px 1px transparent;
  height: 40px; /*$dox-header-height;*/
  border-color: rgb(145, 193, 255);
  border-width: 1px;
  border-style: solid;
  background-color: rgba(203, 234, 245, 0.55);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  margin-top: 1px;
  margin-bottom: 5px;
  vertical-align: middle;
  padding: 5px 10px;
  font-size: larger;
  font-weight: bold;
}
.dox-form .data-edit-page .dox-page-body {
  background-color: whitesmoke;
  height: calc(100% - 90px);
  border-bottom: 2px solid rgba(19, 104, 140, 0.37);
  border-top: 2px solid rgba(19, 104, 140, 0.37);
  border-left: 1px solid rgba(19, 104, 140, 0.37);
  border-right: 1px solid rgba(19, 104, 140, 0.37);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  overflow-y: auto;
  /*margin: 0 5px 0 5px;*/
}
.dox-form .data-list-page {
  margin-left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 20px);
  /* Used for the header area - filters, save/edit/open/cancel/etc buttons*/
  /* Used for the detail data area, typically below the header */
}
.dox-form .data-list-page .header {
  border: 1px groove black;
  background-color: rgba(203, 234, 245, 0.55);
  border-radius: 10px;
  margin-top: 5px;
  vertical-align: central;
  position: relative;
  padding: 5px 10px;
}
.dox-form .data-list-page .header td {
  vertical-align: middle;
  font-weight: 500;
  font-size: medium;
}
.dox-form .data-list-page .header .input-group {
  /*height: 45px;*/
}
.dox-form .data-list-page .header .input-group .input-group-addon {
  padding-bottom: 0;
  padding-top: 0;
}
.dox-form .data-list-page .header .input-group .form-control {
  /*height: 45px;*/
  display: inline-block;
}
.dox-form .data-list-page .header .input-group .form-control .k-multiselect-wrap,
.dox-form .data-list-page .header .input-group .form-control .k-picker-wrap {
  height: 100%; /* helps kendo pickers take up form-control height */
  /* kendo date-picker, etc Makes it take full form-control height */
}
.dox-form .data-list-page .header .input-group .form-control .k-multiselect-wrap input.k-input,
.dox-form .data-list-page .header .input-group .form-control .k-picker-wrap input.k-input {
  /*padding-top:9px;
  padding-bottom:9px;*/
  display: inline-block;
  padding-left: 20px;
  padding-right: 20px;
}
.dox-form .data-list-page .data-details-area {
  height: calc(100% - 70px);
  overflow-y: auto;
}
.dox-form #formDetailsTable {
  width: calc(100% - 20px);
}
.dox-form .data-list-table {
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid rgb(145, 193, 255);
  margin-top: 10px;
  border-radius: 10px;
  border-style: groove;
}
.dox-form .data-list-table thead {
  font-weight: 500;
  font-size: medium;
  color: darkblue;
  background-color: rgba(146, 202, 251, 0.2);
  border-bottom: double;
  border-top: thin;
  border-radius: 10px;
}
.dox-form .data-list-table thead td {
  vertical-align: middle;
}
.dox-form .data-list-table thead td label {
  text-wrap: none;
  font-weight: 200;
  vertical-align: middle;
  text-align: center;
}
.dox-form .data-list-table thead td.no-wrap {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.dox-form .data-list-table tbody tr.dox-table-highlight {
  border: 2px black solid;
}
.dox-form .data-list-table tbody tr :hover {
  background-color: lightgray;
}
.dox-form .data-list-table tbody tr :hover td {
  background-color: rgba(203, 234, 243, 0.55);
}
.dox-form .data-list-table tbody tr td.dox-table-highlight {
  font-weight: bolder;
  -moz-text-decoration-style: wavy;
  text-decoration-style: wavy;
}
.dox-form .warning-level-display-big {
  width: 50px;
  font-size: x-large;
  line-height: normal;
  vertical-align: middle;
  margin: 0;
  padding: 0;
}

.dox-panel {
  margin-left: 5px;
}
.dox-panel .panel-heading {
  /*@extend .dox-page-header;*/
  height: 40px;
  margin: 0 1px 0 0;
  padding: 1px;
}
.dox-panel .panel-body {
  height: calc(100% - 40px);
}
.dox-panel .dox-plot-button {
  font-size: large;
  margin-top: -7px;
  width: 100%;
  padding: 0;
  margin-bottom: -2px;
  height: 34px;
}

.dox-currency {
  text-align: right;
  min-width: 75px;
}
.dox-currency::before {
  text-align: left;
  content: "$  ";
  left: -15px;
}

.form-control.number-input {
  max-width: 100px;
}

.btn-file {
  position: relative;
  overflow: hidden;
}

.btn-file input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  outline: none;
  background: white;
  cursor: inherit;
  display: block;
}

/*.dox-fixed-header-table {
    white-space: nowrap;


    thead {
        tr {
            height: auto;
            position: relative;
            display: inline-block;
        }

        tr td {
        }
    }

    tbody {
        overflow-x: hidden;
        overflow-y: auto;
        height: calc(100% - 120px);


        tr td {
            padding-right: 22px;
            vertical-align: top;
        }
    }
}*/
/*Grid Selector Styles*/
.dox-select-grid-visible .k-widget.k-window.k-window-titleless {
  display: none !important;
}

.dox-select-grid-component {
  background-color: #dfe7ea;
  position: fixed;
  top: 34px;
  left: 0px;
  z-index: 50000;
  padding: 5px;
  width: 100%;
  border: 1px solid darkgrey;
  height: auto !important;
}
.dox-select-grid-component .grid-component-heading {
  font-variant: small-caps;
  color: darkblue;
  text-align: center;
  margin-bottom: 5px;
}
.dox-select-grid-component .selection-grid {
  background-color: #C6E2EE;
}
.dox-select-grid-component .selection-grid .row {
  background-color: rgba(211, 211, 211, 0.33);
  margin: 0;
  padding: 0;
}
.dox-select-grid-component .selection-grid .row .col {
  display: inline-block;
  cursor: pointer;
  width: 100%;
  border: 1px solid lightgrey;
  padding: 0;
  margin: 0;
}
.dox-select-grid-component .selection-grid .row .col:hover {
  color: darkblue;
  background-color: #333333;
  width: 100%;
  border: 1px solid black;
  border-radius: 3px;
}
.dox-select-grid-component .selection-grid .row .col .selection-grid-option {
  margin: 0;
  padding: 2px 2px;
  width: 100%;
  height: 34px;
  align-content: center;
  text-align: center;
  background-color: #f1f8f8;
  border: 1px ridge lightgrey;
  font-size: 14px;
}
.dox-select-grid-component .selection-grid .row .col.selected {
  color: blue;
  font-weight: bold;
  background-color: orange;
}

.table-striped.dox-dark-striped-table {
  border: 1px solid;
  border-color: cornflowerblue;
}
.table-striped.dox-dark-striped-table > tbody > tr:nth-child(odd) > td,
.table-striped.dox-dark-striped-table > tbody > tr:nth-child(odd) > th {
  background-color: #C6E2EE;
  border-bottom: 1px solid;
  border-bottom-color: cornflowerblue;
}
.table-striped.dox-dark-striped-table > tbody > tr:nth-child(even) > td,
.table-striped.dox-dark-striped-table > tbody > tr:nth-child(even) > th {
  background-color: #e0e3ed;
  border-bottom: 1px solid;
  border-bottom-color: cornflowerblue;
}

/* Check Box Stuff 
http://codepen.io/bbodine1/pen/novBm

*/
/*import "compass/css3";*/
/* $activeColor: #c0392b; //red */
/* $background: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/13460/dark_wall.png'); */
/* .slideOne */
.slideOne {
  width: 50px;
  height: 10px;
  background: #333;
  margin: 20px auto;
  position: relative;
  border-radius: 50px;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.2);
}

.slideOne label {
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: -3px;
  left: -3px;
  cursor: pointer;
  background: #fcfff4;
  background: -webkit-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  background: linear-gradient(to bottom, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  border-radius: 50px;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.slideOne input[type=checkbox] {
  visibility: hidden;
}

.slideOne input[type=checkbox]:checked + label {
  left: 37px;
}

/* end .slideOne */
/* .slideTwo */
.slideTwo {
  width: 80px;
  height: 30px;
  background: #333;
  /*margin: 20px auto;*/
  position: relative;
  border-radius: 50px;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.2);
}

.slideTwo:after {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  height: 2px;
  width: 52px;
  background: #111;
  border-radius: 50px;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.2);
}

.slideTwo label {
  display: block;
  width: 22px;
  height: 22px;
  cursor: pointer;
  position: absolute;
  top: 4px;
  z-index: 1;
  left: 4px;
  background: #fcfff4;
  border-radius: 50px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
  background: -webkit-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  background: linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
}

.slideTwo label:after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 6px;
  left: 6px;
  background: #333;
  border-radius: 50px;
  box-shadow: inset 0px 1px 1px black, 0px 1px 0px rgba(255, 255, 255, 0.9);
}

.slideTwo input[type=checkbox] {
  visibility: hidden;
}

.slideTwo input[type=checkbox]:checked + label {
  left: 54px;
}

.slideTwo input[type=checkbox]:checked + label:after {
  background: #27ae60;
  /*activeColor*/
}

/* end .slideTwo */
/* .slideThree */
.slideThree {
  width: 80px;
  height: 26px;
  background: #333;
  /*margin: 20px auto;*/
  position: relative;
  border-radius: 50px;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.2);
}

.slideThree:after {
  content: "OFF";
  color: #000;
  position: absolute;
  right: 10px;
  z-index: 0;
  font: 12px/26px Arial, sans-serif;
  font-weight: bold;
  text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.15);
}

.slideThree:before {
  content: "ON";
  color: #27ae60;
  position: absolute;
  left: 10px;
  z-index: 0;
  font: 12px/26px Arial, sans-serif;
  font-weight: bold;
}

.slideThree label {
  display: block;
  width: 34px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  top: 3px;
  left: 3px;
  z-index: 1;
  background: #fcfff4;
  background: -webkit-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  background: linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  border-radius: 50px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
}

.slideThree input[type=checkbox] {
  visibility: hidden;
}

.slideThree input[type=checkbox]:checked + label {
  left: 43px;
}

/* end .slideThree */
/* .roundedOne */
.roundedOne {
  width: 28px;
  height: 28px;
  position: relative;
  /*margin: 20px auto;*/
  background: #fcfff4;
  background: -webkit-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  background: linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  border-radius: 50px;
  box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
}

.roundedOne label {
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  left: 4px;
  top: 4px;
  background: -webkit-linear-gradient(top, #222 0%, #45484d 100%);
  background: linear-gradient(top, #222 0%, #45484d 100%);
  border-radius: 50px;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px white;
}

.roundedOne label:after {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 2px;
  left: 2px;
  background: #27ae60;
  background: -webkit-linear-gradient(top, #27ae60 0%, #145b32 100%);
  background: linear-gradient(top, #27ae60 0%, #145b32 100%);
  opacity: 0;
  border-radius: 50px;
  box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
}

.roundedOne label:hover::after {
  opacity: 0.3;
}

.roundedOne input[type=checkbox] {
  visibility: hidden;
}

.roundedOne input[type=checkbox]:checked + label:after {
  opacity: 1;
}

/* end .roundedOne */
/* .roundedTwo */
.roundedTwo {
  width: 28px;
  height: 28px;
  position: relative;
  /*margin: 20px auto;*/
  background: #fcfff4;
  background: -webkit-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  background: linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  border-radius: 50px;
  box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
}

.roundedTwo label {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 4px;
  left: 4px;
  cursor: pointer;
  background: -webkit-linear-gradient(top, #222 0%, #45484d 100%);
  background: linear-gradient(top, #222 0%, #45484d 100%);
  border-radius: 50px;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px white;
}

.roundedTwo label:after {
  content: "";
  width: 9px;
  height: 5px;
  position: absolute;
  top: 5px;
  left: 4px;
  border: 3px solid #fcfff4;
  border-top: none;
  border-right: none;
  background: transparent;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.roundedTwo label:hover::after {
  opacity: 0.3;
}

.roundedTwo input[type=checkbox] {
  visibility: hidden;
}

.roundedTwo input[type=checkbox]:checked + label:after {
  opacity: 1;
}

/* end .roundedTwo */
/* .squaredOne */
.squaredOne {
  width: 28px;
  height: 28px;
  position: relative;
  /*margin: 20px auto;*/
  background: #fcfff4;
  background: -webkit-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  background: linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
}

.squaredOne label {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 4px;
  left: 4px;
  cursor: pointer;
  background: -webkit-linear-gradient(top, #222 0%, #45484d 100%);
  background: linear-gradient(top, #222 0%, #45484d 100%);
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px white;
}

.squaredOne label:after {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 2px;
  left: 2px;
  background: #27ae60;
  background: -webkit-linear-gradient(top, #27ae60 0%, #145b32 100%);
  background: linear-gradient(top, #27ae60 0%, #145b32 100%);
  box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
  opacity: 0;
}

.squaredOne label:hover::after {
  opacity: 0.3;
}

.squaredOne input[type=checkbox] {
  visibility: hidden;
}

.squaredOne input[type=checkbox]:checked + label:after {
  opacity: 1;
}

/* end .squaredOne */
/* .squaredTwo */
.squaredTwo {
  width: 28px;
  height: 28px;
  position: relative;
  /*margin:  auto;*/
  background: #fcfff4;
  background: -webkit-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  background: linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
}

.squaredTwo label {
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  left: 4px;
  top: 4px;
  background: -webkit-linear-gradient(top, #222 0%, #45484d 100%);
  background: linear-gradient(top, #222 0%, #45484d 100%);
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px white;
}

.squaredTwo label:after {
  content: "";
  width: 9px;
  height: 5px;
  position: absolute;
  top: 4px;
  left: 4px;
  border: 3px solid #fcfff4;
  border-top: none;
  border-right: none;
  background: transparent;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.squaredTwo label:hover::after {
  opacity: 0.3;
}

.squaredTwo input[type=checkbox] {
  visibility: hidden;
}

.squaredTwo input[type=checkbox]:checked + label:after {
  opacity: 1;
}

/* end .squaredTwo */
/* .squaredThree */
.squaredThree {
  width: 20px;
  position: relative;
  /*margin: 20px auto;*/
}

.squaredThree label {
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-linear-gradient(top, #222 0%, #45484d 100%);
  background: linear-gradient(top, #222 0%, #45484d 100%);
  border-radius: 4px;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.4);
}

.squaredThree label:after {
  content: "";
  width: 9px;
  height: 5px;
  position: absolute;
  top: 4px;
  left: 4px;
  border: 3px solid #fcfff4;
  border-top: none;
  border-right: none;
  background: transparent;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.squaredThree label:hover::after {
  opacity: 0.3;
}

.squaredThree input[type=checkbox] {
  visibility: hidden;
}

.squaredThree input[type=checkbox]:checked + label:after {
  opacity: 1;
}

/* end .squaredThree */
/* .squaredFour */
.squaredFour {
  width: 20px;
  position: relative;
  margin: 20px auto;
}

.squaredFour label {
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  background: #fcfff4;
  background: -webkit-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  background: linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  border-radius: 4px;
  box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
}

.squaredFour label:after {
  content: "";
  width: 9px;
  height: 5px;
  position: absolute;
  top: 4px;
  left: 4px;
  border: 3px solid #333;
  border-top: none;
  border-right: none;
  background: transparent;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.squaredFour label:hover::after {
  opacity: 0.5;
}

.squaredFour input[type=checkbox] {
  visibility: hidden;
}

.squaredFour input[type=checkbox]:checked + label:after {
  opacity: 1;
}

/* end .squaredFour */
* {
  box-sizing: border-box;
}

/* end of checkbox stuff */
/*quick print styles*/
.quick-print-new-form-footer {
  background-color: #e2e5e6;
  position: fixed;
  bottom: 0;
  /* left: 0; */
  right: 0;
  border: 1px grey solid;
  -webkit-border-radius: 5;
  -moz-border-radius: 5;
  border-radius: 5;
}

/*Help Tooltip CSS  - for Running in Help Mode  - TO FIGURE OUT HOW TO IMPLEMENT HELP MODE
	Theory - Click Tutorial on Menu
	Run Through Tutorial on Screen 
	Exit Tutorial Mode - Perhaps too much trouble - better to have tutorial videos in Help File??
*/
.dox-help-tip {
  position: absolute;
  top: 18px;
  right: 18px;
  text-align: center;
  background-color: #BCDBEA;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 14px;
  line-height: 26px;
  cursor: default;
}

.dox-help-tip:before {
  content: "?";
  font-weight: bold;
  color: #fff;
}

.dox-help-tip:hover p {
  display: block;
  transform-origin: 100% 0%;
  -webkit-animation: fadeIn 0.3s ease-in-out;
  animation: fadeIn 0.3s ease-in-out;
}

.dox-help-tip p { /* The tooltip */
  display: none;
  text-align: left;
  background-color: #1E2021;
  padding: 20px;
  width: 300px;
  position: absolute;
  border-radius: 3px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  right: -4px;
  color: #FFF;
  font-size: 13px;
  line-height: 1.4;
}

.dox-help-tip p:before { /* The pointer of the tooltip */
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-bottom-color: #1E2021;
  right: 10px;
  top: -12px;
}

.dox-help-tip p:after { /* Prevents the tooltip from being hidden */
  width: 100%;
  height: 40px;
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
}

/* CSS animation */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  100% {
    opacity: 100%;
    transform: scale(1);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}
