/*.btn {
    padding: 12px 16px;
    cursor: pointer;
    border-width: 1px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    -webkit-box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    position: relative;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}*/
.btn .icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    bottom: 0;
    background: #fff;
}

.btn .icon.icon-sm {    
    width: 28px !important;
    height: 28px !important;
}

.btn .icon.icon-round {
    border-radius: 50%;
}

.btn.btn-round {
    border-radius: 40px;
}

.btn.btn-quarternary {
    color: #fff !important;
    border-color: #b96b9f;
    background: #b96b9f;
    /* width: 20%; */
}

.btn.btn-quarternary:hover, .btn.btn-quarternary:focus {
    border-color: #a44d87 !important;
    background: #a44d87 !important;
}

.text-btn-quarternary{
    color: #b96b9f !important;
}





.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}
.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}
.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}