/*Estilos de los componentes de Blitz*/

::-moz-selection {
    color: #fff;
    text-shadow: none;
    background: rgba(91, 186, 71, 0.95)
}

::selection {
    color: #fff;
    text-shadow: none;
    background: rgba(91, 186, 71, 0.95);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'museo', serif;
}

h1 {
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(91, 186, 71, 1);
    margin-bottom: 2rem
}

section h1 {
    font-size: 1.6rem;
}

h1.bar:after {
    content: ' ';
    display: block;
    border-bottom: 3px solid rgb(38, 52, 71);
    width: 30px;
    padding-top: 7px;
}

h2 {
    color: rgb(38, 52, 71);
    font-size: 1.5rem;
    font-weight: 900;
    margin-top: 10px;
    margin-bottom: 2px;
}

h3 {
    color: rgb(38, 52, 71);
    font-size: 0.80rem;
    font-weight: 900;
    margin-top: 7px;
    margin-bottom: 10px;
}

h6 {
    color: #5bba47;
    font-size: 1rem;
    line-height: 120%;
    margin-bottom: 10px;
}

a {
    color: #8ea50b;
    text-decoration: none;
    transition: all 0.15s ease-in-out;
    -moz-transition: all 0.15s ease-in-out;
    -webkit-transition: all 0.15s ease-in-out;
}

a.text-danger {
    font-family: 'museo-slab', sans-serif;
    font-weight: 700;
    color: #ef3d31 !important;
    content: '';
    padding-bottom: 5px;
    border-bottom: 1px solid #ef3d31;
}

a:hover {
    color: #c3daaa;
    text-decoration: none;
}

body {
    background-color: rgb(255, 242, 234);
    font-family: 'basic-sans', serif;
    margin-top: 110px;
    margin-bottom: 50px
}

body.login {
    margin-top: 0px;
}

.element-box {
    border-radius: 6px;
    background-color: #fff;
}

.card {
    border-radius: .5rem;
    border: 0px
}

.blitz-shadow {
    -webkit-box-shadow: 1px 1px 5px rgba(239, 212, 211, 0.8);
    box-shadow: 1px 1px 5px rgba(239, 212, 211, 0.8);
}

.navbar {
    background: url(../img/bg-white.jpg) repeat-x top left;
    padding: 0 !important;
    margin: 30px;
    position: sticky;
}

.navbar-brand {
    background-color: rgb(91, 186, 71);
    width: 160px;
}

.icon-login {
    width: 18px;
    margin-right: 10px;
}

.dropdown-menu {
    padding: .5rem;
    background-color: #5bba47 !important;
    border-radius: .425rem !important;
}

.dropdown-item {
    color: #263447 !important;
    text-align: left !important;
}

/* ==== utilidades =====*/

.error-text {
    color: #ef3d31;
    border-bottom: 2px solid #ef3d31;
    padding-bottom: 7px;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 2px solid rgba(53, 60, 67, 1);
}

.border {
    border: 2px solid #5bba47 !important;
}

section#create-event .form-control {
    padding: 1.25rem 1.75rem;
}

/* ==== buttons =====*/

.navbar-light .navbar-toggler {
    border-color: transparent;
    padding: .25rem .5rem;
    width: 40px;
    margin-right: 5px
}

btn {
    margin-bottom: 10px !important;
}

.btn-xl {
    font-size: 14px;
    padding: 10px;
}

.btn-rounded {
    border-radius: 10rem;
}

.btn-success {
    color: #fff;
    background-color: #5bba47;
    border-color: #5bba47;
    margin-bottom: 10px;
}

.btn-outline-success {
    border-color: #5bba47 !important;
    border: 2px solid #5bba47;
}

