.btn {
    font-weight: 400;
    padding: 0 10px;
    font-family: var(--font);
    color: black;
    cursor: pointer;
    line-height: 44px;
    opacity: 1;
    display: inline-block;
    font-size: 17px;
    border: unset;
    opacity: 1;
    transform: scale(1);
    position: relative;
    border-radius: var(--border-radius);
    text-align: center;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    font-weight: 500;
    color: var(--font-color);
    background: #efefef;
    white-space: nowrap;
}

.btn i{
    color:var(--color);
    margin-right: 5px;
}
.btn i.fa-angle-right{
    margin-right:0;
    margin-left:5px;
}
html.dark .btn {
   background: #171717;
}
.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.btn span {
    color: var(--color);
}
.btn:after {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    content: "";
    width: 0;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
}
html.dark .btn:after {
    background-color: rgba(255, 255, 255, 0.1);
}
.btn:hover:after {
    width: 100%;
}
.btn.btn-green {
    background: #417f41;
    color: white !important;
}
.btn.btn-red {
    background: #ffe2e2;
}
html.dark .btn.btn-green {
    background: #006600;
}
html.dark .btn.btn-red {
    background: #760000;
}
.btn.btn-color {
    background: var(--color-light);
}
