@charset "UTF-8";

.reaction {
    display: flex;
    width: 100%;
    height: 36px;
}

@media screen and (min-width: 480px) {
    .reaction {
        height: 48px;
    }
}

@media screen and (min-width: 1280px) {
    .reaction {
        height: 60px;
    }
}

.reaction button {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    background-color: #fff;
    border: none;
    outline: none;
}

.reaction button i {
    margin-right: 8px;
}

.reaction button i::before {
    color: var(--theme-color);
}

.reaction button:disabled {
    color: var(--gray) !important;
}

.reaction button:disabled i::before {
    color: var(--gray) !important;
}

.pink {
    color: var(--pink) !important;
}

.before-pink::before {
    color: var(--pink) !important;
}

.blue {
    color: var(--blue) !important;
}

.before-blue::before {
    color: var(--blue) !important;
}
