* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
}

:root {
    --white: #ffffff;
    --black: #222328;
    --gray-2: #8c94b0;
    --blue: #4260cb;
}

.gradient-text {
    background: -webkit-linear-gradient(326deg, #467efe 40.83%, #7ed7fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

input[type="search"]::-webkit-search-cancel-button {
    display: none;
}

main {
    overflow: hidden;
    width: 100%;
    margin: auto;
    /* max-width: 2240px; */
}

.index-2 {
    position: relative;
    z-index: 2;
}

.password-field {
    position: relative;
}

.hide-pass-icon {
    position: absolute;
    top: 14px;
    right: 20px;
    cursor: pointer;
}

.show-pass-icon {
    position: absolute;
    top: 17px;
    right: 20px;
    cursor: pointer;
}


/* custome-select */

.custome-select .select2 {
    width: 100%;
}


/* Navbar CSS */

.top-nav {
    display: flex;
    margin-right: -70px;
    align-items: center;
    justify-content: flex-end;
}

.offcanvas-title img {
    max-width: 150px;
}

.tab-nav,
.nav-number-2 {
    display: none !important;
}

.navbar-brand {
    margin-top: -50px;
}

.nav-number {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    color: var(--white);
}

.nav-number-2:hover {
    color: var(--blue);
}

.nav-number:hover {
    color: var(--white);
    opacity: .9;
}

.nav-number-2:hover img,
.nav-icon-bg:hover img,
.nav-number:hover img {
    animation: bellshake .5s cubic-bezier(.36, .07, .19, .97)
}

.nav-link:hover .nav-dropdown {
    display: block !important;
}

.nav-dropdown {
    padding: 10px 0px 10px;
    margin: 0px auto !important;
    border-radius: 20px;
    background: var(--white);
    border: none;
    box-shadow: 0px 64px 250px 0px #00000040;
    --bs-min-width: 480px;
    --bs-half-width: var(--bs-min-width) / 2;
    --bs-min-width-negative: calc(var(--bs-half-width) * -1);
    min-width: var(--bs-min-width);
    left: unset !important;
    right: calc(50% + var(--bs-min-width-negative)) !important;
}

@keyframes bellshake {
    0% {
        transform: rotate(0);
    }

    15% {
        transform: rotate(15deg);
    }

    30% {
        transform: rotate(-15deg);
    }

    45% {
        transform: rotate(10deg);
    }

    60% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(5deg);
    }

    85% {
        transform: rotate(-5deg);
    }

    92% {
        transform: rotate(3deg);
    }

    100% {
        transform: rotate(0);
    }
}

.nav-dropdown.show {
    animation: scale-up-ver-top 0.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@keyframes scale-up-ver-top {
    0% {
        -webkit-transform: scaleY(.5);
        transform: scaleY(0.5);
        -webkit-transform-origin: top;
        transform-origin: top;
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transform-origin: top;
        transform-origin: top;
    }
}

.category-dropdown .nav-dropdown .dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid #E7E7E7;
    padding: 20px 40px;
}

.category-dropdown .nav-dropdown .dropdown-item img {
    max-width: 32px;
    object-fit: contain;
    margin-top: 5px;
}

.category-dropdown.nav-dropdown .dropdown-item h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 33px;
    color: var(--black);
    margin-bottom: 5px;
}

.category-dropdown .nav-dropdown .dropdown-item p {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: var(--gray-2);
    max-width: 360px;
    margin-bottom: 0;
    text-wrap: wrap;
    white-space: normal;
}

.nav-dropdown .dropdown-item:hover,
.nav-dropdown .dropdown-item:active {
    background: transparent;
}

.virtual-nav {
    background: rgb(255, 255, 255, 0.1);
    padding: 12px 0 0;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
    max-width: 1620px;
    width: calc(100vw - 300px);
    margin: auto;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0em;
    color: var(--white);
    padding: 12px 20px 15px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: rgba(0, 0, 0, 0.9);
}

