/* your styles go here */
.post-body ul {
    padding-left: 40px;
    margin-bottom: 20px;
}

.navbar .navbar-nav a.nav-link {
    font-weight: 700;
}

.modal {
    background: rgba(0, 0, 0, 0.8)
}

.modal button.close {
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    text-align: center;
    background-color: #5989e5;
    background-image: -webkit-gradient(linear, left top, right top, from(#5989e5), to(#37cfdc));
    background-image: linear-gradient(to right, #5989e5, #37cfdc);
    position: absolute;
    top: 0;
    right: 0;
    opacity: 1;
    padding: 0;
    margin: 0;
}

.modal-content {
    border-radius: 0
}

.modal-header, .modal-body {
    padding: 20px 30px;
    border: none
}

#signupform .form-group {
    margin-bottom: 20px
}

#signupform label {
    width: 100%;
    display: block;
    padding-left: 10px;
    color: #656565;
    font-family: "Open Sans", sans-serif
}

#signupform label.error {
    color: #f20000;
}

#signupform input {
    /*width: 100%;*/
    display: block;
    padding: 10px 10px;
   /* border-radius: 50px;
    border: 1px solid #eee;*/
    outline: none
}

#signupform input:focus {
    border-color: #5989e5
}

#signupform input::-moz-placeholder {
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    color: #aaa;
    font-style: italic;
    font-size: 0.9em
}

#signupform input::-webkit-input-placeholder {
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    color: #aaa;
    font-style: italic;
    font-size: 0.9em
}

#signupform input:-ms-input-placeholder {
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    color: #aaa;
    font-style: italic;
    font-size: 0.9em
}
.modal-dialog {
    margin: 135px auto;
}
.condensed {
    font-family: "Open Sans Condensed", sans-serif;
}
.phone-size a { font-size: 1.5rem; color: #222222; text-decoration: none; }

@media (max-width: 991px){
.phone-size a { font-size: 1.2rem; font-weight: normal; }
}
.blog-post .post-body table p {
    margin-bottom: 0px;
}
@media (max-width: 768px) {
    #calc {
        font-family: "Open Sans Condensed", sans-serif;
    }
    #calc input {
        font-family: "Open Sans Condensed", sans-serif;
        padding: .375rem .375rem;
    }
}

.chat-container {
    width: 100%;
    aheight: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #263238;
}
.messenger {
    display: block;
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 270px;
    height: 60px;
    /* overflow: hidden; */
}
.messenger-btn {
    padding: 14px;
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background-color: #ff3300;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    z-index: 2;
}
.messenger-btn img {
    width: 32px;
    height: 32px;
}
.messenger-links {
    position: absolute;
    left: 0px;
    top: 10px;
    width: 240px;
    transform: scale(0);
    transform-origin: 100% 50%;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 0;
}
.messenger-links.show {
    left: 0px;
    transform: scale(1.25);
}
.messenger-links a {
    width: 40px;
    margin-left: 4px;
}
.messenger-links img {
    max-width: 40px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.messenger-links a:hover img {
    transform: scale(1.1);
    text-decoration: none;
}