html, css{
    touch-action:none;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    -ms-content-zooming: none;
    -ms-overflow-style: none;
}

*{
    font-optical-sizing: auto;
    font-style: normal;
    font-family:sans-serif;
}

body{
    margin: 0;
}

button{
    transition: all .5s;
}

.button.default {
    position: relative;
    padding: 15px 30px;
    background-color: #009245;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    overflow: hidden;
    cursor: pointer;
}

.button.default.g{
    margin: 0 10px;
}

.button.default.b{
    background-color: #FFF;
    color: #009245;
    border: solid 1px #009245;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(223, 223, 223, 0.6);
    transform: scale(0);
    animation: ripple-animation .6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.dlg{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dlg .back{
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(35, 35, 35,60%);
}

.dlg .front{
    width: calc(90% - 40px);
    height: fit-content;
    background: #fff;
    position: absolute;
    z-index: 2;
    padding: 20px;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
}