/**********************************
*   2. BLOG ARCHIVE
***********************************/

h1.blog-page-title {
    color: var(--white);
    font-weight: 700;
}

div.blog-archive {
    position: relative;
    margin-top: 1rem;
}

a.blog-archive-link:hover {
    text-decoration: unset;
}

div.blog-archive-card {
    margin-bottom: 2rem;
    border: unset;
}

h2.blog-archive-card-title,
h4.blog-archive-card-title {
    font-size: 1.2rem;
    color: var(--blue-gray-900);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

div.blog-card-badge {
    margin-bottom: 1rem;
    display: flex;
}

span.blog-archive-card-category {
    font-size: .9rem;
    padding: .25rem .75rem;
    color: var(--white);
    border-radius: .25rem;
    margin-right: .5rem;
}

span.maladie {
    background-color: var(--pink);
}

span.premiers-secours {
    background-color: var(--blue);
}

span.sante {
    background-color: var(--green);
}

span.symptomes {
    background-color: var(--yellow);
}

small.blog-archive-card-date {
    font-size: .9rem;
    color: var(--blue-gray-300);
}

div.next,
div.previous {
    display: none;
}

div.next span {
    margin-right: .5rem;
}

div.previous span {
    margin-left: .5rem;
}

@media (min-width: 768px) {
    div.next {
        display: flex;
        color: var(--blue-gray-600);
        justify-content: flex-start;
        margin-bottom: .5rem;
    }

    div.previous {
        display: flex;
        color: var(--blue-gray-600);
        justify-content: flex-end;
        margin-bottom: .5rem;
    }
}

/**********************************
*   3. BLOG POST
***********************************/

div.blog-post {
    margin: 3rem auto;
}

div.blog-post h2 {
    font-weight: 700;
}

div.blog-post .content h3 {
    font-weight: 600;
}

div.blog-post-card {
    padding: 2rem;
    position: sticky;
    top: 100px;
}

p.blog-post-card-title {
    font-weight: 700;
    text-align: center;
}

div.blog-post-card-body {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

div.blog-post-card-body:last-child {
    display: flex;
    flex-direction: column;
    margin-bottom: 0rem;
}

h3.blog-post-card-body-title {
    font-size: 1rem;
    text-align: center;
    font-weight: 400;
    margin: 0;
}

.main-btn {
    margin-right: 1rem;
}

a.blog-post-card-link {
    color: var(--gray-800);
}

a.blog-post-card-link i {
    color: var(--gray-800);
    opacity: .5;
}

a.blog-post-card-cta {
    color: var(--white);
    flex-grow: 1;
    border-radius: .25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    text-decoration: none;
}

a.blog-post-card-cta i {
    color: var(--white);
    font-size: 1rem;
    margin: 0;
    margin-right: .5rem;
}

/**********************************
*   4. BLOG POST COMPONENTS
***********************************/

a.blog-post-summary-title {
    display: flex;
    border: 1px solid #E0E0E0;
    padding: 2rem;
    font-weight: 700;
    font-size: 1.6rem;
    margin-top: 2rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

a.blog-post-summary-title i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

div.blog-post-summary-body {
    border-right: 1px solid #E0E0E0;
    border-left: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
    padding: 1rem;
    margin-bottom: 1rem;
}

div.blog-post-summary-body ol {
    margin: 0;
    padding-left: 0;
}

div.blog-post-summary-list li {
    margin-bottom: 1rem;
}

div.blog-post-summary-list li a.list-item-child {
    padding-left: 1rem;
}

div.blog-post-summary-list li:last-child {
    margin-bottom: unset;
}

div.blog-post-btn-group a.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gray-100);
    flex-grow: 1;
    height: 50px;
    margin-bottom: 1rem;
}

div.blog-post-btn-group a.btn i {
    margin-right: .5rem;
}

div.blog-post-card-group div.card {
    display: flex;
    justify-content: center;
    align-items: center;
}

div.blog-post-card-group div.card i {
    margin-top: 1rem;
    font-size: 2.5rem;
}

div.blog-post-accordion div.card-header {
    background-color: var(--blue-white);
    border: none;
}

div.blog-post-accordion div.card-body {
    border-top: 1px solid var(--gray-200);
}

div.blog-post-accordion button {
    font-weight: 600;
    color: var(--blue-gray-900);
    text-align: left;
}

div.blog-post-accordion .btn-link:active,
div.blog-post-accordion .btn-link:focus,
div.blog-post-accordion .btn-link:hover {
    color: var(--blue-gray-900);
    text-decoration: none;
}

ul.blog-post-list {
    padding-left: 40px;
}

ul.blog-post-list li {
    list-style-type: disc;
}

p.alert-primary-post {
    border-left: 4px solid #1E88E5;
    background: #E3F2FD;
    padding: .5rem;
}

p.alert-info-post {
    border-left: 4px solid #00ACC1;
    background: #E0F7FA;
    padding: 1rem;
}

p.alert-warning-post {
    border-left: 4px solid #FFB300;
    background: #FFF8E1;
    padding: 1rem;
}

/**********************************
*   5. BLOG POST COLOR
***********************************/

a.blog-post-summary-title {
    color: var(--blue-gray-900);
}

p.blog-post-card-title.premiers-secours {
    border-left: 4px solid var(--blue);
}

a.blog-post-card-cta.premiers-secours {
    background-color: var(--blue);
}

p.blog-post-card-title.maladie {
    border-left: 4px solid var(--pink);
}

a.blog-post-card-cta.maladie {
    background-color: var(--pink);
}

p.blog-post-card-title.sante {
    border-left: 4px solid var(--green);
}

a.blog-post-card-cta.sante {
    background-color: var(--green);
}

p.blog-post-card-title.symptomes {
    border-left: 4px solid var(--yellow);
}

a.blog-post-card-cta.symptomes {
    background-color: var(--yellow);
}

div.blog-post-btn-group a.btn.maladie {
    background-color: var(--pink-100);
}

div.blog-post-btn-group a.btn.sante {
    background-color: #4caf50;
}

div.blog-post-card-group i.maladie {
    color: var(--pink-100);
}

div.blog-post-card-group h3.maladie {
    color: var(--pink-200);
}

/**********************************
*   6. PAGE TEMPLATE | SERVICES
***********************************/

div.medical.subheader-container {
    display: flex;
    justify-content: center;
    height: 100%;
}

@media (min-width: 992px) {
    div.medical.subheader-container {
        justify-content: flex-start;
        align-items: center;
    }
}

div.medical.subheader-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
    height: auto;
}