.btn-success:hover {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-outline-success:hover {
    color: #fff;
    background-color: #5bba47;
    border-color: #5bba47;
}

.custom-select:focus {
    border-color: #5bba47;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(91, 186, 71, .25);
    box-shadow: 0 0 0 0.2rem rgba(91, 186, 71, .25);
}

.btn-facebook {
    background-color: #3d89c9;
}

.btn-google {
    background-color: #ea4233;
    border: 1px solid #ea4233;
}

form {
    margin-bottom: 2rem
}

input,
select {
    border: 2px solid #e2e4ef;
}

select:focus>option:checked,
option:checked>option:hover {
    background: #5bba47 !important;
    color: #fff
}

.form-control,
.custom-select {
    border: 3px solid #e2e4ef;
    border-radius: 0;
    font-weight: 900;
    color: #6c757d;
}

.custom-select {
    height: calc(1.5em + 1.25rem + 2px);
    padding: .375rem 1.75rem .375rem 1.75rem;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #5bba47;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(91, 186, 71, .25);
    box-shadow: 0 0 0 0.2rem rgba(91, 186, 71, .25);
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #5bba47;
    background-color: #5bba47;
}

input[type="date"]::before {
    content: attr(data-placeholder);
    width: 100%;
}

/* hide our custom/fake placeholder text when in focus to show the default
 * 'mm/dd/yyyy' value and when valid to show the users' date of birth value.
 */
input[type="date"]:focus::before,
input[type="date"]:valid::before {
    display: none
}

/*=== sections =====*/

section {
    margin-bottom: 20px;
}

/* Masterhead login */
body.login .masterhead {
    background: url('http://placehold.it/1920x1200') center center no-repeat;
    background-size: cover;
    height: 100vh;
}

#create-event,
#nearby-events {
    padding: 2rem auto 3rem;
}

section h2 .lead {
    color: #5bba47;
}

section #list-layout p {
    color: #838282;
    font-size: 0.90rem;
}

section #list-layout .addplus {
    width: 50px;
    display: block;
    padding: 20px 10px;
}

section#food-categories h2 {
    font-size: 1rem;
    margin-bottom: 1.5rem
}

section#food-categories img {
    border: 2px solid transparent;
    border-radius: 0.75rem !important;
}

section#food-categories img:hover {
    border: 4px solid transparent;
}

.food-title {
    font-size: 2rem
}

/*== event name =*/
.bd-event span {
    width: 6rem;
    height: 6rem;
    display: block;
    border-radius: 0.5rem;
    text-align: center;
    padding-top: 30%;
    color: #5bba47;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'museo', serif;
}

/*=== Tabs & BreadCrumb ===*/
.breadcrumb {
    background-color: transparent;
    padding: 0rem 1rem;
    margin-bottom: 0;
}

.breadcrumb a {
    color: #777779;
}

.breadcrumb .active {
    color: #000
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: .75rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: .75rem;
    color: rgb(91, 186, 71);
    content: "/";
}

.nav-tabs .nav-item {
    text-transform: uppercase;
}

.nav-tabs .nav-item .nav-link {
    color: rgba(0, 0, 0, .5);
    font-weight: 600;
}

.nav-tabs .nav-link {
    border-bottom: 8px solid transparent;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-color: transparent;
    border-bottom: 8px solid rgb(91, 186, 71);
    font-weight: 600;
    color: #000;
}

.tab-content #list-layout .addplus {
    width: 50px;
    height: 65px;
    display: block;
    padding: 20px 10px;
}

@media (max-width: 575.98px) {
    .breadcrumb {
        font-size: 12px;
    }

    .tab-content .btn-xl {
        font-size: 12px;
    }

    .tab-content #list-layout .addplus {
        width: 40px;
        height: 50px;
        display: block;
        padding: 20px 10px;
    }
}


/*=== Modal ===*/
.modal-content.bg-dark {
    background-color: #18222f !important;
}

.modal-content .modal-header {
    border-bottom: 0;
    text-align: center
}

.modal-header .close {
    padding: 0;
    margin: 0 0 0 -20px;
    color: #fff;
    font-size: 1.5rem;
}

