:root {
    --dark-color: #7A0A1E;
    --base-color: #C80F2E;
    --light-color: #EF3D5B;
    --lighter-color: #F5899C;
}

a.link {
    color: var(--base-color);
}

body {
    background: transparent url(/images/bg.jpg) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

.btn-info {
    background-color: #666666;
    border-color: #666666;
}

.btn-info:hover {
    background-color: var(--light-color);
    border-color: var(--light-color);
}

.content {
    background-color: rgba(255, 255, 255, 0.9);
    margin: 30px;
    padding: 30px;
    border-radius: 5px;
}

.logo {
    width: 250px;
    display: block;
    margin: auto;
}

.copy {
    background-color: #cdcdcd;
    padding: 8px;
    color: #555555;
}

#search-form {
    width: 60%;
    margin: auto;
}

label {
    background-color: #cdcdcd;
    height: 44px;
    display: inline-flex;
    align-items: center;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    margin-bottom: 0;
    padding-left: 20px !important;
}

.modal-body > ol > li {
    padding-bottom: 20px;
}

.select2-container {
    height: 44px;
    margin-top: -5px;
}

.select2-container--default .select2-selection--single {
    height: 44px;
    border: 1px solid #cdcdcd;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    display: inline-flex;
    align-items: center;
    height: 44px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px;
    right: 10px;
}

#parcela_minima {
    display: inline-block;
    border: 1px solid #cdcdcd;
    border-radius: 0px;
    height: 44px;
    color: #444444;
}

#superficie-placeholder {
    display: inline-block;
    border: 1px solid #cdcdcd;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    height: 44px;
    color: #444444;
}

#search-form .ui-widget-header {
    background-color: var(--lighter-color);
}

#search-form .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    background-color: var(--dark-color);
}

#submit-btn {
    border: none;
    height: 44px;
    background-color: var(--base-color);
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    border-radius: 25px;
    width: 100%;
}

.obrim {
    width: 100px;
}

@media only screen and (max-width: 1023px) {

    #search-form {
        width: 80%;
    }
}

@media only screen and (max-width: 767px) {

    #search-form {
        width: 95%;
    }

    label {
        display: block;
        border-radius: 0px;
    }

    .select2-container {
        margin-top: 0;
    }

    .select2-container--default .select2-selection--single {
        border-radius: 0px;
    }

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        display: block
    }

    #superficie-placeholder {
        border-radius: 0px;
    }
}

