/**
 * Theme Name: Customify Child
 * Template:   customify
 * ...other header fields
 */


@font-face { 
    font-family: twitter-chirp; 
	src: url('https://abs.twimg.com/fonts/chirp-regular-web.woff'); 
} 

@font-face {
    font-family: twitter-chirp-bold;
    src: url('https://abs.twimg.com/fonts/chirp-bold-web.woff');
}

.twitter-container {
    font-size:18px;
    height:auto;
    width: 430px;
    margin-right:15px;
    margin:10px;
    padding:10px;
    border:1px solid rgb(227, 227, 227);
    border-radius:15px;
    display:flex;
    flex-direction:row;
    gap:10px;
    transition:0.5s;
    background-color:white;
    cursor:pointer;
    font-family: twitter-chirp;
}

.twitter-profile-name {
    font-family: twitter-chirp-bold;
    color: black;
}

.twitter-profile-date {
    display: inline-block;
}

.twitter-profile-date-2 {
    font-family: twitter-chirp;
    color: #566570;
    margin-top:7px;
    margin-bottom: 7px;
    display: none;
}

.twitter-container:hover {
    background-color:rgb(227, 227, 227);
    transition:0.5s;
}

.twitter-profile-pic {
    width:40px;
    height:40px;
    border:1px solid rgb(227, 227, 227);
    border-radius:50%;
}

.twitter-full-content {
    display:flex;
    flex-direction:column;
    margin-right:10px;
}

.twitter-footer-content {
    display:flex;
    flex-direction:row;
    width:95%;
    padding-top:25px;
    padding-bottom:15px;
    gap:30px;
    justify-content:space-between;
}

.twitter-footer-main {
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    flex:0.6;
}

.twitter-footer-secondary {
    display:flex;
    flex-direction:row;
    justify-content: space-between;
    gap:5px;
    flex:0.1;
}

.twitter-img-content {
    width:70%;
    border-radius:15px;
}

.twitter-footer-icon {
    font-size:18px !important;
}

.twitter-profile-lbrk {
    display: none;
    margin-top:-2px !important;
    margin-bottom: 0 !important;
    padding-top:0 !important;
    padding-bottom:0 !important;
    line-height:normal !important;
}

.twitter-view-more {
    margin-top:20px;
    padding-bottom:5px;
    padding-top:5px;
    margin-bottom:20px;
    border:1px solid #60abe0;
    color:#60abe0;
    font-size:20px;
    width:430px;
    margin-left:10px;
    text-align:center;
    border-radius:15px;
    transition:0.5s;
}

.twitter-view-more:hover {
    background-color: #60abe0;
    color: white;    
    transition: 0.5s;
}

@media screen and (max-width: 1615px) {
    .twitter-container {
        width: 350px;
        font-size: 15px;
    }

    .twitter-img-content {
        width: 50%;
    }

    .twitter-profile-date {
        display: none;
    }

    .twitter-profile-date-2 {
        display:block;
    }

    .twitter-footer-main {
        visibility: hidden;
    }

    .twitter-profile-lbrk {
        display: block;
    }

    .twitter-view-more {
        width: 350px;
        font-size:17px;
    }

    .twitter-profile-pic {
        width: 35px;
        height: 35px;
    }
}

@media screen and (max-width: 1420px) {
    .twitter-container {
        width: 250px;
        font-size: 13px;
    }

    .twitter-img-content {
        width: 40%;
    }

    .twitter-profile-date {
        display: none;
    }

    .twitter-profile-date-2 {
        display:block;
    }

    .twitter-footer-main {
        visibility: hidden;
    }

    .twitter-profile-lbrk {
        display: block;
    }

    .twitter-view-more {
        width: 250px;
        font-size:15px;
    }

    .twitter-profile-pic {
        width: 35px;
        height: 35px;
    }
}

@media screen and (max-width: 76em) {
    .twitter-container {
        width: 70% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }


    .twitter-view-more {
        width: 40% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}