
.cc_neptuno__selector {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    justify-content: end;
    z-index: 0;
    display: flex;
    opacity: 1;
    z-index: 100;
}

.cc_neptuno__selector_wrapper {
    position: fixed;
    height: 100vh;
    width: 400px;
    right: 0;
    top: 0;
    background: white;
    z-index: 99; 
    padding: 40px 20px;
    box-shadow: 0px 6px 4px 0px rgba(0,0,0,0.3);
}

.cc_neptuno__selector_title {
    text-align: center;
    color: #004F67;
    font-size: 20px;
    font-weight: 600;
}
.cc_neptuno__selector_subtitle {
    text-align: center;
    color: #212529;
    font-size: 14px;
    font-weight: 400;
    margin-top: 8px;
}

.cc_neptuno__selector_buttons {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
} 
.cc_neptuno__selector_button {
    font-size: 16px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
} 
.cc_neptuno__selector_button--keep {
    background: #004F67;
    color: white;
}
.cc_neptuno__selector_button--change {
    border: 1px solid #004F67;
    color: #004F67;
}
.cc_neptuno__zones {
    margin-top: 30px;
    display: none;
	position: relative;
}
.cc_neptuno__zones_title {
    color: #004F67;
    font-weight: 600;
    font-size: 18px;
    /*text-decoration: underline;*/
    text-align: center;
}
.cc_neptuno__zones_list {
    margin-top: 15px;
}
.cc_neptuno__zone {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    cursor: pointer;
}
.cc_neptuno__zone span {
    color: #333;
    font-weight: 600;
}
.cc_neptuno__zone svg {
    width: 24px;
    color: #004F67;
}
.cc_neptuno__header {
    line-height: 13px;
}
#st_header.stuck .cc_neptuno__header {
    display: none;
}
.cc_neptuno__header svg {
    width: 25px;
    color: #004F67;
    cursor: pointer;
}

.cc_neptuno__zones .cc_neptuno__zones_title {
    border: 1px solid #000000;
    color: #000000;
	font-size: 12px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    padding-left: 12px;
    align-items: center;
    font-weight: 500;
    cursor: pointer;
	position: relative;
}

.cc_neptuno__zones .cc_neptuno__zones_title svg {
	position: absolute;
    top: 50%;
    right: 5%;
    transform: translate(0, -50%);
}

.cc_neptuno__zones .cc_neptuno__zones_list {
	background-color: white;
	padding: 12px;
    position: absolute;
    top: 40px;
	border-radius: 4px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    left: 0;
    width: 100%;
    height: auto;
    visibility: hidden;
    opacity: 0;
    z-index: 3;
    max-height: 330px;
    overflow: auto;
}

.cc_neptuno__zones .cc_neptuno__zones_list.show {
    visibility: visible !important;
    opacity: 1 !important;
}

.cc_neptuno__zones .cc_neptuno__zones_list .cc_neptuno__zone {
	color: #000000;
	font-size: 12px;
    height: 40px;
	font-weight: 500;
	margin: 0;
	padding: 0 12px;
}

.cc_neptuno__zones .cc_neptuno__zones_list .cc_neptuno__zone svg {
	display: none;
}

.cc_neptuno__zones .cc_neptuno__zones_list .cc_neptuno__zone:hover {
	background-color: #E9E9EA;
}

.cc_neptuno__selector_button--accept {
    background: #004F67;
    color: white;
	margin-top: 16px;
}
.cc_neptuno__selector_button--disabled {
    opacity: 0.3;
    cursor: not-allowed;
}


/* MOBILE */

#mobile_bar.stuck .cc_neptuno__header {
	display: none;
}

#mobile_bar_right .cc_neptuno__header {
	margin: 0 5px;
}

@media only screen and (max-width: 480px) {
	
	.cc_neptuno__selector_wrapper {
		bottom: 0;
		height: auto;
		padding: 20px 20px;
		position: fixed;
		top: unset;
		width: 100%;
	}
	
	.cc_neptuno__zones .cc_neptuno__zones_list.show {
		max-height: 193px;
		position: relative;
		top: 0;
	}
	
	.cc_neptuno__zones .cc_neptuno__zones_list.show ~ .cc_neptuno__selector_button--accept {
		display: none;
	}
	
}
