/* Media Queries */
@media (max-width:1399px) {
    .container {
        max-width: 1200px;
    }
}

@media (max-width: 1199px) {
    a.grid_item.small {
        height: 130px;
    }
}

@media only screen and (max-width: 1024px) {
    #style-switcher {
        display: none;
    }
}

@media (max-width: 1024px) {
    #hero_video {
        background: #ccc url(../images/home_section_1.jpg);
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }

    #hero_video>div {
        background-color: black;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .header-video {
        background: none;
    }

    .newsletter-form__fields .input-v2 {
        width: 530px;
    }
    .content {
        width: 100%;
    }
}

/* All styles for screen size over 992px*/
@media only screen and (min-width: 992px) {
    nav#menu.main-menu {
        display: block !important;
    }

    #mm-menu.main-menu {
        display: none !important;
    }

    header .btn_mobile {
        display: none !important;
    }

    /* Menu */
    .main-menu {
        position: relative;
        z-index: 9;
        width: auto;
        top: 8px;
        right: 15px;
        float: right;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        color: #fff;
    }

    .main-menu ul,
    .main-menu ul li {
        position: relative;
        display: inline-block;
        margin: 0;
        padding: 0;
    }

    .main-menu ul a,
    .main-menu ul li a {
        position: relative;
        margin: 0;
        padding: 0;
        display: block;
        padding: 5px 10px;
        white-space: nowrap;
    }

    /*First level styles */
    .main-menu>ul>li span>a {
        color: #fff;
        padding: 0 8px 15px 8px;
        font-size: 14px;
        font-size: 0.975rem;
        font-weight: 500;
    }

    .main-menu>ul>li span:hover>a {
        opacity: 0.7;
    }

    header.sticky .main-menu>ul>li span>a,
    header.header_in .main-menu>ul>li span>a,
    header.header_in .main-menu>ul>li span>form select>option {
        color: #fff;
    }

    header.sticky .main-menu>ul>li span:hover>a,
    header.header_in .main-menu>ul>li span:hover>a {
        opacity: 1;
        color: #fff;
    }

    /* Submenu*/
    .main-menu ul ul {
        position: absolute;
        z-index: 1;
        visibility: hidden;
        left: 3px;
        top: 93%;
        margin: 0;
        display: block;
        padding: 0;
        background: #fff;
        min-width: 200px;
        -webkit-box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.175);
        -moz-box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.175);
        box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.175);
        transform: scale(0.4);
        transform-origin: 10% top;
        transition: 0.15s linear, 0.1s opacity cubic-bezier(0.39, 0.575, 0.565, 1), 0.15s transform cubic-bezier(0.1, 1.26, 0.83, 1);
        opacity: 0;
        -moz-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        -webkit-transition: all 0.2s ease;
        -ms-transition: all 0.2s ease;
        transition: all 0.2s ease;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        border-radius: 3px;
    }

    .main-menu ul ul:before {
        bottom: 100%;
        left: 15%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-bottom-color: #fff;
        border-width: 7px;
        margin-left: -7px;
    }

    .main-menu ul ul li {
        display: block;
        height: auto;
        padding: 0;
    }

    .main-menu ul ul li a {
        font-size: 13px;
        font-size: 0.8125rem;
        color: #555;
        border-bottom: 1px solid #ededed;
        display: block;
        padding: 15px 10px;
        line-height: 1;
    }

    .main-menu ul li:hover>ul {
        padding: 0;
        visibility: visible;
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transition-delay: 0.2s;
        transition-delay: 0.2s;
        -webkit-transition-duration: 0s, 0.2s, 0.2s;
        transition-duration: 0s, 0.2s, 0.2s;
    }

    .main-menu ul ul li:first-child a:hover {
        -webkit-border-radius: 3px 3px 0 0;
        -moz-border-radius: 3px 3px 0 0;
        -ms-border-radius: 3px 3px 0 0;
        border-radius: 3px 3px 0 0;
    }

    .main-menu ul ul li:last-child a {
        border-bottom: none;
    }

    .main-menu ul ul li:last-child a:hover {
        -webkit-border-radius: 0 0 3px 3px;
        -moz-border-radius: 0 0 3px 3px;
        -ms-border-radius: 0 0 3px 3px;
        border-radius: 0 0 3px 3px;
    }

    .main-menu ul ul li:hover>a {
        background-color: #f9f9f9;
        color: #231f20;
        padding-left: 15px;
    }
}

