<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*css file for the date splitter of cp.youdge.com */

/* ---- start to small device --- */

/* first, equivalent section  */
/*.date-splitter {}*/
.date-splitter {
    background-color: #fff;
    border-radius: 20px;
}
/* second, div before label */
.date-before-label {
    padding-top: 15px;
}

/* third, div after the label */
.container-dates {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
    /*border: 2px solid greenyellow; delete after validation */
}
.container-dates{
    justify-content: left!important;
}
/* day, month and year */
.date-splitter-day,
.date-splitter-month,
.date-splitter-year {
    padding-left: 0;
    padding-right: 0;
    max-width: 232px;
    min-width: 105px;
    width: 100%;
}

/* refonte input select */
.select2 {    
    cursor: pointer;
    color: #000000;
    font-size: 16px;
    padding: 4px 16px;
    background-color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid #c6c6c6;
    max-width: 232px;
}

/* fix color */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000000;
}

/* fix interior */
.select2-container--default .select2-selection--single {
    border: none;
    border-radius: 0;
    background: none !important;
}

/* arrow css */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 30px;
    position: absolute;
    top: 3px;
    right: 0px;
    width: 30px;
    margin-right: 5%;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0;
}
</pre></body></html>