/* Stylowanie Select2 dla Contact Form 7 */

/* Kontener główny */
.select2-container {
    width: 100% !important;
    font-family: inherit;
}

/* Pole wyboru */
.select2-container--default .select2-selection--single {
    height: 58px !important;
    border: 1px solid transparent !important;
    border-radius: 12px !important;
    background-color: #f6f6f6 !important;
    padding: 20px !important;
    display: flex !important;
    align-items: center !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
}

/* Hover i focus */
.select2-container--default .select2-selection--single:hover,
.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #478675 !important;
    transition: all 0.3s ease !important;
}

/* Tekst w polu */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #333 !important;
    line-height: 46px !important;
    padding: 0 !important;
    font-size: 16px !important;
}

select.wpcf7-not-valid + .select2 .select2-selection--single {
	border: 1px solid #dc3232 !important;
}

/* Placeholder */
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999 !important;
    font-style: italic !important;
}

/* Strzałka */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 58px !important;
    right: 15px !important;
	width: 12px;
	background-image: url(../graf/icoArrow.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	transition: all 0.2s ease;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
	transform: scale(-1);
	transition: all 0.2s ease;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

/* Dropdown */
.select2-dropdown {
    border: 1px solid #478675 !important;
    border-radius: 12px !important;
    margin-top: 2px !important;
	overflow: hidden;
}

/* Opcje w dropdown */
.select2-container--default .select2-results__option {
    padding: 12px 15px !important;
    font-size: 16px !important;
    transition: background-color 0.2s ease !important;
}

/* Hover na opcjach */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #f6f6f6 !important;
    color: #000 !important;
	font-weight: 400;
}

/* Opcja wybrana */
.select2-container--default .select2-results__option.select2-results__option--selected {
    background-color: #fff !important;
    color: #478675 !important;
	font-weight: 500;
}

.select2-container--default .select2-results__option.select2-results__option--selected[aria-selected] {
    background-color: #f6f6f6 !important;
}

/* Responsywność */
@media (max-width: 768px) {
    .select2-container--default .select2-selection--single {
        height: 45px !important;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 41px !important;
        font-size: 14px !important;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 41px !important;
    }
    
    .select2-container--default .select2-results__option {
        padding: 10px 12px !important;
        font-size: 14px !important;
    }
}

/* Integracja z Contact Form 7 */
.wpcf7-form-control-wrap .select2-container {
    display: block !important;
}

/* Dodatkowe klasy dla lepszego stylowania */
.wpcf7-select2-dropdown {
    z-index: 9999 !important;
}

/* Ukryj oryginalny select */
.wpcf7-select {
    display: none !important;
}

/* Stylowanie dla formularza */
.formRowSingle .select2-container {
    margin-top: 0;
}