/* All styles for screen size under 991px */
@media only screen and (max-width: 991px) {
    nav#menu {
        display: none !important;
    }

    .mm-menu {
        background: #fff;
    }

    .main-menu {
        top: 0;
        right: 0;
        float: none;
    }

    ul.mm-listview {
        line-height: 25px;
    }

    ul.mm-listview li a {
        color: #ccc;
        display: block;
    }
    .tab-content {
        width: 100%;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
        color: var(--paragraph-color) !important;
    }
}

@media (max-width: 991px) {
    .search-form-border {
        border-radius: 10px;
        margin-right: 15px;
    }
    .newsletter-form__fields {
        width: auto;
    }

    .newsletter-form__fields .input-v2 {
        width: 360px !important;
    }

    .business .box_how .icon {
        width: 100%;
    }

    a.btn_add,
    .btn_add {
        display: none;
    }

    header.header.sticky {
        padding: 15px 15px 5px 15px;
    }

    header.header_in {
        padding: 10px 0 5px 0;
    }

    header.header_in ul#top_menu {
        position: absolute;
        right: 15px;
        float: none;
    }

    header.header_in #logo a {
        z-index: 9;
        position: relative;
    }

    .sub_header_in.sticky_header {
        margin-top: 48px;
    }

    ul#top_menu {
        margin: -2px 0 0 10px;
    }

    ul#top_menu li {
        margin: 2px 0 0 10px;
    }

    ul#top_menu li a.login,
    ul#top_menu li a.wishlist_bt_top {
        top: 2px;
    }

    #logo {
        float: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        text-align: center;
    }

    #logo img {
        width: auto;
        height: 28px;
        margin: 12px 0 0 0;
    }

    .header_in #logo img {
        margin: 0;
    }

    ul#additional_links {
        float: none;
        margin-top: 10px;
    }

    .hero_single.version_4 .wrapper input[type='submit'] {
        margin: 20px 0 0 0;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        border-radius: 3px;
    }

    .hero_single.version_5 .wrapper input[type='submit'] {
        margin: 20px 0 0 0;
    }

    #custom-search-input {
        width: auto;
    }

    .custom-search-input-2 {
        background: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    .custom-search-input-2 input {
        border: none;
    }

    .custom-search-input-2 input:focus {
        border-right: none;
    }

    .custom-search-input-2 .form-group {
        margin-bottom: 5px;
    }

    .custom-search-input-2 i {
        padding-right: 10px;
    }

    .custom-search-input-2 input[type='submit'] {
        margin: 20px 0 0 0;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        border-radius: 3px;
    }

    .custom-search-input-2.inner {
        display: none;
    }

    .custom-search-input-2.inner input {
        border: none;
    }

    .custom-search-input-2.inner input:focus {
        border-right: none;
    }

    .custom-search-input-2.inner {
        margin: 0 0 20px 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    .header-video {
        height: 620px !important;
    }

    a.grid_item {
        height: 180px;
    }

    a.grid_item.small {
        height: 180px;
    }

    #results h4 {
        margin: 5px 0 0 0;
    }

    #results_map_view h4 {
        margin: 5px 0 0 0;
    }

    .strip.list_view figure {
        min-height: 220px;
        max-height: 220px;
        height: 220px;
        -webkit-border-radius: 3px 3px 0 0;
        -moz-border-radius: 3px 3px 0 0;
        -ms-border-radius: 3px 3px 0 0;
        border-radius: 3px 3px 0 0;
    }

    .strip.list_view figure a img {
        max-width: inherit;
        height: 460px;
        width: auto;
    }

    .strip.list_view .wrapper {
        min-height: inherit;
    }

    .strip.map_view a.address {
        display: none;
    }

    .strip.map_view figure {
        height: 100%;
    }

    .strip.map_view figure a img {
        max-width: inherit;
        height: 100%;
        width: auto;
    }

    .strip.map_view .wrapper {
        min-height: 90px;
        padding-right: 45px;
    }

    .box_list figure small {
        right: 15px;
        top: 15px;
    }

    .box_list figure {
        min-height: 220px;
        max-height: 220px;
        height: 220px;
    }

    .box_list figure a img {
        max-width: inherit;
        height: 450px;
        width: auto;
    }

    .box_list .wrapper {
        min-height: inherit;
    }

    #list_sidebar .box_list figure {
        min-height: 200px;
        max-height: 200px;
        height: 200px;
    }

    #list_sidebar .box_list figure a img {
        max-width: 100%;
        height: auto;
        width: inherit;
    }

    #list_sidebar .box_list .wrapper {
        min-height: inherit;
    }

    a.btn_search_mobile {
        display: block;
    }

    .search_mob a {
        display: block;
    }

    #review_summary {
        margin-bottom: 15px;
    }

    .booking .panel-dropdown {
        height: inherit;
    }

    .panel-dropdown {
        background-color: #fff;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        border-radius: 3px;
        height: 50px;
    }

    .full-height {
        height: auto;
    }

    .row-height {
        height: auto;
        padding-top: 48px;
    }

    .map-right {
        height: 400px;
        position: static;
        min-height: inherit;
    }

    .content-left {
        padding-top: 0;
    }

    .step {
        margin-bottom: 35px;
    }

    .hero_single .wrapper .box_account .form_container a.social_bt {
        margin-bottom: 5px;
    }

    #map_contact {
        height: 350px;
    }

    iframe#map_iframe {
        height: 400px;
    }

    .grid-gallery ul li {
        width: 50%;
    }

    .box_style_cat {
        display: none;
    }

    .list_articles ul li {
        float: none;
        width: 100%;
        margin-right: 0;
    }

    .margin_30_95 {
        padding-top: 15px;
        padding-bottom: 35px;
    }

    .hidden_tablet {
        display: none !important;
    }

    .margin_80_55 {
        padding-top: 60px;
        padding-bottom: 35px;
    }

    .margin_80 {
        padding-bottom: 60px;
        padding-top: 60px;
    }

    .margin_80_0 {
        padding-top: 60px;
    }
    .tab-content {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .search-form-border {
        border-radius: 10px;
    }
    .newsletter-form__fields {
        width: auto;
    }

    .newsletter-form__fields .input-v2 {
        width: 320px !important;
    }

    .main_title_2 {
        margin-bottom: 10px;
    }

    .main_title_2 h2 {
        font-size: 26px;
        font-size: 1.625rem;
    }

    .main_title_2 p {
        font-size: 18px;
        font-size: 1.125rem;
    }

    .main_title_3 {
        border-left: none;
        padding-left: 0;
    }

    .main_title_3 span {
        display: none;
    }

    .main_title_3 h2,
    .main_title_3 h3 {
        font-size: 21px;
        font-size: 1.3125rem;
    }

    .main_title_3 p {
        font-size: 14px;
        font-size: 0.875rem;
    }

    .main_title_3 a {
        top: -10px;
    }

    .btn_home_align {
        text-align: center;
        margin-bottom: 15px;
    }

    a.btn_filt,
    a.btn_filt_map {
        text-indent: -999px;
        display: block;
        width: 32px;
        height: 32px;
        padding: 0;
    }

    a.btn_filt:before,
    a.btn_filt_map:before {
        text-indent: 1px;
        position: absolute;
        left: 3px;
        top: 4px;
        font-size: 21px;
        font-size: 1.3125rem;
        font-weight: normal;
    }

    header.header {
        padding: 15px 15px 5px 15px;
    }

    .hero_single .wrapper h3 {
        font-size: 21px;
        font-size: 1.3125rem;
    }

    .hero_single .wrapper p {
        padding: 0;
        font-size: 18px;
        font-size: 1.125rem;
    }

    .hero_single.version_2 .wrapper h3 {
        font-size: 26px;
        font-size: 1.625rem;
        margin-top: 30px;
    }

    .hero_single.version_2 .wrapper p {
        padding: 0;
        font-size: 14px;
        font-size: 0.875rem;
    }

    .hero_single.version_4 .wrapper h3 {
        font-size: 26px;
        font-size: 1.625rem;
        margin-top: 30px;
    }

    .hero_single.version_4 .wrapper p {
        padding: 0;
        font-size: 14px;
        font-size: 0.875rem;
    }

    .hero_single.version_5 {
        height: 550px;
    }

    .hero_single.version_5 .wrapper h3 {
        font-size: 26px;
        font-size: 1.625rem;
        margin-top: 20px;
    }

    .hero_single.version_5 .wrapper p {
        padding: 0;
        font-size: 14px;
        font-size: 0.875rem;
    }

    ul.counter {
        display: none;
    }

    .main_categories ul {
        width: 100%;
    }

    .main_categories ul li a h3 {
        display: none;
    }

    #hero_video .wrapper h3 {
        font-size: 26px;
        font-size: 1.625rem;
        margin-top: 60px;
    }

    #hero_video .wrapper p {
        padding: 0;
        font-size: 14px;
        font-size: 0.875rem;
    }

    a.grid_item {
        height: 150px;
    }

    a.grid_item .info {
        padding: 15px 15px 0 15px;
    }

    a.grid_item figure {
        height: 150px;
    }

    a.grid_item figure img {
        width: 100%;
    }

    a.grid_item.small {
        height: 150px;
    }

    a.grid_item.small figure {
        height: 150px !important;
    }

    #reccomended {
        margin-top: 0;
    }

    .owl-theme .owl-dots {
        margin-top: 0 !important;
        margin-bottom: 20px;
    }

    a.box_news {
        min-height: inherit;
        padding-left: 0;
    }

    a.box_news figure {
        position: relative;
        width: auto;
    }

    a.box_news figure img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    a.box_news h4 {
        margin-bottom: 5px;
    }

    a.box_news ul {
        padding: 0;
    }

    a.box_feat {
        padding: 20px 20px 0 20px;
    }

    #carousel {
        margin-bottom: 30px;
    }

    #results {
        padding: 12px 0;
    }

    #results h4 {
        margin: 3px 0 0 0;
    }

    #results_map_view h4 {
        margin: 3px 0 0 0;
    }

    .filters_listing ul li:nth-child(3) {
        display: none;
    }

    .filters_listing ul li:nth-child(4) {
        margin-right: 0;
    }

    .filters_listing.version_2 ul li:nth-child(2) {
        display: none;
    }

    .filters_listing.version_2 ul li:nth-child(3) {
        display: block;
        margin-right: 0;
    }

    .strip.list_view figure a img {
        height: 350px;
    }

    .strip.map_view .score {
        position: relative;
        top: 3px;
    }

    .strip.map_view .score span {
        display: none;
    }

    .strip.map_view .wrapper h3 {
        font-size: 16px;
        font-size: 1rem;
    }

    .box_list figure a img {
        height: 350px;
    }

    #search_mobile {
        width: 100%;
        padding: 45px 30px 30px 30px;
    }

    .hero_in {
        height: 350px;
    }

    .hero_in.shop_detail {
        height: 350px;
    }

    .hero_in.hotels_detail {
        height: 350px;
    }

    .hero_in.restaurant_detail {
        height: 350px;
    }

    .reviews-container .review-box {
        padding-left: 0;
    }

    .reviews-container .rev-thumb {
        position: static;
        margin-bottom: 10px;
    }

    .room_type h4 {
        margin-top: 25px;
    }

    .opening {
        padding: 15px;
    }

    .opening i {
        display: none;
    }

    .opening h4 {
        margin-top: 0;
    }

    #login figure,
    #register figure {
        margin: -30px -30px 20px -30px;
        padding: 15px 60px 20px 60px;
    }

    #login aside,
    #register aside {
        width: 100%;
        padding: 30px;
        left: 0;
        margin: 0;
    }

    .access_social {
        margin-top: 30px;
    }

    .step h3:before {
        border: none;
    }

    .step h3:after {
        border: none;
    }

    .step h3 {
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 15px;
    }

    #error_page {
        background-size: auto 300px;
    }

    #error_page h2 {
        font-size: 72px;
        font-size: 4.5rem;
    }

    #error_page p {
        font-size: 18px;
        font-size: 1.125rem;
    }

    #error_page {
        padding: 0;
        height: 500px;
    }

    .grid-gallery ul li {
        width: 100%;
        min-height: 100%;
        float: none;
    }

    a.box_topic {
        padding: 20px 20px 0 20px;
    }

    .hidden_mobile {
        display: none !important;
    }

    #forgot_pw {
        padding: 0;
    }

    #cookie-bar {
        padding: 5px 0;
    }

    #cookie-bar a {
        display: block;
        max-width: 150px;
        margin: auto;
        margin-bottom: 5px;
    }

    .margin_60 {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    #toTop {
        display: none !important;
    }

    .strip_booking h3 {
        margin: 15px 0;
    }
    .content {
        width: 100%;
    }
    .nav-pills {
        width: 100%;
    }

    .content {
        width: 100%;
    }
    .tab-content {
        width: 100%;
    }
}

