﻿.clerk-agent {
    position: fixed;
    overflow: hidden;
    right: 0%;
    bottom: 0%;
    width: 400px;
    height: 50px;
    z-index: 10000;
    background-color: white;
    border-radius: 0.25rem;
    border-top: 0px !important;
}
.agent-header-initial {
    right: 0;
    bottom: 0;
}
.agent-header {
    position: absolute;
    width: 400px;
    z-index: 10001;
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    padding: 14px;
    color: white;
    background-color: var(--coc-color-blue);
}
    .agent-header:hover, .agent-header:focus {
        text-decoration: underline;
        cursor: pointer;
    }

    .agent-header p {
        display: inline-block;
        margin: 0;
    }

#agent-expand-collapse {
    position: absolute;
    right: 12px;
}

.agent-container {
    height: 100%;
}
.agent-greeting {
    display: none;
    background-color: white;
}
.agent-greeting p {
    display: inline-block;
}
#agent-help {
    display: inline-block;
}

/* bootstrap size breakpoints */
/* xs */
@media only screen and (max-width: 575px) {
    .clerk-agent {
        position: relative;
        width: 100%;
        height: 50px;
    }

    .agent-header {
        width: 100%;
    }
}

/* sm */
@media only screen and (min-width: 576px) and (max-width: 767px) {
}

/* md */
@media only screen and (min-width: 768px) and (max-width: 991px) {
}

/* lg */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
}

/* xl */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
}

/* styles at max widths */
/* xs */
@media only screen and (max-width: 575px) {
}

/* sm */
@media only screen and (max-width: 767px) {
}

/* md */
@media only screen and (max-width: 991px) {
}

/* lg */
@media only screen and (max-width: 1199px) {
}

/* xl */
@media only screen and (max-width: 1399px) {
}