#podcast-area {
    display: block;
    width: 100%;
    overflow: hidden;
    padding: 25px 0;
    border-bottom: 1px solid #ddd;
}

#podcasts {
    display: block;
    font-size: 0;
    width: 100%;
    overflow: auto;
    white-space: nowrap;
    padding: 0 20px 20px 20px;
}

#podcasts .loading {
    display: inline-block;
    height: 300px;
}

.podcast {
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
    width: 300px;
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.podcast section {
    display: block;
    width: 100%;
    height: 100%;
    padding: 40px 20px;
    overflow: auto;
    background: rgba(205,92,92,.8);
    white-space: normal;
}

.podcast-title {
    display: block;
    width: 100%;
    line-height: 20px;
    font-size: 16px;
    font-family: Poppins-Bold, sans-serif;
    font-weight: bold;
    color: #fff;
    text-align: left;
    margin-bottom: 10px;
}

.podcast-creator {
    display: block;
    width: 100%;
    line-height: 20px;
    font-size: 14px;
    font-family: Poppins-Regular, sans-serif;
    font-weight: 100;
    color: #fff;
}

.created-at {
    display: block;
    width: 100%;
    line-height: 15px;
    font-size: 12px;
    font-family: Poppins-Regular, sans-serif;
    font-weight: 100;
    color: #ddd;
    margin-bottom: 30px;
}

.delete-podcast,
.edit-podcast {
    display: inline-block;
    vertical-align: middle;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
    color: skyblue;
    font-size: 14px;
    margin-right: 20px;
    border: 0;
    outline: 0;
    background: transparent;
}

.edit-podcast.no {
    display: none;
}

.audio {
    display: block;
    width: 100%;
    margin-top: 30px;
    border-radius: 4px;
    background: #eee;
    outline: 0;
}

#podcast-btns {
    display: block;
    width: 100%;
    text-align: right;
    font-size: 0;
    padding: 20px;
}

#podcast-btns button {
    display: none;
    vertical-align: middle;
    padding: 0 20px;
    height: 30px;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
    color: #fff;
    font-size: 12px;
    background: blueviolet;
    margin-left: 10px;
    border: 0;
    outline: 0;
    border-radius: 2px;
}

#podcast-btns button.visible {
    display: inline-block;
}












/*********************************************/

.file-input {
    position: fixed;
    z-index: -1;
    top: -100%;
    left: -100%;
}

#edit-podcast {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
    background: rgba(205,92,92,.9);
    padding: 40px 0;
}

#edit-podcast .background-layer {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
}

#edit-podcast section {
    display: block;
    width: 400px;
    max-height: 100%;
    overflow: auto;
    margin: 0 auto;
    background: #fff;
    position: relative;
    z-index: 10;
}

#exit-podcast-edit {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.5);
    padding: 7px;
    border: 0;
    outline: 0;
}

#exit-podcast-edit.hidden {
    display: none;
}

#exit-podcast-edit svg {
    display: block;
    width: 100%;
    height: 100%;
}

#exit-podcast-edit svg polyline {
    fill: none;
    stroke: #fff;
    stroke-width: 3;
}

#podcast-preview-image {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 1;
}

#choose-podcast-image,
#choose-podcast-audio {
    display: block;
    width: 150px;
    height: 30px;
    border: 0;
    border-radius: 2px;
    background: blueviolet;
    color: #fff;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
    text-align: center;
    outline: 0;
    margin: 20px;
    font-size: 12px;
}

#podcast-preview-audio {
    display: block;
    width: 100%;
    padding: 0 20px;
    outline: 0;
}

#podcast-text-inputs {
    display: block;
    width: 100%;
    padding: 20px;
    border-top: 1px solid #ddd;
}

#podcast-text-inputs h2 {
    display: block;
    width: 100%;
    line-height: 20px;
    font-size: 16px;
    font-family: Poppins-Bold, sans-serif;
    font-weight: bold;
    color: #222;
    text-align: left;
    margin-bottom: 5px;
}

#podcast-text-inputs input {
    display: block;
    width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: transparent;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
    color: #222;
    font-size: 14px;
    padding: 0 15px;
    margin-bottom: 20px;
}

#podcast-text-inputs textarea {
    display: block;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: transparent;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
    color: #222;
    font-size: 14px;
    padding: 15px;
    margin-bottom: 20px;
    resize: vertical;
}

#podcast-description-input {
    height: 100px;
}

#podcast-transcript-input {
    height: 200px;
}

