﻿

/*General*/
body {
    font-family: Tahoma, Geneva, sans-serif;
}




/*Cookie Popup*/

#cookiePopup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 70px;
    padding-right: 80px;
    border-top: 2px solid #b4a593;
    background: white;
    z-index: 11;

    display: none;
}

    #cookiePopup .close {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 20px;
        width: 30px;
        margin: auto;
        height: 30px;
        background: #b4a593;
        border-radius: 50px;
        text-align: center;
        cursor: pointer;
    }

        #cookiePopup .close span {
            color: white;
            font-size: 30px;
            line-height: 31px;
        }

    #cookiePopup p {
        margin-bottom: 0;
    }


    /*Form popup*/
    #popupForm {
        display: none;
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        align-items: center;
        justify-content: center;
        z-index: 1001;
        background: rgba(0,0,0,0.4);
    }

    #popupForm.showFlex {
        display: flex;
    }

    #popupForm .popup-container {
        position: relative;
        border: 3px solid #424443;
        background: white;
        max-width: 768px;
        margin-left: 20px;
        margin-right: 20px;
    }

    #popupForm .popup-image img {
        width: 100%;
        max-width: 768px;
        height: auto;
    }

#popupForm .close {
    position: absolute;
    width: 40px;
    height: 40px;
    top: -20px;
    right: -20px;
    background: white;
    border-radius: 50px;
    text-align: center;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    cursor: pointer;
}

        #popupForm .close span {
            color: #b4a593;
            font-size: 30px;
            line-height: 40px;
        }

    #popupForm .fields {
        display: flex;
        padding: 20px 20px 0 20px;
    }

        #popupForm .fields > div {
            flex-grow: 1;
        }

        #popupForm .fields input {
            display: block;
            width: 292px;
            max-width: 100%;
        }

    #popupForm .popup-validation {
        padding: 5px 20px;
        color: #970000;
    }



    @media screen and (max-width: 800px) {
        #popupForm .fields {
            flex-direction: column;
        }

        #popupForm .fields input {
            margin-bottom: 10px;
            width:100%;
        }
        }


    /*Generic page*/

    .generic-page {
        padding: 20px;
        max-width: 1280px;
        margin: 0 auto;
    }


    /*Services Module*/

.sc_services .sc_columns {
    padding-top: 30px;
}

/*Bootstrap / Template overrides*/
.top_panel_title_inner {
    min-height: 26vw;
    background-position-y: 24%;
    display: flex;
    align-items: center;
}

.top_panel_title .bg-breadcrumbs {
    background-position: top center;
}

.top_panel_wrap .logo_main {
    max-height: 150px;
}

/*Header*/


@media (min-width: 640px) {
    .header_mobile .logo_main {
        height: 100px;
    }
}



/*Utilities*/
.ghost {
    visibility: hidden;
    display: block;
    width: 100%;
    height: auto;
}

