.container {
    position: relative;
}

.input {
    font-family: "Public sans", sans-serif;
    background: none;
    border: 1px solid #bfbfbf;
    outline: none;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.dates {
    display: flex;
    font-size: 11px;
    padding: 0px 5px;
    font-weight: 300;
    min-width: 160px;
}
.dates p:nth-child(2) {
    margin: 0px 5px;
}
.icon {
    height: 32px;
    width: 32px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}
.chevron {
    height: 25px;
    width: 25px;
    margin-left: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendars {
    position: absolute;
    right: 0px;
    margin-top: 10px;
    z-index: 20;
    background: #fff;
    border: 1px solid #d0d0d0;
    box-shadow: 0px 0px 10px #e0e0e0;
    padding: 10px;
}
.calendars_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.form_control {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.form_control label {
    font-size: 12px;
    font-weight: 500;
    color: #333;
}

.form_control input {
    width: 55%;
    margin-left: 10px;
    border: 1px solid #bfbfbf;
    background: #efefef;
    padding: 0px 3px;
    height: 25px;
    font-size: 12px;
    font-family: "Public sans", sans-serif;
}

.cta {
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
}
.btn {
    font-family: "Public sans", sans-serif;
    margin-left: 10px;
    font-size: 11px;
    font-weight: 500;
    padding: 8px 10px;
    border: none;
    outline: none;
    background: #dfdfdf;
    border: 1px solid #a0a0a0;
    cursor: pointer;
}
