 Start by setting display:none to make this hidden.
   Then we position it in relation to the viewport window
   with position:fixed. Width, height, top and left speak
   for themselves. Background we set to 80% white with
   our animation centered, and no-repeating */

#animated-fade {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.modal2 {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .5) url('/assets/img/alt-loading.gif') 50% 50% no-repeat;
}

/* When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */

body.loading {
    overflow: hidden;
}

/* Anytime the body has the loading class, our
   modal element will be visible */

body.loading .modal {
    display: block;
}

/* Custom Lazyload */

.lazy {
    display: none;
}

/*Cubeportfolio
------------------------------------*/

.cube-portfolio:before,
.cube-portfolio:after {
    content: " ";
    display: table;
}
.cube-portfolio:after {
    clear: both;
}

/*Loading Box*/

.cube-portfolio .cbp-popup-singlePageInline .cbp-popup-loadingBox {
    border-radius: 50% !important;
}
.cbp-l-grid-agency .cbp-caption:after {
    border: none;
}

/*Overlays
------------------------------------*/


/*Default*/

.cube-portfolio .cbp-caption-zoom .cbp-caption-activeWrap {
    background: rgba(39, 58, 78, .6) !important;
}

/*Overlay Option v2*/

.cube-portfolio .cbp-caption-activeWrap.overlay-btm-v2 {
    background: rgba(39, 58, 78, .6) !important;
}

/*White Transparent*/

.cube-portfolio .cbp-caption-activeWrap.white-transparent-hover {
    background: rgba(255, 255, 255, .6) !important;
}

/*Dark Transparent*/

.cube-portfolio .cbp-caption-activeWrap.dark-transparent-hover {
    background: rgba(0, 0, 0, .6) !important;
}

/*Grenn Transparent*/

.cube-portfolio .cbp-caption-activeWrap.default-transparent-hover {
    background: rgba(114, 192, 44, .9) !important;
}
.cube-portfolio .cbp-caption-activeWrap.default-transparent-hover .link-captions i:hover {
    background: #333;
}

/*Filters*/

.cube-portfolio .cbp-l-filters-text {
    margin: inherit;
    padding: inherit;
}
.cube-portfolio .cbp-l-filters-text .cbp-filter-item {
    color: #555;
    text-transform: uppercase;
}
.cube-portfolio .cbp-l-filters-text .cbp-filter-item.cbp-filter-item-active,
.cube-portfolio .cbp-l-filters-text .cbp-filter-item:hover {
    color: #72c02c;
}
.cube-portfolio .cbp-l-filters-text .cbp-filter-counter {
    background: #72c02c;
}
.cube-portfolio .cbp-l-filters-text .cbp-filter-counter:before {
    border-top-color: #72c02c;
}

/*Pagination*/

.cube-portfolio .cbp-nav-pagination-item {
    border-radius: 50% !important;
}

/*Buttons*/

.cube-portfolio .cbp-l-caption-buttonLeft,
.cube-portfolio .cbp-l-caption-buttonRight {
    background: #72c02c;
}
.cube-portfolio .cbp-l-caption-buttonLeft:hover,
.cube-portfolio .cbp-l-caption-buttonRight:hover {
    background: #5fb611;
}

/*Titles*/

.cube-portfolio .cbp-l-grid-agency-title {
    color: #fff !important;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    word-wrap: break-word;
    text-overflow: initial;
    white-space: normal;
}
.cube-portfolio .cbp-l-grid-agency-desc {
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
}

/*Dark Titles*/

.cube-portfolio .cbp-title-dark .cbp-l-grid-agency-title {
    color: #444 !important;
}
.cube-portfolio .cbp-title-dark .cbp-l-grid-agency-desc {
    color: #555;
}

/*Link Captions*/

.cube-portfolio .link-captions {
    padding-left: 0;
    margin: 0 0 20px;
    list-style: none;
    text-align: center;
}
.cube-portfolio .link-captions li {
    padding: 0 2px;
    display: inline-block;
}
.cube-portfolio .link-captions li i {
    color: #444;
    width: 30px;
    height: 30px;
    padding: 8px;
    font-style: 14px;
    background: #fff;
    text-align: center;
    display: inline-block;
}
.cube-portfolio .link-captions li i:hover {
    color: #fff;
    background: #72c02c;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

/*404 Error Page v1
------------------------------------*/

.error-v1 {
    padding-bottom: 30px;
    text-align: center;
}
.error-v1 p {
    color: #555;
    font-size: 16px;
}
.error-v1 span {
    color: #555;
    display: block;
    font-size: 35px;
    font-weight: 200;
}
.error-v1 span.error-v1-title {
    color: #777;
    font-size: 180px;
    line-height: 200px;
    padding-bottom: 20px;
}

/*For Mobile Devices*/

@media (max-width: 500px) {
    .error-v1 p {
        font-size: 12px;
    }
    .error-v1 span {
        font-size: 25px;
    }
    .error-v1 span.error-v1-title {
        font-size: 140px;
    }
}

/*Registration and Login Page v1
------------------------------------*/

.reg-page {
    color: #555;
    padding: 20px;
    background: #fefefe;
    border: solid 1px #eee;
    *box-shadow: 0 0 3px #eee;
}

/*Reg Header*/

.reg-header {
    color: #555;
    text-align: center;
    margin-bottom: 35px;
    border-bottom: solid 1px #eee;
}
.reg-header h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

/*Reg Forms*/

.reg-page label {
    color: #777;
}

/*Profile
------------------------------------*/

.profile .list-group i {
    min-width: 20px;
    margin-right: 5px;
    text-align: center;
}
.profile .heading-sm-v2 {
    font-size: 16px;
}
.profile .profile-body {
    padding: 20px;
    background: #f7f7f7;
}

/*Scrollbar*/

.mCustomScrollbar-profile {
    height: 320px;
}

/*Panel Title Box*/

.profile .panel-profile {
    border: none;
    margin-bottom: 0;
    box-shadow: none;
}
.profile .panel-profile.no-bg {
    background: inherit;
}
.profile .panel-heading {
    color: #585f69;
    background: #fff;
    padding: 7px 15px;
    border-bottom: solid 3px #f7f7f7;
}
.profile .panel-heading-v2.overflow-h i.pull-right,
.profile .panel-heading.overflow-h i.pull-right {
    top: 7px;
    position: relative;
}
.profile .panel-heading-v2.overflow-h i.pull-right,
.profile .panel-heading.overflow-h a i {
    color: #777;
}
.profile .panel-heading-v2.overflow-h i.pull-right,
.profile .panel-heading.overflow-h a:hover i {
    color: #555;
}
.profile .panel-title {
    font-size: 16px;
}

/*Notification*/

.profile .notification {
    overflow: hidden;
    margin-bottom: 10px;
    padding: 15px 15px 0 0;
    border-top: 1px solid #eee;
}
.profile .notification:first-child {
    border-top: none;
}
.profile .notification img,
.profile .notification i {
    float: left;
    margin-right: 10px;
}
.profile .notification img {
    width: 35px;
    height: 35px;
}
.profile .notification span {
    color: #777;
    display: block;
}
.profile .notification small {
    color: #999;
    font-size: 11px;
}
.profile .notification h4 {
    margin: 0 0 3px;
    font-size: 14px;
}
.profile .notification p {
    color: #777;
    font-size: 12px;
}

/*Profile Post*/

.profile .profile-post {
    background: #fff;
    margin-bottom: 2px;
    padding: 7px 7px 7px 0;
}
.profile .profile-post.color-one {
    border-left: 2px solid #72c02c;
}
.profile .profile-post.color-two {
    border-left: 2px solid #3498db;
}
.profile .profile-post.color-three {
    border-left: 2px solid #e74c3c;
}
.profile .profile-post.color-four {
    border-left: 2px solid #9b6bcc;
}
.profile .profile-post.color-five {
    border-left: 2px solid #555;
}
.profile .profile-post.color-six {
    border-left: 2px solid #f1c40f;
}
.profile .profile-post.color-seven {
    border-left: 2px solid #27d7e7;
}
.profile .profile-post span.profile-post-numb {
    float: left;
    color: #999;
    font-size: 20px;
    font-weight: 200;
    padding: 5px 12px;
}
.profile .profile-post:hover span.profile-post-numb {
    color: #72c02c;
}
.profile .profile-post-in {
    overflow: hidden;
}
.profile .profile-post-in h3 a {
    color: #555;
    text-transform: uppercase;
}
.profile .profile-post-in p {
    color: #999;
    margin-bottom: 5px;
}

/*Profile Event*/

.profile .profile-event .heading-xs {
    margin-top: 0;
    text-transform: uppercase;
}
.profile .profile-event {
    background: #fff;
    padding: 10px 15px;
    margin-bottom: 2px;
}
.profile .profile-event p {
    color: #999;
    margin-bottom: 5px;
}
.profile .date-formats {
    color: #fff;
    float: left;
    text-align: center;
    background: #72c02c;
    margin: 7px 13px 0 0;
    padding: 7px 10px 4px;
}
.profile .date-formats span {
    display: block;
    font-size: 22px;
    font-weight: 200;
    line-height: 25px;
}

/*Table*/

.profile .table {
    background: #fff;
}
.profile .table th {
    min-width: 100px;
}
.profile .table td {
    vertical-align: middle;
}
.profile .table h3 {
    margin-top: 0;
    font-size: 16px;
    margin-bottom: 5px;
}
.profile .table a {
    color: #555;
}
.profile .table-search-v2 td img {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    display: block;
}
.profile .table>thead>tr>th,
.profile .table>tbody>tr>th,
.profile .table>tfoot>tr>th,
.profile .table>thead>tr>td,
.profile .table>tbody>tr>td,
.profile .table>tfoot>tr>td {
    padding: 11px;
}

/*Comment*/

.profile .comment {
    border-bottom: 1px solid #eee;
    padding: 15px 15px 5px;
}
.profile .comment img {
    float: left;
    width: 50px;
    height: 50px;
    margin-right: 15px;
}
.profile .comment strong {
    display: block;
    line-height: 15px;
    margin-bottom: 3px;
}
.profile .comment p {
    font-size: 12px;
    margin-bottom: 0;
    line-height: 17px;
}
.profile .comment small {
    color: #bbb;
    font-weight: 200;
}
.profile .comment-list li {
    color: #999;
    font-size: 11px;
}
.profile .comment-list li a {
    color: #555;
}
.profile .comment-list li a:hover {
    color: #555;
    text-decoration: none;
}
.profile .comment-list li:hover i {
    color: #72c02c;
}

/*Image Post*/

.profile .img-post {
    position: relative;
}
.profile .img-post:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: " ";
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
}
.profile .img-post-in {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    position: absolute;
}
.profile .img-post-in h3 {
    color: #fff;
    margin: 0 auto;
    font-weight: 200;
}
.profile .img-post-in small {
    color: #999;
    display: block;
    margin-bottom: 15px;
}
.profile .img-post-in p {
    color: #bbb;
}
.profile .img-post-list {
    margin-bottom: 0;
}
.profile .img-post-list li a,
.profile .img-post-list li a:hover {
    color: #fff;
    text-decoration: none;
}
.profile .img-post-list li a:hover i {
    color: #72c02c;
}

