/*
    This file will include any useful classes that can quickly be applied to a number of items.
*/

/* Shadows */
.drop-shadow-sm { filter: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05)); }
.drop-shadow { filter: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06)); }
.drop-shadow-md { filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06)); }
.drop-shadow-lg { filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1)); }
.drop-shadow-xl { filter: drop-shadow(0 20px 13px rgb(0 0 0 / 0.03)) drop-shadow(0 8px 5px rgb(0 0 0 / 0.08)); }
.drop-shadow-2xl { filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15)); }
.drop-shadow-none { filter: drop-shadow(0 0 #0000); }

/* Font Weights */
.font-thin { font-weight: 100; }
.font-extralight { font-weight: 200; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium {	font-weight: 500; }
.font-semibold	{ font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold	{ font-weight: 800; }
.font-black	{ font-weight: 900; }

/* West Point Button Styles */
.wp-button {
    background-color: var(--primary);
    border-radius: var(--radius);
    padding: 0.5em 2.1875em; /* Sets height to 54px with the padding */
    font-weight: 600;
    text-decoration: none !important;
    border: 2px solid transparent;
    text-align: left;
}

.wp-button:hover,
.wp-button:focus {
    background-color: var(--universal-white);
    border: 2px solid #707070;
}