#save-podcast {
    display: inline-block;
    padding: 0 30px;
    height: 40px;
    background: blueviolet;
    border: 0;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
    margin-left: 20px;
    margin-bottom: 20px;
}

#cancel-podcast-edit {
    display: inline-block;
    padding: 0 30px;
    height: 40px;
    background: #ddd;
    border: 0;
    color: #222;
    text-align: center;
    font-size: 14px;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
    margin-left: 10px;
    margin-bottom: 20px;
}

#cancel-podcast-edit.hidden {
    display: none;
}

@media only screen and (max-width: 500px){
    
    #edit-podcast {
        padding: 0;
        background: #fff;
    }
    
    #edit-podcast section {
        width: 100%;
    }
    
    #podcast-preview-image {
        height: 100vw;
    }
    
}












/*******************************************/

#featured-guests {
    display: block;
    width: 100%;
    overflow: hidden;
    padding: 25px 0;
    border-bottom: 1px solid #ddd;
}

.area-title {
    display: block;
    width: 100%;
    line-height: 30px;
    font-size: 20px;
    padding: 0 20px;
    text-align: left;
    font-family: Poppins-Bold, sans-serif;
    font-weight: bold;
    color: #222;
}

.note {
    display: block;
    width: 100%;
    line-height: 20px;
    font-size: 14px;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
    color: #444;
    text-align: left;
    padding: 0 20px 20px 20px;
}

#guests {
    display: block;
    font-size: 0;
    width: 100%;
    overflow: auto;
    white-space: nowrap;
    padding: 0 20px 20px 20px;
}

#guests .loading {
    display: inline-block;
    height: 300px;
}

.guest {
    display: inline-block;
    vertical-align: top;
    width: 300px;
    padding: 50px;
    background: #fff;
    border-radius: 4px;
    margin-right: 20px;
    text-align: center;
    white-space: normal;
}

.guest-img {
    display: block;
    width: 120px;
    height: 120px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    margin: 0 auto 30px auto;
}

.delete-guest {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
    color: blueviolet;
    border: 0;
    outline: 0;
    background: transparent;
}

.guest-name {
    display: block;
    width: 100%;
    line-height: 28px;
    font-size: 18px;
    font-family: Poppins-Regular, sans-serif;
    font-weight: 100;
    color: #222;
    text-align: center;
    margin: 10px auto;
}

.guest-description {
    display: block;
    width: 100%;
    line-height: 20px;
    font-size: 14px;
    font-family: Poppins-Regular, sans-serif;
    font-weight: 100;
    text-align: center;
    color: #444;
}

#guests-btns {
    display: block;
    width: 100%;
    text-align: right;
    font-size: 0;
    padding: 20px;
}

#guests-btns button {
    display: none;
    vertical-align: middle;
    padding: 0 20px;
    height: 30px;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
    color: #fff;
    font-size: 12px;
    background: blueviolet;
    margin-left: 10px;
    border: 0;
    outline: 0;
    border-radius: 2px;
}

#guests-btns button.visible {
    display: inline-block;
}











/*************************************/

#add-guest {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
    background: rgba(205,92,92,.9);
    padding: 40px 0;
}

#add-guest .background-layer {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
}

#add-guest section {
    display: block;
    width: 400px;
    max-height: 100%;
    overflow: auto;
    margin: 0 auto;
    background: #fff;
    position: relative;
    z-index: 10;
    padding: 50px 20px;
}

#exit-guest-edit {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.5);
    padding: 7px;
    border: 0;
    outline: 0;
}

#exit-guest-edit.hidden {
    display: none;
}

#exit-guest-edit svg {
    display: block;
    width: 100%;
    height: 100%;
}

#exit-guest-edit svg polyline {
    fill: none;
    stroke: #fff;
    stroke-width: 3;
}

#guest-preview-image {
    display: block;
    width: 120px;
    height: 120px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    margin: 20px auto;
}

#choose-guest-image {
    display: block;
    width: 130px;
    height: 35px;
    margin: 0 auto 50px auto;
    background: blueviolet;
    border: 0;
    outline: 0;
    font-size: 12px;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
    color: #fff;
    text-align: center;
    border-radius: 20px;
}

#add-guest h2 {
    display: block;
    width: 100%;
    line-height: 20px;
    font-size: 16px;
    font-family: Poppins-Bold, sans-serif;
    font-weight: bold;
    color: #222;
    text-align: left;
    margin-bottom: 5px;
}

