.without-caret:after {
    content: none !important;
}

.bullet-point {
    width: 8px;
    height: 8px;
    background: #222;
}

.gateway-image{
    max-height: 25px !important;
}

.mh-500-px{
    max-height: 500px !important;
}

.min-h-150-px{
    min-height: 150px !important;
}

.album-file {
    cursor: pointer !important;
}

.comment-wrapper{
    display: flex;
    justify-content: space-between;
    gap: 7px;
}

.comment-wrapper img{
    border-radius: 50%;
    object-fit: cover;
    width: 32px;
    height: 32px;
}

.comments-wrapper{
    font-size: 14px;
    max-height: 600px;
    overflow: auto;
}

.comments-wrapper .comment-body{
    border-radius: 10px;
    padding: 0.5rem 1rem;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)
}

.comments-wrapper .comment-item {
    display: flex;
    gap: 7px;
}

.comment-item .avatar{
    border-radius: 50%;
    object-fit: cover;
    width: 32px;
    height: 32px;
    margin-top: 18px;
}

.comment-item .comment-description{
    width: 100%;
}

.comment-description .comment-user{
    display: flex;
    align-items: center;
    gap: 7px;
    color: #4f4f4f;
    font-weight: lighter;
}

.comment-description .comment-user a{
    color: #4f4f4f;
    text-decoration: none;
}

.comment-description  .comment-user a:hover{
    color: #1a1a1a;
    text-decoration: none;
}

.comment-description .comment{
    font-weight: lighter;
}

.comment-description .comment-action{
    display: flex;
    align-items: center;
    gap: 30px;
    font-weight: lighter;
    margin-top: 10px;
}

.comment-action .dropdown-toggle{
    cursor: pointer;
}

.comment-action .dropdown-toggle:before,
.comment-action .dropdown-toggle:after {
    content: none;
}

.comment-description .more-replies{
    color: #4f4f4f;
    text-decoration: underline;
}

.btn-comment-react:hover i:before{
    content: "\f415";
    color: #ff6189;
    cursor: pointer;
}

textarea.form-control{
    height: 35px;
}
textarea.form-control-height{
    height: 150px !important;
}

.emoji-picker {
    cursor: pointer;
    position: absolute;
    right: 50px;
    font-size: 20px;
    z-index: 1;
    transition: none;
    color: #d9d8e1;
}

.typing-indicator {
    display: none;
    background-color: #f8f9fa;
    will-change: transform;
    width: auto;
    border-radius: 50px;
    padding: 12px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
    -webkit-animation: 2s bulge infinite ease-out;
    animation: 2s bulge infinite ease-out;
}
.typing-indicator span {
    height: 15px;
    width: 15px;
    float: left;
    margin: 0 1px;
    background-color: #9E9EA1;
    display: block;
    border-radius: 50%;
    opacity: 0.4;
}
.typing-indicator span:nth-of-type(1) {
    -webkit-animation: 1s blink infinite 0.3333s;
    animation: 1s blink infinite 0.3333s;
}
.typing-indicator span:nth-of-type(2) {
    -webkit-animation: 1s blink infinite 0.6666s;
    animation: 1s blink infinite 0.6666s;
}
.typing-indicator span:nth-of-type(3) {
    -webkit-animation: 1s blink infinite 0.9999s;
    animation: 1s blink infinite 0.9999s;
}

@-webkit-keyframes blink {
    50% {
        opacity: 1;
    }
}

@keyframes blink {
    50% {
        opacity: 1;
    }
}
@-webkit-keyframes bulge {
    50% {
        transform: scale(1.05);
    }
}
@keyframes bulge {
    50% {
        transform: scale(1.05);
    }
}

.btn-heart {
    color: #ff7272;
}

.btn-heart:hover {
    color: #fc5656;
}

