:root {
    --font-size: 16px;
    --spacing: 1rem;
    --primary-link-color: #1652f0;
}

.lds-facebook {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    top: 48%;
}

.input-group.expand {
    width: 100%;
    max-width: 100%;
}

.input-group {
    margin-top: 20px;
    max-width: 400px;
    width: 100%;
}

.input-group button {
    border: none;
    width: 100%;
    max-width: 400px;
    height: 40px;
}

.input-group * {
    margin-bottom: 10px;
}

.otp-field {
    font-size: 2rem;
    letter-spacing: 1rem; /* Space between each character */
    text-align: center;
    width: 15ch; /* Width based on character length */
    padding: 0.5rem;
    border: 1px solid rgba(204, 204, 204, .5);
    border-radius: 8px;
    outline: none; /* Distance between text and underline */
    caret-color: transparent;
}

.otp-field:focus {
    border: 1px solid rgba(204, 204, 204, 1);
    background-color: #f0f8ff;
    text-decoration-color: var(--primary-link-color); /* Light background color on focus */
}

label {
    font-size: 16px;
    display: block;
    color: #000;
}

.lds-facebook div {
    display: inline-block;
    position: absolute;
    left: 8px;
    width: 16px;
    background: #8468a5;
    animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.lds-facebook div:nth-child(1) {
    left: 8px;
    animation-delay: -0.24s;
}

.lds-facebook div:nth-child(2) {
    left: 32px;
    animation-delay: -0.12s;
}

.lds-facebook div:nth-child(3) {
    left: 56px;
    animation-delay: 0;
}

@keyframes lds-facebook {
    0% {
        top: 8px;
        height: 64px;
    }
    50%, 100% {
        top: 24px;
        height: 32px;
    }
}

html, body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;

}

main {
    flex: 1 0 auto;
}


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

:root {
    --select-border: #777;
    --select-focus: blue;
    --select-arrow: var(--select-border);
}

select {
    appearance: none;
    background-color: transparent;
    border: none;
    padding: 0 1em 0 0;
    margin: 0;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    cursor: inherit;
    line-height: inherit;
    z-index: 1;
    outline: none;
}

select::-ms-expand {
    display: none;
}

.select {
    display: grid;
    grid-template-areas: "select";
    align-items: center;
    position: relative;
    max-width: 100%;
    border: 1px solid var(--select-border);
    border-radius: 0.25em;
    padding: 0.25em 0.5em;
    font-size: 1.25rem;
    cursor: pointer;
    line-height: 1.1;
    background-color: #fff;
    background-image: linear-gradient(to top, #f9f9f9, #fff 33%);
}

.select select, .select::after {
    grid-area: select;
}

.select:not(.select--multiple)::after {
    content: "";
    justify-self: end;
    width: 0.8em;
    height: 0.5em;
    background-color: var(--select-arrow);
    clip-path: polygon(100% 0%, 0 0%, 50% 100%);
}

select:focus + .focus {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 2px solid var(--select-focus);
    border-radius: inherit;
}

select[multiple] {
    padding-right: 0;
    /* * Safari will not reveal an option * unless the select height has room to * show all of it * Firefox and Chrome allow showing * a partial option */
    height: 6rem;
    /* * Experimental - styling of selected options * in the multiselect * Not supported crossbrowser */
}

@media only screen and (min-width: 720px) {
    #form-content {
        background-size: 250px;
    }
}

select[multiple] option {
    white-space: normal;
    outline-color: var(--select-focus);
}

