/*Social Share buttons*/
blockquote {
    background-color: #fff!important;
    box-shadow: 0 2px 14px -4px rgb(0 0 0 / 20%);
    border-radius: 6px;
    margin: 13px 0!important;     
    padding: 20px!important;
    text-align: center;
    display: block;
    border:none!important;
}
blockquote::before {
    content: none!important;
}
blockquote p {
    text-align: center;
    font-weight: 700;
    margin: 0 auto!important;
    width: 100%;
    padding: 0!important;
    font-style: normal;
    color: #212121!important;
    font-size: 18px!important;
    margin-bottom: 0px!important;
    margin-top: 0px!important;
}
.social-share-buttons{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1em;
    border-image: linear-gradient(to right,transparent,#ccc,transparent);
    border-image-slice: 8;
    border-top: 1px solid;
    padding-top: 18px;
}

.social-share-buttons a {
    color: #fff!important;
    width: 50px;
    height: 35px;
    line-height: 35px;
    margin-right: 6px;
    text-decoration: none!important;
    place-items: center;
    place-content: center;
    border-radius: 15px;
    text-align: center;
    display: grid;
    font-size: 17px;
    transition: background-color 900ms linear;   
}
.social-share-buttons a i{color: #fff!important;}
.social-share-buttons a:hover {
    background-color: #555;color: #fff;
}
/*Copy button*/
.copy-button {
    background: #c50900 ;
    color: #fff!important;
    text-align: center;
    font-weight: 600;
    border-radius: 20px;
    border: none;
    width: 75px;
    text-transform: uppercase;
    height: 35px;
    font-size: 16px!important;
    font-style: normal;
    line-height: 35px;
    cursor: pointer;
    transition: background-color 100ms linear;

}
a.icon_facebook {
    background: #3b5998;
    border: 1px solid #3b5998;
}
a.icon_twitter {
    background: #32afed;
    border: 1px solid #32afed;
}
a.icon_telegram {
    border: 1px solid #229ED9;
    background: #229ED9;
}
a.icon_whatsapp {
    background: #0f9806;
    border: 1px solid #0f9806;
}
.copy-button:hover {
    background-color: 002C54;
}
.copied {
    background: #28a745!important; /* Green */
    color: #fff;
    z-index: 5;font-size: 14px;
}
a.icon_download{background: blueviolet;}
@media (max-width: 480px){
    .social-share-buttons a{
        font-size: 14px;
        width: 40px;
   border-radius: 6px;
    }
    .copy-button{height: 35px;}
}
@media (max-width: 760px){
    blockquote p{width: 100%;}
}

    