/* ----------------------------------------------------------
:: Template Name: Studio - Creative Photography Template
:: Author: Colorlib
:: Author URL: https://colorlib.com
:: Version: 1.0.0
:: Created: 31 January 2018
:: Last Updated: 31 January 2018
---------------------------------------------------------- */

/* ============ PLACE YOUR CUSTOM CSS HERE ============ */

/* For Menu bar when Converted to burger icom */
@media only screen and (max-width: 800px) {
    .header__nav .sub-menu-all {
        display: unset !important;
    }
}

/* DropDown List Style */
details {
    width: 75%;
    margin: 0 auto;
    position: relative;
    border-bottom: 2px solid rgba(0, 0, 0, 0.5);
}

details[open] {
    z-index: 1;
}

summary {
    padding: 1.5rem 0;
    cursor: pointer;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

/* details[open] summary:before {
	content: '';
	display: block;
	position: fixed;
	top: 0;
	left: 0;
} */

summary:after {
    content: "";
    display: block;
    float: right;
    width: 0.7rem;
    height: 0.7rem;
    border-bottom: 1px solid currentColor;
    border-left: 1px solid currentColor;
    border-bottom-left-radius: 2px;
    transform: rotate(45deg) translate(50%, 0%);
    transform-origin: center center;
    transition: transform ease-in-out 100ms;
}

summary:focus {
    outline: none;
}

details[open] summary:after {
    transform: rotate(-45deg) translate(0%, 0%);
}

details ul {
    list-style: none;
    width: 100%;
    background: #f2f2f2;
    position: absolute;
    top: calc(100% + 0.5rem);
    margin: 0;
    box-sizing: border-box;
    border-radius: 3px;
    max-height: 175px;
    overflow-y: auto;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

details li {
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #ccc;
}

details li:first-child {
    padding-top: 0;
}

details li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

/* FAKE SELECT */

summary.radios {
    counter-reset: radios;
}

summary.radios:before {
    content: var(--selection);
}

details input[type="radio"] {
    counter-increment: radios;
    appearance: none;
    display: none;
}

details input[type="radio"]:checked {
    display: inline;
    --display: block;
}

details input[type="radio"]:after {
    content: attr(title);
    display: inline;
    font-family: "josefin-sans-regular", sans-serif;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: normal;
    line-height: 1.875;
}

details ul.list {
    counter-reset: labels;
}

details label {
    align-items: center;
    height: 5.6rem;
    width: 100%;
    display: flex;
    cursor: pointer;
    justify-content: center;
    margin: 0;
    font-weight: unset;
}

details label span {
    --display: none;
    display: var(--display);
    width: 1rem;
    height: 1rem;
    border: 1px solid #727272;
    border-radius: 3px;
}

details li label:hover {
    background: #000000;
    color: #fff;
}

details .list::-webkit-scrollbar {
    /* width: 3px; */
    display: none;
}

form#update-profile details {
    width: 100%;
    margin: none;
}

/* profile pic styles */
.avatar-upload {
    position: relative;
    max-width: 205px;
    margin: 0 auto;
}
.avatar-upload .avatar-clear {
    position: absolute;
    bottom: 12px;
    z-index: 1;
}
.avatar-upload .avatar-edit {
    position: absolute;
    right: 12px;
    z-index: 1;
    top: 10px;
}
.avatar-upload .avatar-edit input,
.avatar-upload .avatar-clear input {
    display: none;
}
.avatar-upload .avatar-edit input + label,
.avatar-upload .avatar-clear input + label {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    border-radius: 100%;
    background: #ffffff;
    border: 1px solid transparent;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s ease-in-out;
}
.avatar-upload .avatar-edit input + label:hover,
.avatar-upload .avatar-clear input + label:hover {
    background: #f1f1f1;
    border-color: #d6d6d6;
}
.avatar-upload .avatar-edit input + label:after {
    font: var(--fa-font-solid);
    content: "\f040";
    color: #000000;
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
}

.avatar-upload .avatar-edit input + label.avatar-uploading:after {
    animation: blink 1.5s infinite;
    animation-fill-mode: both;
    color: #f77913;
}

@keyframes blink {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.avatar-upload .avatar-clear input + label:after {
    font: var(--fa-font-solid);
    content: "\f12d";
    color: #a52f00;
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
}
.avatar-upload .avatar-preview {
    width: 192px;
    height: 192px;
    position: relative;
    border-radius: 100%;
    border: 6px solid #f8f8f8;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
.avatar-upload .avatar-preview > img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    max-width: unset !important;
    margin: unset !important;
}

.avatar-crop-preview img {
    max-height: 35vh;
}

/* To reduce burger menu icon size */
.header__content .header__toggle-menu {
    padding: 3px;
}

/* Accout Popup box BEGIN */
.account-popup-content {
    display: none;
}

/* Home Page Styles */
.s-account .entry,
.s-writings .entry,
.s-feed .entry,
.s-social .entry,
.s-healthcheck .entry {
    box-shadow: 0px 0px 1px #4b4b4b;
    -webkit-transition: all 0.3s ease-out;
    -webkit-transform: scale(1);
    -ms-transition: all 0.3s ease-out;
    -ms-transform: scale(1);
    -moz-transition: all 0.3s ease-out;
    -moz-transform: scale(1);
    transition: all 0.3s ease-out;
    transform: scale(1);
}

.s-account .entry:hover,
.s-writings .entry:hover,
.s-feed .entry:hover,
.s-social .entry:hover,
.s-healthcheck .entry:hover {
    box-shadow: 0px 0px 1px #4b4b4b;
    z-index: 2;
    -webkit-transition: all 0.3s ease-in;
    -webkit-transform: scale(1.01);
    -ms-transition: all 0.3s ease-in;
    -ms-transform: scale(1.01);
    -moz-transition: all 0.3s ease-in;
    -moz-transform: scale(1.01);
    transition: all 0.3s ease-in;
    transform: scale(1.01);
}

/* Home - Account Style */
.s-account .hero__slides {
    padding: 0 75px;
    max-width: 1350px;
    margin: 0 auto;
    width: 94%;
}

.s-account .more a {
    box-shadow: 0px 0px 5px #4b4b4b;
    z-index: 2;
    margin: 0;
    padding: 10px 5px 5px 5px;
    background-color: #05a8aa;
    font-family: "josefin-sans-bold", sans-serif;
    color: white;
    font-size: 1rem;
    line-height: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    float: right;
}

.image-attr {
    position: absolute;
    bottom: 0;
    right: 10px;
    font-size: 0.8rem;
    font-weight: lighter;
}

.image-attr a {
    color: rgba(255, 255, 255, 0.5);
}

.image-attr a:hover {
    color: #ffffff;
}

.image-action-attr {
    position: absolute;
    top: 0;
    left: 10px;
    font-size: 1.6rem;
    padding: 10px;
}

.image-action-attr svg {
    color: rgba(255, 255, 255, 0.5);
}

.image-action-attr svg:hover {
    color: #ffffff;
    cursor: pointer;
}

@media only screen and (max-width: 1400px) {
    .s-account .hero__slides {
        padding: 0;
    }
}

@media only screen and (max-width: 1000px) {
    .s-account .featured__column--big {
        width: 60%;
    }

    .s-account .featured__column--small .entry h2 {
        margin-bottom: 0.7rem;
    }
}

@media only screen and (max-width: 900px) {
    .s-account .featured__column--big {
        width: 100%;
    }

    .s-account .hero__slides {
        max-width: 780px;
    }

    .s-account .featured__column--small .entry h2 {
        font-size: 2.8rem;
    }
}

@media only screen and (max-width: 800px) {
    .s-account .featured__column--small {
        width: 100%;
    }

    .s-account .hero__slides {
        width: 90%;
    }

    .s-account .featured__column--small .entry h2 {
        margin-bottom: 3rem;
    }
}

@media only screen and (max-width: 700px) {
    .s-account .hero__slides {
        max-width: 540px;
    }
}

@media only screen and (max-width: 600px) {
    .s-account .hero__slides {
        max-width: 500px;
        width: auto;
        padding-left: 25px;
        padding-right: 25px;
    }

    .s-account .featured__column--small .entry h2 {
        font-size: 2.6rem;
        margin-bottom: 1.5rem;
    }
}

@media only screen and (max-width: 400px) {
    .s-account .featured__column--small .entry h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
}

.featured .account-link {
    color: rgba(255, 255, 255, 0.5);
    text-align: right;
    margin-top: unset;
    line-height: 1.5;
}

.featured__column--big .entry__category a {
    background-color: #05a8aa;
}

.featured__column--small .entry:nth-child(1) .entry__category a {
    background-color: #dc602e;
}

.featured__column--small .entry:nth-child(2) .entry__category a {
    background-color: #820263;
}

/* Home - Writings Style */
.s-writings .hero__slides {
    padding: 0 75px;
    max-width: 1350px;
    margin: 0 auto;
    width: 94%;
}

.s-writings .more a {
    box-shadow: 0px 0px 5px #4b4b4b;
    z-index: 2;
    margin: 0;
    padding: 10px 5px 5px 5px;
    background-color: #05a8aa;
    font-family: "josefin-sans-bold", sans-serif;
    color: white;
    font-size: 1rem;
    line-height: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    float: right;
}

@media only screen and (max-width: 1400px) {
    .s-writings .hero__slides {
        padding: 0;
    }
}

@media only screen and (max-width: 1000px) {
    .s-writings .featured__column--big {
        width: 60%;
    }

    .s-writings .featured__column--small .entry h2 {
        margin-bottom: 0.7rem;
    }
}

@media only screen and (max-width: 900px) {
    .s-writings .featured__column--big {
        width: 100%;
    }

    .s-writings .hero__slides {
        max-width: 780px;
    }

    .s-writings .featured__column--small .entry h2 {
        font-size: 2.8rem;
    }
}

@media only screen and (max-width: 800px) {
    .s-writings .featured__column--small {
        width: 100%;
    }

    .s-writings .hero__slides {
        width: 90%;
    }

    .s-writings .featured__column--small .entry h2 {
        margin-bottom: 3rem;
    }
}

@media only screen and (max-width: 700px) {
    .s-writings .hero__slides {
        max-width: 540px;
    }
}

@media only screen and (max-width: 600px) {
    .s-writings .hero__slides {
        max-width: 500px;
        width: auto;
        padding-left: 25px;
        padding-right: 25px;
    }

    .s-writings .featured__column--small .entry h2 {
        font-size: 2.6rem;
        margin-bottom: 1.5rem;
    }
}

@media only screen and (max-width: 400px) {
    .s-writings .featured__column--small .entry h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
}

/* Home - Studio Style */

.s-studio .hero__slides {
    padding: 0 75px;
    max-width: 1350px;
    margin: 0 auto;
    width: 94%;
}

.s-studio .slide-gallery-wrap {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 650px;
}

/* .s-studio [class*="col-"] {
  padding: 15px 15px;
} */

.s-studio .slide-item .image-attr .entry__meta-tags,
.s-studio .slide-item .image-attr .entry__meta-name {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
    font-size: 1rem;
}

.s-studio .slide-item:hover .image-attr .entry__meta-name,
.s-studio .slide-item:hover .image-attr .entry__meta-tags,
.s-studio .slide-item.slide-active .image-attr .entry__meta-tags,
.s-studio .slide-item.slide-active .image-attr .entry__meta-name {
    visibility: visible;
    opacity: 1;
}

.s-studio .slide-item {
    position: relative;
    box-shadow: 0px 0px 5px #4b4b4b;
    z-index: 2;
    flex: 1;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: none;
    -webkit-transition: all 0.3s ease-in;
    -webkit-transform: scale(1);
    -ms-transition: all 0.3s ease-in;
    -ms-transform: scale(1);
    -moz-transition: all 0.3s ease-in;
    -moz-transform: scale(1);
    transition: all 0.3s ease-in;
    transform: scale(1);
    -webkit-filter: brightness(70%);
    -moz-filter: brightness(70%);
    -o-filter: brightness(70%);
    -ms-filter: brightness(70%);
    filter: brightness(70%);
}

.s-studio .slide-item:hover,
.s-studio .slide-item.slide-active {
    flex: 5;
    -webkit-transition: all 0.3s ease-in;
    -webkit-transform: scale(1.01);
    -ms-transition: all 0.3s ease-in;
    -ms-transform: scale(1.01);
    -moz-transition: all 0.3s ease-in;
    -moz-transform: scale(1.01);
    transition: all 0.3s ease-in;
    transform: scale(1.01);
    -webkit-filter: brightness(100%);
    -moz-filter: brightness(100%);
    -o-filter: brightness(100%);
    -ms-filter: brightness(100%);
    filter: brightness(100%);
}

.s-studio .more a {
    box-shadow: 0px 0px 5px #4b4b4b;
    z-index: 2;
    margin: 0;
    padding: 10px 5px 5px 5px;
    background-color: #dc602e;
    font-family: "josefin-sans-bold", sans-serif;
    color: white;
    font-size: 1rem;
    line-height: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    float: right;
}

@media only screen and (max-width: 1400px) {
    .s-studio .hero__slides {
        padding: 0;
    }
}

@media only screen and (max-width: 900px) {
    .s-studio .hero__slides {
        max-width: 780px;
    }
}

@media only screen and (max-width: 800px) {
    .s-studio .hero__slides {
        width: 90%;
    }

    .s-studio .slide-gallery-wrap {
        flex-direction: column;
    }

    .s-studio .slide-item:hover,
    .s-studio .slide-item.slide-active {
        flex: 6;
    }
}

@media only screen and (max-width: 700px) {
    .s-studio .hero__slides {
        max-width: 540px;
    }
}

@media only screen and (max-width: 600px) {
    .s-studio .hero__slides {
        max-width: 500px;
        width: auto;
        padding-left: 25px;
        padding-right: 25px;
    }
}

/* Public Feeds Style */
.s-feed .hero__slides {
    padding: 0 75px;
    max-width: 1350px;
    margin: 0 auto;
    width: 94%;
}

.s-feed .featured__column--big {
    width: 33.333333%;
}

.s-feed .featured__column--big .entry h2 {
    font-size: 2rem;
}

/* .s-feed .more {
  background-color: #f2f2f2;
} */

.s-feed .more a {
    box-shadow: 0px 0px 5px #4b4b4b;
    z-index: 2;
    margin: 0;
    padding: 10px 5px 5px 5px;
    background-color: #820263;
    font-family: "josefin-sans-bold", sans-serif;
    color: white;
    font-size: 1rem;
    line-height: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    float: right;
}

@media only screen and (max-width: 1400px) {
    .s-feed .hero__slides {
        padding: 0;
    }
}

@media only screen and (max-width: 1000px) {
    .s-feed .featured__column--small {
        width: 33.3333%;
    }

    .s-feed .featured__column--small .entry h2 {
        margin-bottom: 1rem;
    }
}

@media only screen and (max-width: 900px) {
    .s-feed .featured__column--small {
        width: 100%;
    }

    .s-feed .featured__column--small .entry h2 {
        font-size: 2.3rem;
    }

    .s-feed .featured__column--small .entry__meta {
        font-size: 1.5rem;
    }

    .s-feed .hero__slides {
        max-width: 780px;
    }
}

@media only screen and (max-width: 800px) {
    .s-feed .featured__column--small {
        width: 100%;
    }

    .s-feed .featured__column--small .entry__meta {
        margin: 0;
    }

    .s-feed .hero__slides {
        width: 90%;
    }
}

@media only screen and (max-width: 700px) {
    .s-feed .hero__slides {
        max-width: 540px;
    }
}

@media only screen and (max-width: 600px) {
    .s-feed .hero__slides {
        max-width: 500px;
        width: auto;
        padding-left: 25px;
        padding-right: 25px;
    }

    .s-feed .featured__column--small .entry h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .s-feed .featured__column--small .entry__category {
        font-size: 1rem;
        line-height: 2.1rem;
        margin-bottom: 1.5rem;
    }
}

/* Home - Social Style */
.s-social .hero__slides {
    padding: 0 75px;
    max-width: 1350px;
    margin: 0 auto;
    width: 94%;
}

.s-social .featured__column--big {
    width: 33.333333%;
}

.s-social .featured .entry__profile-pic {
    margin-top: unset;
}

.s-social .featured::before,
.s-social .featured::after {
    position: unset;
}

.s-social .more a {
    box-shadow: 0px 0px 5px #4b4b4b;
    z-index: 2;
    margin: 0;
    padding: 10px 5px 5px 5px;
    background-color: #4267b2;
    font-family: "josefin-sans-bold", sans-serif;
    color: white;
    font-size: 1rem;
    line-height: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    float: right;
}

@media only screen and (max-width: 1400px) {
    .s-social .hero__slides {
        padding: 0;
    }
}

@media only screen and (max-width: 900px) {
    .s-social .hero__slides {
        max-width: 780px;
    }

    .s-social .featured__column {
        float: left;
    }
}

@media only screen and (max-width: 800px) {
    .s-social .featured__column--big {
        width: 100%;
    }

    .s-social .hero__slides {
        width: 90%;
    }
}

@media only screen and (max-width: 700px) {
    .s-social .hero__slides {
        max-width: 540px;
    }

    .s-social .featured__column {
        float: none;
    }
}

@media only screen and (max-width: 600px) {
    .s-social .hero__slides {
        max-width: 500px;
        width: auto;
        padding-left: 25px;
        padding-right: 25px;
    }
}

/* Home - Social Style */
.s-healthcheck .hero__slides {
    padding: 0 75px;
    max-width: 1350px;
    margin: 0 auto;
    width: 94%;
}
.s-healthcheck .featured__column {
    float: none;
}

/* Home Page Image Slider */
.image-feeds-area {
    margin-bottom: 5rem;
}

.single-image-feed {
    width: 100%;
    height: 256px;
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out;
    -webkit-transform: scale(1);
    -ms-transition: all 0.3s ease-out;
    -ms-transform: scale(1);
    -moz-transition: all 0.3s ease-out;
    -moz-transform: scale(1);
    transition: all 0.3s ease-out;
    transform: scale(1);
}

.single-image-feed::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    opacity: 0.2;
    background-color: #151515;
}

.single-image-feed:hover {
    cursor: zoom-in;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in;
    -webkit-transform: scale(1.01);
    -ms-transition: all 0.3s ease-in;
    -ms-transform: scale(1.01);
    -moz-transition: all 0.3s ease-in;
    -moz-transform: scale(1.01);
    transition: all 0.3s ease-in;
    transform: scale(1.01);
}

.image-feed h3 {
    margin-top: unset;
    text-align: center;
}

.hero__slides {
    z-index: unset;
}

/* Sign In/Sign Up CSS */
html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

.logmod {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
    background: #151515;
    overflow-y: auto;
}

.account-popup-content .logmod {
    z-index: 1000;
}

.template-modal-pop .logmod {
    z-index: 1001;
}

.logmod::after {
    clear: both;
    content: "";
    display: table;
}

.logmod__wrapper {
    display: block;
    background: #fff;
    position: relative;
    max-width: 550px;
    border-radius: 4px;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.2);
    margin: 2vh auto;
}

