/*------------------------------------*\
    THEME COLORS and FORMATTING
\*------------------------------------*/
.accent-color {
    color: #1C3115;
}

.accent-color-2 {
    color: #6A972E;
}

.accent-background {
    background-color: #1C3115;
}

.accent-background-2 {
    background-color: #6A972E;
}

.white-text {
    color: #FFFFFF;
}

.white-text a {
    color: #FFFFFF;
}

.white-text a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

a.white-text:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.inherit {
    color: inherit;
}

.shadow-box {
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    height: 100%
}

.flex-vcenter {
    align-items: center;
}

.centered {
    text-align: center;
}

.bold {
    font-weight: bold;
}

.light-weight {
    font-weight: 100;
}

.italic {
    font-style: italic;
}

.m0 {
    margin: 0 !important;
}

.m10 {
    margin: 10px;
}

.m20 {
    margin: 20px;
}

.m30 {
    margin: 30px;
}

.mt0 {
    margin-top: 0;
}

.mb0 {
    margin-bottom: 0;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb20 {
    margin-bottom: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mb30 {
    margin-bottom: 30px;
}

.mt60 {
    margin-top: 60px;
}

.mb60 {
    margin-bottom: 60px;
}

.mt80 {
    margin-top: 80px;
}

.mb80 {
    margin-bottom: 80px;
}

.mt100 {
    margin-top: 100px;
}

.mb100 {
    margin-bottom: 100px;
}

.p0 {
    padding: 0px;
}

.p10 {
    padding: 10px;
}

.p20 {
    padding: 20px;
}

.p30 {
    padding: 30px;
}

.pt20 {
    padding-top: 20px;
}

.pb20 {
    padding-bottom: 20px;
}

.p30 {
    padding: 30px;
}

.p60 {
    padding: 60px;
}

.pt30 {
    padding-top: 30px;
}

.pb30 {
    padding-bottom: 30px;
}

.pt40 {
    padding-top: 40px;
}

.pb40 {
    padding-bottom: 40px;
}

.pt50 {
    padding-top: 50px;
}

.pb50 {
    padding-bottom: 50px;
}

.pt60 {
    padding-top: 60px;
}

.pb60 {
    padding-bottom: 60px;
}

.p-bulba-double {
    padding: 1.5rem;
}

.small-text {
    font-size: 1.3rem;
}

.basic-rollover {
    transition: all 0.5s ease;
}

.basic-rollover:hover {
    opacity: 0.7;
}

.height-100 {
    height: 100%;
}

.lazy-load {
  opacity: 0;
 -moz-animation: fadeIn .4s ease-in;
  -webkit-animation: fadeIn .4s ease-in;
  animation: fadeIn ease-in .4s 1;
  -moz-animation-delay: .4s;
  -webkit-animation-delay: .4s;
  animation-delay: .4s;
  -moz-animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

/*------------------------------------*\
    KEYFRAMES
\*------------------------------------*/

/* IE 11 Fix for animation. Exclude browser prefix */
@keyframes fadeIn {
from {opacity: 0;}
to {opacity: 1;}
}

@-webkit-keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* FireFox fix for animation. Inlcude 'moz' prefixed keyframes element */
@-moz-keyframes fadeIn {
from {opacity: 0;}
to {opacity: 1;}
}
