@font-face {
    font-family: 'tellme';
    src: url('/assets/fonts/tellme.ttf');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'tellme';
    font-size: x-large;
}

body {
    background: rgb(206, 240, 255);
    background: linear-gradient(180deg, rgba(206, 240, 255, 1) 0%, rgba(130, 218, 255, 1) 100%);
    min-width: 350px;
}

textarea {
    resize: none;
}

.red {
    color: red !important;
}

.black {
    color: rgba(0, 0, 0, .6) !important;
}

.text-right {
    text-align: right !important;
}

.text-left {
    text-align: left !important;
}

.f-small-bold {
    font-size: small;
    font-weight: bold;
}

.box {
    border-radius: 15px;
    padding: 25px;
    margin: 10px;
    backdrop-filter: blur(18px);
    background: rgb(250, 250, 250);
    background: linear-gradient(0deg, rgba(250, 250, 250, 0.5) 0%, rgba(240, 251, 255, 0.5) 100%);
    box-shadow: 0px 0px 10px 0.5px rgba(0, 0, 0, .1);
}

.blur-back {
    backdrop-filter: blur(5px);
}

p {
    white-space: pre-wrap;
}

.f-large-bold {
    font-size: larger;
    font-weight: bold;
}

.f-bold {
    font-weight: bold;
}

.grey {
    color: grey;
}

nav {
    padding: 0px 15px;
    background-color: rgba(192, 192, 192, 0.8);
}

.navbar-collapse {
    padding: 10px;
}

.file-chooser {
    font-size: medium;
}

.float-right {
    float: right;
}

.float-left {
    float: left;
}

.notifs-container {
    display: block;
    max-width: 90vw;
    max-height: 88vh;
    min-width: 300px;
    background-color: white;
    border-radius: 15px;
    position: fixed;
    top: 10vh;
    right: 5vw;
    box-shadow: 3px 3px 7px rgba(0, 0, 0, .2);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 99999;
}

.hidden {
    display: none !important;
}

.btn-notifs {
    margin-right: 50px;
}

.btn-plane {
    background-color: transparent;
    outline: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px;
    margin: 2px;
    border: none;
}

.notification {
    padding: 15px;
}

.notif-alter {
    background-color: whitesmoke;
}

.footer {
    padding: 20px;
    background-color: rgba(192, 192, 192, 0.8);
    box-shadow: 0 -3px 9px 1px rgba(0, 0, 0, .15);
    height: 85vh;
    overflow: clip;
}

.d-none {
    display: none;
}

.d-inline {
    display: inline;
}

@media only screen and (max-width: 700px) {
    .btn-notifs {
        margin-right: -50px;
    }
}

.grecaptcha-badge {
    width: 70px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    left: 4px !important;
}

.grecaptcha-badge:hover {
    width: 256px !important;
}

.newDomain{
    font-family: Tahoma;
    margin: 10px auto;
    font-size: .65em;
    font-weight: bold;
    width: 100%;
    text-align: center;
    padding: 5px;
    background-color: red;
    color: white;
    animation: myblink .5s ease-in-out infinite;
}

@keyframes myblink {
    to{
        color: yellow;
    }
}