.icon-wrapper{
    font-size: 1em;
    text-align: center;
    position: relative;
    cursor: pointer;
    display: inline-block;
}
.icon-wrapper .icon {
    color: #90A4AE;
}
.icon-wrapper .icon i{
    transform: scale(1);
}
.icon-wrapper.anim .icon{
    color: #ff7272;
}
.icon-wrapper.anim .icon i{
    -webkit-animation: icon-animation cubic-bezier(0.165, 0.84, 0.44, 1) 1.2s;
    animation: icon-animation cubic-bezier(0.165, 0.84, 0.44, 1) 1.2s;
}

.icon-wrapper .icon-border {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    margin-left: -40px;
    margin-top: -40px;
    z-index: 0;
    transition: all ease 0.5s;
    transform-origin: 0px 0px;
}
.icon-wrapper .icon-border span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: scale(0.1);
}
.icon-wrapper.anim .icon-border span {
    -webkit-animation: border-animation cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
    animation: border-animation cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.icon-wrapper .satellite{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 80px;
    height: 80px;
    margin-left: -40px;
    margin-top: -40px;
}
.icon-wrapper .satellite span{
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-top: -10px;
    margin-left: -10px;
    transition: all ease 0.5s;
    transform-origin: center 0px;
    transform: translate(0, 0) scale(0);
    -webkit-animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
.icon-wrapper.anim .satellite span:nth-child(1){
    top: 0;
    left: 50%;
    background: #988ade;
    -webkit-animation-name: satellite-top;
    animation-name: satellite-top;
}
.icon-wrapper.anim .satellite span:nth-child(2) {
    top: 25%;
    left: 100%;
    background: #de8aa0;
    -webkit-animation-name: satellite-top-right;
    animation-name: satellite-top-right;
}
.icon-wrapper.anim .satellite span:nth-child(3){
    top: 75%;
    left: 100%;
    background: #8aaede;
    -webkit-animation-name: satellite-bottom-right;
    animation-name: satellite-bottom-right;
}
.icon-wrapper.anim .satellite span:nth-child(4) {
    top: 100%;
    left: 50%;
    background: #8adead;
    -webkit-animation-name: satellite-bottom;
    animation-name: satellite-bottom;
}
.icon-wrapper.anim .satellite span:nth-child(5) {
    top: 75%;
    left: 0;
    background: #dec58a;
    -webkit-animation-name: satellite-bottom-left;
    animation-name: satellite-bottom-left;
}
.icon-wrapper.anim .satellite span:nth-child(6) {
    top: 25%;
    left: 0;
    background: #8ad1de;
    -webkit-animation-name: satellite-top-left;
    animation-name: satellite-top-left;
}

@-webkit-keyframes border-animation {
    0% {
        border-width: 20px;
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        border-width: 0px;
        opacity: 0;
    }
}

@keyframes border-animation {
    0% {
        border-width: 20px;
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        border-width: 0px;
        opacity: 0;
    }
}

@-webkit-keyframes satellite-top {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(0) translate(0, -140px);
    }
}
@keyframes satellite-top {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(0) translate(0, -140px);
    }
}
@-webkit-keyframes satellite-bottom {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(0) translate(0, 140px);
    }
}
@keyframes satellite-bottom {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(0) translate(0, 140px);
    }
}
@-webkit-keyframes satellite-top-right {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(0) translate(125.2236135957px, -62.6118067979px);
    }
}
@keyframes satellite-top-right {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(0) translate(125.2236135957px, -62.6118067979px);
    }
}
@-webkit-keyframes satellite-bottom-right {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(0) translate(125.2236135957px, 62.6118067979px);
    }
}
@keyframes satellite-bottom-right {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(0) translate(125.2236135957px, 62.6118067979px);
    }
}
@-webkit-keyframes satellite-bottom-left {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(0) translate(-125.2236135957px, 62.6118067979px);
    }
}
@keyframes satellite-bottom-left {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(0) translate(-125.2236135957px, 62.6118067979px);
    }
}
@-webkit-keyframes satellite-top-left {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(0) translate(-125.2236135957px, -62.6118067979px);
    }
}
@keyframes satellite-top-left {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(0) translate(-125.2236135957px, -62.6118067979px);
    }
}
@-webkit-keyframes icon-animation {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes icon-animation {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

.has-more-replies{

}

.media-controls {
    align-items: center;
    background: #fffaee;
    border: 1px solid #fff3eb;
    border-radius: 24px;
    color: #565656;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 24px;
    max-width: calc(100% - 24px * 2);
    padding: 24px;
    position: relative;
}
.media-controls:after {
    border-radius: 24px;
    box-shadow: 0 2px 2px rgba(255, 107, 0, 0.25), 0 4px 4px rgba(255, 107, 0, 0.2), 0 8px 8px rgba(255, 107, 0, 0.15), 0 16px 16px rgba(255, 107, 0, 0.1), 0 24px 24px rgba(255, 107, 0, 0.05);
    content: '';
    height: 100%;
    left: 0;
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}
.media-buttons {
    display: flex;
    flex-wrap: nowrap;
}
.media-button {
    background-color: transparent;
    border: none;
    align-items: center;
    border-radius: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
@media (min-width: 421px) {
    .media-button {
        padding: 12px;
    }
}
.button-icons {
    background-color: #ffc399;
    border-radius: 100%;
    margin-bottom: 4px;
    margin-top: auto;
    padding: 16px;
}
.back-button .button-icons,
.skip-button .button-icons {
    background-color: transparent;
    color: #919191;
}
.rewind-button .button-icons,
.fast-forward-button .button-icons {
    background: linear-gradient(to bottom left, #fff8e7, #ffe1cc);
    color: #838383;
}
.play-button .button-icons {
    background: linear-gradient(to bottom left, #ffffff, #fff8e7);
    border: 1px solid #fff3eb;
    box-shadow: -1px 1px 1px rgba(255, 195, 153, 0.25), 1px -1px 1px rgba(255, 255, 255, 0.25), -2px 2px 2px rgba(255, 195, 153, 0.2), 2px -2px 2px rgba(255, 255, 255, 0.2), -4px 4px 4px rgba(255, 195, 153, 0.15), 4px -4px 4px rgba(255, 255, 255, 0.15), -8px 8px 8px rgba(255, 195, 153, 0.1), 8px -8px 8px rgba(255, 255, 255, 0.1), -16px 16px 16px rgba(255, 195, 153, 0.05), 16px -16px 16px rgba(255, 255, 255, 0.05);
    color: #f26600;
    margin-bottom: 8px;
    padding: 24px;
}
.button-text {
    margin-top: auto;
}
.media-progress {
    align-self: stretch;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.progress-bar-wrapper {
    background-color: transparent;
    border-radius: 12px;
    box-shadow: inset -1px 1px 1px rgba(255, 195, 153, 0.25), inset 1px -1px 1px rgba(255, 255, 255, 0.25), inset -2px 2px 2px rgba(255, 195, 153, 0.2), inset 2px -2px 2px rgba(255, 255, 255, 0.2), inset -4px 4px 4px rgba(255, 195, 153, 0.15), inset 4px -4px 4px rgba(255, 255, 255, 0.15), inset -8px 8px 8px rgba(255, 195, 153, 0.1), inset 8px -8px 8px rgba(255, 255, 255, 0.1), inset -16px 16px 16px rgba(255, 195, 153, 0.05), inset 16px -16px 16px rgba(255, 255, 255, 0.05);
    height: 12px;
    margin-bottom: 8px;
    margin-top: 24px;
    position: relative;
    width: 100%;
    cursor: not-allowed;
}
.progress-bar {
    background: linear-gradient(to right, #fdd25f, #ff6b00);
    border-radius: 12px;
    box-shadow: none;
    height: 12px;
}

.post {
    margin-top:20px;
    margin-bottom:60px;
}
.post .post-img-list {
    list-style-type: none;
    margin: -0.0625rem -1.3125rem;
    padding: 0;
}
.post .post-img-list:after,
.post .post-img-list:before {
    content: "";
    display: table;
    clear: both;
}
.post .post-img-list .post-img-list-item {
    float: left;
    width: 100%;
    padding: 0.0625rem;
}
.post .post-img-list .post-img-list-item.main {
    width: 100%;
}
.post .post-img-list .post-img-list-item .post-img-list-link {
    display: block;
    padding-top: 75%;
    overflow: hidden;
    position: relative;
}
.post .post-img-list .post-img-list-item .post-img-list-link .post-img-content,
.post .post-img-list .post-img-list-item .post-img-list-link img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.post .post-img-list .post-img-list-item .post-img-list-link .post-img-content:before,
.post .post-img-list .post-img-list-item .post-img-list-link img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(60, 78, 113, 0.15);
}
.post .post-img-list .post-img-list-item.with-number .post-img-number {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    color: #fff;
    font-size: 1.625rem;
    font-weight: 500;
    line-height: 1.625rem;
    margin-top: -0.8125rem;
    text-align: center; }

.amount-input {
    height: 40px;
}

.extra-card {
    transition: .2s ease;
    padding: 0;
    cursor: pointer;
    z-index: 30;
}

.extra-card:hover {
    margin-top: -10px;
}

.extra-btn {
    background-color: #F54748;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

.order-btn-area {
    margin-top: -40px;
    opacity: 0;
    transition: .2s ease;
}


.extra-card:hover .order-btn-area {
    opacity: 1;
    color: #fff;
    background: linear-gradient(180deg,rgba(0,0,0,0) 0%,rgba(0,0,0,.5) 100%);
}

.order-btn {
    padding: 3px 16px;
    border: 1px solid #e9e9e9;
    background: #FFF;
    font-size: 14px;
    color: #222;
    border-radius: 50px;
    float: right;
    margin-bottom: 10px;
}

.post-description{
    margin-left: -36px;
    margin-right: -36px;
    background: #ff813f;
    color: white;
    padding: 35px;
    height: 320px;
    font-size: 30px;
    overflow: hidden;
}

label{
    cursor: pointer;
}

.btn-danger{
    background-color: #F54748 !important;
    border-color: #F54748 !important;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{
    border-bottom: 4px solid #F54748 !important;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-bottom: 4px solid #de5b5c !important;
    isolation: isolate;
}

.nav-link{
    color: #717171;
}
.nav-link:hover{
    color: #565656;
}

body, .side-menu-area, .top-header-area{
    background-color: #f9f9f9!important;
}

.top-header-area.view-page {
    background-color: transparent !important;
}

.counters {
    overflow: auto hidden;
}

.unsplash-image-show {
    max-height: 400px;
    overflow: auto;
}

.notification-content{
    overflow: hidden auto;
}

.bg-unread {
    background-color: #f7f7f7;
}

.divider {
    width: 2px;
    background: linear-gradient(rgba(34,34,34,0) 0%,rgba(34,34,34,.07) 49.83%,rgba(34,34,34,0) 100%);
}

.stats-wrapper .stats-item {
    width: 100%;
}

.stats-description, .earnings-chart-wrapper{
    display: none;
}

.placeholder-glow .placeholder {
    border-radius: 4px;
}

.post-create-card,
.published-button-area a,
.form-control,
.form-select
{
    background-color: white !important;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}

.form-control,
.form-select
{
    border: none !important;
}

a.isDisabled {
    pointer-events: none;
}

.custom-table table th {
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    line-height: 1.4;
    background-color: #6c7ae0;
    padding: 15px 0;
}

.custom-table {
    border-radius: 10px;
    border-collapse: collapse;
    border-radius: 1em;
    overflow: hidden;
}

.custom-table table thead {
    border: 1px solid #6c7ae0;
}

.custom-table .table>:not(caption)>*>* {
    border-bottom-width: 0px;
}

.bg-white {
    background: #FFF;
}

.goal-nav-link.active {
    color: rgba(0, 0, 0, 0.89) !important;
    background-color: rgba(34, 34, 34, .05) !important;
}

.h-200 {
    height: 200px !important;
}

.supporter-chart {
    display: block;
    height: 303px;
    width: 576px;
}

.input-group.mb-3 span {
    margin-bottom: 0;
    background: aliceblue;
    padding: 0 30px;
}

input.form-control.google {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
}
