.btn {
    color: #1d1d1d;
    background-color: #fff;
    transition: all 0.3s;
    border-radius: 30px;
    cursor: pointer;
    border: none;
    padding: 8px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    position: relative;
    text-decoration: none !important;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn img {
    transition: all 0.2s;
}
.btn-sm {
    border-radius: var(--radius-sm);
}
.btn-xs {
    border-radius: var(--radius-xs);
    font-size: 12px;
    padding: 4px 8px;
    color: #000;
    background-color: #fff;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-shadow {
    box-shadow: 0px 4px 8px 0px #00000026;
}
.btn-outline {
    background-color: transparent !important;
    border: 1px solid #d7d7d5;
}
.btn-success {
    background-color: var(--c-bkg);
    color: #fff;
}
.btn-success:hover {
    background-color: #10b45d;
}
.btn-outline.btn-success {
    border: 1px solid var(--c-bkg);
    color: var(--c-bkg);
}
.btn-warning {
    background-color: var(--c-yellow);
}
.btn-warning:hover {
    background-color: #ffcc4a;
}
.btn-outline.btn-warning {
    border: 1px solid var(--c-yellow);
    color: var(--c-yellow);
}

.whatsapp {
    color: #979797;
    font-family: var(--f-montserrat);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    display: flex;
    align-items: center;
}
.whatsapp a {
    box-shadow: 0px 1.15px 2.31px 0px #00000026;
    border-radius: 20px;
    padding: 6px 15px;
    background-color: #fff;
}
.whatsapp-success a {
    border: 2px solid var(--c-green);
}
.whatsapp img {
    margin-left: 10px;
}

.btn-icon-sm {
    border-radius: var(--radius-xs);
    background: var(--c-whitish);
    box-shadow: 0px 1.15px 2.31px 0px #00000026;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 24px;
    position: relative;
}
.btn-icon-sm img {
    max-width: 16px;
    max-height: 16px;
}
