/**
	Author: Ignacio Sandoval (AKA Nacho)
*/

/* Button - Primary */
.gaies-button {
    background-color: #002060;
    border: 1px solid #002060;
    
    /* Common Attributes */
    border-radius: 5px;
    min-width: 160px;
    max-width: auto;
    height: auto;
    padding: 10px;
    margin: 0 auto;
    /*font-size: 1rem;*/
    color: #FFFFFF;
    cursor: pointer;
    font-weight: bold;
    font-size: medium;
    letter-spacing: 1px;
    /*text-transform: uppercase;*/
}

/* Button Primary - Linear Gradient */
.gaies-button.linear-gradient {
	background:linear-gradient(to bottom, #92B0D4 5%, #3C6098 100%);
    background-color: #3C6098;
    border: 1px solid #22262C;
    text-shadow:0px -1px 0px #2b665e;
    transition-duration: 0.2s;
    box-shadow: 0px 3px 5px 0px #9D9D9D;
}


/* Button - Secondary */
.gaies-button.secondary {
    background-color: #B54302;
    border: 1px solid #B54302;
}

/* Button Secondary - Linear Gradient */
.gaies-button.secondary.linear-gradient {
	background:linear-gradient(to bottom, #FC9827 5%, #F15B05 100%);
}

/* Buttons - Primary and Secondary - Linear Gradient - Disabled */
.gaies-button.linear-gradient:disabled,
.gaies-button.secondary.linear-gradient:disabled {
	background:linear-gradient(to bottom, #ACACAC 5%, #5D5D5D 100%);
	filter: grayscale(100%);
    cursor: auto;
}


/* White Button */
.gaies-button.white-button {
	box-shadow: none;
	background: none;
	text-shadow:none;
    background-color: #ffffff;
    border-color: #197ed6;
    color: #0070d2;
}


/* Buttons - Primary and Secondary - Disabled */
.gaies-button:disabled,
.gaies-button.secondary:disabled,
.gaies-button.white-button:disabled {
    background-color: #5D5D5D;
    color: #ffffff;
    border: 1px solid #262626;
    filter: grayscale(100%);
    cursor: auto;
}


/* Buttons - Hover and Focus - Increase Bright 120% */
/* .gaies-button:focus,
.gaies-button:hover {
	filter: brightness(120%);
} */

/* Buttons - Focus - Display Dotted Line (ADA) */
.gaies-button:focus,
.gaies-button.secondary:focus,
.gaies-button.white-button:focus {
	outline-style: dotted;
	outline-width: 2px;
	outline-color: #247EF9;
}


/* Buttons - Small */
.gaies-button.small {
    height: auto;
    padding: 5px;
    min-width: 100px;
    font-size: x-small;
    letter-spacing: 1px;
}

/* Buttons - Medium */
.gaies-button.medium {
    height: auto;
    padding: 5px;
    min-width: 115px;
    font-size: medium;
    letter-spacing: 1px;
}

/* Buttons - Margins */
.gaies-button.mb-1 {
    margin-bottom: 1rem;
}

.gaies-button.mt-1 {
    margin-top: 1rem;
}

.gaies-button-div {
    margin-top: 1rem;
    margin-bottom: 1rem;
}


/* Button - Alignment */
.button-right {
	text-align: right;
	margin-left: 1rem;
}

.button-left {
	text-align: left;
	margin-right: 1rem;
}

.button-center {
	text-align: center;
	margin-left: 1rem;
	margin-right: 1rem;
}
