input[type=checkbox] {
    position: relative;
    border: 1px solid #515151;
    border-radius: 5px;
    background: none;
    cursor: pointer;
    line-height: 0;
    margin: 0 .6em 0 0;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 20px;
    width: 20px;
    -webkit-appearance: none;
    appearance: none;
    opacity: .5;
}

input[type=checkbox]:hover {
    opacity: 1;
}

input[type=checkbox]:checked {
    background-color: #ed0676;
    border-color: #ed0676;
    opacity: 1;
}

input[type=checkbox]:before {
    content: '';
    position: absolute;
    right: 50%;
    top: 50%;
    width: 4px;
    height: 10px;
    border: solid #FFF;
    border-width: 0 2px 2px 0;
    margin: -1px -1px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
}

input[type=file]:focus, input[type=radio]:focus, input[type=checkbox]:focus {
    outline: none;
}

input[type=radio] {
    position: relative;
    border: 1px solid #515151;
    border-radius: 50%;
    background: none;
    cursor: pointer;
    line-height: 0;
    margin: 0 .4em 0 0;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 22px;
    width: 22px;
    -webkit-appearance: none;
    appearance: none;
    opacity: .5;
}

input[type=radio]:hover {
    opacity: 1;
}

input[type=radio]:checked {
    background-color: #ed0676;
    border-color: #ed0676;
    opacity: 1;
}

input[type=radio]:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FFF;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: none;
}

input[type=radio]:checked:before {
    display: block;
}

.btn-group-notification .btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

.repeat-section input[type=checkbox] {
    top: 5px;
    left: 5px;
}

.repeat-section input[type=checkbox]:before {
    content: '';
    position: unset;
}

.btn-success {
    background-color: #ed0676;
    color: #fff;
}

.btn-danger {
    background-color: #515151;
    color: #fff;
}

.form-control:focus{
    box-shadow: 0 0 0 0.3rem rgb(237 6 118 / 25%);
    border-color: rgb(237 6 118 / 40%);
}

.btn.form-control:focus{
    color: #fff;
}

.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open>.dropdown-toggle.btn-success {
    background-color: #ed0676 !important;
}

.btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open>.dropdown-toggle.btn-danger {
    background-color: #515151 !important;
}

.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success, .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success {
    background-color: #ed0676 !important;
}

.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger, .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger {
    background-color: #515151 !important;
}

.checkboxContainer input {
    border: none;
}

.label-success, .label-info {
    background-color: #ed0676;
}

.label-danger, .label-warning {
    background-color: #515151;
}

.grid.simple .alert-warning {
    background-color: #ed0676;
    color: #fff;
}
.tooltip {
    word-break: break-word;
    word-wrap: break-word;
    width: auto;
}
.create-location-form .form-group label{
    font-weight: normal;
    font-size: 14px;
    line-height: normal;
    color: #4A535E;
    margin: 3px 0 0px 0px;
}
.create-location-form .form-group .form-control{
    border: 1px solid #E1E1E1;
    border-radius: 0;
    padding: 10px;
    box-shadow: none !important;
    height: auto;
    font-size: 14px;
}
.create-location-form .default-dropdown-container .dropdown-arrow-icon{
    top: 18px;
}