.select--disabled {
    cursor: not-allowed;
    background-color: #eee;
    background-image: linear-gradient(to top, #ddd, #eee 33%);
}

.margin-bottom-200px {
    margin-bottom: 200px !important;
}

label {
    font-size: 1.125rem;
    font-weight: 500;
}

.select + label {
    margin-top: 2rem;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}


@font-face {
    font-family: artifika-Regular;
    src: url("../css/font/Artifika-Regular.ttf");
}

@font-face {
    font-family: pangolin-Regular;
    src: url("../css/font/Pangolin-Regular.ttf");
}

@font-face {
    font-family: Montserrat;
    src: url("../css/font/Montserrat-Regular.ttf");
}

.pangolin {
    font-family: pangolin-Regular, 'cursive';
}

.montserrat {
    font-family: 'Montserrat', sans-serif;
}

.artifika {
    font-family: artifika-Regular, serif;
}

.header-shadow {
    box-shadow: rgba(0, 0, 0, 0.05) 0 6px 24px 0, rgba(0, 0, 0, 0.08) 0 0 0 1px;
}

.colored-white {
    background-color: rgba(255, 250, 240, .2);
}


.shadowed {
    box-shadow: rgba(160, 56, 122, 0.1) 0 6px 24px 0, rgba(61, 173, 233, 0.1) 0 0 0 1px;
}


.icons:hover {
    color: rgba(61, 173, 223);
}

.btn:hover {
    background-color: rgba(61, 173, 223);
}

.border-radius-5px {
    border-radius: 5px !important;
}

.border-radius-10px {
    border-radius: 10px !important;
}

.logo-green-colored-text {
    color: rgba(61, 173, 233, .8) !important;
}

.btn.rounded {
    border-radius: 10px;
}

.btn.white {
    background-image: none;
    border: 1px solid rgba(160, 56, 122, .5);
}

.btn {
    background-image: linear-gradient(120deg, rgba(160, 56, 122, 1) 0%, rgba(61, 173, 233, 1) 100%);
    border-radius: 5px;
    text-transform: inherit;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}

.icons {
    color: rgba(160, 56, 122, 1);
}


.radiant-2 {
    background-image: linear-gradient(to right, rgba(160, 56, 122, 1), rgba(61, 173, 233, .8));
}

.radiant-nav-icon, .radiant-text, .radiant-icon {

}

.radiant-nav-icon {
    background: linear-gradient(120deg, rgba(160, 56, 122, .5) 0%, rgba(61, 173, 233, .5) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.radiant-text, .radiant-icon {
    background: linear-gradient(120deg, rgba(160, 56, 122, 1) 0%, rgba(61, 173, 233, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.radiant-3 {
    background-image: radial-gradient(circle farthest-corner at 22.4% 21.7%, rgba(160, 56, 122, 1) 0%, rgba(61, 173, 233, 1) 100.2%);
}

header .dropdown-content li a {
    font-size: 14px !important;
}

nav {
    line-height: 0 !important;
}

#dashboard-section {
    height: 100%;
}

.sidenav a.radiant-text {
    position: relative;
    font-size: 19px;
    display: block;
    width: 100%;
}

.sidenav a.radiant-text i.material-icons.tiny {
    font-size: 16px !important;
}

.sidenav .logo-link {
    margin-bottom: 30px;
    margin-top: 20px;
}

.subheader i.material-icons {
    position: absolute;
    right: -20px;
}

.divider {
    height: 1px;
    background-color: rgba(224, 224, 224, .6) !important;
}

.sidenav#header-sidenav .collapsible-header {
    padding-left: 32px !important;
}

.sidenav#header-sidenav .collapsible-body li {
    padding-left: 20px;
}

.sidenav#header-sidenav .collapsible li {
    margin-top: 13px;
}

.bordered {
    border: 1px solid rgba(222, 222, 222, .1);
    border-radius: 5px;
}

section.section {
    margin-top: 20px;
}

.bold {

    font-weight: bold;
}

.find-arrow-up {
    position: relative;
    top: 8px;
}

.find-arrow-down {
    position: relative;
    top: -8px;
}

.find-arrow-container {
    position: relative;
    top: 5px;
    z-index: 200;
}

header .dropdown-content {
    margin: 20px 0 0 0;
    overflow: inherit;
}

header .dropdown-content::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(222, 222, 222, .6);
    transform: rotate(0deg);
    position: absolute;
    top: -10px;
    right: 5%;
}


.carousel {
    position: relative;
    /*top: -90px;*/
}


.font-size-12px {
    font-size: 12px !important;
}

.collection-item {
    padding-left: 4px !important;
}

span.badge.new {
    border-radius: 4px;
}

.font-size-13px {
    font-size: 13px !important;
}

.font-size-14px {
    font-size: 14px !important;
}

.font-size-15px {
    font-size: 15px !important;
}

.font-size-16px {
    font-size: 16px !important;
}

.font-size-18px {
    font-size: 18px !important;
}

.font-size-20px {
    font-size: 20px !important;
}

.font-size-22px {
    font-size: 22px !important;
}

.font-size-25px {
    font-size: 25px !important;
}

.font-size-32px {
    font-size: 32px !important;
}


.font-size-33px {
    font-size: 33px !important;
}

.font-size-42px {
    font-size: 42px !important;
}

.font-size-35px {
    font-size: 35px !important;
}

span.selected-category-title-text {
    position: relative;
    left: 10px;
}

.carousel {
    perspective: 200px !important;
}

.invisible {
    display: none;
!important;
}

.dropdown-content {
    z-index: 200;
}
.password-visibility {

    left: 92%;
    top: 0 !important;
}

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

footer ul li {
    margin-bottom: 10px;
}

.pointer {
    cursor: pointer !important;
}


footer a:hover {
    text-decoration: underline !important;
    text-decoration-color: #0D47A1;
}

ul.browser-default {
}

.margin-bottom-10px {
    margin-bottom: 10px !important;
}

.margin-bottom-60px {
    margin-bottom: 60px !important;
}


.margin-bottom-30px {
    margin-bottom: 30px !important;
}

.margin-top-30px {
    margin-top: 30px !important;
}

.margin-top-50px {
    margin-top: 50px !important;
}

.padding-bottom-20px {
    padding-bottom: 20px;
}

.padding-10px {
    padding: 10px !important;
}

.padding-20px {
    padding: 20px !important;
}

.padding-30px {
    padding: 30px !important;
}

.padding-top-30px {
    padding-top: 30px !important;
}

.padding-40px {
    padding: 40px !important;
}


ol.static-page-ol > li::marker {
    font-size: 22px;
}

ul.browser-default.green-marker li::marker {
    color: green;
}

.static-page-ol > li > p:first-child {
    font-size: 22px;
    font-family: Montserrat, 'sans-serif' !important;
}

ul.browser-default li > p {
    font-size: 16px;
    font-family: Montserrat, 'sans-serif' !important;
}

.uppercase {
    text-transform: uppercase !important;
}

ul.table-of-contents li a {
    font-weight: bold;
    color: green;
    text-transform: uppercase;
}

ul.table-of-contents li {
    padding-bottom: 20px;
}

#faq-section ul li div.collapsible-header {
    font-family: Montserrat, 'sans-serif';
    font-size: 18px;
    position: relative;
    padding-left: 10px;
    padding-right: 10px;
}

