@charset "utf-8";

/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* 	-----------------------------------------------------
    ------------------- General Styles ------------------
    ----------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    color: #000000;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 100%;
    overflow-x: hidden;
}

a {
    outline: none;
    outline-style: none;
    outline-width: 0;
    color: #000000;
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    outline: none;
    outline-style: none;
    outline-width: 0;
    color: #08AE99;
    text-decoration: none;
}

.clearfix:before,
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    overflow: hidden;
}

.clearfix:after {
    clear: both
}

.clearfix {
    zoom: 1
}

[contenteditable="true"]:focus {
    outline: none;
}

*:focus {
    outline: none;
}

img {
    margin: 0;
    padding: 0;
    outline-style: none;
    outline-width: 0;
    max-width: 100%;
    height: auto;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.container {
    margin: 0 auto;
    width: 100%;
    max-width: 1592px;
    padding: 0 40px;
}

@media only screen and (max-width:760px) {
    .container {
        padding: 0 20px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .container {
        padding: 0 30px;
    }
}

@media only screen and (min-width:1024px) and (max-width:1400px) {
    .container {
        padding: 0 30px;
    }
}

/* 	-----------------------------------------------------
    -------------------- Header Styles ------------------
    ----------------------------------------------------- */
.header-section {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 9991;
    transition: all .4s ease-in-out;
}

.header-section.sticky {
    width: 100%;
    background: linear-gradient(103.21deg, #04AD9A 5.31%, #70BF79 100%);
    box-shadow: 0px 4px 25px 0px #00000005;
    position: fixed;
    top: 0;
    z-index: 9991;
    transition: all .4s ease-in-out;
}

.header-section .container {
    display: flex;
    justify-content: space-between;
}

.header-section .container figure {
    width: 20%;
    margin: 0;
    padding: 30px 0 0 0;
    text-align: center;
    transition: .5s;
}

.header-section .container figure img {
    margin: 0;
    padding: 0;
    height: 134px;
    transition: .5s;
}

.header-section.sticky .container figure {
    padding: 15px 0;
    transition: .5s;
}

.header-section.sticky .container figure img {
    height: 104px;
    transition: .5s;
}

.header-section nav {
    width: 40%;
}

.header-section .menu {
    margin: 0;
    padding: 0;
}

.menu-bar {
    list-style: none;
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 9;
    width: 280px;
    height: 100%;
    background: linear-gradient(103.21deg, #04AD9A 5.31%, #70BF79 100%);
    opacity: 0;
    transition: 0.4s;
    padding: 30px;
}

.menu-bar.show {
    left: 0;
    opacity: 1;
    box-shadow: 0px 10px 25px -3px #00000026;
}

.menu-bar li {
    margin: 0;
}

.menu-bar li a {
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    color: #FFFFFF;
    transition: .5s;
}

.menu-bar.show li a {
    color: #FFFFFF;
    display: block;
}

.menu-bar.show li a.active {
    color: #FFFFFF;
    position: relative;
}

.menu-bar.show li a.active::before {
    content: "";
    width: 20px;
    height: 2px;
    background-color: #FFFFFF;
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translate(0, -50%);
}

.menu-bar.show li a svg path {
    fill: #FFFFFF;
}

.dropDown-list {
    position: relative;
}

.dropDown-list a.active {
    color: #FFFFFF;
}

.dropDown-list a span svg {
    width: 12px;
}

.dropDown-list a span svg path {
    transition: 0.4s;
}

.dropDown-list a.active span svg path {
    fill: #FFFFFF;
}

.dropDown-list a.active span svg {
    transform: rotate(180deg);
}

.dropDown_menu {
    display: none;
    position: relative;
    box-shadow: 0px 4px 44px 0px #00000026;
    list-style: none;
}

.menu-bar.show .dropDown_menu {
    box-shadow: none;
    padding: 15px;
}

.dropDown_menu li {
    line-height: 1;
    margin-top: 15px;
    margin-bottom: 0;
}

.dropDown_menu li a {
    position: relative;
    font-size: 18px;
    line-height: 1;
    color: #FFFFFF;
    padding: 5px 0;
    white-space: nowrap;
    display: block;
}

.toggle-btn {
    border: none;
    outline: none;
    background: transparent;
    width: 30px;
    height: 30px;
    font-size: 30px;
    padding: 0;
    color: #FFFFFF;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%);
}

@media (min-width: 760px) {
    .menu-bar {
        width: 300px;
    }
}

@media (min-width: 760px) {
    .toggle-btn {
        display: none;
    }

    .menu-bar {
        position: relative;
        top: unset;
        left: unset;
        width: unset;
        opacity: 1;
        background: transparent;
        display: flex;
        gap: 50px;
        padding: 0;
        list-style: none;
    }

    .menu-bar li {
        margin-top: 80px;
    }

    .menu-bar li a:hover {
        color: #FFFFFF;
        transition: .5s;
    }

    .menu-bar li a.active {
        color: #FFFFFF;
        transition: .5s;
        position: relative;
        z-index: 1;
    }

    .menu-bar li a.active::before {
        content: "";
        width: 2px;
        height: 40px;
        background-color: #FFFFFF;
        position: absolute;
        left: 50%;
        top: -80px;
        transform: translate(-50%, 0);
    }

    .dropDown-list a.active {
        color: #FFFFFF;
    }

    .dropDown-list a.active span svg path,
    .dropDown-list a:hover span svg path {
        fill: #FFFFFF;
    }

    .dropDown_menu {
        list-style: none;
        position: absolute;
        top: 30px;
        left: 0;
        z-index: 999;
        min-width: 130px;
        background: #FFFFFF;
        border-radius: 3px;
        padding: 15px;
    }

    .dropDown_menu li {
        margin-top: 0;
        margin-bottom: 18px;
    }

    .dropDown_menu li a:hover {
        color: #FFFFFF;
    }
}

.header-section aside {
    padding-top: 40px;
    width: 40%;
    text-align: right;
}

.header-section aside a {
    margin: 0;
    padding: 10px 15px;
    width: auto;
    min-width: 200px;
    height: 50px;
    background-color: #FFFFFF;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
    color: #05AD9A;
    text-align: center;
    display: inline-block;
    transition: .5s;
}

.header-section aside a:hover {
    background-color: #FFDC3C;
    transition: .5s;
}

.header-section aside a i {
    display: none;
}

.header-section aside button {
    margin: 0;
    padding: 10px 15px;
    width: auto;
    min-width: 200px;
    height: 50px;
    background-color: #FFFFFF;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
    color: #05AD9A;
    text-align: center;
    display: inline-block;
    transition: .5s;
}

.header-section aside button:hover {
    background-color: #FFDC3C;
    transition: .5s;
}

.header-section aside button i {
    display: none;
}

@media only screen and (max-width:760px) {
    .header-section.sticky .container figure {
        padding: 0;
    }

    .header-section nav {
        width: auto;
    }

    .header-section .container figure {
        margin: 0;
        padding: 0;
        width: 40%;
    }

    .header-section aside {
        margin: 0;
        padding: 0;
        width: 60%;
        position: relative;
    }

    .header-section aside a i {
        display: block;
    }

    .header-section aside a span {
        display: none;
    }

    .header-section aside a {
        width: 50px;
        min-width: 50px;
        font-size: 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translate(0, -50%);
    }

    .menu-bar li {
        margin: 30px 0;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .header-section nav {
        width: 50%;
    }

    .header-section aside {
        width: 30%;
    }

    .header-section aside a i {
        display: block;
    }

    .header-section aside a span {
        display: none;
    }

    .header-section aside a {
        width: 50px;
        min-width: 50px;
        font-size: 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translate(0, -50%);
    }

    .menu-bar {
        gap: 30px;
    }
}

@media only screen and (min-width:1024px) and (max-width:1300px) {
    .menu-bar {
        gap: 40px;
    }
}

.inner-header-section {
    background: linear-gradient(103.21deg, #04AD9A 5.31%, #70BF79 100%);
}

.inner-header-section .container {
    align-items: center;
}

.inner-header-section .container figure {
    width: 25%;
    padding: 25px 0;
    text-align: left;
}

.inner-header-section .container figure img {
    margin: 0;
    padding: 0;
    height: 104px;
    transition: .5s;
}

.inner-header-section nav {
    width: 50%;
    min-height: 160px;
    text-align: center;
}

.inner-header-section nav p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #FFFFFF;
    text-align: center;
    padding: 0 10px;
    margin-top: 40px;
    display: inline-block;
    border-left: 1px solid #FFDC3C;
}

.inner-header-section .menu-bar {
    justify-content: center;
}

.inner-header-section aside {
    width: 25%;
    padding: 0;
}

@media (min-width: 760px) {
    .inner-header-section .menu-bar li {
        margin-top: 60px;
    }

    .inner-header-section .menu-bar li a.active::before {
        top: -60px;
    }
}

@media only screen and (max-width:760px) {
    .inner-header-section .container figure {
        width: 40%;
        padding: 0;
    }

    .inner-header-section nav {
        min-height: inherit;
    }

    .inner-header-section nav p {
        display: none;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .inner-header-section .container figure {
        width: 20%;
    }

    .inner-header-section aside {
        width: 10%;
    }

    .inner-header-section nav {
        width: 70%;
    }
}

/* 	-----------------------------------------------------
    ------------------- Content Styles ------------------
    ----------------------------------------------------- */
.content-section {
    min-height: 400px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #08AE99;
    padding: 10px 0;
}

.content-section h1 {
    font-size: 36px;
}

.content-section h2 {
    font-size: 32px;
}

.content-section h3 {
    font-size: 28px;
}

.content-section h4 {
    font-size: 24px;
}

.content-section h5 {
    font-size: 22px;
}

.content-section h6 {
    font-size: 20px;
}

.content-section p {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
    color: #000000;
    padding: 10px 0;
}

.content-section ul {
    margin: 0;
    padding: 0 0 0 15px;
    list-style: disc;
}

.content-section ul li {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
    color: #000000;
    margin: 5px 0;
}

.content-section ul ul {
    list-style: circle;
}

.content-section ol {
    margin: 0;
    padding: 0 0 0 18px;
    list-style: decimal;
}

.content-section ol li {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
    color: #000000;
    margin: 5px 0;
}

.content-section ol ol {
    list-style: lower-roman;
}

.btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.btn-01 a {
    margin: 15px 0;
    padding: 10px 20px;
    background-color: #04AD9A;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
    color: #FFFFFF !important;
    display: inline-block;
    transition: .5s;
}

.btn-01 a:hover {
    background-color: #FFDC3C;
    transition: .5s;
}

@media only screen and (max-width:760px) {
    .content-section h1 {
        font-size: 30px;
    }

    .content-section h2 {
        font-size: 24px;
    }

    .content-section h3 {
        font-size: 22px;
    }

    .content-section h4 {
        font-size: 20px;
    }

    .content-section h5 {
        font-size: 18px;
    }

    .content-section h6 {
        font-size: 16px;
    }

    .content-section p {
        font-size: 15px;
    }

    .content-section ul li {
        font-size: 15px;
    }

    .content-section ol li {
        font-size: 15px;
    }

    .btn-01 a {
        margin: 10px 0;
        padding: 5px 15px;
        font-size: 14px;
    }
}

.accordion-container {
    position: relative;
    margin: 0 auto;
}

.accordion-set {
    position: relative;
    padding: 25px 0;
    width: 100%;
    height: auto;
    border-bottom: 1px solid #098368;
}

.accordion-set>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.8;
    color: #000000;
    text-align: left;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.accordion-set>a i {
    font-size: 24px;
    color: #098368;
    margin-right: 20px;
}

.accordion-set>a.active {
    color: #000000;
}

.accordion-content {
    display: none;
    padding: 0 50px 0 0;
    text-align: left;
}

@media only screen and (max-width:760px) {
    .accordion-set {
        padding: 15px 0;
    }

    .accordion-set>a {
        font-size: 16px;
    }

    .accordion-set>a i {
        font-size: 18px;
        margin-right: 0;
        margin-left: 15px;
    }

    .accordion-content {
        padding: 0;
    }
}

/* 	-----------------------------------------------------
    -------------------- Footer Styles ------------------
    ----------------------------------------------------- */
.footer-section {
    margin: 100px 40px 40px 40px;
    background: linear-gradient(100.95deg, #00B088 2.34%, #70BF7A 100%);
}

.footer-top-section {
    margin: 0 auto;
    padding: 0 70px;
    max-width: 1312px;
    background: url(../img/footer-top-bg.webp) no-repeat center/cover;
    position: relative;
    top: -80px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 70px;
}

.footer-top-section h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
    padding: 10px 0;
}

.footer-top-section p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: #FFFFFF;
    padding: 10px 0;
}

.footer-top-section .d-flex {
    margin: 10px 0;
    justify-content: flex-start;
    gap: 20px;
}

.footer-top-section figure {
    width: 35%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
}

.footer-top-section figure img {
    position: absolute;
    right: 0;
    bottom: 30px;
    border-radius: 25px;
    box-shadow: 4px 4px 30px 0px #00000040;
}

.footer-top-section article {
    width: 65%;
}

.footer-mid-section .container {
    max-width: 1312px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-mid-section .link {
    width: 33.333%;
    display: flex;
    justify-content: center;
}

.footer-mid-section .link ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-mid-section .link ul li {
    margin: 0 0 20px 0;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #FFFFFF;
}

.footer-mid-section .link ul li a {
    color: #FFFFFF;
    transition: .5s;
}

.footer-mid-section .link ul li a:hover {
    color: #FFDC3C;
    transition: .5s;
}

.footer-mid-section .logo {
    width: 33.333%;
    text-align: center;
}

.footer-mid-section .logo img {
    height: 104px;
}

.footer-mid-section .info {
    width: 33.333%;
}

.footer-mid-section .info p {
    margin: 0 0 20px 20px;
    padding: 0 0 0 35px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #FFFFFF;
    position: relative;
}

.footer-mid-section .info p i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 24px;
}

.footer-mid-section .info p a {
    color: #FFFFFF;
    transition: .5s;
}

.footer-mid-section .info p a:hover {
    color: #FFDC3C;
    transition: .5s;
}

.footer-bot-section {
    padding: 15px 0;
    text-align: center;
}

.footer-bot-section p {
    margin: 5px 0;
    padding: 0;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    color: #FFFFFF;
}

.footer-bot-section p a {
    color: #FFFFFF;
    transition: .5s;
}

.footer-bot-section p a:hover {
    color: #FFDC3C;
    transition: .5s;
}

@media only screen and (max-width:760px) {
    .footer-section {
        margin: 20px;
    }

    .footer-top-section {
        padding: 20px;
        top: 0px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-top-section h2 {
        font-size: 24px;
    }

    .footer-top-section p {
        font-size: 14px;
    }

    .footer-top-section .d-flex {
        justify-content: center;
        gap: 10px;
    }

    .footer-top-section figure {
        width: 100%;
        justify-content: center;
        margin-top: -60px;
    }

    .footer-top-section figure img {
        position: inherit;
        right: auto;
        bottom: auto;
    }

    .footer-top-section article {
        width: 100%;
        text-align: center;
    }

    .footer-mid-section .container {
        flex-wrap: wrap;
    }

    .footer-mid-section .link {
        padding-bottom: 20px;
        width: 100%;
        order: 2;
    }

    .footer-mid-section .link ul {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-mid-section .link ul li {
        margin: 0;
    }

    .footer-mid-section .logo {
        padding: 20px;
        width: 100%;
        text-align: center;
        order: 1;
    }

    .footer-mid-section .logo img {
        height: 80px;
    }

    .footer-mid-section .info {
        width: 100%;
        order: 3;
        text-align: center;
    }

    .footer-mid-section .info p {
        margin: 0 0 10px 0;
        padding: 0;
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .footer-mid-section .info p i {
        position: inherit;
        left: auto;
        top: auto;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .footer-top-section {
        padding: 0 20px;
        gap: 50px;
    }

    .footer-section {
        margin: 30px;
    }
}

@media only screen and (min-width:1024px) and (max-width:1300px) {
    .footer-section {
        margin: 30px;
    }
}

.breadcrumb-section {
    padding: 200px 0 20px 0;
}

.breadcrumb-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.breadcrumb-section ul li {
    margin: 0;
    padding: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    color: #000000;
    position: relative;
}

.breadcrumb-section ul li a {
    color: #000000;
}

.breadcrumb-section ul li::after {
    content: "-";
    position: absolute;
    right: -12px;
    top: 0;
}

.breadcrumb-section ul li:last-child::after {
    display: none;
}

@media only screen and (max-width:760px) {
    .breadcrumb-section {
        padding: 130px 0 20px 0;
    }
}

.logowanie-rejestracja-page {
    background: linear-gradient(103.21deg, #04AD9A 5.31%, #70BF79 100%);
}

.login-register-section {
    margin: 0 auto;
    padding: 200px 0 100px 0;
    max-width: 320px;
    text-align: center;
}

.login-register-section h4,
.login-register-section h6 {
    color: #FFFFFF;
}

.login-register-section form {
    margin: 10px 0 30px 0;
}

.login-register-section input[type="text"],
.login-register-section input[type="email"],
.login-register-section input[type="tel"],
.login-register-section input[type="password"] {
    margin: 20px 0 0 0;
    padding: 10px 20px;
    width: 100%;
    height: 50px;
    background-color: #FFFFFF;
    border: none;
    border-radius: 30px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    color: #000000;
}

.login-register-section .submit-btn {
    margin: 20px auto;
    padding: 10px 40px;
    width: auto;
    height: 50px;
    background-color: #FFFFFF;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    color: #0E7B6F;
    cursor: pointer;
    transition: .5s;
}

.login-register-section input[type="submit"]:hover,
.login-register-section input[type="submit"]:focus {
    background-color: #FFDC3C;
    transition: .5s;
}

.login-register-section ::placeholder {
    color: #000000;
    opacity: 1;
}

.login-register-section ::-ms-input-placeholder {
    color: #000000;
}

.form-group {
    display: block;
    margin: 5px 0;
    padding-left: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.form-group label {
    position: relative;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    color: #FFFFFF;
}

.form-group label:before {
    content: '';
    -webkit-appearance: none;
    background-color: #FFFFFF;
    border: none;
    border-radius: 4px;
    padding: 10px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
    position: absolute;
    left: -30px;
    top: 0;
}

.form-group input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: -24px;
    width: 6px;
    height: 12px;
    border: solid #0E7B6F;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-group label a {
    color: #FFFFFF;
    text-decoration: underline;
}

.mt-20 {
    margin-top: 20px;
}

.login-register-section form p {
    padding: 5px 20px;
}

.login-register-section form p a {
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
    transition: .5s;
}

.login-register-section form p a:hover {
    color: #FFDC3C;
    transition: .5s;
}

.login-register-section h5 {
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
}

ul.social-login {
    margin: 10px 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

ul.social-login li {
    margin: 0;
    padding: 0;
    font-size: 20px;
}

ul.social-login li a {
    width: 50px;
    height: 50px;
    background-color: #FFFFFF;
    border-radius: 50%;
    color: #0E7B6F;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
}

ul.social-login li a:hover {
    background-color: #FFDC3C;
    transition: .5s;
}

.login-register-section .btn-01 a {
    margin: 50px auto;
    padding: 15px 40px;
    font-size: 18px;
    background-color: #0E7B6F;
}

p.page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

p.page-link a {
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF80;
    transition: .5s;
}

p.page-link a:hover {
    color: #FFDC3C;
    transition: .5s;
}

.cms-content {
    padding: 20px 0 100px 0;
}

.cms-content section {
    padding: 50px;
    background: #0E7B6F1A;
    border-radius: 50px;
}

@media only screen and (max-width:760px) {
    .cms-content {
        padding: 10px 0 50px 0;
    }

    .cms-content section {
        padding: 25px;
        border-radius: 25px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .cms-content section {
        padding: 30px;
        border-radius: 30px;
    }
}

.dashboard-section {
    padding: 20px 0 100px 0;
}

.dashboard-section .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.side-menu {
    width: 200px;
    position: relative;
}

.sidemenu-list {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.sidemenu-item {
    margin: 0 0 20px 0 !important;
    padding: 0;
}

.sidemenu-item a {
    margin: 0;
    padding: 10px 15px;
    width: 100%;
    height: 50px;
    background-color: #0E7B6F;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
    color: #FFFFFF;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    transition: 0.2s ease;
}

.sidemenu-item a i {
    font-size: 10px;
    color: #D23F3F;
}

.sidemenu-item a:hover,
.sidemenu-item.active a {
    background-color: #71BF7A;
}

.open-sidemenu-list {
    display: none;
}

@media screen and (max-width: 768px) {
    .open-sidemenu-list {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: #0E7B6F1A;
        border: 1px solid #0E7B6F1A;
        padding: 10px 15px;
        border-radius: 10px;
        font-size: 16px;
        font-weight: 700;
        line-height: 30px;
        color: #000000;
        cursor: pointer;
        transition: 0.3s ease;
    }

    .sidemenu-list {
        position: absolute;
        background: white;
        width: 100%;
        border: 1px solid #0E7B6F1A;
        border-top: 0;
        border-radius: 0 0 10px 10px;
        overflow: auto;
        z-index: 2;
        display: none;
    }

    .sidemenu-item:last-child {
        border: none;
    }

    .side-menu.active .open-sidemenu-list {
        border-radius: 10px 10px 0 0;
    }

    .sidemenu-item {
        margin: 0 !important;
        padding: 0;
    }

    .sidemenu-item a {
        border-radius: 0 !important;
    }

    .open-sidemenu-list i {
        transition: 0.3s ease;
    }

    .side-menu.active .open-sidemenu-list i {
        transform: rotate(180deg);
    }
}

.main-content {
    width: calc(100% - 240px);
}

.main-content h6 {
    font-size: 16px;
    color: #0E7B6F;
}

.main-content h6 span {
    color: #71BF7A;
}

.main-content p {
    font-size: 16px;
}

.btn-add a {
    margin: 0;
    padding: 0;
    width: 40px;
    height: 40px;
    background-color: #0E7B6F;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-content .btn-01 a {
    background-color: #0E7B6F;
}

.main-content .btn-01 a:hover {
    background-color: #71BF7A;
}

@media only screen and (max-width:760px) {
    .dashboard-section {
        padding: 0 0 50px 0;
    }

    .dashboard-section .container {
        flex-wrap: wrap-reverse;
        gap: 20px;
    }

    .side-menu {
        width: 100%;
    }

    .main-content {
        width: 100%;
    }

    .main-content p {
        font-size: 14px;
    }
}

.notifications-wrapper {
    padding: 30px;
    background: #0E7B6F1A;
    border-radius: 50px;
    min-height: 700px;
}

.notification {
    margin: 30px 0;
    padding: 10px 25px;
    background-color: #FFFFFF;
}

.notification p {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    padding: 0;
}

.notification p span.date {
    display: block;
    margin-bottom: 5px;
}

.notification.read p {
    opacity: .5;
}

.notification .btn-group {
    justify-content: flex-start;
    gap: 5px;
    margin: 10px 0;
}

.btn-yes,
.btn-no {
    margin: 0 !important;
    padding: 5px !important;
    width: 60px !important;
    height: 30px !important;
    background-color: #0E7B6F !important;
    border: none !important;
    border-radius: 20px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    line-height: 20px !important;
    color: #FFFFFF;
    text-transform: uppercase;
    cursor: pointer;
}

.btn-no {
    background-color: #D23F3F !important;
}

.notification.read .btn-yes,
.notification.read .btn-no {
    opacity: .5;
}

@media only screen and (max-width:760px) {
    .notifications-wrapper {
        padding: 20px;
        border-radius: 25px;
        min-height: 300px;
    }

    .notification {
        margin: 15px 0;
        padding: 10px 15px;
    }
}

.dashboard-two-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.dashboard-two-wrapper .left-wrapper,
.dashboard-two-wrapper .right-wrapper {
    width: 50%;
    padding: 30px;
    background: #0E7B6F1A;
    border-radius: 50px;
    min-height: 700px;
}

.persons-wrapper {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    /*flex-wrap: nowrap;*/
    gap: 10px 40px;
    overflow: auto;
    height: 250px;
}

.person-card {
    width: 140px;
    text-align: center;
    margin-right: 10px;
}

/*.person-card {*/
/*    width: 100%;*/
/*    text-align: center;*/
/*    max-width: 140px;*/
/*    min-width: 140px;*/
/*}*/

.person-card figure {
    position: relative;
}

/*.person-card figure::after {*/
/*    content: "";*/
/*    width: 17px;*/
/*    height: 49px;*/
/*    background: url(https://bajarangisoft.com/other_projects/Sanctus/public/User/assets/img/candle_gray.svg) no-repeat center/cover;*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 10px;*/
/*}*/

.candle-icon {
    position: absolute;
    bottom: 0;
    left: 10px;
    width: 17px;
    height: 49px;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
}

.relativeIcon{
    position: absolute;
    right: -13px;
}

.person-card .person-name,
.person-card .death-date,
.person-card .death-anniversary,
.person-card .days-to-go {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    color: #000000;
}

.person-card .death-date {
    color: #05AD9A;
}

.person-card .death-anniversary {
    color: #00000066;
}

.person-card .days-to-go {
    font-weight: 700;
    color: #05AD9A;
}

.order-card {
    margin: 10px 0;
    padding: 10px;
    width: 100%;
    max-width: 350px;
    min-height: 100px;
    background-color: #FFFFFF;
    border: 1px solid #0E7B6F80;
    border-radius: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.order-card figure {
    width: 80px;
    display: flex;
}

.order-card aside {
    width: calc(100% - 100px);
}

.order-card .person-name,
.order-card .death-date,
.order-card .plan {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #0E7B6F;
}

.order-card .person-name {
    font-weight: 700;
}

.alert {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    color: #FFFFFF;
    padding: 0 10px;
    display: inline-block;
}

.alert-red {
    background-color: #D23F3F;
}

.alert-blue {
    background-color: #4497F4;
}

.alert-green {
    background-color: #71BF7A;
}

.alert-pesta {
    background-color: #0E7B6F;
}

.alert-black {
    background-color: #021D17;
}

@media only screen and (max-width:760px) {
    .dashboard-two-wrapper {
        flex-wrap: wrap;
        gap: 20px;
    }

    .dashboard-two-wrapper .left-wrapper,
    .dashboard-two-wrapper .right-wrapper {
        width: 100%;
        padding: 20px;
        border-radius: 25px;
        min-height: 300px;
    }

    .persons-wrapper {
        gap: 10px 15px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .dashboard-two-wrapper {
        flex-wrap: wrap;
    }

    .dashboard-two-wrapper .left-wrapper,
    .dashboard-two-wrapper .right-wrapper {
        width: 100%;
        min-height: 300px;
    }

    .persons-wrapper {
        gap: 10px 15px;
    }
}

@media only screen and (min-width:1024px) and (max-width:1300px) {
    .persons-wrapper {
        gap: 10px 30px;
    }
}

.bliski-wrapper {
    padding: 0 30px 30px 30px;
    background: #0E7B6F1A;
    border-radius: 50px;
    min-height: 700px;
}

.profile-header {
    margin: 0 auto;
    width: 100%;
    max-width: 770px;
    position: relative;
    top: -10px;
}

.profile-header .btn-01 a {
    position: absolute;
    right: 0;
    bottom: -90px;
    z-index: 9;
}

.cover-photo {
    border-radius: 50px 50px 0 0;
    background: linear-gradient(103.21deg, #04AD9A 5.31%, #70BF79 100%);
    display: flex;
    height: 410px;
    overflow: hidden;
}

.cover-photo img {
    border-radius: 50px 50px 0 0;
}

.profile-photo {
    max-width: 340px;
    padding: 10px;
    background-color: #FFFFFF;
    position: absolute;
    left: 50%;
    bottom: -10px;
    z-index: 9;
    transform: translate(-50%, 0);
}

.premium-tag {
    padding: 5px 15px;
    width: auto;
    height: 24px;
    background-color: #05AD9A;
    border-radius: 25px;
    font-size: 10px;
    font-weight: 700;
    line-height: 14px;
    color: #FFFFFF;
    text-transform: uppercase;
    position: absolute;
    left: -40px;
    top: 50px;
}

.basic-tag {
    padding: 5px 15px;
    width: auto;
    height: 24px;
    background-color: #70BF79;
    border-radius: 25px;
    font-size: 10px;
    font-weight: 700;
    line-height: 14px;
    color: #FFFFFF;
    text-transform: uppercase;
    position: absolute;
    left: -40px;
    top: 50px;
}

.upgrade-package a {
    padding: 0;
    width: auto;
    height: auto;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    color: #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
    position: absolute;
    left: 100px;
    top: 50px;
}

.profile-links {
    width: 130px;
    position: absolute;
    bottom: 0;
    right: 130px;
    z-index: 9;
}

.profile-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.profile-links ul li {
    margin: 10px 0;
    padding: 0;
    font-size: 12px;
    font-weight: 600;
    line-height: 20px;
    color: #FFFFFF;
}

.profile-links ul li a {
    padding: 10px;
    background-color: #0E7B6F;
    border-radius: 30px;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.profile-links ul li a i {
    font-size: 20px;
}

.profile-links-icon {
    width: 40px;
    position: absolute;
    bottom: 0;
    right: 195px;
    z-index: 9;
}

.profile-links-icon ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.profile-links-icon ul li {
    margin: 10px 0;
    padding: 0;
    font-size: 12px;
    font-weight: 600;
    line-height: 20px;
    color: #FFFFFF;
}

.profile-links-icon ul li a {
    padding: 10px;
    background-color: #0E7B6F;
    border-radius: 30px;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.profile-links-icon ul li a i {
    font-size: 20px;
}

@media only screen and (max-width:760px) {
    .bliski-wrapper {
        padding: 0 20px 20px 20px;
        border-radius: 25px;
        min-height: 300px;
    }

    .cover-photo {
        height: 200px;
    }

    .cover-photo img {
        border-radius: 25px 25px 0 0;
    }

    .profile-photo {
        margin: -80px auto 10px auto;
        max-width: 200px;
        position: inherit;
        left: auto;
        bottom: auto;
        transform: none;
    }

    .profile-links {
        width: 100%;
        position: inherit;
        bottom: auto;
        right: auto;
    }

    .profile-links ul {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 0 10px;
    }

    .profile-links ul li {
        margin: 5px 0;
    }

    .profile-links ul li a {
        padding: 10px 20px;
        gap: 5px;
    }

    .profile-links-icon {
        right: 30px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .profile-links {
        right: 0px;
    }

    .profile-links ul li {
        margin: 5px 0;
    }

    .cover-photo {
        height: 300px;
    }

    .profile-links-icon {
        right: 95px;
    }
}

.profile-middle {
    margin: 0 auto;
    max-width: 340px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.profile-middle .candle {
    margin-top: -70px;
    width: 125px;
    height: 125px;
    text-align: center;
    position: relative;
    z-index: 9;
}

.profile-middle .name {
    font-size: 15px;
    font-weight: 700;
    color: #000000;
}

.profile-middle .btn-add {
    position: absolute;
    left: 20px;
    bottom: 0;
    z-index: 9;
    width: 40px;
}

@media only screen and (max-width:760px) {
    .profile-middle .candle {
        margin-top: 0px;
    }
}

.profile-tabs {
    margin: 30px 0;
}

.tab-content {
    margin: 0;
    padding: 0;
    text-align: center;
}

.tab-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #979797;
}

.tab-content li {
    margin: 0;
    padding: 0;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 30px !important;
    color: #979797;
}

.tab-content li a {
    color: #979797;
    padding: 10px 30px;
}

.tab-content li a:hover {
    color: #0E7B6F;
}

.tab-content li a.select {
    color: #0E7B6F;
    border-bottom: 3px solid #0E7B6F;
}

.tab-details {
    margin: 0;
    padding: 30px 0 0 0;
}

.information {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 70px;
}

.information article,
.information aside {
    width: 50%;
}

.information article ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.information article ul li {
    font-size: 14px;
    font-weight: 700;
    color: #00000066;
}

.information article ul li strong {
    color: #0E7B6F;
}

.information article p {
    font-size: 14px;
    font-weight: 600;
    text-align: justify;
    word-break: break-all;
}

.information aside ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.information aside ul li {
    margin: 0;
    width: calc(50% - 20px);
}

.information aside ul li audio,
.information aside ul li video,
.information aside ul li img {
    width: -webkit-fill-available;
}

@media only screen and (max-width:760px) {
    .tab-details {
        margin: 0;
        padding: 15px 0 0 0;
    }

    .information {
        flex-wrap: wrap;
        gap: 30px;
    }

    .information article,
    .information aside {
        width: 100%;
    }

    .information aside ul {
        gap: 10px;
    }

    .information aside ul li {
        margin: 0;
        width: calc(50% - 5px);
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .information {
        flex-wrap: wrap;
        gap: 30px;
    }

    .information article,
    .information aside {
        width: 100%;
    }
}

@media only screen and (min-width:1024px) and (max-width:1300px) {
    .information {
        gap: 30px;
    }

    .information aside ul {
        gap: 20px;
    }

    .information aside ul li {
        margin: 0;
        width: calc(50% - 10px);
    }
}

.cemetery {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 70px;
}

.cemetery article,
.cemetery aside {
    width: 50%;
}

.cemetery .d-flex {
    margin-bottom: 20px;
}

.cemetery ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.cemetery ul li {
    font-size: 14px;
    font-weight: 700;
    color: #00000066;
}

.cemetery ul li strong {
    color: #0E7B6F;
}

.visible {
    padding: 10px 15px;
    background-color: #FFFFFF;
    border-radius: 0 50px 50px 0;
    font-size: 14px;
    font-weight: 700;
    color: #484848;
    text-transform: uppercase;
}

.tombstone {
    margin-top: 30px;
    padding-left: 150px;
    position: relative;
}

.tombstone iframe {
    height: 220px;
}

.tombstone .image {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 999;
}

@media only screen and (max-width:760px) {
    .cemetery {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cemetery article,
    .cemetery aside {
        width: 100%;
    }

    .tombstone {
        padding-left: 50px;
    }

    .tombstone .image {
        width: 100px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .cemetery {
        flex-wrap: wrap;
        gap: 30px;
    }

    .cemetery article,
    .cemetery aside {
        width: 100%;
    }
}

@media only screen and (min-width:1024px) and (max-width:1300px) {
    .cemetery {
        gap: 30px;
    }

    .tombstone {
        padding-left: 100px;
    }

    .tombstone .image {
        width: 150px;
    }
}

.new-memory p {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.new-memory p span {
    color: #098368;
}

.new-memory .btn-group {
    gap: 10px;
}

.memory-list {
    margin: 15px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.memory-list figure {
    width: 80px;
}

.memory-list article {
    width: calc(100% - 100px);
}

.memory-list p {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.memory-list p span {
    color: #098368;
}

.profile-candle {
    margin: 0 auto;
    max-width: 340px;
    position: relative;
    text-align: center;
}

.profile-candle .candle {
    margin-top: -120px;
    width: 100%;
    height: 180px;
    text-align: center;
    position: relative;
    z-index: 9;
}

.profile-candle .candle img {
    height: 180px;
}

.profile-candle .name {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin: 30px 0;
}

.profile-candle .light {
    padding: 5px 15px;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    background-color: #0E7B6F;
    border-radius: 30px;
    display: inline-block;
}

.profile-candle .light-by {
    font-size: 14px;
    font-weight: 500;
    color: #0E7B6F;
    margin: 30px 0;
}

.profile-candle .light-by-name {
    font-size: 14px;
    font-weight: 700;
    color: #0E7B6F;
    margin: 10px 0;
}

.profile-candle .light-by-name span {
    color: #000000;
}

.qrcode-wrapper {
    margin: 0 auto;
    max-width: 320px;
    text-align: center;
}

figure.qrcode {
    margin: 30px auto;
    font-size: 128px;
    text-align: center;
}

.qrcode-wrapper p {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    color: #979797;
    margin: 1rem 0;
}

.qrcode-wrapper p strong {
    font-weight: 700;
    color: #003C2F;
}

.pomoc-wrapper {
    padding: 30px;
    background: #0E7B6F1A;
    border-radius: 50px;
    min-height: 700px;
}

.two-column {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
}

.two-column .column {
    width: 50%;
    padding: 30px 50px;
}

.pomoc-wrapper .text-center {
    margin: 0 auto;
    max-width: 390px;
}

.pomoc-wrapper .btn-01 a {
    padding: 10px 40px;
}

.pomoc-wrapper h5 {
    font-size: 18px;
    color: #0E7B6F;
}

.pomoc-wrapper .accordion-set>a {
    font-size: 16px;
    color: #0E7B6F;
}

.pomoc-wrapper .accordion-content {
    padding: 0;
}

.pomoc-wrapper .accordion-content p {
    font-size: 14px;
}

@media only screen and (max-width:760px) {
    .pomoc-wrapper {
        padding: 20px;
        border-radius: 25px;
        min-height: 300px;
    }

    .two-column {
        flex-wrap: wrap;
    }

    .two-column .column {
        width: 100%;
        padding: 10px 0;
    }

    .pomoc-wrapper .btn-01 a {
        padding: 5px 15px;
    }

    .pomoc-wrapper h5 {
        font-size: 16px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .two-column {
        flex-wrap: wrap;
    }

    .two-column .column {
        width: 100%;
        padding: 20px 0;
    }
}

@media only screen and (min-width:1024px) and (max-width:1300px) {
    .two-column .column {
        padding: 30px 0px;
    }
}

.create-profile-wrapper {
    padding: 30px;
    background: #0E7B6F1A;
    border-radius: 50px;
    min-height: 700px;
    position: relative;
}

.data-limit {
    padding: 10px 30px 10px 70px;
    width: 100%;
    max-width: 430px;
    background-color: #FFFFFF;
    border-radius: 100px 0 0 100px;
    position: absolute;
    right: 0;
    top: 30px;
}

.data-limit p {
    font-weight: 700;
    color: #0E7B6F;
    padding: 0 0 5px 0;
}

.data-limit span {
    font-size: 14px;
    font-weight: 600;
    color: #003C2F;
    padding: 10px 0 0 0;
}

.data-limit .bar {
    width: 100%;
    height: 8px;
    background-color: #71BF7A;
    border-radius: 5px;
    position: relative;
    display: block;
}

.data-limit .bar .data {
    width: auto;
    height: 8px;
    background-color: #0E7B6F;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 0;
}

.choose-package,
.choose-color {
    margin: 30px 0;
}

.choose-color p span {
    color: #0E7B6F;
}

.fancy-options {
    margin: 15px 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.package {
    width: 100%;
    max-width: 370px;
}

.fancy-options input[type=radio] {
    display: none;
}

.fancy-options input[type=radio]~label {
    width: 100%;
    background: #71BF7A;
    border-radius: 20px;
    padding: 30px 30px 30px 70px;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.fancy-options input[type=radio]~label strong {
    font-weight: 700;
}

.fancy-options input[type=radio]~label span {
    display: block;
    font-weight: 400 !important;
}

.fancy-options input[type=radio]~label:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background-color: #FFFFFF;
    border: 10px solid #B6BFBD;
    background-clip: content-box;
    border-radius: 50%;
    transition: 0.3s;
    position: absolute;
    left: 25px;
    top: 25px;
}

.fancy-options input[type=radio]:checked~label {
    background: #05AD9A;
}

.fancy-options input[type=radio]:checked~label:after {
    background-color: #FFFFFF;
    border: 10px solid #098368;
}

@media only screen and (max-width:760px) {
    .create-profile-wrapper {
        padding: 20px;
        border-radius: 25px;
        min-height: 300px;
    }

    .data-limit {
        padding: 10px 20px;
        width: 100%;
        max-width: 100%;
        border-radius: 20px;
        position: inherit;
        right: auto;
        top: auto;
    }

    .choose-package {
        margin: 15px 0;
    }

    .fancy-options {
        flex-wrap: wrap;
        gap: 15px;
    }

    .package {
        max-width: 100%;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .data-limit {
        padding: 10px 70px;
        width: 100%;
        max-width: 100%;
        border-radius: 100px;
        position: inherit;
        right: auto;
        top: auto;
    }

    .choose-package {
        margin: 15px 0;
    }

    .fancy-options {
        flex-wrap: wrap;
        gap: 15px;
    }

    .package {
        max-width: 100%;
    }
}

.profile-form {
    margin: 30px 0;
}

.field-row {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0 20px;
    padding: 20px 0 0 0;
}

.field-row .col-1 {
    width: 100%;
}

.field-row .col-2 {
    width: calc(50% - 10px);
}

.field-row .col-3 {
    width: calc(33.333% - 14px);
}

.main-content input[type="text"],
.main-content input[type="email"],
.main-content input[type="tel"],
.main-content input[type="password"],
.main-content input[type="date"],
.main-content select,
.main-content textarea {
    margin: 0;
    padding: 10px 20px;
    width: 100%;
    height: 50px;
    background-color: #FFFFFF;
    border: none;
    border-radius: 30px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    color: #000000;
}

.main-content textarea {
    padding: 20px;
    height: 120px;
    overflow: auto;
    resize: none;
}

.main-content select {
    background: #FFFFFF url(../img/dd-arrow.png) no-repeat right;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.main-content input[type="submit"] {
    margin: 20px auto;
    padding: 10px 40px;
    width: auto;
    height: 50px;
    background-color: #0E7B6F;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    color: #FFFFFF;
    cursor: pointer;
    transition: .5s;
}

.main-content input[type="submit"]:hover,
.main-content input[type="submit"]:focus {
    background-color: #71BF7A;
    transition: .5s;
}

.main-content ::placeholder {
    color: #000000;
    opacity: 1;
}

.main-content ::-ms-input-placeholder {
    color: #000000;
}

.main-content .uploadFile {
    margin: 0;
    padding: 5px 15px;
    width: auto;
    background-color: #0E7B6F;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: #FFFFFF;
    overflow: hidden;
    position: relative;
    resize: none;
    display: inline-block;
}

.main-content .uploadFile [type=file] {
    cursor: pointer !important;
    display: block;
    font-size: 999px;
    filter: alpha(opacity=0);
    min-height: 100%;
    min-width: 100%;
    opacity: 0;
    position: absolute;
    right: 0px;
    text-align: right;
    top: 0px;
    z-index: 1;
}

.main-content button[type="reset"] {
    margin: 20px auto;
    padding: 10px 40px;
    width: auto;
    height: 50px;
    background-color: #D23F3F;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    color: #FFFFFF;
    cursor: pointer;
    transition: .5s;
}

@media only screen and (max-width:760px) {
    .profile-form {
        margin: 15px 0;
    }

    .field-row {
        flex-wrap: wrap;
        gap: 0px;
        padding: 0;
    }

    .field-row .col-1 {
        width: 100%;
        padding: 5px 0;
    }

    .field-row .col-2 {
        width: 100%;
        padding: 5px 0;
    }

    .field-row .col-3 {
        width: 100%;
        padding: 5px 0;
    }

    .main-content .uploadFile {
        margin: 10px 10px 0 0;
    }

    .main-content input[type="submit"],
    .main-content button[type="reset"] {
        padding: 10px 20px;
        font-size: 16px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .field-row {
        flex-wrap: wrap;
        gap: 0px;
        padding: 0;
    }

    .field-row .col-1 {
        width: 100%;
        padding: 5px 0;
    }

    .field-row .col-2 {
        width: 100%;
        padding: 5px 0;
    }

    .field-row .col-3 {
        width: 100%;
        padding: 5px 0;
    }

    .main-content .uploadFile {
        margin: 10px 10px 0 0;
    }
}

.preview {
    margin: 1em auto;
    width: 100px;
    height: 80px;
    position: relative;
    z-index: 1;
}

.preview img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: -1;
}

.btn-delete {
    margin: 0;
    padding: 0;
    width: 30px;
    height: 30px;
    background-color: #0E7B6F;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.preview .btn-delete {
    position: absolute;
    right: -10px;
    top: -10px;
}

.request {
    margin: 30px auto 0 auto;
    max-width: 600px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.request .btn-group {
    gap: 10px;
}

.request p {
    font-weight: 700;
}

.bw {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    filter: gray;
    -webkit-filter: grayscale(1);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
}

.database-wrapper {
    padding: 30px;
    background: #0E7B6F1A;
    border-radius: 50px;
    min-height: 700px;
}

.search-panel {
    margin: 15px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.search-panel .i-field {
    width: 29%;
}

.search-panel .s-field {
    width: 13%;
}

.search-panel input[type="submit"] {
    margin: 0 !important;
    padding: 10px !important;
    width: 100% !important;
}

.database-wrapper .search-results {
    margin-top: 15px;
}

.add-person {
    text-align: center;
}

.add-person figure {
    margin: 15px auto;
    max-width: 300px;
}

.add-person p {
    padding: 10px 0;
    font-size: 14px;
    font-weight: 700;
    color: #979797;
}

.add-person p strong {
    font-weight: 700;
    color: #0E7B6F;
}

.add-person .btn-group {
    margin: 0 auto;
    max-width: 500px;
    justify-content: center !important;
}

@media only screen and (max-width:760px) {
    .add-person .btn-group {
        flex-wrap: wrap;
    }

    .profile-header .btn-01 {
        text-align: center;
    }

    .profile-header .btn-01 a {
        position: inherit;
        right: auto;
        bottom: auto;
        z-index: 9;
    }

    .database-wrapper {
        padding: 20px;
        border-radius: 25px;
        min-height: 300px;
    }

    .search-panel {
        flex-wrap: wrap;
        gap: 15px;
    }

    .search-panel .i-field {
        width: 100%;
    }

    .search-panel .s-field {
        width: 100%;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .search-panel {
        flex-wrap: wrap;
        gap: 15px;
    }

    .search-panel .i-field {
        width: 47%;
    }

    .search-panel .s-field {
        width: 47%;
    }
}

.orders-wrapper {
    padding: 30px;
    background: #0E7B6F1A;
    border-radius: 50px;
    min-height: 700px;
}

.orders-flex {
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
}

.orders-flex .order-card {
    max-width: calc(33.333% - 14px);
}

@media only screen and (max-width:760px) {
    .orders-wrapper {
        padding: 20px;
        background: #0E7B6F1A;
        border-radius: 25px;
        min-height: 300px;
    }

    .orders-flex {
        margin: 15px 0;
        display: flex;
        flex-wrap: wrap;
        gap: 0 20px;
    }

    .orders-flex .order-card {
        max-width: 100%;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .orders-flex .order-card {
        max-width: 100%;
    }
}

@media only screen and (min-width:1024px) and (max-width:1280px) {
    .orders-flex .order-card {
        max-width: calc(50% - 10px);
    }
}

.orders-details figure {
    margin: 15px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.orders-details figure img {
    width: 200px;
    border: 10px solid #FFFFFF;
}

.details {
    margin: 30px 0;
    display: flex;
    gap: 60px;
}

.details article {
    width: 50%;
}

.details article p {
    font-size: 14px;
}

.details article h6 span {
    font-weight: 400 !important;
    color: #0E7B6F !important;
    line-height: 1.5 !important;
}

.details aside {
    width: 50%;
    text-align: center;
}

.details aside p {
    margin: 0 auto;
    max-width: 350px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    color: #979797;
}

.details aside p strong {
    font-weight: 700;
    color: #0E7B6F;
}

.details aside .btn-01 a {
    padding: 10px 40px;
}

@media only screen and (max-width:760px) {
    .orders-details figure {
        gap: 20px;
    }

    .orders-details figure img {
        width: 136px;
        border: 5px solid #FFFFFF;
    }

    .details {
        margin: 15px 0;
        flex-wrap: wrap;
        gap: 20px;
    }

    .details article {
        width: 100%;
    }

    .details aside {
        width: 100%;
    }

    .details aside .btn-01 a {
        padding: 5px 20px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .details {
        flex-wrap: wrap;
        gap: 30px;
    }

    .details article {
        width: 100%;
    }

    .details aside {
        width: 100%;
    }
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.before-after {
    margin: 15px 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    gap: 60px;
}

.before-after .before,
.before-after .after {
    width: 120px;
}

.before-after p {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: #0E7B6F;
}

.before-after p span {
    display: block;
    color: #979797;
    text-align: center;
}

.chat-box {
    margin: 0 auto;
    max-width: 350px;
}

.artist {
    margin: 15px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.artist figure {
    width: 50px;
    height: 50px;
    background-color: #003C2F;
    border-radius: 50%;
    overflow: hidden;
}

.artist figure img {
    border: none !important;
    border-radius: 50%;
}

.artist article {
    width: calc(100% - 70px);
}

.chat {
    margin: 15px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.chat input[type="submit"] {
    margin: 0;
    padding: 10px 15px;
}

.chat-receive {
    margin: 5px 0;
    padding: 15px;
    background-color: #FFFFFF;
    border-radius: 20px 20px 20px 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #1C1D21;
    text-align: left;
}

.chat-receive-time,
.chat-send-time {
    margin: 5px 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #8181A5;
    text-align: left;
}

.chat-send-time {
    text-align: right;
}

.chat-send {
    margin: 5px 0;
    padding: 15px;
    background-color: #05AD9A;
    border-radius: 20px 20px 0 20px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #FFFFFF;
    text-align: right;
}

.rating {
    width: auto;
    margin: 0;
    font-size: 44px;
    overflow: hidden;
    text-align: left;
}

.rating input {
    opacity: 0;
    position: absolute;
}

.rating a,
.rating label {
    color: #aaa;
    text-decoration: none;
    -webkit-transition: color .4s;
    -moz-transition: color .4s;
    -o-transition: color .4s;
    transition: color .4s;
}

.rating label:hover~label,
.rating input:focus~label,
.rating label:hover,
.rating a:hover,
.rating a:hover~a,
.rating a:focus,
.rating a:focus~a {
    color: #70BF79;
    cursor: pointer;
}

.rating2 {
    direction: rtl;
}

.snitch {
    margin: 15px 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    gap: 60px;
}

.snitch .one,
.snitch .two {
    width: 80px;
    text-align: center;
}

.snitch p {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: #0E7B6F;
}

.snitch p span {
    display: block;
    color: #979797;
    text-align: center;
}

.persons-options {
    margin: 15px 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.persons-options .person {
    width: 100%;
    max-width: 160px;
}

.persons-options .person .person-name,
.persons-options .person .death-date {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.5;
    color: #000000;
    text-align: center;
    margin-top: 5px;
}

.persons-options .person .death-date {
    color: #05AD9A;
}

.persons-options input[type=radio] {
    display: none;
}

.persons-options input[type=radio]~label {
    width: 100%;
    border-radius: 0;
    padding: 0;
    position: relative;
    cursor: pointer;
}

.persons-options input[type=radio]~label:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background-color: #FFFFFF;
    border: 10px solid #B6BFBD;
    background-clip: content-box;
    border-radius: 50%;
    transition: 0.3s;
    position: absolute;
    left: 10px;
    top: 125px;
}

.persons-options input[type=radio]:checked~label:after {
    background-color: #FFFFFF;
    border: 10px solid #098368;
}

.calendar {
    margin: 15px 0;
    background: #fff;
    padding: 20px;
    width: 100%;
    max-width: 400px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.calendar-header select {
    width: auto !important;
    height: auto !important;
    padding: 5px 40px 5px 10px !important;
    font-size: 14px !important;
    background-size: 40px;
    text-transform: capitalize;
}

.calendar-header button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 30px;
    color: #000000;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-top: 10px;
}

.day-name,
.day {
    text-align: center;
    padding: 10px;
}

.day-name {
    font-size: 14px;
    color: #888;
}

.day {
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.day:hover:not(.selected) {
    background: #e0e0e0;
}

.selected {
    background: #71BF7A;
    color: #FFFFFF;
    pointer-events: none;
}

.disabled {
    color: #ccc;
    background-color: #f5f5f5;
    pointer-events: none;
    cursor: default;
}

@media (max-width: 600px) {
    .calendar {
        padding: 0;
    }

    .day,
    .day-name {
        padding: 2px;
        font-size: 12px;
    }

    .calendar-header select {
        padding: 5px 25px 5px 10px !important;
        font-size: 12px !important;
        background-size: 30px;
        text-transform: capitalize;
    }
}

.flowers-options {
    margin: 15px 18px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.flowers-options .flower {
    width: 100%;
    max-width: 80px;
}

.flowers-options .flower .flower-name,
.flowers-options .flower .pln {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    color: #979797;
    text-align: center;
    margin-top: 5px;
}

.flowers-options input[type=radio] {
    display: none;
}

.flowers-options input[type=radio]~label {
    width: 100%;
    border-radius: 0;
    padding: 0;
    position: relative;
    cursor: pointer;
}

.flowers-options input[type=radio]~label:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background-color: #FFFFFF;
    border: 10px solid #B6BFBD;
    background-clip: content-box;
    border-radius: 50%;
    transition: 0.3s;
    position: absolute;
    left: -10px;
    top: 15px;
}

.flowers-options input[type=radio]:checked~label:after {
    background-color: #FFFFFF;
    border: 10px solid #098368;
}

.services-options {
    margin: 15px 18px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}


.services-options .service .service-name,
.services-options .service .pln {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    color: #979797;
    text-align: center;
    margin-top: 5px;
}

.services-options input[type=radio] {
    display: none;
}

.services-options input[type=radio]~label {
    width: 100%;
    border-radius: 0;
    padding: 0;
    position: relative;
    cursor: pointer;
}

.services-options input[type=radio]~label:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background-color: #FFFFFF;
    border: 10px solid #B6BFBD;
    background-clip: content-box;
    border-radius: 50%;
    transition: 0.3s;
    position: absolute;
    left: -10px;
    top: 0;
}

.services-options input[type=radio]:checked~label:after {
    background-color: #FFFFFF;
    border: 10px solid #098368;
}

.candles-options {
    margin: 15px 18px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.candles-options .candle {
    width: 100%;
    max-width: 80px;
}

.candles-options .candle .candle-name,
.candles-options .candle .pln {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    color: #979797;
    text-align: center;
    margin-top: 5px;
}

.candles-options input[type=radio] {
    display: none;
}

.candles-options input[type=radio]~label {
    width: 100%;
    border-radius: 0;
    padding: 0;
    position: relative;
    cursor: pointer;
}

.candles-options input[type=radio]~label:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background-color: #FFFFFF;
    border: 10px solid #B6BFBD;
    background-clip: content-box;
    border-radius: 50%;
    transition: 0.3s;
    position: absolute;
    left: -10px;
    top: 15px;
}

.candles-options input[type=radio]:checked~label:after {
    background-color: #FFFFFF;
    border: 10px solid #098368;
}

.contractor {
    margin: 0 auto;
    max-width: 350px;
    text-align: center;
}

.contractor p {
    margin: 50px auto;
    color: #0E7B6F;
}

.contractor .btn-01 a {
    padding: 10px 40px;
    background-color: #0E7B6F;
}

.partners-wrapper {
    padding: 30px;
    background: #0E7B6F1A;
    border-radius: 50px;
    min-height: 700px;
}

.partners-search-results {
    margin: 15px 0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.partners-search-results .partner-card {
    padding: 15px;
    width: calc(33.333% - 15px);
    min-height: 100px;
    background-color: #FFFFFF;
    border: 1px solid #0E7B6F80;
    border-radius: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.partners-search-results .partner-card figure {
    padding: 10px;
    width: 80px;
    text-align: center;
}

.partners-search-results .partner-card article {
    width: calc(100% - 120px);
    padding: 10px;
}

.partners-search-results .partner-card article h6 {
    padding: 0;
}

.partners-search-results .partner-card article p {
    padding: 0;
    line-height: 1.4;
    color: #0E7B6F;
}

.partner-details {
    margin: 30px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.partner-details figure {
    padding: 10px 50px 10px 0;
    width: 150px;
    text-align: center;
}

.partner-details article {
    width: calc(100% - 150px);
    padding: 10px;
}

.partner-details article h6 {
    padding: 0;
}

.partner-details article p {
    padding: 0;
    line-height: 1.4;
    color: #0E7B6F;
}

@media only screen and (max-width:760px) {
    .contractor p {
        margin: 20px auto;
        color: #0E7B6F;
    }

    .contractor .btn-01 a {
        padding: 5px 20px;
    }

    .partners-wrapper {
        padding: 20px;
        border-radius: 25px;
        min-height: 300px;
    }

    .partners-search-results {
        margin: 15px 0;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 20px;
    }

    .partners-search-results .partner-card {
        padding: 10px;
        width: 100%;
    }

    .partner-details {
        margin: 15px 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .partner-details figure {
        padding: 10px 20px 10px 0;
        width: 120px;
    }

    .partner-details article {
        width: calc(100% - 120px);
    }
}

/* 24-04-25 ananta start*/
.setting-wrapper {
    background: rgba(14, 123, 111, 0.1);
    border-radius: 50px;
    padding: 25px 30px;
}

.setting-wrapper h6 {
    padding: 0 0 22px 0;
}

.setting-content-flex {
    display: flex;
    flex-wrap: wrap;
}

.setting-left {
    width: 26%;
}

.setting-form-flex {
    display: flex;
    flex-direction: column;
}

.setting-form-item {
    margin-bottom: 20px;
}

.setting-form-item label {
    display: block;
    font-size: 10px;
    line-height: 12px;
    font-weight: 600;
    color: #003C2F;
    margin-bottom: 12px;
}

.setting-submit {
    text-align: center;
}

.setting-right {
    width: calc(100% - 26%);
    max-width: 435px;
    padding-left: 94px;
}

.refarral-code {
    text-align: center;
    padding: 0 9px;
}

ul.setting-toggle-list {
    list-style: none;
    padding: 40px 0 60px 0;
}

ul.setting-toggle-list li {
    margin: 0 0 20px 0;
}

ul.setting-toggle-list li:last-child {
    margin-bottom: 0;
}

ul.setting-toggle-list li input {
    display: none;
}

ul.setting-toggle-list li label {
    position: relative;
    display: block;
    font-size: 13px;
    line-height: 16px;
    font-weight: 600;
    color: #1C1D21;
    padding-left: 52px;
}

ul.setting-toggle-list li label::before,
ul.setting-toggle-list li label::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 40px;
    height: 19px;
    background: #71BF7A;
    border-radius: 12px;
    transition: 0.3s;
}

ul.setting-toggle-list li input:checked+label::before {
    background: #0E7B6F;
}

ul.setting-toggle-list li label::after {
    left: 4px;
    width: 16px;
    height: 14px;
    border-radius: 50%;
    background: #FFFFFF;
}

ul.setting-toggle-list li input:checked+label::after {
    left: 20px;
}

.special-dates h5 {
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    color: #0E7B6F;
    padding: 0 0 18px 0;
}

.special-dates-flex {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
}

.dates-add-col {
    position: relative;
    width: 34.61%;
}

.dates-add-col input::-webkit-calendar-picker-indicator {
    opacity: 1;
    visibility: hidden;
}

.calender-icon {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translate(0, -50%);
    font-size: 24px;
    line-height: 1;
    color: #098368;
}

.special-dates button {
    border: none;
    width: 40px;
    height: 40px;
    background: #0E7B6F;
    border-radius: 50%;
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
    color: #FFFFFF;
    cursor: pointer;
}

.special-dates button:hover {
    background: #71BF7A;
}

.contents-msg {
    width: 162px;
}

.added-dates-col {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px 0;
    margin-top: 8px;
}

.added-dates-col h6 {
    padding: 0;
}

.added-dates-col .delete-dates {
    font-size: 20px;
}

.special-dates .save-btn {
    text-align: center;
}

.special-dates .save-btn input {
    margin: 35px 0 0 0;
}

@media (max-width: 1024px) {
    .setting-content-flex {
        gap: 10px 0;
    }

    .setting-left {
        width: 100%;
    }

    .setting-right {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
    }

    .special-dates-flex {
        justify-content: space-between;
    }

    .contents-msg {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .setting-wrapper {
        padding: 25px 15px;
    }

    .contents-msg {
        width: 46%;
    }

    .special-dates h5 {
        font-size: 16px;
        line-height: 20px;
    }

    .special-dates-flex {
        gap: 5px;
    }

    .special-dates .save-btn input {
        margin: 15px 0 0 0;
    }
}


.cursor-pointer{
    cursor: pointer;
}

.slick-slide img{
    width: 120px;
    height: 120px;
    object-fit: contain;
    z-index: 0;
}
.slick-prev:before, .slick-next:before{
    color: #71BF7A;
    font-size: 27px;
    opacity: 1.75;
}

.slick-prev, .slick-next {
    top: 60%;
    z-index: 1;
}

.slick-prev {
    left: 0;
}

.slick-prev:before {
    content: '←';
    left: -15px;
    position: absolute;
    top: -9px;
}

.slick-next {
    right: 0;
}

.slick-next:before {
    content: '→';
    right: -15px;
    position: absolute;
    top: -9px;
}

.rating .active{
    color: #54bb82;
}

.pulse {
    box-shadow: 0 0 0 0 rgba(243, 88, 124, 0.4);
    -moz-animation: pulse 2s infinite;
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(198, 17, 93);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(88, 120, 243, 0);
    }
    100% {
        box-shadow: 0 0 0 50px rgba(88, 120, 243, 0);
    }
}


.main-content .select2-selection{
    padding: 10px 20px !important;
    width: 100% !important;
    height: 50px !important;
    background-color: #FFFFFF !important;
    border: none !important;
    border-radius: 30px !important;
    font-family: "Montserrat", sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 30px !important;
    color: #000000 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 10px !important;
    right: 10px !important;
    width: 20px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #04ad9a !important;
    color: white;
}

.select2-container--default .select2-selection--single .select2-selection__rendered{
    color: black !important;
}
/* 24-04-25 ananta end*/
