.counter {
    font-size: 3rem;
    margin-top: 1rem;
}

.fixed-bottom {
    width: 100%;
    padding: 10px;
}

.dark-mode {
    background-color: #333;
    color: #fff;
}

/* //////////////// */

.row {
    /* margin-right: 0px!important; */
}

.card-body {
    transition: all 0.3s !important;
    transition: background-color 0.8s ease-out !important;
}

.btn:focus {
    outline: none !important;
    box-shadow: none;
}

#outputTextarea {
    padding-right: 38px;
    opacity: 1;
    border: dashed 2px #80808014;
    /* background-color: #f5f5f542; */
    line-height: 1.8rem;
    /* color: #4e4f4f; */
    outline: none;
    resize: none;
    caret-color: #7ab0ff;
    transition: color 1s cubic-bezier(0.42, 0, 0.01, 1.03);
    transition: background-color 1.5s ease-out;
    transition: border 1.5s ease-out;
}

#outputTextarea:focus {
    /* outline:auto; */
    border: dashed 2px #007bff4f;
    background-color: #e8f3ff14;
    resize: both;
    box-shadow: none;
    /* color: #002854; */
}

.textarea-btn {
    text-decoration: none !important;
    /* color: #007bff; */
    position: absolute;
    width: 35px;
    height: 35px;
    right: 3px;
    left: calc(100% - 37px);
    opacity: 0.6;
}

.textarea-btn:disabled {
    opacity: 0.1;
}

.textarea-btn:hover:enabled {
    position: absolute;
    opacity: 1;
}

/* .textarea-btn:focus {
    outline: none !important;
} */

.floatingContentTwo {
    /* width: 100px;
    height: 20px; */
    position: absolute;
    top: 0px;
    right: 16px;
    /* background: blue; */
}

/* 
.icon-list:hover{
    opacity: 0.7;
    transition: opacity 0.4s ease-out;
} */

/* Extra small devices (576px and down) */
/* @media (max-width: 575.98px) { 
    .col {
      flex: 0 0 33.33%;
      max-width: 33.33%;
    }
  } */

.loading-animation {
    /* font-weight: 200; */
    /* font-size: 1.8em; */
    /* text-transform: uppercase; */
    /* letter-spacing: 0.5em; */
}

.loading-animation .letter {
    display: inline-block;
    line-height: 1em;
}

#statusElement {
    opacity: 1;
    transition: all 0.5s;
}

#statusElement.hide {
    opacity: 0;
}

#darkModeButton {
    opacity: 1;
    transition: all 0.5s;
}

#darkModeButton.hide {
    opacity: 0;
}

.hider {
    opacity: 0 !important;
    transition: all 0.3s;
}

.shower {
    opacity: 1 !important;
    transition: all 0.3s;
}

.overlayListElement {
    background-color: rgb(255, 255, 255);
    height: 100%;
    overflow-x: hidden;
    padding-top: 85px;
    position: fixed;
    right: 0;
    top: 0;
    /* transition: .35s; */
    width: 0;
    z-index: 98;
    /* background: rgba(255, 255, 255, 0.4); */
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
    /* backdrop-filter: blur(11px); */
    /* -webkit-backdrop-filter: blur(11px); */
}

.listElement {
    /* background-color: #111; */
    height: 100%;
    overflow-x: hidden;
    padding-top: 85px;
    position: fixed;
    right: 0;
    top: 0;
    transition: .35s ease;
    width: 0;
    z-index: 99;
    word-break: keep-all;
}

.listElement .listItem {
    color: #494949;
    display: block;
    /* font-size: 25px; */
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    transition: .3s;
}

.overlay {
    background-color: #fff;
    opacity: 0.7;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 98;
}

/* 
.listElement a {
    color: #494949;
    display: block;
    font-size: 25px;
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    transition: .3s;
}

.listElement a:hover,
.offcanvas a:focus {
    color: #f1f1f1;
}

.listElement .closebtn {
    font-size: 36px;
    margin-left: 50px;
    position: absolute;
    right: 25px;
    top: 0;
} */

/* @media screen and max-height 450px {
.sidenav,.sidenavR{padding-top:15px;}
.sidenav a,.sidenavR a{font-size:18px;}
} */







/* Submit button spinner animation */
.spinner {
    margin: 100px auto 0;
    width: 70px;
    text-align: center;
}

.spinner>div {
    width: 18px;
    height: 18px;
    background-color: rgb(255, 255, 255);

    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bouncedelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}