.logmod__wrapper .header__logo-modal {
    border: 1px solid #f2f2f24d;
    padding-bottom: 1.3rem;
    display: flex;
    justify-content: center;
    background-image: linear-gradient(#151515e6, #151515e6),
        url("/static/home/media/images/hero-bg_50.75f5fc2921b4.jpg");
}

.logmod__close {
    display: block;
    position: absolute;
    right: 50%;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    bottom: -40px;
    margin-right: -10px;
    width: 15px;
    height: 25px;
}

.logmod__container {
    overflow: hidden;
    width: 100%;
}

.logmod__container::after {
    clear: both;
    content: "";
    display: table;
}

.logmod__tab {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
}

.logmod__tab-wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.logmod__tab.show {
    opacity: 1;
    height: 100%;
    visibility: visible;
}

.logmod__tabs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.logmod__tabs::after {
    clear: both;
    content: "";
    display: table;
}

.logmod__tabs li.current a {
    background: #fff;
    color: #333;
}

.logmod__tabs li a {
    width: 50%;
    position: relative;
    float: left;
    text-align: center;
    background: #d2d8d8;
    line-height: 72px;
    height: 72px;
    text-decoration: none;
    color: #809191;
    text-transform: uppercase;
    font-weight: 700;
    /* font-size: 16px; */
    cursor: pointer;
}

.logmod__tabs li a:focus {
    outline: dotted 1px;
}

.logmod__heading {
    text-align: center;
    /* padding: 12px 0 12px 0; */
}

.logmod__heading-subtitle {
    display: block;
    font-weight: 400;
    font-size: 1.4rem;
    color: #888;
    line-height: 48px;
}

.logmod__form-signup,
.logmod__form-login {
    border-top: 1px solid #e5e5e5;
}

.logmod__alter {
    display: block;
    position: relative;
    margin-top: 7px;
}

.logmod__alter::after {
    clear: both;
    content: "";
    display: table;
}

.logmod__alter .connect:last-child {
    border-radius: 0 0 4px 4px;
}

.header__logo-modal img {
    width: 20%;
}

.logmod__wrapper form {
    margin-bottom: unset;
}

.view-modal .logmod__heading-subtitle {
    border-bottom: 1px solid #e5e5e5;
}

/* // Nest Hub Max devices */
@media only screen and (max-height: 650px) {
    .logmod__wrapper {
        display: flex;
        max-width: 650px;
    }

    .logmod__container,
    .view-modal {
        width: 500px;
        border-left: 1px solid #e5e5e5;
        border-width: 0.5px;
    }

    .header__logo-modal img.login-logo {
        width: 270.39px;
        height: auto;
        margin: auto;
    }

    .header__logo-modal img.view-modal-logo,
    .header__logo-modal img.template-modal-logo {
        width: 157.2px;
        height: auto;
        margin: auto;
    }
}

@media only screen and (max-height: 450px) {
    .logmod__wrapper {
        margin: 1px auto;
    }
}

.connect {
    overflow: hidden;
    position: relative;
    display: block;
    width: 100%;
    height: 72px;
    line-height: 72px;
    text-decoration: none;
}

.connect::after {
    clear: both;
    content: "";
    display: table;
}

.connect:focus,
.connect:hover,
.connect:visited {
    color: #fff;
    text-decoration: none;
}

.connect__icon {
    vertical-align: middle;
    float: left;
    width: 70px;
    text-align: center;
    /* font-size: 22px; */
}

.connect__context {
    vertical-align: middle;
    text-align: center;
}

.connect.facebook {
    background: #3b5998;
    color: #fff;
}

.connect.facebook a {
    color: #fff;
}

.connect.facebook .connect__icon {
    background: #283d68;
}

.connect.googleplus {
    background: #dd4b39;
    color: #fff;
}

.connect.googleplus a {
    color: #fff;
}

.connect.googleplus .connect__icon {
    background: #b52f1f;
}

.signup,
.login {
    position: relative;
}

.simform__actions {
    padding: 15px;
    /* font-size: 14px; */
}

.simform__actions::after {
    clear: both;
    content: "";
    display: table;
}

.simform__actions .submit {
    height: 48px;
    float: right;
    color: #fff;
    /* width: 50%; */
    font-weight: 700;
    /* font-size: 16px; */
    background: #4caf50;
    margin-top: 7px;
}

.simform__actions img {
    border-radius: 0.25rem;
}

.simform__actions .submit::after {
    clear: both;
    content: "";
    display: table;
}

.simform__actions-sidetext {
    display: inline-block;
    float: left;
    width: 50%;
    padding: 0 10px;
    margin: 9px 0 0 0;
    color: #8c979e;
    text-align: center;
    line-height: 24px;
}

.simform__actions-sidetext::after {
    clear: both;
    content: "";
    display: table;
}

.sminputs {
    border-bottom: 1px solid #e5e5e5;
}

.sminputs::after {
    clear: both;
    content: "";
    display: table;
}

.sminputs .input {
    display: block;
    position: relative;
    width: 50%;
    height: 71px;
    padding: 11px 24px;
    border-right: 1px solid #e5e5e5;
    border-bottom: none;
    float: left;
    background-color: #fff;
    border-radius: 0;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.sminputs .input.active {
    background: #eee;
}

.sminputs .input.active .hide-password {
    background: #eee;
}

.sminputs .input.full {
    width: 100%;
}

.sminputs .input label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    /* font-size: 12px; */
    cursor: pointer;
    line-height: 24px;
}

.sminputs .input input {
    position: relative;
    display: inline-block;
    /* height: 24px; */
    /* font-size: 15px; */
    line-height: 19.2px;
    color: #555 !important;
    border-radius: 4px;
    vertical-align: middle;
    box-shadow: none;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    border: none;
    padding: 0;
    /* cursor: pointer; */
    background-color: transparent;
}

.sminputs .input input:disabled {
    color: #c0c0c0 !important;
}

.sminputs .hide-password {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0 15px;
    border-left: 1px solid #e4e4e4;
    /* font-size: 14px; */
    background: #fff;
    overflow: hidden;
    color: #444;
    cursor: pointer;
    margin-top: 12px;
    line-height: 48px;
}

.logmod__container .btn,
.logmod__container .simform__actions .submit {
    display: inline-block;
    line-height: normal;
    white-space: nowrap;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
    border: none;
    outline: none;
    outline-offset: 0;
    font-weight: 400;
    box-shadow: none;
    min-width: 90px;
    /* padding: 10px 14px; */
    float: right;
}

.btn.full,
.simform__actions .full.submit {
    width: 100%;
}

.btn.lg,
.simform__actions .lg.submit {
    min-width: 125px;
    padding: 17px 14px;
    /* font-size: 22px; */
    line-height: 1.3;
}

.btn.sm,
.simform__actions .sm.submit {
    min-width: 65px;
    padding: 4px 12px;
    /* font-size: 14px; */
}

.btn.xs,
.simform__actions .xs.submit {
    min-width: 45px;
    padding: 2px 10px;
    /* font-size: 10px; */
    line-height: 1.5;
}

.btn.circle,
.simform__actions .circle.submit {
    overflow: hidden;
    width: 56px;
    height: 56px;
    min-width: 56px;
    line-height: 1;
    padding: 0;
    border-radius: 50%;
}

.btn.circle.lg,
.simform__actions .circle.lg.submit {
    width: 78px;
    height: 78px;
    min-width: 78px;
}

.btn.circle.sm,
.simform__actions .circle.sm.submit {
    width: 40px;
    height: 40px;
    min-width: 40px;
}

.btn.circle.xs,
.simform__actions .circle.xs.submit {
    width: 30px;
    height: 30px;
    min-width: 30px;
}

.btn:focus,
.simform__actions .submit:focus,
.btn:active,
.simform__actions .submit:active,
.btn.active,
.simform__actions .active.submit,
.btn:active:focus,
.simform__actions .submit:active:focus,
.btn.active:focus,
.simform__actions .active.submit:focus {
    outline: 0;
    outline-offset: 0;
    box-shadow: none;
}

.btn.red,
.simform__actions .red.submit {
    background: #f44336;
    color: #fff;
}

.btn.red:active,
.simform__actions .red.submit:active,
.btn.red:focus,
.simform__actions .red.submit:focus {
    background-color: #ef1d0d;
}

.btn.red:hover,
.simform__actions .red.submit:hover {
    background-color: #f32c1e;
}

.btn.pink,
.simform__actions .pink.submit {
    background: #e91e63;
    color: #fff;
}

.btn.pink:active,
.simform__actions .pink.submit:active,
.btn.pink:focus,
.simform__actions .pink.submit:focus {
    background-color: #c61350;
}

.btn.pink:hover,
.simform__actions .pink.submit:hover {
    background-color: #d81558;
}

.btn.purple,
.simform__actions .purple.submit {
    background: #9c27b0;
    color: #fff;
}

.btn.purple:active,
.simform__actions .purple.submit:active,
.btn.purple:focus,
.simform__actions .purple.submit:focus {
    background-color: #7b1f8a;
}

.btn.purple:hover,
.simform__actions .purple.submit:hover {
    background-color: #89229b;
}

.btn.deep-purple,
.simform__actions .deep-purple.submit {
    background: #673ab7;
    color: #fff;
}

.btn.deep-purple:active,
.simform__actions .deep-purple.submit:active,
.btn.deep-purple:focus,
.simform__actions .deep-purple.submit:focus {
    background-color: #532f94;
}

.btn.deep-purple:hover,
.simform__actions .deep-purple.submit:hover {
    background-color: #5c34a4;
}

.btn.indigo,
.simform__actions .indigo.submit {
    background: #3f51b5;
    color: #fff;
}

.btn.indigo:active,
.simform__actions .indigo.submit:active,
.btn.indigo:focus,
.simform__actions .indigo.submit:focus {
    background-color: #334293;
}

.btn.indigo:hover,
.simform__actions .indigo.submit:hover {
    background-color: #3849a2;
}

.btn.blue,
.simform__actions .blue.submit {
    background: #2196f3;
    color: #fff;
}

.btn.blue:active,
.simform__actions .blue.submit:active,
.btn.blue:focus,
.simform__actions .blue.submit:focus {
    background-color: #0c7fda;
}

.btn.blue:hover,
.simform__actions .blue.submit:hover {
    background-color: #0d8aee;
}

.btn.light-blue,
.simform__actions .light-blue.submit {
    background: #03a9f4;
    color: #fff;
}

.btn.light-blue:active,
.simform__actions .light-blue.submit:active,
.btn.light-blue:focus,
.simform__actions .light-blue.submit:focus {
    background-color: #028ac7;
}

.btn.light-blue:hover,
.simform__actions .light-blue.submit:hover {
    background-color: #0398db;
}

.btn.cyan,
.simform__actions .cyan.submit {
    background: #00bcd4;
    color: #fff;
}

.btn.cyan:active,
.simform__actions .cyan.submit:active,
.btn.cyan:focus,
.simform__actions .cyan.submit:focus {
    background-color: #0093a6;
}

.btn.cyan:hover,
.simform__actions .cyan.submit:hover {
    background-color: #00a5bb;
}

.btn.teal,
.simform__actions .teal.submit {
    background: #009688;
    color: #fff;
}

.btn.teal:active,
.simform__actions .teal.submit:active,
.btn.teal:focus,
.simform__actions .teal.submit:focus {
    background-color: #00685e;
}

.btn.teal:hover,
.simform__actions .teal.submit:hover {
    background-color: #007d71;
}

.btn.green,
.simform__actions .green.submit {
    background: #4caf50;
    color: #fff;
}

.btn.green:active,
.simform__actions .green.submit:active,
.btn.green:focus,
.simform__actions .green.submit:focus {
    background-color: #3e8f41;
}

.btn.green:hover,
.simform__actions .green.submit:hover {
    background-color: #449d48;
}

.btn.light-green,
.simform__actions .light-green.submit {
    background: #8bc34a;
    color: #fff;
}

.btn.light-green:active,
.simform__actions .light-green.submit:active,
.btn.light-green:focus,
.simform__actions .light-green.submit:focus {
    background-color: #74a838;
}

.btn.light-green:hover,
.simform__actions .light-green.submit:hover {
    background-color: #7eb73d;
}

.btn.lime,
.simform__actions .lime.submit {
    background: #cddc39;
    color: #fff;
}

.btn.lime:active,
.simform__actions .lime.submit:active,
.btn.lime:focus,
.simform__actions .lime.submit:focus {
    background-color: #b6c423;
}

.btn.lime:hover,
.simform__actions .lime.submit:hover {
    background-color: #c6d626;
}

.btn.yellow,
.simform__actions .yellow.submit {
    background: #ffeb3b;
    color: #fff;
}

.btn.yellow:active,
.simform__actions .yellow.submit:active,
.btn.yellow:focus,
.simform__actions .yellow.submit:focus {
    background-color: #ffe60d;
}

.btn.yellow:hover,
.simform__actions .yellow.submit:hover {
    background-color: #ffe822;
}

.btn.amber,
.simform__actions .amber.submit {
    background: #ffc107;
    color: #fff;
}

.btn.amber:active,
.simform__actions .amber.submit:active,
.btn.amber:focus,
.simform__actions .amber.submit:focus {
    background-color: #d8a200;
}

.btn.amber:hover,
.simform__actions .amber.submit:hover {
    background-color: #edb100;
}

.btn.orange,
.simform__actions .orange.submit {
    background: #ff9800;
    color: #fff;
}

.btn.orange:active,
.simform__actions .orange.submit:active,
.btn.orange:focus,
.simform__actions .orange.submit:focus {
    background-color: #d17d00;
}

.btn.orange:hover,
.simform__actions .orange.submit:hover {
    background-color: #e68900;
}

.btn.deep-orange,
.simform__actions .deep-orange.submit {
    background: #ff5722;
    color: #fff;
}

.btn.deep-orange:active,
.simform__actions .deep-orange.submit:active,
.btn.deep-orange:focus,
.simform__actions .deep-orange.submit:focus {
    background-color: #f33a00;
}

.btn.deep-orange:hover,
.simform__actions .deep-orange.submit:hover {
    background-color: #ff4409;
}

.btn.brown,
.simform__actions .brown.submit {
    background: #795548;
    color: #fff;
}

.btn.brown:active,
.simform__actions .brown.submit:active,
.btn.brown:focus,
.simform__actions .brown.submit:focus {
    background-color: #5c4137;
}

.btn.brown:hover,
.simform__actions .brown.submit:hover {
    background-color: #694a3e;
}

.btn.grey,
.simform__actions .grey.submit {
    background: #9e9e9e;
    color: #fff;
}

.btn.grey:active,
.simform__actions .grey.submit:active,
.btn.grey:focus,
.simform__actions .grey.submit:focus {
    background-color: #878787;
}

.btn.grey:hover,
.simform__actions .grey.submit:hover {
    background-color: #919191;
}

.btn.blue-grey,
.simform__actions .blue-grey.submit {
    background: #607d8b;
    color: #fff;
}

.btn.blue-grey:active,
.simform__actions .blue-grey.submit:active,
.btn.blue-grey:focus,
.simform__actions .blue-grey.submit:focus {
    background-color: #4d6570;
}

.btn.blue-grey:hover,
.simform__actions .blue-grey.submit:hover {
    background-color: #566f7c;
}

.special {
    color: #f44336;
    position: relative;
    text-decoration: none;
    transition: all 0.15s ease-out;
}

.special:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0px;
    left: 0;
    background: #f00;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
}

