/*
Theme Name: Custom-Sites New
Theme URI: https://bitbucket.org/custom-sites/cs_new
Description: Custom-Sites New Parent Theme
Version: 1.6.5
Author: Custom-Sites Team (Avraham Yoffe)
Author URI: http://www.custom-sites.com
License: GNU General Public License v2 or later
Text Domain: cs_new

Bitbucket Theme URI: https://bitbucket.org/custom-sites/cs_new
Bitbucket Branch: master

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Custom-Sites is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/
*/


/* hide elementor menu */

nav.elementor-nav-menu--main {
    display: none;
}


/******************************/

html {
    overflow-y: scroll;
}

body {
    overflow: hidden;
}

.elementor-editor-active #preloader {
    display: none;
}

#preloader {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    z-index: 999999;
}

#preloader_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translatex(-50%);
    -o-transform: translateY(-50%) translatex(-50%);
    transform: translateY(-50%) translatex(-50%);
}

#preloader_icon img {
    width: 90%;
    max-width: 500px;
}

#content {
    position: relative;
}

a.credit:active {
    text-transform: none;
    color: #000000;
    text-decoration: none
}

a.credit:link {
    text-transform: none;
    color: #000000;
    text-decoration: none
}

a.credit:visited {
    text-transform: none;
    color: #000000;
    text-decoration: none
}

a.credit:hover {
    text-transform: none;
    color: rgba(0, 0, 0, 0.85);
    text-decoration: none
}


/* ######################################### */


/* Header */

#cs_main_header {
    position: relative;
    z-index: 1000;
}

#cs_main_header.header_fixed {
    position: fixed;
    width: 100%;
}

#cs_main_header.sticky {
    position: fixed;
    opacity: 0;
    width: 100%;
    top: 10px;
    left: 0px;
}

#cs_main_header_spacer {
    display: none;
    position: relative;
    width: 100%;
}

#cs_sticky_header {
    display: none;
    position: fixed;
    opacity: 0;
    width: 100%;
    top: 10px;
    left: 0px;
    z-index: 999999;
}


/* ######################################### */


/* FOOTER */

#cs_footer_container {
    position: relative;
    z-index: 100;
}


/* ######################################### */

#cookies_statement {
    display: none;
    position: fixed;
    width: 100%;
    min-height: 50px;
    z-index: 999999999999999;
}

#cookies_statement .cookies_statement_close {
    width: 25%;
    text-align: center;
}

#cookies_statement .cookies_statement_close_button {
    display: inline-block;
    padding: 5px 20px;
    cursor: pointer;
    margin-top: 11px;
}

#cookies_statement .cookies_statement_close_button:hover {
    opacity: 0.8;
}

#cookies_statement .cookies_statement_info {
    float: left;
    width: 75%;
    text-align: center;
    padding-top: 15px;
}


/* ######################################### */

.cs_scroll_top {
    position: relative;
    display: none;
    position: fixed;
    right: 10px;
    z-index: 1000;
    cursor: pointer;
}

.cs_scroll_top:hover {
    opacity: 0.5;
}

.cs_scroll_top_fa {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translatex(-50%);
    -o-transform: translateY(-50%) translatex(-50%);
    transform: translateY(-50%) translatex(-50%);
}


/* ######################################### */

h2.home-title,
h2.search-title {
    margin-top: 0px;
}


/* ######################################### */

@media screen and (min-width:768px) {
    .show_on_mobile {
        display: none;
    }
    .hide_on_mobile {
        display: block;
    }
}

@media screen and (max-width:767px) {
    .show_on_mobile {
        display: block;
    }
    .hide_on_mobile {
        display: none;
    }
}