

/* buttons */
.default-button {
    min-height: 44px;
    padding: 6px 23px;
    background: #000;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    border-radius: 30px;
    font-family: var(--font3);
    justify-content: center;
    text-align: center;
}
.default-button:not(.default-button--wider) {
    width: max-content;
}
.default-button:hover {
    color: #fff;
    background: var(--theme__color1);
}
.default-button--white {
    background: #fff;
    color: #000;
}
.default-button--theme1 {
    background: var(--theme__color1);
    color: #fff;
}
.default-button--theme1:hover {
    background: var(--theme__darkass-color);
}


.color-black {
    color: #000 !important;
}





/* nice-select-edit */
.nice-select {
    height: initial;
    min-height: initial;
    line-height: 1;
    padding: 0 20px 0 0;
    float: none;
    display: inline-block;
    border: none;
}
.nice-select:after {
    margin-top: -2px;
}
.nice-select .list .option,
.nice-select.open .list .option {
    font-size: 16px;
    line-height: initial;
    min-height: initial;
    padding: 13px 15px;
    min-width: 50px;
}
.nice-select .option.selected {
    font-weight: inherit;
}
.nice-select .list {
    border-radius: 2px;
    min-width: 100%;
}

@media (max-width: 767px) {
    .nice-select .list .option,
    .nice-select.open .list .option {
        font-size: 16px;
        line-height: initial;
        min-height: initial;
        padding: 8px 12px;
        min-width: 50px;
    } 
}





/* important */
#scrollUp {
    background-image: url("../images/base/top.png");
    bottom: 20px;
    right: 20px;
    width: 38px;    /* Width of image */
    height: 38px;   /* Height of image */
    color: transparent;
}