﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}
.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
    font-size: medium;
}
.form-group {
    margin-bottom: 1 rem;
    display:block;
}
.dropdown-item{
    font-size: medium;
}

#qcontact-webchat-toggle1 {
    width: 100px;
    height: 100px;
    background-color: blue;
    animation: flashEffect 2s infinite alternate; /* 2s duration, infinite loop, alternates direction */
}

@keyframes flashEffect {
    0% {
        opacity: 1;
    }
    /* Start with full opacity */
    50% {
        opacity: 0;
    }
    /* Fade to transparent in the middle */
    100% {
        opacity: 1;
    }
    /* Return to full opacity at the end */
}
