/* Minification failed. Returning unminified contents.
(647,34): run-time error CSS1046: Expect comma, found '77'
(647,40): run-time error CSS1046: Expect comma, found '/'
(701,30): run-time error CSS1046: Expect comma, found '77'
(701,36): run-time error CSS1046: Expect comma, found '/'
 */

/*photoblogs-banner*/
.photoblogs-banner {
    height: 260px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .photoblogs-banner .text {
        margin-top: 30px;
    }

        .photoblogs-banner .text h1 {
            color: #2F2E2D;
            font-size: 36px;
            font-weight: 600;
        }

        .photoblogs-banner .text p {
            color: #3F3F3F;
        }

        .photoblogs-banner .text button {
            background-color: #DA1203;
            border: solid 1px #DA1203;
            color: #fff;
            border-radius: 4px;
            padding: 5px 20px;
            box-shadow: 0px 4px 4px 0px #00000040;
        }

/*uploadModal*/
#uploadModal .modal-header {
    align-items: center;
}

#uploadModal .modal-title {
    flex: 1;
    text-align: center;
    color: #2F2E2D;
    text-transform: uppercase;
}

#uploadModal .modal-body {
    padding-bottom: 0;
}

#uploadModal .modal-footer {
    justify-content: center;
}

#uploadModal .btn-send-photos {
    padding: 6px 30px;
}

/*dropzone-wrapper*/
.dropzone-wrapper {
    position: relative;
    height: 150px;
    border: 2px dashed #ced4da;
    border-radius: 0.25rem;
}

