:root {
    --main-text: #697d6e;
}

body {
    margin: 0;
    color: var(--main-text)
}

body,
html {
    scroll-behavior: smooth;
    height: 100%;
    color: var(--main-text)
}

* {
    box-sizing: border-box;
    color: inherit;
    margin: 0;
    margin-bottom: 0px;
    /* padding: 0; */
    font-family: HelveticaNeue-Light, "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

.mybt {
    background: rgb(39, 130, 51);
    cursor: pointer;
    transition: background-color, width .3s ease;
}

.mybt:hover {
    background: rgb(18, 77, 26)
}

.mybt:disabled {
    cursor: not-allowed;
    background: rgb(150, 180, 155);
}

.theme-col {
    color: rgb(4, 46, 4);
}

.mybt,
.mybt:hover {
    border: none;
    color: #fff;
    padding: 10px
}

.mybt::-moz-focus-inner {
    border: none;
}

.loader-backdrop {
    position: fixed;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(100, 100, 100, 0.5);
}