 
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.bg-body{background: url(../images/main-bg.jpg) no-repeat center center;
background-size: cover;}


/* Activity page */

  
  .page {
     
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }
  
  /* section {
    width: 100%;
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  } */
  
  h1 {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 0.5px;
    color: darkslateblue;
  }
  
  a {
    text-decoration: none;
     
  }
  
  a:hover .arrow {
    transform: translatex(3px);
    transition: 300ms ease-out;
    scale: 1.1;
  }
  
  .tile {
    outline: 2px solid #777;
    background-color: white;
    text-align: center;
    width: 100%;
    height:100%; 
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 1px 10px 20px rgba(0,0,0,.1);
    border-radius: 8px;
    opacity: 0.9;
  }
  
  .activity-lbl {
    cursor: pointer;
  }
  
  .typeinput {
    position: absolute;
    top: 8px;
    left: 8px;
    cursor: pointer;
  }
  
  .tile:hover {
    scale: 1.02;
    transition: 200ms ease;
    box-shadow: 1px 10px 25px rgba(0,0,0,.15);
  }
  
  .activityh2 {
    color: #333;
    font-size: 15px;
  }
  
  svg {
    fill: #333;
  }
  
  .selected {
    outline: 2px solid darkblue;
    opacity: 1;
    transition: 400ms ease-out;
  }
  
  .selected h2 {
    font-weight: medium;
    font-size: 17px;    
  }
  
  .selected svg {
    fill: darkslateblue;
  }

  .activity-box{
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 30px;
    padding: 20px;
    /* margin-top: 130px; */
    box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    background:#fff;
    position:relative
  }
  .activity-box h2{font-size: 24px;    cursor: pointer;}
  .activity-icon{ cursor: pointer;}
  .activity-icon img{margin-top:-120px;margin-bottom:20px}
  .pt120{padding-top: 130px;}
  .active-box{background: #35ad05; color: #fff;}
  .check-icon{
    position: absolute;
    right: 10px;
    top: 10px;
    fill: #fff;
    width: 30px;
    height: 30px;
  }
  
  .logout-btn{opacity:0.7;}
  .logout-btn:hover{opacity:1;}
  .svg-icon{width:40px;fill:#ff0000 !important;}
  
  
@media (max-width: 600px) {
  html{height:100%;}
}