/*
 *  Document   : extra_pages.css
 *  Author     : RedStar Theme
 *  Description: this style sheet for extra page like login, logout, page_404, page_500 etc.. 
 
 			[Table of contents]
 			
 			1. BODY 
 			2. FORM TITLE
 			3. LOGIN FORM
 			4. CUSTOM CHECKBOX
 			5. PAGE 404
 			6. LOCK SCREEN
 */

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
}

/*---------------------------------------------*/
a {
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    margin: 0px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
}

a:focus {
    outline: none !important;
}

a:hover {
    text-decoration: none;
    color: #2a32be;
}

/*---------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
}

p {
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    margin: 0px;
}

ul,
li {
    margin: 0px;
    list-style-type: none;
}

/*---------------------------------------------*/
input {
    outline: none;
    border: none;
}

textarea {
    outline: none;
    border: none;
}

textarea:focus,
input:focus {
    border-color: #0dcaf0 !important;
}

input:focus::-webkit-input-placeholder {
    color: transparent;
}

input:focus:-moz-placeholder {
    color: transparent;
}

input:focus::-moz-placeholder {
    color: transparent;
}

input:focus:-ms-input-placeholder {
    color: transparent;
}

textarea:focus::-webkit-input-placeholder {
    color: transparent;
}

textarea:focus:-moz-placeholder {
    color: transparent;
}

textarea:focus::-moz-placeholder {
    color: transparent;
}

textarea:focus:-ms-input-placeholder {
    color: transparent;
}

input::-webkit-input-placeholder {
    color: #fff;
}

input:-moz-placeholder {
    color: #fff;
}

input::-moz-placeholder {
    color: #fff;
}

input:-ms-input-placeholder {
    color: #fff;
}

textarea::-webkit-input-placeholder {
    color: #fff;
}

textarea:-moz-placeholder {
    color: #fff;
}

textarea::-moz-placeholder {
    color: #fff;
}

textarea:-ms-input-placeholder {
    color: #fff;
}

label {
    margin: 0;
    display: block;
}

/*---------------------------------------------*/
button {
    outline: none !important;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}

iframe {
    border: none !important;
}

/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
.txt1 {
    font-size: 13px;
    color: #e5e5e5;
    line-height: 1.5;
}

/*//////////////////////////////////////////////////////////////////
[ login ]*/

.limiter {
    width: 100%;
    margin: 0 auto;
}

.container-login100 {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.page-background {
    background-image: url("../img/bg-01.jpg");
}

.container-login100::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.9);
}