.subheader-content {
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    div.medical.subheader-content {
        align-items: center;
    }
}

@media (min-width: 992px) {
    div.medical.subheader-content {
        align-items: flex-start;
        justify-content: center;
    }
}

h1.medical.page-title {
    text-align: center;
    margin-bottom: 1rem;
}

span.medical.page-subtitle {
    text-align: center;
}

a.medical.phone-btn.main-btn,
a.medical.map-btn.main-btn-outline {
    position: relative;
    margin-bottom: 1rem;
}

a.medical.phone-btn.main-btn,
a.medical.map-btn.main-btn-outline {
    position: relative;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {

    a.medical.phone-btn.main-btn,
    a.medical.map-btn.main-btn-outline {
        max-width: 268px;
    }
}

@media (min-width: 992px) {

    a.medical.phone-btn.main-btn,
    a.medical.map-btn.main-btn-outline {
        position: relative;
        top: 0;
    }
}

a.medical.card-service-link {
    text-decoration: none;
    color: #212529;
}

div.card-status
{
    display: flex;
    justify-content: flex-end;
}

div.card-status span {
    margin: 0;
    font-weight: 600;
    font-size: .9rem;
    padding: .25rem .75rem .25rem 1rem;
    border-radius: 20px 0 0 0;
}

div.card-status-new span {
    margin: 0;
    font-weight: 600;
    font-size: .9rem;
    padding: .25rem .75rem .25rem 1rem;
    border-radius: 20px;
}

div.card-status.blue span,
div.card-status-new.blue span
{
    background: #E1F5FE;
    color: #0288D1;
}

div.card-status-new.blue i {
    color: #0288D1;
    margin-bottom: 1rem;
}

div.card-status.purple span,
div.card-status-new.purple span
{
    background: #F3E5F5;
    color: #9C27B0;
}

div.card-status-new.purple i {
    color: #9C27B0;
    margin-bottom: 1rem;
}

div.card-status.green span,
div.card-status-new.green span {
    background: #E0F7FA;
    color: #0097A7;
}

div.card-status-new.green i {
    color: #0097A7;
}

div.medical.card {
    margin-bottom: 1rem;
    border-radius: .25rem 0 .25rem .25rem;
}

div.medical.card-title {
    display: flex;
    justify-content: space-between;
    margin: 0;
}

div.medical.card-body p {
    margin-bottom: .5rem;
}

div.medical.card-title i {
    font-size: 1.2rem;
    color: var(--quaternary);
    opacity: .5;
}

div.medical.card-title-content {
    display: flex;
    flex-direction: row;
    margin-bottom: .5rem;
}

div.medical.card-title-content i,
div.medical.card-title-content svg {
    font-size: 1.2rem;
    color: var(--quaternary);
    opacity: .5;
    margin-right: .5rem;
}

div.medical.card-title-content h2 {
    font-size: 1rem;
    margin-bottom: .5rem;
}

div.medical.card-body p {
    font-size: .9rem;
}

@media (min-width: 1200px) {
    div.medical.card-body p {
        font-size: 1rem;
    }
}

div.medical.page-content {
    margin-top: 1rem;
    margin-bottom: 0;
}

div.medical.page-content h3 {
    font-size: 1rem;
}

div.medical.page-content p {
    text-align: left;
}

div.medical.card-body-content p {
    padding-right: 1rem;
    font-size: .9rem;
    color: var(--blue-gray-600);
}

div.medical.card-body-content img {
    width: 120px;
    height: 120px;
}

div.medical.card-primary-img-container {
    display: flex;
    margin-bottom: .5rem;
}

div.medical.card-secondary-img-container {
    display: flex;
    justify-content: space-between;
}

div.medical.card-secondary-img-container img {
    width: 32.5%;
}

div.cross-medical-center {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

div.cross-medical-center a {
    /* border: 1px solid #00BCD4;
    color: #00BCD4; */
    border: 1px solid var(--mmf-turquoise-700);
    color: var(--mmf-turquoise-700);
    display: block;
    text-align: center;
    width: 100%;
    margin-bottom: .75rem;
    padding: .5rem;
    border-radius: .25rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    div.cross-medical-center a {
        /* border: 1px solid #00BCD4;
        color: #00BCD4; */
        display: block;
        text-align: center;
        width: 49%;
        margin-bottom: .75rem;
        padding: .5rem;
        border-radius: .25rem;
        font-size: 14px;
    }
}

div.cross-medical-center a:active,
div.cross-medical-center a:hover,
div.cross-medical-center a:focus {
    /* background-color: #00BCD4; */
    background-color: var(--mmf-turquoise-700);
    color: #FFF;
    text-decoration: none;
}

div.medical-center-button {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

div.medical-center-button a {
    text-align: center;
    width: 100%;
    margin-bottom: .75rem;
    padding: .5rem;
    border-radius: .25rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    div.medical-center-button a {
        text-align: center;
        width: 49%;
        margin-bottom: .75rem;
        padding: .5rem;
        border-radius: .25rem;
        font-size: 14px;
    }
}

/**********************************
*   7. PAGE TEMPLATE | DOCTOR-SINGLE
***********************************/

a.doctor-link {
    background: #00ACC1;
    border: 1px solid #00ACC1;
    color: #FFF;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

a.doctor-link i {
    color: inherit;
    margin: 0;
    padding-left: .5rem;
}

a.doctor-link:active,
a.doctor-link:focus,
a.doctor-link:hover {
    transition: .2s ease all;
    color: #FFF;
    box-shadow: 0 0 0 0.2rem rgba(0, 188, 212, .25);
}

a.doctolib {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    font-size: 1rem;
    flex-grow: 1;
    height: 50px;
    background: rgb(5, 150, 222);
    color: var(--white);
    width: 100%;
    max-height: 50px;
    text-decoration: none;
}

a.doctolib:hover {
    transition: .2s ease all;
    box-shadow: 0 0 0 0.2rem rgba(5, 150, 222, .25);
}

a.doctolib i {
    margin: 0;
    font-size: 1rem;
    color: #FFF;
    margin-left: .5rem;
}

/**********************************
*   8. PAGE TEMPLATE | DOCTOR-INDEX
***********************************/

#specialist-filter {
    padding: 2rem 15px 0rem 15px;
}

#specialist-filter .specialist-filter-content {
    background-color: var(--white);
    padding: 1rem;
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-200);
    flex-direction: column;
}

@media (min-width: 768px) {
    #specialist-filter .specialist-filter-content {
        flex-direction: row;
    }
}

