/* /Pages/LoanApplications/Chat/Chat.razor.rz.scp.css */
/*--------------------
Chat
--------------------*/

.chat[b-axaeellaqz] {
  width: 100%;
  height: calc(100% - 15px);
  max-height: 500px;
  z-index: 10;
  overflow: hidden;
  background-color: white;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}


/*--------------------
Chat Title
--------------------*/

.chat-title[b-axaeellaqz] {
  flex: 0 1 45px;
  position: relative;
  z-index: 2;
  width:100%;
  border-bottom:1px solid #ccc;
  color: #777;
  padding-top:50px;
  padding-bottom:5px;
  background-color:#fff;
  text-transform: uppercase;
  text-align: center;
}
.chat-title h1[b-axaeellaqz] {
    font-weight: normal;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

/*--------------------
Messages
--------------------*/


.messages[b-axaeellaqz] {
    flex: 1 1 auto;
    position: relative;
    overflow-y: auto;
    width: 100%;
}

.message[b-axaeellaqz] {
    clear: both;
    float: left;
    padding: 6px 10px 7px;
    border-radius: 20px 20px 20px 0;
    background: #eee; /*rgba(0, 0, 0, 0.1);*/
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.4;
    margin-left: 35px;
    margin-right: 10px;
    position: relative;
    border: 1px solid #ccc;
    /*text-shadow: 0 1px 1px rgba(0, 0, 0, .2);*/
}
.messageuser[b-axaeellaqz] {
    clear: both;
    float: right;
    padding: 6px 10px 7px;
    border-radius: 20px 20px 0 20px;
    margin: 8px 0;
    margin-right: 10px;
    font-size: 14px;
    line-height: 1.4;
    position: relative;
    border: 1px solid #ccc;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .2);
}

.message .avatar[b-axaeellaqz] {
    position: absolute;
    z-index: 1;
    bottom: -15px;
    left: -35px;
    border-radius: 30px;
    width: 40px;
    height: 40px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.message .avatar .img[b-axaeellaqz] {
    width: 100%;
    height: auto;
}

/*--------------------
Message Box
--------------------*/
.message-box[b-axaeellaqz] {
    flex: 0 1 42px;
    width: 90%;
    background: #fff;
    margin: 2px auto;
    padding: 10px;
    position: relative;
    border-radius: 20px;
    height: 14px;
    border: 1px solid #ccc;
}

.message-box .message-input[b-axaeellaqz] {
    background: none;
    border: none;
    outline: none !important;
    resize: none;
    font-size: 15px;
    height: 24px;
    margin: 0;
    padding-right: 20px;
    width: 265px;
    color: #444;
}
.message-box textarea:focus[b-axaeellaqz]::-webkit-input-placeholder {
    color: transparent;
}

.message-box .message-submit[b-axaeellaqz] {
    position: absolute;
    z-index: 1;
    top: 9px;
    right: 10px;
    color: #4A90E2;
    border: none;
    /* background: #c29d5f;*/
    background: #fff;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1;
    padding: 6px 10px;
    border-radius: 5px;
    outline: none !important;
    transition: background .2s ease;
    cursor: pointer;
}

.message-box .message-submit:hover[b-axaeellaqz]{
    background: #fff;
    color: #333;
}


.chat-window[b-axaeellaqz] {
    opacity: 1;
    border-radius: 20px;
    height: calc(100% - 60px) !important;
    max-height: 460px !important;
    min-height: 220px !important;
    width: 320px;
    background: rgba(255, 255, 255, 0.9);
    position: fixed;
    right: 5%;
    bottom: 20px;
    margin: auto;
    z-index: 10;
    box-shadow: 2px 10px 40px rgba(22,20,19,0.4);
}

.chat-window div.agent-face[b-axaeellaqz] {
    position: absolute;
    left: 0;
    top: -50px;
    right: 0;
    margin: auto;
    width: 101px;
    height: 50px;
    background: transparent;
    z-index:12;
}


.chat-window div[b-axaeellaqz] {
    font-size: 14px;
    color:#232323;
}

.circle[b-axaeellaqz] {
    display: block;
    width: 80px;
    height: 80px;
    margin: 1em auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 99em;
    border: 2px solid #fff;
}

.menu .button[b-axaeellaqz] {
    font-size: 20px;
    z-index: 12;
    text-align: right;
    color: #333;
    display: block;
    width: 48px;
    line-height: 25px;
    height: 40px;
    border-top-right-radius: 20px;
    /*border-top-left-radius:20px;*/
    position: absolute;
    right: 0;
    padding-right: 10px;
    cursor: pointer;
}

@media only screen and (max-device-width: 667px), screen and (max-width: 450px) {
    .chat-window[b-axaeellaqz] {
        z-index: 2147483001!important;
        width: 100%!important;
        height: 100%!important;
        max-height: none!important;
        top: 0!important;
        left: 0!important;
        right: 0!important;
        bottom: 0!important;
        border-radius: 0!important;
        background:#fff;
    }
    .chat-window div.agent-face[b-axaeellaqz] {
        top:-10px!important;
    }
    .chat[b-axaeellaqz] {
        border-radius: 0!important;
        max-height:initial!important;
    }
  
    .chat-title[b-axaeellaqz] {  
        padding:20px 20px 40px 10px!important;
        text-align:left;
    }
    .circle[b-axaeellaqz] {
        width:80px; 
        height:80px;
        border:1px solid #fff;
    }
    .menu .button[b-axaeellaqz] {
        border-top-right-radius:0;
    }
}

@media only screen and (min-device-width: 667px) {
    div.half[b-axaeellaqz] {
        margin: auto;
        width: 80px;
        height: 40px;
        background-color: #fff;
        border-top-left-radius: 60px;
        border-top-right-radius: 60px;
        border-bottom: 0;
        box-shadow:1px 4px 20px rgba(22,20,19,0.6);
    }
}

.button-img[b-axaeellaqz] {
    position: fixed;
    right: 8%;
    background: none;
    bottom: 20px;
    margin: auto;
    outline: none; /* Для синий ободки */
    border: 0;
}

.chat-img[b-axaeellaqz] {
    width: 70px;
    height: 70px;
    border-radius: 100em;
}
/* /Pages/LoanApplications/Wizard/Components/WizardNavButtons.razor.rz.scp.css */

.wizard-nav-buttons[b-6hv95jjyyv] {
    display: flex;
    justify-content: space-between
}
/* /Shared/Alert.razor.rz.scp.css */
.alert-container[b-lezazfyd0b] {
    position: sticky;
    bottom: 10px;
    z-index: 99990;
    width: fit-content;
    height: fit-content;
    margin-left: auto;
    margin-right: auto;
}

    .alert-container > div[b-lezazfyd0b] {
        max-width: 550px;
        min-width: 350px;
    }

    .alert-container .close[b-lezazfyd0b] {
        margin-left: 10px;
    }
.btn-close[b-lezazfyd0b] {
    box-sizing: content-box;
}
/* /Shared/Loader.razor.rz.scp.css */
.app-loader-wrapper[b-pdv24kherz] {
    left: 0px;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255, 0.9);
    position: absolute;
}
/* /Shared/Menu/SidebarMenu.razor.rz.scp.css */
.oi[b-dub2fcenrh] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}
