/**
 * @author: Procurios
 * @about:  mmt-meeting-detail-page.css
 *          Layout and structure of the meeting detail page
 */

/**
 * Generic settings, resets, defaults
 */

/** Max font size */
.mmt-meeting-detail-page {
    font-size: 14px;
}

/** Reset lists */
.mmt-mdp-nav ul,
.mmt-mdp-section-attendees ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/** Contain floats / clearfix */
.mmt-clearfix:before, .mmt-clearfix:after {
    content: "\0020";
    display: block;
    height: 0;
    visibility: hidden;
}

.mmt-clearfix:after {
    clear: both;
}

.mmt-clearfix {
    zoom: 1;
}

/** Columns */
@media screen and (min-width: 768px) {
    .mmt-mdp-main {
        float: left;
        width: 65%;
        margin-right: 5%;
    }
}

@media screen and (min-width: 768px) {
    .mmt-mdp-sidebar {
        float: left;
        width: 30%;
    }
}

.mmt-mdp-inner {
    padding-top: 1.6em;
}

/** Tables */
.mmt-meeting-detail-page table {
    width: 100%;
    border-collapse: collapse;
}

.mmt-meeting-detail-page caption {
    padding: 2px 0;
    background-color: #eee;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.mmt-meeting-detail-page th,
.mmt-meeting-detail-page td {
    text-align: left;
}

.mmt-meeting-detail-page td {
    padding: 5px 0;
    vertical-align: top;
    border-bottom: 1px solid #ccc;
}

.mmt-meeting-detail-page tr.mmt-mdp-last td {
    border-bottom: 0;
}

/** Reset "last" elements */
.mmt-mdp-last {
    margin: 0;
    padding: 0;
    border: 0;
}

/**
 * .mmt-mdp-back
 * Contains back button (if present)
 */

.mmt-mdp-back {
    display: none;
    width: 100%;
    padding: 5px 0;
}

.mmt-mdp-back a {
    padding: 5px 0 5px 23px;
    text-decoration: none;
}

/**
 * .mmt-mdp-header
 * Header of the page. Contains a summary of the meeting and it's cover image
 */

.mmt-mdp-header {
    position: relative;
    display: none;
    overflow: hidden;
    width: 100%;
}

@media screen and (min-width: 400px) {
    .mmt-mdp-header {
        display: block;
    }
}

.mmt-mdp-cover-image {
    width: 100%;
    display: block;
}

.has-js .mmt-mdp-summary {
    display: none;
}

/** Meetings meta data */
.mmt-mdp-summary h2,
.mmt-mdp-summary p {
    margin: 0;
}

.mmt-mdp-summary h2 {
    display: none;
}

.mmt-mdp-summary p {
    font-size: 1em;
}

.mmt-mdp-summary h2 {
    font-size: 2.25em;
}

.mmt-mdp-meta-data span {
    display: block;
    float: left;
    white-space: nowrap;
    margin: 3px 15px 3px 0;
    line-height: 24px;
}

.mmt-mdp-meta-data .mmt-mdp-location {
    padding-left: 15px;
}

/** Cover photo enabled */
.mmt-mdp-has-cover .mmt-mdp-summary {
    position: absolute;
    left: 30px;
    bottom: 10px;
    width: auto;
    padding: 0.5em 1em;
    border-radius: .5em;
    background: rgba(255,255,255,0.7);
    color: #fff;
}

.mmt-mdp-has-cover .mmt-mdp-summary a {
    color: #fff;
}

.mmt-mdp-has-cover .mmt-mdp-meta-data span {
    color: #444;
}

/**
 * .mmt-mdp-nav
 * Detail page navigation
 */

.mmt-mdp-nav {
    background-color: #eee;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.mmt-mdp-has-cover .mmt-mdp-nav {
    margin-top: 0;
    border-top: 0;
    background-color: transparent;
}

.mmt-mdp-nav li {
    float: left;
}

.mmt-mdp-nav a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
}

