.row {
  display: flex;
  justify-content: center;
}

.alert {
   position: relative;
   top: 10;
   left: 0;
   width: auto;
   height: auto;
   padding: 10px;
   margin: 10px;
   line-height: 1.8;
   border-radius: 5px;
   cursor: hand;
   cursor: pointer;
   font-family: sans-serif;
   font-weight: 400;
 }
 
 .alertCheckbox {
   display: none;
 }
 
 :checked + .alert {
   display: none;
 }
 
 .alertText {
   display: table;
   margin: 0 auto;
   text-align: center;
   font-size: 18px;
 }
 
 .alertClose {
   float: right;
   padding-top: 5px;
   font-size: 10px;
 }
 
 .clear {
   clear: both;
 }

.notice {
   background-color: #EFF;
   border: 1px solid #DEE;
   color: rgb(95, 94, 95);
 }

 .badge {
  background: radial-gradient( 5px -9px, circle, white 8%, red 26px );
  background-color: rgba(6, 18, 129, 0.623);
  border: 2px solid rgb(255, 255, 255);
  border-radius: 16px; /* one half of ( (border * 2) + height + padding ) */
  box-shadow: 1px 1px 1px 1px black;
  color: white;
  font: bold 24px/24px Helvetica, Verdana, Tahoma;
  height: 32px; 
  min-width: 18px;
  padding: 2px 3px 0 3px;
  text-align: center;
}

.circle {
  border-radius: 50%;
  width: 34px;
  height: 34px;
  padding-top: 15px;
  background: #378ff5;
  border: 2px solid #000;
  color: #ffffff;
  text-align: center;
  font: 24px Arial, sans-serif;
  display: flex;
  justify-content: center; 
  align-items: center;
  margin: auto;
}
.site-custom-card {
    padding: 60px 40px;
    border-radius: 20px;
    transition: padding 0.15s ease-in-out;
}
.site-custom-card-tight {
    padding: 20px 40px;
    border-radius: 20px;
    transition: padding 0.15s ease-in-out;
}
.sitebg-light-blue{ background-color: rgba(51,153,255,1);}
.sitebg-yellow{ background-color: rgba(255,255,0,1);}
.sitebg-dark-blue{ background-color: rgba(19,78,165,1);}
.sitebg-gold{ background-color: rgba(199,179,88,1);}
.sitebg-red{ background-color: rgba(239,34,34,1);}

.maincontainer {
    /* min-height: calc(100vh - 32px) !important; */
}
.custom-card {
    margin-top: 10px;
    margin-bottom: 10px;
}

#sessionView.k-listview-bordered{
    border-width: 0px !important;
}

#sessionView > .k-listview-content:has(.session-result) {
    background-color: #fff !important;
    background-image: none !important;
}

div.activityItemSessionTime:contains("None") {
   display: none;
}

.card {
   transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
   border: 2px solid #357bd6;
   box-shadow: 0 8px 15px rgba(0, 0, 255, 0.2);
}