/* NavPanel Floating Action Buttons - bottom-right corner circular menu */

.navPanel {
    position: fixed;
    bottom: -130px;
    right: -130px;
    width: 360px;
    height: 360px;
    background: rgba(0, 0, 0, 0.80);
    border-radius: 50%;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.navPanel .link {
    position: absolute;
    text-align: center;
    cursor: pointer;
}

.navPanel .link figure {
    margin: 0;
    padding: 5px;
}

.navPanel .link figure img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
}

.navPanel .link span {
    display: block;
    margin-top: 3px;
    font-size: 13px;
    color: #fff;
    line-height: 18px;
}

.navPanel .link a {
    text-decoration: none;
}

.navPanel .link1 {
    left: 148px;
    top: 18px;
}

.navPanel .link2 {
    left: 65px;
    top: 52px;
}

.navPanel .link3 {
    left: 20px;
    top: 132px;
}

.navPanel .link3 figure {
    padding: 5px;
}

/* Intercom toggle button */
.intercom {
    padding: 2px;
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #fff;
    z-index: 10000;
    opacity: 0;
    box-shadow: 0 3px 16px 0 rgba(0, 0, 0, 0.24);
    transition: opacity 0.4s ease;
    cursor: pointer;
}

.intercomCloseBtn {
    padding: 10px;
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #58bf93;
    color: #fff;
    z-index: 10000;
    opacity: 0;
    box-shadow: 0 3px 16px 0 rgba(0, 0, 0, 0.24);
    transition: opacity 0.4s ease;
    cursor: pointer;
}

.intercom.active,
.intercomCloseBtn.active {
    opacity: 1;
    z-index: 10000;
    transition: opacity 0.4s ease;
}

.intercomCloseBtn.active {
    background: #646464;
    border: solid 1px #4d4d4d;
}

.intercom img {
    width: 100%;
    border-radius: 50%;
}

/* Meeting Modal */
#meetingModal .modal-dialog {
    max-width: 500px;
    margin: 60px auto;
}

#meetingModal .modal-header {
    background: #f8d74a;
    border-radius: 4px 4px 0 0;
    padding: 15px 20px;
}

#meetingModal .modal-header h4 {
    margin: 0;
    font-weight: 700;
    font-size: 18px;
    color: #333;
    text-align: center;
    text-transform: uppercase;
}

#meetingModal .modal-header .close {
    opacity: 1;
    color: #333;
    font-size: 22px;
    margin-top: -2px;
}

#meetingModal .modal-body {
    padding: 20px 25px;
    background: #fff;
}

#meetingModal .modal-body .form-group {
    position: relative;
    margin-bottom: 18px;
}

#meetingModal .modal-body .form-group input,
#meetingModal .modal-body .form-group textarea {
    width: 100%;
    height: 45px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 15px;
    font-size: 14px;
}

#meetingModal .modal-body .form-group textarea {
    height: 80px;
    padding: 10px 15px;
    resize: none;
}

#meetingModal .modal-body .form-group i {
    position: absolute;
    left: 12px;
    top: 14px;
    color: #aaa;
    font-size: 15px;
}

#meetingModal .modal-body .form-group input[type="text"],
#meetingModal .modal-body .form-group input[type="email"],
#meetingModal .modal-body .form-group input[type="number"] {
    padding-left: 35px;
}

#meetingModal .modal-body .form-group textarea {
    padding-left: 35px;
}

#meetingModal .modal-footer {
    padding: 10px 25px 20px;
    border: none;
    background: #fff;
}

#meetingModal .modal-footer input[type="submit"] {
    width: 100%;
    background: #f8d74a;
    border: none;
    border-radius: 4px;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    padding: 12px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

#meetingModal .modal-footer input[type="submit"]:hover {
    background: #e5c030;
}

@media only screen and (max-width: 720px) {
    .navPanel {
        display: none;
    }
    .intercom,
    .intercomCloseBtn {
        display: none !important;
    }
}
