<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*Copyright (c) Dr. Heba Sailem 2021*/

@font-face {
    font-family: "HelveticaNeue";
    src: url("fonts/HelveticaNeue.ttf");
    }
 body { height: auto; width: 100%; margin: 0; overflow-x: auto; }
 

body{
    font-family:"open sans";
    font-weight: 500;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bi{
    color: white;
    font-size: 24px;
}

main{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: space-between;
}

.download-btn{
    padding-top: 5px;
    cursor: pointer;
    margin-left: 2px;
    margin-right: 2px;
}

.download-btn span{
    vertical-align: middle;
}

.eccentric-icon{
    vertical-align: middle;
    font-size: 24px;
    margin: 12px;
}
.eccentric-icon:hover{
    cursor: pointer;
}

.material-icons{
    cursor: pointer;
}

#myCanvas{
    opacity: 0;
    z-index: -1;
}

#drawCanvas{
    display: inline-block;
    position: relative;
}

.tooltip{
    display: inline-block;
    position: relative;
    
}

.tip{
    position: absolute;
    background-color: black;
    color: aliceblue;
    display: none;
    top: 40px;
    left: 0;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 5px;
    transition: opacity 0.4s ease-in;
    z-index: 9999999999999999999;
    font-size: small;
    text-align: center;
    width: 140%;
}

.tip2{
    position: absolute;
    background-color: black;
    color: aliceblue;
    display: none;
    left: 28px;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 5px;
    transition: opacity 0.4s ease-in;
    z-index: 9999;
    width: 4.5em;
    font-size: small;
    text-align: center;
}

.tip3{
    position: absolute;
    background-color: black;
    color: aliceblue;
    display: none;
    left: 58px;
    top: 10px;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 5px;
    transition: opacity 0.4s ease-in;
    z-index: 9999;
    font-size: small;
    text-align: center;
}


.tooltip:hover .tip {
    display: inline-block;
}

.tooltip:hover .tip2 {
    display: inline-block;
}

.tooltip:hover .tip3 {
    display: inline-block;
}

select{
    max-width: 100px !important;
}

iframe{
    width: 100%;
    height: 100%;
}

.help-frame{
    width: 0;
    height: 80%;
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
    top:6%;
    right: 0;
    transform: translateX(0);
    transition:0.5s ease-in;
    overflow: hidden;
    z-index: 999999999;
}

.help-frame.in{
    width: 80%;
}



#caption-canvas-div{
    display: flex;
    justify-content: space-around;
}

.contact-us{
    position: absolute;
    bottom: 0;
    left: 2px;
    width: 60px;
    height: 60px;
    border: 1px solid transparent;
    border-radius: 50%;
    background-color: #717171;
    text-align: center;
    box-shadow: 1px 1px 1px lightgrey, 
            -1px -1px 1px lightgrey;
}
#contact-icon{
    font-size: 40px;
    line-height: 60px;
}

footer{
    background-color: #474747;
    margin: 0;
    margin-top: 10px;
    padding: 5px;
    font-size: 14px;
    text-align: center;
}

footer p{
    display: inline;
    margin-left: 10px;
    margin-right: 10px;
    vertical-align: sub;
}

footer a{
   float: right;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome and Opera */
  }



  .loader-container{
    display: none;
    justify-content: center;
    align-items: center;
    width: 75px;
    height: 75px;
    background-color: rgba(100,100,100,0.7);
    position: absolute;
    left: 50%;
    right: 50%;
    top: 30%;
    bottom: 70%;
}

.loader {
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid black;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 0.7s linear infinite; /* Safari */
    animation: spin 0.7 linear infinite;
  }
  
  /* Safari */
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }</pre></body></html>