 /* button styling.. */
 .page_btn_wrap{
    display: flex;
    background-color: var(--main-color);
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    margin-left: 2rem;
    height: 38px;
    padding-right: 1rem;
    padding-left: 0.5rem;
    width: auto;
    max-width: fit-content;
    color: white;
    cursor: pointer;
}
.page_btn_wrap:active, .page_btn_wrap:hover, .page_btn_wrap:focus{
    opacity: 0.92;
}
#nav-inner-box-rt{
    cursor: pointer;
}
.nav-inner-box-rt:active, .nav-inner-box-rt:hover, .nav-inner-box-rt:focus{
    opacity: 0.92;
}

    .space_top{
        margin-top: 2rem !important;
    }
    
    #sect_holder{
    height: 100%; 
    overflow-y: auto; 
    box-sizing: border-box; 
    display: flex; 
    width: 100%; 
    background-color: transparent;
    position: relative; 
    justify-content: center; 
    align-items: flex-start;
    padding-top: 2rem;
}

#right_side_holder{
    height: auto;
    width: 99%;
    background-color: white; 
    box-sizing: border-box;  
    padding-top: 2rem;
    display: flex; 
    justify-content: flex-start; 
    align-items: center; 
    flex-direction: column;
    padding-bottom: 2rem;
}
#page-inner-bd{
    height: auto; min-height: 500px; border: 1.8px solid #eaeaea; width: 90%; background-color: #fff;
}

.pop_inner_box > label{
    color: #4a4a4a;
    font-size: 1.15rem;
    font-weight: bolder;
    text-align: left;
    display: block;
    width: 100%;
}
#pop_f_set label{
    text-align: left;
    color: #616161;
    font-size: 1.05rem;
}
.pop_inner_box fieldset{
    color: #4a4a4a;
    font-size: 1.15rem;
    font-weight: bolder;
    border: 2px solid rgb(208, 208, 208);
    border-radius: 1rem;
    text-align: left !important;
}
.pop_inner_box > input{
  color: #4a4a4a;
  font-size: 1.02rem;
  width: 100%;
  display: block;
  padding: 0.25rem;
  border: none;
  outline: none;
  background-color: #f8f7f7;
  border-bottom: 1.5px solid #d4d4d4;
}
.pop_inner_box{
padding-top: 0.4rem !important;
padding-bottom: 0.4rem;
width: 80%;
box-sizing: border-box;
}
button{
    outline: none;
    border: none;
}
input[type="password"], input[type="text"], input[type="number"], select{
color: #4a4a4a;
font-size: 1.02rem;
width: 100%;
display: block;
padding: 0.25rem;
border: none;
outline: none;
background-color: #f8f7f7;
border-bottom: 1.5px solid #d4d4d4;
}
#pop_box_inner{
    height: auto; 
    justify-content: flex-start;
    padding: 1.6rem 0rem 1rem 0rem;
    align-items: center;
    width: 98%; 
    max-width: 500px; 
    max-height: 98%;
    display: flex; 
    overflow-y: auto;
    border-radius: 1rem; 
    flex-direction: column; 
    box-sizing: border-box;
    background-color: #fefdfd; 
    box-shadow: 0px 0px 10px #dddddd;
}
#signup_btn:hover, #signup_btn:active, #signup_btn:focus,
.stBtn:hover, .stBtn:active, .stBtn:focus{
    opacity: 0.7;
}
#signup_btn, .stBtn{
    width: 100%; height: auto; box-sizing: border-box; border-radius: 0.5rem; padding: 0.4rem 2.5rem; margin: 1rem auto; cursor: pointer; background-color: var(--main-color); color: #fbfafa; font-size: 1.2rem; font-weight: bolder; text-align: center;
    transition: .5s;
}
#pop_box_wrapper{
    overflow-y: auto;
    height: 100%; 
    overflow: hidden; 
    width: 100%; 
    box-sizing: border-box;
    display: none; 
    position: fixed; 
    left: 0px; 
    bottom: 0px; 
    background-color: transparent; 
    justify-content: center; 
    align-items: center; 
    z-index: 500;
}
#pb_hd{
    font-size: 1.5rem; 
    font-weight: 800; 
    color: #4f4f4f;
    position: relative;
}

/* pop msgs stylings */
#pop-ico{
    height: 40px;
    width: 40px; 
    box-sizing: border-box;
    /* padding: 7px;  */
    border-radius: 20px;
    margin-bottom: 0.5rem; 
    color: inherit;
    background-color: inherit;
    overflow: hidden;
  }
  #pop-box{
    display: block; 
    width: auto;
    max-width: 200px;
    padding: 1rem;
    border-radius: 1rem;
    color: inherit;
    font-weight: bolder;
    font-size: 1.1rem;
    background-color: white; 
    box-shadow: 10px 10px 100px rgb(156, 156, 156);
    box-sizing: border-box; 
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    z-index: 2000;
    transition: .3s;
}
.anim-pop-box{
    transform: scale(0);
    opacity: 0;
    animation: box-pop 0.5s linear 0s 1;
    animation-fill-mode: forwards;
    transition: .3s;
  }
  @keyframes box-pop {
    0%{
      transform: scale(0);
      opacity: 0;
    }100%{
      opacity: 1;
      transform: scale(1);
    } 
  }
  #pop-b-cover{
    color: #d0cfcf;
    display: none;
    justify-content: center;
    align-items: center; 
    width: 100%;
    height: 100%;
    position: fixed; 
    box-sizing: border-box;
    left: 0px; 
    top: 0px; 
    z-index: 200;
  }

  #cancel_pop_box{
    position: absolute; color: #464646; background-color: #dbdbdbc6; right: 0.5rem; top: 0.5rem; height: 30px; border-radius: 15px; width: 30px; user-select: none; cursor: pointer;
  }
  
  #profile_signup_inner{
      height: auto; 
      justify-content: center;
      position: relative;
      align-items: center;
      width: 98%; 
      max-width: 650px; 
      display: flex; 
      flex-direction: column; 
      background-color: #fff; 
      box-shadow: 0px 0px 10px rgb(221, 221, 221);
      box-sizing: border-box;
      margin: auto;
      border-radius: 15px;
  }
  #profile_signup{
      width: 100%; 
      position: relative;
      max-width: 550px;
      margin: auto;
      box-sizing: border-box;
      background-color: transparent; 
      justify-content: center; 
      align-items: center; 
      margin-top: 3rem;
  }
  #signup_header{
      font-size: 1.6rem; 
      font-weight: 800; 
      color: #4f4f4f;
      right: calc(100% - 50px);
  }
  @media screen and (max-width:290px){
      #signup_header{
          font-size: 1.3rem; 
          font-weight: 800;
      }
      #profile_signup_inner{
        padding-top: 3rem;
      }
  }

@media screen and (max-width:290px){
    #pb_hd{
        font-size: 1.3rem; 
    }
}
@media screen and (max-width:550px){
    #right_side_holder{
    width: 99%; 
}  
}