/** Buttons **/
.mmt_eo_exim_btn_secondary{
    margin-left: 0;
    border: none;
    font: bold 14px 'Open Sans', arial;
    line-height: normal;
    text-transform: uppercase;
    line-height: 150%;
    display: inline-block;
    cursor: pointer;
    box-sizing: border-box;
    padding: 4px 15px;
    border-radius: 20px;
    margin-bottom: 3px;
    text-decoration: none;
    background: #FF6978;
    color: #FFF;
}
.mmt_eo_exim_btn_primary{
    margin-left: 0;
    border: none;
    font: bold 14px 'Open Sans', arial;
    line-height: normal;
    text-transform: uppercase;
    line-height: 150%;
    display: inline-block;
    cursor: pointer;
    box-sizing: border-box;
    padding: 4px 15px;
    border-radius: 20px;
    margin-bottom: 3px;
    text-decoration: none;
    background: #0099CC;
    color: #FFF;
}
.mmt_eo_exim_btn_secondary:hover,
.mmt_eo_exim_btn_secondary:focus,
.mmt_eo_exim_btn_primary:hover,
.mmt_eo_exim_btn_primary:focus{
    color: #FFF;
    opacity: 0.7; 
}
/** Loading Saving **/
@keyframes leftright {
    0% {
      left: 0%;margin-left: -50px
    }
    100% {
      left: 100%; margin-left: -50px
    }
}
.mmt_eo_exim_working{
    background-color: transparent;
    height: 5px;
    width: 100%;
    border-radius: 10px;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99999;
    display: block;
    overflow: hidden;
}
.mmt_eo_exim_working.show{
    display:block;
}
.mmt_eo_exim_working.show::before{
    content: "";
    width: 200px;
    height: 100%;
    display: block;
    background-color: #FF6978;
    position: absolute;
    left: 0;
    animation-name: leftright;
    animation-duration: 0.7s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
    animation-fill-mode: none;
    animation-delay: 0s;
}
/**************************/
/** Tabs Settings *********/
/*************************/
.mmt-eo-ei-admin-wrapper{
    margin-right: 15px;
}
.mmt-eo-ei-admin-table,
.mmt-eo-ei-admin-table td{
    margin: 0;
    padding: 0;
    position: relative;
    border-spacing: 0;
}
.mmt-eo-ei-admin-table ul.mmt-eo-ei-admin-tab{
    background-color: #f1f1f1;
    /* width: 155px; */
    width: 176px;
    height: auto;
    border-right: none;
    padding: 0;
    margin: 0;
}
.mmt-eo-ei-admin-table ul.mmt-eo-ei-admin-tab li{
    margin: 0;
    display: block;
    border-left: 1px solid #d9d7d7;
    border-bottom: 1px solid #d9d7d7;
}
.mmt-eo-ei-admin-tab a{
    background-color: inherit;
    color: #a8a8a8;
    padding: 10px;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    font-size: 14px;
    display: block;
}
.mmt-eo-ei-admin-tab a.active{
    border-left: 4px solid #FF6978;
    color: #3d3d3d;
}
.mmt-eo-ei-admin-tab a i{
    padding-right: 16px;
}
.mmt-eo-ei-admin-table td.mmt-eo-ei-admin-tabcontent{
    border: 1px solid #ccc;
    background: #FFF;
    border-top: none;
    padding: 15px;

   transition: height 2s ease;
}
.mmt-eo-ei-admin-table td .mmt-eo-ei-admin-content{
    display: none;
}
.mmt-eo-ei-admin-table td.mmt-eo-ei-admin-tabcontent .active{
    display: block;
}
.mmt-eo-ei-hr-line{
    border-bottom: 1px solid #dbdbdb;
    margin-bottom: 18px;
    margin-top: 18px;
    display: block;
}
.mmt-eo-ei-admin-content-header h3{
    border-bottom: 1px solid #EDEDED;
    margin: 0;
    color: #333;
    font-size: 26px;
    line-height: 26px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding-bottom: 15px;
}
.mmt-eo-ei-admin-content-header i{
    margin-right: 16px;
}
.mmt-eo-ei-admin-yesno{
    margin-top: 15px;
}
.mmt-eo-ei-admin-toggle-container{
    width: 125px;
    text-align: center;
}
.mmt-eo-ei-toggle-container-label{
        padding-left: 10px;
        line-height: 1.8;
}
.mmt-eo-ei-admin-toggle-container .switch{
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 56px;
    height: 20px;
    padding: 3px;
    background-color: white;
    border-radius: 18px;
    cursor: pointer;
}
.mmt-eo-ei-admin-toggle-container .switch-input{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.mmt-eo-ei-admin-toggle-container .switch-label{
    position: relative;
    display: block;
    height: inherit;
    font-size: 10px;
    text-transform: uppercase;
    background: #eceeef;
    border-radius: inherit;
    -webkit-transition: 0.15s ease-out;
    -moz-transition: 0.15s ease-out;
    -o-transition: 0.15s ease-out;
    transition: 0.15s ease-out;
    -webkit-transition-property: opacity background;
    -moz-transition-property: opacity background;
    -o-transition-property: opacity background;
    transition-property: opacity background;
}
.mmt-eo-ei-admin-toggle-container .switch-label:before, 
.mmt-eo-ei-admin-toggle-container .switch-label:after {
    position: absolute;
    top: 50%;
    margin-top: -.5em;
    line-height: 1;
    -webkit-transition: inherit;
    -moz-transition: inherit;
    -o-transition: inherit;
    transition: inherit;
}
  
  .mmt-eo-ei-admin-toggle-container .switch-label:before {
    content: attr(data-off);
    right: 11px;
    color: #352D39;
    text-shadow: 0 1px rgba(255, 255, 255, 0.5);
  }
  
  .mmt-eo-ei-admin-toggle-container .switch-label:after {
    content: attr(data-on);
    left: 11px;
    color: #FFF;
    text-shadow: 0 1px rgba(0, 0, 0, 0.2);
    opacity: 0;
  }
  
  .mmt-eo-ei-admin-toggle-container .switch-input:checked ~ .switch-label {
    background: #FF6978;
  }
  
  .mmt-eo-ei-admin-toggle-container .switch-input:checked ~ .switch-label:before {
    opacity: 0;
  }
  
  .mmt-eo-ei-admin-toggle-container .switch-input:checked ~ .switch-label:after {
    opacity: 1;
  }
  .mmt-eo-ei-admin-toggle-container .switch-handle {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 10px;
    -webkit-transition: left 0.15s ease-out;
    -moz-transition: left 0.15s ease-out;
    -o-transition: left 0.15s ease-out;
    transition: left 0.15s ease-out;
  }
  
  .mmt-eo-ei-admin-toggle-container .switch-handle:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -6px 0 0 -6px;
    width: 12px;
    height: 12px;
    background: #f9f9f9;
    border-radius: 6px;
  }
  .mmt-eo-ei-admin-toggle-container .switch-input:checked ~ .switch-handle {
    left: 40px;
    box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
  }
