﻿.wow:first-child {visibility: hidden;}
textarea.no-resize {resize: none;}
.ui-autocomplete {display: block;padding-top: 20px;max-height:300px;overflow-y:auto;}
.ui-autocomplete li { display: block;}
.ui-autocomplete li a {display: block;}



.cd-top {
    display: inline-block;
    position: fixed;
    bottom: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    /* image replacement properties */
    overflow: hidden;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5;
}
.no-touch .cd-top:hover {
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  .cd-top {
    padding:10px 15px 10px 15px !important;
  }
}

/*@media only screen and (min-width: 768px) {*/
.mega-dropdown {
        position: static !important;
    }

.mega-dropdown-menu {
        padding: 20px 0px;
        width: 100%;
        box-shadow: none;
        -webkit-box-shadow: none;
    }

.mega-dropdown-menu > li > ul > li {
            list-style: none;
        }

.mega-dropdown-menu > li > ul > li > a {
                display: block;
                padding: 3px 5px;
            }

.mega-dropdown-menu > li ul > li > a:hover,
.mega-dropdown-menu > li ul > li > a:focus {
            text-decoration: none;
        }
/*}*/
.centerbox{text-align:center}

@media only screen and (max-width: 767px) {
    #navbar {
        position: fixed;
        top: 0;
        left: 15px;
        z-index: 909;
        width: 280px;
        height: 100%;
        background-color: #ddd;
        overflow: auto;
    }

    .menu-overlay {
        display: none;
        background-color: #000;
        bottom: 0;
        left: 0;
        opacity: 0.5;
        filter: alpha(opacity=50);
        /* IE7 & 8 */
        position: fixed;
        right: 0;
        top: 0;
        z-index: 918;
    }
}

    hr {
        border: none;
        margin-top: -1px;
        height: 1px;
        background-color: #c0c8c9;
        background-image: -webkit-linear-gradient(0deg, #fff, #c0c8c9, #fff);
    }





    .site__title {
        color: #f35626;
        background-image: -webkit-linear-gradient(92deg,#f35626,#feab3a);
        -webkit-background-clip: unset;
        -webkit-text-fill-color: transparent;
        -webkit-animation: hue 60s infinite linear;
    }



    /*-----------------------------------*\
  $ANIMATIONS
\*-----------------------------------*/

    @-webkit-keyframes hue {
        from {
            -webkit-filter: hue-rotate(0deg);
        }

        to {
            -webkit-filter: hue-rotate(-360deg);
        }
    }


    /*-----------------------------------*\
 animation fade
\*-----------------------------------*/

    @keyframes fade {
        from {
            opacity: 1.0;
        }

        50% {
            opacity: 0.4;
        }

        to {
            opacity: 1.0;
        }
    }

    @-webkit-keyframes fade {
        from {
            opacity: 1.0;
        }

        50% {
            opacity: 0.4;
        }

        to {
            opacity: 1.0;
        }
    }


    .fadelink {
        animation: fade 3000ms infinite;
        -webkit-animation: fade 3000ms infinite;
    }


