@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap');

.cal-div{
    background-color: aliceblue;
  height: 100px;
  width: 630px;
  border: 5px solid #d9e5f5;
  border-radius: 10px;
    display: none;
    justify-items: center;

    align-items: center;
    position: absolute;
    left:0;
    right:0;
    margin-left: auto;
    margin-right: auto;
    z-index: 102;
}

.inner-container {
    height: 95%;
    margin: 2px auto;
    width: 99.3%;
    border: 2px solid #dbe2ec;
    border-radius: 4px;
  }

.cal-buttons-group{
  height: 100%;
  display: flex;
  justify-content: space-evenly;
}

.cal-button {
    position: relative;
    width: 65px;
    height: 65px;
    border: double 5px transparent;
    border-radius: 50%;
    background-image: radial-gradient(
        50.5% 45.5% at 80.94% 90.28%,
        #5187d3 0%,
        #1457c4 35.42%,
        #04244e 100%
      ),
      radial-gradient(circle at top left, #e7e7e7, #959595);
    background-origin: border-box;
    background-clip: content-box, border-box;
    display: inline-block;
    margin: auto 0;
    cursor: pointer;
    /* box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23); */
  }
  .moon {
    position: relative;
    top: 68%;
    left: 59%;
    transform: translate(-50%, -50%);
    height: 50px;
    width: 50px;
    box-shadow: -5px -10px 0 1px rgba(202, 202, 202, 0.144);
    border-radius: 50%;
  }
  .circle {
    width: 59px;
    height: 59px;
    top: -2px;
    left: -2px;
    position: absolute;
    border: 2px solid #dadada;
    border-radius: 50%;
  }

  .cal-button> button{
    position: absolute;
    background: none;
    border: none;
    top: 25%;
    left:0;
    right:0;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    justify-items: center;

    align-items: center;
}

.valimg{
    position: relative;
    width: 65px;
    height: 65px;
    display: inline-block;
    margin: auto 0;
    cursor: pointer;
}


/*Val Menu css*/
.sgn-val-box {

    position: absolute;
    z-index:155;
    padding: 10px 15px;
    width: 235px;
    background-color: #fff;
    border: solid 1px #040f63;
    box-shadow: 1px 1px 2px #cfcfcf;
    border-radius: 15px;
    display:none;
    left:0;
    top:0;
    box-sizing: border-box;


      }

      .sgn-val-box:before {
        content: " ";
        position: absolute;
       width:20px;
       height:20px;
       border-top: solid 0px #040f63;
       border-right: solid 0px #040f63;
       border-bottom: solid 1px #040f63;
       border-left: solid 1px #040f63;

       top:25%;
       right:100%;
       margin-right:-10px;
       transform: rotate(45deg);
       background: #fff;
      }

      .sgn-val-box.inner-content{
        width:96%;
        position:relative;
        margin:auto;
        padding:15px;
      }

.cal-button .fas {
    font-size: 26px;
}

.val-box {
    position: absolute;
    z-index:155;
    padding: 10px 15px;
    width: 235px;
    background-color: #fff;
    border: solid 1px #040f63;
    box-shadow: 1px 1px 2px #cfcfcf;
    border-radius: 15px;
    display:none;
    left:0;
    top:0;
    box-sizing: border-box;
}

.val-box:before {
    content: " ";
    position: absolute;
    width:20px;
    height:20px;
    border-top: solid 0px #040f63;
    border-right: solid 0px #040f63;
    border-bottom: solid 1px #040f63;
    border-left: solid 1px #040f63;

    top:25%;
    right:100%;
    margin-right:-10px;
    transform: rotate(45deg);
    background: #fff;
}

.val-box.inner-content{
    width:96%;
    position:relative;
    margin:auto;
    padding:15px;
}


/*Submenu*/

.sub-menu-wrap {
    position: absolute;
    /* Adjust the top and right to position the menu */
    top: 0px;
    right: -270px!important;
    width: 320px!important;
    display: none;
    transition: display 5s ease-in-out;
    z-index: 155!important;
  }


