/* BR換行 */
@media (min-width: 769px) {
    .mobile-break {
        display: none;
    }
    .mobile-break2 {
        display: none;
    }
}
@media (max-width: 768px) {
    .mobile-break {
        display: block;
        margin-top: -1.8em;
        /* margin-bottom: 0.2em; */
    }
    .mobile-break2 {
        display: none;
    }
}

/* ------------------------------------------------- */
/* 分享到社群 */
.styled-link {
    display: inline-block;
    margin: 5px;
    padding: 2px 15px;
    background-color: rgba(66, 103, 178, 0.226);
    color: white;
    text-decoration: none;
    border-radius: 13px;
    font-size: 14px;
}

.styled-link:hover {
    background-color: #1d2941;
}
.styled-link img {
    vertical-align: middle;
    margin-top: -4px;
    margin-left: 3px;
}
/* 分享按鈕靠右 */
.button-container {
    text-align: right;
}
.button-container a {
    font-size: 14px;
}


.modal-share {
    display: none;
    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); 
}

.modal-share-content {
    background-color: #151518;
    margin: 100px auto 0;
    padding: 20px;
    border: 2px solid #888;
    /* width: 80%; */
    text-align: left;
    border-radius: 10px;
}

@media (min-width: 768px) {
    .modal-share-content {
        width: 650px;
    }
}
@media (max-width: 769px) {
    .modal-share-content {
        width: 95%;
    }
}

.close-share {
    color: #aaa;
    float: right;
    font-size: 50px;
    font-weight: bold;
    margin-top: -30px;
}

.close-share:hover,
.close-share:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}