.olx-checkbox-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    gap: 12px;
    margin-left: 2px;
}

.olx-checkbox-container input[type="checkbox"] {
    display: none;
}

.olx-checkbox-container .olx-fake-input {
    width: 20px;
    height: 20px;
    background: #FAFAFA;
    border: 1px solid #FFCD00;
    border-radius: 6px;
    position: relative;
}

/* Checkmark indicator */
.olx-checkbox-container .olx-fake-input:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Show the checkmark when checked */
.olx-checkbox-container input[type="checkbox"]:checked ~ .olx-fake-input:after {
    display: block;
}

/* Different background when checkbox checked */
.olx-checkbox-container input[type="checkbox"]:checked ~ .olx-fake-input {
    background: #FFCD00;
}

.olx-checkbox-container .olx-checkbox-text {
    font-family: 'Roboto400';
    font-style: normal;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.171429px;
    color: #484848;
}