:root {
    --textcolor: #09f;
}

body {
    font: 14px system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen-Sans, Ubuntu, Cantarell, \"Helvetica Neue\", Arial, sans-serif;
    color: #2f3941;
}
a {
    color: var(--textcolor);
}
a:focus,
a:hover {
    text-decoration: underline;
    color: var(--textcolor);
}

.clr {
    clear: both;
}

#callerSelection {
    max-width: 750px;
    width: 100%;
}

.pageWidth {
    max-width: 800px;
    margin: auto;
}
.page {
    padding: 10px 20px;
    display: block !important;
    margin-top: 40px;
}

.pageTitle {
    width: 100%;
    background-color: var(--textcolor);
    padding: 10px 20px;
    text-align: center;
    color: white;
}

.controller {
    margin-top: 20px;
    text-align: right;
}

.wrapper {
    display: block;
}

#printAllBtn {
    margin-right: 20px;
}

h1 {
    font-size: 24px;
}

h2 {
    font-size: 18px;
    margin: 10px 0px;
}

.container {
    margin-bottom: 30px;
}

#step1,
#step2 {
    margin-top: 40px;
}

.loadingMsg,
.errorMsg {
    margin-top: 10px;
    display: none;
}

.isError .errorMsg,
.isLoading .loadingMsg {
    display: block;
}

.loader {
    border: 5px solid #f3f3f3;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    border-top: 5px solid var(--textcolor);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.homePage {
    text-align: right;
    float: right;
}

.author {
    margin-top: 20px;
    text-align: center;
}

.author a {
    color: #2f3941;
}

.author a:hover {
    text-decoration: none;
}

#disclaimer {
    margin-top: 20px;
}

#disclaimer ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
}

#disclaimer ul li {
    margin-bottom: 5px;
}

#disclaimer {
    margin-top: 50px;
}

#disclaimer,
#disclaimer .c-callout__title {
    color: #b5b5b5;
    font-size: 12px;
}

.topNav {
    margin-top: 40px;
}

#step1 ul {
    margin: 10px 0px 10px 20px;
    list-style: disc;
}

.fileSelection {
    display: inline-block;
    margin-bottom: 10px;
}

.removeFileSelection {
    background: transparent;
    border: 1px solid #ececec;
    padding: 5px;
    border-radius: 10px;
    text-transform: lowercase;
}

#printChatBtn {
    float: left;
}

.showEveryoneContainer {
    display: block;
    margin-top: 10px;
}

.showEveryoneContainer input,
.showEveryoneContainer label {
    display: inline-block;
    vertical-align: middle;
}

.showEveryoneContainer label {
    margin-left: 5px;
}

#callerSelection .noCalls {
    display: none;
}

#callerSelection.showingEveryone .noCalls {
    display: block;
}

#info {
    display: none;
    border: 1px solid #ececec;
    border-radius: 4px;
    margin-bottom: 20px;
    padding: 5px 10px;
    background-color: #ffff001c;
}