#specialist-filter .specialist-filter-content label {
    margin-bottom: 0;
    margin-right: .5rem;
}

#specialist-filter .specialist-filter-content select {
    padding: .25rem;
    margin-right: .5rem;
    border-radius: 2px;
    border: 1px solid #E0E0E0;
    margin-top: 1rem;
    width: 100%;
}

@media (min-width: 768px) {
    #specialist-filter .specialist-filter-content select {
        width: unset;
        margin: unset;
    }
}

/* #specialist-filter .specialist-filter-content button {
    background: #00ACC1;
    border: 1px solid #00ACC1;
    color: #FFFFFF;
    padding: .25rem .5rem;
    border-radius: 2px;
    margin-top: 1rem;
    width: 100%;
    text-align: center;
    height: 40px;
} */

@media (min-width: 768px) {
    #specialist-filter .specialist-filter-content button {
        width: unset;
        text-align: unset;
        height: unset;
        margin-top: unset;
        margin-left: .5rem;
    }
}

#specialist-filter .specialist-filter-content button i {
    margin-right: .5rem;
}

div.doctor-index-card i {
    margin-bottom: 0;
}

i.fas.fa-phone-alt,
i.fas.fa-map-marker-alt,
i.far.fa-calendar-check,
i.far.fa-lightbulb {
    margin-bottom: 0;
}