#faq-section .collapsible-body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

#faq-section ul li div.collapsible-header::after {

    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    position: absolute;
    top: 24px;
    right: 5px;
}

#faq-section ul li:not(.active) div.collapsible-header::after {

    vertical-align: middle;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: rebeccapurple transparent transparent transparent;

}

@media only screen and (min-width: 601px) {

    #quick-action-button {
        float: right;
    }

    #dashboard-welcome-and-quick-action {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    #quick-action-text-container {
        text-align: center;
    }


}

@media only screen and (max-width: 601px) {
    #quick-action-box {
        margin-top: 40px;
    }
}

#faq-section ul li.active div.collapsible-header::after {

    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rebeccapurple;
    transform: rotate(0deg);


}

.input-field .prefix {
    font-size: 18px;
    position: absolute;
    z-index: 2;
}

select.select ~ .prefix {
    float: right;

}


#password-visibility-toggle {
    display: initial;
}

.input-field .prefix.material-icons {
    float: right;
    right: -15px;
}

.max-width-70 {
    max-width: 70%;
}

.input-field .prefix:not(.material-icons) {
    right: 0 !important;
}

#account-section {
    height: 100% !important;
}

#account-section label {
    font-size: 22px;
}

#account-section #form-content {
    background-repeat: no-repeat;
    background-size: 300px auto;
    background-position: right center;
}

.relative {
    position: relative !important;
}

input:not(:disabled) {
    color-scheme: normal;
    /* box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0), inset 0 0 0 100px rgba(255, 255, 255, 1) !important ;*/
}

input:read-only {
    cursor: not-allowed;
}

input {
    font-family: 'Montserrat', sans-serif;
}

.inline-block {
    display: inline-block !important;
}

.opacity-5 {
    opacity: .5;
}


div.custom-toast {
    position: relative;
    height: 130px;
    border-radius: 10px;
    max-width: 400px;
    box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
    z-index: 3;
}

div.custom-toast .material-icons {
    font-size: 23px;
}

div.custom-toast {
    border-left-style: solid;
    border-left-width: 20px;
}

div.custom-toast.success {
    border-left-color: #35df49;
}

div.custom-toast.pending {
    border-left-color: #ffc007;
}

div.custom-toast.info {
    border-left-color: #1d72f3;
}

div.custom-toast.failed {
    border-left-color: orangered;
}


div.custom-toast.success i.material-icons.type {
    color: #35df49;
}

div.custom-toast.pending i.material-icons.type {
    color: #ffc007;

}

div.custom-toast.failed i.material-icons.type {
    color: orangered;
}