.mmt-eo-ei-block-hidden{
    display: none;
}
.afteryes{
    border-top: 1px solid #dbdbdb;
    border-bottom: 1px solid #dbdbdb;
    padding: 15px;
    background: #f7f7f7;
    margin-top: 6px;
    margin-bottom: 6px;
    margin-right: -15px;
    margin-left: -15px;
    display: none;
}
.afteryes.active{
    display: block;
}
#mmt-eo-ei-admin-form input[type="text"],
#mmt-eo-ei-admin-form textarea,
#mmt-eo-ei-admin-form select{
    width: 100%;
    color: #666666;
    padding: 5px 8px;
    border-radius: 5px;
    border: 1px solid #ddd;
    box-shadow: inset 0 1px 2px rgba(0,0,0,.07);
    background-color: #fff;
    color: #32373c;
    outline: 0;
    transition: 50ms border-color ease-in-out;
    display: block;
    width: 80%;
    margin-top: 5px;
}
#mmt-eo-ei-admin-form input[type="text"].inline,
#mmt-eo-ei-admin-form textarea.inline,
#mmt-eo-ei-admin-form select.inline{
    display: inline-block;
    max-width: 250px;
}
#mmt-eo-ei-admin-form input[type="text"].wide,
#mmt-eo-ei-admin-form textarea.wide,
#mmt-eo-ei-admin-form select.wide{
    display: inline-block;
    max-width: 70%;
}
#mmt-eo-ei-admin-form input:focus,
#mmt-eo-ei-admin-form textarea:focus,
#mmt-eo-ei-admin-form select:focus{
    border-color:#5b9dd9;box-shadow:0 0 2px rgba(30,140,190,.8);outline:2px solid transparent
}
#mmt-eo-ei-admin-form label.regular{
    font-weight: bolder;
    color: #6F6F6F;
    margin-bottom: 1px;
    display: inline-block;
    font-size: 14px;
}
#mmt-eo-ei-admin-form label.inline{
    display: inline-block;
    color: #6F6F6F;
    margin-right: 11px;
    min-width: 200px; 
}
#mmt-eo-ei-admin-form span.required{
    margin-top: 11px;
    display: block;
    margin-left: 17px;
}
#mmt-eo-ei-admin-form span.required label{
    color: #455570;
    font-weight: bold;
}
.mmt-eo-ei-admin-block{
    margin-bottom: 6px;
    margin-top: 6px;
}
.block-right{
    text-align: right;
}
.maw-475{
    max-width: 475px;
}
.afteryes .textarea_info{
  padding: 12px;
  font-style: italic;
}
span.mmt-eo-ei-note{
    margin:12px 0;
    font: 13px 'open sans';
    font-style: italic;
    display: block;
    padding: 5px 15px;
}
.mmt-eo-ei-note.after-inline{
    margin-left: 12px;
}
.mmt-eo-ei-admin-tab-bottom {
    margin-top: 15px;
    text-align: center;
}
.mmt-eo-ei-admin-btn {
    padding: 6px 6px;
    color: #FFF;
    text-transform: uppercase;
    background-color: #FF6978;
    display: inline-block;
    border-radius: 3px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}
