html, body {
    background: #F4F8F9;
}

.news .title {
    font-weight: 700;
    font-size: 32px;
    line-height: 19px;
}

.news .content {
    margin-top: 52px;
}

.news .media h5 {
    font-weight: 700;
    font-size: 18px;
    line-height: 19px;
}

.news .media .date {
    display: block;
    font-weight: 700;
    font-size: 14px;
    line-height: 19px;
    color: #33A3DC;
}

.news .media p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-top: 8px;
}

.news .media {
    margin-bottom: 20px;
}

.news .media img {
    max-width: 310px;
}

.news .media .media-body {
    position: relative;
}

.news-type {
    padding: 6px 20px;
    border-top: 2px solid #f15a22;
    min-height: 250px;
    background-color: #ffffff;
}

.news-type .title {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #F15A22;
}

.news-type .types {
    padding-left: 10px;
    margin-top: 14px;
}

.news-type .types li {
    list-style-type: none;
    margin-bottom: 13px;
}

.news-type .types li span {
    padding-left: 30px;
}

.news-type .check_box {
    display: none;
}

.news-type .check_box + label {
    background: url('../images/icons/checkbox-empty.svg') no-repeat;
    height: 19px;
    width: 18px;
    display: inline-block;
    padding: 0 0 0 0px;
}

.news-type .check_box:checked + label {
    background: url('../images/icons/checkbox-checked.svg') no-repeat;
    height: 19px;
    width: 18px;
    display: inline-block;
    padding: 0 0 0 0px;
}


.ph-main-wrapper {
    display: none;
}

.ph-img {
    display: inline-flex;
    width: 37%;
    height: 230px;
    background: #ebebec;
    -webkit-animation: placeHolderSwept 1s infinite linear forwards;
    -moz-animation: placeHolderSwept 1s infinite linear forwards;
    -o-animation: placeHolderSwept 1s infinite linear forwards;
    animation: placeHolderSwept 1s infinite linear forwards;;
    background-image: linear-gradient(to right, #ebebec 0%, #e0e0e2 20%, #ebebec 40%, #ebebec 100%);
    background-repeat: no-repeat;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.ph-content {
    width: 60%;
    height: 230px;
    display: inline-block;
}

.ph-content .line {
    display: block;
    margin-bottom: 10px;
    width: 100%;
    height: 30px;
    background: #ebebec;
    -webkit-animation: placeHolderSwept 1s infinite linear forwards;
    -moz-animation: placeHolderSwept 1s infinite linear forwards;
    -o-animation: placeHolderSwept 1s infinite linear forwards;
    animation: placeHolderSwept 1s infinite linear forwards;;
    background-image: linear-gradient(to right, #ebebec 0%, #e0e0e2 20%, #ebebec 40%, #ebebec 100%);
    background-repeat: no-repeat;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.ph-content .line:nth-child(2) {
    width: 30%;
}

.placeholder-wrapper {
    position: relative;
    height: 230px;
    background: #F4F8F9;
    background-repeat: no-repeat;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

@-webkit-keyframes placeHolderSwept {
    0% {
        background-position: -400px 0
    }
    100% {
        background-position: 400px 0
    }
}

@-moz-keyframes placeHolderSwept {
    0% {
        background-position: -400px 0
    }
    100% {
        background-position: 400px 0
    }
}

@-o-keyframes placeHolderSwept {
    0% {
        background-position: -400px 0
    }
    100% {
        background-position: 400px 0
    }
}

@keyframes placeHolderSwept {
    0% {
        background-position: -400px 0
    }
    100% {
        background-position: 400px 0
    }
}