div.custom-toast.info i.material-icons.type {
    color: #1d72f3;
}

div.custom-toast {
    position: fixed;
    right: 10px;
    width: 320px;
    bottom: 30px;
}

div.custom-toast .material-icons, div.custom-toast .toast-content {
    position: absolute;
}

.custom-toast .material-icons.cancel {
    right: 10px !important;
}

div.custom-toast .toast-content {
    left: 50px;
    top: 10px;
    width: 200px;
}

.absolute {
    position: absolute !important;
}

.top-0 {
    top: 0 !important;
}

.fixed {
    position: fixed !important;
}

input[type="checkbox"] + span {
    position: relative;
    top: -10px;
}

.margin-top-10px {
    margin-top: 10px;
}

.margin-top-20px {
    margin-top: 20px;
}

.margin-top-30px {
    margin-top: 30px;
}

.normal {
    text-transform: unset !important;
}

.text-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

fieldset {
    border: none !important;
}

.visible {
    visibility: visible !important;
}

.hidden {
    display: none !important;
}


.notifications-count {
    position: relative;
    top: -14px;
}

nav ul.right {
    position: absolute;
    right: 0;
}


.content {
    position: relative;
    top: -5px;
}

@media only screen and (max-width: 601px) {
    .container {
        width: 85% !important;
    }
}

.nav-wrapper {
    position: relative;
}

#ads-count {

    padding-right: 32px;
    padding-left: 0;
}


#dashboard-sidenav {
    position: fixed;
    height: 100vh;
    text-align: center;
    bottom: 0;
    top: 50px;
    left: 3%;
    z-index: 200;
    background-color: white;
    overflow-y: auto;
}

@media only screen and (max-width: 993px) {
    #notifications-link {
        float: right;
    }

}

#dashboard-header {
    z-index: 2;
}

@media only screen and (min-width: 992px) {
    #dashboard-sidenav {
        width: 18%;
        padding-top: 25px;
    }

    #dashboard-header-logo.fixed {

        left: 2%;
        top: 16px;

    }

    #dashboard-content.pad {
        /* padding-left: 22 %; */
    }
}


.margin-0 {
    margin: 0 !important;
}

@media only screen and (max-width: 991px) {
    #dashboard-sidenav {
        width: 50%;
    }


}

#dashboard-content {
    padding-top: 70px;

    padding-bottom: 40px;
}

#dashboard-sidenav .collapsible {
    box-shadow: none;
    border: none;
}

#dashboard-sidenav .collapsible-header {

    display: inline-block;
    border: none;
}

#dashboard-sidenav .collapsible-header .material-icons, #dashboard-sidenav .collapsible-body .material-icons {
    color: lightgray;
    font-size: 32px;
    float: left;
}

#dashboard-sidenav .collapsible-body .material-icons {
    position: relative;
    left: -10px;
    font-size: 19px;
}

#dashboard-sidenav .collapsible-header span.text {

    color: rgba(0, 0, 0, .6);
    font-weight: normal;
    font-family: Montserrat, 'sans-serif';
    font-size: 16px;
    position: relative;
    top: 2px;
}

#dashboard-sidenav .collapsible-body span.text {

    color: grey;
    font-weight: bold;
    font-family: Montserrat, 'sans-serif';
    position: relative;
    top: -3px;

}


#dashboard-sidenav .collapsible-header {

    font-weight: 500;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 20px;
}

#dashboard-sidenav .collapsible-body {
    border: none;
    width: 100%;
}

#dashboard-sidenav li.active .collapsible-header, #dashboard-sidenav .collapsible-header:hover {
    box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
}

#dashboard-sidenav .collapsible-body li {

    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;

}

#dashboard-sidenav .collapsible-body li:hover, #dashboard-sidenav .collapsible-body li.active {
    border-bottom: 5px solid lightblue;
    padding-bottom: 10px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

@media only screen and (min-width: 770px) {

    .dashboard-form {
        width: 60%;
    }

}

@media only screen and (max-width: 769px) {

    .dashboard-form {
        width: 90%;
    }
}

.btn:disabled {
    opacity: .5;
}

#profile-image-background {
    width: 50px;
    height: 50px;
    background-size: contain;
    border-radius: 50%;
    border: 1px solid lightgray;
    background-repeat: no-repeat;
    background-position: center;
}

#profile-change-camera {
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    opacity: .5;
}
.top-10px{
    position: relative;
    top: 10px;
}
.top-5px{
    position: relative;
    top: 5px;
}

