.OnlyDesk{
  display:block;
}
.OnlyMobile{
  display:block;
}
@media screen and (min-width : 990px){
  .OnlyMobile{
  display:none;
  }
}
@media screen and (max-width : 990px){
 .OnlyDesk{
   display:none;
  }
 .OnlyMobile{
   display:block;
  }
}

.OptionBox
{
    width: 100%;
    height: 250px;
    padding: 25px;
    margin-bottom: 15px;
    border: 1px solid #e2e2e2;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 5px 10px rgba(0,0,0,.08);
    
    text-align: center;
    font-size: 14px;
    font-weight: lighter;
}

.OptionBox h3
{
    font-weight: 600;
}

.OptionBox div
{
    text-align : center;
    letter-spacing: 2px;
}

.OptionBoxBtn 
{
    box-sizing: border-box;
    color: white;
    font-size: 14px;
    padding: 13px;
    border-radius: 7px;
    border: none;
    outline: none;
    background : linear-gradient(to bottom, rgb(0, 144, 255), rgb(77, 177, 255));
    
    cursor: pointer;
    display: inline-block;
    text-align: center;
    margin-bottom: 10px;
    font-weight: Bold;
}


.OptionBoxBtn:hover 
{
    background : linear-gradient(to top, rgb(0, 144, 255), rgb(77, 177, 255));
}

.OptionBoxBtn:active {
  background-color: #3e8e41;
  box-shadow: 0 2px 2px #666;
  transform: translateY(4px);
}



@media (max-width:1025px)
{
    .OptionBox
    {
        height: auto;
        
    }
}

/*-----------------------------------*/
.PageTitle
{
    Color : rgb(0, 144, 255);
    text-align: center;
    font-size: 30px;
    font-weight: Bold;
    
}

.AreaTittle
{
    Color : rgb(0, 144, 255);
    text-align: center;
    font-size: 20px;
    font-weight: Bold;
    margin-top : 15px;
}

.InputField
{
    box-sizing: border-box;
    font-size: 14px;
    padding: 10px;
    border-radius: 7px;
    border: 1px solid rgb(168, 168, 168);
    min-width: 250px;
    margin: 5px 5px 5px 5px;
}

@media (max-width:1025px)
{
    .InputField
    {
        max-width: 80%;
        min-width: auto;
        
    }
}

.SpanLink 
{
    color: rgb(0, 85, 170);
    cursor :pointer;
    font-size: 15px;
    font-weight: Bold;
}

.SpanLink:hover
{
    Color : rgb(0, 144, 255);
    text-decoration : underline;
}

/* ----------------------------------- */
.MyHomePageButton
{
    border-radius: 28px;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    font-size: 1.125em;
    padding: calc(.667em + 2px) calc(1.333em + 2px);
    text-align: center;
    text-decoration: none;
    overflow-wrap: break-word;
    box-sizing: border-box;
    color: #fff;
    width: 90%;
    margin-top : 10px;
    
}



@media (max-width:1025px)
{
    .MyHomePageButtonCenter
    {
        border-radius: 28px;
        box-shadow: none;
        cursor: pointer;
        display: inline-block;
        font-size: 1.125em;
        padding: calc(.667em + 2px) calc(1.333em + 2px);
        text-align: center;
        text-decoration: none;
        overflow-wrap: break-word;
        box-sizing: border-box;
        color: #fff;
        width: 90%;
        margin-top : 10px;
        
    }
}

@media (min-width:1025px)
{
    .MyHomePageButtonCenter
    {
        border-radius: 28px;
        box-shadow: none;
        cursor: pointer;
        display: inline-block;
        font-size: 1.125em;
        padding: calc(.667em + 2px) calc(1.333em + 2px);
        text-align: center;
        text-decoration: none;
        overflow-wrap: break-word;
        box-sizing: border-box;
        color: #fff;
        width: 500px;
        margin-top : 10px;
        
    }
}

/*Pop-up box*/
.popup_alert_handler{
        background:rgba(0,0,0,.4);
        display:none;
        height:100%;
        position:fixed;
        text-align:center;
        left:0;
        top:0;
        width:100%;
        z-index:10000;
    }
.popup_alert_handler .popup_helper{
        display:inline-block;
        height:100%;
        vertical-align:middle;
    }


.popup_alert_content {
    background-color: #fff;
    box-shadow: 10px 10px 60px #555;
    display: inline-block;
    height: auto;
    max-width: 80%;
    min-height: 100px;
    vertical-align: middle;
    width: 550px;
    position: relative;
    border-radius: 30px;
    padding: 25px 5%;
    /* text-align: center; */
    margin-top: 100px;
    margin-bottom: 100px
}


.popup_alert_tittle
{
    text-align: center;
    font-weight: bold;
    letter-spacing: 2px;
    font-size:18px; 
    color: #0090ff;
    padding: 5px;

}

.popup_alert_message
{
    margin-top: 10px;
    font-size:15px;
    letter-spacing: 2px;
    overflow: auto;
    max-height: 300px;
    
}


.popup_alert_btn
{
    cursor:pointer; 
    background-color: #0090ff; 
    font-weight: bold;
    color: white;
    border-radius: 12px;
    width:auto; 
    padding: 0.1% 5%;
    text-align: center;
    margin-top: 25px;
    letter-spacing: 2px;
    
}

.TopTitleDiv
{
    text-align: center; 
    /*position: -webkit-sticky; 
    position: sticky; */
    top: 0; 
    z-index: 100; 
    background-color: white; 
    padding-bottom : 1px; 
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}
.RightToLeftContent
{
    text-align: right !important;
}

.RightToLeftContent p
{
    text-align: right !important;
}
.BlogPostReadMore
{
    text-align: right;
    margin: 2px 0 2px 0;
    padding: 0;
    height: 5px;
    font-weight: bold;
}

/***********/
.Left5Pct
{
    text-align:left !important; 
    margin-left:5% !important;
}

.MrgnTp10
{
    margin-top:10px !important; 
}