i.fas.fa-phone-alt::before,
i.fas.fa-map-marker-alt::before,
i.far.fa-calendar-check::before,
i.far.fa-lightbulb::before {
    margin-right: .5rem;
}

i.far.fa-lightbulb {
    color: #856404;
}

div.doctor-index-card a {
    width: 100%;
    margin-bottom: .5rem;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
}

a.doctor-link-outline {
    background: transparent;
    border: 1px solid #00ACC1;
    color: #00ACC1;
}

a.doctor-link-outline:active,
a.doctor-link-outline:focus,
a.doctor-link-outline:hover {
    transition: .2s ease all;
    color: #00ACC1;
}

a.doctor-link:active,
a.doctor-link:focus,
a.doctor-link:hover {
    transition: .2s ease all;
    color: #FFF;
    box-shadow: 0 0 0 0.2rem rgba(0, 188, 212, .25);
}

#doctor h3 {
    background: #E0F7FA;
    color: #0097A7;
    margin: 0;
    font-weight: 600;
    font-size: .9rem;
    padding: .25rem .75rem .25rem 1rem;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 1.5rem;
}

/**********************************
*   9. PAGE TEMPLATE | EXAM
***********************************/

.page-template-exam div.column-float {
    position: sticky;
    top: 200px;
}

div.content :not(.card-body) p:nth-child(3) {
    margin-top: 2rem;
}