.header-avatar-icon {
    border-radius: 50%;
    height: 30px;
    width: 30px;
    background-position: center;
    background-size: cover;
    display: inline-block;
}

#header-sidenav .material-icons, #header-sidenav .header-avatar-icon {
    position: relative;
    /*top: 10px;*/
}

.custom-collapsible-header .material-icons.right {
    font-size: 35px;
    position: absolute;
    right: 10px;
    top: 12px;
}


ul.custom-collapsible {
    background-color: white;
    width: 100%;
}

ul.custom-collapsible li {
    margin-bottom: 30px;
}

ul.custom-collapsible li .custom-collapsible-header {
    width: 100%;
    position: relative;
}

.custom-collapsible-header .text {
    position: relative;
    top: -5px;
    left: 40px;
}

.custom-collapsible .custom-collapsible-body {
    padding-top: 30px;
}

#email-settings .tabs .indicator {
    background-color: #8468a5 !important;
    top: 35px;
}

.custom-tabs li:first-child span {
    position: relative;
    left: -10px;
}

.custom-tabs li {
    text-align: center;
    cursor: pointer;
}

.custom-tabs li:first-child {
    text-align: left;
}

.custom-tabs li:last-child {
    text-align: right;
}

.custom-tabs li.active {
    display: inline-block;
    border-bottom: 3px solid #8468a5;
}


.custom-tabs li a {
    text-align: center !important;
    width: 100%;
}

.states .select-dropdown {
    max-height: 300px;

}

.categories .select-dropdown {
    height: 430px;
}

.dropdown-content {
    z-index: 2;
}

.states input.select-dropdown {
    height: 100px;
}


.dropdown-content li {
/ / min-height: 25 px;
/ / line-height: 1 rem;
}

.dropdown-content.select-dropdown li {
/ / margin: 10 px;
/ / height: 25 px;
}

.dropdown-content.select-dropdown li span {

}

#resend-code-action {
    position: absolute;
    right: 15px;
}

#confirm-action-modal input {
    padding-left: 10px;
}

.dropdown-icon-text {
    top: 10px;
}

.otp-input-wrapper {
    width: 100%;
    text-align: left;
    display: inline-block;
    margin-bottom: 30px;
}

.otp-input-wrapper input {
    padding: 0;
    width: 264px;
    font-size: 32px;
    font-weight: 600;
    color: #3e3e3e;
    background-color: transparent;
    border: 0;
    margin-left: 12px;
    letter-spacing: 35px;
    font-family: sans-serif !important;
}

.otp-input-wrapper input:focus {
    box-shadow: none;
    outline: none;
}

.otp-input-wrapper svg {
    position: relative;
    display: block;
    width: 240px;
    height: 2px;
}

.no-borders {
    border-bottom: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}


.no-borders:focus, .no-borders:hover {
    border-bottom: none !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

input.no-borders, input.no-borders:focus {
    border-bottom: none !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

.switch .text {
    position: relative;
    top: -7px;
}

.switch label {
    position: relative;
    left: -20px;
}

input.otp {
    padding-left: 5px !important;
}

input.otp.no-caret {
    /* Your CSS styles here */
    caret-color: transparent;
}

#auth-wrapper input:not(.otp) {
    padding-left: 10px;
    padding-right: 10px;
}

.input-field {
    margin-top: 10px;
}

.close-model-icon {
    position: absolute;
    right: 10px;
    top: 5px;
    cursor: pointer;
}


.validation-error-text {
    margin-bottom: 40px !important;
    color: red;
    display: block;
    font-family: Montserrat, 'sans-serif';
}

textarea, textarea:focus {
    resize: none;
    border: 1px solid lightgray;
    border-radius: 10px;
    height: 200px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: none;
    padding: 20px;
}

.prefix.textarea {
    right: 0;
    position: absolute;
}

label.ad-upload-preview {

    display: inline-block;
    width: 100%;
    max-width: 135px !important;
    height: 185px;
    line-height: 185px;
    border: 1px solid lightgray;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

}

label.ad-upload-preview.photo .material-icons::after {
    content: "insert_photo";
}

label.ad-upload-preview.video .material-icons::after {
    content: "switch_video";
}

label.ad-upload-preview.add .material-icons {
    font-size: 32px;
}

label.ad-upload-preview.add .material-icons::after {
    content: "add";
}

label.video {
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;


}

label.video .video-content {
    border: 1px solid red;
    height: 90%;
    width: 90%;
    position: absolute;

}

label video {
    width: 90%;
    height: 80%;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    position: absolute;


}


.block {
    display: block !important;
}

[type="date"] {
    background: #fff url('../img/calendar.png') 97% 50% no-repeat;
}

[type="date"]::-webkit-inner-spin-button {
    display: none;
}

[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
}

#modal-loader {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .04);
    text-align: center;
    width: 100%;
    height: 100%;
    z-index: 1000000;
}