.special:hover {
    transition: all 0.15s ease-out;
}

.special:hover:before {
    visibility: visible;
    transform: scaleX(1);
}

/* FilePond Custom CSS */
.s-content.add-wrapper {
    padding-top: unset;
    padding-bottom: unset;
    /* Setting from 1rem to unset to be in sync with Writings. */
}

.filepond--file-poster img {
    object-fit: cover;
    width: 100% !important;
    height: 100% !important;
}

/* Article Compose Page */
.compose-article-wrapper {
    display: none;
}

.compose-article-wrapper.masonry-wrap {
    overflow: unset;
}

/* Confirmation Pop-Up */
.template-modal-pop {
    display: none;
}

.template-modal-pop .template-modal-title {
    font-family: "josefin-sans-bold", sans-serif;
    /* font-size: 24px; */
    font-weight: 300;
    margin-bottom: 20px;
}

.template-modal-pop .template-modal-content {
    /* font-size: 17px; */
    line-height: 27px;
    margin: 20px;
    overflow-y: scroll;
    max-height: 40vh;
}

/* .template-modal-pop .wrapper {
  display: block;
  background: #FFF;
  max-width: 550px;
  border-radius: 4px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.2);
  margin: 25% auto;
} */

.template-modal-pop .view-modal {
    /* width: 500px; */
    padding: 0 0 10px 0;
    background: white;
    text-align: center;
    /* position: absolute; */
    top: 50%;
    left: 50%;
    /* transform: translateX(-50%) translateY(-50%); */
    border-radius: 3px;
}

