@font-face {
    font-family: 'poppinsregular';
    src: url('../fonts/poppins-regular-webfont.woff2') format('woff2'),
    url('../fonts/poppins-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family:"poppinsregular", sans-serif;
}

.index-shadow-table {
    box-shadow: 1px 4px 4px 0 rgba(0,0,0,0.75)
}
.index-shadow-h1 {
    text-shadow: 0 4px 4px rgba(0,0,0,0.6);
}

.index-shadow-h3 {
    text-shadow: 0 1.5px 1.5px rgba(0,0,0,0.6);
}

.button-light {
    text-shadow: 1px 1px 1px rgba(255,255,255,0.6);
}
.index-shadow-input {
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1), 1px 4px 4px 0 rgba(0,0,0,0.75);
    -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1), 1px 4px 4px 0 rgba(0,0,0,0.75);
    -moz-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1), 1px 4px 4px 0 rgba(0,0,0,0.75);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.index-shadow-input:focus {
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2), 1px 6px 6px 0 rgba(0,0,0,0.75);
}

button {
    box-shadow: 1px 4px 4px 0 rgba(0,0,0,0.60);
    -webkit-box-shadow: 1px 4px 4px 0 rgba(0, 0, 0, 0.60);
    -moz-box-shadow: 1px 4px 4px 0 rgba(0,0,0,0.60);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

button:hover {
    transform: scale(1.05);
    box-shadow: 1px 6px 6px 0 rgba(0,0,0,0.75);
}

button:active {
    transform: scale(0.95);
    box-shadow: 1px 2px 2px 0 rgba(0,0,0,0.75);
    background-color: #444444;
}

.admin-shadow-h1{
    text-shadow: 0 2px 2px rgba(0,0,0,0.6);
}

select{
    box-shadow: 1px 4px 4px 0 rgba(0,0,0,0.75);
    -webkit-box-shadow: 1px 4px 4px 0 rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 4px 4px 0 rgba(0,0,0,0.75);
}

.instruction-shadow {
    text-shadow: 0 1px 0 rgba(0,0,0,0.6);
}


.img-shadow {
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6), 0 0 15px rgba(0, 0, 0, 0.8);
}

input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    box-shadow: 1px 4px 4px 0 rgba(0,0,0,0.60);
    -webkit-box-shadow: 1px 4px 4px 0 rgba(0, 0, 0, 0.60);
    -moz-box-shadow: 1px 4px 4px 0 rgba(0,0,0,0.60);
}

input[type="radio"]:checked::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #060505;
    border-radius: 50%;
    box-shadow: 1px 4px 4px 0 rgba(0,0,0,0.60);
    -webkit-box-shadow: 1px 4px 4px 0 rgba(0, 0, 0, 0.60);
    -moz-box-shadow: 1px 4px 4px 0 rgba(0,0,0,0.60);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.finInst-Shadow {
    text-shadow: 1px 1px 1px rgba(0,0,0,0.6)
}

hr {
    border: 1px solid black !important;
    box-shadow: 1px 2px 2px 0 rgba(0,0,0,0.60) !important;
    -webkit-box-shadow: 1px 2px 2px 0 rgba(0, 0, 0, 0.60) !important;
    -moz-box-shadow: 1px 2px 2px 0 rgba(0,0,0,0.60) !important;
}