.wrap-login100 {
    width: 600px;
    border-radius: 10px;
    overflow: hidden;
    padding: 37px 55px 37px 55px;
    background: #9152f8;
    background: -webkit-linear-gradient(top, #007bff, #5992d0);
    background: -o-linear-gradient(top, #007bff, #5992d0);
    background: -moz-linear-gradient(top, #007bff, #5992d0);
    background: linear-gradient(top, #007bff, #5992d0);
}

/*------------------------------------------------------------------
[ Form ]*/

.login100-form {
    width: 100%;
}

.login100-form-logo {
    font-size: 60px;
    color: #333333;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #2f94a5;
    margin: 0 auto;
}

.login100-form-title {
    font-size: 30px;
    color: #fff;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;

    display: block;
}

.login100-form-logo img {
    width: 125px;
    border-radius: 50%;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.2);
}

.login-logo img {
    width: 80px;
    border-radius: 50%;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.2);
}

/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
    width: 100%;
    position: relative;
    border-bottom: 2px solid rgba(255, 255, 255, 0.24);
    margin-bottom: 30px;
}

.input100 {
    font-size: 16px;
    color: #fff;
    line-height: 1.2;

    display: block;
    width: 100%;
    height: 45px;
    /* height: 33px; */
    background: transparent;
    padding: 0 5px 0 38px;
}

/*---------------------------------------------*/
.focus-input100 {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.focus-input100::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;

    background: #fff;
}

.focus-input100::after {
    font-family: Material-Design-Iconic-Font;
    font-size: 22px;
    color: #fff;

    content: attr(data-placeholder);
    display: block;
    width: 100%;
    position: absolute;
    top: 6px;
    left: 0px;
    padding-left: 5px;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.input100:focus {
    padding-left: 5px;
}

.input100:focus + .focus-input100::after {
    top: -22px;
    font-size: 18px;
}

.input100:focus + .focus-input100::before {
    width: 100%;
}

.has-val.input100 + .focus-input100::after {
    top: -22px;
    font-size: 18px;
}

.has-val.input100 + .focus-input100::before {
    width: 100%;
}

.has-val.input100 {
    padding-left: 5px;
}

/*==================================================================
[ Restyle Checkbox ]*/

.contact100-form-checkbox {
    padding-left: 5px;
    padding-top: 5px;
    padding-bottom: 35px;
}

.input-checkbox100 {
    display: none;
}

.label-checkbox100 {
    font-size: 13px;
    color: #fff;
    line-height: 1.2;

    display: block;
    position: relative;
    padding-left: 26px;
    cursor: pointer;
}

.label-checkbox100::before {
    content: "\f26b";
    font-family: Material-Design-Iconic-Font;
    font-size: 13px;
    color: transparent;

    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 2px;
    background: #fff;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.input-checkbox100:checked + .label-checkbox100::before {
    color: #555555;
}

/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.login100-form-btn {
    font-size: 16px;
    color: #555555;
    line-height: 1.2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    min-width: 120px;
    height: 50px;
    border-radius: 25px;
    background: #9152f8;
    background: -webkit-linear-gradient(bottom, #ecedf1, #e6e1e8);
    background: -o-linear-gradient(bottom, #ecedf1, #e6e1e8);
    background: -moz-linear-gradient(bottom, #ecedf1, #e6e1e8);
    background: linear-gradient(bottom, #ecedf1, #e6e1e8);
    position: relative;
    z-index: 1;
    box-shadow: 0 3px 10px 0px rgba(213, 208, 214, 0.5);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.login100-form-btn::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background-color: #fff;
    top: 0;
    left: 0;
    opacity: 1;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.login100-form-btn:hover {
    color: #443f3f;
}

.login100-form-btn:hover:before {
    opacity: 0;
}

/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 576px) {
    .wrap-login100 {
        padding: 55px 15px 37px 15px;
    }
}

/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
    position: relative;
}

.alert-validate::before {
    content: attr(data-validate);
    position: absolute;
    max-width: 70%;
    background-color: #fff;
    border: 1px solid #c80000;
    border-radius: 2px;
    padding: 4px 25px 4px 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0px;
    pointer-events: none;

    color: #c80000;
    font-size: 13px;
    line-height: 1.4;
    text-align: left;

    visibility: hidden;
    opacity: 0;

    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.alert-validate::after {
    content: "\f12a";
    font-family: FontAwesome;
    font-size: 16px;
    color: #c80000;

    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 5px;
}

.alert-validate:hover:before {
    visibility: visible;
    opacity: 1;
}

.p-b-34 {
    padding-bottom: 34px;
}

.p-t-27 {
    padding-top: 27px;
}

.p-b-20 {
    padding-bottom: 20px;
}

.p-t-90 {
    padding-top: 90px;
}

.p-t-50 {
    padding-top: 50px;
}

.p-t-30 {
    padding-top: 30px;
}

.form-404 {
    text-align: center;
}

.content-404 {
    color: #fff;
    font-size: 14px;
    padding: 30px;
}

.form404-title {
    font-size: 50px;
    color: #fff;
}

.txt-locked {
    color: #fff;
    font-size: 18px;
    padding: 10px 0px;
}

.txt-small-heading {
    color: #fff;
    font-size: 18px;
    padding: 15px 0px;
}

@media (max-width: 992px) {
    .alert-validate::before {
        visibility: visible;
        opacity: 1;
    }
}

/* //////////////////////////////////////////////////////////////////////// wizard //////////////////////// */

.step1 {
    font-size: 16px;
    color: #fff;
}

.txtpassword {
    color: #e8ffde;
    font-size: 11px;
    margin-bottom: 30px;
}

#txtPass {
    margin-bottom: auto;
}

.txtError {
    color: #ff0000;
    font-size: 12px;
}

#txtemail {
    margin-bottom: 15px;
}

.login100-form-btn {
    float: right;
}

.btn-back {
    float: left;
}

.font-left {
    padding-right: 7px;
}

.btn-save-new {
    background-color: #7700ff6e;
    font-size: 15px;
}

.btn-save {
    display: flex;
    justify-content: center;
}

.txt1 {
    font-size: 16px;
    color: #e5e5e5;
    line-height: 1.5;
}

.txt1:hover {
    color: #f1e0e0;
}

.requireField {
    color: #e02222;
}

.textColor {
    color: #fff;
}

/* .footerNew{
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #28303b;
  color: white;
  text-align: center;
  padding: 20px 5px;
  font-size: 13px;
} */

.table-bordered {
    border: 1px solid #000000;
}

.doctor-heading {
    color: #fff;
}

.card-head {
    background-color: #cfe6fa;
    border-top-right-radius: 6%;
    border-top-left-radius: 7%;
}

.card1 {
    background-color: #fff;
    border-radius: 10px;
    position: relative;
    margin-bottom: 20px;
    border: 1px solid #deebfd;
}

.table th {
    padding: 10px;
}

.table td {
    padding: 5px;
}

.table thead tr th {
    font-size: 16px;
}

.noRecordFound {
    font-size: large;
    text-align: center;
    font-weight: 800;
    color: red !important;
}

.showHeader {
    color: #1309b7;
    font-size: x-large;
    text-align: center;
}

#basic-addon1 {
    height: 39px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* .user-icon{
  padding-left: 8px;
  padding-top: 15px;
  color: #fff;
  font-size: 20px;
} */

/* //////////////////////////////////////////////////////////////////////// 404 page not found //////////////////////// */
/* .bg-color{
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  background-color: #f2eee8;
  font-family: 'Open Sans';
}
*, *:before, *:after {
  box-sizing: content-box;
  transform: translate3d(0, 0, 0);
}
.face {
  width: 300px;
  height: 300px;
  border: 4px solid #383a41;
  border-radius: 10px;
  background-color: #fff;
  margin: 0 auto;
  margin-top: 100px;
}
@media screen and (max-width: 400px) {
  .face {
    margin-top: 40px;
    transform: scale(0.8);
 }
}
.face .band {
  width: 350px;
  height: 27px;
  border: 4px solid #383a41;
  border-radius: 5px;
  margin-left: -25px;
  margin-top: 50px;
}
.face .band .red {
  height: calc(100% / 3);
  width: 100%;
  background-color: #eb6d6d;
}
.face .band .white {
  height: calc(100% / 3);
  width: 100%;
  background-color: #fff;
}
.face .band .blue {
  height: calc(100% / 3);
  width: 100%;
  background-color: #5e7fdc;
}
.face .band:before {
  content: "";
  display: inline-block;
  height: 27px;
  width: 30px;
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  z-index: 999;
}
.face .band:after {
  content: "";
  display: inline-block;
  height: 27px;
  width: 30px;
  background-color: rgba(56, 58, 65, 0.3);
  position: absolute;
  z-index: 999;
  right: 0;
  margin-top: -27px;
}
.face .eyes {
  width: 128px;
  margin: 0 auto;
  margin-top: 40px;
}
.face .eyes:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 15px;
  border: 7px solid #383a41;
  margin-right: 20px;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  border-bottom: 0;
}
.face .eyes:after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 15px;
  border: 7px solid #383a41;
  margin-left: 20px;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  border-bottom: 0;
}
.face .dimples {
  width: 180px;
  margin: 0 auto;
  margin-top: 15px;
}
.face .dimples:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 80px;
  border-radius: 50%;
  background-color: rgba(235, 109, 109, 0.4);
}
.face .dimples:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 80px;
  border-radius: 50%;
  background-color: rgba(235, 109, 109, 0.4);
}
.face .mouth {
  width: 40px;
  height: 5px;
  border-radius: 5px;
  background-color: #383a41;
  margin: 0 auto;
  margin-top: 25px;
}
h1 {
  font-weight: 800;
  color: #383a41;
  text-align: center;
  font-size: 2.5em;
  padding-top: 20px;
}
@media screen and (max-width: 400px) {
  h1 {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 2em;
 }
} */
/* .btn {
  font-family: "Open Sans";
  font-weight: 400;
  padding: 20px;
  background-color: rgba(94, 127, 220, 1.0);
  color: white;
  width: 320px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.2em;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 80px;
  margin-bottom: 50px;
  transition: all 0.2s linear;
} */
/* @media screen and (max-width: 400px) {
  .btn {
    margin: 0 auto;
    margin-top: 60px;
    margin-bottom: 50px;
    width: 200px;
 }
}
.btn:hover {
  background-color: rgba(94, 127, 220, 0.8);
  transition: all 0.2s linear;
} */
.pagination-center {
    display: flex;
    place-content: center;
}

#basic-addon1 {
    height: 39px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.card-mage {
    width: 18rem;
    border: 1px solid;
    padding: 10px;
    border-radius: 0;
}

.card-img-top {
    border: 1px solid #9c9c81;
}

/* AddClaim Image */
.blogThumb {
    border-radius: 10px;
}

#basic-addon1 {
    padding: 10px 12px;
}

/* Status Icons */
.activeStatus {
    background-color: #1dc447 !important;
    color: #fff;
}

.deactiveStatus {
    background-color: #dc3545 !important;
}

/* Header Logo */
.header-logo1 {
    /* width: 200px;
    height: 88px;
    position: absolute;
    top: -13px;
    left: 14px; */
    width: 161px;
    height: 59px;
    position: absolute;
    top: 5px;
    left: 53px;
}

.mini-logo1 {
    /* position: absolute;
    top: 13px;
    left: 2px;
    width: 42px; */
    position: absolute;
    top: 10px;
    left: 1px;
    width: 48px;
}

.todate {
    padding-left: 11px;
    margin-top: 5px;
}

/* Add Claim Procedure Table */

/* .prodCode1 {
    width: 10%;
}

.prodDesc1 {
    width: 60%;
}

.prodFee1 {
    width: 10%;
}

.prodAddFee1 {
    width: 20%;
} */

@media screen and (max-width: 320px) {
    .prodBorder {
        width: 100%;
    }
}

@media screen and (max-width: 375px) {
    .prodBorder {
        width: 100%;
    }
}

@media screen and (max-width: 425px) {
    .prodBorder {
        width: 100%;
    }
}

@media only screen and (min-width: 1060px) {
    .prodAddFee {
        width: 70%;
    }
}

/* 425 481 */

@media only screen and (max-width: 375px) {
    .prodCode {
        display: flex;
        border: 1px solid !important;
    }

    .prodDesc {
        display: flex;
        border: 1px solid !important;
    }

    .prodFee {
        display: flex;
        border: 1px solid !important;
    }

    .prodAddFee {
        display: flex;
        border: 1px solid !important;
        margin-bottom: 50px;
    }

    .table-bordered {
        border: none;
    }
}

.prodBorder {
    border: 1px solid;
}

@media only screen and (max-width: 425px) {
    .prodCode {
        display: flex;
        border: 1px solid !important;
    }

    .prodDesc {
        display: flex;
        border: 1px solid !important;
    }

    .prodFee {
        display: flex;
        border: 1px solid !important;
    }

    .prodAddFee {
        display: flex;
        border: 1px solid !important;
        margin-bottom: 50px;
    }

    .table-bordered {
        border: none;
    }
}

.loaderBtnSpinner {
    position: relative;
    left: -65px;
    top: 7px;
    color: #fff;
}

.loaderUpdateBtnSpinner {
    position: relative;
    left: -72px;
    top: 7px;
    color: #fff;
}

.saveBtnLoader {
    position: relative;
    top: 7px;
    left: -105px;
    color: #fff;
}

/* Footer */
.doctor-footer {
    background-color: #1880c9;
}

.employee-footer {
    background-color: #4abad2;
}

.admin-footer {
    background-color: #212a3a;
}

/* Manage Doctor */
@media (max-width: 425px) {
    .manageDoctor {
        display: unset !important;
    }

    .nameBtnDoctor {
        width: 16rem;
        margin: 10px auto !important;
    }
}

.bgPriorityRowColor {
    background-color: #e9ecef !important;
}

/* /////////////////////////////// tooltip */
.mt-100 {
    margin-top: 150px;
    margin-left: 200px;
}

.card-header {
    background-color: #9575cd;
}

h5 {
    color: #fff;
}

.card-block {
    margin-top: 10px;
}

.mytooltip {
    display: inline;
    position: relative;
    /* z-index: 999; */
}

.mytooltip .tooltip-item {
    background: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: inline-block;
    font-weight: 500;
    padding: 0 10px;
}

.mytooltip .tooltip-content {
    position: absolute;
    /* z-index: 9999; */
    width: 360px;
    left: 50%;
    margin: 0 0 20px -180px;
    bottom: 100%;
    text-align: left;
    font-size: 14px;
    line-height: 30px;
    -webkit-box-shadow: -5px -5px 15px rgba(48, 54, 61, 0.2);
    box-shadow: -5px -5px 15px rgba(48, 54, 61, 0.2);
    background: #2b2b2b;
    opacity: 0;
    cursor: default;
    pointer-events: none;
}

.mytooltip .tooltip-content::after {
    content: "";
    top: 100%;
    left: 50%;
    border: solid transparent;
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: #2a3035 transparent transparent;
    border-width: 10px;
    margin-left: -10px;
}

.mytooltip .tooltip-content img {
    position: relative;
    height: 140px;
    display: block;
    float: left;
    margin-right: 1em;
}

.mytooltip .tooltip-item::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 20px;
    bottom: 100%;
    left: 50%;
    pointer-events: none;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.mytooltip:hover .tooltip-item::after {
    pointer-events: auto;
}

.mytooltip:hover .tooltip-content {
    pointer-events: auto;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0deg);
    transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0deg);
}

.mytooltip:hover .tooltip-content2 {
    opacity: 1;
    font-size: 18px;
}

.mytooltip .tooltip-text {
    font-size: 14px;
    line-height: 24px;
    display: block;
    padding: 1.31em 1.21em 1.21em 0;
    color: #fff;
}

/* ////////////////// */
li.tooltip {
    outline: none;
}

li.tooltip strong {
    line-height: 30px;
}

li.tooltip:hover {
    text-decoration: none;
}

li.tooltip span {
    z-index: 10;
    display: none;
    padding: 14px 20px;
    margin-top: 60px;
    margin-left: -160px;
    width: 300px;
    line-height: 16px;
}

li.tooltip:hover span {
    display: inline;
    position: absolute;
    border: 2px solid #fff;
    color: #eee;
    background: #333 url(http://www.menucool.com/tooltip/cssttp/css-tooltip-gradient-bg.png) repeat-x 0 0;
}

.callout {
    z-index: 20;
    position: absolute;
    border: 0;
    top: -14px;
    left: 120px;
}

/*CSS3 extras*/
li.tooltip span {
    border-radius: 2px;
    box-shadow: 0px 0px 8px 4px #666;
    /*opacity: 0.8;*/
}

/* Modal Size */
/* .modal-dialog {
    width: 39rem !important;
} */

/* AddNotice Loader -- contents */
#text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 20px;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.text-wrap {
    white-space: pre-line;
}

.fw-600 {
    font-weight: 600;
}

/* .modal .modal-content {
    border-radius: 5px;
    width: fit-content !important;
}
.modal .modal-dialog {
    margin-left: 100px !important;
    z-index: 10051;
} */
.modal .modal-dialog img {
    width: 100%;
}
