* {
    font-family: "San Francisco";
}

.box {
    color: white;
    text-align: center;
    border-radius: 10px;
    height: 90px;
    padding-top: 30px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}
.blue2{
    background-color: blue;
}
.darkcyan{
    background-color: darkcyan;;
}
.salmon {
    background-color: salmon;
}

.aquamarine {
    background-color: aquamarine;
}

.coral { 
    background-color: coral;
}

.cornflowerblue {
    background-color: cornflowerblue;
}

.darkcyan {
    background-color: darkcyan;
}

.indianred {
    background-color: indianred;
}

.lightskyblue {
    background-color: lightskyblue;
}

.palevioletred {
    background-color: palevioletred;
}

.palegreen {
    background-color: #26862d;
}

.box > * {
    cursor: pointer;
}

.box:hover { 
    transform: scale(1.04); 
}

.box:active {
    transform: scale(1);
}

.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 */
}

.notificationsLabel {
    font-weight: 800;
}

.notificationSquareImg {
    width: 25px;
    height: 35px;
    padding-top:10px;
}

.notificationSquareColor {
    content: '';
    width: 100%;
    height: 100%;
}

.light {
    font-weight: 300;
}

.notificationDetails {
    padding-left: 30px;
    line-height: 0px;
}

.notificationLabel {
    padding-left: 2px;
}

.bold {
    font-weight: 600;
}

.smallLineHeight {
    line-height: 5px;
}

.guideBox {
    padding: 10px;
    background-color: whitesmoke;
    border-radius: 5px;
}

.smaller {
    font-size: 16px;
}

p {
    margin: 0px;
}

.tab-pane {
    /* background: whitesmoke; */
    margin: 0;
    padding: 0;
}

.pane-content {
    padding: 20px;
    margin-top:2px;
}

.nav-tabs .nav-link.active {
    color: white;
    background-color: #006992;
    border: none;
    margin-left: 1px;
    margin-right: 1px;
}

.nav-link {
    color: white;
    background-color: gray;
    border: none;
    margin-left: 1px;
    margin-right: 1px;
}

.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-link {
    border: none;
}

.nav-tabs .nav-link:hover {
    color: white !important;
}

a:hover {
    color: inherit !important;
}

.box-area a:hover {
    text-decoration: none;
}

.disabled {
    opacity: 0.5
}

.closeButton {
    position: fixed;
    bottom: 20px;
    right: 50px;
    width: 40px;
    height: 40px;
}

.closeButton i{
    font-size: 30px;
    cursor: pointer;
}

.notificationBox {
    height:150px;
    overflow-y: scroll;
}

body {
    background-color: white !important;
}

.blueBar {
    background-color: #0e2a4b;
    padding: 10px;
}

#user_info_table > *{
    color: white !important;
}

#user_info_table a{
    color: white !important;
}

.blueBarLogo {
    height: 35px;
    padding-top: 10px;
}

.blackMirror {
    height: 100%;
    position: fixed;
    background: black;
    opacity: 0.7;
    width: 100%;
    top: 0;
    left: 0;
}

.searchinput {
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 400px;
    height: 70px;
    margin-top: 100px;
    background-color: transparent;
    font-size: 30px;
    color: white;
    border: 0;
    border-bottom: 2px solid white;
    outline: 0;
    font-weight: 300;
    padding: 5px;
}

.searchbox {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 400px;
    margin-top:50px;
    color: white;
}

.resultBox {
    border-bottom: 0.5px solid white;
    padding: 5px;
}

.tab-pane {
    border: 1px solid rgb(221, 221, 221);
    background-color: #fafafa !important;
}

.pane-content {
    padding: 40px;
}

.tabby-li a {
    cursor: pointer;
}

.sublabel {
    border-bottom: 1px solid rgb(221, 221, 221);
    font-size: 16px;
    font-weight: 800;
}

.nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus{
    background-color: #fafafa;
}

.mt-shadow {
    box-shadow: 1px 1px 2px #a3a3a3;
}

/* Same Height columns in row when contaning panels - Paolo */

@media screen {
    .row-sh {
        display: flex;
        flex-wrap: wrap;
        /* justify-content: space-between; */
    }
    
    .col-sh {
        display: flex;
        flex-direction: column;
    }
    
    .col-sh .panel {
        height: 100%;
    }
    
}

/* /Sane Height columns in row when containing panels */
