/* Google Fonts | Omonjon */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Bootstrap tools | Omonjon */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --title-color: #313131;
    --title-color-after: rgb(20, 82, 159);
    --text-color: #000000;
    --text-color-light: #737387;
    --color-gray: #F1F2F4;
    --primary-transition: 0.37s;
}

.nav-icon-flag--svg {
    width: 16px !important;
    height: 16px !important;
}

body {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 1rem;
}

.title-color {
    color: var(--title-color) !important;
}

.title-color-after {
    color: var(--title-color-after) !important;
}

.text-color {
    color: var(--text-color) !important;
}

.text-color-light {
    color: var(--text-color-light) !important;
}

.w-26 {
    width: 26%;
}

.w-35px {
    width: 35px;
}

.w-56px {
    width: 56px;
}

.h-35px {
    height: 35px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 0;
    padding-top: 0;
}

.accordion-button::after {
    display: none;
}

button[aria-expanded^="true"] i {
    background-color: var(--bs-light) !important;
    transform: rotate(-180deg) !important;
    color: black !important;
    box-shadow: 0px 8px 18px -8px rgba(116, 246, 0, 0.90);
}

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

.btn-primary {
    color: var(--bs-white);
    border: none !important;
    background: var(--bs-primary);
}

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

.box-shadow-none {
    box-shadow: none !important;
}

.text-gray {
    color: #565973;
}

.primary-shadow {
    box-shadow: 0px 4px 9px -1px rgba(19, 16, 34, 0.03), 0px 4.4px 20px -1px rgba(19, 16, 34, 0.05);
}

.bg-gray {
    background: #EFF2FC;
}

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

.mt-12px {
    margin-top: 12px;
}

.btn-secondary {
    border-radius: 2px;
    color: var(--bs-primary);
    border: 1px solid var(--bs-primary);
    background: transparent;
}

.cursor-pointer {
    cursor: pointer;
}

.z-index-1 {
    z-index: 1;
}

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

.z-index-3 {
    z-index: 3;
}

.z-index-4 {
    z-index: 4;
}

.z-index-5 {
    z-index: 5;
}

.z-index-6 {
    z-index: 6;
}

.z-index-7 {
    z-index: 7;
}

.z-index-8 {
    z-index: 8;
}

.z-index-9 {
    z-index: 9;
}

.z-index-10 {
    z-index: 10;
}

.fs-6 {
    font-size: 1.25rem !important;
}

.fs-7 {
    font-size: 1rem !important;
}

.fs-8 {
    font-size: 0.875rem !important;
}

.fs-9 {
    font-size: 0.75rem !important;
}

.w-max-content {
    width: max-content !important;
}

.opacity-7 {
    opacity: 0.7;
}

.outline-none {
    outline: none;
}

.transition {
    transition: .4s;
}

.fs-title {
    font-size: 2.25rem;
}

.fs-title-sec {
    font-size: 1.625rem;
}

input,
button {
    outline: none;
}

.dropdown-arrow::after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    border-left: initial !important;
    border-top: initial !important;
    content: "";
    display: block;
    height: 6px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 2px;
    top: 55%;
    transform-origin: 66% 66%;
    transform: rotate(45deg);
    /* transition: all .15s ease-in-out; */
    transition: var(--primary-transition);
    width: 6px;
}

.dropdown-arrow.show::after {
    transform: rotate(-135deg);
}

.border-none {
    border: none;
}

.primary-hover:hover {
    color: #EF4444 !important;
    background: #EF44441A;
}

.primary-hover:hover svg path {
    fill: #EF4444 !important;
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.25rem var(--bs-primary);
}

/* .form-select{
    --bs-form-select-bg-img: none;
} */

.shadow-swiperBtn {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

li,
ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

p {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

/* ==================== LOADER | Omonjon ==================== */
.load {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: auto 0;
    background-color: var(--bs-white);
    display: grid;
    place-items: center;
    z-index: 100;
}

.load .load-gif {
    max-width: 500px;
    width: 100%;
    height: 100%;
}

/* ==================== HEADER | Omonjon ==================== */
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    z-index: 10;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}


/* ==================== PROGRESS 1 | Omonjon ==================== */
.progress {
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: none;
    margin: 0 auto;
    box-shadow: none;
    position: relative;
}

.progress:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid #f2f5f5;
    position: absolute;
    top: 0;
    left: 0;
}

.progress > span {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 1;
}

.progress .progress-left {
    left: 0;
}

.progress .progress-bar {
    width: 100%;
    height: 100%;
    background: none;
    border-width: 5px;
    border-style: solid;
    position: absolute;
    top: 0;
}

.progress .progress-left .progress-bar {
    left: 100%;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    border-left: 0;
    -webkit-transform-origin: center left;
    transform-origin: center left;
}

