.btn {
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn.disabled, .btn:disabled {
    background-color: #dddddd !important;
    color: rgb(46, 45, 45) !important;
    box-shadow: none !important;
    border: none;
}

.btn-icon-text, .btn-icon-text:focus {
    border: none;
    outline: none;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: fit-content;
    width: -moz-fit-content;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0;
}

.btn-icon-text .icon {
    background-color: #8ce699 !important;
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50px;
    margin-right: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.btn-icon-text:hover .icon {
    background-color: #79d97c !important;
}

.btn-icon-text .text {
    color: #000000;
    text-align: left;
}

.btn-round {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* padding: 12px; */
}

.btn-hover-mint:hover {
    background-color: #8ce699 !important;
    cursor: pointer;
}

.btn-round-sm {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    /* padding: 12px; */
}

.btn-gray {
    background-color: #e9e9e9;
    border-color: #e9e9e9;
    color: #000000;
}

.btn-gray:hover {
    background-color: #cccccc;
}

.btn-gray-underline {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 70%, #e9e9e9 70%);
    border: none;
    padding: 0;
    color: #000000;
}

.btn-gray-underline:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 70%, #cccccc 70%);
}

.btn-success {
    background-color: #8ce699;
    border-color: #8ce699;
    color: #000000;
}

.btn-success:hover {
    background-color: #79d97c;
    border-color: #79d97c;
    color: #000000;
}

.btn-success-underline {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 70%, #8ce699 70%);
    border: none;
    padding: 0;
    color: #000000;
}

.btn-success-underline:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 70%, #79d97c 70%);
}

.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.1rem rgb(140, 230, 153) !important;
}

.btn-mint-round {
    color: #000000;
    background-color: #e9e9e9;
    border-color: #e9e9e9;
    border: none;
    transition: 0.3s;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50px !important;
    padding: 12px;
    transition: 0.3s;
}

.btn-sm-mint-round {
    color: #000000;
    background-color: #e9e9e9;
    border-color: #e9e9e9;
    border: none;
    transition: 0.3s;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50px !important;
    padding: 8px;
    transition: 0.3s;
}

.btn-success-round:hover, .btn-mint-round:hover, .btn-sm-mint-round:hover {
    background-color: #79d97c;
    border-color: #79d97c;
    transition: 0.3s;
}