
.senses-atoms-Toast {
    position: fixed;
    color: white;
    left: 50%;
    bottom: 5%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px;
    border-radius: 5px;
    transform-origin: center;
    transform: translate(-50%, 0px);
    animation-duration:0.5s;
    animation-name: senses-atoms-Toast__slidein;
}

@keyframes senses-atoms-Toast__slidein {
    from {
        transform-origin: center;
        transform: scale(0) translate(-50%, 0);
        opacity: 0;
    }

    to {
        transform-origin: center;
        transform: scale(1) translate(-50%, 0);
        opacity: 1;
    }
}
.senses-atoms-MinimalistButton {
    background: none;
	color: white;
	border: none;
	padding: 0;
	cursor: pointer;
	outline: inherit;
    border-width: 1px;
    border-color: transparent;
    border-radius: 15px;
    border-style: solid;
    padding: 6px 12px 6px 12px;
    cursor: default;
    background-color: transparent;
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    cursor: pointer;
    font-weight: 700;
    margin-right: 10px;
}

.senses-atoms-MinimalistButton:focus {
    border-color: red;
    border-style: dashed;
    box-sizing: border-box;
    text-decoration: underline;
}
.senses-atoms-Toolbar {
    background-color: #1d386b;
    padding: 20px 15px 20px 15px;
}
.senses-atoms-TextArea {
    background-color: whitesmoke;
    outline: none;
    border-style: solid;
    border-width: 1px 1px 2px 1px;
    padding: 5px;
    font-family: 'Inter', sans-serif;
    margin: 5px;
}

.senses-atoms-TextArea:focus {
    background-color: lightgoldenrodyellow;
}
.senses-atoms-Button {
    background: none;
	color: inherit;
	border: none;
	padding: 0;
	cursor: pointer;
	outline: inherit;
    border-width: 1px;
    border-color: lightslategrey;
    border-radius: 15px;
    border-style: solid;
    padding: 6px 12px 6px 12px;
    cursor: default;
    background-color: #54c0a6;
    color: black;
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    cursor: pointer;
    filter: drop-shadow(4px 4px 4px rgba(0,0,0, 0.2));
    font-weight: 700;
    margin-right: 10px;
}

.senses-atoms-Button:focus {
    border-color: red;
    border-style: dashed;
    box-sizing: border-box;
    text-decoration: underline;
}
.senses-atoms-Popover {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0.3, 0.3, 0.3, 0.4);
}

.senses-atoms-Popover-close {
    position: absolute;
    right: 8px;
    size: 18px;
}

.senses-atoms-Popover-content {
    position: absolute;
    width: 60%;
    border-style: solid;
    border-color: #54c0a6;
    border-width: 1 1 1 14px;
    background-color: white;
    padding: 0 20px 23px 0;
}

.senses-atoms-Popover-content-center {
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0px);
}

.senses-atoms-Popover-hide-background {
    background-color: transparent;
}

.senses-atoms-Popover-title {
    font-family: Nunito, sans-serif;
    font-size: 24px;
    font-weight: 800;
}

.senses-atoms-Popover-inner {
    padding-left: 35px;
    padding-right: 35px;
}
.senses-atoms-TextInput {
    background-color: whitesmoke;
    outline: none;
    border-style: solid;
    border-width: 1px 1px 2px 1px;
    padding: 5px;
    font-family: 'Inter', sans-serif;
    margin: 5px;
}

.senses-atoms-TextInput:focus {
    background-color: lightgoldenrodyellow;
}
.senses-forms-WriteMailPopover-fields {
    width: 100%;
}
.senses-MaterialIcon {
    align-items: center;
    display: inline-flex;
    vertical-align: text-bottom;
}
.senses-LoginScreen-fields {
    width: 100%;
}

.senses-mails-MailView {
    grid-column: 2;
    display: block;
    height: 100%;
    overflow-y: scroll;
    grid-area: 1 / 2 / 2 / 3;
}
.senses-summaries-SummariesList {
    padding: 0;
    margin: 0;
    grid-column: 1;
    height: 100%;
    overflow-y: scroll;
    background-color: #b1b2b5;
    grid-area: 1 / 1 / 2 / 2;
}
.-App {
    height: 100%;
    font-family: 'Inter', sans-serif;
}

.-App-mainContent {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-gap: 10px;
    bottom: 0;

    /*FIXME: This should not be hardcoded like that*/
    position: absolute;
    bottom: 0;
    width: 100%;
    top: 70px;
}
.senses-summaries-SummaryListEntry {
    display: block;
    height: 30px;
    background-color: whitesmoke;
    border-width: 0px 0px 1px 0px;
    border-color: black;
    border-style: solid;
    padding: 10px;
    position: relative;
}

.senses-summaries-SummaryListEntry-read {
    opacity: 0.5;
}

.senses-summaries-SummaryListEntry:hover {
    background-color: lightcyan;
}

.senses-summaries-SummaryListEntry-avatar {
    position: absolute;
    width: 50px;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: #1d386b;
}

.senses-summaries-SummaryListEntry-avatar-inside {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60%;
    height: 60%;
    background-color: antiquewhite;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.senses-summaries-SummaryListEntry-avatar-inside-letter {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5em;
    font-weight: bold;
}

.senses-summaries-SummaryListEntry-subject {
    position: absolute;
    left: 95px;
    right: 0;
    height: 100%;
    font-size: 12px;
}

.senses-summaries-SummaryListEntry-from {
    position: absolute;
    left: 95px;
    right: 0;
    height: 100%;
    font-size: 12px;
    top: 25px;
}
.senses-ToggleButton {
    border-color: grey;
    border-width: 1px;
    border-style: solid;
    cursor: default;
    display: inline-block;
    user-select: none;
    padding: 4px;
}

.senses-ToggleButton.checked {
    background-color: lightgrey;
}
