.form-control,
.form-select{
    /* background: #000; */
    background-color: transparent;
    color: #fff;
    border: 2px solid #575756;
    border-radius: 10px;
    outline: none;
    padding: 12px 15px;
    font-size: 16px;
    width: 100%;
    height: inherit;
}

.form-control:focus,
.form-select:focus{
    background-color: transparent;
    border: 2px solid #a8e863;
}
button[type=submit] {
    color: #fff;
}

.form_wh {
    margin: auto;
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form_wh .w-250{
    width: 250px;
}
@media  (max-width:768px) {
    .form_wh .w-250{
        width: 100% !important;
    }
}
.form_800_wh {
    margin: auto;
    width: 800px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form_step_page_wh {
    /* margin: auto; */
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.row_double_input_wh {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.lost_pwd {
    width: 100%;
    font-size: 13px;
    color: #fff;
    display: flex;
    justify-content: flex-end;
}
.goto_signup {
    width: 100%;
    font-weight: bold;
    color: #fff;
    display: flex;
    justify-content: center;
    gap: 5px;
}
.goto_signup a{
    font-weight: bold;
    text-decoration: none;
    color:#a8e863 !important;
}



.input_w250_wh {
    padding: 10px !important;
    width: 250px !important;
    background: transparent !important;
    color: #fff !important;
    border: 2px solid #575756 !important;
    outline: none !important;
    border-radius: 10px;
}

.input_w100_wh {
    padding: 10px !important;
    width: 100px !important;
    background: transparent !important;
    color: #a8e863 !important;
    border: 2px solid #575756 !important;
    outline: none !important;
    border-radius: 10px;
}

.input_container_wh {
    display: flex;
    position: relative;
}
.input_icon_wh {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}





.datepicker_wh {
    padding: 10px !important;
    width: 250px !important;
    background: #000 !important;
    color: #fff !important;
    border: 1px solid #333 !important;
    outline: none !important;
}

/* .datepicker_wh .input-group-append .input-group-text, .input-group-prepend {
    background: #000 !important;
    color: #fff !important;
    border: none;
} */
.datepicker_wh .input-group-append .input-group-text, .input-group-prepend .input-group-text {
    background: #000 !important;
    color: #fff !important;
    border: none;
    cursor: pointer;
}


.datepicker.datepicker-dropdown, .datepicker.datepicker-inline {
    background: #000 !important;
    color: #aaa !important;
}
.datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody td.day, .datepicker.datepicker-inline .datepicker-days table.table-condensed tbody td.day {
    color: #fff !important;
}
.datepicker.datepicker-dropdown .datepicker-days table.table-condensed tbody td.day, .datepicker.datepicker-inline .datepicker-days table.table-condensed tbody td.day:hover {
    color: #a8e863;
    background: transparent;
}





/* ////////////////////////////////////////////////////////////////////////////////////// */
/* ///////////////////////////////////////////////////////////////////////////////////////// */

.date-picker-wh {
	position: relative;
	/* width: 100%; */
	/* max-width: 320px; */
	/* height: 60px; */
	/* background-color: #FFF; */
	/* margin: 30px auto; */
	/* box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2); */

	cursor: pointer;
	user-select: none;
}

.date-picker-wh:hover {
	/* background-color: #F3F3F3; */
}

.date-picker-wh .selected-date-wh {
	width: 100%;
	height: 100%;

	display: flex;
	justify-content: center;
	align-items: center;

	color: #313131;
	font-size: 28px;
    font-size: 17px;
}

.date-picker-wh .dates_wh {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;

	/* background-color: #FFF; */
    background-color: #000;
}

.date-picker-wh .dates_wh.active {
	display: block;
}

.date-picker-wh .dates_wh .month_wh {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 2px solid #EEE;
}

.date-picker-wh .dates_wh .month_wh .arrows {
	width: 35px;
	height: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	/* color: #313131; */
    color: #fff;
	font-size: 20px;
}

.date-picker-wh .dates .month_wh .arrows:hover {
	background-color: #F3F3F3;
}

.date-picker-wh .dates .month_wh .arrows:active {
	background-color: #a8e863c0;
}

.date-picker-wh .dates_wh .days_wh {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	height: 200px;
}
.date-picker-wh .dates_wh .days_wh .day { 
	display: flex;
	justify-content: center;
	align-items: center;
	/* color: #313131; */
    color: #fff;
}
.date-picker-wh .dates_wh .days_wh .day:hover { 
    color: #a8e863;
}
.date-picker-wh .dates_wh .days_wh .day.selected {
	/* background-color: #00CA85; */
    background-color: #a8e863c0;
}



/* ///////////////////// DRAG N DROP //////////////////////////////////////////////// */
.dropzone {
    position: relative;
    /* position: absolute;
    top: 0;
    left: 0; */
    width: 100%;
    /* height: 100%; */
    /* background: cadetblue; */
    border-radius: 15px;
    border: 2px dashed #a8e863;
    cursor: pointer;
}
.droparea--over {
    background-color: #25118120;
}
.droparea__thumb {
    width: 100%;
    height: 100%;
    /* border-radius: 10px; */
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: #cccccc;
    background-size: cover;
    position: relative;
}
  
.droparea__thumb::after {
content: attr(data-label);
position: absolute;
bottom: 0;
left: 0;
width: 100%;
padding: 5px 0;
color: #ffffff;
background: rgba(0, 0, 0, 0.75);
font-size: 14px;
text-align: center;
}

/* =============================================== */
.droparea {
    position: relative;
}
.dragndrop_infos_wh {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
.dragndrop_infos_wh i {
    color: #a8e863 !important;
}
.dragndrop_input_text_wh {
    display: flex;
    color: white;
    font-weight: bold;
}
.dragndrop_input_text_wh a {
    text-decoration: none;
    color: #a8e863 !important;
    font-weight: bold;
}
/* ///////////////////////////////////////////////////////////////////// */