body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    background-color: rgb(245,245,245);
}

.bodyPage {
    padding: 0 !important;
    /*background-color: rgb(250,250,250);*/
}

main {
    flex: 1 0 auto;
}

nav ul li {
    padding: 0px !important;
}

.nav1 {
    color: white !important;
}

.nav2 {
    height: 100px;
    background-color: white;
}

.nav2 ul a {
    border-right: 1px lightgrey solid;
    border-left: 1px lightgrey solid;
}

.panel {
    background-color: white;
    margin-bottom: 20px !important;
}

.row {
    margin-bottom: 10px;
}


@keyframes menuEffect {
    0%   {width: 20%; margin-left:35%; opacity:0.2;}
    100%  {width: 100%; margin-left:0%; opacity:1;}
}

.activeMenuBottom {
    margin-left:0%;
    width: 100%;
    height: 3px;
    animation-name: menuEffect;
    animation-duration: 1s;
}

.activeMenuLeft {
    border-left-style: solid;
    border-left-width: 3px;
}

.slider img {
    opacity: 0.5;
    filter: alpha(opacity=50);
}

.slider .slides li .caption {
    padding: 10px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 5px;
}

.iconMenu {
    padding-top: 15px;
    height: 50px;
}

.iconMenu > i, .labelMenu {
    height: 50px;
}

/*.labelMenu {
    font-weight: bold;
}*/

.logo {
    padding-top: 15px;
    max-height: 80px;
    max-width: 240px;
}

.marginTopBottom {
    margin-top: 15px;
    margin-bottom: 15px;
}

.marginBottom {
    margin-bottom: 30px;
}

.paddingBottom {
    padding-bottom: 15px !important;
}

.input-field {
    margin-bottom: 15px;
    margin-top: 25px;
}

.input-field > label {
    padding-left: 5px;
}
/** pour les modification non encore faite pour les label des input text. **/
/*.input-field label {
    -webkit-transform: translateY(0) !important;
    transform: translateY(0) !important;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: flex;
}*/
.input-field > input[type=text] + label,
.input-field > .select-wrapper + label{
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: flex;
}

.input-field input[type=checkbox] + label {
    padding-left: 30px;
}

.input-field > input + label.active,
.input-field > input + ul + label.active,
.input-field > input:focus + label.active,
.input-field > textarea + label.active,
.input-field > textarea:focus + label.active,
.input-field > .select-wrapper + label.active {
    font-weight: bold !important;
    transform: translateY(-32px) scale(0.8) !important; /** anciennement 27px*/
    padding-left: 0px !important;
    width: 100%;
    /*color: rgb(58, 61, 63) !important;*/
}
.select-wrapper + label {
    top: 0px !important;
    font-size: 15px;
}

textarea.materialize-textarea {
    /*padding: .5em;*/
}

.input-field input[type=text],
.input-field input[type=text]:focus, 
.input-field input[type=text]:focus + label,
.input-field input[type=text]:focus + label.active,
.input-field textarea.materialize-textarea,
.select-wrapper input.select-dropdown:disabled,
.input-field textarea.materialize-textarea:focus {
    border: none !important;
    box-shadow: none !important;
    margin-bottom: 0;
}

.input-field input[type=text],
.input-field textarea.materialize-textarea {
    border-radius: 3px;
    padding-left: 5px;
    padding-right: 5px;
}

/*.input-field > input[type=text]:focus,
.input-field > textarea.materialize-textarea:focus {
    box-shadow: 0 0 0 0 #000;
}*/

.input-field input[type=text]:disabled,
.input-field textarea.materialize-textarea:disabled {
    color: rgba(0,0,0,0.7);
    background-color: rgba(0,0,0, 0.1);
}

.input-field input[type=file]{
    height: 100%;
}

.btn {
    padding-left: 10px !important;
    padding-right: 10px !important;
    margin-left: 10px;
    margin-right: 10px;
}

.select-wrapper + label {
    top: 0.8rem;
}

ul.dropdown-content {
    min-width: 150px;
}

ul.dropdown-content > li, ul.dropdown-content > li > a {
    color: white !important;
}


li.errorClass > i.fa, li.infoClass > i.fa {
    margin-right: 10px;
}

