.timer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: #b8433f;
    text-align: center;
    color: #ffffff;

    transition: opacity .3s;
    opacity: 0;
    pointer-events: none;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    z-index: 1000;
}

@media (max-width: 500px) {
    .timer {
        max-width: 100%;
        padding: 10px 0;
    }
}

.timer--show {
    opacity: 1;
    pointer-events: auto;
}

.timer span {
    font-size: 22px;
    color: #ffffff;
}

.count {
    white-space: nowrap;
    margin: 0 10px;
}

.alert {
    box-shadow: 1px 1px 5px 2px #000;
    position: fixed;
    top: 10px;
    right: 10px;
    padding: 5px;
    max-width: 450px;
    background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
    transition: opacity .3s;
    opacity: 0;
    border-radius: 10px;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
}

.alert--show {
    opacity: 1;
    pointer-events: auto;
}

.alert__img {
    max-height: 50px;
    padding: 0;
    display: inline-block;
    margin-right: 5px;
}




/*COMMENTS STYLES*/

.like,
.reply {
    color: #365899;
    font-size: 13px;
    cursor: pointer;
    margin-right: 10px;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.like:hover,
.reply:hover {
    text-decoration: underline
}

.like:after,
.reply:after {
    content: " · ";
    position: absolute;
    font-weight: 700;
    right: -10px;
    top: 0;
    color: #90949c
}

* {
    outline: 0
}

.com_wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.img_me {
    width: 48px;
    margin-right: 8px;
}

.img_me img {
    /*max-width: 50px;*/
    width: 48px;
    max-width: 48px;
}

.me_name {
    color: #365899;
    text-decoration: none;
    font-weight: 700;
}

.me_sub-text {
    display: flex;
    align-items: center;
}

.like_img svg {
    color: #365899;
    height: 12px;
    margin-right: 5px;
    margin-left: 2px;
}

.me_sub-text {
    font-size: 12px;
    color: #90949c;
}

.me_sub-text a {
    font-size: 12px;
    font-weight: normal;
}

.data-text {
    margin-left: 3px;
}

.like-text {
    margin-right: 3px;
}

.reply {
    margin-left: 3px;
}

.answer_com {
    margin-left: 50px;
}

.fa-heart {
    color: white;
    width: 12px !important;
}

.answer_com {
    border-left: 1px dotted lightgray;
    padding-left: 5px;
}

button.create-com-btn {
    cursor: pointer;
    border: 1px solid;
    border-radius: 2px;
    box-sizing: content-box;
    -webkit-font-smoothing: antialiased;
    font-weight: 700;
    padding: 0 8px;
    position: relative;
    text-align: center;
    text-shadow: none;
    vertical-align: middle;
    color: #fff;
    line-height: 22px;
    font-size: 14px;
    white-space: normal;
    background-color: #4c80cd;
    border-color: #9cb4d8;
}

.left-create {
    max-width: 50px;
}

.create_com {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 30px;
}

.left-btn-section {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.left-create img {
    padding: 0;
}

.left-create {
    margin-right: 7px;
}

textarea._1cb._1u9t {
    font-size: 14px;
    padding: 12px 8px;
    border: 1px solid #d3d6db;
    word-wrap: break-word;
    width: 100%;
}

.rigth-create {
    width: 100%;
}

.rigth-create {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.create-btn-sec {
    background: #f6f7f9;
    text-align: right;
    padding: 8px;
    width: 100%;
}

.create-btn-sec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #90949c;
}

.comment-img {
    display: block;
    margin-bottom: 6px;
}

.me_com {
    margin-bottom: 10px;
}

.link__main {
    display: block;
    margin: 40px auto;
    padding: 20px;
    font-size: 20px;
    background-color: #de0606;
    text-align: center;
    color: #fff !important;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none !important;
    animation: 1s pulse infinite alternate ease-in-out;
}


.me_comments .me_name, .me_comments .me_text {
    font-size: 14px;
}

.create_com input {
    font-size: 14px;
    padding: 4px 8px;
    border: 1px solid #d3d6db;
    width: 100%;
    margin-bottom: 8px;
}

.create_com input, .create_com textarea {
    box-sizing: border-box;
}