.progress .progress-right {
    right: 0;
}

.progress .progress-right .progress-bar {
    left: -100%;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border-right: 0;
    -webkit-transform-origin: center right;
    transform-origin: center right;
    animation: loading-1 1.8s linear forwards;
}

.progress .progress-value {
    width: 100%;
    height: 100%;
    font-size: 24px;
    color: rgb(250, 245, 245);
    text-align: center;
    position: absolute;
}

.progress.blue .progress-bar {
    border-color: #26abfd;
}

.progress.blue .progress-left .progress-bar {
    animation: loading-2 1.5s linear forwards 1.8s;
}

@keyframes loading-1 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}

@keyframes loading-2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

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


/* ==================== PROGRESS 2 | Omonjon ==================== */

.circular-progress {
    position: relative;
    height: 54px;
    width: 54px;
    background-color: #26abfd;
    border-radius: 50%;
    display: grid;
    place-items: center;
    align-items: center;
    align-content: center;
    place-content: center;
    justify-content: center;
    justify-items: center;
}

.circular-progress:before {
    content: "";
    position: absolute;
    /*height: 75%;*/
    /*width: 75%;*/
    height: 40px;
    width: 40px;
    background-color: #fff;
    border-radius: 50%;
}

.value-container {
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: var(--bs-primary);
}

/* ================================================================ */
.progress2 {
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: none;
    margin: 0 auto;
    box-shadow: none;
    position: relative;
}

.progress2:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid #f2f5f5;
    position: absolute;
    top: 0;
    left: 0;
}

.progress2 > span {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 1;
}

.progress2 .progress-left {
    left: 0;
}

.progress2 .progress-bar {
    width: 100%;
    height: 100%;
    background: none;
    border-width: 5px;
    border-style: solid;
    position: absolute;
    top: 0;
}

.progress2 .progress-left .progress-bar {
    left: 100%;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    border-left: 0;
    -webkit-transform-origin: center left;
    transform-origin: center left;
}

.progress2 .progress-right {
    right: 0;
}

.progress2 .progress-right .progress-bar {
    left: -100%;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border-right: 0;
    -webkit-transform-origin: center right;
    transform-origin: center right;
    animation: loading-1-3 1.8s linear forwards;
}

.progress2 .progress-value {
    width: 100%;
    height: 100%;
    font-size: 24px;
    color: rgb(250, 245, 245);
    text-align: center;
    position: absolute;
}

.progress2.blue .progress-bar {
    border-color: #26abfd;
}

.progress2.blue .progress-left .progress-bar {
    animation: loading-2-2 1.5s linear forwards 1.8s;
}


@keyframes loading-1-2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(100deg);
        transform: rotate(100deg);
    }
}

@keyframes loading-2-2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

/* ==================== PROGRESS 3 | Omonjon ==================== */
.progress3 {
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: none;
    margin: 0 auto;
    box-shadow: none;
    position: relative;
}

.progress3:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid #f2f5f5;
    position: absolute;
    top: 0;
    left: 0;
}

.progress3 > span {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 1;
}

.progress3 .progress-left {
    left: 0;
}

.progress3 .progress-bar {
    width: 100%;
    height: 100%;
    background: none;
    border-width: 5px;
    border-style: solid;
    position: absolute;
    top: 0;
}

.progress3 .progress-left .progress-bar {
    left: 100%;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    border-left: 0;
    -webkit-transform-origin: center left;
    transform-origin: center left;
}

.progress3 .progress-right {
    right: 0;
}

.progress3 .progress-right .progress-bar {
    left: -100%;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border-right: 0;
    -webkit-transform-origin: center right;
    transform-origin: center right;
    animation: loading-1-2 1.8s linear forwards;
}

.progress3 .progress-value {
    width: 100%;
    height: 100%;
    font-size: 24px;
    color: rgb(250, 245, 245);
    text-align: center;
    position: absolute;
}

.progress3.blue .progress-bar {
    border-color: #26abfd;
}

.progress3.blue .progress-left .progress-bar {
    animation: loading-2-3 1.5s linear forwards 1.8s;
}

@keyframes loading-1-3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(145deg);
        transform: rotate(145deg);
    }
}

@keyframes loading-2-3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

/* ==================== HOW WORKS | Omonjon ==================== */
.how-works .swiper-slide {
    margin-bottom: 4rem;
}

.how-works .swiper-button-next::after,
.how-works .swiper-button-prev::after {
    content: '';
}

.how-works .swiper-button-prev,
.how-works .swiper-button-next {
    font-size: 2rem;
    color: var(--text-color);
    width: initial;
    height: initial;
    top: initial;
    bottom: 0.5rem;
}

.how-works .swiper-button-prev {
    left: 10px;
}

.how-works .swiper-button-next {
    right: calc(85% - 3rem);
}