#modal-loader div:has(progress) {

    position: relative;
    top: 48%;
    text-align: center;

}

@keyframes progress {
    0% {
        --percentage: 0;
    }
    100% {
        --percentage: var(--value);
    }
}

@property --percentage {
    syntax: '<number>';
    inherits: true;
    initial-value: 0;
}

[role="progressbar"] {
    --percentage: var(--value);
    --secondary: rgba(160, 56, 122, 1);
    --primary: rgba(61, 173, 233, .8);
    --size: 100px;
    animation: progress 2s 0.5s forwards;
    width: var(--size);
    aspect-ratio: 1;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    margin-left: auto;
    margin-right: auto;
    top: 40%;
}

.text-v-center {
    display: inline-flex;
    vertical-align: top;
}

i.material-icons {
    vertical-align: middle !important;
}

.iconic {
    position: relative !important;
    bottom: 10px;
}

.height-100px {
    height: 100px !important;
}

.height-50px {
    height: 50px !important;
}

.width-95p {
    width: 85% !important;
}

.quick-action-button {

    color: #fff;
    border: 1px solid rgba(160, 56, 122, .4);
    padding-left: 20px;
    padding-right: 20px;

}

.quick-action-button:hover {
    border: none;
    background: linear-gradient(120deg, rgba(160, 56, 122, 1) 0%, rgba(61, 173, 233, 1) 100%);

}

.quick-action-button span, .quick-action-button i {
    background: linear-gradient(120deg, rgba(160, 56, 122, 1) 0%, rgba(61, 173, 233, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.quick-action-button:hover span, .quick-action-button:hover i {
    background: none;
    background-clip: initial;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

/*#quick-action-button:hover{
    background: linear-gradient(180deg, rgba(160, 56, 122, .5), rgba(61, 173, 233, .5));
    color: #fff !important;
    border: none;
}

 */


[role="progressbar"]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(var(--primary) calc(var(--percentage) * 1%), var(--secondary) 0);
    mask: radial-gradient(white 55%, transparent 0);
    mask-mode: alpha;
    -webkit-mask: radial-gradient(#0000 55%, #000 0);
    -webkit-mask-mode: alpha;
}

[role="progressbar"]::after {
    counter-reset: percentage var(--value);
    content: counter(percentage) '%';
    font-family: Helvetica, Arial, sans-serif;
    font-size: calc(var(--size) / 5);
    color: var(--primary);
}

#dashboard-account-balance-box, #dashboard-fund-wallet-box {

    margin-bottom: 20px;
}

#dashboard-fund-wallet-box {

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#dashboard-fund-wallet-box, #dashboard-account-balance-box {
    height: 150px;
}

.radiant-background {
    background: linear-gradient(180deg, rgba(160, 56, 122, .3), rgba(61, 173, 233, .5));
    background-size: cover;
    color: #fff;
}

.smoke {
    background-color: #fafafb;
}

.blue-glass {
    background: #f0eeff;
}

#fund-account-image {
    background-size: contain;
    width: 100%;
    background-repeat: no-repeat;
    background-position: bottom right;
}

#realtor-image {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.center-aligned {
    margin-left: auto;
    margin-right: auto;
}

#dashboard-view-ads-link {
    width: 80%;
    max-width: 250px;

}

