/* Hide login and authorize buttons */
.swagger-ui .auth-wrapper .divider {
    display: none !important;
}

/* Highlight our custom examples */
.swagger-ui .markdown code {
    padding: 2px 5px;
    font-style: italic;
    border-radius: 2px;
}
.swagger-ui .markdown code {
    background: lightgoldenrodyellow;
}
.swagger-ui .markdown em code {
    background: rgba(0, 0, 0, 0.1);
}
.swagger-ui .markdown strong em code {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-style: italic;
}
.swagger-ui .markdown strong code {
    background: rgba(0, 0, 0, 0.1);
    font-style: normal;
}
.swagger-ui .markdown em strong code {
    background: #61affe;
    color: #fff;
}

/* Hide Example: <example> */
.swagger-ui tr .parameters-col_description .markdown:not(:first-of-type) {
    display: none;
}

.swagger-ui .model-box span[style="color: red;"] {
    display: none;
}

.swagger-ui .prop-enum br {
    display: none;
}

.swagger-ui .prop-enum span {
    background: lightgoldenrodyellow;
    font-style: italic;
    color: #9012fe;
}
.swagger-ui .prop-enum span.model-toggle {
    background: none !important;
}

.swagger-ui .parameters-col_description input[type=text] {
    margin: -5px 0 5px !important;
    background: #fff;
}

.swagger-ui .parameters-col_description ::-webkit-input-placeholder { /* WebKit browsers */
    color:    #fff;
}
.swagger-ui .parameters-col_description :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #fff;
   opacity:  1;
}
.swagger-ui .parameters-col_description ::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #fff;
   opacity:  1;
}
.swagger-ui .parameters-col_description :-ms-input-placeholder { /* Internet Explorer 10+ */
   color:    #fff;
}

.swagger-ui .parameters-col_description select {
    width: 100%;
    max-width: 340px;
    padding: 9px 40px 9px 10px;
    margin-top: 10px;
    border: 1px solid #d9d9d9;
    box-shadow: none;
    background-color: #fff;
}
.swagger-ui span.prop-type-delimiter {
    color: #bbb;
}
.swagger-ui .parameters select[multiple] {
    background: #f7f7f7 url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M13.418 7.859a.695.695 0 01.978 0 .68.68 0 010 .969l-3.908 3.83a.697.697 0 01-.979 0l-3.908-3.83a.68.68 0 010-.969.695.695 0 01.978 0L10 11l3.418-3.141z"/></svg>') right 10px center no-repeat;
    background-size: auto 20px;
    overflow-y: hidden;
    height: 36px;
}
.swagger-ui .parameters select[multiple] option:first-child {
    height: 36px;
}
.swagger-ui .parameters select[multiple].expanded {
    background: #f7f7f7;
    overflow-y: auto;
    height: 102px;
}
.swagger-ui .parameters select[multiple].expanded option:first-child {
    height: auto;
}
