/*input[type="text"], select {
    background-color: #1b1b1b;
}*/

label {
    font-weight: 500;
}

input, select {
    background-color: #1b1b1b !important;
    border: none !important;
    color: #eee !important;
}

.button {
    display: block;
    padding: 12px 40px;
    /*background-color: #1b1b1b;*/
    border: 1px #1b1b1b solid;
    border-radius: 15px;
    color: #ccc;
    cursor: pointer;
    text-align: center;
}
.button:hover {
    text-decoration: none;
    color: #ccc;
}

.button.active,
.button.active:hover {
    background-color: #00ff88;
    border: 1px #00ff88 solid;
    color: #1b1b1b;
    font-weigt: 600;
}

/*.flag-select option {
    padding-left: 25px;
    background-repeat: no-repeat;
    background-position: 5px center;
}

.flag-select option[value="br"] {
    background-image: url("flags/br.png");
}
.flag-select option[value="us"] {
    background-image: url("flags/us.png");
}
.flag-select option[value="jp"] {
    background-image: url("flags/jp.png");
}*/
























.custom-select {
/*    display: table;*/
    width: 100%;
    position: relative;
    cursor: pointer;
    /*border-radius: 15px;*/
}

.custom-select .selected {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    display: block;
    /*background-color: #1b1b1b;*/
    color: #ccc;
    cursor: pointer;
    border: 1px solid #1b1b1b;
}

.custom-select img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.custom-select .glyphicon {
    float: right;
    margin-top: 5px;
    margin-right: 5px;
    font-size: 12px;
    font-weight: 500;
}

.custom-select .options {
    display: none;
    position: absolute;
    width: 100%;
    /*background-color: #1b1b1b;*/
    color: #ccc;
    cursor: pointer;
    border: 1px solid #1b1b1b;
    margin-top: 4px;
    z-index: 10;
    background-color: #0f0f0f !important;
}

.custom-select .options div {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
}

.custom-select .options div:hover {
    /*background: #1b1b1b;*/
}





.select-input {
    display: block;
    width: 100%;
    /*background-color: #1b1b1b;*/
    /*border-radius: 15px 15px 0 0;*/
    /*border-radius: 15px;*/
}

.select-input .custom-select  .selected {
    border-radius: 15px 15px 0 0;
}

.select-input input {
    border: 1px solid #1b1b1b !important;
    background-color: #0f0f0f !important;
    border-radius: 0 0 15px 15px;
}



