/*
    Name:           ph-buttons
    Description: 	Pixcil Hub Buttons
    Author: 		   Pixcils®
    Version: 	  	1.0
*/

/*Main button class
==========================*/
.ph-button {

    border-style: solid;
    border-width: 0px 0px 3px;
    box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.1) inset;
    color: #FFFFFF;
    border-radius: 6px;
    cursor: pointer;
    display: inline-block;
    font-style: normal;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    text-overflow: ellipsis;
    transition: all 200ms ease-in-out 0s;
    white-space: nowrap;
    font-family: "Gotham Rounded A", "Gotham Rounded B", Helvetica, Arial, sans-serif;
    font-weight: 700;
    padding: 5px 10px;
    font-size: 12px;

}

/*Green
==========================*/
.ph-btn-green {

    border-color: #3AC162;
    background-color: #5FCF80;

}

.ph-btn-green:hover,
.ph-btn-green:focus,
.ph-btn-green:active {
    background-color: #4BC970;
    border-color: #3AC162;
}

/*Blue
==========================*/
.ph-btn-blue {

    border-color: #326E99;
    background-color: #3F8ABF;
}

.ph-btn-blue:hover,
.ph-btn-blue:focus,
.ph-btn-blue:active {
    background-color: #397CAC;
    border-color: #326E99;
}

/*Grey
==========================*/
.ph-btn-grey {
    background-color: #C6CCD2 !important;
    border-color: #AAB3BB !important;
    color: white !important;
}

.ph-btn-grey:hover,
.ph-btn-grey:focus,
.ph-btn-grey:active {
    background-color: #B8BFC7;
    border-color: #AAB3BB;
}

/*Red
==========================*/
.ph-btn-red {

    background-color: #ED5A5A !important;
    border-color: #EA4343 !important;

}

.ph-btn-red:hover,
.ph-btn-red:focus,
.ph-btn-red:active {
    background: none repeat scroll 0 0 #EB4848 !important;
    border-color: #E83131 !important;
}

.ph-container {
    margin: 0 auto;
    display: inline;
}

.ph-float-left {
    float: left;
}

.ph-float-right {
    float: right;
}

.ph-clear {
    clear: both;
}

.ph-normal-size{
    padding: 12px;
    font-size: 13px;
}

.group-profile-btn{
    margin-left: 20px;
}

.dataTable .btn{
    margin: 3px 0px;
}

@media only screen and (max-width: 1000px) {
    .group-profile-btn,
    .trainer-profile-btn {
        width: 100%;
        margin-top: 10px !important;
        margin-left: 0px;
    }
}