.button{
    text-align: center;
    height: 35px;
    border-radius: 5px;
    border: 2px solid;
    text-transform: uppercase;
    background: transparent;
    padding: 0 20px;
    display: inline-block;
    line-height: 32px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}
.button.violet{
    color: #6D5379;
    border-color: #6D5379;
}
.button.violet:hover{
    color: #ffffff;
    background: #6D5379;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}
.button.violet i.fa-spin {
    float: left;
    margin-top: 7px;
    margin-left: -10px;
}
.button.yellow{
    color: #f5c808;
    border-color: #f5c808;
}
.button.yellow:hover{
    color: #6d5379;
    background: #f5c808;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}
.button.white{
    color: #ffffff;
    border-color: #ffffff;
}
.button.white:hover{
    color: #363636;
    background: #ffffff;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}
.button.violet-white{
    color: #ffffff;
    background: #604473;
    border-color: #604473;
}
.button.violet-white:hover{
    color: #604473;
    background: transparent;
    border-color: #604473;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}
.button.black-violet{
    color: #f4d107;
    background: #532970;
    border-color: #532970;
    cursor: pointer;
}
.button.black-violet:hover{
    color: #f4d107;
    background: #222222;
    border-color: #222222;
    cursor: pointer;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}
.button.black-violet:active,
.button.black-violet.active{
    color: #f4d107;
    background: #222222;
    border-color: #222222;
    cursor: pointer;
}
.button.gray{
    color: #666666;
    border-color: #666666;
}
.button.gray:hover{
    color: #dddddd;
    background: #666666;
    border-color: #666666;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}
.button.red{
    color: #C62828;
    border-color: #C62828;
}
.button.red:hover{
    color: #ffffff;
    background: #C62828;
    border-color: #C62828;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}
.button.green{
    color: #2E7D32;
    border-color: #2E7D32;
}
.button.green:hover{
    color: #ffffff;
    background: #2E7D32;
    border-color: #2E7D32;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}
.close {
    background: url("../images/buttons/close.png") !important;
    height: 11px;
    width: 13px;
    opacity: 1;
}
.rectangle-button,
.rectangle-button:hover{
    background: #593f66;
    color: #fff;
    text-transform: uppercase;
    padding: 5px 10px;
    font-weight: bold;
    cursor: pointer;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}
button.search {
    width: 45px;
    height: 45px;
    border: none;
    display: inline-block;
    float: left;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;

}
button.search.yellow {
    background: url("../images/buttons/search-yellow.png") no-repeat;
    background-size: 100% 100%;
}
button.search.black {
    background: url("../images/buttons/search-yellow.png") no-repeat center;
    height: 37px;
    background-size: 100%;
    width: 35px;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}

a[class*="events-view-"]{
    cursor: pointer;
    height: 36px;
    width: 36px;
    float: left;
}
.events-view-grid{
    background: url("../images/buttons/grid-view-inactive.png");
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
    margin-right: 10px;
}
.events-view-grid.active,
.events-view-grid:hover{
    background: url("../images/buttons/grid-view-active.png");
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}
.events-view-list{
    background: url("../images/buttons/list-view-inactive.png");
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}
.events-view-list.active,
.events-view-list:hover{
    background: url("../images/buttons/list-view-active.png");
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}

.delete-x{
    background: url("../images/buttons/delete-x.png");
    height: 21px;
    width: 21px;
    border: none;
    padding: 0;
}