/*Media*/

.profile .media.media-v2 {
    margin-top: 0;
    padding: 25px 0 20px;
    border-top: 1px solid #eee;
}
.profile .media.media-v2:first-child {
    border-top: none;
}
.profile .media.media-v2 .media.media-v2 {
    margin-top: 20px;
    padding-bottom: 0;
}
.profile .media.media-v2 img.media-object {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

/*Media Body*/

.profile .media.media-v2 .media-body {
    overflow: hidden;
}
.profile .media.media-v2 .media-body p {
    color: #777;
    line-height: 1.4;
}

/*Media Heading*/

.profile .media.media-v2 .media-heading {
    margin: 0 0 5px;
    font-size: 13px;
    position: relative;
}
.profile .media.media-v2 .media-heading a,
.profile .media.media-v2 .media-heading a:hover {
    color: #555;
}
.profile .media.media-v2 .media-heading strong {
    padding-right: 5px;
}
.profile .media.media-v2 .media-heading small {
    top: 7px;
    right: 0;
    color: #999;
    font-size: 12px;
    position: absolute;
}

/*Results List*/

.profile .results-list {
    margin-top: 4px;
}
.profile .results-list li a {
    color: #999;
}

/*Expand List*/

.profile i.expand-list {
    color: #777;
    padding: 5px;
    min-width: 20px;
    font-size: 12px;
    text-align: center;
    display: inline-block;
    border: 1px solid #777;
}
.profile i.expand-list:hover {
    color: #999;
    border-color: #999;
}

/*Image Uploaded*/

.profile .img-uploaded img {
    width: 120px;
    height: auto;
}

/*Alert Blocks*/

.alert-blocks {
    margin: 0 15px 5px;
    background: #f7f7f7;
    padding: 10px 10px 13px;
}
.alert-blocks:first-child {
    margin-top: 15px;
}
.alert-blocks-pending {
    background: #fffdcc;
}
.alert-blocks-success {
    background: #e1febc;
}
.alert-blocks-pending {
    background: #fffdcc;
}
.alert-blocks-error {
    background: #fee0e0;
}
.alert-blocks-info {
    background: #e0f3fe;
}
.alert-blocks.alert-dismissable {
    padding-right: 35px;
}
.alert-blocks i {
    float: left;
    margin-right: 15px;
}
.alert-blocks img {
    float: left;
    width: 40px;
    height: 40px;
    margin-right: 15px;
}
.alert-blocks strong small {
    color: #a3a3a3;
    font-weight: 200;
}
.alert-blocks p {
    color: #999;
    margin-bottom: 0;
}

/*Profile Me
------------------------------------*/


/*Profile Biography*/

.profile .profile-bio {
    background: #fff;
    position: relative;
    padding: 15px 10px 5px 15px;
}
.profile .profile-bio a {
    left: 50%;
    bottom: 20px;
    margin-left: -60px;
    text-align: center;
    position: absolute;
}
.profile .profile-bio h2 {
    margin-top: 0;
    font-weight: 200;
}
.profile .profile-bio span {
    display: block;
}
.profile .profile-bio hr {
    margin: 12px 0 10px;
}
.profile .p-chart {
    text-align: center;
}
.profile .p-chart h3 {
    line-height: 20px;
    margin-bottom: 10px;
}

/*Circle in Responsive*/

@media (max-width: 450px) {
    .p-chart.col-xs-6 {
        width: 100%;
    }
}

/*Timeline*/

.profile .timeline-v2.timeline-me:before {
    left: 19%;
}
.profile .timeline-v2.timeline-me p {
    margin-bottom: 0;
}
.profile .timeline-v2.timeline-me>li .cbp_tmtime {
    width: 27%;
}
.profile .timeline-v2.timeline-me>li .cbp_tmicon {
    left: 19%;
}
.profile .timeline-v2.timeline-me>li .cbp_tmtime span:first-child {
    color: #585f69;
    font-size: 16px;
    text-align: left;
    line-height: 20px;
}
.profile .timeline-v2.timeline-me>li .cbp_tmtime span:last-child {
    color: #999;
    font-size: 14px;
    text-align: left;
}
.profile .timeline-v2.timeline-me>li .cbp_tmlabel {
    padding: 0;
    background: inherit;
    margin: 0 0 20px 23%;
}
.profile .timeline-v2.timeline-me>li .cbp_tmlabel:after {
    border-color: inherit;
}
.profile .timeline-v2.timeline-me>li .cbp_tmlabel h2 {
    margin: 0 auto;
    font-size: 17px;
    line-height: 20px;
    border-bottom: none;
}

/*Social Contacts v2*/

.profile .social-contacts-v2 {
    margin-bottom: 0;
}
.profile .social-contacts-v2 li {
    padding: 7px 0;
    border-top: 1px solid #f0f0f0;
}
.profile .social-contacts-v2 li:first-child {
    border-top: none;
}
.profile .social-contacts-v2 li i {
    font-size: 16px;
    min-width: 25px;
    margin-right: 7px;
    text-align: center;
    display: inline-block;
}
.profile .social-contacts-v2 li i.tw {
    color: #159ceb;
}
.profile .social-contacts-v2 li i.fb {
    color: #4862a3;
}
.profile .social-contacts-v2 li i.sk {
    color: #00aceb;
}
.profile .social-contacts-v2 li i.gp {
    color: #dc4a38;
}
.profile .social-contacts-v2 li i.gm {
    color: #c6574b;
}

/*Social Contacts v3*/

.profile .social-contacts-v3 {
    margin-bottom: 0;
}
.profile .social-contacts-v3 li {
    padding: 12px 0;
    border-top: 1px solid #f0f0f0;
}
.profile .social-contacts-v3 li:first-child {
    padding-top: 0;
    border-top: none;
}
.profile .social-contacts-v3 li:last-child {
    padding-bottom: 0;
}
.profile .social-contacts-v3 li i {
    color: #fff;
    width: 25px;
    height: 25px;
    line-height: 25px;
    margin-right: 7px;
    text-align: center;
    display: inline-block;
}
.profile .social-contacts-v3 li i.tw {
    background: #159ceb;
}
.profile .social-contacts-v3 li i.fb {
    background: #4862a3;
}
.profile .social-contacts-v3 li i.sk {
    background: #00aceb;
}
.profile .social-contacts-v3 li i.gp {
    background: #dc4a38;
}
.profile .social-contacts-v3 li i.gm {
    background: #c6574b;
}

/*Profile Blog
------------------------------------*/

.profile .blog-border {
    border: 1px solid #f0f0f0;
}
.profile .profile-blog {
    padding: 20px;
    background: #fff;
}
.profile .profile-blog img {
    float: left;
    width: 50px;
    height: 50px;
    margin-right: 20px;
}
.profile .profile-blog hr {
    margin: 12px 0 10px;
}
.profile .name-location {
    overflow: hidden;
}
.profile .name-location strong {
    color: #555;
    display: block;
    font-size: 16px;
}
.profile .name-location span a {
    color: #555;
}
.profile .name-location span a:hover {
    color: #72c02c;
}
.profile .name-location span i {
    color: #72c02c;
    font-size: 18px;
    margin-right: 5px;
}

/*Profile Projects
------------------------------------*/

.profile .projects {
    background: #fff;
    padding: 20px 20px 10px;
}
.profile .projects h2 {
    margin: 0 0 5px;
    font-size: 22px;
    font-weight: 200;
}
.profile .projects h3 {
    margin-bottom: 5px;
}
.profile .projects .progress {
    margin-bottom: 15px;
}
.profile .blog-info-v2 {
    margin-left: 0;
    margin-bottom: 15px;
}
.profile .blog-info-v2 li {
    font-size: 12px;
    padding-left: 8px;
    line-height: 12px;
    border-left: 1px solid #eee;
}
.profile .blog-info-v2 li:first-child {
    padding-left: 0;
    border-left: none;
}
.profile .blog-info-v2 li i {
    margin-right: 3px;
}
.profile .project-share {
    overflow: hidden;
    background: #fff;
    padding: 10px 20px;
    border-top: 1px solid #eee;
}
.profile .project-share ul {
    margin-left: 0;
    margin-bottom: 0;
}
.profile .comment-list-v2 li {
    color: #999;
    font-size: 14px;
    padding: 0 10px 0 0;
}
.profile .comment-list-v2 li a {
    color: #555;
}
.profile .comment-list-v2 li i {
    margin-right: 3px;
}
.profile .comment-list-v2 li a:hover {
    color: #555;
    text-decoration: none;
}
.profile .comment-list-v2 li:hover i {
    color: #72c02c;
}
.profile .star-vote li {
    padding: 0;
    font-size: 15px;
}

/*Profile History
------------------------------------*/

.profile .timeline-v2:before {
    background: #eee;
}
.profile .timeline-v2>li .cbp_tmlabel {
    background: #fff;
}
.profile .timeline-v2>li .cbp_tmlabel:after {
    border-right-color: #fff;
}
@media screen and (max-width: 767px) {
    .profile .timeline-v2>li .cbp_tmlabel:after {
        border-bottom-color: #fff;
        border-right-color: transparent;
    }
}
@media screen (min-width: 768px) and (max-width: 992px) {
    .profile .timeline-v2>li .cbp_tmlabel:after {
        border-bottom-color: #fff;
        border-right-color: transparent;
    }
}

/*Profile Settings
------------------------------------*/


/*Profile Edit*/

.profile .profile-edit {
    padding: 20px;
    background: #fff;
}
.profile .profile-edit h2 {
    font-weight: 200;
}
.profile .profile-edit dt {
    text-align: inherit;
}
.profile .profile-edit hr {
    margin: 17px 0 15px;
}

/*Tab*/

.profile .tab-content {
    padding: 0;
}
@media (max-width: 768px) {
    .profile .tab-v1 .nav-tabs {
        border-bottom: none;
    }
}

/*Sky Form*/

.profile .sky-form {
    border: none;
}
.profile .sky-form .toggle-change i {
    left: 180px;
}

/*Sidebar Features
------------------------------------*/


/*Page Styles*/

.magazine-page h3,
.magazine-page h3 a {
    color: #555;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 1px;
    text-decoration: none;
}
.magazine-page h3 a:hover {
    color: #72c02c;
}
.magazine-page span.magazine-badge {
    top: 0;
    left: 0;
    color: #fff;
    font-size: 14px;
    padding: 2px 8px;
    position: absolute;
    font-style: inherit;
}
.magazine-page span.magazine-badge-default {
    background: #7f8c8d;
}
.magazine-page span.magazine-badge-red {
    background: #e74c3c;
}
.magazine-page span.magazine-badge-green {
    background: #2ecc71;
}
.magazine-page span.magazine-badge-blue {
    background: #3498db;
}

/*Magazine News*/

.magazine-news {
    margin-bottom: 20px;
}
.magazine-news h3 {
    margin: 15px 0 10px;
}
.magazine-news .by-author strong {
    color: #72c02c;
}
.magazine-news .by-author span {
    color: #777;
}
.magazine-news a.read-more {
    color: #72c02c;
}
.magazine-news .by-author {
    margin-bottom: 8px;
}
.magazine-news-img {
    overflow: hidden;
    max-height: 200px;
    position: relative;
}

/*Magazine Mini News*/

.magazine-mini-news .post-author {
    font-size: 11px;
}
.magazine-mini-news h3,
.magazine-mini-news h3 a {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 6px;
}
.magazine-mini-news .post-author {
    margin-bottom: 8px;
}
.magazine-mini-news .post-author span {
    color: #555;
}
.magazine-mini-news .post-author strong {
    color: #72c02c;
}
.news-read-more {
    margin: 20px 0;
}
.news-read-more a {
    font-size: 14px;
}
.news-read-more a:hover {
    text-decoration: none;
}
.news-read-more i {
    color: #fff;
    padding: 2px 3px;
    font-size: 14px;
    background: #72c02c;
}

/*Sidebar Posts*/

.magazine-posts h2,
.magazine-posts h3 {
    margin-top: -5px;
}
.magazine-posts span {
    color: #777;
    display: block;
    font-size: 12px;
    /*font-style: italic;*/
    margin-bottom: 7px;
}
.magazine-posts span i {
    font-style: normal;
}
.magazine-posts .magazine-posts-img {
    overflow: hidden;
    max-height: 105px;
    position: relative;
}
.magazine-posts .magazine-posts-img:hover img {
    opacity: 0.9;
}

/*Sidebar Categories*/

.magazine-sb-categories ul li {
    font-size: 14px;
    margin-bottom: 5px;
}
.magazine-sb-categories ul i {
    color: #72c02c;
    font-size: 14px;
}

/*Sidebar Social*/

.magazine-sb-social .social-icons li {
    margin-bottom: 0;
    margin-right: 1px;
}

/*Timeline v2
------------------------------------*/

.timeline-v2 {
    padding: 0;
    list-style: none;
    position: relative;
}

/* The line */

.timeline-v2>li {
    position: relative;
}
.timeline-v2:before {
    top: 0;
    bottom: 0;
    left: 22%;
    width: 4px;
    content: '';
    background: #f3f3f3;
    position: absolute;
    margin-left: -14px;
}

/* The date/time */

.timeline-v2>li .cbp_tmtime {
    width: 25%;
    display: block;
    position: absolute;
    padding-right: 80px;
}
.timeline-v2>li .cbp_tmtime span {
    top: 9px;
    display: block;
    text-align: right;
    position: relative;
}
.timeline-v2>li .cbp_tmtime span:first-child {
    color: #999;
    font-family: 'Suwannaphum', 'Open Sans', Helvetica, Arial, sans-serif !important;
    font-size: 14px;
    line-height: 0.9;
}
.timeline-v2>li .cbp_tmtime span:last-child {
    color: #585f69;
    font-family: 'Dangrek', 'Open Sans', Helvetica, Arial, sans-serif !important;
    font-size: 18px;
    font-weight: normal;
}

/* Right content */

.timeline-v2>li .cbp_tmlabel {
    color: #fff;
    padding: 10px 20px 20px;
    background: #f3f3f3;
    line-height: 1.4;
    clear: both;
    position: relative;
    /*border-radius: 5px;*/
    margin: 0 0 40px 25%;
}

/*
.timeline-v2 > li .cbp_tmlabel img.big-thumb {
  width: 100%;
}
*/

.timeline-v2>li .cbp_tmlabel li {
    padding: 0;
}

/*
.timeline-v2 > li .cbp_tmlabel img.small-thumb {
  width: 111px;
  height: auto;
}
*/

.timeline-v2>li .cbp_tmlabel h2 {
    margin-top: 0px;
    font-size: 21px;
    padding: 0 0 5px;
    margin-bottom: 10px;
    text-transform: capitalize;
    border-bottom: 1px solid #ddd;
}
.timeline-v2>li .cbp_tmlabel .text-left {
    float: left;
}

/* The triangle */

.timeline-v2>li .cbp_tmlabel:after {
    right: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-right-color: #f3f3f3;
    border-width: 10px;
    top: 18px;
}

/* The icons */

.timeline-v2>li .cbp_tmicon {
    top: 22px;
    left: 22%;
    width: 10px;
    height: 10px;
    position: absolute;
    background: #72c02c;
    margin: 0 0 0 -17px;
    box-shadow: 0 0 0 4px #f3f3f3;
    -webkit-font-smoothing: antialiased;
}

/* Example Media Queries */

@media screen and (max-width: 65.375em) {
    .timeline-v2>li .cbp_tmtime span:last-child {
        font-size: 1.5em;
    }
}
@media screen and (max-width: 47.2em) {
    .timeline-v2:before {
        display: none;
    }
    .timeline-v2>li .cbp_tmtime {
        width: 100%;
        position: relative;
        padding: 0 0 20px 0;
    }
    .timeline-v2>li .cbp_tmtime span {
        text-align: left;
    }
    .timeline-v2>li .cbp_tmlabel {
        padding: 1em;
        font-weight: 400;
        margin: 0 0 30px 0;
    }
    .timeline-v2>li .cbp_tmlabel:after {
        left: 20px;
        top: -20px;
        right: auto;
        border-bottom-color: #f3f3f3;
        border-right-color: transparent;
    }
    .timeline-v2>li .cbp_tmicon {
        left: auto;
        float: right;
        position: relative;
        margin: -55px 5px 0 0px;
    }
}

/*timeline-v2 within tab-v2 issue issue fix*/

.timeline-v2>li .cbp_tmlabel.equal-height-column {
    height: auto !important;
}

/*Custom table style */

.tbl__noborder__l,
.tbl-noborder-l {
    border-left: 0px!important;
}
.tbl__noborder__r,
.tbl-noborder-r {
    border-right: 0px!important;
}
.tbl__noborder__t,
.tbl-noborder-t {
    border-top: 0px!important;
}
.tbl__noborder__b,
.tbl-noborder-b {
    border-bottom: 0px!important;
}
.tbl__noborder,
.tbl-noborder {
    border: 0px!important;
}

/* Add here all your css styles (customizations)
______________________________________/@@\_______________________________________ */

@font-face {
    font-family: 'ang_daunteav';
    *src: url('/assets/fonts/ang-daunteav.ttf') format('truetype');
    src: url('/assets/fonts/ang-daunteav/ang-daunteav.eot?#iefix') format('embedded-opentype'),
         url('/assets/fonts/ang-daunteav/AngDaunTeav.woff') format('woff'),
         url('/assets/fonts/ang-daunteav/ang-daunteav.woff2') format('woff2'),
         url('/assets/fonts/ang-daunteav/AngDaunTeav.ttf')  format('truetype'),
         url('/assets/fonts/ang-daunteav/AngDaunTeav.svg#ang_daunteav') format('svg');

    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ang_tapich';
    *src: url('/assets/fonts/ang-tapich.ttf') format('truetype');
    src: url('/assets/fonts/ang-tapich/ang-tapich.eot?#iefix') format('embedded-opentype'),
         url('/assets/fonts/ang-tapich/AngTaPich.woff') format('woff'),
         url('/assets/fonts/ang-tapich/ang-tapich.woff2') format('woff2'),
         url('/assets/fonts/ang-tapich/AngTaPich.ttf')  format('truetype'),
         url('/assets/fonts/ang-tapich/AngTaPich.svg#ang_tapich') format('svg');

    font-weight: normal;
    font-style: normal;
}
/*@font-face {
    font-family: 'Koulen';
    *src: url('/assets/fonts/koulen.ttf') format('truetype');
    src: url('/assets/fonts/koulen/koulen.eot?#iefix') format('embedded-opentype'),
         url('/assets/fonts/koulen/Koulen.woff') format('woff'),
         url('/assets/fonts/koulen/koulen.woff2') format('woff2'),
         url('/assets/fonts/koulen/Koulen.ttf')  format('truetype'),
         url('/assets/fonts/koulen/Koulen.svg#Koulen') format('svg');

    font-weight: normal;
    font-style: normal;
}*/

/* khmer support on all browser updated */

/*@font-face {
  font-family: 'Koulen';
  font-style: normal;
  font-weight: 400;
  src: local('Koulen'), url(https://fonts.gstatic.com/s/koulen/v11/OsJq3XXEstC4hg7bZdSZyfesZW2xOQ-xsNqO47m55DA.woff2) format('woff2');
  unicode-range: U+1780-17FF, U+200B-200C, U+25CC;
}*/
@font-face {
    font-family: Koulen;
    src: url('/assets/fonts/KhmerOSBassac.ttf');
}
@font-face {
    font-family: koh;
    src: url('/assets/fonts/koh.ttf');
}
.fnt_koh{
    font-family: 'koh';
}

 .myp {
    font-family: 'Koulen';
}
 .mymenu{
        color:red;
        font-size:44px;
    }



.fnt_angtapich,
.font-angtapich {
    font-family: 'ang_tapich', "Helvetica Neue", helvetica, arial, sans-serif !important;
    font-size: 15px;
}
.fnt_angdaunteav,
.font-angdaunteav {
    font-family: 'ang_daunteav', "Helvetica Neue", helvetica, arial, sans-serif !important;
    font-size: 15px;
}
.fnt_koulen,
.font-koulen {
    font-family: 'Koulen', "Helvetica Neue", helvetica, arial, sans-serif !important;
}
.fnt_koh,
.font-koh {
    font-family: 'koh', "Helvetica Neue", helvetica, arial, sans-serif !important;
}

.fnt_droid_serif,
.font-droid-serif {
    font-family: 'Droid Serif', serif;
}
.fnt_bold,
.font-bold {
    font-weight: 700 !important;
}
.fnt_italic,
.font-italic {
    font-style: italic !important;
}
.font-8 {
    font-size: 8px;
}
.font-9 {
    font-size: 9px;
}
.font-10 {
    font-size: 10px !important;
}
.font-11 {
    font-size: 11px;
}
.font-12 {
    font-size: 12px !important;
}
.font-13 {
    font-size: 13px !important;
}
.font-14 {
    font-size: 14px;
}
.font-15 {
    font-size: 15px;
}
.font-16 {
    font-size: 16px;
}
.font-17 {
    font-size: 17px;
}
.font-18 {
    font-size: 18px !important;
}
.font-19 {
    font-size: 19px;
}
.font-20 {
    font-size: 20px !important;
}
.font-22 {
    font-size: 22px !important;
}
.font-24 {
    font-size: 24px;
}
.font-26 {
    font-size: 26px;
}
.no-border {
    border: 0px;
}
.margin-top-5,
.margin-top-10,
.margin-top-15,
.margin-top-20,
.margin-top-25,
.margin-top-30,
.margin-top-35,
.margin-top-40,
.margin-top-45,
.margin-top-50,
.margin-top-55,
.margin-top-60,
.margin-top-100 {
    clear: both;
}
.margin-top-0 {
    margin-top: 0px;
}
.margin-top-1 {
    margin-top: 1px;
}
.margin-top-2 {
    margin-top: 2px;
}
.margin-top-3 {
    margin-top: 3px;
}
.margin-top-4 {
    margin-top: 4px;
}
.margin-top-5 {
    margin-top: 5px;
}
.margin-top-10 {
    margin-top: 10px;
}
.margin-top-15 {
    margin-top: 15px;
}
.margin-top-20 {
    margin-top: 20px;
}
.margin-top-25 {
    margin-top: 25px;
}
.margin-top-30 {
    margin-top: 30px;
}
.margin-top-35 {
    margin-top: 35px;
}
.margin-top-40 {
    margin-top: 40px;
}
.margin-top-45 {
    margin-top: 45px;
}
.margin-top-50 {
    margin-top: 50px;
}
.margin-top-55 {
    margin-top: 55px;
}
.margin-top-60 {
    margin-top: 60px;
}
.margin-top-100 {
    margin-top: 100px;
}
.margin-left-0 {
    margin-left: 0px;
}
.margin-left-1 {
    margin-left: 1px;
}
.margin-left-2 {
    margin-left: 2px;
}
.margin-left-3 {
    margin-left: 3px;
}
.margin-left-4 {
    margin-left: 4px;
}
.margin-left-5 {
    margin-left: 5px;
}
.margin-left-10 {
    margin-left: 10px;
}
.margin-left-15 {
    margin-left: 15px;
}
.margin-left-20 {
    margin-left: 20px;
}
.margin-left-25 {
    margin-left: 25px;
}
.margin-left-30 {
    margin-left: 30px;
}
.margin-left-35 {
    margin-left: 35px;
}
.margin-right-0 {
    margin-right: 0px;
}
.margin-right-1 {
    margin-right: 1px;
}
.margin-right-2 {
    margin-right: 2px;
}
.margin-right-3 {
    margin-right: 3px;
}
.margin-right-4 {
    margin-right: 4px;
}
.margin-right-5 {
    margin-right: 5px;
}
.margin-right-10 {
    margin-right: 10px;
}
.margin-right-15 {
    margin-right: 15px;
}
.margin-right-20 {
    margin-right: 20px;
}
.margin-right-25 {
    margin-right: 25px;
}
.margin-right-30 {
    margin-right: 30px;
}
.margin-right-35 {
    margin-right: 35px;
}
.margin-bottom-0 {
    margin-bottom: 0px;
}
.margin-bottom-1 {
    margin-bottom: 1px;
}
.margin-bottom-2 {
    margin-bottom: 2px;
}
.margin-bottom-3 {
    margin-bottom: 3px;
}
.margin-bottom-4 {
    margin-bottom: 4px;
}
.margin-5 {
    margin: 5px;
}
.margin-10 {
    margin: 10px;
}
.margin-15 {
    margin: 15px;
}
.margin-20 {
    margin: 20px;
}
.margin-25 {
    margin: 25px;
}
.margin-30 {
    margin: 30px;
}
.margin-35 {
    margin: 35px;
}
.padding-top-0 {
    padding-top: 0px !important;
}
.padding-top-1 {
    padding-top: 1px;
}
.padding-top-2 {
    padding-top: 2px;
}
.padding-top-3 {
    padding-top: 3px;
}
.padding-top-4 {
    padding-top: 4px;
}
.padding-top-5 {
    padding-top: 5px;
}
.padding-top-10 {
    padding-top: 10px;
}
.padding-top-15 {
    padding-top: 15px;
}
.padding-top-20 {
    padding-top: 20px;
}
.padding-top-25 {
    padding-top: 25px;
}
.padding-top-30 {
    padding-top: 30px;
}
.padding-top-35 {
    padding-top: 35px;
}
.padding-bottom-0 {
    padding-bottom: 0px;
}
.padding-bottom-1 {
    padding-bottom: 1px;
}
.padding-bottom-2 {
    padding-bottom: 2px;
}
.padding-bottom-3 {
    padding-bottom: 3px;
}
.padding-bottom-4 {
    padding-bottom: 4px;
}
.padding-bottom-5 {
    padding-bottom: 5px;
}
.padding-bottom-10 {
    padding-bottom: 10px;
}
.padding-bottom-15 {
    padding-bottom: 15px;
}
.padding-bottom-20 {
    padding-bottom: 20px;
}
.padding-bottom-25 {
    padding-bottom: 25px;
}
.padding-bottom-30 {
    padding-bottom: 30px;
}
.padding-bottom-35 {
    padding-bottom: 35px;
}
.padding-left-0 {
    padding-left: 0px !important;
}
.padding-left-5 {
    padding-left: 5px;
}
.padding-left-10 {
    padding-left: 10px;
}
.padding-left-15 {
    padding-left: 15px;
}
.padding-left-20 {
    padding-left: 20px;
}
.padding-left-25 {
    padding-left: 25px;
}
.padding-left-30 {
    padding-left: 30px;
}
.padding-left-35 {
    padding-left: 35px;
}
.padding-right-0 {
    padding-right: 0px !important;
}
.padding-right-5 {
    padding-right: 5px;
}
.padding-right-10 {
    padding-right: 10px;
}
.padding-right-15 {
    padding-right: 15px;
}
.padding-right-20 {
    padding-right: 20px;
}
.padding-right-25 {
    padding-right: 25px;
}
.padding-right-30 {
    padding-right: 30px;
}
.padding-right-35 {
    padding-right: 35px;
}
.padding-1 {
    padding: 1px;
}
.padding-2 {
    padding: 2px;
}
.padding-3 {
    padding: 3px;
}
.padding-4 {
    padding: 4px;
}
.padding-5 {
    padding: 5px;
}
.padding-10 {
    padding: 10px !important;
}
.padding-15 {
    padding: 15px;
}
.padding-20 {
    padding: 20px;
}
.padding-25 {
    padding: 25px;
}
.padding-30 {
    padding: 30px;
}
.padding-35 {
    padding: 35px;
}
.padding-40 {
    padding: 40px;
}
.padding-45 {
    padding: 45px !important;
}
.padding-65 {
    padding: 65px !important;
}
.padding-75 {
    padding: 75px !important;
}
.nofloat,
.no-float {
    float: none;
}
.inlineblock,
.inline-block {
    display: inline-block;
    vertical-align: top;
    zoom: 1;
    /* Fix for IE7 */
    *display: inline;
    /* Fix for IE7 */
}
.nomargin,
.no-margin {
    margin: 0px !important;
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}
.nomargin-bottom,
.no-margin-bottom {
    margin-bottom: 0px;
}
.nopadding,
.no-padding {
    padding: 0px !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}
.list-group-item {
    border: none;
}
.fnt_light,
.font-light {
    font-weight: 200;
}
.fnt_xs,
.font-xs {
    font-size: 10px;
}
.fnt_sm,
.font-sm {
    font-size: 12px;
}
.linethrough,
.line-through {
    text-decoration: line-through;
}
.btn-u-xs.custom,
a.btn-u-xs.custom {
    padding: 2px 5px;
}
.sky-form header {
    *padding: 8px 15px
}
.sky-form fieldset {
    *padding: 25px 15px 5px;
}
.news-v2 .news-v2-badge p {
    border: 1px solid #949494;
    border-left: 0px;
    opacity: 0.9;
}
.interactive-slider-v2.img-v3 {
    background: url(../img/sliders/3.jpg) no-repeat;
}
.sp-1 {
    display: inline-block;
    width: 1px;
}
.sp-3 {
    display: inline-block;
    width: 3px;
}
.sp-5 {
    display: inline-block;
    width: 5px;
}
.sp-10 {
    display: inline-block;
    width: 10px;
}
.sp-20 {
    display: inline-block;
    width: 20px;
}
.sp-30 {
    display: inline-block;
    width: 30px;
}
.sp-40 {
    display: inline-block;
    width: 40px;
}
.sp-50 {
    display: inline-block;
    width: 50px;
}
.success {
    color: #72c02c !important;
}
.error {
    color: #d9534f !important;
}
.info {
    color: #3498db !important;
}
.header-v6 .navbar-brand {
    *height: 120px;
    *max-height: 120px;
}
.custom-default-logo {
    top: 7px;
    /*border: 1px solid #fff;*/
    background-color: transparent;
    padding: 7px;
    width: 115px !important;
    min-height: 120px;
}
.custom-shrink-logo {
    border: 1px solid #bdbcbc;
    background-color: #fff;
    padding: 2px;
    width: 82px !important;
    min-height: 85px;
    border-radius: 3px;
}
.green-form-header {
    color: #FFF !important;
    background-color: #72c02c !important;
}
.red-form-header {
    color: #FFF !important;
    /*background-color: #e74c3c !important;*/
    background-color: #666699  !important;
}
.dark-blue-form-header {
    color: #FFF !important;
    background-color: #4765a0 !important;
}
.header-v6 .navbar-nav>li>a {
    font-size: 22px!important;
}
.header-v8 .navbar-nav>li>a {
    /*font-family: 'Koulen', "Helvetica Neue", helvetica, arial, sans-serif !important;*/
    font-weight: 200;
    font-size: 20px;
    font-family: 'Koulen';
}
.indent-15 {
    text-indent: 15px;
}
.indent-25 {
    text-indent: 25px;
}
.indent-35 {
    text-indent: 35px;
}
.indent-45 {
    text-indent: 45px;
}
.indent-55 {
    text-indent: 55px;
}
.border-top-1 {
    border-top: 1px solid #333;
}
.border-bottom-1 {
    border-bottom: 1px solid #333;
}
.border-left-1 {
    border-left: 1px solid #333;
}
.border-right-1 {
    border-right: 1px solid #333;
}
.border-left-3 {
    border-left: 3px solid #333;
}
.award {
    float: left;
    color: #999;
    width: 75px;
    height: 75px;
    *padding: 11px;
    font-size: 22px;
    background: #eee;
    line-height: 28px;
    text-align: center;
    margin-right: 15px;
    display: inline-block;
}
.timeline-v2>li .cbp_tmtime span:first-child {
    font-size: 13px;
    line-height: 1.5;
}
.color-green {
    color: #72c02c;
}
.call-action-v1 p {
    font-size: 13px;
}
.content-boxes-v4 h2 {
    font-weight: 400;
}
.nopointer,
.no-pointer {
    pointer-events: none;
}
.no-decoration {
    text-decoration: none !important;
}
.fnt_underline {
    text-decoration: underline;
}
.sky-form .tooltip {
    padding: 2px 5px 3px !important;
    opacity: 1;
    background: none;
}
.truncate-80 {
    width: 80px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.truncate-100 {
    width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.truncate-120 {
    width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.truncate-140 {
    width: 140px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.truncate-160 {
    width: 160px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.truncate-180 {
    width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.truncate-215 {
    width: 215px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.truncate-220 {
    width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.truncate-250 {
    width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.truncate-320 {
    width: 320px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.truncate-380 {
    width: 380px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.truncate-420 {
    width: 420px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.have_bg {
    background-color: #f3f3f3;
    padding-top: 15px;
    padding-bottom: 10px;
}
.loading-overlay {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 999;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    overflow: auto;
    background: rgba(0, 0, 0, 0.3);
}
#loading-start,
#loading-saved {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    overflow: auto;
}
#loading-error {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 375px;
    height: 135px;
    max-width: 100%;
    max-height: 100%;
    background-color: #333;
    opacity: 1;
    color: #fff;
    margin: auto;
    overflow: auto;
}
#close-loading {
    color: #fff;
    text-shadow: none;
    opacity: 1;
}
.evicriteria {
    border: 1px solid #f1eded;
    *border-top: none;
    border-right: none;
    *border-left: none;
    margin-bottom: 15px !important;
}
.sky-form .evicriteria section {
    margin-bottom: 10px;
    margin-top: 10px;
}
a.no-underline,
a.no-underline:hover {
    text-decoration: none;
}
a.no-underline:hover {
    background-color: #f7f7f7;
}
.kvjt-odd-row-bg {
    background-color: #f7f7f7;
}
.header-v6 .navbar-nav>li>a {
    letter-spacing: 0px;
}
.str-main {
    width: 100%;
    *border: 1px solid #e8e8e8;
    *border-right: none;
    display: inline-block;
    padding: 15px 0px 0px 0px;
}
.bg-odd {
    background-color: #fff;
}
.bg-even {
    background-color: #fbfbfb;
}
.font-italic {
    font-style: italic;
}
.jconfirm-content {
    word-break: break-all;
}
.jconfirm.jconfirm-white .jconfirm-box,
.jconfirm.jconfirm-light .jconfirm-box {
    border-radius: 0;
}
.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons button,
.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button {
    text-transform: none;
    font-size: inherit;
    font-weight: inherit;
}
.jconfirm .jconfirm-box .jconfirm-buttons button {
    padding: 5px 10px;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    border-radius: 0;
}
.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-title {
    *border-bottom: 1px solid #333333;
    *margin-bottom: 15px;
}
.custom-flat-bg-block-v1 {
    background: url(../img/patterns/16.png) repeat;
}
.sky-form .tooltip {
    opacity: 1;
    background: none;
    font-family: 'Kantumruy', 'Open Sans', Helvetica, Arial, sans-serif !important;
}
.custom-text-right {
    text-align: right!important;
}
.maxheight-160 {
    max-height: 160px;
}
.maxheight-260 {
    max-height: 260px;
}
.maxheight-360 {
    max-height: 360px;
}
.maxheight-460 {
    max-height: 460px;
}
.no-height {
    height: 0px;
}
.detail-apdfrm {
    position: relative;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 2;
}
.min-height-145 {
    min-height: 145px;
}
.min-height-245 {
    min-height: 245px;
}
.min-height-345 {
    min-height: 345px;
}
.min-height-445 {
    min-height: 445px;
}
.min-height-745 {
    min-height: 745px;
}
.width-5pc {
    width: 3%;
    max-width: 5%;
}
.width-10pc {
    width: 5%;
    max-width: 10%;
}
.width-15pc {
    width: 10%;
    max-width: 15%;
}
.width-25pc {
    width: 20%;
    max-width: 25%;
}
.width-35pc {
    width: 30%;
    max-width: 35%;
}
.width-45pc {
    width: 40%;
    max-width: 45%;
}
.width-55pc {
    width: 50%;
    max-width: 55%;
}
.width-65pc {
    width: 60%;
    max-width: 65%;
}
.width-75pc {
    width: 70%;
    max-width: 75%;
}
.width-85pc {
    width: 80%;
    max-width: 85%;
}
.width-95pc {
    width: 90%;
    max-width: 95%;
}
.clearboth {
    clear: both;
}
table.tbl-vertical-th>tbody>tr>th {
    font-family: 'Kantumruy', 'Open Sans', Helvetica, Arial, sans-serif !important;
    background: #f7f7f7;
    border-bottom: solid 1px #eee;
    width: 40%;
    max-width: 45%;
}
table.tbl-vertical-th.w45pc>tbody>tr>th {
    width: 40%;
    max-width: 45%;
}
table.tbl-vertical-th.w55pc>tbody>tr>th {
    width: 50%;
    max-width: 55%;
}
table.tbl-vertical-th.w65pc>tbody>tr>th {
    width: 60%;
    max-width: 65%;
}
table.tbl-vertical-th-right>tbody>tr>th {
    font-family: 'Kantumruy', 'Open Sans', Helvetica, Arial, sans-serif !important;
    text-align: right;
    background: #f7f7f7;
    border-bottom: solid 1px #eee;
    width: 40%;
    max-width: 45%;
}
table.tbl-vertical-th-right.w65pc>tbody>tr>th {
    width: 60%;
    max-width: 65%;
}
.table-th-bg {
    background: #f7f7f7;
}
.small-th {
    padding: 3px 8px !important;
}
@media print {
    a:after {
        content: '';
    }
    a[href]:after {
        content: none !important;
    }
}
#hash,
#subhash {
    height: 0px;
    padding: 0px;
}
.btn-p2 {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
}
.cl-gold {
    color: gold;
}
.color-green {
    color: #72c02c;
}
.color-white {
    color: #fff !important;
}
.color-black {
    color: #333 !important;
}
.color-lightgreen {
    color: #2ecc71;
}
.color-blue {
    color: #3498db;
}
.color-red {
    color: #e74c3c !important;
}
.color-orange {
    color: #e67e22;
}
.color-sea {
    color: #1abc9c;
}
.color-yellow {
    color: #f1c40f;
}
.color-default {
    color: #95a5a6;
}
.color-dark {
    color: #555;
}
.color-purple {
    color: #9b6bcc;
}
.color-aqua {
    color: #27d7e7;
}
.color-brown {
    color: #9c8061;
}
.color-dark-blue {
    color: #4765a0 !important;
}
.bg-green {
    background-color: #72c02c;
}
.bg-white {
    background-color: #fff;
}
.bg-black {
    background-color: #333 !important;
}
.bg-lightgreen {
    background-color: #2ecc71;
}
.bg-blue {
    background-color: #3498db;
}
.bg-red {
    background-color: #e74c3c;
}
.bg-orange {
    background-color: #e67e22;
}
.bg-sea {
    background-color: #1abc9c;
}
.bg-yellow {
    background-color: #f1c40f;
}
.bg-default {
    background-color: #95a5a6 !important;
}
.bg-dark {
    background-color: #555;
}
.bg-purple {
    background-color: #9b6bcc;
}
.bg-aqua {
    background-color: #27d7e7;
}
.bg-brown {
    background-color: #9c8061;
}
.bg-dark-blue {
    background-color: #4765a0;
}
.font-16-impt {
    font-size: 16px !important;
}
.no-border-top {
    border-top: 0px !important;
}
.no-border-bottom {
    border-bottom: 0px !important;
}
.no-border-left {
    border-left: 0px !important;
}
.no-border-right {
    border-right: 0px !important;
}
.line-height-0 {
    line-height: 0px;
}
.line-height-1 {
    line-height: 1px;
}
.line-height-18 {
    line-height: 18px;
}
.line-height-30 {
    line-height: 30px;
}
.font-light {
    font-weight: 400 !important;
}
.border-top-ddd-1 {
    border-top: 1px solid #ddd !important;
}
.border-bottom-ddd-1 {
    border-bottom: 1px solid #ddd;
}
.border-right-ddd-1 {
    border-right: 1px solid #ddd;
}
.border-left-ddd-1 {
    border-left: 1px solid #ddd;
}
.border-left-info-3 {
    border-left: 3px solid #3498db;
}
.bg-white {
    background-color: white !important;
}
.tab-active {
    background-color: #f7f7f7 !important;
}
.padding-tb-1 {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
}
.padding-tb-2 {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
}
.padding-tb-3 {
    padding-top: 3px !important;
    padding-bottom: 3px !important;
}
.padding-t-10-b-2 {
    padding-top: 10px !important;
    padding-bottom: 2px !important;
}
.top-25 {
    position: relative;
    top: -25px;
    display: block;
    height: 0;
}
.top-35 {
    position: relative;
    top: -35px;
    display: block;
    height: 0;
}
.top-45 {
    position: relative;
    top: -45px;
    display: block;
    height: 0;
}
.top-75 {
    position: relative;
    top: -75px;
    display: block;
    height: 0;
}
.top-90 {
    position: relative;
    top: -90px;
    display: block;
    height: 0;
}
.pos-relative {
    position: relative;
    display: block;
}
.tr-border-top-fff-5 {
    border-top: 5px solid #fff;
}
.tr-border-top-fff-10 {
    border-top: 10px solid #fff;
}
.tr-border-top-fff-15 {
    border-top: 15px solid #fff;
}
.cursor-pointer {
    cursor: pointer;
}
.zindex-0 {
    z-index: 0;
}
.zindex-1 {
    z-index: 1;
}
.zindex-2 {
    z-index: 2;
}
.zindex-3 {
    z-index: 3;
}
.zindex-4 {
    z-index: 4;
}
.zindex-5 {
    z-index: 5;
}
.zindex-99 {
    z-index: 99;
}
.welcome-header-bg {
    background-color: #f7f7f7;
}
.scroll-x {
    overflow-x: scroll;
    white-space: nowrap;
    overflow-y: hidden;
}
.scroll-y {
    overflow-y: scroll;
    white-space: nowrap;
    overflow-x: hidden;
}
.max-width-100 {
    max-width: 100px;
}
.max-width-120 {
    max-width: 120px;
}
.padding-tb-2-rl-8 {
    padding: 2px 8px;
}
.tbl-list-span {
    padding: 1px 5px !important;
    font-size: 10px !important;
}
.custom-nav-brand {
    padding: 20px 5px !important;
}
.arrow_box {
    position: relative;
    background: #333333;
}
.arrow_box:after {
    right: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(51, 51, 51, 0);
    border-right-color: #333333;
    border-width: 3px;
    margin-top: -3px;
}
.content {
    min-height: 550px;
}
ul.previous-cmt {
    border: 1px solid #ddd;
    padding: 10px 10px 10px 0px;
    overflow-y: scroll;
}
.pointer {
    cursor: pointer;
}
.text-pointer {
    cursor: text;
}
.break-all {
    word-break: break-all;
}
.tab-v1 .tab-content img,
.tab-v5 .tab-content img {
    max-width: 185px;
    margin: auto;
}
.user-profile-preview {
    max-height: 185px;
    overflow: hidden;
}
.featured-image-preview {
    max-height: 205px;
    overflow: hidden;
}
.font-bold {
    font-weight: bold !important;
}
.custom-tooltips-font .tooltip {
    font-family: 'ang_daunteav', 'Open Sans', Helvetica, Arial, sans-serif;
    font-size: 12px;
}
.custom-img-v3 {
    background: url(../img/sliders/custom-3.jpg) no-repeat !important;
}
.custom-box-shadow.shadow-effect-2:after,
.custom-box-shadow.shadow-effect-2:before,
.custom-box-shadow.shadow-effect-3:before,
.custom-box-shadow.shadow-effect-4:after {
    *box-shadow: none;
}
form.frm-prefered-survey .label {
    font-size: 16px;
}
.tbl-nodata {
    color: #c0434d;
}
div.tagsinput span.tag,
div.tagsinput input {
    font-family: 'ang_daunteav', 'Open Sans', Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 200;
}
.chosen-container-multi .chosen-choices {
    *height: 34px;
    padding: 6px 12px;
    background-image: none;
}
.chosen-container-multi .chosen-choices li.search-choice {
    margin: 0px 5px 5px 0;
}
.chosen-container-multi .chosen-choices li.search-field input[type=text] {
    font-family: 'ang_daunteav', 'Open Sans', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 200;
}
.chosen-container-active .chosen-choices {
    box-shadow: none;
}
.chosen-container .chosen-results li.no-results {
    font-weight: 200;
}
div.mce-edit-area {
    border-width: 1px 2px 1px 1px !important;
}
.mce-content-body,
.mce-content-body p,
.mce-content-body div,
.mce-label,
.mce-window-head .mce-title,
.mce-btn .mce-txt,
.mce-textbox,
.mce-tooltip-inner {
    font-family: 'ang_daunteav', 'Open Sans', 'Calibri', Helvetica, Arial, sans-serif !important;
    font-size: 14px;
    line-height: 22px !important;
}
.mce-menubar .mce-menubtn button span,
.mce-menu-item .mce-text {
    font-family: 'ang_daunteav', 'Open Sans', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 200;
    line-height: 16px;
}
div.mce-fullscreen {
    z-index: 999;
}
.footer-v8 .footer {
    padding: 20px 0 20px;
}
.footer-v8 .footer .column-one span {
    font-weight: 400;
}
.flexibled-error .file_msg,
.flexibled-error .file_msg .alert {
    margin-top: 0px;
    margin-bottom: 0px;
}
.flexibled-error .inline-block {
    vertical-align: text-top;
}
.topbar-list>li,
.topbar-time {
    font-size: 12px;
    line-height: 15px;
}
.small-input>div {
    font-size: 12px !important;
    line-height: 25px !important;
    height: 25px !important;
}
.small-input>input {
    height: 26px !important;
}
#login_msg>div {
    line-height: 35px;
}
.heading-mi_category {
    font-size: 14px !important;
}
img.img_featured_partner {
    max-width: 140px;
}
.title_featured_partner {
    max-width: 140px;
    vertical-align: top;
    display: inline-block;
}
img.img_easy_block {
    max-height: 189px;
    overflow: hidden;
}
.disabled-select {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently supported by Chrome and Opera */
}
.block-description {
    background: none;
}
.block-description .right-inner,
.block-description .left-inner {
    background: #f9f9f9;
}
.blog-grid h2.blog-grid-title-lg {
    font-size: 26px;
}
.page-container h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Koulen', "Helvetica Neue", helvetica, arial, sans-serif !important;
}
.page-container img {
    max-width: 100%;
    height: auto;
}
.blog-grid-tags li {
    margin-top: 4px;
}
.custom-budge {
    padding: 1px 12px !important;
}
.custom-hr-1 {
    margin: 15px auto;
    padding-bottom: 1px;
    border-top: 1px solid #333;
    border-bottom: 3px solid #333;
    width: 175px;
}
.hr-5 {
    margin: 5px 0px;
}
.hr-10 {
    margin: 10px 0px;
}
.hr-15 {
    margin: 15px 0px;
}
.hr-20 {
    margin: 20px 0px;
}
.hr-25 {
    margin: 25px 0px;
}
.hr-30 {
    margin: 30px 0px;
}
.hr-35 {
    margin: 35px 0px;
}
.animate-colorchange {
    -webkit-animation: colorchange 1s infinite alternate;
}
@-webkit-keyframes colorchange {
    0% {
        color: blue;
    }
    10% {
        color: #8e44ad;
    }
    20% {
        color: #1abc9c;
    }
    30% {
        color: #d35400;
    }
    40% {
        color: blue;
    }
    50% {
        color: #34495e;
    }
    60% {
        color: blue;
    }
    70% {
        color: #2980b9;
    }
    80% {
        color: #f1c40f;
    }
    90% {
        color: #2980b9;
    }
    100% {
        color: pink;
    }
}
.custom-intern-title {
    font-size: 17px;
    float: left;
    position: absolute;
    top: 132px;
    background: #fff;
    padding: 5px 7px 0px 0px;
    line-height: 23px;
}
.custom-intern-image {
    /*opacity: 0.7;*/
    opacity: 1;
    filter: alpha(opacity=70); /* For IE8 and earlier */
}
.custom-intern-image:hover {
    *opacity: 1.0;
    *filter: alpha(opacity=100); /* For IE8 and earlier */
}
























 
.dropdown-menu > li.kopie > a {
    padding-left:5px;
}
 
.dropdown-submenu {
    position:relative;
}
.dropdown-submenu>.dropdown-menu {
   top:0;left:100%;
   margin-top:-6px;margin-left:-1px;
   -webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px;
 }
  
.dropdown-submenu > a:after {
  border-color: transparent transparent transparent #333;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  content: " ";
  display: block;
  float: right;  
  height: 0;     
  margin-right: -10px;
  margin-top: 5px;
  width: 0;
}
 
.dropdown-submenu:hover>a:after {
    border-left-color:#555;
 }

.dropdown-menu > li > a:hover, .dropdown-menu > .active > a:hover {
  text-decoration: underline;
}  
  
@media (max-width: 767px) {

  .navbar-nav  {
     display: inline;
  }
  .navbar-default .navbar-brand {
    display: inline;
  }
  .navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
  }
  .navbar-default .navbar-nav .dropdown-menu > li > a {
    color: red;
    background-color: #ccc;
    border-radius: 4px;
    margin-top: 2px;   
  }
   .navbar-default .navbar-nav .open .dropdown-menu > li > a {
     color: #333;
   }
   .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
   .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
     background-color: #ccc;
   }

   .navbar-nav .open .dropdown-menu {
     border-bottom: 1px solid white; 
     border-radius: 0;
   }
  .dropdown-menu {
      padding-left: 10px;
  }
  .dropdown-menu .dropdown-menu {
      padding-left: 20px;
   }
   .dropdown-menu .dropdown-menu .dropdown-menu {
      padding-left: 30px;
   }
   li.dropdown.open {
    border: 0px solid red;
   }

}
 
@media (min-width: 768px) {
  ul.nav li:hover > ul.dropdown-menu {
    display: block;
  }
  #navbar {
    text-align: center;
  }
}  


/*------------------------------------------------------------------*/
.navbar-nav2 li a{
   font-family: "Koulen";
   font-size: 18px;
   color:black;
   

}
.navbar-nav2 >li:first-child{
    margin-left:10px;
}
.navbar-nav2 > li {
    display: inline-block;
    line-height: 30px;
    padding:30px;
}
.navbar-nav2 >li > ul > li a{
    font-family: "ang_daunteav";
}
/*@media screen and (max-width: 375px) {
    .navbar-nav2 > li {
        display: inline;
          
    }
}
@media screen and (max-width: 414px) {
   
    .navbar-nav2 > li {
        display: inline;
        width:100%;
        line-height: 10px;
        padding:10px;

    }
}
@media screen and (max-width: 768px) {
     .navbar-nav2 > li {
        display: inline;
    }
}
@media screen and (max-width: 1024px) {
    .navbar-nav2 >li:first-child{
        margin-left:0px;
    }
     .navbar-nav2 > li {
        display: inline-block;
         line-height: 30px;
        padding:15px;
    }
}*/


@media screen and (max-width: 375px) {
    .navbar-nav2 > li {
        display: inline;
          
    }
}
@media screen and (max-width: 414px) {
   
    .navbar-nav2 > li {
        display: inline;
        width:100%;
        line-height: 10px;
        padding:10px;

    }
}
@media screen and (max-width: 768px) {
     .navbar-nav2 > li {
        display: inline;
    }
}
@media screen and (max-width: 1024px) {
    .navbar-nav2 >li:first-child{
        margin-left:0px;
    }
     .navbar-nav2 > li {
        display: inline-block;
         line-height: 30px;
        padding:15px;
    }
}
@media screen and (max-width: 1366px) {
    .navbar-nav2 >li:first-child{
        margin-left:0px;
    }
     .navbar-nav2 > li {
        display: inline-block;
         line-height: 30px;
        padding:20px;
    }
}

/*------------------------------------------------------Cordinator -----------------------------------*/
.news-item img{
    width:50px;height:50px;
    padding-right:5px;
}
.table-coordinator .fillData,.table-coordinator2 .fillData{
    border-bottom:1px solid green;
}
.table-coordinator td{
    width:60%;
}
.table-coordinator2 td{
    width:25%;
}
.table-coordinator td:first-child{
    width:40%;
}

.bg-title{
  background: #e6f2ff;
  margin-top:5px;
}
.form-search{
  /*background: orange;*/
  /*padding:10px 0px;*/
    background-color: #e74c3c;
  padding-top: 20px;
  margin-right: 15px;
}
.form-search .form-control{
    height: 40px;
}
.form-search .btn{
    height: 40px;
}
/*Customize on Feature Post Image*/
.item img{
    min-width:500px;
    max-width: 500px;
    min-height:300px;
    max-height: 300px;
}

/*start feature post-----------------------------------------------------------------*/
.cuadro_intro_hover{
        padding: 0px;
        position: relative;
        overflow: hidden;
        height: 200px;
           margin-bottom: 20px;

    }
   /* .cuadro_intro_hover:hover .caption{
        opacity: 1;
        transform: translateY(-150px);
        -webkit-transform:translateY(-150px);
        -moz-transform:translateY(-150px);
        -ms-transform:translateY(-150px);
        -o-transform:translateY(-150px);
    }*/
    .cuadro_intro_hover img{
        z-index: 4;
    }
    .cuadro_intro_hover .caption{
        position: absolute;
        top:350px;     
        -webkit-transition:all 0.3s ease-in-out;
        -moz-transition:all 0.3s ease-in-out;
        -o-transition:all 0.3s ease-in-out;
        -ms-transition:all 0.3s ease-in-out;
        transition:all 0.3s ease-in-out;
        width: 100%;
    }

    .cuadro_intro_hover .caption-text{
        z-index: 20;
        /*color: #fff;*/
        opacity: 0.6;
        position: absolute;
        height: 200px;
        text-align: center;
        top:-120px;
        width: 100%;
        padding-top: 10px;
        /*color: #000033;*/
        color:white;
        /*border:2px solid orange;*/
         /*background-color: rgba(0,0,0,0.7);*/
         /*background-color: #75a3a3;*/
         background-color: #e74c3c;
    }
    .cuadro_intro_hover .caption-text:hover{
       
        opacity: 1;
        /*color:#1a1aff;*/
        color:white;
        cursor:pointer;
    }
    .caption-text  .detaillink{
       font-family:koh;
       font-size:18px;
       font-weight: bold;
        color:white;

        /*background-color: white;*/
    }
    .caption-text:hover .detaillink{
      
    }
    .cuadro_intro_hover *{
        font-family: Koulen;
    }
    .cuadro_intro_hover img{
        min-height: 350px;
        max-height: 350px;
    }
    
   
     .cuadro_intro_hover p{
        /*color:black;*/
        color: white;
       word-spacing: 7px;
       font-family: 'koh';
       font-weight: bold;
       font-size: 18px;
      text-shadow: 2px 2px blue;
     }
/*end feature post--------------------------------------------------------------------*/
.howto ul li a{
    color:black;font-weight:bold
}
.howto ul {
    margin:0px;
    padding:0px;
}
.interndetail tr td:first-child{
    font-size:18px;
    width:30%;
}
.interndetail tr td:last-child{
    border-bottom:1px solid #337ab7;
    width:70%;
}
.jobdetail{
  /*   -webkit-box-shadow: -2px 0px 204px 5px rgba(0,0,0,0.75);
    -moz-box-shadow: -2px 2px 14px 5px rgba(0,0,0,0.75);
    box-shadow: -2px 0px 14px 5px rgba(0,0,0,0.75);*/
    padding:0px;
    
}


 .block-description .left-inner img{       
    height: auto;
    padding: 3px;
    margin: 0 10px 10px 0;
    border: 1px solid #eee;
    float: none;
    }
.nopadding{
    padding:0px;
}
.nomargin{
    margin:0px;
}




@font-face {
  font-family: Romanea;
  src: url('/digitalassets/assets/font/Romnea.ttf');
}
@font-face {
  font-family: Battambang;
  src: url('/digitalassets/assets/font/Battambang.ttf');
}
.fnt-Romanea{
    font-family: 'Romanea';
}
.fnt-Battambang{
    font-family: 'Battambang';
}


.jobfinder .content{
    width: 50%;
    border:2px solid gray;
}
.jobfinder{
    margin-top:-40px;
}
.joboffer .content{
    width: 80%;
}
.joboffer{
    margin-top:-30px;
    margin-bottom: 20px;
}
.joboffer .content{
    border:2px solid gray;
    background: white;
}


@media only screen and (max-width: 600px) {
  .jobfinder .content {
    width: 100%;
  }
  .jobfinder{
    margin-top:40px;
  }

  .joboffer .content {
    width: 100%;
  }
  .joboffer{
    margin-top:40px;
  }
}
@media only screen and (max-width: 800px) {
  .jobfinder .content {
    width: 100%;
  }
  .jobfinder{
    margin-top:0px;
  }
  .joboffer .content {
    width: 100%;
  }
  .joboffer{
    margin-top:0px;
  }
}








/* END [customizations] 