.manager-content {
    
}
.mano-container {
    padding:0 15px;
    box-sizing:border-box;
}

button {
    border:none;
    background:#2c2e83;
    color:#FFF;
    padding:10px;
    text-align:center;
    box-sizing:border-box;
}
button:active {
    background:#8c8eB3;
}
button.white {
    border:1px solid #2c2e83;
    background:#FFF;
    color:#2c2e83;
}
input {
    padding:10px;
    font-size:18px;
    border:1px solid #D7D7D7;
    box-sizing:border-box;
}
input:focus {
    /*background:#fff5e0;*/
}
input:read-only, input:-moz-read-only, input.readonly {
    background:#EEE;
}

input:required::after {
    content:"*";
    color:red;
}

#login-form, #register-form, #settings-form {
    margin:20px 0;
}

#login-form input, #login-form button, #register-form input, #register-form button, #settings-form input {
    width:100%;
    margin:5px 0;
}

button.wide {
    width:100%;
}

.success-msg {
    color:#0F0;
}
.error-msg {
    color:#F00;
}
.center {
    text-align:center;
}
.clearfix {
    clear:both;
}
.fleft {
    float:left;
}
.fright {
    float:right;
}
.w50p {
    width:50%;
}

.D_DIALOG {
    z-index: 1002;
    width:100%;
    height:100vh;
    overflow-x: hidden;
    background:#FFF;
    box-sizing:border-box;
    border-radius:0px;
    
    padding-top: constant(safe-area-inset-top);
    padding-top: env(safe-area-inset-top);    
}
.D_DIALOG .content {
    position:relative;
    overflow:auto;
    padding:20px;
    box-sizing:border-box;
}
.D_DIALOG .loading {
    text-align:center;
    margin:50px 0;
}
/*
.D_DIALOG .close {
    position:absolute;
    width:30px;
    height:30px;
    right:15px;
    top:10px;
    z-index:10;
    color:#2c2e83;
    font-size:22px;
}*/


.D_DIALOG .close {
    position:absolute;
    cursor: pointer;
    display: inline-block;
    right: 20px;
    width: 30px;
    height: 20px;   
    top:15px;
}
.D_DIALOG .close a {
    display:inline-block;
    position:relative;
    width: 30px;
    height: 30px;
}
.D_DIALOG .close .navicon-close {
    background: none;
    display: block;
    height: 3px;
    position: relative;
    transition: background .2s ease-out;
    width: 30px;
    border-radius: 3px;
    top:8px;
}
.D_DIALOG .close .navicon-close::before, .D_DIALOG .close .navicon-close::after {
    background: #333;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
    border-radius: 3px;
}
.D_DIALOG .close .navicon-close::before {
    top: 0px;
    transform: rotate(-45deg);
}
.D_DIALOG .close .navicon-close::after {
    top: 0px;
    transform: rotate(45deg);
}

.D_DIALOG .title {
    padding:15px;
    padding-right:40px;
    margin:0px;
    margin-bottom:10px;
    text-align:center;
    color:#2c2e83;
    font-size:16px;
    font-weight:normal;
    border-bottom:1px solid #ece7eb;
    text-transform:uppercase;
    position:relative;
    min-height:50px;
    box-sizing:border-box;
}
.err {
    border: 1px solid red !important;
}


@media screen and (max-width:639px){
    .small-view-hide {
        display:none !important;
    }
}
@media screen and (min-width:640px){
    .large-view-hide {
        display:none !important;
    }
}