.errorClass, .infoClass {
    opacity: 1;
    animation: fadeInLeft 1s ease;
    padding: 5px;
    margin-bottom: 10px;
    border-radius: 3px;
    color: black;
    cursor: pointer;
    white-space: pre-wrap;
}

.errorClass {
    background-color: rgba(255, 0, 0 , 0.2);
}

.infoClass {
    background-color: rgba(0, 255, 0 , 0.2);
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.overflowHidden {
    overflow: hidden;
}

li.fadeOutRight {
    animation: fadeOutRight 1s ease;
    opacity: 0;
}

.lateralItemMenuIcon {
    margin: auto;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    color: white;
}

.lateralItemMenu {
    /*color: #104E9D;*/
    height: 50px;
    margin-bottom: 0px;
    opacity: 0.5;
}

a.lateralItemMenu {
    cursor: pointer;
}

.lateralMenu .col {
    padding: 0;
}

.lateralItemMenu:hover, .lateralItemMenu.active {
    opacity: 1 !important;
}

.lateralMenu {
    padding: 0px !important;
    margin-bottom: 20px;
}

@keyframes zoom {
    from {font-size: 1.4em;}
    to   {font-size: 1.8em;}
}

.lateralItemMenu svg {
    font-style: normal;
    font-size: 1.4em;
}

.lateralItemMenu.active svg {
    font-size: 1.8em;
}
.lateralItemMenu:hover svg {
    animation: zoom 0.5s ease;
    font-size: 1.8em;
}

.horizontalCenter {
    margin: auto;
}

.separatorLateralItemMenu {
    margin: auto;
    width: 1px;
    height: 40px;
}

.separatorLateralItemMenuNotVisible {
    height: 40px;
}

.noMargin {
    margin: 0;
}

.noPadding {
    padding: 0 !important;
}

.picker__close, .picker__today {
    padding: 0;
}

.material-tooltip {
    white-space: pre-wrap;
    text-align: left;
    padding-bottom: 25px;    
}

.collection > .collection-item.avatar {
    min-height: 60px !important;
}

.leftIconCollection {
    position: absolute;
    width: 42px;
    height: 42px;
    overflow: hidden;
    left: 15px;
    display: inline-block;
    vertical-align: middle;
}

.loader {
    width: 100%;
    height: 100%;
    position:fixed;
    z-index: 9997;
    /*display: none;*/
}

.test {
    position: absolute;
    left: 47%;
    top: 47%;
    z-index: 9998; 
    color: white;
}

.notSupported {
    width: 100%;
    height: 100%;
    position:fixed;
    z-index: 9999;
    background-color: white;
    display: none;
}

.subTitle {
    margin-left: 15px;
    padding: 5px 15px !important;
    font-size: 24px;
    color: white;
    border-radius: 1px 1px 7px 7px;
    margin-bottom: 10px;
}

.subTitleLeft {
    /*margin-left: 15px;*/
    padding: 5px 15px !important;
    font-size: 24px;
    color: white;
    border-radius: 1px 7px 7px 1px;
    margin-bottom: 15px;
    left: -12px;
    position: relative;
}

.subTitleAccessPage {
    font-size: 18px !important;
    border-radius: 2px;
}

.subTitleWithIcon {
}

span.subTitleWithIcon {
    /*margin-left: 8px;*/
    padding: 0 !important;
    border-radius: 1px 1px 7px 7px;
    margin-bottom: 10px;
    cursor: pointer;
    opacity: 0.5;
}

span.subTitleWithIcon:hover {
    opacity: 0.8;
}

span.subTitleWithIcon:not(.active) {
    font-size: 0.6em;
}

span.subTitleWithIcon.active {
    opacity: 1;
}

.customizeIcon {
    font-size: 1.8em !important;
}

span.subTitleWithIcon > .customizeIcon {
    position: inherit;
}

/*span.subTitleWithIcon.active > .title {

    font-size: 1.5em;
}*/

/*span.subTitleWithIcon.active {
    background-color: rgba(0,0,0,0);
}*/

span.subTitleWithIcon > .title {
    display: initial;
    position: relative;
    left: -10px;
    font-size: 1.5em;
    color: white;
}

.secondIcon::before {
    font-size: 0.5em !important;
    position: inherit !important;
    left: 52%;
    margin-top: 60%;
    line-height: 100% !important;
    width: 25%;
    border-radius: 50%;
}

span.subTitleWithIcon.active > .customizeIcon {
    animation: subTitleAnimationUp 0.5s ease;
    top: -25px;
    position: relative;
}

span.subTitleWithIcon:not(.active):hover > .customizeIcon {
    animation: subTitleAnimationUp2 0.5s ease;
    position: relative;
    top: -15px;
    opacity: 1;
}

span.subTitleWithIcon:not(.active) > .customizeIcon {
    animation: subTitleAnimationDown 0.8s ease;
    position: relative;
    opacity: 0.8;
    top: 0px;
}

@keyframes subTitleAnimationUp {
    from {top: 0px;}
    to   {top: -25px;}
}

@keyframes subTitleAnimationUp2 {
    from {top: 0px;}
    to   {top: -15px;}
}

@keyframes subTitleAnimationDown {
    from {top: -20px;}
    to   {top: 0px;}
}

i.imgBubble {
    right: 0px;
}

i.imgBubble > img {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 30%;
    padding: 5px;
    margin: 20px;
    z-index: 9999;
}

i.imgBubble:hover > img {
    opacity: 1;
    visibility: visible;
    animation: appear 0.6s ease;
}

.page-footer {
    padding-top: 0px !important;
}

.logoFooter {
    height: 60px;
}

.page-footer > .row {
    margin-bottom: 0px !important;
}

@keyframes appear {
    from {opacity: 0;}
    to   {opacity: 1;}
}

.smallText {
    font-size: 0.8em;
}

.navText {
    padding-top: 15px !important;
    font-size: 23px;
}

@media screen and (min-width: 992px) {
    .nav1 > div > ul, 
    .nav1 > div > ul > li,
    .nav1 > div > ul > li > a {
        height: inherit;
    }
}

@media screen and (max-width: 992px) {
    .nav2 {
        height: 60px;
    }
    .logo {
        padding-top: 0px;
        max-height: 60px;
        max-width: 170px;
    }
    .lateralItemMenuIcon {
        width: 45px !important;
        height: 45px !important;
    }
    .separatorLateralItemMenu {
        width: 90% !important;
        height: 1px !important;
        margin-top: 24px !important;
    }
    .imgNav2 {
        max-height: 40px !important;
        margin-top: 10px !important;
    }
    .navText {
        padding-top: 0px !important;
    }
}

@media screen and (max-width: 600px) {
    .nav-wrapper ul li a {
        height: 56px;
    }
    i.imgBubble:hover > img {
        left: 0;
    }
}

/*.declarationDesertion {
    display: none;
}*/

.star-rating {
    font-size: 0;
    white-space: nowrap;
    display: inline-block;
    width: 250px;
    height: 50px;
    overflow: hidden;
    position: relative;
    background: url('data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDIwIDIwIiB4bWw6c3BhY2U9InByZXNlcnZlIj48cG9seWdvbiBmaWxsPSIjREREREREIiBwb2ludHM9IjEwLDAgMTMuMDksNi41ODMgMjAsNy42MzkgMTUsMTIuNzY0IDE2LjE4LDIwIDEwLDE2LjU4MyAzLjgyLDIwIDUsMTIuNzY0IDAsNy42MzkgNi45MSw2LjU4MyAiLz48L3N2Zz4=');
    background-size: contain;
}
.star-rating i {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 20%;
    z-index: 1;
    background: url('data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDIwIDIwIiB4bWw6c3BhY2U9InByZXNlcnZlIj48cG9seWdvbiBmaWxsPSIjRkZERjg4IiBwb2ludHM9IjEwLDAgMTMuMDksNi41ODMgMjAsNy42MzkgMTUsMTIuNzY0IDE2LjE4LDIwIDEwLDE2LjU4MyAzLjgyLDIwIDUsMTIuNzY0IDAsNy42MzkgNi45MSw2LjU4MyAiLz48L3N2Zz4=');
    background-size: contain;
}
.star-rating input {
    -moz-appearance: none;
    -webkit-appearance: none;
    opacity: 0;
    display: inline-block;
    width: 20%;
    height: 100%;
    margin: 0;
    padding: 0;
    z-index: 2;
    position: relative;
}
.star-rating input:hover + i,
.star-rating input:checked + i {
    opacity: 1;
}
.star-rating i ~ i {
    width: 40%;
}
.star-rating i ~ i ~ i {
    width: 60%;
}
.star-rating i ~ i ~ i ~ i {
    width: 80%;
}
.star-rating i ~ i ~ i ~ i ~ i {
    width: 100%;
}
.choice {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 20px;
    display: block;
}

.star-rating > input {
    position: inherit !important;
    left: auto !important;
}

.icon-block {
    position:relative;
    padding: 0 15px;
}
/*.icon-block:hover {
    opacity: 0.4;
}*/
.infoBlock:hover > .icon-block {
    cursor: pointer;
    opacity: 0.4;
    box-shadow: 0 6px 10px 0 rgba(0,0,0,1),0 1px 18px 0 rgba(0,0,0,0.12),0 0px 10px -1px rgba(0,0,0,0.3);   
}

.infoBlock {
    position:relative;
    border-left-color: white;
    border-left-style: solid;
    border-left-width: 3px;
}

.infoBlock .more {
    display:none;
}

.infoBlock:hover .more {
    display:block;
}

.more {
    position: absolute;
    margin:auto;
    left: 0;
    right: 0;
    width: 34px;
    height: 34px;
    top:30%;
    cursor: pointer;
    font-size: 10px;
    border-radius: 50px;
    background-color: white;

}

.autocomplete-content {
    position: absolute;
    margin-top: auto;
}

.highlight {
    color: #2ed42e !important;
}

.pieceLabel {
    font-weight: bold;
}

hr {
    height:1px;
    background-color: #f3f3f3;
    border: 0;
}

.btnFile {
    margin-top: 5px;
}

.input-field.suffix i {
    height: 100%;
    position: absolute;
    width: 3rem;
    font-size: 25px;
    transition: color .2s;
    top: 0px;
    right: 0px;
    color: white;
    cursor: help;
    border-radius: 0 10px 10px 0;
}

.input-field.suffix > i::before {
    padding-top: 22%;
    padding-left: 22%;
    display: inline-block;
}

/*.input-field.suffix i.active {
  color: #26a69a;
}*/

.input-field.suffix input,
.input-field.suffix textarea {
    margin-right: 3rem;
    width: 92%;
    width: calc(100% - 3rem);
}

.input-field.suffix textarea {
    padding-top: .8rem;
}

.input-field.suffix label {
    margin-right: 3rem;
}

.input-field.suffix .caret {
    right: 3rem !important;
}

@media only screen and (max-width: 992px) {
    .input-field.suffix input {
        width: 86%;
        width: calc(100% - 3rem);
    }
}

@media only screen and (max-width: 600px) {
    .input-field.suffix input {
        width: 80%;
        width: calc(100% - 3rem);
    }
}

.highCol {
    margin-top: 30px;
}

.accessPanelTitle {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px;
}

.refundAmountInfo {
    margin-bottom: 20px;
    font-style: italic;
}

#frameRating { 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border:none;
    position: fixed;
    z-index: 999;
}

