.bg-native {
    background-color: #F2FEED;
}

/* width */
::-webkit-scrollbar {
    width: 3px;
    height: 1px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #12f97e;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #013f09;
}

.native-border-color {
    border-color: #F2FEED;
}

.native-h-50vh {
    height: 50vh;
}

.native-h-75vh {
    height: 75vh;
}

.native-btn-white-b {
    border: 2px solid white;
    padding: 5px 20px 5px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    cursor: pointer;
}

.native-btn-white-b:hover {
    background-color: white;
    transition: 0.3s;
}

.native-btn-green-b {
    border: 2px solid rgb(1, 51, 1);
    padding: 5px 20px 5px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-weight: 900;
    cursor: pointer;
}

.native-btn-green-b:hover {
    background-color: rgb(1, 51, 1);
    color: white;
    transition: 0.3s;
}