/* ----------------------------
    APP HEADER
   ---------------------------- */
.app-header {
    position: fixed;
    max-width: 100vw;
    /* max-width: 100%; */
    left: 0;
    right: 0;
    top: 0;
    height: 56px;
    z-index: 198;
    margin-bottom: 20px;
    padding: 0 15px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.07);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.07);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: right;
    justify-content: space-between;
}

.app-header .header-log {
    margin-left: auto;
    padding: 10px 0;
    font-size: 20px;
    font-weight: 400;
    color: #9f9f9f;
    float: right;
    text-align: right;
}

.app-header .header-log:hover {
    color: #2c9068;
}

.app-header .header-log2 {
    margin-left: auto;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 400;
    color: #9f9f9f;
    float: right;
    text-align: right;
}

@media screen and (min-width: 768px) {
    .app-header {
        padding: 0 50px;

    }

}

/* ----------------------------
    APP Footer
   ---------------------------- */
.app-footer {
    text-align: center;
    padding: 20px 0px;
    color: #606060;
    font-weight: 500;

}


/* ----------------------------
    PAGE LAYOUT
   ---------------------------- */
.content-viewer {
    position: relative;
    margin-top: 56px;
    padding-top: 0px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

.page-header {
    margin-bottom: 10px;
}

.page-title {
    text-transform: capitalize;
    margin-top: 15px;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
    color: #606060;
    text-align: left;
}

.new-schedule-btn {
    width: 100%;

}

@media screen and (min-width: 768px) {
    .page-title {
        font-size: 28px;

    }

    .content-viewer {
        padding-left: 50px;
        padding-right: 50px;
    }

    .new-schedule-btn {
        width: auto;
    }

}

/* ---------------------------------
    Modal Boxes
   --------------------------------- */
.model-wrapper {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2500;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: rgba(137, 137, 137, 0.95);
}

.model-wrapper.in {
    display: block;
}

.model-dialog {
    position: relative;
    background-clip: padding-box;
    background-color: #fff;
    width: 90%;
    box-shadow: 5px 2px 20px 0 rgba(0, 0, 0, 0.2);
    outline: 0;
    margin: 50px auto;
    padding: 10px 10px 30px 10px;
    border-radius: 6px;
}

.model-dialog.model-medium {
    width: 80%;
}

.model-dialog.model-mini {
    width: 95%;
}

.model-dialog.model-mini2 {
    width: 95%;
    padding: 10px 10px 40px 10px !important;
}

.model-dialog .model-header h3 {
    font-size: 25px;
    margin-top: 5px;
    margin-bottom: 10px;
    pointer-events: none;
}

.model-dialog .model-header h4 {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    pointer-events: none;
}


.model-dialog .model-closer {
    position: relative;
    background-color: transparent;
    font-size: 50px;
    outline: 0 !important;
    border: 0 !important;
    width: 100%;
    height: 25px;
    line-height: 24px;
    text-align: right;
    cursor: pointer;
    color: #626262;
    font-weight: 100;
    padding-top: 10px;
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 5px;
    z-index: 3;
}

.model-dialog .model-closer a {
    color: #626262;
}

.model-dialog .model-closer:hover {
    color: #000;
}

.model-mini .model-content,
.model-medium .model-content {
    padding: 5px 20px;
}

.email-view,
.email-view-upd {
    padding: 0px 5px;
    margin-bottom: 5px;
    /* min-height: 55px; */
}

.email-view p,
.email-view-upd p {
    margin: 2px 0px;
    background-color: #2c9068;
    display: inline-block;
    padding: 5px 4px 3px;
    color: #fff;
    font-weight: 300;
    /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.2); */
    margin-right: 5px;
    border-radius: 3px;
    font-size: 13px;
    line-height: 1;
}

.email-view a,
.email-view-upd a {
    color: #fff;
    font-size: 16px;
    line-height: 1;
    vertical-align: middle;
}

.emailRemove {
    cursor: pointer;
}

@media screen and (min-width: 768px) {
    .model-dialog.model-mini {
        width: 500px;
    }

    .model-dialog.model-mini2 {
        width: 35%;
        padding: 10px 10px 40px 10px !important;
    }

}

/* ---------------------------------
    Login Panel
   --------------------------------- */
.login-page-wrapper {
    width: 100%;
    height: 100%;
    background: url(../images/loginBg2.jpg) no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

.login-panel-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
}

.login-content-wrapper {
    padding: 30px 50px 90px;
    border: 1px solid #3c9990;
    border-radius: 4px;
}

.login-content-wrapper h2 {
    text-transform: capitalize;
    font-size: 28px;
    color: #0b0b0b;
    font-weight: 500;
}

.login-panel .form-control {
    font-family: 'Poppins';
    display: block;
    width: 100%;
    height: 35px;
    padding: 6px 12px;
    font-size: 16px;
    vertical-align: middle;
    line-height: normal;
    color: #606060;
    outline: 0;
    border-radius: 4px;
    -webkit-appearance: none;
    background-color: #fff;
    border: 1px solid #ffffff;
    font-weight: 300;
}

.login-panel .field-icon-wrapper .field-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
}

.login-panel .field-icon-wrapper.icon-prepend .form-control {
    padding-left: 40px;
}

.login-panel .btn {
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    margin-bottom: 0;
    height: 40px;
    border: 1px solid #2c9068;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    color: #fff;
    color: rgb(255, 255, 255, 0.9);
    /* border-radius: 0; */
    outline: 0;
    white-space: nowrap;
    text-shadow: none;
    box-shadow: none;
    line-height: 1;
    padding: 6px 20px;
    position: relative;
    -webkit-appearance: none;
    -webkit-transition: all ease-in-out 0.15s;
    -moz-transition: all ease-in-out 0.15s;
    transition: all ease-in-out 0.15s;
    border-radius: 4px;
    background-color: #2c9068;
    background-image: -moz-linear-gradient(left, rgba(29, 140, 139, 1) 0%, rgba(78, 155, 21, 1) 100%);
    background-image: -webkit-linear-gradient(left, rgba(29, 140, 139, 1) 0%, rgba(78, 155, 21, 1) 100%);
    background-image: -ms-linear-gradient(to right, rgba(29, 140, 139, 1) 0%, rgba(78, 155, 21, 1) 100%);
}

.login-panel .btn:hover {
    background-image: none;
    background-image: none;
    background-image: none;
}

.login-panel .btn-primary {
    display: block;
    width: 100%;
    /* font-size: 15px; */
}

.login-panel .rel-link {
    font-size: 14px;
}

.login-panel .rel-link:hover {
    text-decoration: underline;
}

.email-frame-wrapper {
    overflow-x: auto;
}

.dash-after:after{
    content: '-';
    position: absolute;
    top: 25px;
    right: -15px;
    width: 30px;
    text-align: center;
    font-size: 20px;
    padding-left: 3px;
}
.field-timer{
    position: relative;
    width: 100%;
}

/*.field-timer > .form-control{
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    visibility: hidden;
    opacity: 0;
    z-index: -2;
}*/