@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Roboto:wght@100&display=swap");
:root {
    --font-family: "Quicksand", sans-serif, sans-serif;
    --primary-color: var(--theme, #fe21ff);
    --primary-light-color: var(--light-theme, #e62eea1c);
    --primary-extra-light: var(--extra-theme, #fdebfd);
    --theme-outline: var(--outline-theme, #e62eea26);
    --secondary-color: #000000;
    --lightgrey: #c8c8c8;
    --dark-grey: #a5a5a5;
    --theme-gradiant: var(
        --gradiant-theme,
        linear-gradient(90deg, #cde8f5 33.86%, #ecacf5 100%)
    );
    /* --icon-circle:var(--circle-icon,url(../assets/images/pink-circle-purple.svg)); */
}
body {
    margin: 0px;
    padding: 0px;
    font-family: var(--font-family);
    background: #f5f7f9;
}

* {
    margin: 0px;
    padding: 0px;
}

img {
    margin: 0px;
    padding: 0px;
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
}

h1 {
    font-size: 46px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 23px;
}

h2,
h3,
h4,
h5,
h6,
a,
p {
    word-break: break-word;
    font-family: var(--font-family);
}

p {
    font-size: 16px;
}

a,
.btn,
button,
.dropdown-item {
    text-transform: lowercase;
}

.heading-title {
    font-size: 70px;
    line-height: 70px;
}

.bg-pink {
    background: var(--primary-color);
}

.text-pink,
.text-pink:hover {
    color: var(--primary-color);
}

.black-bg {
    background-color: var(--secondary-color);
}

.black-text,
.black-text:hover,
.text-black,
.text-black:hover {
    color: var(--secondary-color);
}

.text-grey {
    color: var(--lightgrey);
}

.dark-grey {
    color: var(--dark-grey);
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}
.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.f9-size {
    font-size: 9px;
}

.f12-size {
    font-size: 12px;
}

.f13-size {
    font-size: 13px;
}

.f14-size {
    font-size: 14px;
}

.f15-size {
    font-size: 15px;
}

.f17-size {
    font-size: 17px;
}

.f18-size {
    font-size: 18px;
}

.f19-size {
    font-size: 19px;
}

.f20-size {
    font-size: 20px;
}

.line-24 {
    line-height: 24px;
}

.one-line-content,
.userprofile p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.two-line-content {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.three-line-content {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.ptb-top,
.pttop-bottom {
    padding-top: 50px;
}

.ptb-bottom,
.pttop-bottom {
    padding-bottom: 50px;
}

.pt-py-30 {
    padding-top: 30px;
}

.pt-bottom-30,
.pt-py-30 {
    padding-bottom: 30px;
}

.pt-top-20,
.pt-py-20 {
    padding-top: 20px;
}

.achar-cursoer {
    cursor: pointer;
}

/*
.btn-size-dt,
.btn-size-dt:hover,
.btn-size-dt:focus {
    background: var(--secondary-color);
    width: 100%;
    color: #fff;
    height: 49px;
} */

.radius-30 {
    border-radius: 30px;
}

.radius-50 {
    border-radius: 50px;
}

.border-bottom-line {
    border-bottom: 1px solid var(--lightgrey);
}

.btn-pink,
.btn-pink:hover {
    background: var(--primary-color);
    border-radius: 30px;
    padding: 10px 15px;
    color: #fff;
}

.btn-transparent {
    background-color: transparent;
    background: none;
    padding: 0;
    border: none;
}

/* common clases */

.f-14 {
    font-size: 14px;
}

.f-18 {
    font-size: 18px;
}

.f-20 {
    font-size: 20px;
}

.f-22 {
    font-size: 22px;
}

.form-check-input {
    border-color: var(--primary-color);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.form-switch .pink-theme {
    background-image: url(../images/pink-circle.svg);
}

.form-switch .purple-theme {
    background-image: url(../images/circle-purple.svg);
}

.form-switch .pink-theme:focus {
    background-image: url(../images/pink-circle.svg);
}
.form-switch .purple-theme:focus {
    background-image: url(../images/circle-purple.svg);
}
.form-switch .form-check-input:checked {
    background-position: right center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e") !important;
}

.form-control:focus,
.btn:focus,
.btn:active,
button,
button:focus {
    box-shadow: none;
    outline: none !important;
}

.btn-lightpink,
.bg-lightpink {
    background-color: rgb(230 46 234 / 11%);
    background: var(--primary-light-color);
    color: var(--primary-color);
    font-family: var(--font-family);
}
/* .btn-lightpink:hover {
    background-color: rgb(230 46 234 / 11%);
    background: #e62eea1c;
    color: var(--primary-color);
    font-family: var(--font-family);
} */

.btn-lightorange {
    background-color: #ff81811f;
}

.full-absolute,
.input-absolute {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.input-absolute {
    opacity: 0;
    z-index: 9;
    cursor: pointer;
}

.thin-scroll {
    scrollbar-width: thin;
    overflow-y: auto;
    scrollbar-color: #aaa #fff;
}

.thin-scroll::-webkit-scrollbar {
    width: 5px;
}

.thin-scroll::-webkit-scrollbar {
    height: 10px;
}

.thin-scroll::-webkit-scrollbar-track {
    background: #fff;
}

.thin-scroll::-webkit-scrollbar-thumb {
    background-color: #aaa;
    border-radius: 20px;
    border: 3px solid #aaa;
}

/* hide scroll */

.hidden-scrollbar {
    scrollbar-width: thin;
    overflow-y: auto;
    scrollbar-color: #fff #fff;
}

.hidden-scrollbar::-webkit-scrollbar {
    width: 5px;
}

.hidden-scrollbar::-webkit-scrollbar {
    height: 10px;
}

.hidden-scrollbar::-webkit-scrollbar-track {
    background: #fff;
}

.hidden-scrollbar::-webkit-scrollbar-thumb {
    background-color: #fff;
    border-radius: 20px;
    border: 3px solid #fff;
}

/* .hidden-scrollbar{
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.hidden-scrollbar::-webkit-scrollbar {
    display: none;
} */

.dropdown-menu {
    box-shadow: 0px 0px 6px #00000021;
    background: #fff;
    padding: 0px;
}

.dropdown-menu .dropdown-item {
    position: relative;
    padding: 0.4rem 1rem;
}

.dropdown-item.active,
.dropdown-item:active {
    color: var(--primary-color);
    text-decoration: none;
    background-color: var(--primary-light-color);
}

.dropdown-menu .dropdown-item:after {
    opacity: 0.15;
    position: absolute;
    bottom: 0px;
    left: 10px;
    right: 10px;
    background-color: var(--lightgrey);
    height: 1px;
    width: calc(100% - 20px);
    content: "";
}

/* =====auth pages======= */

.login-inner {
    max-width: 380px;
}

.login-content-logo {
    background: url(../images/banner-login.png) no-repeat;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding: 10px 20px;
}
.login-content-logo-new {
    /* background: url(../images/banner-login.png) no-repeat; */
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* background-size: cover; */
    /* background-position: center; */
    padding: 10px 20px;
}
.italic-text-heading {
    font: normal normal normal 60px/116px Halimun;
    letter-spacing: 0px;
    color: #ffffff;
    opacity: 1;
}

.inner-login input {
    border-radius: 30px;
    text-align: center;
    height: 49px;
    font-size: 20px;
    color: #000;
}

.inner-login input:placeholder {
    color: var(--lightgrey);
}

.inner-login input::-webkit-input-placeholder {
    color: var(--lightgrey);
}

.inner-login input:-ms-input-placeholder {
    color: var(--lightgrey);
}

.inner-login .form-control:focus,
.inner-login textarea.form-control:focus {
    box-shadow: unset !important;
    border-color: #4e4e4e !important;
}

/* register page */

.registerform {
    max-width: 420px;
    margin: 0 auto;
}

.registerpage {
    padding-top: 80px;
    padding-bottom: 80px;
}

.textyellow {
    color: #ffda5c;
}

.register-banner-title {
    border-radius: 60px;
    color: #fff;
    font-size: 18px;
    text-align: center;
    font-weight: 500;
    max-width: 440px;
    margin: 0 auto;
    line-height: 24px;
    padding: 10px 15px;
}

.register-banner-img {
    position: absolute;
    top: -130px;
    height: 270px;
    width: 100%;
    object-fit: contain;
    display: block;
    z-index: -1;
    text-align: center;
    margin: 0 auto;
}

.right-registerblock {
    position: relative;
    padding-top: 100px;
    z-index: 1;
}

.register-list {
    list-style: "👉 ";
    column-count: 2;
    font-size: 14px;
    column-gap: 30px;
    padding-left: 24px;
    line-height: 26px;
}

.app-options a {
    max-width: 50%;
}

.app-options img {
    height: 28px;
    width: 100%;
    object-fit: contain;
}

.register-social img {
    margin-right: 5px;
    width: 28px;
    height: 28px;
}

h2.signika-font {
    font-family: "Signika", sans-serif;
    font-size: 34px;
}

.register-mobile-banner {
    height: 200px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.banner-register-mobile {
    margin-bottom: 30px;
}

/* ==============dashboard Layout page============= */

/* header */

.header-field {
    /* background-color: #fff; */
    background-image: var(--theme-gradiant);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    padding: 13px 20px;
    right: 0;
    box-shadow: 0px 3px 44px #00000005;
    z-index: 105;
}

.header-field .header-logo img {
    width: 145px;
    height: 64px;
    object-fit: contain;
}

.header-field .full-header {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr minmax(auto, 170px);
    justify-content: space-between;
}

.header-field .full-header .search-field {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.header-field .search-field .form-control {
    background: #f4f4f4;
    border: 1px solid #f4f4f4;
    border-radius: 35px;
    min-height: 46px;
    padding-left: 42px;
}

.header-field .searchicon {
    position: absolute;
    height: 17px;
    left: 17px;
    top: 13px;
    object-fit: contain;
}

.header-field .filter-search {
    border: none;
    border-radius: 5px;
    padding: 5px 10px 8px 10px;
    background: #e62eea0d;
}

.header-field .notification-toggle-btn img {
    width: 20px;
}

.userprofile,
.userprofile:hover {
    border: 1px solid #222;
    padding: 5px;
    border-radius: 30px;
    align-items: center;
    display: grid;
    grid-template-columns: 40px 1fr;
    color: var(--secondary-color);
    grid-gap: 8px;
    text-decoration: none;
    max-width: 170px;
    overflow: hidden;
    width: 100%;
}

.userprofile img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

/* sidebar */

.sidebar {
    position: sticky;
    top: 90px;
    left: 0;
    background: #fff;
    min-width: 280px;
    height: calc(100vh - 90px);
}

.sidebar ul {
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar li {
    margin-bottom: 10px;
}

.sidebar li img {
    width: 22px;
    height: 24px;
    object-fit: contain;
    margin-right: 12px;
}
.sidebar li svg {
    width: 22px;
    height: 24px;
    object-fit: contain;
    margin-right: 12px;
}

.theme-icons-new path,
.theme-icons-new rect {
    stroke: var(--primary-color);
}
.sidebar .active .theme-icons path,
.sidebar .active .theme-icons rect {
    fill: #fff !important;
}
.theme-icons path,
.theme-icons rect,
.theme-icons #Ellipse_545 {
    fill: var(--primary-color) !important;
}
.new-theme-icons path,
.new-theme-icons rect {
    fill: var(--primary-color) !important;
}
.light-theme-icons path,
.light-theme-icons rect{
    fill : var(--primary-extra-light) !important;
}
.sidebar li a {
    color: #000;
    font-size: 19px;
    text-decoration: none;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 235px;
    font-weight: 600;
    padding: 8px 4px 10px 23px;
    border-radius: 0px 30px 30px 0px;
}
.sidebar li .magic-side {
    padding: 8px 4px 10px 19px;
}

.sidebar li.active {
    position: relative;
    overflow: hidden;
}

.sidebar li.active a {
    color: #fff;
    background-color: var(--primary-color);
    outline: 3px solid var(--theme-outline);
}

.sidebar li.active .side-pink:after {
    content: "";
    display: inline-block;
    height: 46px;
    top: 2px;
    right: -15px;
    position: absolute;
    background-image: url(../images/nav-active.svg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    width: 50px;
}
.sidebar li.active .side-purple:after {
    content: "";
    display: inline-block;
    height: 46px;
    top: 2px;
    right: -15px;
    position: absolute;
    background-image: url(../images/nav-active-purple.svg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    width: 50px;
}

.sidebar li.active img {
    filter: brightness(0) invert(1);
}

/* Theme modal */

.theme-modal .close-btn {
    position: absolute;
    top: -70px;
    right: 0;
    display: inline-block;
    left: 0;
    text-align: center;
    margin: 0 auto;
}

.theme-modal .close-btn img {
    /* background-color: #fff; */
    border-radius: 50%;
}

.theme-modal .modal-heading {
    text-align: center;
    font-weight: bold;
}

.theme-modal .modal-dialog-centered {
    margin-top: 5px;
    margin-bottom: 5px;
    min-height: calc(100% - 10px);
}

.theme-modal .modal-content {
    background: none;
    padding: 70px 0 40px 0;
    border: none;
}

.theme-modal .modal-body {
    background: #fff;
    border-radius: 20px;
}

.theme-modal .modal-body:before {
    background-size: 100% auto;
    width: 70px;
    height: 40px;
    margin: 0 auto;
    left: 0;
    right: 0;
    content: "";
    background-image: url(../images/modal-shape.svg);
    position: absolute;
    top: -30px;
    background-repeat: no-repeat;
}

.theme-form label {
    color: #000;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 8px;
    display: block;
}

.theme-form .form-control {
    background-color: #f4f4f4;
    border-color: #f4f4f4;
    min-height: 38px;
    border-radius: 10px;
}

.theme-form .form-control::placeholder {
    color: var(--lightgrey);
}

.theme-form .form-control:-ms-input-placeholder {
    color: var(--lightgrey);
}

.theme-form .form-control::-ms-input-placeholder {
    color: var(--lightgrey);
}

.theme-form textarea.form-control {
    min-height: 160px;
    resize: none;
}

.theme-form .form-control:focus {
    border: 1px solid #ced4da;
}

.theme-form .form-switch .form-check-input {
    width: 45px;
    height: 22px;
}

/* inner body  */

.main-body {
    min-height: calc(100vh - 90px);
    padding-top: 90px;
    display: flex;
}

.main-body .inner-content {
    width: calc(100% - 280px);
    margin-left: auto;
}

.inner-content {
    display: block;
}

.center-content {
    width: 100%;
    overflow: hidden;
}

.inner-content.have-rightbar {
    display: grid;
    grid-template-columns: 1fr;
}

.right-sidebar {
    position: fixed;
    min-width: auto;
    max-width: 400px;
    z-index: 99;
    width: 100%;
    transform: translateX(400px);
    padding: 10px 12px 0px 12px;
    top: 90px;
    right: 0;
    background: #ededed;
    height: calc(100vh - 90px);
    overflow-y: auto;
    box-shadow: -4px 0px 4px 1px #f1f1f182;
}

.header-field .full-header {
    grid-template-columns: 1fr auto auto minmax(auto, 160px);
}

.right-sidebar.open-notification {
    -webkit-animation: rightslide 0.5s forwards;
    animation: rightslide 0.5s forwards;
}

@-webkit-keyframes rightslide {
    100% {
        transform: translateX(0px);
    }
}

@keyframes rightslide {
    100% {
        transform: translateX(0px);
    }
}

.right-sidebar.close-notification {
    -webkit-animation: rightslide-back 0.5s;
    animation: rightslide-back 0.5s;
}

@-webkit-keyframes rightslide-back {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(400px);
    }
}

@keyframes rightslide-back {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(400px);
    }
}

.right-sidebar .notification-item {
    box-shadow: 0px 0px 30px #00000014;
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 5px;
    text-transform: lowercase;
    padding: 10px;
}

.right-sidebar .notification-item .options-div {
    /* display: grid;
    align-items: center;
    grid-template-columns: auto auto auto; */
    text-align: end;
}

.right-sidebar .notification-item .options-div img {
    width: 18px;
    height: 17px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.right-sidebar .notification-item .options-div span {
    font-size: 10px;
    font-weight: 600;
    color: #000;
}

.right-sidebar .notification-item .options-div .option {
    background-color: transparent;
    padding: 0px;
    display: inline-block;
    border: none;
    text-align: center;
    text-decoration: none;
    margin-left: 9px;
}

/*----------Group page----- */

input.copy-multiple {
    position: absolute;
    right: -5px;
    top: -8px;
}

.add-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
}

.add-btn ul {
    list-style: none;
    margin-bottom: 177px;
    padding: 0;
}

.add-btn ul li + li {
    padding-bottom: 8px;
    text-align: center;
}
.filter-option-heading {
    cursor: pointer;
}
.filter-option-heading:before {
    content: "+";
    color: #000;
    font-size: 31px;
    position: absolute;
    transform: rotate(90deg);
    transition: all 0.6s ease;
    background-color: var(--primary-color);
    color: #fff;
    width: 55px;
    height: 55px;
    right: 2px;
    border-radius: 50%;
    bottom: 20px;
    padding: 4px 1px;
    text-align: center;
    display: inline-block;
}

.filter-option-heading.activeFilter:before {
    display: none;
}

.open-button .filter-option-heading.activeFilter:after {
    content: "X";
    color: #000;
    font-size: 26px;
    transform: rotate(180deg);
    right: 0;
    position: absolute;
    transition: all 0.6s ease;
    background-color: #fff;
    box-shadow: 1px 0px 20px rgb(230 46 234 / 79%);
    color: var(--primary-color);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    bottom: 20px;
    text-align: center;
    border: 2px solid var(--primary-color);
    right: 2px;
    padding: 7px;
    font-weight: 600;
}

.filter-option-content {
    display: none;
    flex-direction: column-reverse;
}

.filter-option-content span {
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.filter-option-content img {
    max-width: 55px;
    width: 100%s;
}

.copy-selct img {
    margin-right: 7px;
}

.orange-btn {
    background-color: #fef8ee;
    color: #f3b64b;
}

.orange-btn:hover {
    background-color: #fef8ee;
    color: #f3b64b;
}

.btn-same {
    height: 42px;
    border-radius: 8px;
    line-height: 24px;
    text-align: center;
    display: inline-flex;
    align-items: center;
}

.btn-same input[type="checkbox"] {
    height: 15px;
    width: 20px;
    background: #fce8fd;
    margin-right: 5px;
}

.copy-selct-d {
    column-gap: 2px;
    display: inline-flex;
}

.orange-btn.copy-selct-d {
    display: inline-block;
}

.orange-btn.copy-selct-d img {
    margin-right: 7px;
}

.c-gap {
    row-gap: 20px;
    display: inline-flex;
}

.combine-in-one {
    display: flex;
    align-items: center;
}

.search-pastebtn {
    /*max-width: 527px;*/
    width: 100%;
    text-align: start;
    justify-content: flex-start;
}

.search-pastebtn {
    width: 320px;
    text-align: start;
    justify-content: flex-start;
}

.filter-option-content li {
    cursor: pointer;
}

.open-button .filter-option-heading.activeFilter:after {
    content: "X";
    color: #000;
    font-size: 22px;
    transform: rotate(180deg);
    right: 0;
    position: absolute;
    transition: all 0.6s ease;
    background-color: #fff;
    box-shadow: 1px 0px 20px rgb(230 46 234 / 79%);
    color: var(--primary-color);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    bottom: 20px;
    text-align: center;
    border: 2px solid var(--primary-color);
    right: 2px;
    padding: 7px;
    font-weight: 600;
    display: inline-block;
}

.open-button .filter-option-heading.activeFilter:after body {
    background: #555;
}

.sort-select {
    border: 1px solid var(--primary-color);
    padding: 6px 10px;
    background-color: #fff;
    border-radius: 5px;
}

.sort-select:focus {
    border: 1px solid var(--primary-color);
    outline: none;
}

.dropdown-toggle:after {
    display: none;
}

.groupitem {
    background: #fff;
    box-shadow: 0px 0px 30px #00000014;
    padding: 20px 14px 20px 14px;
    border-radius: 10px;
}

.group-row,
.reminder-row {
    /* grid-template-columns: repeat(auto-fill, minmax(235px, 1fr)); */
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: auto;
    display: grid;
    grid-gap: 15px;
}

.oneauto-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
}

.dot-drop .dropdown-toggle img {
    width: 5px;
}

.groupitem .btn img {
    height: 15px;
    margin-bottom: 3px;
}

.colorboxes {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 10px;
}

.colorbox {
    position: relative;
    width: 100%;
    height: 80px;
    border-radius: 10px;
}

.colorbox .tickImg {
    display: none;
    height: 40px;
    width: 40px;
    object-fit: contain;
    position: absolute;
    top: calc(50% - 20px);
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
}

.colorbox .tickImg:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9;
    background: #000;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.colorbox input[type="radio"]:checked + .tickImg {
    display: block;
}

.btn-same img {
    height: 13px;
    margin-bottom: 0;
    padding-right: 3px;
    display: inline-flex;
    align-items: center;
}

.btn-same {
    height: 42px;
    border-radius: 8px;
    line-height: 24px;
}

/* underline-pills */

.underline-pills.nav-pills .nav-link {
    border: 0;
    color: #b2b2b2;
    font-size: 18px;
    font-weight: 600;
    padding: 0px 0px 3px 0px;
    border-bottom: 2px solid transparent;
    border-radius: 0px;
}

.underline-pills.nav-pills .nav-link.active,
.underline-pills.nav-pills .show > .nav-link {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.underline-pills.nav-pills .nav-item {
    margin-right: 20px;
}

/*----subgroup--- */

.arrow-back {
    font-size: 24px;
    margin-right: 5px;
}

.snippet-row {
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    grid-auto-rows: auto;
    display: grid;
    grid-gap: 15px;
    margin-top: 50px;
}

.snippetbox {
    border-radius: 10px;
    position: relative;
    box-shadow: 0px 0px 30px #00000014;
}

.upper-snippet {
    height: 150px;
    overflow: hidden;
}

.upper-snippet > p {
    font-size: 14px;
    padding: 20px 20px 20px 10px;
    /* overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical; */
}

.snippetbox img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0px 0px;
}

.snippetbox .snippetname {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 15px 10px 10px;
    border-radius: 0px 0px 10px 10px;
}

.upper-snippet .dropdown-menu {
    margin: -13px 0px 0px -5px !important;
}

.snippetbox .snippet-drop {
    position: absolute;
    padding: 5px 10px 5px 2px;
    border-radius: 0px 0px 2px 10px;
    right: 0;
    font-size: 20px;
    color: #fff;
    bottom: 2px;
}

.snippet-img-upload {
    border-radius: 10px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10px;
}

/* .snippet-img-upload:hover .snippet-add {
    display: flex!important;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff57;
} */

.selected-snipp-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    margin-left: auto;
    margin-right: auto;
}

.no-data {
    display: flex;
    min-height: 300px;
    align-items: center;
    justify-content: center;
}

/* contacts */

.contacts-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    grid-auto-rows: auto;
    display: grid;
    grid-gap: 14px;
}

.contactItem {
    box-shadow: 0px 0px 30px #0000000f;
    padding: 20px 10px 20px 10px;
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.contactImg {
    height: 80px;
    width: 80px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 8px;
}

/* create contact */

.max-400 {
    width: 100%;
    max-width: 400px;
}

.image-upload-block {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.contact-image-upload {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    border: 1px solid var(--primary-color);
    cursor: pointer;
}

.selectedinput-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-upload-block:hover .uploadingText {
    opacity: 1 !important;
}

.image-upload-block .uploadingText {
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    background: #cfcfcf4d;
    align-items: center;
    transition: 0.3s background;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
}

.image-upload-block .uploadingText img {
    opacity: 0.5;
}

.selectedinput-img {
    display: none;
}

/* user profile */

.user-img-upload {
    width: 100px;
    height: 100px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
}

.user-img-upload .uploadingText img {
    width: 28px;
}

.user-profile-img {
    width: 85px;
    height: 85px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
}

.user-profile::before {
    content: "";
    position: absolute;
    display: block;
    width: 0px;
    right: 20px;
    top: 4px;
    border: 10px solid transparent;
    border-top: 0;
    border-bottom: 10px solid #ffffff;
    transform: translate(-50%, calc(-100% - 5px));
}

.user-profile.dropdown-menu {
    box-shadow: 0px 0px 20px #00000012;
    border: none;
    top: 8px !important;
    text-align: center;
    padding: 20px 10px 10px 10px;
    max-width: 320px;
    border-radius: 7px;
    width: 100%;
}

.user-profile .btn-lightpink {
    border-radius: 7px;
    display: flex;
    justify-content: space-between;
}

.user-profile .btn-lightpink {
    border-radius: 7px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin-bottom: 10px;
}

.group-members .contactItem .contactImg {
    width: 65px;
    height: 65px;
}

.group-members .contactItem {
    padding: 25px 10px 20px 10px;
    position: relative;
}

.admin-badge {
    color: var(--primary-color);
    font-size: 10px;
    padding: 3px 6px;
    border-radius: 4px;
    border: 1px solid var(--primary-color);
    position: absolute;
    left: 16px;
    top: 8px;
}

.option-contact {
    position: absolute;
    top: 6px;
    right: 15px;
}

.add-member .form-check {
    position: absolute;
    top: 6px;
    right: 15px;
}

.grid-rem {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* settings */

.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    grid-auto-rows: auto;
    grid-gap: 18px;
}

.settingsItem,
.settingsItem:hover {
    box-shadow: 0px 0px 30px #0000000f;
    padding: 20px 0px 20px 15px;
    border-radius: 15px;
    position: relative;
    color: inherit;
    text-decoration: none;
}

.settingIcon {
    height: 70px;
    margin-bottom: 20px;
    display: block;
}

.setting-arrow {
    display: inline-block;
    position: absolute;
    right: 0;
    top: calc(50% - 38px);
    height: 76px;
}

.setting-arrow img {
    height: 100%;
}

/* auth susciption */

.auth-subscription {
    border: 1px solid var(--primary-color);
    max-width: 1200px;
    background: #fff;
    width: 100%;
    border-radius: 30px;
    margin: 0 auto;
    padding: 20px 20px 20px 20px;
    position: relative;
}

.subsciption-width {
    display: flex;
    margin: 0 auto;
    max-width: 1060px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.subscription-item {
    background-color: #fad5fb;
    padding: 15px 0px 0px 0px;
    text-align: center;
    width: 340px;
    border-radius: 20px;
    overflow: hidden;
}

.fade-border {
    border-image: linear-gradient(
            to right,
            #ffffff0f,
            #ffffff42,
            #ffffff69,
            #f3f3f3d6,
            #ffffff69,
            #ffffff42,
            #ffffff0f
        )
        1;
    border-width: 0.5px;
    border-style: solid;
    display: block;
    margin: 5px 0;
}

.bottom-pink {
    background-image: url(../images/frame-subs.svg);
    background-size: 100% auto;
    color: #fff;
    position: relative;
    padding: 60px 30px 30px 30px;
    z-index: 1;
    margin-top: -13px;
}

.bottom-pink:after {
    bottom: 0;
    position: absolute;
    content: "";
    right: 0;
    left: 0;
    height: 50%;
    width: 100%;
    background: var(--primary-color);
    z-index: -1;
}

.subscription-list li {
    list-style-image: url(../images/subscription-arrow.svg);
    position: relative;
    text-align: left;
}

.subscription-list li:after {
    border-image: linear-gradient(
            to right,
            #ffffff0f,
            #ffffff42,
            #ffffff69,
            #f3f3f3d6,
            #ffffff69,
            #ffffff42,
            #ffffff0f
        )
        1;
    border-width: 0.5px;
    border-style: solid;
    display: block;
    margin: 4px 0;
    content: "";
    opacity: 0.6;
}

.btn-purchase,
.btn-purchase:hover {
    background: #fff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    min-height: 48px;
    display: block;
    max-width: 250px;
    z-index: 9;
    text-align: center;
    line-height: 46px;
    text-decoration: none;
    font-weight: 600;
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0px auto 0px auto;
    border-radius: 30px;
}

.auth-subscription:before {
    content: "";
    width: 260px;
    height: 260px;
    background-image: url(../images/background-bottom.svg);
    background-size: contain;
    top: 15px;
    position: absolute;
    background-repeat: no-repeat;
    left: 15px;
}

.auth-subscription:after {
    content: "";
    width: 260px;
    height: 260px;
    background-image: url(../images/background-top.svg);
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 15px;
    position: absolute;
    right: 15px;
}

/* reminder  row */

.reminder-slider-block {
    padding-left: 60px;
    padding-right: 60px;
    position: relative;
    margin-top: 15px;
    margin-bottom: 25px;
}

.reminderswiper .swiper-slide {
    width: 68px;
}

.reminder-date {
    background-color: #f4f4f4;
    min-width: 68px;
    display: flex;
    flex-direction: column;
    padding: 12px 0;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
    margin-right: 15px;
}

.swiper-slide.swiper-slide-active .reminder-date {
    background: var(--primary-color);
    color: #fff;
}

.swiper-slide.swiper-slide-active-date .reminder-date {
    background: var(--primary-color);
    color: #fff;
}

.reminder-slider-block .swiper-button-next,
.reminder-slider-block .swiper-button-prev {
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    text-align: center;
    padding: 8px;
    /* outline: 3px solid #e62eea2b; */
}

.reminder-slider-block .swiper-button-next:after,
.reminder-slider-block .swiper-button-prev:after {
    font-size: 20px;
}

.reminder-slider-block .swiper-button-next {
    right: 0px;
}

.reminder-slider-block .swiper-button-prev {
    left: 0px;
}

.select-date-block {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.dateswipper {
    height: 150px;
    margin-bottom: 25px;
}

.dateswipper h4 {
    color: var(--dark-grey);
    cursor: pointer;
}

.dateswipper .swiper-slide.swiper-slide-active h4 {
    color: var(--secondary-color);
}

.border-time-right {
    position: relative;
}

.border-time-right:after {
    height: 130px;
    width: 1px;
    top: 38px;
    position: absolute;
    right: 0px;
    content: "";
    border-width: 0;
    border-right: 1px solid;
    border-image: linear-gradient(#cdcdcd, #565656, #cdcdcd) 0 100%;
}

.reminder-item {
    border: 1px solid var(--primary-color);
    padding: 15px 10px 15px 10px;
    display: inline-block;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 0px 30px #00000014;
}

.reminder-item .reminder-img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    /* outline: 4px solid #c691c761; */
    position: relative;
}

.reminder-item .reminder-image {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.reminder-item .reminder-image:before {
    background: var(--primary-light-color);
    content: "";
    position: absolute;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border-radius: 50%;
    left: -5px;
    top: -5px;
}

.reminder-btn-options .btn-transparent img,
.reminder-btn-options .btn-transparent span {
    display: block;
    margin: 0 auto;
    font-size: 12px;
    text-align: center;
}

.reminder-btn-options .btn-transparent img {
    height: 21px;
    margin-bottom: 2px;
}

.reminder-btn-options {
    /* max-width: 190px; */
    max-width: 250px;
    display: flex;
    justify-content: space-around;
    position: relative;
    margin: 0 auto;
    width: 100%;
}

.reminder-btn-options:before {
    border-image: linear-gradient(
            to right,
            #ffffff0f,
            #e62eea3b,
            #e62eea96,
            #e62eea5c,
            #e62eea3b,
            #ffffff0f
        )
        1;
    border-width: 0.1px;
    border-style: solid;
    display: block;
    top: 0px;
    content: "";
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    position: absolute;
}

.reminder-item .type-social img {
    width: 12px;
    height: 16px;
    margin-bottom: 1.5px;
}

/*===reminder-detail========*/

.small-profile {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.remider-details {
    background: var(--theme-gradiant) no-repeat;
    background-size: cover;
    width: 100%;
    background-position: center;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    border-radius: 14px;
}

.details-social li {
    display: inline-block;
    margin-bottom: 3px;
}

.details-social a.icon-link-open {
    background: #f4f4f4;
    border-radius: 60px;
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 41px;
}

.details-social a.icon-link-open.active,
.details-social a.icon-link-open:hover {
    border: 1px solid var(--primary-color);
}

.details-social li img {
    width: 25px;
    height: 25px;
    opacity: 0.3;
}

.details-social a.icon-link-open.active img,
.details-social a.icon-link-open:hover img {
    opacity: 1;
}

.setting-dt a {
    position: absolute;
    right: 20px;
    top: 20px;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 60px;
    display: inline-block;
    line-height: 38px;
}

.setting-dt a img {
    width: 25px;
    height: 25px;
}

.tags-show-customer li {
    display: inline-block;
    background: #fff3fb 0% 0% no-repeat padding-box;
    border-radius: 15px;
    padding: 5px 14px;
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--primary-color);
}

/* .tags-show-customer li:nth-child(3n+3) {
    color: #ff8181;
} */

.text-orange {
    color: #ff8181;
}

.scheduled-box {
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    padding: 12px 10px;
    min-height: 150px;
}

.top-text {
    display: grid;
    grid-template-columns: auto 130px;
    gap: 10px;
}

.edit-icon-chat button {
    margin-right: 9px;
}

/* create reminder */

.max-500 {
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
}

.social-reminder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.social-reminder .social-check {
    background: #f4f4f4;
    border: 1px solid #f4f4f4;
    width: 50px;
    height: 50px;
    box-shadow: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2px;
}

.social-reminder .social-check:hover {
    background: #e7e7e7;
    box-shadow: none;
}

.btn-check:active + .social-check,
.btn-check:checked + .social-check,
.social-check.active,
.social-check.dropdown-toggle.show,
.social-check:active {
    border: 1px solid var(--primary-color);
    box-shadow: none;
}

.social-reminder .social-check img {
    height: 28px;
    width: 28px;
}

/* select nippet */

.select-snippet {
    position: absolute;
    padding: 6px 1px 6px 10px;
    top: 0;
    border-radius: 0px 0px 0px 10px;
    right: 0;
    background: #ffffff82;
    font-size: 17px;
}

/*share modal css*/

.share-box {
    border: 1px solid #f4f4f4;
    background-color: #f5f7f9;
    text-align: left;
    border-radius: 10px;
}

.social li {
    list-style: none;
    margin-right: 20px;
    margin-bottom: 5px;
    min-width: 60px;
}

.social a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.list-item span {
    font-size: 14px;
    color: #000000;
    text-align: left;
    letter-spacing: 0px;
    text-transform: lowercase;
    word-break: keep-all;
}

.social .list-item img {
    list-style: none;
    display: block;
    width: 38px;
    height: 38px;
    margin-bottom: 2px;
}

/* faq page */

.faq-section .accordion-button {
    background-color: #f4f4f4;
    color: #000000;
    padding: 10px;
    border-radius: 10px;
}

.faq-section .accordion-item {
    margin-bottom: 10px;
    border: 1px solid #f4f4f4;
    border-radius: 10px 10px;
}

.faq-section .accordion-button:not(.collapsed) {
    box-shadow: none;
    border-color: none;
    background-color: #e62eea;
    color: #ffffff;
    border-radius: 10px 10px 0 0;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.faq-section .accordion-button:focus {
    box-shadow: none;
}

.selecting-arrow i {
    position: absolute;
    right: 7px;
    top: 2px;
    padding: 8px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    pointer-events: none;
}

/* sweet alert  */

.sweet-alert button {
    background-color: #e62eea1c !important;
    color: var(--primary-color);
    margin-top: 10px;
}

.sweet-alert h2 {
    font-size: 26px;
}

.swal-button.swal-button--confirm {
    background-color: #e62eea1c !important;
    color: var(--primary-color);
    margin-top: 0px;
    box-shadow: none;
}

.swal-title {
    color: var(--secondary-color);
}

.swal-text {
    font-weight: 500;
    color: var(--secondary-color);
}

.swal-text:first-child {
    margin-top: 30px;
    font-size: 22px;
    font-weight: 500;
    color: var(--secondary-color);
}

.swal-button--cancel,
.swal-button--cancel:focus {
    box-shadow: none;
}

.swal-button-container {
    margin: 5px auto;
    display: block;
    text-align: center;
    position: relative;
}

.warning-swal .swal-button-container {
    margin: 5px;
    display: inline-block;
    position: relative;
}

/* referral */

.referance-box {
    background-image: url(../images/bg-referral.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    padding: 40px 0px 0px 24px;
}

.rewards-info {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 20px 0px;
    border-bottom: 1px solid #ccc;
}

/* inner search field */

.inner-search-block {
    max-width: 400px;
    width: 100%;
    gap: 5px;
}

.inner-search-field {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.inner-search-field .form-control {
    background: #f4f4f4;
    border: 1px solid #f4f4f4;
    border-radius: 35px;
    min-height: 46px;
    padding-left: 42px;
    text-transform: lowercase;
}

.inner-search-field .searchicon {
    position: absolute;
    height: 17px;
    left: 17px;
    top: 14px;
    object-fit: contain;
}

.inner-search-block .filter-search {
    border: none;
    border-radius: 5px;
    padding: 5px 10px 8px 10px;
    background: var(--primary-light-color);
}

.logo-home {
    height: 80px;
    object-fit: contain;
}

.f-20-label {
    font-size: 20px !important;
    margin: 0px;
}

.img-19 {
    height: 19px;
    object-fit: contain;
}

.auth-btn.btn-pink,
.auth-btn.btn-pink:hover,
.auth-btn.btn-pink:focus {
    min-height: 49px;
    font-size: 17px;
}

/* pills design */

.bubble-pills .nav-link {
    display: inline-block;
    border-radius: 30px;
    padding: 5px 14px;
    font-size: 16px;
    margin-bottom: 0px;
    margin-right: 6px;
    color: #fff;
}

.border-span {
    opacity: 0;
    display: block;
    width: calc(100% - 6px);
    height: 3px;
    margin-top: 2px;
    margin-bottom: 5px;
}

.bubble-pills.nav-pills .nav-link.active + .border-span,
.bubble-pills.nav-pills .show > .nav-link + .border-span {
    opacity: 1;
}

.contactItem .dot-drop {
    position: absolute;
    top: 10px;
    right: 12px;
    z-index: 1;
}

.contactItem .dot-drop .dropdown-toggle img {
    width: 4px;
}

.full-header a.userprofile img {
    border: 1px solid var(--primary-color);
}

.image-clickselect {
    max-width: 200px;
    border-radius: 100%;
    display: inline-block;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--primary-color);
}

.image-clickselect .selected-snipp-img {
    border-radius: 100%;
    object-fit: cover;
    object-position: center;
    margin-bottom: 0px;
}

.image-clickselect .snipt-img {
    position: absolute;
    top: 0;
    bottom: 0;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    left: 0;
    right: 0;
}

.tagVal img {
    width: 9px;
    margin-left: 2px;
    position: relative;
    margin-top: -3px;
    cursor: pointer;
    right: -5px;
}

.notification-toggle-btn {
    cursor: pointer;
}

.animate-0 {
    -webkit-animation: none;
    animation: none;
    transform: translateX(400px);
    opacity: 0;
}

input[type="date"].input-absolute::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

/* password- toggle*/

.icon-input {
    position: relative;
}

.icon-input .password-toggle {
    position: absolute;
    top: 14px;
    color: #777;
    right: 12px;
    cursor: pointer;
    font-size: 14px;
}

.icon-input .form-control {
    padding-right: 40px;
}

.icon-input.with-label .password-toggle {
    position: absolute;
    top: 12px;
}

/* notifiaction count */

.notification-toggle-btn {
    position: relative;
}

.notification-count {
    color: #fff;
    line-height: 20px;
    width: 20px;
    right: -13px;
    display: inline-block;
    font-size: 10px;
    border-radius: 50%;
    height: 20px;
    position: absolute;
    overflow: hidden;
    top: -4px;
    background: #000;
    text-align: center;
}

.invite-column {
    flex-direction: column;
    position: absolute;
    right: 0;
    left: 0;
    width: 100%;
}

.subscriptionslider .swiper-slide {
    max-width: 340px;
    min-width: 340px;
}

.subscriptionslider .swiper-container {
    max-width: 350px;
}

.subscriptionslider .swiper-button-next,
.subscriptionslider .swiper-button-prev {
    top: calc(50% - 22px);
}

.subscriptionslider .swiper-wrapper {
    justify-content: center;
}

.subscriptionslider .swiper-button-disabled {
    display: none;
}

.subscriptionslider .swiper-button-next,
.subscriptionslider .swiper-button-prev {
    color: #000;
}

.country-dropdown .niceCountryInputSelector {
    position: relative;
    cursor: pointer;
}

.country-dropdown .niceCountryInputMenuDropdown {
    display: none;
}

.country-dropdown .niceCountryInputMenuFilter input {
    width: 100%;
    border-radius: 5px;
    outline: none;
    min-height: 34px;
    padding: 6px;
    border: 1px solid #aaa;
}

.country-dropdown .niceCountryInputMenu {
    padding-top: 7px;
    padding-bottom: 7px;
}

.country-dropdown .niceCountryInputMenuCountryFlag {
    margin-right: 6px;
    height: 17px;
    margin-top: -2px;
}

.country-dropdown .niceCountryInputMenuDropdownContent {
    position: absolute;
    z-index: 99;
    max-height: 260px;
    background: #f4f4f4;
    overflow-y: auto;
    padding: 10px;
    width: 100%;
    left: 0;
    right: 0;
}

.country-dropdown .niceCountryInputMenuDropdownContent a {
    display: block;
    padding: 3px 5px;
    width: 100%;
}

.country-dropdown .niceCountryInputMenuDropdownContent a:hover {
    background-color: #efe1f3ad;
}

.select-input {
    position: relative;
}

.select-input:after {
    display: inline-block;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    width: 8px;
    height: 8px;
    transform: rotate(-315deg);
    content: "";
    pointer-events: none;
    right: 14px;
    top: 20px;
    position: absolute;
}

.centerlogo {
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
    display: block;
    z-index: -2;
    position: absolute;
}

.centerlogo img {
    height: 46px;
    max-width: 130px;
    object-fit: contain;
}

.side-toggle {
    z-index: 99;
}

/* custom slider reminder===== */

.custom-slider-btn {
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    text-align: center;
    padding: 8px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border: none;
}

.custom-slider-btn:after,
.custom-slider-btn:after {
    font-family: swiper-icons;
    font-size: 20px;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}

.custom-slider-btn.prev-custom::after {
    content: "prev";
}

.custom-slider-btn.next-custom::after {
    content: "next";
}

.custom-slider-btn.disabled,
:disabled.custom-slider-btn {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

.reminder-custom-block {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-gap: 8px;
    align-items: center;
}

.custom-slider-wrapper {
    display: flex;
}

.active-date {
    background: var(--primary-color);
    color: #fff;
}

.custom-slider-wrapper {
    display: flex;
    overflow-x: auto;
}

.upper-snippet {
    scrollbar-width: thin;
    overflow-y: auto;
    scrollbar-color: #fff #fff;
}

.upper-snippet::-webkit-scrollbar {
    width: 5px;
}

.upper-snippet::-webkit-scrollbar {
    height: 10px;
}

.upper-snippet::-webkit-scrollbar-track {
    background: #fff;
}

.upper-snippet::-webkit-scrollbar-thumb {
    background-color: #fff;
    border-radius: 20px;
    border: 3px solid #fff;
}

.upper-snippet {
    overflow-y: auto;
}

.no-break {
    word-break: keep-all;
}

.share-box img {
    height: 300px;
    width: 100%;
    object-fit: contain;
}

.all--tab {
    display: inline-block;
    border-radius: 30px;
    padding: 5px 14px;
    font-size: 16px;
    margin-bottom: 0px;
    margin-right: 6px;
    color: #fff;
    border: none;
}

img.edit-image-snippet.selected-snipp-img {
    width: 170px;
    height: 170px;
}

/***manage **/

.plan-details {
    display: grid;
    grid-template-columns: 1fr 50px;
}

.text-lightblue {
    color: #04047c;
}

.skyblue-text {
    color: #03a1fd;
}

.card.card-mangement {
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    padding: 15px 15px;
    box-shadow: 0px 0px 30px #0000000f;
    background: #fff;
    min-height: 160px;
}

.card.card-mangement.active {
    outline: 2px solid #b07afe;
    outline-offset: 2px;
}

.card.card-mangement .small-flag {
    max-width: 20px;
}

.equal-content-height {
    min-height: 50px;
}

/**sign-up**/

.inner-sign-up {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 100vh;
    align-items: center;
}

.inner-sign-up:before {
    content: "";
    background: url(../images/banner-login.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    position: absolute;
    width: 50%;
    z-index: -1;
    background-position: bottom center;
}

.text-bluedark {
    color: #1d3676;
}

.grow-inner {
    max-width: 400px;
    margin: 0 auto;
}

.subscribe-word,
.grow-inner {
    min-height: 60vh;
    height: 100%;
}

.login-sign-input {
    border-radius: 30px;
    text-align: center;
    height: 49px;
    font-size: 20px;
    color: #000;
    border: 0px;
}

.login-sign-input::-webkit-input-placeholder {
    /* Edge */
    color: #dbdbdb;
    font-weight: normal;
}

.login-sign-input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #dbdbdb;
    font-weight: normal;
}

.login-sign-input::placeholder {
    color: #dbdbdb;
    font-weight: normal;
}

.f11-size {
    font-size: 11px;
}

.mobile-lkist {
    font-size: 14px;
    column-gap: 20px;
    padding-left: calc(40% - 30px);
    line-height: 26px;
}

.aap-store img {
    max-width: 100px;
}

.grow-inner .password-toggle {
    position: absolute;
    top: 14px;
    color: #777;
    right: 12px;
    cursor: pointer;
    font-size: 14px;
}

@media (max-width: 1200px) {
    .upper-main-section {
        width: 250px;
        height: 290px;
        margin: 2px auto !important;
        position: absolute;
        bottom: 6em;
        left: 7px;
        right: 7px;
    }
}

@media (max-width: 992px) {
    .inner-sign-up h4 {
        font-size: 20px;
    }
    .mobile-lkist {
        font-size: 14px;
        column-gap: 20px;
        padding-left: calc(40% - 40px);
        line-height: 26px;
    }
}

@media (max-width: 767px) {
    .inner-sign-up:before {
        width: 100%;
    }
    .snippet-btn-spn {
        display: none;
    }
}

.add-icon-profile {
    position: relative;
}

.add-icon-profile .icon-file-text {
    width: 18px;
    height: 18px;
    object-fit: contain;
    position: absolute;
    top: 43px;
    left: 9px;
    z-index: 99;
}

.add-icon-profile .form-control {
    padding-left: 41px;
}

/* 21-nov */

.snippetbox img {
    height: 30px;
    width: 30px;
    object-fit: contain;
    border-radius: 10px 10px 0px 0px;
    padding-right: 10px;
}

.country-dropdown img.icon-file-text {
    width: 20px;
    height: 20px;
    position: relative;
    top: 29px;
    z-index: 9;
    left: 10;
}

.upper-snippet.showdescription img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    padding-right: 0px;
}

button.btn-lightpink.btn-same.btn.px-4 {
    /* margin-top: -8px; */
    height: 46px;
}

.contactnamepos {
    position: relative;
    background-color: #9c9c9c;
    margin: 0px auto;
}

span.contactshort {
    font-size: 37px;
    font-weight: 500;
    position: absolute;
    right: 50%;
    top: -17px;
    color: white;
    transform: translate(50%, 50%);
}

span.allremindershort.contactshort {
    top: -34px;
}

span.uppercase-contactshort {
    font-size: 26px;
    position: absolute;
    right: 50%;
    top: -4px;
    color: white;
    transform: translate(50%, 50%);
}

span.uppercase-contactshortdetails {
    font-size: 26px;
    position: absolute;
    right: 50%;
    top: 20px;
    color: white;
    transform: translate(50%, 50%);
}

span.allremindershort.uppercase-contactshort {
    top: -14px;
}

span.remdetails.contactshort {
    top: 15px;
}

button.option.snooze {
    margin-right: 7px;
}

.filter-white {
    filter: brightness(0.9) invert(1);
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.light-left-border {
    max-width: 200px;
    margin: 0 auto;
    display: flex;
}

p.mb-0.one-line-content {
    margin-right: 11px;
}

.edit-icon-chat img,
.social-check-facebook img {
    width: 20px;
    object-fit: contain;
}

a.reminder-btn-cus {
    color: #000;
    text-decoration: none;
}

.wordlimit-cus {
    word-break: break-word;
}

.type-social {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.img-div-bg {
    position: relative;
    background: #9c9c9c !important;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    width: 55px;
    height: 55px;
}

/* .circle-dt {
    width: 60px;
    margin: 0 auto;
    background: #9c9c9c;
    overflow: hidden;
    border-radius: 50%;
    height: 60px;
    border: 2px solid #fff;
} */

.circle-dt {
    width: 82px;
    margin: 0 auto;
    background: #9c9c9c;
    overflow: hidden;
    border-radius: 50%;
    height: 82px;
    border: 2px solid #fff;
}

.circle-dt .small-profile {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    object-fit: cover;
    clip-path: inset(1px 1px);
    border: 0px;
}

/****30 december new sign ***/

.inner-sign-new {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 100vh;
    align-items: center;
}

.inner-sign-new:before {
    content: "";
    background: url(../images/back-2.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    position: absolute;
    width: 50%;
    z-index: -1;
    right: 0px;
    background-position: bottom center;
}

.text-blackdark {
    color: #000;
}

.grow-inner {
    max-width: 400px;
    margin: 0 auto;
}

.subscribe-word,
.grow-inner {
    min-height: 60vh;
    height: 100%;
}

.input-new-sign {
    border-radius: 30px;
    text-align: center;
    height: 49px;
    font-size: 17px;
    color: #000;
    border: 0px;
    background: transparent;
    border: 1px solid #a0a0a0;
}

.input-new-sign::-webkit-input-placeholder {
    /* Edge */
    color: #a0a0a0;
    font-weight: normal;
}

.input-new-sign:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #a0a0a0;
    font-weight: normal;
}

.input-new-sign::placeholder {
    color: #a0a0a0;
    font-weight: normal;
}

.f11-size {
    font-size: 11px;
}

.column-btn-count {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 10px;
    align-items: center;
    padding-bottom: 33px;
    padding-top: 24px;
}

.column-btn-count small {
    font-size: 11px;
}

.spacing-top {
    padding-top: 20px;
}

.redeem-btn {
    min-height: 49px;
    font-size: 24px;
    border-radius: 30px;
    padding: 10px 15px;
    color: #fff;
    background: #000;
    font-weight: 700;
}

.btn-grey-count {
    background: #a6a6a6;
    border-radius: 50px;
    padding: 10px 15px 5px;
    color: #fff;
}

.btn-pink-count {
    border-radius: 50px;
    padding: 10px 15px 5px;
    color: #fff;
}

.count-btn h5 {
    line-height: 17px;
}

.switch-toggle-round {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 28px;
}

.switch-toggle-round input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-toggle-round .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.switch-toggle-round .slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 25px;
    left: 5px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.switch-toggle-round input:checked + .slider {
    background-color: #e62eea;
}

.switch-toggle-round input:focus + .slider {
    box-shadow: 0 0 1px #2196f3;
}

.switch-toggle-round input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */

.switch-toggle-round .slider.round {
    border-radius: 34px;
}

.switch-toggle-round .slider.round:before {
    border-radius: 50%;
}

.logo-white-genie {
    max-width: 200px;
}

.snppt-width {
    max-width: 450px;
    margin-left: auto;
}

.price-word-app {
    width: 520px;
    margin: 0 auto;
}

.desktop-list-view {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    font-size: 14px;
}

.inner-mobile-laptop img {
    max-width: 60%;
    margin: 0 auto;
    text-align: center;
    display: block;
    /* padding-top: 80px; */
}

.inner-logo-text {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font-family);
    color: #e4d4ff;
    margin: 0 auto;
    text-align: center;
}

.login-mobile-button {
    padding: 4px 24px 4px 24px;
    background-color: #fff;
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 22px;
    font-weight: bold;
    border: none;
}

.login-starter-button {
    padding: 4px 24px 4px 24px;
    background-color: transparent;
    color: #fff;
    border-radius: 30px;
    font-size: 22px;
    font-weight: bold;
    border: 2px solid #fff;
}

.growth-inner-list li {
    list-style-type: none;
    gap: 20px;
    color: #fff;
    font-size: 16px;
}

.line-color {
    background-color: #fff;
    color: #fff;
    opacity: 0.4;
    height: 2px;
}

.list-logo-img {
    width: 50px;
}

.list-head {
    width: 300px;
}

img.del-img {
    position: absolute;
    width: 40px;
    height: 40px;
    object-fit: contain;
    top: -16px;
    right: -8px;
}

.grow-inner,
.price-word-app {
    padding-top: 40px;
    padding-bottom: 40px;
    margin: 0 auto;
}

@media (max-width: 1080px) {
    .price-word-app {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .inner-sign-new h4 {
        font-size: 20px;
    }
    .grow-inner,
    .price-word-app {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
    .price-word-app {
        width: 100%;
    }
    .grow-inner h4,
    .grow-inner p,
    .grow-inner h6,
    .grow-inner a {
        color: #fff;
    }
    .input-new-sign {
        border: 1px solid #fff;
        color: #fff;
    }
    .inner-sign-new:before {
        width: 100%;
    }
    .btn-pink-count {
        background: #fff;
        color: #000;
    }
    .btn-grey-count {
        color: #000;
    }
    .switch-toggle-round input:checked + .slider {
        background-color: #000;
    }
    .input-new-sign::-webkit-input-placeholder {
        /* Edge */
        color: #fff;
        font-weight: normal;
    }
    .input-new-sign:-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        color: #fff;
        font-weight: normal;
    }
    .input-new-sign::placeholder {
        color: #fff;
        font-weight: normal;
    }
    .inner-content-text {
        color: #fff;
    }
}

@media (max-width: 767px) {
    .inner-sign-new:before {
        width: 100%;
    }
    .price-word-app {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .inner-sign-new h4 br {
        display: none;
    }
    .column-btn-count {
        display: grid;
        grid-template-columns: auto;
    }
    .btn-grey-count {
        width: 100%;
    }
    .switch-toggle-round {
        position: relative;
        margin: 0 auto;
        display: block;
    }
}

.custom-btn-pink {
    background: var(--primary-color) !important;
}

.tabs-custom {
    display: grid;
    grid-template-columns: auto auto;
    gap: 20px;
}

.contact-tab {
    font-weight: 700;
    cursor: pointer;
}

.contact-tab.active,
.contact-tab.active:hover,
.contact-tab:active {
    border-bottom: 2px solid var(--primary-color) !important;
}

.search-snip-cus {
    width: 100%;
    max-width: 305px;
}

/* 17-jan-2023 */

.share-box-modal textarea {
    height: 400px !important;
    background: none !important;
    border: none !important;
}

.share-box-modal textarea:focus {
    border: none !important;
}

.share-box-modal textarea:focus-visible {
    border: none !important;
}

/* 18-jan-video-callsection  */

.main-video-section {
    width: 100%;
    height: auto;
    position: relative;
}

.main-video-section iframe {
    width: 800px;
    height: 450px;
}

.main-button-section {
    display: flex;
    justify-content: center;
    gap: 80px;
    position: absolute;
    margin: 0px auto !important;
    bottom: 16%;
    left: 7%;
}

.modal-header .custom-btn-close {
    padding: 0.5rem 0.5rem;
    margin: -0.5rem -2.9rem -0.5rem auto;
    color: #000;
}

.custom-modal-content {
    background: none !important;
    border: none;
}

.custom-modal-header {
    border-bottom: none !important;
}

.main-video-buttons-1 {
    background: #fff;
    border-radius: 100px;
    padding: 5px 20px;
    width: 300px;
    height: 90px;
}

.main-video-buttons-1 img {
    width: 24%;
    height: auto;
}

.main-video-buttons-1 h4 {
    font-weight: 600;
    color: #000;
    margin-bottom: 0px;
    font-size: 22px;
}

/* small-video-section  */

.small-video-section {
    width: 100%;
    height: auto;
    position: relative;
}

.small-video-section iframe {
    width: 250px;
    height: 200px;
}

.small-button-section {
    display: flex;
    justify-content: start;
    position: relative;
    top: 0px;
    gap: 4px;
}

.small-video-buttons-1 {
    background: #f4f6f8;
    border-radius: 100px;
    width: 122px;
    height: 42px;
    padding: 5px 3px;
}

.small-video-buttons-1 img {
    width: 28%;
    height: auto;
}

.small-video-buttons-1 p {
    font-weight: 600;
    color: #000;
    margin-bottom: 0px;
    font-size: 9px;
}

.upper-main-section {
    width: 250px;
    height: 290px;
    margin: 12em auto;
}

ul.custom-listed {
    position: relative !important;
}

.main-user-text {
    padding: 4px 4px;
}

.main-user-text .main-user-cont {
    font-size: 8px;
    font-weight: 600;
    color: #000;
}

.upper-main-section {
    width: 250px;
    height: 290px;
    margin: 2px auto !important;
    position: absolute;
    bottom: 6em;
    left: 7px;
    right: 7px;
}

.custom-second-btn {
    padding: 0.5em 0em !important;
}

input.archive {
    accent-color: var(--primary-color);
}

/* 04-jan */

.inner-column-content {
    border: 1px solid darkgray;
    text-align: center;
    width: 130px;
    height: auto;
    border-radius: 14px;
}

.main-head-text {
    background: #000;
    color: #fff;
    font-weight: bold;
    width: 100px;
    height: 30px;
    /* border-radius: 25px 20px 20px 25px; */
    border-radius: 25px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -15px;
    left: 6px;
}

.main-head-text p {
    margin: 0px auto;
    font-size: 15px !important;
}

.inner-column-content p {
    font-size: 11px;
}

.inner-content-text {
    font-weight: 700;
    font-size: 12px !important;
}

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

.inner-content-text sup {
    font-size: 14px;
}

sub.inner-sub {
    margin-left: -22px;
}

.inner-unl-text {
    font-size: 13px;
    color: #41cfff;
    margin-bottom: 0;
}

.inner-unl-text-3 {
    font-size: 13px;
    color: #41cfff;
    margin-top: 0px;
    margin-bottom: 10px;
}

.inner-head-text {
    font-weight: 900;
    color: #e62eea;
    font-size: 13px;
}

.column-circle {
    border-radius: 50%;
    border: 8px solid gray;
    margin: 2px auto;
    width: 30px;
    height: 30px;
    display: inline-block;
}

.column-circle.active {
    border: 8px solid #e62eea;
}

.inner-column-content.active {
    border: 1px solid #e62eea;
}

.price-num {
    font-size: 24px;
}

.price-cent {
    font-size: 12px;
    vertical-align: top;
}

.price-month {
    font-size: 10px;
    margin-left: -26px;
}

.span-hidden {
    display: none;
}

@media (max-width: 450px) {
    .sub-btns-spn {
        display: none !important;
    }
    .span-hidden {
        display: block;
    }
    .remove-btns {
        display: none;
    }
}

@media (max-width: 400px) {
    .inner-sign-up h4 br {
        display: none;
    }
    .mobile-lkist {
        padding-left: 45px;
    }
    .main-head-text {
        width: 80%;
    }
    .main-head-text p {
        font-size: 12px !important;
    }
    .search-snip-cus {
        width: 100%;
        max-width: 145px !important;
    }
    .span-hidden {
        font-size: 10px;
    }
    .spn-subgrp {
        font-size: 10px;
    }
    .btn-same img {
        height: 10px;
    }
}

/* 10feb */

input.custom-check {
    accent-color: var(--primary-color);
}

input[type="checkbox"] {
    height: 20px;
    width: 20px;
}

input[type="checkbox"]:hover {
    opacity: 1;
}

input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    opacity: 1;
}

input[type="checkbox"]:before {
    width: 4px;
    height: 10px;
}

.inner-start-text {
    color: #000;
    font-weight: bolder !important;
    font-size: 18px;
}

/* 7 march */

.list-logo-img.list-logo-img {
    text-align: center;
    margin: auto;
}

.price-word-app {
    width: 602px;
}

.inner-mobile-button {
    gap: 6px;
}

/* subscription page */

.subscript-inner-col {
    gap: 20px;
}

.subscript-text-ltd {
    font-weight: bold;
    color: #5cd5ff;
    font-size: 18px !important;
    min-height: 50px;
    text-transform: lowercase;
}

.color-ltd {
    color: #000;
    /* margin: 0px auto 2px auto !important; */
    margin: 6px auto 6px auto !important;
    min-height:66px;
}

.subscript-inner-col .price-num {
    font-size: 36px;
}

.subscript-inner-col .inner-content-text sup {
    font-size: 16px;
    vertical-align: middle;
}

.subscript-inner-col .inner-column-content {
    padding: 21px 0px !important;
    width: 164px;
}

.upsub-btn {
    color: #fff;
    /* border-radius: 18px; */
    border-radius: 28px;
    border: none;
    font-size: 14px;
    font-weight: 700;
    /* width: 100px; */
    /* height: 36px; */
    width: 120px;
    height: 50px;
}

/* .plan-btn-sub {
    padding: 4px 21px;
} */

/* .plan-btn-sub {
    width: 140px;
    height: 36px;
} */
.plan-btn-sub {
    width: 120px;
    height: 50px;
}

.subscript-inner-col .inner-content-text {
    color: #000 !important;
}

.sub-growth-list {
    background-image: linear-gradient(to right, #9645fe, #697fff);
    width: 540px !important;
    border-radius: 14px;
}

.upgrade-heading-cus {
    text-align: start;
    display: inline-block;
}

.upgrade-heading-cus p {
    font-size: 24px;
    margin-bottom: 0;
    font-weight: bold;
    color: var(--primary-color);
}

.subscription-main {
    margin-left: 57px;
}

p.subscript-text-ltd {
    width: 112px;
    /* margin: 0px auto 20px auto; */
    margin: 24px auto 24px auto;
}

.sub-growth-list .list-logo-img img {
    width: 30px;
}

.sub-growth-list .login-starter-button {
    margin-right: 16px;
}

.payment-col-sub .card.card-mangement {
    min-height: 60px !important;
}

.payment-card-sub .card.card-mangement p a {
    font-size: 17px;
}

.payment-col-sub {
    width: 65%;
}

.edit-icon-chat input {
    width: 16px !important;
    height: 16px !important;
    position: relative;
    top: 3px;
}

.filter-search {
    border: none;
    border-radius: 5px;
    /* padding: 0px 0px 0px; */
    width: 40px;
    background: #e62eea0d;
    height: 42px;
    text-align: center;
    padding: 0px 2px;
}

.payment-col-subs {
    width: 100% !important;
}

.card-mangement-new {
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    padding: 15px 15px;
    box-shadow: 0px 0px 30px #0000000f;
    background: #fff;
    min-height: 160px;
    width: 545px !important;
}

.search-pastebtn {
    max-width: 527px;
    width: 100%;
    text-align: start;
    justify-content: flex-start;
}

@media (max-width: 586px) {
    .card-mangement-new {
        width: auto !important;
    }
    /* .cus-inner-col {
        width: auto !important;
    } */
    .new-sub-col {
        gap: 5px !important;
    }
    .plan-btn-sub {
        width: 96px;
        height: 36px;
    }
    .search-snip-cus {
        width: 100%;
        max-width: 205px;
    }
    .search-pastebtn {
        text-align: start;
        justify-content: flex-start;
    }
}

.btn-dark-pk {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

.btn-dark-gr {
    color: #000 !important;
    background: #f4f4f4;
}

/* .dots-num {
    background: #ffc107;
    padding: 0px 8px;
    border-radius: 50%;
    position: absolute;
    top: -18px;
    display: inline-block;
    font-size: 14px;
    text-align: center;
    right: -4px;
} */

.dots-num {
    background: #ffc107;
    border-radius: 3em;
    -moz-border-radius: 3em;
    -webkit-border-radius: 3em;
    color: #000;
    opacity: 1;
    height: 1.8em;
    width: 1.8em;
    display: inline-block;
    font-size: 11px;
    line-height: 20px;
    text-align: center;
    position: absolute;
    top: -18px;
    right: 2px;
}

/* 15-23 */

.login-starter-button-new {
    padding: 4px 16px 4px 16px;
    background-color: transparent;
    color: #fff;
    border-radius: 30px;
    font-size: 22px;
    font-weight: bold;
    border: 2px solid #fff;
}

.login-mobile-button-new {
    padding: 4px 16px 4px 16px;
    background-color: #fff;
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 22px;
    font-weight: bold;
    border: none;
}

.list-logo-img-new {
    margin: 0px 45px !important;
    width: 30px;
}

.list-head-new {
    width: 315px !important;
}

.list-logo-img-cus {
    width: 30px;
    margin: 0px 45px !important;
}

.price-cent {
    font-size: 16px;
    vertical-align: top;
    font-weight: 900;
    position: absolute;
    top: 11px;
    right: 74px;
}

.vid-body {
    margin: 0px auto;
}

.dollar-signn {
    position: absolute;
    top: 11px;
    left: 35px;
    font-size: 15px;
}

.new-dollar-signn {
    left: 25px;
}

.cus-new-price {
    right: 64px;
}

.black-link {
    color: #000 !important;
}

@media screen and (min-width: 600px) and (max-width: 992px) {
    .custom-scroll {
        overflow-x: hidden !important;
    }
}

input.copy-multiple {
    position: absolute;
    right: 0 !important;
    top: 0 !important;
    z-index: 1;
}

.folder_icon img {
    max-width: 50px;
    height: 50px;
    margin-bottom: 12px;
}
.folder_icon svg {
    max-width: 69px;
    height: 69px;
    margin-bottom: 12px;
}
.create_btn_dynamic {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.create_btn_dynamic .btn-same img {
    margin-top: 0px !important;
}

.share_btn_custom .share-link {
    font-weight: 700;
    border-radius: 12px !important;
}

.share_btn_custom .share-boxx {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fw-bolder {
    font-weight: bolder;
}

/* update */

/* .img-relative {
    min-height: 150px !important;
    resize: none;
    overflow-y: scroll;
} */

.dymaic-wordapi-data {
    -ms-overflow-style: none;
    scrollbar-width: 2px;
}

.dymaic-wordapi-data {
    max-height: 300px;
    overflow-y: scroll;
}

.add-btn ul {
    list-style: none;
    margin-bottom: 75px !important;
    padding: 0;
}

.btn-option {
    background: transparent;
    border: 5px;
    padding: 8px 16px;
    margin: auto;
    border: 1px solid #c3c3c3;
    border-radius: 5px;
    margin: 20px auto;
    font-size: 14px;
}

.theme-form textarea.form-control {
    resize: none;
    min-height: 140px !important;
    overflow-y: scroll;
}

.img-relative textarea.form-control.dynamic_textarea_name {
    padding-right: 25px !important;
}

.upper-snippet {
    height: 155px;
    overflow: hidden;
}

.given-height {
    max-height: 50px;
    overflow: hidden;
    min-height: 50px;
}

/* .oneauto-grid.mb-3{
    min-height: 50px;
} */

/* 24/04/2023 */

.combine-in-one {
    display: flex;
    align-items: center;
    width: 80%;
    flex: unset;
    justify-content: end;
    align-items: center;
}

.search-pastebtn {
    /* max-width: 30% !important; */
    width: 100%;
    text-align: start;
    justify-content: flex-end;
}

.search-snip-cus {
    width: 100%;
    max-width: 355px !important;
}

.combine-in-one {
    text-align: end;
    display: inline-flex !important;
}

.theme-form textarea.form-control.prompt-text {
    min-height: 70px !important;
}

::-webkit-scrollbar {
    width: 5px;
}

/* Track */

::-webkit-scrollbar-track {
    background: #f1f1f1;
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

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

.btn-same.gap-text {
    height: 42px;
    border-radius: 8px;
    line-height: 24px;
    column-gap: 5px;
}

.folder_dot {
    display: grid;
    grid-template-columns: 1fr 21px;
    align-items: initial;
}

.create_snippet_magic img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* 24/04/2023 */

img.magic-img {
    width: 100%;
    max-width: 64px;
}

.loader-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.btn-option {
    display: inline-flex;
    align-items: center;
    margin: 20px 0;
}

.butn-hide {
    margin-left: 5px;
}

button.btn.btn-same.orange-btn.copy-selct.me-1.create-snippet.cancel-selct.align_cancel {
    display: inline-flex;
    align-items: center;
    padding-right: 20px;
}

button.btn.btn-same.btn-lightpink.me-1.create-snippet.copy-selct.input-selct-all.align_cancel {
    width: 100px;
}

button.btn.btn-same.btn-lightpink.me-1.create-snippet.copy-selct.copy-multiple-data {
    width: 150px;
}

button.btn.btn-same.btn-lightpink.me-1.create-snippet.move-selct.orange-btn.copy-selct-d.move-multiple-data {
    width: 165px;
    /* font-size: 14px; */
}

button.btn.btn-same.btn-lightpink.me-1.create-snippet.copy-selct.input-selct-unselect.align_cancel {
    width: 120px !important;
}

.snipt-wrapper-content button.btn.btn-pink.px-xl-4.px-md-4 {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.btn-width,
.message_field .btn-pink {
    height: 50px !important;
}

.snipt-wrapper-content .col-lg-2.align-items-center.d-flex.gap-2 {
    flex-wrap: wrap;
}

/* 0--8-05-2023 */

@media screen and (max-width: 1200px) {
    .butn-hide {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    .theme-form textarea.form-control.dynamic_textarea_name {
        min-height: 80px !important;
    }
    .btn-option {
        padding: 7px 14px;
        margin: 10px auto;
        font-size: 13px;
    }
    .snipt-padding-remove {
        padding: 0 !important;
    }
    .btn-same {
        margin: 0;
    }
    .form-margin {
        margin-bottom: 10px !important;
    }
    .search-pastebtn {
        max-width: 50% !important;
    }
}

/* 08-05-2023 */

.top-text {
    display: grid;
    grid-template-columns: auto 150px;
    gap: 10px;
    width: 100%;
}

.edit-icon-chat.text-end {
    display: flex !important;
    align-items: baseline;
    /* width: max-content !important; */
    justify-content: end;
}

@media (max-width: 991px) {
    .search-pastebtn {
        max-width: 50% !important;
        width: 100%;
        text-align: start;
        justify-content: flex-start;
    }
}

/* 09-05-2023 */

/* .share-box.share-box-modal.p-2.mb-4.mt-4 {
    width: 455px;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: auto;
} */

/* .search-pastebtn {
    max-width: 40% !important;
    width: 100%;
    text-align: start;
    justify-content: flex-start;
} */

.upload__img-close {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: center;
    line-height: 24px;
    z-index: 1;
    cursor: pointer;

    &:after {
        content: "\2716";
        font-size: 14px;
        color: white;
    }
}
.paste-btn {
    width: 142px;
}

#group-events .groupitem,
#left-events .groupitem {
    cursor: pointer;
    display: block;
}

span.show-all {
    margin-right: 5px !important;
}

.member-add.btn-same {
    width: 250px;
}

/* .textareapara {
    white-space: break-spaces;
} */

.li-hover ul {
    display: none;
    transition: all 0.3s ease;
    margin-top: 10px;
    list-style: none;
    /* padding: 0 !important; */
}

.li-hover ul li {
    color: #000;
}

.li-hover ul li:hover {
    background-color: var(--theme-outline);
    color: #fff;
    border-radius: 30px 0 0 30px;
}

.li-hover ul li:hover a {
    color: #fff;
}

.li-hover ul li:hover img,
.li-hover ul li.active img {
    filter: brightness(0) invert(1);
}

.li-hover:hover ul {
    display: block;
    list-style: none;
}

.share-contact-form {
    display: flex;
    align-items: center;
}

.share-contact-form img {
    width: 40px;
    margin-left: 10px;
}

.snippet-drop-down {
    height: 170px;
}

.snippet-drop-down li:hover {
    background-color: transparent !important;
}

.snippet-drop-down li a {
    color: #000 !important;
    background-color: transparent !important;
    outline: none !important;
}

.snippet-drop-down li a img {
    filter: none !important;
}

.snippet-drop-down li a:hover {
    color: #fff !important;
    background-color: var(--primary-color) !important;
    outline: 3px solid var(--theme-outline) !important;
}

.scheduled-box .tip_tool {
    position: relative;
    display: block;
}
.scheduled-box .tip_tool .tip_tooltext {
    position: absolute;
    display: none;
    bottom: -40px;
    right: -29px;
    background-color: #f4f4f4;
    color: #000;
    padding: 5px 8px;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 14px;
}
.scheduled-box .tip_tool:hover .tip_tooltext {
    display: block;
}
.gen-btn {
    color: #fff;
    background-color: var(--primary-color);
}

.save-img-tip img {
    width: 20px;
    height: 20px;
    position: relative;
}
.ul-tip_tool ul {
    background-color: #f4f4f4;
    border-color: #f4f4f4;
    /* min-height: 31px; */
    border-radius: 10px;
    width: 151px;
    font-size: 13px;
    /* padding: 3px; */
    height: 70px;
    padding-top: 8px;
    font-weight: 500;
    list-style: decimal-leading-zero;
    text-align: left;
}
.img-relative {
    position: relative;
    margin-top: 15px;
}
.save-img-tip .absolute-save {
    top: 20px;
    right: 20px;
    position: absolute;
}
.save-img-tip img .ul-tip_tool {
    display: none;
    position: absolute;
    top: -50px;
    left: 20px;
}
.save-img-tip .tip_tool .tip_tooltext {
    visibility: hidden;
    background-color: #f4f4f4;
    color: #666464;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    bottom: 95%;
    left: 50%;
    margin-left: 10px;
    position: absolute;
    transition: opacity 0.3s;
    position: absolute;
    box-shadow: -1px 0px 5px rgba(0, 0, 0, 0.3);
    height: 50px;
    top: -65px;
}

.save-img-tip .tip_tool .tip_tooltext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 10%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #f4f4f4 transparent transparent transparent;
}

.save-img-tip .tip_tool:hover .tip_tooltext {
    visibility: visible;
}
.tip_tool {
    position: relative;
}
.btn-option {
    background: transparent;
    border: 5px;
    padding: 8px 16px;
    border: 1px solid #c3c3c3;
    border-radius: 5px;
    margin: 20px 0;
    font-size: 14px;
}
.btn-bottm {
    text-align: center;
}
.btn-snip-save {
    width: 300px;
    border-radius: 5px;
    display: inline-block;
}
.btn-snip-save:hover {
    width: 300px;
    border-radius: 5px;
    background: #e62eea1c;
    color: var(--primary-color);
}

.loader-div {
    display: flex;
}

.loader {
    --loader-size: 30px;
    --loader-border-size: 2px;
    --loader-border-color: #828282;
    width: var(--loader-size);
    height: var(--loader-size);
    border: var(--loader-border-size) solid var(--loader-border-color);
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    background-color: transparent;
    border-radius: 50%;
    position: relative;
    animation: rotateX 1s infinite linear;
}

.loader::before {
    content: "";
    border: var(--loader-border-size) solid var(--loader-border-color);
    border-top-color: transparent;
    border-left-color: transparent;
    border-bottom-color: transparent;
    background-color: transparent;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    animation: rotateX 0.5s infinite linear reverse;
}

@keyframes rotateX {
    from {
        transform: rotateZ(0deg);
    }
    to {
        transform: rotateZ(360deg);
    }
}

.custom-gallery img {
    width: 60px;
    height: 60px;
}
.snippet-add {
    display: block;
}

/* .snippet-img-upload .text-center{
display: flex;
align-items: center;
} */

.given-flex {
    display: flex;
    align-items: center;
    gap: 20px;
}

.custom-gallery {
    display: flex;
    align-items: center;
    gap: 15px;
}
.upload__img-box {
    width: 100px;
}

.snippet-img-upload.box-scroll.bg-lightpink {
    overflow-x: scroll;
}

#style-4::-webkit-scrollbar-track {
    display: none;
}

#style-4::-webkit-scrollbar {
    display: none;
}

#style-4::-webkit-scrollbar-thumb {
    display: none;
}

.snippet-img-upload.bg-lightpink.box-scroll {
    overflow-x: scroll;
}

.camera-img {
    display: none !important;
}
.upload__img-box {
    position: relative;
}
.upload__img-cross {
    position: relative;
}

.upload__img-close {
    width: 22% !important;
    height: 22% !important;
    border-radius: 0;
    background-image: url(/assets/images/corss-circle.svg);
    position: absolute;
    top: -10px !important;
    left: -10px !important ;
    z-index: 1;
    cursor: pointer;
    background-repeat: no-repeat;
    background-color: transparent !important;
}
.upload__img-close:after {
    display: none !important;
}
.upload__img-close img {
    width: 15px !important;
    height: 15px !important;
}

.img-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain !important;
    position: relative;
    border-radius: 15px !important;
}
.snippet-drop-down {
    height: auto;
}
.video-show-sn {
    height: 100%;
    width: 100%;
}

.box-scroll.snippet-img-upload {
    justify-content: unset;
}
.box-scroll.snippet-img-upload .text-center {
    justify-content: center;
}
.video-preview-sn {
    position: relative;
}
.video-preview-sn video {
    /* height: 170px; */
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 170px;
}
.upload__video-close {
    width: 20px !important;
    height: 20px !important;
    border-radius: 0;
    background-image: url(/assets/images/corss-circle.svg);
    position: absolute;
    top: -8px !important;
    left: -8px !important ;
    z-index: 1;
    cursor: pointer;
    background-repeat: no-repeat;
    background-color: transparent !important;
}

.upload__pdf-close {
    width: 20px !important;
    height: 20px !important;
    border-radius: 0;
    background-image: url(/assets/images/corss-circle.svg);
    position: absolute;
    top: -2px !important;
    left: 65px !important;
    z-index: 1;
    cursor: pointer;
    background-repeat: no-repeat;
    background-color: transparent !important;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.box-scroll::-webkit-scrollbar {
    display: none;
}
.cmra-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.flot-left {
    float: left;
}

.box-scroll.snippet-img-upload {
    display: flex;
    align-items: center;
    gap: 30px;
    overflow: scroll;
}

.flot-left img {
    width: 55px;
    height: 55px;
    padding: 14px 10px 0px 10px;
    margin-top: 5px;
}
.flot-left {
    min-width: 100px;
    min-height: 100px;
    border-radius: 8px;
    margin: 0px 5px;
}
.manage-picker {
    display: flex;
    align-items: center;
}
div#style-5 {
    display: flex;
    align-items: center;
}

img.edit-given.edit-image-snippet.selected-snipp-img {
    width: 170px;
    height: 170px;
}

.snipt-imgs.snp-image {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 99;
    transform: translate(-50%, -50%);
    width: 100%;
}
.upper-snippet video {
    width: 100%;
    object-fit: cover;
    height: 100%;
    padding-right: 0px;
    border-radius: 10px 10px 0 0;
}
.upload__img-box {
    position: relative;
    border: 1px solid #fde4fd;
    border-radius: 8px;
    height: 100px;
    width: 100px;
}
.img-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover !important;
    border-radius: 6px !important;
    position: relative;
    padding-bottom: 100%;
}
.bottom-sidebar {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #ededed;
    overflow-x: auto;
    box-shadow: -4px 0px 4px 1px #f1f1f182;
}
.manage-handle-scroll {
    display: inline-block !important;
    min-height: unset !important;
    padding: 10px 10px 5px 10px;
}
span.badge-primary {
    color: var(--primary-color);
    border: solid;
    border-width: 2px;
}
.new-custom-scroll {
    scrollbar-width: thin;
    overflow-y: auto;
    scrollbar-color: #aaa #fff;
}
.new-custom-scroll::-webkit-scrollbar {
    height: 5px !important;
}
.add-text {
    font-size: 14px;
}
.custom-sub {
    width: 540px;
}
.custom-upgrade-heading {
    width: 540px;
    text-align: center;
}

/* 19-06-2023 */
.page-link {
    color: var(--theme) !important;
}
.page-item.active .page-link {
    color: #fff !important;
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}
.icon-theme {
    fill: var(--theme) !important;
}

/* opt modal css */
.forgot-body {
    width: 550px;
    margin: 0px auto;
}

.reset-otp {
    display: inline-block;
    width: 60px;
    height: 60px;
    text-align: center;
    border-radius: 10px;
    margin-right: 10px;
}
.forgot-input {
    border: 1px solid #d1d1d1;
    background: #ffffff;
    box-shadow: 4px 4px 100px rgba(0, 0, 0, 0.07);
    padding: 18px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 10px;
}
.forgot-input:focus {
    border-color: #d1d1d1;
    outline: 0;
    box-shadow: unset;
}
.link-text {
    color: var(--primary-color);
}
.verify-head svg {
    max-width: 100%;
    height: auto;
}
.new-modal-content {
    width: unset;
}
@media screen and (max-width: 992px) {
    .forgot-body {
        width: 100%;
        margin: 0px auto;
    }
    .new-modal-content {
        width: 100%;
    }
}

@media screen and (max-width: 350px) {
    .forgot-input {
        padding: 10px;
    }
    .reset-otp {
        width: 50px;
        height: 50px;
        margin-right: 4px;
    }
}
label .error-message {
    color: red;
}
label .success-message {
    color: green;
}

ul.breadcrumb {
    list-style: none;
}
ul.breadcrumb li {
    display: inline;
    font-size: 18px;
}
ul.breadcrumb li + li:before {
    padding: 8px 6px;
    color: var(--primary-color);
    content: "\f105";
    font-family: FontAwesome;
}
ul.breadcrumb li a {
    color: #000;
    text-decoration: none;
}
ul.breadcrumb li a:hover {
    color: var(--primary-color);
}
ul.breadcrumb li a.active {
    color: var(--primary-color);
}
.custom-arrow {
    margin-top: 8px;
}
.forgot-body {
    width: 600px;
    margin: 0px auto;
    background: #fff;
    border-radius: 30px;
    padding: 10px 0px;
    box-shadow: 0px 0px 4px 0px grey;
}
.verify-text {
    font-size: 20px;
}

@media screen and (max-width: 567px) {
    .verify-text {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .forgot-body {
        width: auto;
        padding: 10px 8px;
    }
}
.two-line-crumb {
    width: 24ch;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.bread-text {
    color: var(--primary-color);
    font-size: 14px;
}

.breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right: 0.3rem !important;
    color: var(--primary-color) !important;
    content: var(--bs-breadcrumb-divider, "/");
}
.custom-bread {
    min-height: 58px;
    overflow: hidden;
}
.video-icon {
    position: absolute;
    top: 40%;
    left: 37%;
}
.modal-right {
    position: absolute;
    right: 10px;
    bottom: -20px;
    min-width: 550px;
}
.profile-name {
    position: relative;
    font-size: 21px;
    font-weight: 600;
    color: #3b3f5c;
    margin: 6px 0px 0 0;
}
.profile-name:after {
    position: absolute;
    content: "";
    height: 2px;
    width: 80%;
    background: var(--primary-color);
    border-radius: 50%;
    bottom: -2px;
    left: 10px;
}
.Profile-head {
    border-radius: 6px;
}
.profile-img {
    border-radius: 9px;
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14),
    0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
}
.badge-pills{
    padding: 6px 12px;
    margin-right: 4px;
    margin-bottom: 4px;
}
.profile-circle img {
    width: 150px;
    height: 150px;
    border-radius: 100%;
    object-fit: cover;
    border: 0px;
}
.modal-profile-head{
    box-shadow: 0px 0px 4px 0px darkgrey;
}
@media screen and (max-width: 1600px) {
    .modal-right {
        position: absolute;
        bottom: unset;
    }
}
.sidebar-oneline{
    width: 14ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.modal-video-img{
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    height: auto;
}

.contactnamepos-custom{
    position: relative;
    background-color: #9c9c9c;
    margin: 0px auto;
    width: 80px;
    height: 80px;
    border-radius: 20px;
}

.sidebar li.active .ai-img {
    filter: unset;
}
.sidebar li .ai-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-right: 6px;
}


/* languagediv */
.us-div{
    border: 1px solid #7577a9;
    border-radius: 15px;
}
.selectLanguage{
    position: absolute;
    top:0;
    font-size: 16px;
    color: #1cb989;
    right: 8px;
}
.cursor-pointer{
    cursor: pointer;
    text-decoration: none;
    color: #212529;
}
.cursor-pointer:hover{
    color: #212529;
}

.headerLanguageSelect{
border: 1px solid #222;
padding: 5px;
border-radius: 30px;
align-items: center;
/* display: */
color: var(--secondary-color);
overflow: hidden;
width: 100%;
background-color: transparent;
}
.headerLanguageSelect:focus-visible,
.headerLanguageSelect:focus,
.headerLanguageSelect:focus-within{
    border: 1px solid #222 !important;
    box-shadow: none;
    outline: none;
}

.beta-img{
    width: 65px !important;
}
/* /* languagediv */
