html {
    background-color:#fff;
    overflow-x: hidden !important;
}
body {
    max-width:100% !important;
    overflow-x: hidden !important;
}
[x-cloak] { 
    display: none; 
}
.primary-font {
    font-family: "beloved-script", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.secondary-font {
    font-family: "dolly-new", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.card-grid {
    grid-template-columns: 1fr auto;
}
.bg-theme {
    background-color: #769293 !important
}
.btn-primary {
    background-color: #769293 !important;
    outline-color: #769293 !important;
    border-color: #769293 !important;
}
.btn-primary:hover {
    background-color: #5e7a7a !important;
}

/* input:focus,
textarea:focus,
select:focus {
    outline: none !important;
    box-shadow: none !important;
} */
.form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-control-plaintext ~ label, .form-floating > .form-select ~ label {
    transform: scale(0.85) translateY(-1.7rem) translateX(0.15rem) !important;
}
label::after {
    background-color: #fff !important;
}
hr.custom-line {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}
.disabled-link {
    pointer-events: none;
} 
/* .back-btn {
    width:100px;
} */
.form-check-input:checked {
    background-color: #769293 !important;
    border-color: #769293 !important;
}
.b-radius-none {
    border-radius: inherit !important;
}
.shadow-md {
    -webkit-box-shadow: 0px 0px 25px -1px rgba(0,0,0,0.12);
    -moz-box-shadow: 0px 0px 25px -1px rgba(0,0,0,0.12);
    box-shadow: 0px 0px 25px -1px rgba(0,0,0,0.12);
}
.desktop {
    display: block;
}
.mobile {
    display: none;
}
/**
* Auth
*/
.auth-reg {
    background-image:url('../images/site/register.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
}
.auth-reg-i {
    margin-top: 10%;
}
/** 
* dashboard nav
*/
.dash-nav .nav-link {
    border-radius: 4px;
    transition: ease .5s;
}
.dash-nav .nav-link.active {
    background-color: #dee2e6 !important;
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}
.dash-nav .nav-link:hover {
    background-color: #dee2e6 !important;
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}
.dash-nav-heading {
    padding: 10px;
    color: #ccc;
}
.sidebar-navigation {
    width: 222px !important;
}
/** 
* Dashboard
*/
.new-check-circle {
    background-color:transparent;
    width:100px;
    height:100px;
    border-radius:50px;
}
.new-check-circle p {
    display:block;
    text-align: center;
    line-height: 100px;
    font-family: "beloved-script", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size:20px;
}
.announcement-block {
    transition: ease .5s;
}
.announcement-block-info {
    width: 100%;
    bottom: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: rgba(255,255,255,0.6);
}
.announcement-block:hover .announcement-block-info {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    transition: ease .5s !important;
    background-color: rgba(255,255,255,0.8) !important;
}
.animation-pulse-success {
    /*box-shadow: 0 0 0 20px rgba(229,62,62, 0.5);
    transform: scale(0.8);*/
    border-radius: 50%;
    animation: pulseSuccess 2s infinite;
}
.animation-pulse-warning {
    /*box-shadow: 0 0 0 20px rgba(229,62,62, 0.5);
    transform: scale(0.8);*/
    border-radius: 50%;
    animation: pulseWarning 2s infinite;
}

@keyframes pulseSuccess {
    0% {
        transform: scale(0.8);
        box-shadow: 0 0 0 0 rgba(90, 197, 99, 1);
    }
    70% {
        transform: scale(0.1);
        box-shadow: 0 0 0 60px rgba(229, 62, 62, 0);
    }
    100% {
        transform: scale(0.8);
    }
}
@keyframes pulseWarning {
    0% {
        transform: scale(0.8);
        box-shadow: 0 0 0 0 rgba(255, 163, 16, 1);
    }
    70% {
        transform: scale(0.1);
        box-shadow: 0 0 0 60px rgba(229, 62, 62, 0);
    }
    100% {
        transform: scale(0.8);
    }
}
/** Todo */
.new-check-circle.todo {
    box-shadow: 0 0 8px #6591ff, inset 0 0 8px #6591ff;
    -webkit-animation: pulseNew 2s linear 1s infinite;
}
.new-check-circle.todo p {
    font-size:20px;
    color: #6591ff;
    text-shadow: 0 0 4px #6591ff;
}
.checklist-col-todo h6 {
    color: #6591ff;
}
@-webkit-keyframes pulseNew {
    0% { box-shadow:0 0 8px #6591ff, inset 0 0 8px #6591ff; }
    50% { box-shadow:0 0 16px #6591ff, inset 0 0 14px #6591ff; }
    100% { box-shadow:0 0 8px #6591ff, inset 0 0 8px #6591ff; }
}
/** In progress */
.new-check-circle.inprogress {
    box-shadow: 0 0 8px #ffa310, inset 0 0 8px #ffa310;
    -webkit-animation: pulseInProgress 2s linear 1s infinite;
}
.new-check-circle.inprogress p {
    font-size:20px;
    color: #ffa310;
    text-shadow: 0 0 4px #ffa310;
}
.checklist-col-inprogress h6 {
    color: #ffa310;
}
@-webkit-keyframes pulseInProgress {
    0% { box-shadow:0 0 8px #ffa310, inset 0 0 8px #ffa310; }
    50% { box-shadow:0 0 16px #ffa310, inset 0 0 14px #ffa310; }
    100% { box-shadow:0 0 8px #ffa310, inset 0 0 8px #ffa310; }
}
/** Done */
.new-check-circle.done {
    box-shadow: 0 0 8px #5ac563, inset 0 0 8px #5ac563;
    -webkit-animation: pulseDone 2s linear 1s infinite;
}
.new-check-circle.done p {
    font-size:20px;
    color: #5ac563;
    text-shadow: 0 0 4px #5ac563;
}
.checklist-col-done h6 {
    color: #5ac563;
}
@-webkit-keyframes pulseDone {
    0% { box-shadow:0 0 8px #5ac563, inset 0 0 8px #5ac563; }
    50% { box-shadow:0 0 16px #5ac563, inset 0 0 14px #5ac563; }
    100% { box-shadow:0 0 8px #5ac563, inset 0 0 8px #5ac563; }
}
/**
* Guest list
*/
.guest-item:hover {
    cursor: pointer;
}
.guest-item i {
    transition: ease .3s;
}
.guest-item:hover i {
    font-size: 3em !important;
}
.guest-item.sm:hover i {
    font-size: 1em !important;
}
/**
* Builder
*/
.builder-nav-item {
    border: 0.5px solid #ccc;
    border-radius: 10px;
    margin-bottom: 10px;
}
.builder-nav-item,
.builder-nav-content {
    padding: 10px;
}
nav.builder-sidebar {
    padding: 10px 15px 0px 15px;
}
#image-preview {
    width: 150px;
    height: 150px;
    background-color: #f0f0f0;
    border-radius:50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-align:center;
}
#image-preview img {
    width:150px;
    height:150px;
    border-radius:50%;
    object-fit: cover;
    display: none;
}
#imageOriginalPreview img {
    width:150px;
    height:150px;
    border-radius:50%;
    object-fit: cover;
}
#galleryOriginalPreview img {
    width:100%;
    height:150px;
    object-fit: cover;
}
#galleryOriginalBlankPreview {
    width:150px;
    height:150px;
    background-color: #f0f0f0;
    object-fit: cover;
}
.d-gallery-btn {
    border-top-left-radius: 0% !important;
    border-top-right-radius: 0% !important;
}
/** 
* Not published theme
*/
.hero.not-published {
    background-image: url('../images/themes/not-published-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}
.not-published-txt {
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.not-published-txt h1 {
    font-size: 80px;
}
.not-published-footer {
    bottom: 0;
}
/**
* Datatables
*/
.table.dataTable {
    font-family: 'Nunito', sans-serif;
}
.dataTables_filter {
    display: none;
}
.dataTables_length {
    margin-bottom: 20px;
    font-family: 'Nunito', sans-serif !important;
}
.edit-btn-icon:hover {
    color: #0d6efd !important;
}
.trash-btn-icon:hover {
    cursor: pointer;
    color: #dc3545 !important;
}
/**
* Kanban
*/
#kanban-column-header-0,
#kanban-column-header-1,
#kanban-column-header-2 {
    border-right: none !important;
    border-left: none !important;
    border-bottom: none !important;
    color: #000 !important;
    font-family: 'Nunito', sans-serif !important;
    font-size: 18px;
    padding-top: 10px;
    padding-left: 15px;
    border-radius: 5px;
    background-color: #f5f5f5;
    margin-bottom: 0px !important;
}
#kanban-column-header-0 {
    border-top: 3px solid #6591ff;
    background: #fff;
}
#kanban-column-header-1 {
    border-top: 3px solid #ffa310;
    background: #fff;
}
#kanban-column-header-2 {
    border-top: 3px solid #5ac563;
    background: #fff;
}
.jqx-kanban-column-header.jqx-widget-header {
    background: #fff;
}
#kanban-column-0,
#kanban-column-1,
#kanban-column-2 {
    border: none !important;
}
#kanban-column-container-0,
#kanban-column-container-1,
#kanban-column-container-2 {
    background-color: #fff;
    padding: 10px;
    margin-top: 0px !important;
}
/* #kanban-column-container-0 .jqx-kanban-item {
    background-color: #6591ff;
    color: #fff !important;
}
#kanban-column-container-1 .jqx-kanban-item {
    background-color: #ffa310;
    color: #fff !important;
}
#kanban-column-container-2 .jqx-kanban-item {
    background-color: #5ac563;
    color: #fff !important;
} */
.jqx-kanban-item {
    font-family: 'Nunito', sans-serif !important;
    border: none !important;
    border-radius: 5px !important;
    padding-top: 0px !important;
    margin-bottom:15px !important;
    -webkit-box-shadow: 0px 0px 8px -1px rgba(0,0,0,0.12) !important;
    -moz-box-shadow: 0px 0px 8px -1px rgba(0,0,0,0.12) !important;
    box-shadow: 0px 0px 8px -1px rgba(0,0,0,0.12) !important;
}
.jqx-kanban-item-text {
    font-weight: bold;
    padding: 0px 10px 20px 10px !important;
    width: 85%;
}
.jqx-kanban-item-date {
    padding: 10px 10px 10px 0px;
    margin-bottom: 10px;
    margin-left: 10px;
    color: #f0f0f0 !important;
}
#kanban-column-container-0 .jqx-kanban-item-date {
    background-color: #6591ff;
}
#kanban-column-container-1 .jqx-kanban-item-date {
    background-color: #ffa310;
}
#kanban-column-container-2 .jqx-kanban-item-date {
    background-color: #5ac563;
}
.jqx-kanban-item-avatar {
    display: none !important;
}
.jqx-kanban-item-footer {
    display: none;
}
.jqx-kanban-item-btn {
    height: 100%;
    top: 2px;
    right: 2px;
}
/** 
* Qrcode
*/
#qrcode {
    border-radius: 10px;
    justify-content: center !important;
    display: flex;
}
/** 
* Payment options
*/
.highlighted-payment-option {
    background-color: #769293 !important;
}
.selected-plan-banner {
    top: -20px;
    left: 0;
}

@media screen and (max-width: 768px) {
    .sidebar-navigation {
        margin-left: -220px;
    }
    .desktop {
        display: none;
    }
    .mobile {
        display: block;
    }
    .hero.not-published {
        background-image: url('../images/themes/not-published-bg-mobile.png');
    }
    .auth-login-container {
        padding: 0px 20px;
    }
}