.mmt-eo-ei-admin-btn:hover,
.mmt-eo-ei-admin-btn:focus{
    text-decoration: none;
    color: #FFF;
    border: none;
}
.admin-saving{
    display: none;
    width: 100%;
    height: 100%;
    z-index:10;
    background: rgba(255,255,235,0.8) url(../img/admin-saving.png) center center no-repeat;
    top:0;
    left:0;
    position: absolute;
}
.ml-8{
    margin-left: 8px;
}
.ml-20{
    margin-left: 20px;
}
/** Ends Basic Settings **/
/** Section **/
.mmt-eo-ei-section{
    /* margin-top: 30px;
    padding-top: 22px;
    position: relative; */
    margin-bottom: 8px;
}
.mmt-eo-ei-section-header{
    background:#f1f1f1;
    padding: 10px 15px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    margin-right: -15px;
    margin-left: -15px;
}
/** Icons **/
.mmt-eo-ei-icon{
    width:100px;
    /* display:block; */
    height:20px;
    background:transparent;
    color:white;
    text-decoration:none;
    padding-right:20px;
}
.eventbrite-icon:after{
    content:'';
    background: url('../img/eventbrite.ico');
    background-size:cover;
    position:absolute;
    width:20px;
    height:20px;
    top: 35px;
}
.meetup-icon:after{
    content:'';
    background: url('../img/meetup.png');
    background-size:cover;
    position:absolute;
    width:30px;
    height:30px;
    top: 30px;
}
.ical-icon:after{
    content:'';
    background: url('../img/ical.png');
    background-size:cover;
    position:absolute;
    width:30px;
    height:30px;
    top: 30px;
}
/** Icons **/
.mmt-eo-ei-fetch {
    color: #FFF;
    background: #455570;
    border-radius: 4px;
    padding: 8px 8px;
    text-transform: uppercase;
    font-size: 14px;
    display: inline-block;
    text-decoration: none;
}
.mmt-eo-ei-fetch:hover,
.mmt-eo-ei-fetch:focus{
    text-decoration: none;
    opacity: 0.6;
    color: #FFF;
}
.mmt-eo-ei-eb-connect,
.mmt-eo-eo-eb-remove,
.mmt-eo-eo-eb-venue-event{
    cursor: pointer;
    background: #5b9dd9;
    padding: 4px 6px;
    color: #FFF;
    border-radius: 2px;
    display: inline-block;
    font-style: normal;
}
.connect-loading{
    background: rgba(255,255,235,0.8) url('../img/connect-loading.gif') center center no-repeat;
    width: 100%;
    height: 100%;
    z-index:10;
}
.connect-messages{
    padding: 8px;
    text-align:center;
    background: rgb(252, 63, 82);
    display: none;
    margin-left: 10px;
    color: #FFF;
}
.mmt-eo-ei-eb-connected{
    margin-top: 6px;
    font-size: 32px;
    color: #FF6978;
}
/** Eventbrite Venue Details **/
.eventbrite-venue-details{
    display: none;
    margin-top: 20px;
    border-top: 1px solid #666666;
}
/** Eventbrite Events List **/
/** Meetup Events List **/
.eventbrite-events-list,
.meetup-events-list{
    display: none;
    margin-top: 20px;
    border-top: 1px solid #666666;
    text-align: center;
}
.eventbrite-events-list table,
.meetup-events-list table{
    width: 100%;
}
.eventbrite-events-list table th,
.eventbrite-events-list table td,
.meetup-events-list table th,
.meetup-events-list table td{
    padding: 8px 12px;
}
.mmt-eo-ei-cb-ebrite-import,
.mmt-eo-ei-cb-meetup-import{
    background: #FF6978;
    color: #FFF;
    text-transform: uppercase;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 8px;
}
.mmt-eo-ei-admin-block.block-organizerid,
.mmt-eo-ei-admin-block.block-yourevent,
.mmt-eo-ei-admin-block.block-venueid{
    display: none;
}
/** Page Meetup **/
.meetup-eventtype-block,
.meetup-events-list{
    display: none;
}
/** Metabox **/
.mmt-eo-ei-mb{
    text-align: center;
    padding: 18px;
}
.mmt-eo-ei-export-eb{
    padding: 8px 16px;
    background:#F0F0F0;
    border-radius: 6px;
    cursor: pointer;
    color:#72697b;
    border: 1px solid#72697b;
    box-shadow: 1px 1px 4px 1px transparent;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    position: relative;
}
.exporting {
    background-color: #F0F0F0;
	background: rgba(255,255,235,1) url('../img/connect-loading.gif') center center no-repeat;
    width: 100%;
    height: 100%;
    z-index:10;
}
.mmt-eo-ei-export-eb:hover{
    opacity: 0.6;
}
/**************************/
/** Ends Tabs Settings *********/
/*************************/