.dropzone-desc {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

    .dropzone-desc p {
        margin: 0;
        padding: 0;
        font-size: 13px;
        font-style: italic;
    }

@media only screen and (max-width: 380px) {
    .dropzone-desc p {
        font-size: 10px;
    }
}

.dropzone,
.dropzone:focus {
    position: absolute;
    outline: none !important;
    width: 100%;
    height: 150px;
    cursor: pointer;
    opacity: 0;
}

.dropzone-wrapper:hover,
.dropzone-wrapper.dragover {
    background-color: #F5F5F5;
}

.preview-zone:not(:empty) {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.preview-zone .img-box {
    width: calc(33.3333333% - 10px);
    border-radius: 0.25rem;
    background-color: #ced4da;
    margin: 5px;
}

    .preview-zone .img-box > div {
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        position: relative;
        padding-bottom: 60%;
    }

        .preview-zone .img-box > div .img-remove {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background-color: #DA1203;
            position: absolute;
            top: 5px;
            right: 5px;
            text-align: center;
            line-height: 24px;
            z-index: 1;
            cursor: pointer;
            box-shadow: 0px 2px 2px 0px #00000026;
            color: #fff;
        }

/*upload-by*/
.upload-by {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

    .upload-by .avatar {
        height: 80px;
        width: 80px;
        background-size: cover;
        background-position: center;
        border: solid 1px #ccc;
        border-radius: 50%;
        margin-bottom: 5px;
    }

    .upload-by h4 {
        color: #2F2E2D;
        font-size: 18px;
    }

/*alert-success-message*/
.alert-success-message {
    text-align: center;
}

    .alert-success-message h1 {
        color: #2F2E2D;
        font-size: 20px;
        font-weight: 600;
        margin-top: 20px;
    }

    .alert-success-message p {
        color: #4A4A4A;
    }

.jconfirm .jconfirm-box .jconfirm-buttons {
    float: none !important;
    text-align: center;
}

    .jconfirm .jconfirm-box .jconfirm-buttons .btn-close-alert {
    }

/*photoblogs*/
.photoblogs {
    padding: 30px;
    margin: 0;
    list-style: none;
    background-color: #f9f9f9;
}

    .photoblogs > li {
        border-radius: 10px;
        box-shadow: 0px 3px 8px 0px #00000033;
        margin: 0 auto;
        background-color: #fff;
        max-width: 800px;
    }

        .photoblogs > li:not(:last-child) {
            margin-bottom: 30px;
        }

        /*post-header*/
        .photoblogs > li .post-header {
            display: flex;
            align-items: center;
            padding: 15px;
        }

            .photoblogs > li .post-header .post-avatar {
                width: 60px;
                height: 60px;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                border-radius: 50%;
                border: solid 1px #ccc;
            }

            .photoblogs > li .post-header .post-member {
                padding-left: 10px;
                flex: 1;
            }

                .photoblogs > li .post-header .post-member h4 {
                    color: #2F2E2D;
                    font-size: 16px;
                    font-weight: 600;
                    margin-bottom: 5px;
                }

                .photoblogs > li .post-header .post-member span {
                    font-size: 14px;
                }

            /*post-menu*/
            .photoblogs > li .post-header .post-menu {
                position: relative;
                display: none;
            }

                .photoblogs > li .post-header .post-menu > span.toggle {
                    width: 36px;
                    height: 36px;
                    background-color: #f5f5f5;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    cursor: pointer;
                }

                    .photoblogs > li .post-header .post-menu > span.toggle:hover {
                        background-color: #5C5C5C;
                        color: #fff;
                    }

                .photoblogs > li .post-header .post-menu ul {
                    padding: 5px 10px;
                    margin: 0;
                    list-style: none;
                    background-color: #fefefe;
                    position: absolute;
                    right: 0;
                    border-radius: 4px;
                    box-shadow: 0px 3px 8px 0px #00000033;
                    display: none;
                }

                    .photoblogs > li .post-header .post-menu ul.open {
                        display: block;
                    }

                    .photoblogs > li .post-header .post-menu ul li {
                        padding: 5px;
                        white-space: nowrap;
                        font-size: 14px;
                    }

        /*post-content*/
        .photoblogs > li .post-content {
            color: #2F2E2D;
            padding-left: 15px;
            padding-right: 15px;
        }

            .photoblogs > li .post-content h6 {
                font-weight: 600;
            }

            .photoblogs > li .post-content p {
                white-space: pre-wrap;
            }

        /*post-photos*/
        .photoblogs > li .post-photos {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            grid-auto-rows: 300px;
            grid-gap: 2px 2px;
            grid-auto-flow: dense;
            justify-items: stretch;
            align-items: stretch;
            /*background-color: #D9D9D9;*/
        }

            .photoblogs > li .post-photos .photo-item {
                cursor: pointer;
            }

                .photoblogs > li .post-photos .photo-item > img {
                    height: 100%;
                    object-fit: cover;
                    width: 100%;
                }

                .photoblogs > li .post-photos .photo-item.horizontal {
                    grid-column: auto/span 2;
                }

                .photoblogs > li .post-photos .photo-item.vertical {
                    grid-row: auto/span 2;
                }

                .photoblogs > li .post-photos .photo-item.big {
                    grid-row: auto/span 2;
                    grid-column: auto/span 2;
                }

                .photoblogs > li .post-photos .photo-item.photo-more {
                    position: relative;
                }

                    .photoblogs > li .post-photos .photo-item.photo-more:after {
                        content: attr(data-more);
                        position: absolute;
                        top: 0;
                        display: flex;
                        width: 100%;
                        height: 100%;
                        align-items: center;
                        justify-content: center;
                        background: rgba(0, 0, 0, 0.5);
                        color: #fff;
                        font-size: 200%;
                    }

        /*post-footer*/
        .photoblogs > li .post-footer {
            padding: 15px;
        }

            .photoblogs > li .post-footer .summary {
                border-bottom: 1px solid #E5E5E5;
                padding-bottom: 10px;
                display: flex;
                align-items: center;
                color: #5C5C5C;
            }

                .photoblogs > li .post-footer .summary > span {
                    flex: 1;
                }

                .photoblogs > li .post-footer .summary .total-likes {
                    display: flex;
                    align-items: center;
                }

                    .photoblogs > li .post-footer .summary .total-likes i {
                        font-size: 24px;
                        margin-right: 5px;
                    }

                    .photoblogs > li .post-footer .summary .total-likes .count {
                        margin-right: 5px;
                    }

                .photoblogs > li .post-footer .summary .total-comments {
                    text-align: right;
                }

            /*actions*/
            .photoblogs > li .post-footer .actions {
                display: flex;
                align-items: center;
                justify-content: space-evenly;
                padding-top: 10px;
                padding-bottom: 10px;
                border-bottom: 1px solid #E5E5E5;
            }

                .photoblogs > li .post-footer .actions button {
                    color: #5C5C5C !important;
                    background-color: transparent;
                    border: none;
                }

                    .photoblogs > li .post-footer .actions button.liked i {
                        color: #dc3545;
                    }

                /*shares*/
                .photoblogs > li .post-footer .actions .shares {
                    position: relative;
                }

                    .photoblogs > li .post-footer .actions .shares ul {
                        list-style: none;
                        padding: 5px 5px;
                        margin: 0;
                        position: absolute;
                        bottom: 100%;
                        border: solid 1px #ccc;
                        background-color: #fff;
                        border-radius: 4px;
                        box-shadow: 0px 3px 8px 0px #00000033;
                        display: none;
                    }

                        .photoblogs > li .post-footer .actions .shares ul.open {
                            display: block;
                        }

                        .photoblogs > li .post-footer .actions .shares ul li {
                            margin: 5px;
                        }

                            .photoblogs > li .post-footer .actions .shares ul li a {
                                color: #5C5C5C;
                                display: flex;
                                align-items: center;
                                font-size: 14px;
                            }

                                .photoblogs > li .post-footer .actions .shares ul li a span {
                                    width: 24px;
                                    height: 24px;
                                    border: solid 1px #5C5C5C;
                                    border-radius: 50%;
                                    display: flex;
                                    align-items: center;
                                    justify-content: center;
                                    margin-right: 5px;
                                    font-size: 12px;
                                }

                            .photoblogs > li .post-footer .actions .shares ul li:hover a span {
                                background-color: #5C5C5C;
                                color: #fff;
                            }

            /*comments*/
            .photoblogs > li .post-footer .view-more-comments {
                padding-top: 10px;
                display: inline-block;
                color: #2196F3;
            }

            .photoblogs > li .post-footer .comments {
                margin-bottom: 10px;
            }

                .photoblogs > li .post-footer .comments ul {
                    padding: 0;
                    list-style: none;
                }

                    .photoblogs > li .post-footer .comments ul li {
                        display: flex;
                        align-items: flex-start;
                        margin-top: 15px;
                    }

                        .photoblogs > li .post-footer .comments ul li .comment-avatar {
                            width: 36px;
                            height: 36px;
                            border-radius: 50%;
                            background-size: cover;
                            background-position: center;
                            background-repeat: no-repeat;
                            border: solid 1px #ccc;
                            margin-right: 10px;
                        }

                        .photoblogs > li .post-footer .comments ul li > div:not(.comment-avatar) {
                            flex: 1;
                        }

                        .photoblogs > li .post-footer .comments ul li > div .comment-date {
                            font-size: 14px;
                        }

                        .photoblogs > li .post-footer .comments ul li > div .comment-content {
                            background-color: #EEEEEE;
                            padding: 15px;
                            border-radius: 10px;
                            flex: 1;
                        }

                        .photoblogs > li .post-footer .comments ul li > div > div h4 {
                            font-size: 16px;
                            color: #2F2E2D;
                            font-weight: 600;
                            margin-bottom: 5px;
                        }

                        .photoblogs > li .post-footer .comments ul li > div > div p {
                            color: #4A4A4A;
                            margin: 0;
                        }

                .photoblogs > li .post-footer .comments .btn-reply {
                    font-size: 13px;
                    color: #2196F3;
                    cursor: pointer;
                }

                /*comment-form*/
                .photoblogs > li .post-footer .comments .reply-form,
                .photoblogs > li .post-footer .comments .comment-form {
                    display: flex;
                    align-items: flex-start;
                    margin-top: 15px;
                }

                .photoblogs > li .post-footer .comments .reply-form {
                    display: none;
                }

                    .photoblogs > li .post-footer .comments .reply-form.show {
                        display: flex;
                    }

                    .photoblogs > li .post-footer .comments .reply-form .comment-avatar,
                    .photoblogs > li .post-footer .comments .comment-form .comment-avatar {
                        width: 36px;
                        height: 36px;
                        border-radius: 50%;
                        background-size: cover;
                        background-position: center;
                        background-repeat: no-repeat;
                        border: solid 1px #ccc;
                        margin-right: 10px;
                    }

                    .photoblogs > li .post-footer .comments .reply-form > div:not(.comment-avatar),
                    .photoblogs > li .post-footer .comments .comment-form > div:not(.comment-avatar) {
                        background-color: #EEEEEE;
                        padding: 15px;
                        border-radius: 10px;
                        flex: 1;
                        display: flex;
                        align-items: end;
                    }

                    .photoblogs > li .post-footer .comments .reply-form .comment-input,
                    .photoblogs > li .post-footer .comments .comment-form .comment-input {
                        width: 100%;
                        outline: none;
                        overflow: hidden;
                        flex: 1;
                    }

                    .photoblogs > li .post-footer .comments .reply-form .btn-send,
                    .photoblogs > li .post-footer .comments .comment-form .btn-send {
                        outline: none;
                        border: none;
                        color: #2196F3;
                        width: 32px;
                        padding: 0;
                    }

/*post-pagination*/
.post-pagination {
    padding-bottom: 20px;
    background-color: #f9f9f9;
}

    .post-pagination a {
        width: 44px;
        height: 44px;
        font-size: 16px;
        font-weight: 400;
    }

.jconfirm {
    z-index: 99999;
}

/*photo-popup*/
.photo-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 1);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
    z-index: 99998;
}

    .photo-popup.show {
        opacity: 1;
        visibility: visible;
        -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
        -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
        transition: opacity 0.3s 0s, visibility 0s 0s;
    }

.photo-popup-container {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: .25em .25em .4em .4em;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    -webkit-transform: translateX(-400px);
    -moz-transform: translateX(-400px);
    -ms-transform: translateX(-400px);
    -o-transform: translateX(-400px);
    transform: translateX(-400px);
    /* Force Hardware Acceleration in WebKit */
    -webkit-backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

    .photo-popup-container .photo-popup-close {
        position: absolute;
        top: 8px;
        left: 8px;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: rgb(77 77 77 / 50%);
    }

        .photo-popup-container .photo-popup-close::before, .photo-popup-container .photo-popup-close::after {
            content: '';
            position: absolute;
            top: 14px;
            width: 14px;
            height: 2px;
            background-color: #8f9cb5;
        }

        .photo-popup-container .photo-popup-close::before {
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg);
            left: 8px;
        }

        .photo-popup-container .photo-popup-close::after {
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
            right: 8px;
        }

.photo-popup.show .photo-popup-container {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

/*photo-nav*/
.photo-popup-container .photo-nav {
    flex: 1;
    position: relative;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.prev-photo, .next-photo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgb(77 77 77 / 50%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 200ms ease-out;
}

    .prev-photo:hover, .next-photo:hover {
        color: #fff;
    }

.prev-photo {
    left: -40px;
}

.next-photo {
    right: -40px;
}

.photo-popup-container .photo-nav:hover .prev-photo {
    left: 10px;
}

.photo-popup-container .photo-nav:hover .next-photo {
    right: 10px;
}

/*photo-sidebar*/
.photo-popup-container .photo-sidebar {
    width: 460px;
    background-color: #fff;
    overflow: auto;
    z-index: 1;
}

    .photo-popup-container .photo-sidebar .photoblogs {
        padding: 0;
    }

        .photo-popup-container .photo-sidebar .photoblogs > li {
            border-radius: 0;
            box-shadow: none;
            max-width: 100%;
        }

@media screen and (max-width: 900px) {
    .photo-popup-container {
        flex-direction: column;
    }

        .photo-popup-container .photo-nav {
            flex: none;
            max-height: 480px;
            height: 45vh;
        }

        .photo-popup-container .photo-sidebar {
            width: 100%;
            flex: 1;
        }
}


/*photo-gallery*/
.photo-gallery {
    background: #f2d69c;
    padding-top: 60px;
    padding-bottom: 60px;
}

    .photo-gallery .container {
        padding-left: 0;
        padding-right: 0;
    }

    .photo-gallery ul {
        list-style: none;
        margin: 0 auto;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

        .photo-gallery ul li {
            width: 300px;
            height: 200px;
            padding: 10px;
            position: relative;
            background: white;
            background: radial-gradient(transparent 4px, white 4px);
            background-size: 20px 20px;
            background-position: -10px -10px;
            transition: ease-in-out 300ms;
            will-change: transform;
            cursor: pointer;
        }

            .photo-gallery ul li::before {
                content: attr(data-title);
                color: white;
                font-size: 14px;
                line-height: 1.3;
                position: absolute;
                right: 26px;
                left: 26px;
                bottom: 24px;
                text-shadow: 0px 0px 2px rgba(0,0,0,0.8), 0px 0px 2px rgba(0,0,0,0.8);
            }

            .photo-gallery ul li::after {
                content: "[◉°]";
                color: white;
                position: absolute;
                top: 10px;
                right: 26px;
                font-size: 16px;
                text-shadow: 0px 0px 2px rgba(0,0,0,0.8), 0px 0px 2px rgba(0,0,0,0.8);
            }

            .photo-gallery ul li:last-child {
                transform: rotate(7deg);
                transform-origin: bottom left
            }

            .photo-gallery ul li:hover {
                z-index: 1;
                transform: rotate(3deg);
                transform-origin: center;
                filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.3));
                transition: ease-in-out 300ms;
            }

            .photo-gallery ul li div {
                width: 100%;
                height: 100%;
                background-size: contain;
                background-repeat: no-repeat;
                background-position: center;
                background-color: #fff;
            }

    .photo-gallery .post-pagination {
        background-color: transparent;
        padding-bottom: 0;
        margin-top: 40px;
    }

        .photo-gallery .post-pagination a {
            width: 40px;
            height: 40px;
            font-size: 16px;
            font-weight: 400;
            background-color: transparent;
            border: solid 2px #fff;
            color: #fff;
        }

            .photo-gallery .post-pagination a.active, .photo-gallery .post-pagination a:hover {
                background-color: transparent;
                border: solid 2px #9E9E9E;
            }

            .photo-gallery .post-pagination a + a {
                margin-left: 10px;
            }