.modal-header .modal-title {
    color: #5bba47;
    font-size: 2rem;
    text-transform: none
}

.modal-footer {
    border-top: 0px;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

/*=== Media Queries ===*/

@media (min-width: 1200px) {
    .navbar {
        max-width: 1110px;
        margin: 30px auto 14px;
    }

    .bd-event span {
        width: 7.5rem;
        height: 7rem;
        display: block;
        border-radius: 0.5rem;
        text-align: center;
        padding-top: 23%;
        color: #5bba47;
        font-size: 2rem;
        font-weight: 700;
        font-family: 'museo', serif;
    }
}

@media (min-width: 768px) {
    .navbar-brand {
        margin-right: 3rem
    }

    h1.bar-center:after {
        margin: 0 auto;
    }

    section h1.bar-left {
        font-size: 1.3rem;
    }

    form-control {
        padding: 1.5rem .75rem;
    }

    #login {
        padding-top: 120px
    }
}

@media (max-width: 1024px) {
    .navbar {
        margin: 30px 50px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 !important;
        margin: 15px
    }

    .navbar {
        margin: 30px 40px;
    }

    #main-nav.navbar-nav {
        text-align: center;
        background-color: #263447;
        color: #fff;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
        margin-left: 15px;
        margin-right: 15px !important;
    }

    #main-nav.navbar-nav .nav-link {
        color: #fff;
        margin: 0 15px 5px;
        border-bottom: 2px solid #c5d1df;
    }

    #main-nav.navbar-nav .active>.nav-link,
    #main-nav.navbar-nav .nav-link.active,
    #main-nav.navbar-nav .nav-link.show,
    #main-nav.navbar-nav .show>.nav-link {
        color: #fff;
        border-bottom: 3px solid rgb(91, 186, 71);
    }

    #main-nav li:last-child a.nav-link {
        border-bottom: 0;
    }
}

@media (min-width: 576px) {

    .navbar-light .navbar-nav .active>.nav-link,
    .navbar-light .navbar-nav .nav-link.active,
    .navbar-light .navbar-nav .nav-link.show,
    .navbar-light .navbar-nav .show>.nav-link,
    .navbar-light .navbar-nav .nav-link:hover {
        border-bottom: 2px solid rgb(91, 186, 71);
    }
}

@media (max-width: 767.98px) and (min-width: 576px) {
    hr {
        height: 3px solid black
    }
}

@media (max-width: 575.98px) {
    body {
        margin-top: 85px;
    }

    /* Masterhead login */
    body.login .masterhead {
        height: 350px;
    }

    body.login #login {
        padding-top: 240px;
    }

    .navbar {
        margin: 15px;
    }

    .dropdown-menu {
        margin: 0rem 1.125rem 1.125rem !important;
    }

    section h1 {
        padding: 1.25rem 0 0.25rem;
        font-size: 0.80rem;
        font-weight: 900;
        margin-bottom: 1rem;
    }

    section h2 .lead {
        font-size: 1rem;
        color: #5bba47;
    }

    h1.bar:after {
        content: ' ';
        display: block;
        border-bottom: 2px solid rgb(38, 52, 71);
        width: 30px;
        padding-top: 3px;
    }

    section h2 {
        font-size: 1rem;
        margin-top: 10px
    }

    h6 {
        font-size: 0.75rem;
    }

    .btn-xl {
        font-size: 16px;
    }

    .events-row [class*='col-'] {
        padding-right: 5px;
        padding-left: 5px;
    }

    .events-row h6 {
        margin-bottom: 30px
    }

    section #list-layout p {
        color: #838282;
        font-size: 0.75rem;
        width: 190px;
        height: 34px;
        overflow: hidden
    }

    section #list-layout .addplus {
        width: 50px;
        display: block;
        padding: 20px 10px;
    }

    .food-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 360px) {
    .bd-event span {
        width: 5rem;
        height: 5rem;
    }
}

/* #cards .card-block .btn {
    display:none;
} */