.icon-bg {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.icon-bg {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border: none;
    text-align: center !important;

}

.width-100percent {
    width: 100% !important;
}

.icon-bg .material-icons {
    position: relative;
    left: 12px;
    color: rgba(255, 255, 255, .85);
}

.ad-box {
    padding-bottom: 30px;
    height: 477px;
    border-radius: 10px;
    border: 1px solid rgba(160, 56, 122, .2);
    position: relative;
    margin-bottom: 10px;
    display: block;


}

i.material-icons.delete-existing-photo-icon {
    font-size: 15px;
    color: rgba(255, 255, 255, .7);
}

.delete-existing-photo {


    display: inline-block;
    height: 30px;
    width: 30px;
    border: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
    top: 76.57%;
    position: relative;
    border-bottom-left-radius: 10px;
    background-color: rgba(0, 0, 0, .5);

}

.body-centered {
    position: absolute;
    top: 49%;
    transform: translate(-50%, -50%);
    left: 50%;

}

.ad-box .cover, .ad-box .image {

    background-repeat: no-repeat;
    background-position: center;;
    position: absolute;

}


.ad-box .cover {
    width: 100%;
    height: 60%;
    background-color: rgba(0, 0, 0, .1);
    background-size: cover;
    position: relative;
    opacity: .6;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.ad-box .photos-count {
    position: relative;
    height: 25px;
    width: 45px;
    background-color: rgba(0, 0, 0, .2);
    top: -25px;
    border-top-right-radius: 10px;
    color: white;

}

.ad-box .content {


    padding: 30px;
    position: absolute;
    top: 230px;
    z-index: -1;
}

.ad-edit-link {
    z-index: 3 !important;
    position: absolute;
    right: 23px;
    padding-top: 10px;
}

.ad-box .image {
    width: 90%;
    background-size: contain;
    height: 40%;

    background-position: center;
    margin-left: auto;
    margin-right: auto;
    top: 10px;
    left: 5%;
    right: 5%;
}


#large-preview {
    padding: 20px;
    position: relative;
    border-radius: 10px;
    /*box-shadow: rgba(0, 0, 0, 0.35) 0px -50px 36px -28px inset;*/
}

#large-preview #image {
    height: 400px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
}

#ad-details .navigate {
    position: absolute;
    top: 48%;
    cursor: pointer;
    font-size: 32px;
}

#ad-details .navigate#next {
    right: -10px;
}

#ad-details .navigate#previous {
    left: -10px;
}

#photos-count {
    background-color: rgba(0, 0, 0, .4);
    border-bottom-right-radius: 10px;
    display: inline-block;
    padding: 5px;
    position: absolute;
    right: 0;
    bottom: 0;

}

.current-photo {
    border: 1px solid rgba(160, 56, 122, .6);
}

#large-preview video {
    height: 80%;
    width: 60%;
    left: 20%;
    border-radius: 10px;
    margin-right: auto;
}

#all-photos {
    height: 233px;
    overflow-y: auto;
    white-space: nowrap;
    scrollbar-width: thin;


}

#all-photos::-webkit-scrollbar-thumb:horizontal {
    height: 4px; /* Height of the thumb (adjust as needed) */
}

#all-photos::-webkit-scrollbar {
    width: 2px; /* Set the width of the scrollbar */
}

/* Customize the scrollbar thumb */
#all-photos::-webkit-scrollbar-thumb {
    background-color: rgba(160, 56, 122, .2); /* Set the color of the thumb */
    border-radius: 6px;
    height: 1px; /* Round the edges of the thumb */
    width: 2px;
}

/* Customize the scrollbar track on hover */
#all-photos::-webkit-scrollbar-track:hover {
    background-color: rgba(160, 56, 122, 0);
}

.small-photo {
    white-space: nowrap;
    width: 150px;
    height: 185px;
    background-repeat: no-repeat;
    margin-top: 20px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    display: inline-block;
    margin-right: 10px;
}

#ad-details .small-photo.last-child {
    background-size: 50px auto;
    box-shadow: rgba(50, 50, 93, 0.25) 0 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0 18px 36px -18px inset;
}

#ad-author-details #price-container, #ad-author-details #author-container {

    padding: 20px;
}

input[type="text"] {
    background-color: inherit !important;
}

div.ad-description {
    white-space: pre-wrap !important;
}