.template-modal-pop .view-modal .template-modal-alert-box {
    text-align: left;
}

.template-modal-pop .view-modal .loader-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    border-radius: 10px;
    overflow: hidden;
    opacity: 0.99;
}

.template-modal-pop .view-modal .loader-bar .bar {
    position: absolute;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: #0054a5;
    animation: exordo-loader 3s ease infinite;
    border-radius: 3px;
    transform-origin: 50% 50%;
}

#writings-unsplash-query {
    text-align: center;
    margin: 0 auto;
    display: block;
}

#writings-unsplash-query::placeholder {
    text-align: center;
}

@keyframes exordo-loader {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(480px);
    }

    100% {
        transform: translateX(0);
    }
}

/* Infinite Scroll Loading */
.infinite-scroll-request {
    font-size: 20px;
    /* change size here */
    position: relative;
    width: 4em;
    height: 1em;
    margin: 10px auto;
}

.infinite-scroll-request__dot {
    display: block;
    width: 1em;
    height: 1em;
    border-radius: 0.5em;
    background: #555;
    /* change color here */
    position: absolute;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}

.infinite-scroll-request__dot:nth-child(1),
.infinite-scroll-request__dot:nth-child(2) {
    left: 0;
}

.infinite-scroll-request__dot:nth-child(3) {
    left: 1.5em;
}

