body  {
    background-image: url("https://www.mysoftware4schools.co.uk/images/sky_new.jpg");
    background-repeat: no-repeat;
}
.scrollit {
    overflow-y:scroll;
    height:465px;
    display:block;
}
             /* Background image and Fonts */
.kbw-signature { width: 600px; height: 200px;}
#sig canvas{
    width: 100% !important;
    height: auto;
}
                /* underline style single and double */
div.c {
    text-decoration-line: underline;
    text-decoration-style: double;
    text-decoration-color: red;
    font-weight: bold;
}
div.b {
    text-decoration-line: underline;
    text-decoration-style: single;
    text-decoration-color: red;
    font-weight: bold;
}

div.a {
    text-decoration-line: underline;
    text-decoration-style: single;
    text-decoration-color: blue;
    font-weight: bold;
}
div.relative {
    position: fixed;
}

div.short {
    white-space: nowrap;
    width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
}
div.short:hover .absolute {
    display: block;
}
.absolute{
    width:200px;
    height:60px;
    background:#f00;
    position:absolute;
    top:20px;
    left:30px;
    display:none;
}
.tooltip {
    display:inline-block;
    position:relative;
    border-bottom:1px dotted #666;
    text-align:left;
}

.tooltip .bottom {
    min-width:200px;
    max-width:250px;
    top:20px;
    left:50%;
    transform:translate(-50%, 0);
    padding:10px 20px;
    color:#FFFFFF;
    background-color:#0000FF;
    font-weight:normal;
    font-size:13px;
    border-radius:8px;
    position:absolute;
    z-index:99999999;
    box-sizing:border-box;
    box-shadow:0 1px 8px transparent;
    display:none;
}

.tooltip:hover .bottom {
    display:block;
}

.tooltip .bottom i {
    position:absolute;
    bottom:100%;
    left:50%;
    margin-left:-12px;
    width:24px;
    height:12px;
    overflow:hidden;
}

.tooltip .bottom i::after {
    content:'';
    position:absolute;
    width:12px;
    height:12px;
    left:50%;
    transform:translate(-50%,50%) rotate(45deg);
    background-color:#0000FF;
    box-shadow:0 1px 8px transparent;
}/* main styling starts here */
.sidenav {
    height: 100%;
    width: 100%;
/*  position: fixed;    */
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #0000FF;
    overflow-x: hidden;
    padding-top: 5px;
}

/* Style the sidenav links and the dropdown button */
.sidenav a {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    font-size: 12px;
    color: #FFFFFF;
    display: block;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
}
.dropdown-btn {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    font-size: 20px;
    color: #FFFFFF;
    display: block;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
}
/* On mouse-over */
.sidenav a:hover, .dropdown-btn:hover {
    color: #000000;
    background-color: #FFFFFF;
}

/* Add an active class to the active dropdown button */
.active {
    background-color: white;
    color: black;
}

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
    display: none;
    background-color: #262626;
/*  padding-left: 8px;  */
}

/* Optional: Style the caret down icon */
.fa-arrow-circle-down {
    float: right;
    padding-right: 8px;
    }
.fa-arrow-circle-up {
    float: right;
    padding-right: 8px;
    }
.fa-arrow-circle-right {
    float: right;
    padding-right: 30px;
}


.fa-ban {
    float: right;
    padding-right: 30px;
}
.fa-arrow-circle-right.active {
        transform: rotate(180deg);
}
/* Some media queries for responsiveness */
@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}
a {
    color: #0000FF;
    text-decoration: none;
}
a:hover {
    color: #FFFFFF;
    background-color: B2B3FF;
}
a:active {
    color: green;
}


/* div blue box ends */
div.topBoxLeft {
    border-top-left-radius: 10px;
    background: #0000ff;
    padding: 0px;
    width: 10px;
    height: 30px;
}
div.topBoxRight {
    border-top-right-radius: 10px;
    background: #0000ff;
    padding: 0px;
    width: 10px;
    height: 30px;
}
div.bottomboxLeft {
    border-bottom-left-radius: 10px;
    background: #0000ff;
    padding: 0px;
    width: 10px;
    height: 30px;
}
div.bottomboxRight {
    border-bottom-right-radius: 10px;
    background: #0000ff;
    padding: 0px;
    width: 10px;
    height: 30px;
}
div.fullBottomBox {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: #0000FF;
    padding: 0px;
    width: 100%;
    height: 10px;
}
.deleteBox {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.deleteBox .deleteBoxText {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    top: -5px;
    right: 105%;
}

.deleteBox:hover .deleteBoxText {
    visibility: visible;
}
