.switcher-set {
    margin-bottom:1rem;
}

main img {
    cursor: pointer;
}

.doxyrest-title-code-block {
    margin-bottom: 0;
}

/* Performance Benchmark Graphs */

.chart {
    height: 500px;
    padding:0;
}

/* Table Sort Button */

.sort-header {
    cursor: pointer;
}

.sort-btn {
    content: "";
    background-image:url('media/arrow-small-opposite-v.svg');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    height: 1.5rem;
    width:1.5rem;
    position:relative;
    top:0.5rem;
}

.sort-btn.sort-active.ascending,
.sort-btn.sort-active {
    background-size: 100% 70%;
}

.sort-btn.sort-active.ascending {
    background-image: url('media/union-down.svg');
}

.sort-btn.sort-active {
    background-image: url('media/union-up.svg');
}

div.highlight {
    margin-bottom: 1.15rem;
}

.highlight .err {
    border:none;
    color:inherit;
}

.opt-notice-wrapper {
    position: fixed;
    bottom:0;
    background: black;
    width:100%;
    text-align: center;
    padding: 1rem;
    z-index: 1000;
}

.opt-notice {
    margin-bottom: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    width:100%;
    color: #fff;
}

/* Transition banner */
.transition-banner {
    top: 60px;
    background: #76CEFF;
    position: fixed;
    text-align: center;
    color: white;
    z-index: 1001;
    display: block;
    padding:0 2rem;
    font-size: var(--pst-sidebar-font-size);
    border: none;
    border-radius: 0;
    font-weight: bold;
}

.transition-banner > p {
    margin-bottom: 0;
}

.transition-banner .close {
    padding: 0 1.25rem;
    color: #000;
}


@media (max-width: 720px) {
    .transition-banner {
        margin-top: 2rem;
    }
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1800px;
    }
}


/* Newsletter */
/* =================================================== */
.modal-close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    line-height: 24px;
    padding-right: 4px;
}

.modal-close:hover,
.modal-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

#newsletterModal {
    position: fixed;
    z-index: 5000;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, .7);
}

.newsletter-shadow {
    /* background: white;
    box-shadow: 0 0 40px 40px rgba(255,255,255,1); */
    padding: 10px;
    max-width: 600px;
    width: 90%;
    box-sizing: border-box;
}

.newsletter-box {
    max-width: 530px;
    padding: 10px;
    margin: auto;
}

.newsletter {
    background: rgba(0, 104, 181, 1);
    box-shadow: 0 0 20px 10px #a9a9a9c0;
    width: 100%;
    padding: 10px;
}

.newsletter-heading {
    color: white;
    margin: 0 0 1rem;
}

.newsletter-text {
    color: white;
}

.form-group {
    position: relative;
}

.newsletter-input {
    box-sizing: border-box;
    border: 1px solid white;
    width: 100%;
    transition: .4s;
    line-height: 1.65rem;
    height: 30px;
}

.newsletter-input:focus {
    outline: 0;
    box-shadow: 0 0 5px 2px white;
}

.newsletter-input.failed:focus {
    outline: 0;
    box-shadow: 0 0 5px 2px #a8a8a8;
}

.newsletter-submit-btn,
.newsletter-submit-btn:focus {
    background: #cdedff;
    color: rgba(0, 104, 181, 1);
    border: 0;
    position: absolute;
    top: 1.5px;
    right: 1.5px;
    padding: 0 .8rem;
    transition: .4s;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 31%;
    outline: none;
}

.newsletter-submit-btn:hover,
.newsletter-submit-btn:active {
    background: #00A3F6;
    color: white;
    outline: none;
}

.newsletter-submit-btn:disabled {
    background: #a8a8a8;
    color: white;
}

.newsletter-submit-btn:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0e0\00a0"; 
    font-size: 1rem;
}

.newsletter-footer-text {
    color: #76CEFF;
    font-size: 0.7rem;
}

.newsletter-footer-text a {
    color: #B4F0FF;
}

.message-box {
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    text-align: center;
    display: none;
    color: white;
}

.newsletter-icon {
    margin-left: -31px;
}

.newsletter-icon-background {
    color: white;
    top: 20px;
    font-size: .9em;
}

.newsletter-submit--success {
    color: #B1D272;
}

.newsletter-submit--failure {
    color: #C81326;
}

.animated {
    opacity: 0;
}

.fade-up {
    animation: fade-up-anim .2s forwards;
}

.fade-in {
    animation: fade-in-anim .2s forwards;
}

.animation-delay {
    animation-delay: .3s;
}

.animation-delay--long {
    animation-delay: .5s;
}

@keyframes fade-up-anim {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-anim {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}