.infinite-scroll-request__dot:nth-child(4) {
    left: 3em;
}

@keyframes reveal {
    from {
        transform: scale(0.001);
    }

    to {
        transform: scale(1);
    }
}

@keyframes slide {
    to {
        transform: translateX(1.5em);
    }
}

.infinite-scroll-request__dot:nth-child(1) {
    animation-name: reveal;
}

.infinite-scroll-request__dot:nth-child(2),
.infinite-scroll-request__dot:nth-child(3) {
    animation-name: slide;
}

.infinite-scroll-request__dot:nth-child(4) {
    animation-name: reveal;
    animation-direction: reverse;
}

/* Profile Custom Styles */
#writings_request > small,
#studio_request > small {
    font-size: 0.6rem;
}

/* Error Page CSS */
.center {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.error {
    margin-top: 7rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
}

.number {
    font-family: "Lato", sans-serif;
    color: #f2f2f2;
    font-weight: 900;
    font-size: 15rem;
    line-height: 1;
}

.illustration {
    position: relative;
    width: 12.2rem;
    margin: 0 2.1rem;
}

.circle {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 12.2rem;
    height: 11.4rem;
    border-radius: 50%;
    background-color: #293b49;
}

.clip {
    position: absolute;
    bottom: 0.3rem;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    width: 12.5rem;
    height: 13rem;
    border-radius: 0 0 50% 50%;
}

.paper {
    position: absolute;
    bottom: -0.3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 9.2rem;
    height: 12.4rem;
    border: 0.3rem solid #293b49;
    background-color: #f2f2f2;
    border-radius: 0.8rem;
}

.paper::before {
    content: "";
    position: absolute;
    top: -0.7rem;
    right: -0.7rem;
    width: 1.4rem;
    height: 1rem;
    background-color: #f2f2f2;
    border-bottom: 0.3rem solid #293b49;
    transform: rotate(45deg);
}

.face {
    position: relative;
    margin-top: 2.3rem;
}

.eyes {
    position: absolute;
    top: 0;
    left: 2.4rem;
    width: 4.6rem;
    height: 0.8rem;
}

.eye {
    position: absolute;
    bottom: 0;
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background-color: #293b49;
    animation-name: eye;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.eye-left {
    left: 0;
}

.eye-right {
    right: 0;
}

@keyframes eye {
    0% {
        height: 0.8rem;
    }

    50% {
        height: 0.8rem;
    }

    52% {
        height: 0.1rem;
    }

    54% {
        height: 0.8rem;
    }

    100% {
        height: 0.8rem;
    }
}

.rosyCheeks {
    position: absolute;
    top: 1.6rem;
    width: 1rem;
    height: 0.2rem;
    border-radius: 50%;
    background-color: #fdabaf;
}

.rosyCheeks-left {
    left: 1.4rem;
}

.rosyCheeks-right {
    right: 1.4rem;
}

.mouth {
    position: absolute;
    top: 3.1rem;
    left: 50%;
    width: 1.6rem;
    height: 0.2rem;
    border-radius: 0.1rem;
    transform: translateX(-50%);
    background-color: #293b49;
}

.error-text {
    text-align: center;
    margin: 4rem 0 0 0;
    font-weight: 300;
    color: #f2f2f2;
    font-size: 2rem;
}

.error-text:after {
    content: attr(data-error-text);
    display: block;
    margin-top: calc(var(--height) / 10 + 15px);
    text-align: center;
}

.center .refresh {
    margin-top: 4rem;
}

/* Timeline CSS */
.timeline {
    display: flex;
    margin: 0 auto;
    flex-wrap: wrap;
    flex-direction: column;
    max-width: 700px;
    position: relative;
}

.timeline__content {
    width: 100%;
    max-width: 30rem;
}

.timeline__content-title {
    font-weight: normal;
    font-size: 20px;
    margin: -10px 0 0 0;
    transition: 0.4s;
    padding: 0 10px;
    box-sizing: border-box;
    font-family: "josefin-sans-bold", sans-serif;
    color: #fff;
    text-shadow: 1px 1px 2px #000000, 0 0 1em #000000, 0 0 0.2em #ffffff;
}

.timeline__content-desc {
    margin: 0;
    font-size: 15px;
    box-sizing: border-box;
    color: rgba(255, 255, 255, 0.7);
    font-family: "josefin-sans-regular", sans-serif;
    font-weight: normal;
    line-height: 25px;
}

.timeline:before {
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    margin-left: -1px;
    content: "";
    background: rgba(255, 255, 255, 0.07);
}

@media only screen and (max-width: 767px) {
    .timeline:before {
        left: 40px;
    }
}

.timeline-item {
    padding: 40px 0;
    opacity: 0.3;
    filter: blur(2px);
    transition: 0.5s;
    box-sizing: border-box;
    width: calc(50% - 40px);
    display: flex;
    position: relative;
    transform: translateY(-80px);
}

.timeline-item:before {
    content: attr(data-text);
    white-space: pre-wrap;
    letter-spacing: 3px;
    width: 100%;
    position: absolute;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-family: "josefin-sans-semi-bold", sans-serif;
    border-left: 2px solid rgba(255, 255, 255, 0.5);
    top: 70%;
    margin-top: -5px;
    padding-left: 15px;
    opacity: 0;
    right: calc(-100% - 56px);
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
}

.timeline-item:nth-child(even):before {
    right: auto;
    text-align: right;
    left: calc(-100% - 56px);
    padding-left: 0;
    border-left: none;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    padding-right: 15px;
}

.timeline-item--active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
}

.timeline-item--active:before {
    top: 50%;
    transition: 0.3s all 0.2s;
    opacity: 1;
}

.timeline-item--active .timeline__content-title {
    margin: -50px 0 20px 0;
}

@media only screen and (max-width: 767px) {
    .timeline-item {
        align-self: baseline !important;
        width: 100%;
        padding: 0 30px 150px 80px;
    }

    .timeline-item:before {
        left: 10px !important;
        padding: 0 !important;
        top: 50px;
        text-align: center !important;
        width: 60px;
        border: none !important;
    }

    .timeline-item:last-child {
        padding-bottom: 40px;
    }
}

.timeline__img {
    max-width: 100%;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
}

.timeline-container {
    width: 100%;
    position: relative;
    padding: 40px 0;
    transition: 0.3s ease 0s;
    background-attachment: fixed;
    background-size: cover;
}

.timeline-container:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(99, 99, 99, 0.8);
    content: "";
}

