.original-select {
    display: none;
}

.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select {
    position: relative;
    width: 100%;
}

.custom-select__trigger {
    padding: 25px;
    border: 1px solid #4E4E4E;
    border-radius: 20px;
    background: #EEF1F3;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
	color: #4E4E4E;
	line-height: 120%;
}

.custom-select__trigger:hover {
    border-color: #2c3e50;
}

.arrow {
    transition: transform 0.3s ease;
	width: 18px;
    height: 9px;
    background-image: url(/local/templates/dial24/images/vector-form.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.custom-select__options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #EEF1F3;
    border: 1px solid #4E4E4E;
    border-radius: 20px;
    max-height: 300px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
	font-size: 24px;
}

.custom-select.open .custom-select__options {
    opacity: 1;
    visibility: visible;
}

.custom-select__option {
    padding: 15px 25px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.custom-select__option:hover {
    background: #f5f5f5;
}

.custom-select__option.selected {
    background: #eaeaea;
    font-weight: bold;
}
.our-settings-form.open {
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #EEF1F3;
    padding: 100px 50px 240px!important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    color: black;
    width: 90%;
}
@media (max-width: 992px) {
	.custom-select__trigger {
		border-radius: 10px;
		font-size: 20px;
		padding: 15px;
	}
	.custom-select__options {
		border-radius: 20px;
	}
	.custom-select__option {
		padding: 15px;
		font-size: 20px;
	}
}