.centered-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#like-icon:hover {

    background: linear-gradient(120deg, rgba(160, 56, 122, 1) 0%, rgba(61, 173, 233, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#comment-container {
    height: 100px !important;
    width: 50%;
}

.comment {
    padding: 5px;
    position: relative;
}

.comment-message {
    position: relative;
    left: 20px;
    top: 10px;
}

.comment-avatar {
    display: inline-block;
    border-radius: 50%;
    height: 18px;
    width: 18px;
    border: 1px solid lightgrey;
    margin-right: 5px;
    background-size: cover;
    background-position: center;
}

.comment {
    margin-top: 20px;
}

.replies {
    position: relative;
    left: 10px;
    border-left: 1px solid lightgrey;
}

.collection-item {
    padding: 20px !important;

}

label.filter {
    position: relative;
    top: 10px;
}

.notification-icon-count {
    z-index: 300;
    position: relative;
    left: 13px;
    top: -16px;
    font-weight: bold;
    background: linear-gradient(120deg, rgba(160, 56, 122, .6) 0%, rgba(61, 173, 233, .6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#filter-state-drop-down {
    right: 0;
    position: absolute;
    top: 10px;
}


.subcategory.selected {
    outline: 1px dotted rgba(160, 56, 122, 1);
}

.logo-li {
    position: relative;
    top: 13px;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

a#dashboard-header-logo.hide-on-large-only {
    position: relative;
    top: 10px;

}

a#dashboard-header-logo.hide-on-large-only img {
    height: 20px;
}

.ad-box span.ad-subcategory {
    display: inline-block;
    border: 1px solid rgba(192, 192, 192, .2);
    border-radius: 5px;
    margin-bottom: 5px;
    padding: 5px;
    background-color: rgba(255, 255, 255, .7);
}

.underline {
    text-decoration: underline;
}

.ad-description {
    line-height: 29px;
}

span.counter {
    position: absolute;
    right: 0;

}

.row.no-pad .col {
    padding: 0 !important;
}

.loading-indicator.show {
    display: block;
}

.loading-indicator {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000000000;
    height: 3px;
    width: 100%;
    --c: no-repeat linear-gradient(120deg, rgba(160, 56, 122, .6) 0%, rgba(61, 173, 233, .6) 100%);
    background: var(--c), var(--c), rgba(34, 153, 221, .6);
    background-size: 60% 100%;
    animation: l16 3s infinite;
}

@keyframes l16 {
    0% {
        background-position: -150% 0, -150% 0
    }
    66% {
        background-position: 250% 0, -150% 0
    }
    100% {
        background-position: 250% 0, 250% 0
    }
}

.snackbar {
    /* The snackbar - position it at the bottom and in the middle of the screen */

    .snackbar {
        visibility: hidden; /* Hidden by default. Visible on click */
        min-width: 250px; /* Set a default minimum width */
        margin-left: -125px; /* Divide value of min-width by 2 */
        background-color: #503a36; /* Black background color */
        color: #fff; /* White text color */
        text-align: center; /* Centered text */
        border-radius: 2px; /* Rounded borders */
        padding: 16px; /* Padding */
        position: fixed; /* Sit on top of the screen */
        z-index: 1; /* Add a z-index if needed */
        left: 50%; /* Center the snackbar */
        bottom: 30px; /* 30px from the bottom */
    }

    /* Show the snackbar when clicking on a button (class added with JavaScript) */

    .snackbar.show {
        visibility: visible; /* Show the snackbar */
        /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
        However, delay the fade out process for 2.5 seconds */
        -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
        animation: fadein 0.5s, fadeout 0.5s 2.5s;
    }

    /* Animations to fade the snackbar in and out */
    @-webkit-keyframes fadein {
        from {
            bottom: 0;
            opacity: 0;
        }
        to {
            bottom: 30px;
            opacity: 1;
        }
    }

    @keyframes fadein {
        from {
            bottom: 0;
            opacity: 0;
        }
        to {
            bottom: 30px;
            opacity: 1;
        }
    }

    @-webkit-keyframes fadeout {
        from {
            bottom: 30px;
            opacity: 1;
        }
        to {
            bottom: 0;
            opacity: 0;
        }
    }

    @keyframes fadeout {
        from {
            bottom: 30px;
            opacity: 1;
        }
        to {
            bottom: 0;
            opacity: 0;
        }
    }
}

@media only screen and (min-width: 993px) {
    #form-content {
        background-image: url('../img/account.png');
    }
}

.carousel-cell {
    width: 66%;
    height: 200px;
    margin-right: 10px;
    background: #8C8;
    border-radius: 5px;
    counter-increment: carousel-cell;
}

/* cell number */
.carousel-cell:before {
    display: block;
    text-align: center;
    content: counter(carousel-cell);
    line-height: 200px;
    font-size: 80px;
    color: white;
}

.basic-dropdown {
    position: relative;
    display: inline-block;
}

.basic-dropdown-content.lefty {

    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 30px;
    left: 10px;
}

.basic-dropdown-content.righty {

    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 10px;
    right: 10px;
}

.basic-dropdown-content::before {
    content: '';
    position: absolute;
    top: -19px; /* Adjust this value to move the arrow up */
    right: 88%;
    margin-left: -10px; /* Half of arrow's width */
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent #f9f9f9 transparent;
}


.basic-dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.basic-dropdown-content a:hover {
    background-color: #f1f1f1
}

.basic-dropdown:hover .basic-dropdown-content {
    display: block;
}

.basic-dropdown:hover .dropbtn {
    background-color: #3e8e41;
}