#add-guest input {
    display: block;
    width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: transparent;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
    color: #222;
    font-size: 14px;
    padding: 0 15px;
    margin-bottom: 20px;
}

#add-guest textarea {
    display: block;
    width: 100%;
    height: 100px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: transparent;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
    color: #222;
    font-size: 14px;
    padding: 15px;
    margin-bottom: 20px;
}

#save-guest {
    display: inline-block;
    padding: 0 30px;
    height: 40px;
    background: blueviolet;
    border: 0;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
    margin-bottom: 20px;
}

#cancel-guest-edit {
    display: inline-block;
    padding: 0 30px;
    height: 40px;
    background: #ddd;
    border: 0;
    color: #222;
    text-align: center;
    font-size: 14px;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
    margin-left: 10px;
    margin-bottom: 20px;
}

#cancel-guest-edit.hidden {
    display: none;
}

@media only screen and (max-width: 500px){
    
    #add-guest {
        padding: 0;
        background: #fff;
    }
    
    #add-guest section {
        width: 100%;
        min-height: 100%;
    }
    
}








/*********************************************/

#behind-the-mic {
    display: block;
    width: 100%;
    overflow: hidden;
    padding: 25px 0;
    border-bottom: 1px solid #ddd;
}

#btms {
    display: block;
    font-size: 0;
    width: 100%;
    overflow: auto;
    white-space: nowrap;
    padding: 0 20px 20px 20px;
}

#btms .loading {
    display: inline-block;
    height: 300px;
}

.btm {
    display: inline-block;
    vertical-align: top;
    width: 300px;
    background: #fff;
    border-radius: 4px;
    margin-right: 20px;
    text-align: center;
    white-space: normal;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.btm section {
    padding: 50px;
    background: rgba(205, 92, 92, .9);
}

.btm-name {
    display: block;
    width: 100%;
    line-height: 30px;
    font-size: 20px;
    font-family: Poppins-Regular, sans-serif;
    font-weight: 100;
    color: #fff;
    text-align: center;
}

.btm-title {
    display: block;
    width: 100%;
    line-height: 20px;
    font-size: 15px;
    font-family: Poppins-Regular, sans-serif;
    font-weight: 100;
    color: #eee;
    text-align: center;
    margin-bottom: 20px;
}

.btm-description {
    display: block;
    width: 100%;
    line-height: 20px;
    font-size: 14px;
    font-family: Poppins-Regular, sans-serif;
    font-weight: 100;
    text-align: center;
    color: #ddd;
    margin-bottom: 20px;
}

.delete-btm {
    display: inline-block;
    vertical-align: middle;
    padding: 0 20px;
    height: 30px;
    font-size: 12px;
    border-radius: 2px;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
    color: blueviolet;
    border: 0;
    outline: 0;
    background: #fff;
}

#btm-btns {
    display: block;
    width: 100%;
    text-align: right;
    font-size: 0;
    padding: 20px;
}

#btm-btns button {
    display: none;
    vertical-align: middle;
    padding: 0 20px;
    height: 30px;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
    color: #fff;
    font-size: 12px;
    background: blueviolet;
    margin-left: 10px;
    border: 0;
    outline: 0;
    border-radius: 2px;
}

#btm-btns button.visible {
    display: inline-block;
}


/***************************************/

#add-person-btm {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
    background: rgba(205,92,92,.9);
    padding: 40px 0;
}

#add-person-btm .background-layer {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
}

#add-person-btm section {
    display: block;
    width: 400px;
    max-height: 100%;
    overflow: auto;
    margin: 0 auto;
    background: #fff;
    position: relative;
    z-index: 10;
}

#exit-btm-edit {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.5);
    padding: 7px;
    border: 0;
    outline: 0;
}

#exit-btm-edit.hidden {
    display: none;
}

#exit-btm-edit svg {
    display: block;
    width: 100%;
    height: 100%;
}

#exit-btm-edit svg polyline {
    fill: none;
    stroke: #fff;
    stroke-width: 3;
}

#btm-preview-image {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}

#choose-btm-image {
    display: block;
    width: 130px;
    height: 35px;
    margin: 30px 0;
    background: blueviolet;
    border: 0;
    outline: 0;
    font-size: 12px;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
    color: #fff;
    text-align: center;
    border-radius: 20px;
}

#add-person-btm .sub-container {
    display: block;
    width: 100%;
    padding: 0 20px;
}

