
html > body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

body[class="bootstrap-dark"] {
    --s-bg: #343434;
    --s-fg: #ffffff;
    --spin-bgc: #fff;
}

body[class="bootstrap"] {
    --s-bg: #ffffff;
    --s-fg: #000000;
    --spin-bgc: #333;
}

#my-address {
    margin-top: 0.5rem;
    margin-left: 1rem;
/*    color: black;*/
}

.spinner > div {
    background-color: var(--spin-bgc);
}

body[class="bootstrap-dark"] .my-address-block {
    background-color: #232323;
    padding: 0.7rem;
}

body[class="bootstrap"] .my-address-block {
    background-color: #F8F9FA;
    padding: 0.5rem;
    white-space: nowrap;
    padding-left: 0;
    margin-left: 1rem;
    text-align: center;
    padding-right: 0;
}
.my-address-block {
/*    background-color: #232323;
    padding: 0.7rem;*/
    white-space: nowrap;
    padding-left: 0;
    margin-left: 1rem;
    text-align: center;
    padding-right: 0;
}

.get-new-address-col {
    text-align: center;
    padding: 0.5rem;
}

.email-list-item {
    padding-left: 0;
    padding-bottom: 0;
}

body[class="bootstrap-dark"] .copy-button {
    font-size: 75% !important;
    color: #808080;
    cursor: pointer;
    background-color: transparent;
    border: 0;
    border-radius: 0.25rem;
}

body[class="bootstrap"] .copy-button:hover {
    color: #fff;
    background-color: #007BFF;
}

body[class="bootstrap-dark"] .copy-button:hover {
    color: #fff;
    background-color: #939799;
}

body[class="bootstrap"] .copy-button {
    font-size: 75%;
    color: #808080;
    cursor: pointer;
    background-color: transparent;
    border: 0;
    border-radius: 0.25rem;
}

.copy-button:hover {
    color: #fff;
    background-color: #939799;
}

header {
    /*background-color: #f9f9f9;*/
    padding-bottom: 1rem;
    padding-top: 1rem;
}

main {
    flex: 1; /* stick footer to the bottom */
    padding-top: 2rem;
    padding-bottom: 2rem;
}

#language-selection {
    width: 10rem;
}

body[class^="bootstrap-dark"] footer {
    padding-top: 1rem;
    background-color: #232323;
}

footer {
    padding-top: 1rem;
    background-color: #eeeeee;
}

.open-collapse-button {
    background-color: transparent;
    width: 3rem;
}

.open-collapse-button > i {
    font-size: 1.5em;
}

[aria-expanded="false"] .expand-button-closed {
    display: block;
}

[aria-expanded="false"] .expand-button-opened {
    display: none;
}

[aria-expanded="true"] .expand-button-closed {
    display: none;
}

[aria-expanded="true"] .expand-button-opened {
    display: block;
}

#new-content-avalable {
    display: none;
    text-align: center;
}

.email-body {
}

.alert-fixed {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 9999;
    border-radius: 0px;
    text-align: center;
}

.float-mail-actions {
    float: right ;
}
@media (max-width: 768px) {
    .float-mail-actions {
        float: left ;
    }
    .float-mail-actions.primary::after {
        content:"\a";
        white-space: pre;
    }
    .email-body {
        display: grid;
    }
}
#address-box-edit {
    margin: 1rem;
}
#settings-box-edit {
    margin: 1rem;
}
@media (max-width: 768px) {
    body[class^="bootstrap"] .row {
        display: block;
    }
}
body[class="bootstrap-dark"] a {
    color: #4493f8;
}
body[class="bootstrap-dark"] a:hover {
    color: #4493f8;
}

a.other-link {
    color: #e12424 !important;
}
a.other-link:hover {
    color: #ff1c1c !important;
}
body[class="bootstrap"] .alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}
body[class="bootstrap-dark"] .alert-info {
    color: #d3d3d3;
    background-color: #3a747e;
     border-color: #3a747e; 
}

body[class="bootstrap-dark"] .btn-outline-dark {
    color: #f8f9fa;
    border-color: #f8f9fa;
}

body[class="bootstrap-dark"] .btn-outline-dark:hover {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}


/* toggle css  */
.toggle {
    background-color: #607d8b;
    color: #607d8b;
    visibility: hidden;
}

.toggle_label {
    position: relative;
    display: inline-block;
    width: 68px;
    height: 35px;
    background-color: rgb(0, 0, 0);
    border-radius: 30px;
}

.slider {
    bottom: 0;
    cursor: pointer;
    position: absolute;
    right: 0px;
    left: 0px;
    top: 0px;
    bottom: 0;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    border: 2px solid white;
    content: "";
    height: 25px;
    width: 25px;
    right: 10px;
    left: 7px;
    top: 4px;
    position: absolute;
    transition: .4s;
    border-radius: 50%;
}

.slider i {
    position: absolute;
    display: inline-block;
    font-size: 14px;
    color: #fff;
    transition: opacity 0.4s;
}

.moon {
    top: 17px;
    left: 15px;
}

.sun {
    top: 17px;
    right: 10px;
    opacity: 0;
}

input:checked+.slider {
    background-color: #b1b1b1;
}

input:checked+.slider:before {
    transform: translateX(31px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.toggle:checked+.slider .moon {
    opacity: 0;
}

.toggle:checked+.slider .sun {
    opacity: 2;
    color: rgb(255, 228, 127);
}