@media screen and (min-width: 564px) {
    .daterangepicker {
        width: 500px !important;
    }

    .daterangepicker.single {
        width: auto !important;
    }

    .nav-pills {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .newsletter-form {
        border-radius: 5px;
    }

    .newsletter-form__button {
        border-radius: 0 5px 5px 0;
    }

    .newsletter-form__fields {
        width: auto;
    }

    .newsletter-form__fields .input-v2 {
        width: 320px !important;
    }

    h1.main_title_in {
        font-size: 24px;
        font-size: 1.5rem;
    }

    .sub_header_in h1 {
        font-size: 18px;
        font-size: 1.125rem;
    }

    footer h3 {
        font-size: 16px;
        font-size: 1rem;
        margin: 0;
    }

    footer a.collapse_bt_mobile {
        border-bottom: 1px solid #ededed;
        padding: 12px 0;
    }

    footer a.collapse_bt_mobile .circle-plus {
        display: block;
        position: absolute;
        top: 8px;
        right: 0;
    }

    footer hr {
        display: none;
    }

    footer ul {
        padding-top: 15px;
    }

    footer #newsletter {
        padding-top: 15px;
    }

    ul#footer-selector {
        margin-top: 30px;
    }

    ul#footer-selector li:last-child {
        margin-top: 5px;
    }

    .hero_single .wrapper h3 {
        font-size: 23px;
        font-size: 1.4375rem;
    }

    .hero_single.version_2 .wrapper h3 {
        font-size: 22px;
        font-size: 1.375rem;
    }

    .hero_single.version_4 .wrapper h3 {
        font-size: 22px;
        font-size: 1.375rem;
    }

    .hero_single.version_5 .wrapper h3 {
        font-size: 22px;
        font-size: 1.375rem;
    }

    #custom-search-input .search-query {
        padding-left: 15px;
    }

    #custom-search-input input[type='submit'] {
        text-indent: -999px;
        background: #231f20 url(../images/search.svg) no-repeat center center;
    }

    .custom-search-input-2.inner input[type='submit'] {
        text-indent: -999px;
        background: #ed1c24 url(../images/search.svg) no-repeat center center;
    }

    #hero_video .wrapper h3 {
        font-size: 22px;
        font-size: 1.375rem;
    }

    a.grid_item {
        height: 180px;
    }

    a.grid_item figure {
        height: 180px;
    }

    a.grid_item.small {
        height: 170px;
    }

    a.grid_item.small figure {
        height: 170px !important;
    }

    .switch-field label {
        min-width: inherit;
    }

    .secondary_nav ul li:last-child {
        display: inline-block;
    }

    .margin_80_0 {
        padding-top: 30px;
    }

    .margin_30_95 {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .margin_80_55 {
        padding-top: 45px;
        padding-bottom: 15px;
    }

    .margin_80 {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .margin_60_35 {
        padding-top: 30px;
        padding-bottom: 5px;
    }
    .nav-pills {
        width: 100%;
    }
}

@media (max-width:440px) {
    .newsletter-form {
        height: 80px;
        padding: 10px;
    }

    .newsletter-form__fields {
        margin-left: 0;
    }

    .newsletter-form__fields .input-v2 span {
        width: 40px;
    }

    .newsletter-form__fields .input-v2 {
        width: 310px !important;
    }

    .newsletter-form__button {
        width: 60px;
    }

    .newsletter-form__button i {
        font-size: 20px;
    }

    .breadcrumb-widget {
        top: 55px;
    }

    .nav-pills {
        width: 100% !important;
    }
    .content {
        width: 100% !important;
        padding: 20px 10px !important;
    }
    .g-recaptcha+div {
        width: 100% !important;
    }
    .tab-content {
        width: 100% !important;
    }
    .hero_single .wrapper .box_account .form_container {
        padding: 10px;
    }
}

@media (max-width:424px) {
    .newsletter-form__fields .input-v2 {
        width: 280px !important;
    }
}

@media (max-width:376px) {
    .newsletter-form__fields .input-v2 {
        width: 260px !important;
    }
}

@media only screen and (max-width : 320px) {
    .newsletter-form__fields .input-v2 {
        width: 200px !important;
    }

    .newsletter-form__fields .input-v2 input {
        width: 100% !important;
    }
}

/* Animations */
@keyframes pop-in {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }
}

@keyframes rotate-x {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

@-webkit-keyframes checkmark {
    0% {
        stroke-dashoffset: 50px;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@-ms-keyframes checkmark {
    0% {
        stroke-dashoffset: 50px;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes checkmark {
    0% {
        stroke-dashoffset: 50px;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 240px;
    }

    100% {
        stroke-dashoffset: 480px;
    }
}

@-ms-keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 240px;
    }

    100% {
        stroke-dashoffset: 480px;
    }
}

@keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 240px;
    }

    100% {
        stroke-dashoffset: 480px;
    }
}

@keyframes cluster-animation {

    0%,
    100% {
        transform: scale(1.3) rotate(0deg);
    }

    50% {
        transform: scale(1.5) rotate(90deg);
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes reveal_left_to_right {
    0% {
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    50% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes reveal_top_to_bottom {
    0% {
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    50% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -ms-transform: translateY(100%);
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }
}

@keyframes color {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes hoverAnimation {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}