/* width */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: rgb(99, 140, 163);
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgb(99, 140, 163);
}

.alert {
    padding: 20px;
    background-color: #f44336;
    color: white;
}

.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 13px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.closebtn:hover {
    color: black;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

.callout {
    bottom: 35px;
    right: 20px;
    margin-left: 20px;
    max-width: 300px;
    z-index: 1000;
    position: absolute;
}

.callout-header {
    padding: 25px 15px;
    background: #555;
    font-size: 15px;
    color: white;
}

.callout-container {
    padding: 15px;
    background-color: #ccc;
    color: black;
}

.closebtn {
    position: absolute;
    top: 5px;
    right: 15px;
    color: white;
    font-size: 15px;
    cursor: pointer;
}

.closebtn:hover {
    color: lightgrey;
}

.top-row {
    width: 100%;
    margin: auto;
    background-color: rgb(41, 176, 255);
    background-image: linear-gradient(
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.25) 25%,
      rgba(0, 0, 0, 0) 70%
    );
    color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    z-index: 1030;
  }
  
  .hidewhenPrint {
    display: block; /* This is just to define it in the CSS if it isn't already */
  }
  