thead {
    font-weight: bold;
}

.collapsible-header.active {
    font-weight: bold;
}

.dropdown-content li > a > i {
    width: 0px !important;
}

.imgTitleStep {
    width: 280px;
}

.lineUser {
    border-top: 1px solid #bbbbbb;
    padding-top: 15px;
    padding-bottom: 10px;
    font-size: 17px;
    font-style: italic;
}

.borderedZone {
    border: 1px #dddddd solid;
    padding-right: 10px;
}

.contactDetailsIcons {
    padding-left: 20px;
}

#languageDiv {
    top: 64px !important;
}

.loginMessage {
    font-size: 1.0rem;
}

.pageTitle {
    line-height: 90%;
    margin-bottom: 0px !important;
}

.imgNav2 {
    max-height: 60px;
    margin-top: 18px;
}

.tooltipButton {
    background-color: #29a548;
}

.visitPanel {
    padding-bottom: 10px !important;
    padding-top: 10px !important;
    margin-bottom: 10px !important;
    border-bottom: 1px solid #e2e2e2;
    border-top: 1px solid #e2e2e2;
    background-color: white;
}

.visitPanelHome {
    padding-bottom: 10px !important;
    padding-top: 10px !important;
    margin-bottom: 10px !important;
}

.detailsLink {
    padding-top: 10px !important;
}

