.page-heading-actions{
    margin-top: 20px;
    text-align: right;
}
body {

}
.main-logo {
    margin-left: auto;
    margin-right: auto;
    max-height: 300px;
}
@media only screen and (max-width: 480px) {
    .main-logo {
        max-width: 330px;
    }
}

@media only screen and (max-width: 768px) and (min-width: 481px) {
    .main-logo {
        max-width: 450px;
    }
}
.logo-div {
    display: flex;
    background: inherit;
    padding-top: 50px;
}
.sessionIconBtn {
    border: none;
    color: #888888
}
.fa-microphone:hover {
    cursor: pointer;
}
.fa-stop-circle-o:hover {
    cursor: pointer;
}
.dynamic-feedback {
    margin-top: .25rem;
    font-size: 80%;
    color: #dc3545;
}

.dropzone-text-btn {
    border: none;
    background-color: inherit;
}

.dropdown-menu {
    z-index: 10;
}
.dropdown-area {
    display: inline-block;
}
.dropdown-area > .btn {
    margin-top: 1px;
}

input[type=range] {
    padding: 6px 0;
}

.notification-container {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 500px;
    max-width: calc(100% - 30px);
    z-index: 2100;
}

.notification {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    color: #fff;
    font-size: 16px;
    padding: 15px 20px;
    line-height: 20px;
    margin-bottom: 15px;
    animation: grow 0.5s ease-in forwards;
}

@keyframes grow {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.notification.hide {
    animation: shrink 0.3s ease-out forwards;
}

@keyframes shrink {
    to {
        opacity: 0;
        transform: scale(0.8);
    }
}

.notification strong {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.notification-info {
    background-color: #00cae3;
}

.notification-success {
    background-color: #1ab394;
}

.notification-warning {
    background-color: #ff9e0f;
}

.notification-danger {
    background-color: #f55145;
}
