/*
'______________________________________________________________________________
'
'        Name: app.css
' Code Author: Mail2World, Inc. (KA)
'        Date: 02/02/2023
' Description: Mobile Web 2.0 (NITRO)
'	  History: 
'             (c) 2000 - 2023 Mail2World, Inc. All rights reserved. Trademarks and brands are the property of their respective owners
'______________________________________________________________________________
*/



/*  main CSS :::::::::::::::::::::::::::::::::::::::::::: STARTS*/
body{
    font-family: 'Roboto', sans-serif !important;
    font-size: 14px !important;
    text-rendering: optimizeLegibility;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
}

html
{
    /* highligh click */
    -webkit-tap-highlight-color:transparent;
}

.prevent-select {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
  }

/* Removing input background colour for Chrome autocomplete */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
}

.material-symbols-sharp {
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48
  }


/*  main flex boxes :::::::::::::::::::::::::::::::::::::::::::: STARTS*/

/* main container flex */
.mw_div_main_container {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    xbackground-color: rgb(0, 255, 242);

    height: 100vh;
    /* Fallback for browsers that do not support Custom Properties */
    height: calc(var(--vh, 1vh) * 100);
}

/* main head flex */
.mw_div_main_flex_head {
    width: 100%;
    height: 64px;
    line-height: 64px;
    overflow: hidden;
    color: #5C6070;
    background-color: #fff;
    border-bottom: #e4e3e3 solid 2px;
}

.mw_div_main_flex_head_child {
    width: 100%;
    overflow: hidden;
    height: 64px;
    line-height: 64px;
}

/* main content flex */
.mw_div_main_flex_content {
    width: 100%;
    flex-grow: 1;
    overflow: scroll;
    Xbackground-color: blueviolet;
    position: relative;
}

/* main content flex scroll box */
.mw_div_main_flex_content_scroll {
    background-color: #fff;
    width: 100%;
    position: absolute;
}

/* main footer flex */
.mw_div_main_flex_footer {
    width: 100%;
    height: 56px;
    line-height: 56px;
    overflow: hidden;
    background-color: #fff;
}

/*  main flex boxes :::::::::::::::::::::::::::::::::::::::::::: ENDS*/

.background_white{
    xbackground-color: #fff
}


/* notification pop-up  NEW */
.notify_box {
    position: fixed;
    bottom: 0px;
    width: 100%;
    display: none;
    z-index: 102;
}

.notify_content {
    width: 85%;
    max-width: 400px;
    margin: 0 auto;
    margin-bottom: 20px;
    border-radius: 5px;
    background-color: #6f6e78;
    color: #fff;
    font-size: 13px;
    /* opacity: 0.8; */
    display: flex;
    min-height: 50px;
    align-items: stretch;
    overflow: hidden;
}
/* :::::::::::::::::::::: */

/* options pop-up */
.options {
    position: fixed;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -90%);
    background-color: #fff;
    width: 88%;
    max-width: 400px;
    overflow: scroll;
    border: solid 0px #fae649;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 50px;
    display: none;
    border-radius: 8px;
    z-index: 101;
    max-height: 95%;
}
/* :::::::::::::::::::::: */


/* ad box */
.ad_box {
    position: fixed;
    bottom: 0px;
    width: 100%;
    display: none;
    z-index: 90;
}


/* side-nav  */
#side-nav {
    position: fixed;
    top: 0;
    left: -85%;
    width: 85%;
    height: 100vh;
    background-color: #fff;
    z-index: 101;
    transition: all 0.25s ease-in-out;
}

#side-nav.show-nav {
    left: 0;
}
/* :::::::::::::::::::::: */


/* pop-up DVI */
.popdiv {
    position: fixed;
    top: 20%;
    left: 20%;
    transform: translate(-20%, -20%);
    background-color: aqua;

    height: 80%;
    width: 80%;
    overflow: scroll;

    border: solid 1px #555;
    border-radius: 5px;
    display: none;
}

