﻿@media screen and (min-width:1024px) {
    #CommentsFooter {
        border: solid 0px red;
        padding: 8px 20px 20px 0;
        font-family: Roboto, sans-serif;
        font-size: 12px;
        text-align: right;
    }
    #LoginFooter {
        display: block;
        font-family: 'Roboto', sans-serif;
        font-size: 14px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: 0.10px;
        padding: 10px 0 140px 0;
        text-align: center;
    }
    #LoginFooterMobile {
        display: none;
    }
}

@media screen and (max-width:1023px) {
    #FooterBar {
        display: none;
    }

    #copyright {
        border: solid 1px red;
        float: right;
        font-size: 12px;
        padding: 5px 10px 0 10px;
        text-align: center;
        width: 100%;
    }
    #copyrightBreak,
    #copyrightWebsite {
        display: none;
    }
    #LoginFooter {
        display: none;
    }
    #LoginFooterMobile {
        display: block;
        font-size: 11px;
        padding: 20px;
        text-align: center;
        visibility: visible;
    }
    /* Between 768px and 1023px for Small Tablets/Large Phones */
    @media screen and (min-width:768px) and (max-width:1023px) {
        #CommentsFooter {
            border: solid 0px red;
            padding: 5px 5px 10px 5px;
            font-size: 12px;
            text-align: center;
        }
    }
    /* Between 441px and 767px for Large Phones */
    @media screen and (min-width:441px) and (max-width:767px) {
        #CommentsFooter {
            border: solid 0px red;
            padding: 5px 5px 10px 5px;
            font-size: 11px;
            text-align: center;
        }
    }
    /* Less than 441px for older/smaller phones */
    @media screen and (max-width:440px) {
        #CommentsFooter {
            border: solid 0px red;
            padding: 5px 5px 10px 5px;
            font-size: 11px;
            text-align: center;
        }
        #copyright {
            font-size: 10px;
            padding: 7px 0 0 0;
        }
    }
}