#api-examples .form-control {
    border-radius: 3px;
    font-size: 14px;
    min-height: 40px;
}
#api-examples input.form-control {
    border: solid 1px rgba(0, 20, 40, 0.1);
}
#api-examples label {
    color: rgba(0, 20, 40, 0.6);
    font-size: 12px;
    margin-bottom: 7px;
}
.styled-select {
    position:relative;
    border-radius: 3px;
    border: solid 1px rgba(0, 20, 40, 0.1);
    overflow:hidden;
    display:block;
    margin:auto;
    font-size:1em;
    background: #fff;
}
.styled-select select {
    width:100%;
    font-size: .9em;
    margin: 0;
    /*IE Fallback*/
    background: rgb(0, 0, 27);
    background: rgba(0, 0, 27, 0);
    color: rgba(0, 20, 40, 0.87);
    border:none;
    /*csslint outline-none: false*/
    outline:none;
    display: inline-block;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    cursor:pointer;
}
.styled-select select option {
    background-color: #fff;
}
.styled-select .select-button {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    right:10px;
    top:0;
    position:absolute;
    pointer-events:none;
    height: 40px;
    width: 2em;
    text-align: right;
    line-height: 40px;
    color: rgba(0, 20, 40, 0.6);
}
.styled-select .select-button::before {
    content: "\f107";
}
.styled-select .select-button .select-button-text {
    color: #fff;
    line-height: 1.8em;
    text-align: center;
    display: block;
}
.styled-select .select-button .select-button-text span {
    font-size: 1em;
}
.small-arrow-down {
    width: 0;
    height: 0;
    border-left: .4em solid transparent;
    border-right: .4em solid transparent;
    border-top: .4em solid #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.code-wrap {
    position: relative;
    background-color: rgba(0, 20, 40, 0.87);
    margin-top: 28px;
    height: 383px;
    border-radius: 8px;
    overflow: hidden;
}
.code-wrap .circle-blue-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 4;
}
.code-wrap pre {
    height: 100%;
    padding: 20px;
    overflow: auto;
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
}
#api-examples textarea {
    resize: none;
}
.circle-blue-btn {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    border-radius: 12px;
    background-color: #0082e6;
    font-size: 10px;
    font-weight: 600;
    border: none;
}
.circle-blue-btn:hover, .circle-blue-btn:focus {
    color: #000000;
    background-color: #0082e6;
}
