﻿/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 50%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#error {
    display: none;
    color: crimson;
    text-align: center;
}

.container input[type=text], input[type=password] {
    width: 99%;
    padding: 12px;
    margin: 8px 50px 5px 5px !important;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.container button {
    margin-top: 5px;
    padding: 8px 20px;
    width: 100%;
}

.container {
    padding: 16px;
}

#input_baseUrl {
    margin-top: 5px !important;
    width: 300px !important;
}

.swagger-section #header {
    background-color: #14335f !important;
}

ul.options {
    width: 45% !important;
}

h3 {
    width: 50% !important;
    font-family: "MuseoSans500", Helvetica, sans-serif !important;
}

.logButton {
    display: block;
    text-decoration: none;
    font-weight: bold;
    padding: 6px 8px;
    font-size: 0.9em;
    color: white;
    background-color: #547f00;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.logo__img {
    border-right-width: 2px !important;
    border-right-style: solid !important;
    border-right-color: rgb(255, 255, 255) !important;
    display: block;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 106px; /* Width of new image */
    height: 20px; /* Height of new image */
    padding-right: 10px;
    margin-top: 7px !important;
}

.logo__title {
    font-family: MuseoSans300;
    font-weight: normal !important;
}

.info_title {
    font-family: MuseoSans300;
    font-weight: normal !important;
    font-size: 16px !important;
}

.badge {
    font-weight: normal !important;
    font-family: MuseoSans500, sans-serif !important;
    background-color: #00A1E0;
    color: #FFF;
    border-radius: 4px;
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    line-height: 1;
    vertical-align: baseline;
    white-space: nowrap;
    text-align: center;
}

.badge-red {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    background: #ed1c24;
}

.heading h2{
    width: 50%;
}

h2 p {
    font-weight: normal !important;
    font-size: 0.8em !important;
}

#message-bar {
    min-height: 0px !important;
}

.info_description {
    padding-bottom: 0px !important;
}

/* All this is just to override the font to force it to be this */
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading ul.options li a .markdown p {
    font-family: "MuseoSans500", Helvetica, sans-serif !important;
    line-height: 1.5;
}

h2 {
    font-family: "MuseoSans500", Helvetica, sans-serif !important;
}

/* Add Zoom Animation */
.animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
    from {
        -webkit-transform: scale(0)
    }

    to {
        -webkit-transform: scale(1)
    }
}

@keyframes animatezoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}