.timeline-header {
    width: 100%;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.timeline-header__title {
    color: #fff;
    font-size: 46px;
    font-family: "josefin-sans-regular", sans-serif;
    font-weight: bold;
    margin: 0;
}

.timeline__content-title a {
    color: #ffffff;
    border-bottom: 1px solid transparent;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.timeline__content-title a:focus,
.timeline__content-title a:hover {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-header__subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-family: "josefin-sans-semi-bold", sans-serif;
    font-size: 16px;
    letter-spacing: 5px;
    margin: 0;
    font-weight: normal;
}

.timeline-item .timeline__content img {
    height: 30rem;
    width: 30rem;
    object-fit: cover;
    /* margin: 1rem; */
}

/* Timeline Integrate CSS */
.s-content.timeline-content {
    padding-top: unset;
    padding-bottom: unset;
}
.s-content .timeline-container .row {
    max-width: unset !important;
    width: unset !important;
    padding: unset !important;
    margin: 0 !important;
}

.timeline__content-title.studio {
    position: relative;
}

.s-content .timeline-container .page-load-status {
    border-top: 2px solid #ffffff;
    color: #000000;
}
.s-content .timeline-header .s-content__author {
    margin-top: 5rem;
    padding-left: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

.s-content .timeline-header .s-content__author img {
    position: relative;
}

.s-content .timeline-header .s-content__author p {
    color: rgba(255, 255, 255, 0.5);
}

.s-content .timeline-header a:hover {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.s-content .timeline-header a {
    color: #f2f2f2;
}

.masonry .timeline__free-post {
    max-width: unset;
}

.masonry .timeline__free-post .card {
    margin-top: 8rem;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgb(0, 0, 0 / 7%);
}
.masonry .timeline__free-post .card .card-wrapper img {
    width: 100%;
}

.gallery-item {
    border-radius: 3px;
    box-shadow: 0 10px 16px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%) !important;
}

.gallery-item img {
    vertical-align: middle;
    -webkit-transition: all 0.7s;
    transition: all 0.7s !important;
}

.gallery-item img:hover {
    vertical-align: middle;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    cursor: zoom-in;
    transform: scale(1.1);
}

.timeline-postmedia .gallery-item .image-attr {
    font-size: 0.6rem;
}

.lg-sub-html .image-attr {
    position: unset;
    bottom: unset;
    right: unset;
    font-size: unset;
    font-weight: unset;
}

.lg-container {
    font-family: unset;
}

.lg-sub-html a:hover {
    text-decoration: unset;
}

.s-content.timeline-post-content .s-content__author {
    margin-top: 0;
    padding-left: 0;
    text-align: center;
}

.s-content.timeline-post-content .s-content__author img {
    position: relative;
}
.s-content.timeline-post-content .s-content__main {
    text-align: center;
    margin-top: unset;
}

.timeline-post.active a {
    background-color: #0054a5 !important;
}

.timeline-post-action-attr {
    cursor: pointer;
    font-size: 1.5rem;
}

/* Compose Post CSS */
.compose-timeline-post-wrapper {
    display: none;
}

@media only screen and (max-width: 1400px) {
    .compose-timeline-post {
        max-width: 80%;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 700px) {
    .compose-timeline-post {
        max-width: unset;
        margin: unset;
    }
}

/* Custom File Pond Css */
.filepond--root {
    max-width: 800px;
    font-size: unset !important;
    margin: auto auto 1em auto;
}

.filepond--item {
    width: calc(50% - 0.5em);
}

@media (min-width: 30em) {
    .filepond--item {
        width: calc(50% - 0.5em);
    }
}

@media (min-width: 50em) {
    .filepond--item {
        width: calc(33.33% - 0.5em);
    }
}

/* Timeline Image Grid Styles */
.timeline__album {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(96.66px, 1fr));
    grid-template-rows: repeat(auto-fit, minmax(96.66px, 1fr));
    grid-gap: 0.5rem;
    /* margin: 1rem; */
}
.timeline__album .album-image-grid {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
}
.timeline__album .album-image-grid img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    left: 0;
    position: absolute;
    top: 0;
    margin: unset;
    transition: all 0.5s ease;
}

.timeline__album .album-image-grid img:hover {
    -webkit-clip-path: var(--clip-end);
    clip-path: var(--clip-end);
    transform: scale(1.5);
}

@media only screen and (max-width: 767px) {
    .timeline__album {
        max-width: 30rem;
    }
}

@media only screen and (max-width: 413px) {
    .timeline__album {
        grid-template-columns: repeat(auto-fit, minmax(18vw, 1fr));
    }
}

/* Timeline Free Post */
.timeline__free-post .card {
    background: #fff;
    /* margin: 30px 10px; */
    padding: 20px 20px;
    border-radius: 4px;
    box-shadow: 0 5px 200px rgba(0, 0, 0, 0.5);
    transition: 0.5s ease-in-out;
}

.timeline__free-post .card .card-wrapper {
    position: relative;
    top: -60px;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.timeline__free-post .card .card-wrapper img {
    object-fit: cover;
    margin: unset;
    width: 30rem;
    height: 30rem;
}

.timeline__free-post .card .content {
    padding: 10px 15px;
    text-align: center;
}

.free-post__content-title {
    font-weight: normal;
    font-size: 20px;
    font-family: "josefin-sans-bold", sans-serif;
}

.free-post__content-title a {
    color: #000000;
    border-bottom: 1px solid transparent;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.free-post__content-title a.privacy-icon {
    font-size: 1.4rem;
    color: #858585;
}

.free-post__content-title a:focus,
.free-post__content-title a:hover {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.free-post__content-description {
    line-height: 25px;
}

.timeline__free-post .card .interactions {
    top: -15px;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 2.4rem;
    text-align: center;
    letter-spacing: 10px;
}

.timeline__free-post .card .interactions a {
    color: #000000;
}
.timeline__free-post .card .interactions a:focus,
.timeline__free-post .card .interactions a:hover {
    color: #0054a5;
}
.timeline__free-post .card .interactions li {
    display: inline-block;
    padding-left: 0;
    margin-right: 9px;
}

@media only screen and (max-width: 767px) {
    .timeline__free-post {
        max-width: 30rem;
    }
}

/* Timeline Account Activity */
.hidden {
    display: none;
}
.timeline__img-user-activity {
    max-width: 30rem;
    position: relative;
    align-items: center;
}
.timeline__img-user-activity img {
    width: 100%;
    margin: unset !important;
    z-index: -1;
}

.timeline__details-user-activity {
    max-width: 30rem;
    background: #000000;
    padding: 0 20px 20px 20px;
    box-shadow: 0px 0px 200px 2px rgba(0, 0, 0, 0.5);
}

.timeline__details-user-activity .timeline__content-title {
    padding: 10px;
}

.timeline__circle-animation {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    /* box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25); */
}

.timeline__circle-animation::after {
    opacity: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    bottom: 0;
    content: "";
    height: 100%;
    width: 100%;
    border: 8px solid rgba(0, 0, 0, 0.2);
    border-radius: 100%;
    -webkit-animation-name: ripple;
    animation-name: ripple;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
    animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
    z-index: -1;
}
.timeline__circle-animation::before {
    opacity: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    bottom: 0;
    content: "";
    height: 100%;
    width: 100%;
    border: 8px solid rgba(0, 0, 0, 0.2);
    border-radius: 100%;
    -webkit-animation-name: ripple;
    animation-name: ripple;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
    animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
    z-index: -1;
}

@-webkit-keyframes ripple {
    from {
        opacity: 1;
        transform: scale3d(0.75, 0.75, 1);
    }
    to {
        opacity: 0;
        transform: scale3d(1, 1, 1);
    }
}

@keyframes ripple {
    from {
        opacity: 1;
        transform: scale3d(0.75, 0.75, 1);
    }
    to {
        opacity: 0;
        transform: scale3d(1, 1, 1);
    }
}

@media only screen and (max-width: 767px) {
    .timeline__img-user-activity img {
        width: unset !important;
        height: unset !important;
    }
}

/* Timeline User Notify Bubble */
.timeline__notify-bubble {
    transform: translatey(0px);
    -webkit-animation: float 5s ease-in-out infinite;
    animation: float 5s ease-in-out infinite;
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    color: #000000;
    background-color: #f2f2f2;
    padding: 20px;
    border-radius: 11px;
    position: relative;
    box-shadow: 20px 20px #000000;
    font-family: "josefin-sans-bold", sans-serif;
    margin-bottom: 100px;
    max-width: 30rem;
}

.timeline__notify-bubble:after {
    transform: translatey(0px);
    -webkit-animation: float2 5s ease-in-out infinite;
    animation: float2 5s ease-in-out infinite;
    content: ".";
    font-weight: bold;
    -webkit-text-fill-color: #f2f2f2;
    text-shadow: 22px 22px #000000;
    text-align: left;
    font-size: 55px;
    width: 55px;
    height: 11px;
    line-height: 30px;
    border-radius: 11px;
    background-color: #f2f2f2;
    position: absolute;
    display: block;
    bottom: -30px;
    left: 0;
    box-shadow: 22px 22px #000000;
    z-index: -2;
}

.timeline__notify-bubble .timeline__notify--title a {
    color: #000000;
}

.timeline-item:nth-child(odd) .timeline__notify-bubble:after {
    left: unset;
    right: 0;
    text-align: right;
}

@media only screen and (max-width: 767px) {
    .timeline-item:nth-child(odd) .timeline__notify-bubble:after {
        left: 0;
        right: unset;
        text-align: left;
    }
}

@-webkit-keyframes float {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-20px);
    }
    100% {
        transform: translatey(0px);
    }
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-20px);
    }
    100% {
        transform: translatey(0px);
    }
}
@-webkit-keyframes float2 {
    0% {
        line-height: 30px;
        transform: translatey(0px);
    }
    55% {
        transform: translatey(-20px);
    }
    60% {
        line-height: 10px;
    }
    100% {
        line-height: 30px;
        transform: translatey(0px);
    }
}
@keyframes float2 {
    0% {
        line-height: 30px;
        transform: translatey(0px);
    }
    55% {
        transform: translatey(-20px);
    }
    60% {
        line-height: 10px;
    }
    100% {
        line-height: 30px;
        transform: translatey(0px);
    }
}


/* Pintura CSS */

.pintura-editor, pintura-editor {
    --font-family: "josefin-sans-regular", sans-serif !important;
}

.pintura-editor button:not(.PinturaButtonCenter), pintura-editor button:not(.PinturaButtonCenter) {
    text-transform: unset !important;
    letter-spacing: unset !important;
    height: unset !important;
    /* text-align: unset !important; */
    white-space: unset !important;
}


/* Avatar In Title Css */
.s-content__header-meta .author-avatar img {
    margin: 0 !important;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    vertical-align: middle;
}