#add-person-btm h2 {
    display: block;
    width: 100%;
    line-height: 20px;
    font-size: 16px;
    font-family: Poppins-Bold, sans-serif;
    font-weight: bold;
    color: #222;
    text-align: left;
    margin-bottom: 5px;
}

#add-person-btm input {
    display: block;
    width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: transparent;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
    color: #222;
    font-size: 14px;
    padding: 0 15px;
    margin-bottom: 20px;
}

#add-person-btm textarea {
    display: block;
    width: 100%;
    height: 100px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: transparent;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
    color: #222;
    font-size: 14px;
    padding: 15px;
    margin-bottom: 20px;
}

#save-btm {
    display: inline-block;
    padding: 0 30px;
    height: 40px;
    background: blueviolet;
    border: 0;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
    margin-bottom: 20px;
}

#cancel-btm-edit {
    display: inline-block;
    padding: 0 30px;
    height: 40px;
    background: #ddd;
    border: 0;
    color: #222;
    text-align: center;
    font-size: 14px;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
    margin-left: 10px;
    margin-bottom: 20px;
}

#cancel-btm-edit.hidden {
    display: none;
}

@media only screen and (max-width: 500px){
    
    #add-person-btm {
        padding: 0;
        background: #fff;
    }
    
    #add-person-btm section {
        width: 100%;
        min-height: 100%;
    }
    
}








/******************************************/

#subs-btn {
    display: block;
    width: 200px;
    line-height: 50px;
    border-radius: 3px;
    background: blueviolet;
    color: #fff;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
    text-align: center;
    margin: 100px auto;
    border: 0;
    font-size: 14px;
}

#subscribers {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 40px 0;
    background: rgba(0,0,0,.9);
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
}

#subscribers .background-layer {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
}

#subscribers section {
    display: block;
    width: 400px;
    height: 100%;
    overflow: hidden;
    background: #fff;
    position: relative;
    z-index: 10;
    margin: 0 auto;
}

#subs-header {
    display: block;
    width: 100%;
    height: 60px;
    border-bottom: 1px solid #ddd;
    position: absolute;
    z-index: 10;
    background: #fff;
    top: 0;
    left: 0;
    padding-right: 20px;
}

#exit-subs {
    display: block;
    width: 60px;
    height: 60px;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 20px;
}

#exit-subs svg {
    display: block;
    width: 100%;
    height: 100%;
}

#exit-subs polyline {
    fill: none;
    stroke: #444;
    stroke-width: 3;
}

#subs-header h1 {
    display: block;
    width: 100%;
    line-height: 60px;
    position: relative;
    z-index: 1;
    padding-left: 60px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: Poppins-Bold, sans-serif;
    font-weight: bold;
    color: #222;
    font-size: 20px;
    text-align: left;
}

#emails {
    display: block;
    width: 100%;
    padding: 60px 0 50px 0;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

#emails .sub-container {
    display: block;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 0 20px;
}

#subs-loading {
    display: block;
    width: 200px;
    margin: 0 auto;
}

.email {
    display: block;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #ddd;
    padding: 20px 40px 20px 0;
}

.delete-email {
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    z-index: 10;
    top: 20px;
    right: 0;
    padding: 10px;
    border: 0;
    outline: 0;
    background: transparent;
}

.delete-email svg {
    display: block;
    width: 100%;
    height: 100%;
}

.delete-email polyline {
    fill: none;
    stroke: #444;
    stroke-width: 2;
}

.email-address {
    display: block;
    width: 100%;
    line-height: 25px;
    font-size: 16px;
    text-align: left;
    font-family: Poppins-Bold, sans-serif;
    font-weight: bold;
    color: #444;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.subs-at {
    display: block;
    width: 100%;
    line-height: 15px;
    font-size: 12px;
    text-align: left;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
    color: #777;
    text-align: left;
}

#no-subscribers {
    display: block;
    width: 100%;
    text-align: center;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
    color: #444;
    font-size: 14px;
    margin-top: 50px;
}

#load-more-emails {
    display: none;
    width: 100%;
    height: 50px;
    position: absolute;
    z-index: 10;
    background: #fff;
    border: 0;
    outline: 0;
    border-top: 1px solid #ddd;
    text-align: center;
    bottom: 0;
    left: 0;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
    color: #222;
    font-size: 14px;
    text-transform: uppercase;
}

#load-more-emails.visible {
    display: block;
}

@media only screen and (max-width: 500px){
    
    #subscribers {
        padding: 0;
        background: #fff;
    }
    
    #subscribers section {
        width: 100%;
    }
    
}

