.blink_me {
    /*    -webkit-animation-name: blinker;
        -webkit-animation-duration: 1s;
        -webkit-animation-timing-function: linear;
        -webkit-animation-iteration-count: infinite;
    
        -moz-animation-name: blinker;
        -moz-animation-duration: 1s;
        -moz-animation-timing-function: linear;
        -moz-animation-iteration-count: infinite;*/

    animation-name: blinker;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/*@-moz-keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@-webkit-keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}*/

@keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

.digitalSignature {
    height: 800px;
    /*Ajout pour palier aux problème concernant IOS*/
    display: block; 
    overflow: scroll; 
    -webkit-overflow-scrolling: touch;
}

ul.dashed {
    list-style-type: none;
}

ul.dashed > li {
    margin-left: 5%;
}

ul.dashed > li:before {
    content: "-";
    margin-right: 5px;
}

.secondary-content {
    /*color: black;*/
    font-size: 25px;
}

.additionalInformation {
    font-style: italic;
    font-size: 85%;
}

span.iban > input {
    text-transform: uppercase;
}

.uppercase {
    text-transform: uppercase;
}

.input-field.error label, .input-field label.error {
    color: red !important;
}

.document:hover {
    background-color: lightgray;
}

.hiddenVisibility {
    visibility: hidden;
}

/*Custom du module de Suivi*/
.folderFollowUp {
    padding: 15px 30px 30px 30px;
}

.folderFollowUpTitle {
    padding-bottom: 15px;
}

.folderFollowUpTitleLabel {
    font-weight: 300;
}

.followStep > .stepTitle > .stepTitleLabel {
    padding: 5px;
    font-size: 18px;
    font-weight: 500;
}

.followStep > .stepTitle > .stepLabel {
    max-width: 70px !important;
    padding:5px;
}

.followStep {
    border-radius: 3px;
    webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
}

.followSubStep {
    padding: 5px;
}

/* TEST nouvelle page access*/
[id*='accessField'] {
    display: none;
}

[id*='accessTitle'] {
    cursor: pointer;
}

[id*='accessTitle'].active {
    cursor: default;
}

h1.referencing {
    font-weight: bold;
    font-size: inherit;
    margin: inherit;
    display: inline;
}

.arrowDown { 
    bottom: 20px;
    opacity: 0.5;
    height: 0px;
    position: relative; 
    margin: 0 auto; 
    text-align: center; 
}

.panel:hover .arrowDown {
    opacity: 0.8;
    animation: jump 2s infinite;
}

.iconTest {
    font-size: 26px;
}

@keyframes fadeInFromTop {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -75%, 0);
        transform: translate3d(0, -75%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeOutToTop {
    0% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -75%, 0);
        transform: translate3d(0, -75%, 0);
    }
}

