#event-map {
    border: 1px solid #333;
    position: relative;
}

.map-container {
    max-height: 500px;
    overflow: hidden;
}

#svg-map {
    min-height: 500px;
    cursor: move;
}

.zoom-control {
    padding: 10px;
    cursor: pointer;
    display: inline-block;
    background-color: #333;
    color: #fff;
    font-size: 18px;
    transition: .3s;
}

.zoom-controls {
    position: absolute;
    z-index: 9;
    right: 0;
    top: 0;
}

svg text,
section {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

svg text::selection,
section {
    background: none;
}

#seat-tooltip {
    position: absolute;
    color: white;
    z-index: 9999;
    font-size: 12pt;
    white-space: nowrap;
}

.tooltip-glass {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #222;
    z-index: -1;
    opacity: 0.9;
    border-radius: 5px;
}

.meta-fields .seat-num,
.meta-fields .dimensions,
.meta-fields .price,
.meta-fields .category {
    padding: 10px !important;
}

.rules ul {
    list-style-type: none;
}

.rules ul ul li {
    text-indent: -2em;
}

.rules li {
    text-align: justify;
    line-height: 2;
}

.color-description .item .color {
    position: relative;
    top: 5px;
    width: 20px;
    height: 20px;
    background-color: rgb(244, 176, 132);
    border: 1px solid #333;
    display: inline-block;
}

.color-description p.desription {
    display: inline-block;
    line-height: 20px;
}

.mt50 {
    margin-top: 50px;
}

.mt20 {
    margin-top: 20px;
}

.calendar-items,
.selected-seats {
    margin-top: 20px;
    list-style-type: none;
}

.calendar-item .event-button,
.selected-seat .delete-button,
.seat-totals .complete-button {
    text-align: right;
}

.calendar-item .event-button a,
.selected-seat .delete-button a,
.seat-totals .complete-button a {
    margin: 0;
}

.calendar-item,
.selected-seat {
    margin: 10px 0;
    background-color: rgba(100, 100, 100, 0.1);
    min-height: 50px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.seat-totals {
    margin: 10px 0;
    margin-top: 20px;
    background-color: rgba(100, 100, 100, 0.3);
    min-height: 50px;
}

.seat-selection p {
    margin: 0;
}

.calendar-item:hover,
.selected-seat:hover {
    background-color: rgba(100, 100, 100, 0.2);
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.calendar-item .column,
.selected-seat .column,
.seat-totals .column {
    margin: 10px 0;
}

.btn {
    margin-top: 1rem;
    padding: 5px 20px;
    margin-right: 5px;
    text-decoration: none;
    color: #fff;
    background-color: #073f5d;
    text-align: center;
    text-transform: uppercase;
    /* letter-spacing: .5px; */
    cursor: pointer;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.btn:hover {
    color: #fff;
    background-color: #555;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.btn:focus {
    color: #fff;
}

.btn.dark {
    background-color: #555;
}

.btn.dark:hover {
    background-color: #073f5d;
}

b * {
    font-weight: 700 !important;
}

.form-control {
    font-size: 14px !important;
}

.event-info {
    text-align: center !important;
}

.event-info p {
    margin-bottom: 10px;
}

p.date {
    text-transform: uppercase;
    color: #555;
    font-weight: 700;
}

p.date span.date-value {
    color: #073f5d;
    font-weight: 900;
}

form {
    padding: 0 !important;
    margin: 0 !important;
}

form p {
    margin-bottom: 10px !important;
}

#event-button {
    background-color: #073f5d;
    color: #fff;
}

#event-button:hover {
    background-color: #ccc;
    color: #073f5d;
}

.event-info {
    background-color: #f0ede8;
    padding: 20px 0;
}

@media(min-width:768px) {
    #event-image {
        padding: 0 20px;
    }
}