.shadow {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.flex-container {
    display: flex;
}

.div_padding-left {
    padding-left: 20px !important;
}

.div_padding-right {
    padding-right: 20px !important;
}

/*  main app buttons */
.app_on {
    width: 98px;
    height: 32px;
    margin: 0 0px 0 8px;
    border: solid 1px #0047bb;
    background-color: rgba(0, 71, 187, 0.05);
    color: #0047bb;
    }

    .app_off {
    width: 98px;
    height: 32px;
    margin: 0 0px 0 8px;
    border: solid 2px #ededf3;
    background-color: #ededf3;
    color: #5C6070;
}


/*  main app storage bar */
.progress-bar, .progress-bar_settings {
    width: 97px;
    height: 8px;
    border-radius: 5px;
    background-color: #f2f2f2;
    overflow: hidden;
}

.progress, .progress_settings {
    height: 100%;
    background-color: #48d597;
    border-radius: 5px;
    transition: width 0.5s ease-in-out;
}

.percent {
    display: block;
    text-align: center;
    font-size: 11px;
    color: #fff;
    line-height: 8px;
}

/*   */
.app_dir_selected
{
    background-color: #ededf3;
}

.app_displaynone
{
    display: none !important;
}

.app_maxwidth
{
    max-width: 500px !important;
}

.app_zindex109
{
    z-index: 109 !important;
}

/*  main app prompt module */
.app_promptmodule {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 101;
}

.action-button {
    width: 50;
    color: #0f69ff;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 11px 5px 11px 5px;
}

.close-button {
    width: 50;
    color: #5C6070;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 11px 5px 11px 5px;
}

/*  main app placeholder color */
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #a2a7ba;
    opacity: 1; /* Firefox */
  }
  
  :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #a2a7ba;
  }
  
  ::-ms-input-placeholder { /* Microsoft Edge */
    color: #a2a7ba;
  }

/*  main composer auto-comp module */
.app_comp_menu_autocom {


 
}

/*  main CSS :::::::::::::::::::::::::::::::::::::::::::: ENDS*/



/*  compser CSS :::::::::::::::::::::::::::::::::::::::::::: STARTS*/

/*  file-input CSS */
div.fileinputs {
    position: relative;
}

div.fakefile {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
}

input.file {
    position: relative;
    text-align: right;
    -moz-opacity: 0;
    filter: alpha(opacity: 0);
    opacity: 0;
    z-index: 2;
}

/*  send btn CSS */
.Send {
    width: 34px;
    height: 22px;
    font-family: Roboto;
    font-size: 15px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.47;
    letter-spacing: normal;
    text-align: center;
    color: #0d0f23;
}

.Rectangle {
    width: 94px;
    height: 40px;
    padding: 9px 30px;
    background-color: #48d597;
}


/*  compser CSS :::::::::::::::::::::::::::::::::::::::::::: ENDS */


/*  message CSS  :::::::::::::::::::::::::::::::::::::::::::: STARTS*/

.div_spamHeader{
    background-color: #CF1332 !important;
    color: #fff !important;
}

/*  message CSS  :::::::::::::::::::::::::::::::::::::::::::: ENDS*/


/*  mail CSS  :::::::::::::::::::::::::::::::::::::::::::: STARTS*/

.div_mail_flex_box {
    display: flex;
    align-items: center;
    flex-direction: column;
    xbackground-color: cornflowerblue;
    padding: 20px;
    gap: 10px;
}
.div_mail_flex_box div {
    display: flex;
    width: 100%;
    min-height: 20px;
    align-items: center;

}


.div_mail_flex_box_mail {
    display: flex;
    align-items: center;
    flex-direction: column;
    xbackground-color: cornflowerblue;
    padding: 10px;
    gap: 1px;
    padding-top: 8px; font-size: 12px;
}
.div_mail_flex_box_mail div {
    display: flex;
    width: 100%;
    align-items: center;

}

.div_mail_avatar {
    width: 40px !important;
    height: 40px;
    border-radius: 50%;
    background-color: #ff0000;
    justify-content: center;
    align-items: center;
  }

  .p_mail_avatar_text {
    text-align: center;
    line-height:40px;
    color: #ffffff;
    font-size: 15px;
  }


  .div_nav_avatar {
    width: 32px !important;
    height: 32px;
    border-radius: 50%;
    background-color: #ff0000;
    justify-content: center;
    align-items: center;
  }
  
  .p_nav_avatar_text {
    text-align: center;
    line-height:32px;
    color: #ffffff;
    font-size: 12px;
  }

  .div_comp_avatar {
    width: 25px !important;
    height: 25px;
    border-radius: 50%;
    background-color: #ff0000;
    justify-content: center;
    align-items: center;
  }

  .p_comp_avatar_text {
    text-align: center;
    line-height:25px;
    color: #ffffff;
    font-size: 12px;
  }

/*  mail CSS  :::::::::::::::::::::::::::::::::::::::::::: ENDS*/

/*  contacts CSS  :::::::::::::::::::::::::::::::::::::::::::: STARTS*/

.contacts_cls_groupname{
    padding-top: 13px;
}
/*  contacts CSS  :::::::::::::::::::::::::::::::::::::::::::: ENDS*/


/*  settings CSS  :::::::::::::::::::::::::::::::::::::::::::: STARTS*/

.settings_pop1{
    padding-right: 5px;
    display: inline-block;
    font-weight: 600;
    font-size: 13px;
}
/*  settings CSS  :::::::::::::::::::::::::::::::::::::::::::: ENDS*/