/** Top Custom Tabs */
.exim-float-right{
    float: right;
}
.exim-clear{
    clear: both;
}
.exim_meta_tabs{
    font-size:14px;
    font-weight: 600;
    margin-left: 170px;
}
.exim_meta_tabs span{
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;;
    border: none;
    margin-right: 4px;
    padding: 5px 15px;
    line-height: 1.71428571;
    color: #555;
    display: inline-block;
    background: #e5e5e5;
    cursor: pointer;
}
.exim_meta_tabs span.active,
.exim_meta_tabs span:hover{
    background-color: #fff;
    color: #000;
}
.exim_meta_tabs_content{
    display: none;
}
.exim_meta_tabs_content.active{
    display: block;
}
.mmt-eo-exim-option-block{
    border-top: 1px solid #dbdbdb;
    border-bottom: 1px solid #dbdbdb;
    padding: 15px;
    background: #f7f7f7;
    margin-top: 6px;
    margin-bottom: 6px;
    margin-right: -15px;
    margin-left: -15px;
    display: none;
}
.mmt-eo-exim-option-block.show{
    display: block;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}
.eo_ei_exim_subheader{
    font: italic 16px georgia;
    margin: 0;
    color: #5d5d5d;
    padding: 0;
}
.eb_search_result_block {
    margin: 8px;
}
.eb_imports_msg_block,
.eb_search_result_block,
.mu_imports_msg_block{
    background-color:#ffeec8;
    padding: 10px;
    border-radius: 5px;
    margin: 0;
}
.eb_imports_msg_block{
    display: none;
}
.mmt-eo-exim-option-block input{
    width: 300px;
    color:
    #666666;
    padding: 5px 8px;
    border-radius: 5px;
}
@-webkit-keyframes fadeIn {
    from { opacity: 0; }
      to { opacity: 1; }
}
@keyframes fadeIn {
    from { opacity: 0; }
      to { opacity: 1; }
}
.eb_imports_report_block{
    display: none;
}
.eb_imports_table table{
    margin-top: 28px;
    margin-bottom: 18px;
    width: 100%;
    box-shadow: none;
    background:#fff;
    border: 1px solid#e5e5e5;
    border-spacing: 0;
    width: 100%;
    clear: both;
    display: table;
}
.eb_imports_table table tr.bad td{
    background-color: #e39f9f;
    color: #FFF;
}
.eb_imports_table table tr.good td{
    background-color: #9fe3b3;
    color: #FFF;
}
.eb_imports_table table th{
    color:#32373c;
    line-height: 1.4em;
    border-bottom: 1px solid#e1e1e1;
    font-weight: 400;
    text-align: center;
    padding: 8px 10px;
    font-size: 14px;
}
.eb_imports_table table tr td{
    background: #f9f9f9;
    padding: 8px 10px!important;
    font-size: 14px;
    line-height: 1.4em;
}

