 
/* product and shop link section */ 
#platform_links_section_wrapper {
    width: 100vw;
    height:100vh;
    background-color: rgba(7, 7, 7, 0.918);
    position: fixed;
    left:0;
    top:0;
    z-index: 999999999;
}
#platform_links_section {
    box-sizing: border-box;
    background-color: var(--bg-secondary);
    border-radius: 7px;
    border-width: 0;
    padding: 10px;
    width:95vw;
    max-width: 350px;
    min-width: 250px;
    min-height:200px;
    margin: auto;
    margin-top:75px
}
#platform_links_section_closer {
     display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding-right:15px;
    margin-bottom: 15px;
}
#platform_links_section_closer span {
    cursor: pointer;
}
#platform_links_section_closer span:hover {
    font-weight:bold
}
#platform_links_section_selectors {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    border:0 solid lightgray;
    border-bottom-width: 1px;
    padding-bottom: 10px;
}
#platform_links_section_selectors span{
    padding-right:25px;
    font-size: 13px;
    cursor: pointer;
}
#platform_links_section_selectors .active {
    color:rgb(0, 140, 230); 
    font-weight: bold;
}
#platform_links_section_selectors span:not(.active){
    font-weight:bold
}
#platform_links_section_wrapper .link_type_section_wrapper{
    margin-top:15px;
}
#platform_links_section_wrapper .link_type_section_wrapper img {
    width: 150px;
}
#platform_links_section_wrapper .link_type_section_wrapper input[type='text'],#platform_links_section_wrapper .link_type_section_wrapper textarea{
    border:1px solid lightgray;
    border-radius: 5px;
    padding: 7px 10px;
    font-size: 12px;
    width:95%;
}
#platform_links_section_wrapper .link_type_section_wrapper textarea{
    min-height:50px;
    height:max-content;
    max-height:75px;
    overflow-y: auto;
    line-height:1.6em
}
#platform_links_section_wrapper .link_copy_and_download_section {
    text-align: right;
    margin-top:10px
}
#platform_links_section_wrapper .link_copy_and_download_section span {
    padding:5px 15px;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
    border-radius: 3px;
    background-color: var(--bg-secondary);
    color: var(--text-secondary);
}
