

.selector-map{
    max-height: 40em;
    object-fit: contain;
}

.selector-inner {
    border: solid 1px #c0c0c0;
    margin: 1em;
      margin-top: 1em;
    border-radius: 0.5em;
    padding: 0em 0.75em 0.75em 0.75em;
    min-width: 12em;
  }

.selector-form {
    background-color: #fefefe;
    margin: auto;
    padding: 0.3em;
    width: fit-content;
    border-radius: 0.42em;
}

.new-modal-container-out {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    animation-name: fadeOut;
    animation-duration: 0.4s;
}


.resource-type-root{
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding-left: 1em;
    padding-top: 2em;
}
.resource-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 100%;
}

.resource-3-col{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    
    gap: 8em;
    min-width: 56em;
    width: min-content;
}

.resource-col{
    display: flex;
    flex-direction: column;
    
}

.resource-col-category{
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    row-gap: 6em;
    align-items: center;

    background-color: #157B62;
    margin-bottom: 1.2em;

    padding-left: 1.5em;
    padding-right: 1em;

    border-radius: 1.2em;
}

.resource-cat-title{
    color: #F9EDDC;
    font-weight: bold;
    
    font-size: 1.7em;
    padding-right: 0.4em;
    padding-bottom: 0.2em;
    border-bottom: solid 2px #F9EDDC;
}

.resource-element-image{
    border-top-left-radius: 1.2em;
    border-top-right-radius: 1.2em;

}
.resouce-col-listing{
    display: flex;
    flex-direction: column;
    gap: 2.5em;
}
.resource-element-container{
    background-color: var(--back);
    border-radius: 1.2em;

    display: flex;
    flex-direction: column;

    width: min-content;

    gap: 0.25em;
    
    box-shadow: 7px 7px 9px -1px rgba(0,0,0,0.47);
}

.resource-element-details{
    padding: 0.5em 1em;
    display:  flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
}

.resource-element-type{
    color: #157B62;
    font-weight: bold;
    font-size: 0.9em;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.8em;
}
.resource-element-title{
    columns: black;
}

.resource-element-link{
    text-decoration: none;
    font-weight: lighter;
    color: #157B62;
    font-size: 1.2em;
}

.resource-detail-audio-title{
    font-size: 1.6em;
    color: #157B62;

}
.resource-detail-element-container {
    display: flex;
    flex-direction: column;
    min-width: 56em;
    width: min-content;
    border-radius: 0.4em;
    margin: 1em 0.2em;
    padding: 0 0 2em 0;
    
    /* box-shadow: 0px 0px 5px 0px #c0c0c0; */
    box-shadow: 7px 7px 9px -1px rgba(0,0,0,0.47);


    background-color: rgb(249, 242, 232);
    
    border-top-left-radius: 1.2em;
    border-top-right-radius: 1.2em;

    position: relative;
}

.resource-detail-article-body{
    padding: 2em;

    display: flex;
    flex-direction: column;
    gap: 0.5em;
}
.resource-detail-article-body > p {
    margin: 0;
    
}
.resource-detail-article-body > h3 {
    margin: 0;
    margin-top: 2em;
    
}

.resource-detail-audio-summary{
    padding: 2em;

}
.resource-detail-audio{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 2em;
    margin-bottom: 2em;
}
.resouce-detail-audio-player{
    min-width: 32em;
}
.resource-detail-audio-links{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 0.5em;
}
.resource-detail-audio-hosts{
    padding: 2.3em;

}
.resource-detail-title{
    color: var(--accent-green);

    font-size: 2em;
    font-weight: bold;

    position: absolute;
    top: 4em;
    right: 0.5em;

    background-color: rgba(249, 242, 232, 0.80);
    border: solid 1px rgb(249, 242, 232);

    padding: 0.5em 0.4em;
}


.resource-detail-element-image{
    border-top-left-radius: 1.2em;
    border-top-right-radius: 1.2em;

}

.resource-detail-transcript-body{
    padding: 2em;
    
}