/* CC_LOCATION */

#cc_location_selector {
    text-transform: uppercase;
    color: #020201;
    font-size: 17px;
    cursor: pointer;
    padding: 0 1rem;
}

.mm_fm_link #cc_location_selector {
	padding: 0;
}

#cc_location {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(255, 255, 255, 0.47);
    /*font-family: 'BrandonGrotesque';*/
}
#cc_location.open {
    display: block;
}
#cc_location .location_block {
    width: 30%;
    height: 100%;
    background: white;
    margin-left: auto;
    margin-right: 0;
    min-width: 600px;
    border-left: 1px solid #dfdfdf;
}
#cc_location .block_header {
    padding: 25px;
    border-bottom: 1px solid #dfdfdf;
    position: relative;
}
#cc_location .block_header .header_title {
    color: black;
    font-weight: bold;
    text-align: center;
}
#cc_location .block_header .header_close {
    color: black;
    position: absolute;
    top: 22px;
    right: 20px;
    font-size: 18px;
    cursor: pointer;
}
#cc_location .block_content {
    padding: 35px 15%;
    color: black;
}
#cc_location .block_content .content_title,
#cc_location .block_content .content_footer {
    text-align: center;
}
#cc_location .block_content .content_form {
    padding-top: 50px;
    padding-bottom: 50px;
}
#cc_location .block_content .content_form .form_input {
    margin-bottom: 35px;
}
#cc_location .block_content .content_form .input_title {
    font-weight: bold;
    margin-bottom: 10px;
}
#cc_location .block_content .content_form .cc_location_button {
    background: black;
    color: white;
    text-align: center;
    padding: 8px 15px;
    cursor: pointer;
    margin-top: 45px;
}
#cc_location .block_content .content_form select {
    width: 100%;
    border: none;
    border-bottom: 1px solid #d1d1d1;
    padding: 0 0 8px 0;
    text-transform: uppercase;
}

#cc_location.open .location_block {
    display: block;
    transform: translateX(0);
    visibility: visible;
    transition: transform .5s;
    padding: 0;
}
#cc_location .location_block {
    transform: translateX(100%);
    visibility: hidden;
    animation: sepultura .5s ease-in-out;
}
#cc_location.open .location_block {
    transform: translateX(0);
    visibility: visible;
}

@keyframes sepultura {
    from{
        visibility: hidden;
        transform: translateX(100%);
    }
    to{
        visibility: visible;
        transform: translateX(0);
    }
}

#cc_location_footer {
    text-transform: uppercase;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    font-size: 13px;
    margin-top: 65px;
}
#cc_location_footer > div:first-of-type {
    margin-bottom: 5px;
}
#cc_location_footer i {
    padding-left: 5px;
}

@media only screen and (max-width: 991px) {
    #cc_location .location_block {
        width: 100%;
        min-width: unset;
    }
    #cc_location .block_header {
        padding: 25px 15px;
    }
    #cc_location .block_content {
        padding: 35px 40px;
    }
    #cc_location .block_content .content_form {
        padding-bottom: 15px;
    }
    #cc_location_footer {
        margin-top: 30px;
    }
}
