@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;900&display=swap');

:root {
    --botColor: #000853;
}

html,
body {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
}

.container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    height: 100vh;
}

.frame {
    flex-grow: 0;
    width: 10%;
    opacity: 1;
    background-image: url("../img/site.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    transition: 0.7s ease-out all;
}

.frame:not(:last-of-type) {
    box-shadow: 20px 0 11px 0px rgba(0, 0, 0, 0.2);
}

.frame:hover {
    flex: 1 1 auto;
    opacity: 1;
}

.frame.stretch {
    flex: 1 1 auto;
}

iframe {
    width: 100%;
    height: 100%;
}

.hidden {
    display: none;
}

.settings {
    display: none;
    position: fixed;
    z-index: 99998;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.3);
    transition: 1s ease all;
}

.panel {
    width: calc(50vw - 50px);
    height: calc(50vh - 50px);
    margin: 25vh 25vw;
    padding: 25px;
    border-radius: 10px;
    background: #ffffff;
    overflow: scroll;
}

fieldset {
    padding: 25px 15px;
    border: 1px solid #ccc;
    margin-bottom: 25px;
}

legend {
    padding: 0px 15px
}

.panel input[type=text], .panel input[type=email] {
    border: 1px solid #d5d5d5;
    width: calc(100% - 1.65em);
    padding: 1em 0.7em;
    margin-bottom: 10px;
}

.panel input[type=checkbox],
.panel input[type=color] {
    margin: 10px 5px 20px 0;
}

.panel button {
    width: calc(100%);
    padding: 1em 0.7em;
}

.settingsToggle {
    position: fixed;
    z-index: 99999;
    left: -70px;
    top: -70px;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background: #ffffff;
    box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease all;
    cursor: pointer;
    opacity: 0.3;
}

.settingsToggle:hover {
    left: -40px;
    top: -40px;
    opacity: 1;
}

.settingsToggle.closeSettings {
    position: relative;
    top: -10px;
    left: 0px;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: right;
    font-size: 24px;
}

.notificationToggle {
    position: fixed;
    z-index: 99996;
    left: -70px;
    bottom: -70px;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background: #ffffff;
    box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease all;
    cursor: pointer;
    opacity: 0.3;
}

.notificationToggle:hover {
    left: -40px;
    bottom: -40px;
    opacity: 1;
}

.blur {
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
}

.inputHint {
    padding-left: 8px;
    font-size: 0.7em;
    color: #888888;
    font-weight: 300;
}

.notification {
    position: fixed;
    z-index: 99997;
    right: 10px;
    top: 10px;
    width: 350px;
    height: 70px;
    border-radius: 10px;
    background: #383838;
    border: 2px solid #5B5B5B;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.7);
    transition: 0.7s ease all;
    opacity: 0.97;
    display: flex;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
    transform: translateX(150%);
}

.notification .message {
    flex-grow: 1;
    display: flex;
    align-items: center;
    min-width: 0;
}

.notification .message .icons {
    height: 65%;
    padding: 6px;
}

.notification .message .text {
    flex-grow: 1;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 10px;
}

.notification .message .text p:nth-of-type(1) {
    font-weight: bold;
    font-size: 14px;
    padding-bottom: 4px;
}

.notification .message .text p:nth-of-type(2) {
    font-weight: bold;
    padding-bottom: 2px;
}

.notification .actions {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #5B5B5B;
    flex: 0 1 auto;
    cursor: pointer;
}

.notification .actions div {
    flex-grow: 1;
    display: flex;
    align-items: center;
    padding: 0 16px;
    color: #B3B3B3;
    font-weight: bold;
    font-size: 12px;
    transition: 0.3s ease all;
}

.notification .actions div:hover {
    background: #525252;
}

.notification .actions div:last-of-type {
    border-top: 1px solid #5B5B5B;
}

.frame.abm {
    position: relative;
    overflow: hidden;
}

.abmPlaybook {
    position: absolute;
    z-index: 99997;
    right: 35px;
    bottom: 35px;
    width: 400px;
    border-radius: 5px;
    box-shadow: 0 4px 23px 0 rgba(0, 0, 0, .09);
    transition: 0.7s ease all;
    display: flex;
    flex-direction: column;
    font-weight: normal;
    background: var(--botColor);
    transform: translateX(150%);
}

.frame.abm:hover .abmPlaybook {
    transform: translateX(0%);
}

.abmTop {
    background: var(--botColor);
    border-radius: 5px 5px 0 0;
    display: flex;
    flex-direction: column;
    padding: 15px 20px 15px 10px;
    color: #ffffff;
}

.abmHeader {
    display: flex;
}

.abmTop .repPic {
    position: relative;
    margin-top: -35px;
    background: var(--botColor);
    border-radius: 50%;
    border: 3px solid var(--botColor);
}

.abmTop .repPic img {
    border-radius: 50%;
    height: 70px;
    width: 70px;
}

.abmTop .repName {
    flex-grow: 1;
    padding: 0 10px;
    font-size: 18px;
}

.abmTop .menuIcon {}

.abmTop .abmMessage {
    padding: 15px 10px 10px 10px;
    font-size: 15px;
    line-height: 20px;
}

.abmBottom {
    padding: 15px;
    cursor: pointer;
    background: #ffffff;
    color: #000000;
    border-radius: 0 0 5px 5px;
    text-align: center;
    font-weight: 300;
    font-size: 15px;
    transition: 0.3s ease all;
}

.abmBottom:hover {
    opacity: 1;
}
