﻿body{
  -webkit-print-color-adjust:exact !important;
}

@media print{
    .noPrint{
     
    }
 
    body{
        font-size:11pt;
    }
   
}

.warning {
    color: red;
    margin-left: 20px;
    display: none;
}

.btn-circle.btn-xl {
    width: 120px;
    height: 120px;
    padding: 5px 5px;
    border-radius: 60px;
    font-size: 20px;
    line-height: 1.33;
    background-color: white;
    color: #060B29;
    border: 3px solid #060B29;
    margin:15px;
}
    .btn-circle.btn-xl:hover {
        background-color: #060B29;
    }
    .btn-circle {
        width: 30px;
        height: 30px;
        padding: 6px 0px;
        border-radius: 15px;
        text-align: center;
        font-size: 12px;
        line-height: 1.42857;
    }
 #success-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    z-index:111;
 
}
#error-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    z-index: 111;
} 
.newRow {
    margin-top: 10px;
}

fieldset {
    border: 1px solid #ddd !important;
    margin: 0;
    margin-top: 20px;
    min-width: 0;
    padding: 10px;
    position: relative;
    border-radius: 4px;
    background-color: #f6f6f6;
    padding-left: 10px !important;
}

legend {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 0px;
    width: 35%;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px 5px 5px 10px;
    background-color: #f6f6f6;
}

.addNewButton {
    margin-top: 5px;
}

.editor {
   
}


 .title{
            background-color:#002060;
            text-align:center;
            color:white;
            padding-top:1px;
            padding-bottom:0.1px;
            margin-top:5px;
            margin-bottom:5px;
            font-size:large;
            font-weight:bold;
            

        }
        .subtitle{
            background-color:#e2efda;
            font-weight:bold;
        }
        .subSubTitle{
            font-weight:bold;
            vertical-align:middle !important;
        }
        .pinkCell{
            background-color:#f8cbad;
            vertical-align:middle !important;
        }
 
        th{
            width:150px;
        }
        
        .choices{
            list-style-type: none;
            display:inline;

        }
        .middle{
            vertical-align:middle !important;
        }
           
            

            table-bordered > thead > tr > td{
            border:1px solid black !important;
            padding:5px;
                }
                 table-bordered > tbody > tr > td{
               border:1px solid black !important;
               padding:5px;
                }
     
       .pdf{
           width:35px !important;
           max-width:35px !important;
           text-align:center !important ;
           
       }

/*box shadow*/
       .container{
             position:relative;
    -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
       -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
            box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
             content:"";
       }

          
        .lessonIdTextBox{
             position: absolute;
  left: 0px;
  top: 0px;
  z-index: -1;
        }
        .tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}