
* {
  margin: 0;
  padding: 0;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
}



:root {
    --blue: rgb(0,125,255);

    --safe-top: env(safe-area-inset-top);
    --safe-bottom: env(safe-area-inset-bottom);

    font-size: 14px;
    color: #333333;
    background: #F9F9F9;
}

.active:active {
    opacity: 0.8;
}

.primary-button {
    height: 44px;
    line-height: 44px;
    margin: 0 15px;
    border-radius: 22px;
    background-color: var(--blue);
    color: white;
    font-size: 16px;
    text-align: center;
    /* width: 100%; */
}
.fixed-bottom-primary-button {
    position: fixed;
    left: 15px;
    right: 15px;
    bottom: calc(var(--safe-bottom) + 15px);
    height: 44px;
    line-height: 44px;
    border-radius: 22px;
    background-color: var(--blue);
    color: white;
    font-size: 16px;
    text-align: center;
}
.fixed-bottom-primary-button:active,
.primary-button:active {
    opacity: 0.8;
}
.fixed-bottom-primary-button-space {
    padding-bottom: calc(var(--safe-bottom) + 15px + 44px + 15px);
}

.card {
    background-color: white;
    border-radius: 10px;
}

.divider {
    height:  1px;
    background-color: rgb(235,235,235);
    transform: scaleY(0.5);
}
.flex-x {
    display: flex;
    flex-direction: row;
}
.flex-y {
    display: flex;
    flex-direction: column;
}
.flex-main-center {
    justify-content: center;
}
.flex-main-end {
    justify-content: end;
}
.flex-main-between {
    justify-content: space-between;
}
.flex-cross-center {
    align-items: center;
}
.flex-cross-end {
    align-items: end;
}
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