.how-works .swiper-button-disabled {
    opacity: initial;
}

/* ==================== PARTNERS | Omonjon ==================== */
/*.partner-wh {
    width: 140px !important;
    height: 30px;
}*/


/*=============== SCROLL BAR | Omonjon ===============*/
::-webkit-scrollbar {
    width: .6rem;
    border-radius: .5rem;
    background-color: hsla(93, 36%, 26%, 0.71)
}

::-webkit-scrollbar-thumb {
    background-color: #1B9CAA;
    border-radius: .5rem;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--bs-primary);
}

/*=============== SCROLL UP | Omonjon ===============*/
.scroll_up {
    position: fixed;
    right: 3.5rem;
    bottom: -100%;
    background-color: var(--bs-primary);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    display: inline-flex;
    padding: .35rem;
    border-radius: .25rem;
    font-size: 1.1rem;
    color: var(--bs-white);
    z-index: 10;
    transition: bottom .4s, transform .4s, background-color .4s;
}

.scroll_up:hover {
    transform: translateY(-.35rem);
    background-color: var(--bs-white);
    color: black;
}

/* Show Scroll Up*/
.show-scroll {
    bottom: 4rem;
}

.field-policyosgo-tech_pass_series label.control-label {
    width: 100%;
    overflow: visible;
    visibility: visible !important;
    white-space: nowrap;
}

.form-group.has-error .help-block {
    font-size: 14px;
    color: red;
    word-break: break-all;
}

form .has-error .form-control {
    border: none;
    outline: none;
    box-shadow: 0 0 2px 2px red;
}

.pretty input {
    position: absolute;
    left: 0;
    top: 0;
    min-width: 1em;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.state.p-warning-o {
    overflow: hidden;
    text-overflow: ellipsis;
    padding-top: 4px;
    padding-bottom: 4px;
}

.pretty.p-default.p-round.p-smooth:nth-child(2) {
    margin-top: 0;
}

.pretty.p-default.p-round.p-smooth {
    padding-left: 0 !important;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--bs-primary) !important;
}

.tech_series {
    max-width: 84px;
    min-width: 84px;
}

.pass_series {
    max-width: 72px;
    min-width: 72px;
}

input[readonly] {
    background-color: #ccc;
}

input[readonly]:focus {
    background-color: #ccc;
}

.form-group.field-policyosgo-owner_pass_sery.has-error .help-block, .form-group.field-policyosgo-app_pass_sery.has-error .help-block {
    min-width: max-content !important;
    width: auto;
    display: block;
    white-space: nowrap;
    margin-top: 16px;

}

.field.modal__field.modal__field-col.modal-img {
    width: 160px;
    background-color: rgba(27, 156, 170, 0.35);
    height: 100px;
    margin-right: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;

}

.servicesModal-icon {
    top: -70px;
    right: 165px;
}

.disabled {
    background: #ccc !important;
    cursor: not-allowed;
    pointer-events: none;
}

.form-check-input,
#policytravel-offer {
    width: 1.2rem !important;
    height: 1.2rem !important;
}

.form-check-input:checked {
    background-color: #1B9CAA;
    border-color: #1B9CAA !important;
}

.form-check-input:focus {
    border-color: #86b7fe !important;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(27, 156, 170, 0.35);
}

.no-select {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari, Chrome, Opera, Samsung */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Edge, IE */
    user-select: none; /* Modern browsers */
    pointer-events: none;
    cursor: default;
}

.primary-check-input {
    accent-color: #1B9CAA;
}

input[id="loginform-rememberme"] {
    width: 18px;
    height: 18px;
}

.form-group.has-error .help-block {
    font-size: 14px;
    color: red;
    word-break: break-all;
}

.details .line-self {
    background: url("/themes/v1/images/oson/line-top-1.png") no-repeat center/cover;
    width: 100%;
    height: 31px;
}

.file-preview {
    border: none;
}

.krajee-default.file-preview-frame .kv-file-content {
    width: 100%;
    height: 100%;
}

.krajee-default .file-caption-info, .krajee-default .file-size-info {
    display: none !important;
}

.file-drop-zone {
    border: none;
    min-height: auto;
    border-radius: 4px;
    text-align: center;
    vertical-align: middle;
    margin: 0;
    padding: 0;
}

.file-drop-zone.clearfix {
    position: absolute;
    left: 0;
    /*top: 0;*/
    top: -5px;
    width: 100%;
    height: 100%;
    /*border-radius: 50%;*/
    z-index: 3;
}

.file-drop-zone.clickable {
    transition: border .4s linear;
    cursor: pointer;
    border: none !important;

}

.file-drop-zone.clickable:hover {
    transition: all .4s;
    border: none !important;
}

.file-drop-zone.clickable:after {
    border: 4px dashed transparent;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    position: absolute;
    transition: all .4s;
    border-radius: 50%;
}

