body {
    background-color: #141414;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
}

.btn-primary {
    display: inline-block;
    padding: 10px;
    border-radius: 25px;
    color: white;
    min-width: 200px;
    max-width: 300px;
    text-align: center;
    background-color: #333;
    font-size: 12px;
    border: 0;
}

.btn-primary:hover {
    background-color: #ffd100!important;
    color: white;
}

.btn-primary:active {
    background-color: #ffd100!important;
    color: white;
}


.btn.active {
    background-color: #ffd100!important;
    color: white;
}

.info-circle {
    cursor: pointer;
    filter: invert();
    height: 20px;
}

.special-color {
    color: #ffd100;
}

input[type="radio"] {
    display: none;
}

.searchResults {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    max-height: 200px;
    overflow-y: auto;
    border: none;
    border-top: none;
    border-radius: 0px;
    z-index: 1000;
}

.result {
    padding-left: 15px;
    display: block;
    color: black;
    background-color: white;
    text-align: left;
    transition: all 0.15s ease-in-out;
}

.result:hover {
    background-color: #f2f2f2;
    cursor: pointer !important;
}

.form-control {
    border-radius: 4px;
    width: 100%;
    height: 50px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.form-group {
    margin-bottom: 25px;
}