div.input-container {
    position: relative;
    display: flex;
    margin-bottom: 12px;
    gap: 12px;
}

input,select {
    padding: 12px;
    border: 1px solid #d3d3d3;
    font-size: 16px;
    border-radius: 10px;
    outline: none;
}
input {
    width: 100%;
}
select {
    width: 40%;
}
input:hover,select:hover {
    border-color: #353535;
}
input:focus:not(:hover),select:focus:not(:hover) {
    border-color: #212121;
}
div.toggle-buttons {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
    gap: 10px;
}
div.toggle-buttons button {
    height: 40px;
    font-size: 14px;
    padding: 0 14px;
    border: 0;
    outline: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    svg {
        height: 16px;
        width: 16px;
        display: flex;
        overflow: visible;
    }
}
div.toggle-buttons button:nth-child(1) {
    width: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color-30);
    cursor: pointer;
    &:hover {
        transition: all 250ms ease-in-out;
        background-color: var(--secondary-color);

        & svg {
            fill: #fff;
        }
    }
}
div.toggle-buttons button:nth-child(2) {
    min-width: 180px;
    max-width: 280px;
    /*background-color: #8611c0;*/
    background-color: var(--primary-color);
    color: #fff;
    opacity: 0.9;
}
div.toggle-buttons button:nth-child(2).active {
    opacity: 1;
    cursor: pointer;
}
div.toggle-buttons button:nth-child(2).active:hover {
    opacity: 0.8;
}