:root {
    --gray: #EBEBEB;
    --green: #15AF97;
    --dark-green: #15A890;
    --dark-gray: #575757;
    --light-gray: #EBEBEB;
    --light-green: #66B895;
}

html {
    overflow-x: hidden;
}

body {
    position: relative;
    font-family: 'Lato', sans-serif;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
}

.auto {
    margin: auto;
}

.gggi_btn {
    border: 1px solid white;
    background-color: transparent;
    padding: 5px;
    margin: 0px;
    color: white;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
}

.gggi_btn:hover {
    color: white;
}

.gggi_btn.green {
    border: 1px solid var(--green) !important;
    color: var(--green) !important;
    width: fit-content;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    font-weight: bold;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
}
.gggi_btn.green img {
    margin-right: 0px !important;
}

.gggi_btn img {
    margin-left: 5px;
}

.no-margin{
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.m-top-0 {
    margin-top: 0px !important;
}

#menu {
    padding-top: 9px;
    padding-left: 10px;
    padding-bottom: 23px;
    width: 100vw;
    height: 29px;
    background-color: white;
    position: fixed;
    left: 0px;
    right: 0px;
    color: var(--green); 
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    z-index: 99;
}

.menu-icons {
    position: absolute;
    right: 30px;
    top: 7px;
}

#menu img {
    cursor: pointer;
}

#footer {
    width: 100vw;
    height: 29px;
    background-color:var(--gray);
    position: fixed;
    left: 0px;
    bottom: 0px;
    color: var(--dark-gray);
    font-size: 10px;
    padding-top: 8px;
    padding-left: 8px;
    z-index: 99;
}

.footer-icons {
    position: absolute;
    top: 0px;
    right: 30px;
    background-color: white;
    padding-right: 5px;
    padding-left: 5px;
    padding-top: 5px;
    padding-bottom: 4px;
}

#footer img {
    cursor: pointer;
}

.sitemap {
    position: absolute;
    right: 150px;
    top: 8px;
    cursor: pointer;
}

.search {
    position: relative;
    width: 225px;
    top: 50px;
    left: calc(100vw - 255px);
    z-index: 3;
    height: 31px;
}

.search .form-control {
    background-color: rgba(223, 223, 223, 0.3);
    border-radius: 0px; 
    border: 1px solid white;
    color: white;
}

.search .form-control::placeholder {
    color: white;
    font-weight: 300;
}

.search .input-group-text {
    background-color: rgba(223, 223, 223, 0.3);
    border-radius: 0px;
    border: 1px solid white;
}

.search .input-group-text img {
    height: 25px;
}

.logo {
    top: 55px;
    left: 20px;
    width: 125px;
    height: 47px;
    position: relative;
    z-index: 2;
}

input:focus
{
    outline:0px !important;
    -webkit-appearance:none;
    box-shadow: none !important;
}

.m-auto {
    margin: auto;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.align-right {
    text-align: right;
}

.p-top-40 {
    padding-top: 40px !important;
}

@media screen and (max-width: 768px) {
    .col-6 {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .menu-icons {
        right: 10px;
    }

    .search {
        left: calc(100vw - 235px);
    }

    .footer-icons {
        right: 10px;
    }

    .sitemap {
        right: 90px;
    }

    .logo {
        top: 75px;
    }
}