﻿
.ohnohoney{
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        height: 0;
        width: 0;
        z-index: -1;
    }


/* -----------------------------------------
  Fix Spacing Issues with Search
----------------------------------------- */

    @media (min-width: 768px) {
        .abstract--event > a {
            min-height: 10px;
        }
    }

    .abstract-description ol li {
    margin-top: 2px !important;
    }


/* -----------------------------------------
  Manual Search Box CSS
----------------------------------------- */

.site-manual-search button {
    padding: 6px 1.5em;
}

.site-manual-search button, .site-manual-search input {
    height: 36px;
    position: relative;
    vertical-align: top;
}

.site-manual-search input {
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid rgba(0,0,0,.25);
    border-radius: 0;
    border-right: 0;
    box-shadow: inset 0 0.125em 0 0 rgba(0,0,0,.05);
    margin: 0;
    padding: 0 .75em;
    max-width: 100%;
    width: 100%;
}

@media (min-width: 768px) {
    .site-manual-search #site-search__form > span {
        display: table-cell;
        vertical-align: top;
    }
}

/* -----------------------------------------
   RETURN TO TOP
----------------------------------------- */
html {
    -ms-overflow-style: scrollbar;
}

body {
    overflow-x: hidden;
}

.return-top {
    position: fixed;
    z-index: 99999;
    right: 0;
    bottom: 125px;
    padding: 0 12px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    opacity: 0;
    visibility: hidden;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    font-size: 30px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

    .return-top:before {
        content: "\f106";
        font-family: 'fa-custom';
    }

    .return-top.is-visible {
        opacity: 1;
        visibility: visible;
        display: inline;
        -webkit-animation: fadeInRight 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
        animation: fadeInRight 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
    }

/* -----------------------------------------
  Font Awesome Custom
----------------------------------------- */
@font-face {
    font-family: 'fa-custom';
    src: url('../font/fa-custom/fonts/fa-custom.ttf?tstqte') format('truetype'), 
        url('../font/fa-custom/fonts/fa-custom.woff?tstqte') format('woff'), 
        url('../font/fa-custom/fonts/fa-custom.svg') format('svg');
}

/* -----------------------------------------
   FADES
----------------------------------------- */
.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

