label.radio-inline {
    opacity: 1 !important;
    padding-top: 0px !important;
}

.label_type {
    margin-top: 0px !important;
}

legend {
    border-bottom: 1px solid #000;
    font-size: 14px;
    color: #3eb4b8;
    text-transform: none;
    border-bottom: 1px solid #3eb4b8;
}

.profile-info {
    margin-top: 10px;
}

.card_completed_modal .card-body {
    padding: 10px;
}

.card_completed_modal .card-body p {
    margin: 0;
}

a:focus {
    outline: none;
}

#loader .spinner {
    margin: 20% auto 20px;
    width: 40px;
    height: 40px;
    position: relative;
    text-align: center;

    -webkit-animation: rotate 2.0s infinite linear;
    animation: rotate 2.0s infinite linear;
}

#loader p {
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    width: 12%;
    margin: auto;
    border-radius: 10px;
    display: none;
}

.card-loader .spinner {
    left: 50% !important;
    top: 50% !important;
}

#loader .dot1, .dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #fff;
    border-radius: 100%;

    -webkit-animation: bounce 2.0s infinite ease-in-out;
    animation: bounce 2.0s infinite ease-in-out;
}

#loader .dot2 {
    top: auto;
    bottom: 0px;
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes bounce {
    0%, 100% {
        -webkit-transform: scale(0.0)
    }
    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes bounce {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }
    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    z-index: 5000;
}

.not-shown {
    display: none;
}

.logo-login {
    width: 375px;
    height: 97px;
    background: url(/assets/img/logo-nicebnb.png);
    background-repeat: no-repeat;
    margin-left: 30px;
}

.logo-layout {
    width: 216px;
    height: 57px;
    background: url(/assets/img/logo-nicebnb.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -10px;
}

a.menubar-toggle {
    display: none !important;
}

@media (max-width: 768px) {
    .logo-layout {
        width: 220px !important;
    }

    a.menubar-toggle {
        display: block !important;
    }

    .header-tel-vert {
        width: 45%;
    }
}
body.login {
    background: url(/assets/img/fond-login.jpg);
    background-size: cover;
}

body.login .card-body {
    background-color: white;
    border-radius: 14px;
}

.login-tel {
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -254px;
    margin-bottom: 10px;
}

.btn-circle {
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    line-height: 1.428571429;
    border-radius: 15px;
}
.btn-circle.btn-lg {
    width: 50px;
    height: 50px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 25px;
}
.btn-circle.btn-xl {
    width: 70px;
    height: 70px;
    padding: 10px 16px;
    font-size: 24px;
    line-height: 1.33;
    border-radius: 35px;
}
.glyphicon.fast-right-spinner {
    -webkit-animation: glyphicon-spin-r 1s infinite linear;
    animation: glyphicon-spin-r 1s infinite linear;
}

.glyphicon.normal-right-spinner {
    -webkit-animation: glyphicon-spin-r 2s infinite linear;
    animation: glyphicon-spin-r 2s infinite linear;
}

.glyphicon.slow-right-spinner {
    -webkit-animation: glyphicon-spin-r 3s infinite linear;
    animation: glyphicon-spin-r 3s infinite linear;
}

.glyphicon.fast-left-spinner {
    -webkit-animation: glyphicon-spin-l 1s infinite linear;
    animation: glyphicon-spin-l 1s infinite linear;
}

.glyphicon.normal-left-spinner {
    -webkit-animation: glyphicon-spin-l 2s infinite linear;
    animation: glyphicon-spin-l 2s infinite linear;
}

.glyphicon.slow-left-spinner {
    -webkit-animation: glyphicon-spin-l 3s infinite linear;
    animation: glyphicon-spin-l 3s infinite linear;
}

@-webkit-keyframes glyphicon-spin-r {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes glyphicon-spin-r {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@-webkit-keyframes glyphicon-spin-l {
    0% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes glyphicon-spin-l {
    0% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}