.mmt-mdp-nav a:hover {
    box-shadow: inset 0 -3px 0 0 #054a8a;
}

.mmt-mdp-active a,
.mmt-mdp-active a:hover {
    font-weight: bold;
    box-shadow: inset 0 -3px 0 0 #054a8a;
}

/**
 * .mmt-mdp-sidebar
 * Layout of content inside sidebar (same sidebar on every page, hence in generic file)
 */

.mmt-mdp-sidebar .mmt-mdp-section {
    margin-bottom: 1.6em;
    border: none;
    background: none;
}

.mmt-mdp-sidebar .mmt-mdp-section-inner {
    padding: 10px;
}

.mmt-mdp-sidebar h3 {
    margin: 0;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    background-color: #fff;
}

/*.mmt-mdp-registration-status-message,*/
.mmt-mdp-sidebar .mmt-mdp-section h3 {
    display: none;
}

/** Ticket prices */
.mmt-mdp-ticket-price {
    width: 100px;
}

/** Subscribe button */
.mmt-mdp-cta {
    display: inline-block;
    padding: 1.2em 2.4em;
    margin: 6px 0.5em 6px 0;
    border-radius: 30px;
    font-family: 'Asap', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: normal;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(to right, #ee7325, #ea516d);
}

.mmt-mdp-cta::after {
    content: '\02c3';
    font-family: "fontello";
    display: inline-block;
    width: 5px;
    margin-left: 0.8em;
    margin-right: 0;
    transition: transform 0.3s ease-out;
}

.mmt-mdp-cta:hover::after {
    transform: translateX(6px);
}

.mmt-mdp-cta-secondary {
    display: inline-block;
    padding: 1.2em 2.4em;
    margin: 6px 0.5em 6px 0;
    border-radius: 30px;
    font-family: 'Asap', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: normal;
    text-decoration: none;
    color: #ee7325;
    background: transparent;
    border: 1px solid #ee7325;
}

/** Block: List of tickets */
.mmt-mdp-sidebar .mmt-mdp-section-tickets th {
    font-weight: bold;
}

.mmt-mdp-sidebar .mmt-has-help {
    margin-bottom: 1em;
}

.mmt-mdp-sidebar .mmt-mdp-section-tickets p:last-child {
    margin: 0;
}

/** Block: Register */
.mmt-mdp-registration-status {
    padding-top: 1em;
    border-top: 1px dotted #ccc;
}

.mmt-mdp-registration-status-message {
    margin-bottom: 10px;
    font-size: 1.2em;
    line-height: 1.4em;
}

.mmt-mdp-registration-status-cta {
    margin: 0;
}

/** Block: List of attendees */
.mmt-mdp-section-attendees-list li {
    padding: 5px 0;
    border-top: 1px solid #ccc;
}

.mmt-mdp-section-attendees-list .mmt-mdp-first {
    padding-top: 0;
    border-top: 0;
}

.mmt-mdp-section-attendees-list span,
.mmt-mdp-section-attendees-list a {
    display: block;
}

.mmt-mdp-attendee-fn {
    font-size: 1.1em;
    font-weight: bold;
}

.mmt-mdp-section-attendees-list p {
    margin-bottom: 0;
    text-align: right;
}

/** Add To Any extern snippet **/

.a2a_kit {
    display: inline-block;
    vertical-align: middle;
}

.a2a_kit span {
    height: 20px;
    width: 20px;
    border-radius: 50% !important;
    background: #054A8A !important;
}

/** Style meeting date in top container **/

.mod-meeting2 .topContainer h2,
.mod-meeting2 .topContainer .mmt-mdp-date,
.mod-meeting2 .topContainer .Registration__date {
    display: block;
    text-align: center;
    color: #fff;
}

.mod-meeting2 .topContainer h2 {
    font-size: 1.8em;
    line-height: 1.23;
}

@media (min-width: 568px) {
    .mod-meeting2 .topContainer h2 {
        font-size: 2.3em;
        line-height: 1.23;
    }
}
