.debug-footer {
    display: block;
}

select {
    box-sizing:border-box;
    border:0;
    padding:1em 1.688em;
    border-radius:2em;
    color:#404041;
    background-color: #f5f5f5;
    width:71.42857%;
    display:inline-block
}

.fieldset .autocomplete {
    cursor: pointer;
    background: #f7f7f7;
    box-sizing: border-box;
    border: 0;
    padding: 1em 1.688em;
    border-radius: 2em;
    color: #404041;
    width: 71.42857%;
	z-index: 1000;
}

.fieldset .autocomplete ul li:hover {
    background-color: #eaeaea;
}
/*
.fieldset .autocomplete ol ul {
    margin-bottom: 0 !important;
}
*/
input#municipality_field {
    background: #e8e8e8;
}
span.loader {
    overflow: hidden;
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.input_preview {
    box-sizing: border-box;
    border: 0;
    padding: 1em 1.688em;
    border-radius: 2em;
    color: #404041;
    width: 71.42857%;
    display: inline-block;
    background-color: #e8e8e8;
    min-height: 50px;
}
.input_preview_lcase {
    box-sizing: border-box;
    border: 0;
    padding: 1em 1.688em;
    border-radius: 2em;
    color: #404041;
    width: 71.42857%;
    display: inline-block;
    background-color: #e8e8e8;
    min-height: 50px;
}
.input_preview_half_first {
    box-sizing: border-box;
    border: 0;
    padding: 1em 1.688em;
    border-radius: 2em;
    color: #404041;
    width: 50%;
    display: inline-block;
    background-color: #e8e8e8;
    min-height: 50px;
}
.input_preview_half_second {
    box-sizing: border-box;
    border: 0;
    padding: 1em 1.688em;
    border-radius: 2em;
    color: #404041;
    width: 66.666%;
    display: inline-block;
    background-color: #e8e8e8;
    min-height: 50px;
}
.input_error, .input_error .select2-hidden-accessible > span > span  {
    border: 2px solid #df0019 !important;
}
.input_error_cb input+label:before {
    content: "";
    width: 1.875em;
    height: 1.875em;
    cursor: pointer;
    position: absolute;
    left: -2px;
    top: -2px;
    border-radius: 100%;
    background-color: #fff;
    border: 2px solid #df0019 !important;
}

.bottom-buttons {
    display: flex;
    margin-left: auto;
    margin-right: auto;
}
.bottom-buttons a {
    margin-right: 10px;
}

.bottom-buttons .button--blue {
    margin-left: 10px;
}

#clear_preview_btn, .review__total .button {
    cursor: pointer;
}

/* Absolute Center Spinner */
.loading {
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

/* Transparent Overlay */
.loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0, .8));

    background: -webkit-radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0,.8));
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
    /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.loading:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    -webkit-animation: spinner 150ms infinite linear;
    -moz-animation: spinner 150ms infinite linear;
    -ms-animation: spinner 150ms infinite linear;
    -o-animation: spinner 150ms infinite linear;
    animation: spinner 150ms infinite linear;
    border-radius: 0.5em;
    -webkit-box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
    box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.block__label-light {
    text-transform: uppercase;
    margin-bottom: 0.2em;
    font-size: 0.625em;
    position: absolute;
    left: 0px;
    top: 0px;
    background: #ffffff73;
    color: #ffffff;
    font-weight: bold;
    padding: 4px 5px 1px 8px;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.block__label-dark {
    text-transform: uppercase;
    margin-bottom: 0.2em;
    font-size: 0.625em;
    position: absolute;
    left: 0px;
    top: 0px;
    background: #bfbfbf;
    color: #ffffff;
    font-weight: bold;
    padding: 4px 5px 1px 8px;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.block__label-dark_close_box {
    text-transform: uppercase;
    margin-bottom: 0.2em;
    font-size: 0.625em;
    position: absolute;
    right: 0px;
    top: 0px;
    color: #ffffff;
    font-weight: bold;
    padding: 4px 5px 1px 8px;
}

.message--limit-info-box-blue {
    display: inline-block;
    margin-left: 1em;
    margin-bottom: 1em;
    background: #48a5de;
    color: #fff;
    font-weight: bold;
    padding: 0.65em;
    border-radius: 0.625em;
    font-size: 12px;
    text-align: center;
    margin-top: 5px;
}

.message--limit-info-box-green {
    display: inline-block;
    margin-left: 1em;
    margin-bottom: 1em;
    background: #4c9848;
    color: #fff;
    font-weight: bold;
    padding: 0.65em;
    border-radius: 0.625em;
    font-size: 12px;
    text-align: center;
}
.info {
    vertical-align: middle;
    display: inline-block;
    color: #3185c6;
    font-weight: bold;
    font-size: 1em;
    padding-left: 1.25em;
    line-height: 1.3em;
    cursor: pointer;
    position: relative;
}

.modal {
    display: none;
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}
.modal-content-heading {
    font-size: 26px;
    font-weight: bold;
    line-height: 1.2em;
    margin: 0 7.5%;
    padding-bottom: 35px;
}

.close {
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    margin-top: 5%;
    margin-right: 5%;
    position: fixed;
    background: #0e68b3;
    right: 0;
    padding: 20px;
    border-radius: 40px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.register-btn {
    margin-bottom: 15px;
}
.register-links {
    display: grid;
}