a.exam-post-summary-title {
    display: flex;
    border: 1px solid #E0E0E0;
    padding: 2rem;
    font-weight: 700;
    font-size: 1.6rem;
    text-decoration: none;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

a.exam-post-summary-title i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

div.exam-post-summary-body {
    border-right: 1px solid #E0E0E0;
    border-left: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
    padding: 1rem;
}

div.exam-post-summary-body ol {
    margin: 0;
    padding-left: 0;
}

div.exam-post-summary-list li {
    margin-bottom: 1rem;
}

div.exam-post-summary-list li:last-child {
    margin-bottom: unset;
}

h1.exam-page-title {
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 50px;
}

div.subheader-status {
    margin-bottom: 1rem;
}

div.subheader-status span {
    margin: 0;
    font-weight: 600;
    font-size: .9rem;
    padding: .25rem 1rem;
    border-radius: 20px;
}

div.subheader-status.blue span {
    background: #E1F5FE;
    color: #0288D1;
}

div.subheader-status.purple span {
    background: #F3E5F5;
    color: #9C27B0;
}

div.subheader-status.green span {
    background: #E0F7FA;
    color: #0097A7;
}

.page-template-exam h2 {
    margin-bottom: 1rem;
}

div.subheader-content h2,
div.subheader-content span.service-subtitle {
    display: flex;
    align-items: center;
    margin-right: .5rem;
}

.page-template-exam #breadcrumbs a,
.page-template-exam #breadcrumbs span {
    color: var(--gray-200);
}

.page-template-exam #breadcrumbs .breadcrumb_last,
.page-template-exam #breadcrumbs .breadcrumb_last {
    color: var(--white);
}

.page-template-exam .content h2 strong::before {
    background: #00BCD4;
    width: 32px;
    height: 2px;
}

.page-template-exam .card ul {
    padding-left: 1rem;
}

.page-template-exam .alert-info {
    border-left: 4px solid #00ACC1;
    background: #E0F7FA;
    padding: .5rem;
}

div.exam-post {
    margin: 3rem auto;
}

div.exam-post-card {
    padding: 2rem;
    background-color: var(--white);
}

div.exam-post-card h4 {
    font-weight: 600;
    font-size: 22px;
}

div.exam-post-card h3 {
    font-weight: 600;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
}

div.exam-post-card-body {
    margin-bottom: 1rem;
}

div.exam-post-card-body:last-child {
    display: flex;
    flex-direction: column;
    margin-bottom: 0rem;
}

a.exam-post-card-link {
    color: var(--gray-800);
    display: inline-block;
    font-size: 1rem;
    text-decoration: underline;
}

a.exam-post-card-link:active,
a.exam-post-card-link:focus,
a.exam-post-card-link:hover {
    color: var(--main);
    display: inline-block;
    font-size: 1rem;
    text-decoration: underline;
}

a.exam-post-card-cta {
    color: var(--white);
    flex-grow: 1;
    border-radius: .25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    text-decoration: none;
}

a.exam-post-card-cta i {
    color: var(--white);
    font-size: 1rem;
    margin: 0;
    margin-right: .5rem;
}

#sommaire ol,
#sommaire li a {
    color: var(--gray-800);
}

.exam-post-link-container {
    margin-top: 3rem;
}

.exam-post-link-container hr {
    margin-top: 0;
    margin-bottom: 1rem;
}

.exam-post-link-container h4 {
    font-size: 1rem;
}

.exam-post-link-container li a {
    color: var(--gray-800);
}

.exam-post-link-container li.active,
.exam-post-link-container li a.active {
    color: var(--main);
}

.exam-post-link-container li a:active,
.exam-post-link-container li a:focus,
.exam-post-link-container li a:hover {
    color: var(--main);
    transition: .2s ease all;
    text-decoration: none;
}

