
.btn-basic {
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 9px;
    padding: 0 10px;
    position: relative;
    text-align: center;
}
a.btn-basic {
    text-decoration: none;
}
.yellow-btn, a.yellow-btn {
    background: #e83785 none repeat scroll 0 0;
    color: #fff;
}
.yellow-btn:hover {
    background: #131112 none repeat scroll 0 0;
}
.pink-btn, a.pink-btn {
    background: #ed6f99 none repeat scroll 0 0;
    color: #fff;
}
.pink-btn:hover {
    background: #f53e7b none repeat scroll 0 0;
}
.white-btn, a.white-btn {
    border: 2px solid #ed6f99;
    color: #ed6f99;
}
.white-btn:hover {
    background: #fdeef4 none repeat scroll 0 0;
    border: 2px solid #ed6f99;
}
.purple-btn, a.purple-btn {
    background: #990099 none repeat scroll 0 0;
    color: #fff;
}
.purple-btn:hover {
    background: #c501c5 none repeat scroll 0 0;
}
.btn-thin {
    font-size: 16px;
    height: 35px;
    line-height: 33px;
}
.btn-mid {
    font-size: 18px;
    height: 40px;
    line-height: 38px;
}
.btn-min {
    width: 20%;
}
.btn-small {
    width: 30%;
}
.btn-small2 {
    width: 35%;
}
.btn-half {
    width: 48%;
}
.btn-half2 {
    width: 55%;
}
.btn-whole {
    width: 100%;
}
.button--data {
    overflow: hidden;
    position: relative;
    transition-duration: 0.15s;
    transition-property: color;
    z-index: 100;
}
.button--data::after {
    background: #fff none repeat scroll 0 0;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: scaleY(0);
    transform-origin: 100% 100% 0;
    transition-duration: 0.15s;
    transition-property: transform;
    transition-timing-function: ease-out;
    z-index: -1;
}
.button--data:hover, .button--data.active {
    color: #fd8c00;
}
.button--data:hover::after {
    transform: scaleY(1);
}
.button--ujarak {
    transition: border-color 0.4s ease 0s, color 0.4s ease 0s;
}
.button--ujarak, .button--ujarak::before {
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.button--ujarak::before {
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transform: scale3d(0.7, 1, 1);
    transition-delay: 0s, 0s;
    transition-duration: 0.4s, 0.4s;
    transition-property: -webkit-transform, opacity;
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    width: 100%;
    z-index: -1;
}
.button--ujarak:hover::before {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
}