/** Metabox **/
.mmt-eo-exim-mb{
    text-align: center;
    padding: 18px;
}
.mmt-eo-exim-export-eb{
    padding: 8px 16px;
    background:#F0F0F0;
    border-radius: 6px;
    cursor: pointer;
    color:#72697b;
    border: 1px solid#72697b;
    box-shadow: 1px 1px 4px 1px transparent;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    position: relative;
}
.exporting {
    background-color: #F0F0F0;
	background: rgba(255,255,235,1) url('../img/connect-loading.gif') center center no-repeat;
    width: 100%;
    height: 100%;
    z-index:10;
}
.mmt-eo-exim-export-eb:hover{
    opacity: 0.6;
}
/** Datepicker **/
.mmt-eo-exim-option-block input.exim-admin-datepicker{
    background-color:#f5c485;
    color:#fff;
    line-height: 26px;
    cursor: pointer;
    border: none;
}
/** More fetch Box**/
.exim-more-fetch-box{
    padding-top: 12px; 
}
.mmt-eo-exim-back-to-list-block{
    display: none;
}
.mmt-eo-exim-back-to-list-block i.fa{
    font-size: 18px;
    margin-left: 8px;
    font-weight: 600;
}
/*** Metabox Styles ***/
#mmt_eo_exim_export_mb .inside{
    padding-bottom: 0;
}
#mmt-eo-ei-metabox-form .mmt-full-width{
    width: 80%;
    display: block;
    margin-bottom: 6px;
}
#mmt-eo-ei-metabox-form label{
    margin-bottom: 4px;
}
#mmt-eo-ei-metabox-form .afteryes{
    margin-bottom: -7px;
}
#mmt-eo-ei-metabox-form input{
    border-radius: 4px;
    padding: 8px 6px 8px;
    margin-bottom: 5px;
    background-color: #fff;
    border: 1px solid #cecece;
}
#mmt-eo-ei-metabox-form .mmt-eo-ei-admin-toggle-container .switch-label::after,
#mmt-eo-ei-metabox-form .mmt-eo-ei-admin-toggle-container .switch-label::before{
    content: "";
}
#mmt-eo-ei-metabox-form .mmt-eo-ei-admin-toggle-container .switch{
    width: 40px;
}
#mmt-eo-ei-metabox-form .mmt-eo-ei-admin-toggle-container .switch-label{
    background: #c5c5c5;
}
#mmt-eo-ei-metabox-form .mmt-eo-ei-admin-toggle-container .switch-input:checked ~ .switch-label {
    background: #FF6978;
}
#mmt-eo-ei-metabox-form .mmt-eo-ei-admin-toggle-container .switch-input:checked ~ .switch-handle{
    left: 23px;
}
.momo-pro-label {
    padding: 4px 8px;
    background: #d63638;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    text-transform: uppercase;
    margin-left: 22px;
    border-radius: 12px;
}