@keyframes fadeOutToLeft {
    0% {
        opacity: 1;
        height: inherit;
        -webkit-transform: none;
        transform: none;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.z-depth-1 {
    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.04), 0 1px 5px 0 rgba(0,0,0,0.05), 0 3px 1px -2px rgba(0,0,0,0.05);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.04), 0 1px 5px 0 rgba(0,0,0,0.05), 0 3px 1px -2px rgba(0,0,0,0.05);
}

@keyframes translateToBottom {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes jump { 
    0% { 
        bottom: 25px; 
        opacity: 0.1;
    } 
    50% { 
        bottom: 18px; 
        opacity: 0.8;
    } 
    100% { 
        bottom: 25px; 
        opacity: 0.1;
    } 
}

/* ------------------ */
/* CUSTOM PAGE ACCESS */
/* ------------------ */

.accessPanel {
    padding: 20px;
}

.accessSubtitle {
    border-bottom: 2px solid #333333;
    font-size: 20px;
    font-weight: 300;
    padding-bottom: 10px !important;
}

.accessInfoSubtitle {
    border-bottom: 2px solid #333333;
    font-size: 24px;
    font-weight: 300;
    padding-bottom: 10px !important;
}

.col .row {
    margin-left: auto;
    margin-right: auto;
}

input.autocomplete + ul.autocomplete-content {
    top: 45px !important;
    max-height: 300px !important;
}