/* client portal */

body {
    font-size: 14px;
    line-height: 27px;
    font-weight: 300;
    color: #797979;
}

.container-fluid {
    background-color: rgb(0, 181, 130);
    min-height: 300px;
}

ul.breadcrumb {
    padding: 10px 16px;
    list-style: none;
    background-color: rgb(0, 181, 130);
}

ul.breadcrumb li {
    display: inline;
    font-size: 18px;
}

ul.breadcrumb li+li:before {
    padding: 8px;
    color: white;
    content: ">\00a0";
}

ul.breadcrumb li a {
    color: white;
    text-decoration: none;
}

ul.breadcrumb li a:hover {
    color: black;
    text-decoration: underline;
}

.list {
    list-style: none;
    margin: 0;
    padding: 0%;
}

.list li i {
    color: #f1cd09;
}

.list li a {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    color: #007bff;
}

.fa {
    font-weight: 900;
    font-size: large;
    margin-right: 5px;
}

span {
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    width: 97px;
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    color: #000000;
}

.portfolio_right_text {
    background-color: rgba(218, 249, 241, 0.404);
    padding: 25px;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: rgb(0, 181, 130);
    color: white;
    cursor: pointer;
    padding: 25px;
    border-radius: 35px;
}

#myBtn:hover {
    background-color: lightgray;
}

.arrow {
    border: solid white;
    border-width: 0 5px 5px 0;
    display: inline-block;
    padding: 5px;
}

.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}


/* Images */

#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg:hover {
    opacity: 0.7;
}

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
}

.modal-content {
    margin: auto;
    display: block;
    width: 100%;
    max-width: 1000px;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

.modal-content,
#caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}