.exam-post-link-container li:active,
.exam-post-link-container li:focus,
.exam-post-link-container li:hover {
    color: var(--main);
    transition: .2s ease all;
}

.exam-post-link-container li a:active,
.exam-post-link-container li a:focus,
.exam-post-link-container li a:hover {
    color: var(--main);
    transition: .2s ease all;
    text-decoration: none;
}

/**********************************
*   9. RESERVATION
***********************************/

body.page-id-2248 #callcenter {
    position: relative; 
    overflow: hidden;
    z-index: 1;
}

body.page-id-2248 #callcenter .img-container-medical-house {
    position: absolute;
    bottom: 0px;
    right: 10px;
    z-index: -1;
}

body.page-id-2248 #callcenter .row {
    min-height: 500px;
}

body.page-id-2248 #footer .nav-brand-footer-container {
    flex-direction: column;
}

#cta-call-center p {
    text-align: center;
    margin-bottom: .5rem;
}

@media (min-width: 992px) {
    #cta-call-center p {
        text-align: left;
        margin-bottom: 0;
    }
}

/**********************************
*  10. VOS DROITS
***********************************/

body.page-id-2256 .img-container-medical-staff {
    bottom: -50px;
}

/**********************************
*   11. MOBILE-CTA
***********************************/

#mobile-shortcut {
    right: 25px;
    bottom: 25px;
    display: inline-block;
    position: fixed;
    width: 55px;
    height: 50px;
    border-radius: 35% 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

#mobile-shortcut i {
    color: #ffffff;
    font-size: 1.4rem;
    margin: 0;
}

#mobile-shortcut i.fas.fa-phone-alt::before {
    margin: 0;
}

#booking-shortcut {
    right: 25px;
    bottom: 90px;
    display: inline-block;
    position: fixed;
    width: 55px;
    height: 50px;
    border-radius: 35% 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    background-color: #00bcd4;
}

#booking-shortcut i {
    color: #ffffff;
    font-size: 1.4rem;
    margin: 0;
}

#mobile-container {
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    background: #FFF;
    top: 0;
    position: fixed;
    z-index: 998;
}

.mobile-content .header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-content .header p {
    font-weight: bold;
    margin-top: 1rem;
    font-size: 1.3rem;
    text-align: center;
}

.mobile-content .highlight {
    display: flex;
    width: 100%;
}

.mobile-content .highlight span {
    font-size: .8rem;
    background: #FFF8E1;
    color: #FFA000;
    margin: 0;
    padding: .1rem .4rem;
    border-radius: 10px;
    font-weight: 600;
}

.mobile-content {
    margin: 2rem;
}

.mobile-content .location {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.mobile-content .location span {
    margin: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.mobile-content .location .action a:active,
.mobile-content .location .action a:focus,
.mobile-content .location .action a:hover {
    color: #FFF;
    text-decoration: none;
}

.mobile-content .location .action {
    display: flex;
    height: 50px;
    justify-content: flex-end;
}

.mobile-content .location .fas.fa-phone-alt::before,
.mobile-content .location .fas.fa-map-marker-alt::before {
    margin: 0;
    font-size: 1.1rem;
}

.mobile-content .location .action .mobile-btn,
.mobile-content .location .action .map-btn {
    margin-left: 1rem;
}

.mobile-content .footer {
    display: flex;
    justify-content: center;
}

.mobile-content .footer img {
    margin-top: 1rem;
    width: 50%;
}

.mobile-btn {
    color: #FFF;
    width: 55px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .75rem;
    border-radius: 35% 10%;
}

.mobile-success {
    background-color: #00bda5;
}

.mobile-danger {
    background-color: #F44336;
}

.map {
    background-color: #00bcd4;
}

#mobile-container.slide-in {
    right: 0;
    transition: .35s;
}

#mobile-container.slide-out {
    right: -1000px;
    transition: .35s;
}

@media (min-width: 576px) {

    #mobile-shortcut,
    #booking-shortcut,
    #mobile-container {
        display: none;
    }
}