select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    box-shadow: none;
    border-radius: 5px;
    border: 3px solid #40916C;
    background: #FFF;
    background-image: none;
    flex: 1;
    padding: 0 .5em;
    color: #40916C;
    cursor: pointer;
    font-size: 1em;
    font-family: 'Open Sans', sans-serif;
}

option {
    background-color: #fff;
    color: #40916C;
    font-weight: 500;
    font-size: 1em;
    font-family: 'Open Sans', sans-serif;
}

select::-ms-expand {
    display: none;
}

.select {
    position: relative;
    display: flex;
    width: 20em;
    height: 3em;
    line-height: 3;
    background: #40916C;
    overflow: hidden;
    border-radius: .25em;
}

.select::after {
    content: '\25BC';
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 1em;
    color: #FFF;
    background: #40916C;
    cursor: pointer;
    pointer-events: none;
    transition: .25s all ease;
}

.select:hover::after {
    color: #FFF;
}

.list-bullets {
    list-style: none;
}

.list-bullets li {
    display: flex;
    align-items: center;
}

.list-bullets li::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #40916C;
    border: 2px solid #40916C;
    display: block;
    margin-right: 1rem;
}

.column {
    float: left;
    width: 25%;
    display: none;
}

.show {
    display: block;
}

.bttn:hover {
    background-color: #198754;
    opacity: 0.8;
    color: #FFF;
}

.simple-pagination ul {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    text-align: center;
}

.simple-pagination li {
    display: inline-block;
    margin-right: 5px;
}

.simple-pagination li a,
.simple-pagination li span {
    color: #666;
    padding: 5px 10px;
    text-decoration: none;
    border: 1px solid #EEE;
    background-color: #FFF;
    box-shadow: 0px 0px 10px 0px #EEE;
}

.simple-pagination .current {
    color: #FFF;
    background-color: #b7e4c7;
    border-color: #b7e4c7;
}

.simple-pagination .prev.current,
.simple-pagination .next.current {
    background: #40916C;
}

.float-button {
    text-decoration: none;
    position: fixed;
    padding: 10px;
    padding-right: 15px;
    bottom: 30px;
    right: 30px;
    color: #fff;
    background-color: #FC6736;
    border-radius: 25px 30px 5px 25px;
    z-index: 100;
    font-family: Arial;
    font-size: 17px;
    animation: whatsapp-animation 0.5s ease-in-out;
    box-shadow: 1px 2px 5px 2px rgba(30, 30, 30, 0.3);
    transition: all 0.3s ease-out;
}

.float-button:hover {
    background-color: #FC6736;
    color: #fff;
}

.fa-whatsapp {
    font-size: 20px !important;
    padding-right: 5px;
    padding-left: 5px;
}

@keyframes whatsapp-animation {
    from {
        opacity: 0%;
    }

    to {
        opacity: 100%
    }
}

@media screen and (max-width: 545px) {
    .float-button {
        bottom: 40px;
        right: 15px;
        width: 50px;
        border-radius: 20px 20px 5px 20px;
    }

    .text-customer {
        display: none;
    }

    .fa-whatsapp {
        font-size: 22px !important;
        padding: 4px;
    }
}