.dropdown:has(.dropdown-menu.show)>.nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    margin: auto;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--white);
    border-radius: 5px;
}

.nav-icon-bg {
    background-color: var(--white);
    border-radius: 100%;
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.title-section {
    padding-bottom: 200px;
}


/* Texts */

.home-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 62px;
    letter-spacing: 0em;
    text-align: center;
    max-width: 939px;
    margin: 97px auto 15px;
    color: var(--white);
}

.home-sub-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0em;
    max-width: 698px;
    text-align: center;
    color: var(--white);
    margin: 0 auto 50px;
}

.head-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 62px;
    text-align: center;
    color: var(--white);
    margin-top: 35px;
    margin-bottom: 20px;
}


/* Blue btn */

.btn-blue {
    color: var(--white);
    border-radius: 30px;
    height: 55px;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    background: var(--blue);
    min-width: 220px;
    display: flex;
    align-items: center;
    border: 1px solid var(--blue) !important;
    justify-content: center;
}

.btn-blue:hover {
    color: var(--blue);
    background-color: transparent;
}


/* Search Btn */

.search-btn {
    font-size: 18px;
    font-weight: 500;
    line-height: 23px;
    letter-spacing: -0.183px;
    color: var(--white) !important;
    border: 2px solid var(--blue) !important;
    background-color: var(--blue) !important;
    border-radius: 30px;
    padding: 14px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-section .search-btn {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: 0em;
    text-wrap: nowrap;
    color: var(--white) !important;
    border: 2px solid var(--blue) !important;
    background-color: var(--blue) !important;
    border-radius: 30px;
    min-width: 243px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn img {
    width: 21px;
}


/* Number Card */

.number-card {
    padding-top: 20px;
    border-radius: 10px;
    background: var(--white);
    margin-bottom: 30px;
    border: 1px solid transparent;
    position: relative;
}

.number-card:hover {
    box-shadow: 0px 14px 84px 0px #00000026;
    border: 1px solid #FFFFFF
}

.number-card .card-code-price {
    display: flex;
    justify-content: space-between;
    padding: 0 20px 10px;
    align-items: center;
}

.number-card .card-code {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0;
    color: var(--black);
}

.card-number-price {
    padding: 0 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.number-card .card-old-price {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
    color: var(--gray-2);
}

.number-card .card-price,
.number-card .card-number {
    font-size: 28px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 0;
    color: var(--black);
}

.number-card hr {
    border-color: #DDDDDD;
    margin: 0;
    opacity: 1;
}

.number-card .card-location {
    display: flex;
    padding: 15px 20px 18px;
    height: 77px;
}

.card-location p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 0;
    color: var(--black);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-location img {
    height: fit-content;
    margin-right: 7px;
    margin-top: 2px;
}

.card-btns {
    background: linear-gradient(95.35deg, #467EFE 5.26%, #61CAFD 100%);
    padding: 10px 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.card-btn-white {
    box-shadow: 0px 4px 54px 0px #00000012;
    border-radius: 30px;
    background-color: var(--white) !important;
    color: var(--black) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    height: 50px;
    line-height: 22px;
    border: 1px solid var(--white) !important;
}

.card-btn-trans {
    border-radius: 30px;
    color: var(--white) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    height: 50px;
    line-height: 22px;
    border: 1px solid var(--white) !important;
}

.card-btn-trans:hover {
    background-color: var(--white) !important;
    color: #467EFE !important;
}

.ext-btn-show {
    position: absolute;
    top: calc(100% - 10px);
    left: 0;
    right: 0;
    padding: 5px 20px 5px;
    z-index: 99;
    background: linear-gradient(95.35deg, #467EFE 5.26%, #61CAFD 100%);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.number-card:hover .ext-btn-show {
    border-bottom: 3px solid #FFF;
    box-shadow: 0px 55px 84px 0px #00000026;
}

.this-other-button {
    margin: 10px 0 5px;
}


/* Search */

.filter-search {
    position: relative;
}

.filter-search .form-control {
    border-radius: 30px;
    background-color: #f7f7f7;
    border: 1px solid #f7f7f7;
    color: var(--blue);
    padding: 13px 13px 13px 51px;
    margin-bottom: 10px;
}

.filter-search::before {
    content: "";
    background: url(../images/icons/gray-search-icon.svg);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 20px;
    width: 20px;
    height: 20px;
}

.multi-stage-filter-search {
    display: flex;
    gap: 10px;
}

.multi-stage-filter-search::before {
    content: "";
    background: url(../images/icons/gray-search-icon.svg);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: 15px 0;
    left: 20px;
    width: 20px;
    height: 20px;
    z-index: 10;
}

.filter-search .form-control:focus {
    box-shadow: none;
    border-color: var(--gray-2);
    background-color: var(--white);
}

.local-dropdown .dropdown-menu {
    padding: 0;
    --bs-min-width: 1620px;
    right: 0 !important;
    left: 0 !important;
    width: fit-content;
    margin: auto !important;
    /* right: calc(-7% + var(--bs-min-width-negative)) !important; */
}

.resources .dropdown-menu {
    left: unset !important;
}

.position-unset {
    position: unset !important;
}

.local-dropdown .dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 30px;
    border-right: 1px solid #E7E7E7;
}

.local-dropdown .navdrop-perent {
    display: flex;
}

.local-dropdown .dropdown-item h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 33px;
    color: var(--black);
    margin-bottom: 5px;
}

.local-dropdown .dropdown-item p {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: var(--gray-2);
    margin-bottom: 20px;
    max-width: 440px;
    text-wrap: wrap;
    white-space: normal;
}

.local-dropdown .icon {
    margin-top: 6px;
}

.local-dropdown .dropdown-item a {
    display: flex;
    gap: 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    color: var(--blue);
    border: 1px solid #E7E7E7;
    border-radius: 30px;
    padding: 16px 30px 17px;
    width: fit-content;
}

.local-dropdown .dropdown-item a:hover {
    background: linear-gradient(95.35deg, #467EFE 5.26%, #61CAFD 100%);
    color: #fff;
}

.local-dropdown .dropdown-item a:hover img {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(59deg) brightness(106%) contrast(352%);
}

.btn-tool-tip i {
    background: -webkit-linear-gradient(326deg, #467efe 40.83%, #7ed7fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* new */

.btn-tool-tip {
    padding: 0 0 0 20px;
    margin-bottom: 20px;
    border: none;
    position: relative;
    font-size: 20px;
}

.btn-tool-tip::before {
    content: attr(data-tooltip);
    padding: 8px 16px;
    color: var(--blue);
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    white-space: pre;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 998;
    position: absolute;
    cursor: default;
    opacity: 0;
    background-color: #fff;
    pointer-events: none;
    transition: all ease-out 0.15s;
    box-shadow: none;
    left: calc(100% + 8px + 4px);
    transform: translateY(-50%);
    top: 50%;
    margin-left: -4px;
}

.btn-tool-tip::after {
    content: "";
    width: 10px;
    height: 10px;
    border: 1px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.2);
    border-bottom-color: rgba(0, 0, 0, 0.2);
    z-index: 999;
    position: absolute;
    cursor: default;
    opacity: 0;
    background-color: #fff;
    pointer-events: none;
    transition: all ease-out 0.15s;
    box-shadow: none;
    left: calc(100% + 3px + 4px);
    transform: translateY(-50%) rotate(-315deg);
    top: 50%;
    margin-left: -4px;
}

.btn-tool-tip:hover:before,
.btn-tool-tip:hover:after {
    opacity: 1;
    margin: 0;
}

.btn-tool-tip i {
    background: -webkit-linear-gradient(326deg, #467efe 40.83%, #7ed7fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.h-fitt {
    height: fit-content !important;
}

.footer-list {
    cursor: pointer;
}

.nav-verticalborder {
    width: 1px;
    height: 38px;
    border-left: 1px solid #fff;
    margin: 0 14px 0 22px;
    opacity: 0.3;
}

.modal-gradient {
    background: linear-gradient(90deg, #EDF2FF 0%, #EFF9FF 100%);
    padding: 15px;
    border-radius: 20px;
}

.modal-gradient .modal-header {
    background-color: #fff;
    border-top-right-radius: 20px !important;
    border-top-left-radius: 20px !important;
    padding: 20px 30px 15px 20px !important;
}

.modal-gradient .modal-header .modal-title {
    margin: 0;
}

.modal-gradient .modal-body {
    margin: 0px !important;
    background-color: #fff;
    border-bottom-right-radius: 20px !important;
    border-bottom-left-radius: 20px !important;
    padding: 20px 20px 30px !important;
}

.new-counter-card {
    background: linear-gradient(95.35deg, #467EFE 5.26%, #61CAFD 100%);
    border-radius: 10px;
    padding: 2px;
}

.new-counter-card .card-bg {
    border-radius: 10px;
    padding: 15px 20px 13px;
    background-color: #fff;
}

.new-counter-card .d-flex {
    justify-content: space-between;
}

.new-counter-card h1 {
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 10px;
    color: #222328;
}

.new-counter-card p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
    color: #8C94B0;
    margin-bottom: 0;
}

.modal-gradient hr {
    border-top: 1px solid #E7E7E7;
    margin-top: 20px;
    margin-bottom: 20px;
}

.new-modal-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 15px;
    color: #222328;
}

.pt-100 {
    padding-top: 100px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}


/* New Login CSS */

.login-btns {
    width: 332px !important;
    background-color: white;
    text-align: center;
    position: relative;
    height: 50px;
    margin-bottom: 0 !important;
    border-radius: 25px;
}

.nav-tabs {
    margin: 0;
    border: unset;
}

.login-btns>div {
    color: white;
    padding-top: 25px;
    display: block;
    position: absolute;
    transform: translateX(calc(100% - 0px));
    top: 0px;
    left: 0px;
    bottom: 0px;
    width: calc(50%);
    background: linear-gradient(95.35deg, #467EFE 5.26%, #61CAFD 100%);
    border-radius: 25px;
    z-index: 1;
    pointer-events: none;
    transition: transform 0.3s;
}

.login-btns label {
    float: left;
    width: calc(50%);
    position: relative;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: color 0.3s;
    cursor: pointer;
}

.login-btns label input {
    position: absolute;
    visibility: hidden;
}

.login-btns label div {
    z-index: 5;
    position: absolute;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    text-align: center;
    color: #222328;
}

.selected div {
    color: #fff !important;
}

.alredy-account-text span {
    text-decoration: none;
    color: var(--blue);
    font-weight: 600;
    cursor: pointer;
}

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

.btn-danger {
    color: #fff;
    background-color: #bb2d3b;
    border: 1px solid #bb2d3b;
    border-radius: 30px;
    height: 55px;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    min-width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    width: 240px;
    margin-top: 30px;
}

.btn-danger:hover {
    color: #bb2d3b;
    border: 1px solid #bb2d3b;
    background-color: #fff;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
    background-color: #e5e5e5 !important;
    border-color: #e5e5e5;
    opacity: 1 !important;
}

.contactus-nav .resources-dropdown {
    right: 0 !important;
    left: unset !important;
}

.contactus-nav .nav-dropdowns a {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.contactus-nav .nav-dropdowns h5 {
    /* font-size: 19px; */
    font-weight: 600;
    line-height: normal;
    color: #222328;
    margin-bottom: 5px;
}

.contactus-nav .dropdown-item {
    padding: 20px;
    margin: 0 20px;
    border-bottom: 1px solid #E7E7E7 !important;
    width: unset;
}

.contactus-nav .dropdown-item:hover {
    background-color: #e2f1ff !important;
}

.contactus-nav li:last-child .dropdown-item {
    border-bottom: none !important;
}

.contactus-nav .nav-dropdowns p {
    /* font-size: 16px; */
    font-weight: 400;
    line-height: normal;
    color: #8C94B0;
    width: 301px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: wrap;
    margin-bottom: 0;
}

.new-checkoutbtn.disabled {
    opacity: 50% !important;
    border-color: #e7e7e7 !important;
    background-color: #f9fbfd !important;
}

.plan-work p {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #8C94B0;
    margin-bottom: 15px;
}

.plan-work p a {
    text-decoration: none;
    color: #4260CB;
}

.plan-work .modal-body {
    padding: 20px 30px 30px !important;
}


/* Numbers Nav */

.numbers-nav {
    background: linear-gradient(95.35deg, #467EFE 5.26%, #61CAFD 100%);
    padding: 0;
}

.numbers-nav .nav-number {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 23px 10px !important;
}

.numbers-nav .nav-icon-bg {
    width: 32px;
    height: 32px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.numbers-nav .nav-icon-bg img {
    max-width: 19px;
}

.audioplayer {
    border-radius: 10px;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.07);
    border: unset;
    background-color: #fff;
    margin: 0 0 20px;
    height: fit-content;
    padding: 15px 20px 15px 15px;
    position: relative;
    min-height: 85px;
}

.audioplayer-playpause {
    width: 43px;
    height: 43px;
}

.audioplayer:not(.audioplayer-playing) .audioplayer-playpause:hover,
.audioplayer:not(.audioplayer-playing) .audioplayer-playpause {
    margin-right: 15px;
    border-color: rgba(66, 96, 203, 1);
    background-color: rgba(66, 96, 203, 1);
}

.audioplayer:not(.audioplayer-playing) .audioplayer-playpause a {
    border: unset;
    width: 12px;
    margin-left: 3px;
    margin-top: 2px;
    height: 16px;
    background: url(../images/icons/video-icon.svg);
}

.audioplayer-playing .audioplayer-playpause a::before,
.audioplayer-playing .audioplayer-playpause a::after {
    background-color: rgba(66, 96, 203, 1);
}

.audioplayer-playing .audioplayer-playpause:hover,
.audioplayer-playing .audioplayer-playpause {
    border-color: rgba(66, 96, 203, 1);
    background-color: #fff;
    margin-right: 15px;
}

.audioplayer-bar-loaded {
    height: 5px;
    border-radius: 5px;
}

.audioplayer-bar-played {
    background: linear-gradient(95.35deg, #467EFE 5.26%, #61CAFD 100%);
    height: 5px;
    border-radius: 5px;
}

.audioplayer-bar::before {
    height: 5px;
}

.audioplayer:not(.audioplayer-playing) .audioplayer-bar-played::after,
.audioplayer-playing .audioplayer-bar-played::after {
    border: 4px solid rgba(76, 193, 254, 1)
}

.audioplayer-bar-played::after {
    width: 16px;
    height: 16px;
    top: -1px;
    bottom: 0;
    right: -8px;
    margin: auto;
    border-radius: 100%;
}

.audioplayer:not(.audioplayer-mute) .audioplayer-volume-button a:after {
    top: -2px;
    width: 12px;
    height: 12px;
    border: 6px double rgba(34, 35, 40, 1);
    border-width: 6px 6px 0 0;
    transform: rotate(45deg);
}

.audioplayer-volume-button a:before {
    border-right: 9px solid rgba(34, 35, 40, 1);
}

.audioplayer-volume-button a {
    background-color: rgba(34, 35, 40, 1);
}

.audioplayer-volume-adjust>div {
    height: 5px;
    background-color: rgba(231, 231, 231, 1);
    border-radius: 5px;
    width: 80px;
}

.audioplayer-volume-adjust div div {
    height: 5px;
    background-color: rgba(34, 35, 40, 1);
    border-radius: 5px;
}

.audioplayer-bar {
    margin: 0 20px 0 0;
}

.audioplayer-time.audioplayer-time-duration,
.audioplayer-time.audioplayer-time-current {
    position: absolute;
    bottom: 10px;
    left: 70px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-left: 0;
}

.audioplayer-time.audioplayer-time-duration {
    left: 120px;
}

.audioplayer-time.audioplayer-time-duration::before {
    content: ' / ';
}

.switch {
    position: relative;
    color: #808080;
}

.switch__input {
    position: absolute;
    top: 0;
    right: 0;
    width: 57px;
    height: 30px;
    opacity: 0;
    z-index: 0;
}

.switch__label {
    display: block;
    padding: 0 65px 0 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: rgba(34, 35, 40, 1);
}

.switch__label:before {
    content: "";
    position: absolute;
    top: -3px;
    right: 0;
    width: 57px;
    height: 30px;
    background-color: rgba(140, 148, 176, 1);
    border-radius: 14px;
    z-index: 1;
    transition: background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.switch__label:after {
    content: "";
    position: absolute;
    top: -1px;
    right: 29px;
    width: 26px;
    height: 26px;
    border-radius: 14px;
    background-color: #fafafa;
    z-index: 2;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    transition-property: right, background-color;
}

.switch__input:checked+.switch__label:before {
    background: linear-gradient(95.35deg, #467EFE 5.26%, #61CAFD 100%);
}

.switch__input:checked+.switch__label:after {
    right: 2px;
}

.resize-none {
    resize: none;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
    width: 5px;
    border-radius: 50px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track {
    background: #dddddd;
    border-radius: 50px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
    background: rgba(66, 96, 203, 1);
    border-radius: 50px;
}

.gradient-switcher.switcher {
    color: rgba(140, 148, 176, 1);
}

.gradient-switcher.switcher {
    height: 60px;
    background-color: var(--white);
}

.gradient-switcher.switcher .roller {
    background: linear-gradient(95.35deg, #467EFE 5.26%, #61CAFD 100%);
}

.gradient-switcher.switcher .parts .part .active {
    color: var(--white);
}

.gradient-switcher.switcher .parts .part:nth-child(1) {
    padding-left: 8px;
}

.gradient-switcher.switcher .parts .part:nth-child(2) {
    padding-right: 8px;
}

.gradient-switcher.switcher .roller {
    border-radius: 50px;
    top: 8px;
    left: 8px;
}

.gradient-switcher.switcher .roller.active {
    left: 50%;
}

.gradient-switcher.switcher {
    width: 274px;
}

.instant-search.main-search {
    padding: 15px;
}

.instant-search .search-btn {
    display: none;
}

.instant-search .choos-states .form-control {
    padding: 15px 30px 16px;
    border: none !important;
}

.instant-search .choos-states {
    padding: 0 !important;
}

.instant-search .code-dropdown b,
.instant-search .input-dropdown b {
    left: unset;
    right: 30px;
}

.instant-search .state-search-pere {
    padding: 0;
    background-color: transparent;
}

.instant-search.main-search .search-border::before {
    content: none;
}

.instant-search.main-search .search-border {
    margin-left: 10px;
    border: 1px solid rgba(231, 231, 231, 1);
    background-color: rgba(247, 247, 247, 1);
    border-radius: 30px;
    height: 60px;
}

.instant-search .code-dropdown .form-control {
    border: 1px solid rgba(231, 231, 231, 1);
    width: 177px;
    background-color: rgba(247, 247, 247, 1);
    border-radius: 30px;
    height: 60px;
    padding: 15px 30px 16px;
}

.instant-search .code-dropdown b {
    right: 30px;
}

.instant-search .code-dropdown {
    padding: 0;
}


.instant-search .form-control::placeholder {
    color: rgba(140, 148, 176, 1) !important;
}

#code_nos {
    display: none;
}