.page-custom-bg-color {
    background-image: var(--colore9) !important;
    width: 100%;
    min-height: 100vh !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-custom-bg-color {
    background: var(--coloreff) !important;
    min-height: 100vh !important;
    display: flex;
    align-items: center;
}

.box_select {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0px 10px 15px var(--primary);
}

.custom-select:first-child {
    padding-left: 30px;
}

.custom-select {
    border: none;
    border-radius: 0px;
    margin: 0px;
    height: auto;
    line-height: initial;
    padding: 20px 30px 20px 20px;
    cursor: pointer;
    color: var(--colr111);
    background-image:  url("../images/drop_down_arrow.svg") !important;
    background-position: right 15px center;
    background-repeat: no-repeat;
    background-size: auto 35%;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

@media(max-width: 767px) {
    .box_select {
        display: block;
        margin-bottom: 10px;
        border-radius: 0;
        box-shadow: none;
    }

    .custom-select {
        font-size: 14px;
    }

    .custom-select:focus {
        box-shadow: none !important;
    }

    .custom-select:first-child {
        padding-left: 18px;
        margin-bottom: 12px;
    }
}