.tel, .email-link {
    white-space: nowrap;
}

.map-marker {
    color: #006;
    cursor: pointer;
}

a:link {
	text-decoration: none;
}

/*Footer*/
body {
    display: flex; /* body is set as flex column */
    flex-direction: column;
    min-height: 100vh; /* forcing body to be always at least 100vh so footer positions correctly */
    margin: 0;
}

main {
    flex: 1 0 auto; /* main grows to fill space */
}

/*Bottom, not fixed*/
footer {
    flex-shrink: 0; /* footer sticks at the bottom if the content is short*/
    padding: 20px 0; /* some space inside footer */
    width: 100%;
}
/*End footer*/

.percent-slider .percent-slider-number {
    box-sizing: content-box;
    text-align: right;
    width: 5ex;
}

/*Cards*/

/*BEGIN status cards*/
.task-card .modify-buttons {
    position: absolute;
    display: block;
    top: 0; right: 0;
    padding-right: 4px;
    padding-top: 4px;
}

.status-card {
    margin: 10px 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    padding: 10px 20px 10px;
    align-self: normal;
    align-items: center;
}

.time-stats {
    font-size: 0.67rem;
    margin-bottom: 10px;
    margin-top: auto;
}

.task-card {
    flex: 1;
    height: 16.8rem;
    padding-top: 7rem;
    text-align: center;
    align-items: center;
    background-size: 3.5rem;
    background-position: center 1.5rem;
    background-repeat: no-repeat;
}

.task-card.task-feedback-survey, .task-card.task-billing {
    background-size: 3.7rem;
    background-position: center 1.5rem;
}

.task-card .card-title {
    font-size: 0.9rem;
    margin: 10px 0;
}

.task-card.task-general-information-form .card-title {
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: stretch;
    flex-direction: row;
    flex: 1;
}


.task-card .card-body {
    padding: 4px;
    width: 100%;
}
/*END status cards*/

@media all and (max-width: 1231px) {
    .nav-bar {
        flex-basis: auto;
        flex-wrap: wrap;
    }
}

@media all and (max-width: 925px) {
    #foot_logo {
        height: 35px;
    }
}

@media all and (max-width: 768px) {
    #foot_logo {
        height: 25px;
    }
}

/*mobile users only*IOS*/
@media all and (max-width: 480px) {
    * {
        -webkit-text-size-adjust: 100%;
    }
}

/* navbar-light -> navbar */
.navbar .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar .navbar-brand:hover, .navbar .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.55);
}
.navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.navbar .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar .navbar-nav .show > .nav-link,
.navbar .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar .navbar-text {
  color: rgba(0, 0, 0, 0.55);
}
.navbar .navbar-text a,
.navbar .navbar-text a:hover,
.navbar .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}
/* end of navbar-light -> navbar */

.indent {
    padding-left: 1.5rem !important; /* .ps-4 */
    margin-left: 1.5rem !important;  /* .ms-4 */
    border-left: 1px solid #dee2e6 !important; /* .border-start */
}