body {
    margin-top: 0;
    background: #d1cece;
}

header:before {
    content: "";
    display:none;
}

#swagger-ui.api-platform .information-container.wrapper {
    margin-bottom:0
}

.swagger-ui section.models {
    background:#fff;
}

h2.title::after{
    content: url('/img/avaibook-by-idealista.png');
    float:right;
}

.swagger-ui .scheme-container{margin-bottom:10px !important; padding: 5px !important;}

header .swagger-ui .scheme-container .btn.authorize{display:none}

#swagger-ui.api-platform .opblock-tag:hover {
    background-color: hsla(0, 22%, 97%, 1);
    transform: scale(1.03);
    /* text-align: center; */
    padding-left: 1em;
}


.swagger-ui .authorization__btn{
    border:1px solid #b90505;
    color: #b90505;
    border-radius: 4px;
    margin-right:2px;
}

.swagger-ui .authorization__btn svg{
    fill: #b90505;
}

.swagger-ui .authorization__btn.locked{
    border:1px solid #0c6b3d;
    color:#0c6b3d;
}

.swagger-ui .authorization__btn.locked svg{
    fill: #0c6b3d;
}


.swagger-ui .authorization__btn::before{
    content:'Auth';
    position:relative;
    top:-2px;
}



/**
INFO PAGE
*/

#swagger-ui .information-container {
    background: -webkit-linear-gradient(60deg, rgba(26,179,148,1) 0%, rgb(255, 255, 255) 100%) ;
    background: -moz-linear-gradient(60deg, rgba(26,179,148,1) 0%, rgb(255, 255, 255) 100%) ;
    background: -ms-linear-gradient(60deg, rgba(26,179,148,1) 0%, rgb(255, 255, 255) 100%) ;
    background: -o-linear-gradient(60deg, rgba(26,179,148,1) 0%, rgb(255, 255, 255) 100%) ;
    background: linear-gradient(60deg, rgba(26,179,148,1) 0%, rgb(255, 255, 255) 100%) ;
}

#swagger-ui .information-container .info {
    max-width: 100%;
    padding: 0px 15px;
}

#swagger-ui .information-container h2.title  {
    color: #fff !important;
}
#swagger-ui .information-container h2.title span  {
    color: #666666 !important;
}

#swagger-ui .information-container small  {
    background: #fff !important;
}

#swagger-ui .information-container small pre  {
    color: #666666 !important;
}



.infopage.container {
    margin: auto;
    height: 100%;
    color: #666666;
    display: flex;
    width: 100%;
}

.infopage > section {
    background: #fff;
    padding: 15px;
}

.infopage > .sidebar {
    float: left;
    min-height: 100vh;
    width: 20%;
    background-color: #f8f8f8;
    border-right: 1px solid #ccc;
}

.infopage > .sidebar > .sidebar-content {
    position: -webkit-sticky;
    position: sticky;
    top: 15px;
    bottom:0px;
}

.infopage > .sidebar > .sidebar-content b.title {
    margin-top:20px;
}

.infopage > .content {
    float: left;
    width: 80%;
    padding: 15px;
    padding-bottom: 600px;
}

.infopage > .content p, .infopage > .content li {
    line-height: 1.2em;
}

.infopage > .content img{
    border: 1px solid #ccc;
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.infopage > .sidebar a  {
    text-decoration: none;
    color: #666666;
}

.infopage > .sidebar a.active  {
    font-weight: bold;
    border-left: 5px solid #1ab394;
    padding-left: 5px;
}

.infopage > .sidebar a:hover  {
    border-left: 5px solid #1ab394;
    padding-left: 5px;
}

.infopage > .sidebar ul {
    list-style-type: none;
    padding-inline-start: 0px;
}

.infopage > .sidebar ul li {
    padding: 3px 0px;
}

.infopage h1 {
    margin-top:20px;
}

.infopage h1, .infopage h2 {
    color: #1ab394;
}

.infopage > .content a {
    color: #1ab394;
}

/** Burger menu **/
.burger-menu-div {
    display: none;
    background: #f8f8f8;
    border-bottom:1px solid #ccc;
}
.burger-menu {
    display: block;
    width: 50px;
    height: 50px;
    position: relative;
    background: #fff;
    margin-left: 15px;
}
.burger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    margin-top: 8px;
    background: #000;
}
.burger-menu span:first-child {
    margin-top: 0;
}
.burger-menu .lines,
.burger-menu .crossed {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.burger-menu .crossed {
    display: none;
}
.burger-menu .lines {
    display: block;
}
.burger-menu.active .crossed {
    display: block;
}
.burger-menu.active .lines {
    display: none;
}
.burger-menu.active .crossed span {
    position:absolute;
    margin: 0;
    width: 100%;
}
.burger-menu.active .crossed span:first-child {
    -moz-transform: rotateZ(45deg);
    -webkit-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}
.burger-menu.active .crossed span:last-child {
    -moz-transform: rotateZ(-45deg);
    -ms-transform: rotateZ(-45deg);
    -webkit-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg);
}

@media (max-width: 768px) {

    .burger-menu-div {
        display: block;
    }

    .sidebar {
        display: none !important;
    }

    .content {
        width: 100% !important;
    }
    .sidebar.visible-mobile {
        display: inline-block !important;
        width: 100%;
    }
    .content.hide-mobile {
        display: none !important;
    }

    .swagger-ui .info .title {
        font-size: 28px;
    }
    h2.title::after {
        transform: scale(.9);
        float: right;
    }

}

@media (max-width: 414px) {
    .swagger-ui .info .title {
        font-size: 20px;
    }
    h2.title::after {
        transform: scale(.8);
        float: right;
    }
}

/**
* Changelog styles.
 */
section.changelog-content-wrapper h1 {
  border-bottom: 1px solid #1ab394;
}

div.changelog-content {
  padding-bottom: 10px;
}

h2.changelog-title {
  color: #666666 !important;
}

.changelog-content-title a {
  text-decoration: none;
}

#changelog-item-search {
  padding-top: 20px;
}