.file-drop-zone.clickable:hover:after {
    border: 4px dashed var(--bs-primary);
    transition: all .4s;
}

.file-drop-zone .file-preview-thumbnails {
    height: 100%;
    cursor: pointer;
    transition: border .4s linear;
}

.file-drop-zone .file-preview-thumbnails:hover {
    transition: all .4s;
}

.file-drop-zone-title {
    display: none;
}

.file-drop-zone-title {
    padding: initial;
    font-size: 16px;
}


.file-error-message {
    min-width: 100%;
    width: 215px;
}

.form-update-image.has-success .btn-change {
    display: flex;
}

.form-update-image .btn-change {
    display: flex;
}

.file-input .btn-file input[type=file] {
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    text-align: right;
    opacity: 0;
    background: none repeat scroll 0 0 transparent;
    cursor: inherit;
    display: block;
    z-index: 5;
}

.form-update-image ~ .btn-update {
    display: none;
    position: relative;
}

.btn-update {
    /*display: none;*/
    opacity: 0;
    position: relative;
    user-select: none;
    pointer-events: none;
}

.btn-reset {
    display: none;
    opacity: 0;
    position: relative;
    user-select: none;
    pointer-events: none;
    width: 0;
    height: 0;
}

.payment .line-self {
    background: url("/themes/v1/images/oson/line-top-2.png") no-repeat center/cover;
    width: 100%;
    height: 31px;
}

.profile .profile-edit img {
    width: 100% !important;
    height: 100% !important;

    /*max-width: 120px !important;*/
    /*width: 120px !important;*/
    /*max-height: 120px !important;*/
    /*height: 120px !important;*/
}

.response-size-lg-author {
    width: 120px !important;
    height: 120px !important;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
    /*top: -1px !important;*/
    /*left: -1px !important;*/
}

.file-preview {
    border: none;
}

.krajee-default.file-preview-frame {
    margin: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    float: none;
    text-align: initial;
}

.file-footer-buttons {
    user-select: none !important;
    pointer-events: none !important;
    display: none !important;
}

.krajee-default.file-preview-frame {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.file-preview-image.kv-preview-data {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid #ccc;
}

.file-input.theme-gly.file-input-ajax-new span {
    display: inline-block !important;
    margin-top: 1.2rem !important;
}

.file-input.theme-gly span {
    display: inline-block !important;
    margin-top: 1.2rem !important;
}

.krajee-default.file-preview-frame .file-thumbnail-footer {
    display: none;
    user-select: none;
    pointer-events: none;
}

.file-input.theme-gly {
    display: flex !important;
    flex-wrap: wrap !important;
    column-gap: 0.75rem !important;
    align-items: center !important;
    height: 100%;
}

.activate {
    visibility: visible;
    display: block;
    pointer-events: visible;
}

.deactivate {
    visibility: hidden;
    display: none;
    pointer-events: none;
}

.h-max72px {
    max-height: 75px;
}

.form-payment-logos {
    max-width: 175px;
    width: 100%;
    height: 75px;
    object-fit: contain;
}

.kasko-multi-step-form .btn-check + .btn:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
    background-color: transparent !important;
    border-color: var(--bs-primary) !important;
}

.kasko-multi-step-form .btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
    box-shadow: var(--bs-primary) 0 7px 29px 0;
    background-color: transparent !important;
    border-color: var(--bs-primary) !important;
}

.intro-section .tab-btn,
.purchase .tab-btn {
    background: var(--bs-primary);
    color: white;
    border: var(--bs-nav-tabs-border-width) solid transparent;
    border-radius: 8px 0 8px 0;
    border-bottom: 0;
}

.intro-section .tab-btn.active,
.purchase .tab-btn.active {
    color: var(--bs-nav-tabs-link-active-color);
    background-color: var(--bs-nav-tabs-link-active-bg);
    border-color: var(--bs-primary);
}

.purchase #pjax_policy_osgo_calc_result {
    position: relative;
    top: -41px;
}

@media (min-width: 1401px) {
    .contact-us-page__left.fs-4 {
        margin-left: -10px;
    }
}

@media (max-width: 575px) {
    .w-100Mb {
        width: 100% !important;
    }

    .purchase #pjax_policy_osgo_calc_result {
        position: relative;
        top: -80px;
    }

    .purchase #pjax_policy_osgo_calc_result .nav.nav-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 450px) {
    .circular-progress {
        width: 36px;
        height: 36px;
    }

    .circular-progress:before {
        height: 28px;
        width: 28px;
    }

    .value-container {
        font-size: 12px;
    }
}
.p-relative
{
    position: relative;
}
.remove-item-parent,.remove-child-parent {
    width: 38px;
    height: 38px;
}
.pt-10 {
    padding-top: 10px;
}