body {
    color: #424242 !important;
}

.c-no-border {
    border: transparent !important;
}
.c-no-bg{
    background: transparent !important;
}

/* img */
/* ==================================== */
.c-div-1-1 {
	background-color: transparent;
	width: 100%;
	padding-top: 100%;
	/* 1:1 Aspect Ratio */
	position: relative;
	/* If you want text inside of it */
}

.c-div-4-3 {
	background-color: #23A2D8;
	width: 100%;
	padding-top: 75%;
	/* 1:1 Aspect Ratio */
	position: relative;
	/* If you want text inside of it */
}

.c-div-3-4 {
	background-color: #23A2D8;
	width: 100%;
	padding-top: 120%;
	/* 1:1 Aspect Ratio */
	position: relative;
	/* If you want text inside of it */
}

.c-select-center{
	text-align-last: center;
    text-align: center;
    -ms-text-align-last: center;
    -moz-text-align-last: center;
}
.c-shadow{
	-webkit-box-shadow: 0px 0px 16px -1px rgba(115,115,115,0.6);
	-moz-box-shadow: 0px 0px 16px -1px rgba(115,115,115,0.6);
	box-shadow: 0px 0px 16px -1px rgba(115,115,115,0.6);
}
.c-shadow-sm{
	-webkit-box-shadow: 0px 0px 5px 0px rgba(156,156,156,1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(156,156,156,1);
    box-shadow: 0px 0px 5px 0px rgba(156,156,156,1);
}

.c-img-3-4 {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 75%;
	height: 100%;
	object-fit: cover;
}

.c-img-1-1 {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.c-img-z-50-50{
    width: 50px;
    height:50px;
}

.c-border-radius{
    border-radius: 5px;
}

.c-img-round {
	border-radius: 1000px;
}


/* margin & padding */
/* ==================================== */
.mt--5 {
	margin-top: -5px !important;
}
.mt--10 {
	margin-top: -10px !important;
}
.mt--15 {
	margin-top: -15px !important;
}
.mt--20 {
	margin-top: -20px !important;
}
.mt--25 {
	margin-top: -25px !important;
}
.mt--30 {
	margin-top: -30px !important;
}
.mb-8{
    margin-bottom: 8px !important;
}


/* text & font */
/* ==================================== */
.c-text-line-through{
    text-decoration: line-through;
}
.c-text-underline{
    text-decoration: underline;
}

.fz-12{
    font-size: 12px;;
}
.fz-15{
    font-size: 15px;;
}
.fz-20{
    font-size: 20px;;
}
.text-brand-blue{
	color: #3548E4 ;
}
.text-brand{
	color: #FF4B36 ;
}
.f-post-date{
    font-size: 12px;
}


/* border */
/* ==================================== */
.c-bb-s-1{
    border-bottom: #ddd solid 1px;
}



/* button */
/* ==================================== */
.c-btn-secondary{
    background: #9a9a9a !important;
    border: solid 1px #9a9a9a !important;
    color: #FFFFFF;
}
.c-btn-secondary:hover{
    background: #FFFFFF !important;
    border: solid 2px #9a9a9a !important;
    color: #585858;
}

.c-btn-primary{
    background: #3548E4 !important;
    border: solid 1px #3548E4 !important;
    color: #FFFFFF;
}
.c-btn-primary:hover{
    background: #FFFFFF !important;
    border: solid 2px #3548E4 !important;
    color: #FF4B36;
}

.c-btn-facebook{
    background: #3B5998 !important;
    border: solid 1px #3B5998 !important;
    color: #FFFFFF;
}
.c-btn-facebook:hover{
    background: #FFFFFF !important;
    border: solid 2px #3B5998 !important;
    color: #3B5998;
}

.c-btn-google{
    background: #D01717 !important;
    border: solid 1px #D01717 !important;
    color: #FFFFFF;
}
.c-btn-google:hover{
    background: #FFFFFF !important;
    border: solid 2px #D01717 !important;
    color: #D01717;
}

.c-btn-line{
    background: #43C606 !important;
    border: solid 1px #43C606 !important;
    color: #FFFFFF;
}
.c-btn-line:hover{
    background: #FFFFFF !important;
    border: solid 2px #43C606 !important;
    color: #43C606;
}

.color-line{
    color: #43C606 !important;
}

.border-line{
    border: 2px solid #333;
    border-radius: 15px;
}

/* input */
/* ==================================== */
.c-switch input {
    display:none;
}
.c-switch {
    display:inline-block;
    width:60px;
    height:28px;
    margin:8px;
    /* transform:translateY(50%); */
    position: relative;;
}

.c-slider {
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    border-radius:30px;
    box-shadow:0 0 0 2px #777, 0 0 4px #777;
    cursor:pointer;
    border:4px solid transparent;
    overflow:hidden;
     transition:.4s;
}
.c-slider:before {
    position:absolute;
    content:"";
    width:100%;
    height:100%;
    background:#777;
    border-radius:30px;
    transform:translateX(-30px);
    transition:.4s;
}

input:checked + .c-slider:before {
    transform:translateX(30px);
    background:#3548E4;
}
input:checked + .c-slider {
    box-shadow:0 0 0 2px #3548E4,0 0 2px #3548E4;
}

.c-separator {
    display: flex;
    align-items: center;
    text-align: center;
}
.c-separator::before, .c-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #cccccc;
}
.c-separator::before {
    margin-right: .25em;
}
.c-separator::after {
    margin-left: .25em;
}

.popover {
    color: rgba(0, 0, 0, .87)
}



/* box */
/* ==================================== */
.boxw{
    width: 100%;
    border: none;
    box-shadow: -1px 16px 32px 0px rgba(0, 53, 145, 0.04);
    padding: 25px 60px;
    border-radius: 50px;
    background-color: #ffffff;
}

@media (max-width: 543px) {
    .pull-none-xs {
        float: none !important
    }

    .dropdown-menu.pull-none-xs {
        left: 0
    }
}

/* Text Required */
.text-required {
    position: relative;
    display: inline-block;
}

.text-required::before {
    content: "*";
    position: absolute;
    right: -10px;
    color: rgb(255, 83, 83);
    font-size: 16px;
}
/* Image */
.img-100{
    width:150px;
    height:150px;
}


/* Services Images */
.services-img{
    width: 200px;
}

@media screen and (max-width:500px){
    .services-img{
        width: 120px;
    }
    .features-content h5{
        font-size: 13px;
    }
}


/* Image warpper */
.warpper-image{
    position:relative;
    padding-top:56.25%;
    overflow:hidden;
}

.warpper-image img{
    position: absolute;
    top: 0;
    transition: 1s;
    width: 100%;
    height: 100%;
}

.warpper-image img:hover{
    transform: scale(1.2);
}


.approved-img{
    width: 130px;
}

@media screen and (max-width:400px){
    .approved-img{
        width: 80px;
    }
}

/* Jarallax Text title */
.bg-section-orange{
    padding:50px;
}
.bg-section-orange h2,.bg-section-orange h5{
    color:#fff;
}

/* Section About */
.text_about{
    letter-spacing: 1px;
    line-height: 30px;
}

.text-orange{
    color: #F4492F;
}


/* Button Social */
.btn-facebook {
    background: #3B5998 !important;
    border-radius: 0;
    color: #fff;
    border-width: 1px;
    border-style: solid;
    border-color: #3B5998 !important;
    padding: 0.8rem !important;
}
.btn-facebook:link, .btn-facebook:visited {
    color: #fff !important;
}
.btn-facebook:active, .btn-facebook:hover {
    background: #263961 !important;
    color: #fff !important;
}

.btn-line {
    background: #00c300 !important;
    border-radius: 0;
    color: #fff;
    border-width: 1px;
    border-style: solid;
    border-color: #00c300 !important;
    padding: 0.8rem !important;
}
.btn-line:link, .btn-line:visited {
    color: #fff;
}
.btn-line:active, .btn-line:hover {
    background: #029702 !important;
    color: #fff !important;
}

.btn-buy {
    background: #F4492F;
    border-radius: 0;
    color: #fff;
    border-width: 1px;
    border-style: solid;
    border-color: #F4492F;
    padding: 0.8rem !important;
}
.btn-buy:link, .btn-buy:visited {
    color: #fff;
}
.btn-buy:active, .btn-buy:hover {
    background: transparent;
    color: #333 !important;
    border-color: #F4492F;
}
.btn-contact {
    background: #0062cc;
    border-radius: 0;
    color: #fff;
    border-width: 1px;
    border-style: solid;
    border-color: #0062cc;
    padding: 0.8rem !important;
}
.btn-contact:link, .btn-contact:visited {
    color: #fff;
}
.btn-contact:active, .btn-contact:hover {
    background: transparent;
    color: #333 !important;
    border-color: #0062cc;
}

.c-btn-contact{
    background: #0062cc !important;
    border: 1px solid transparent;
}
.c-btn-contact:hover{
    background: transparent !important;
    border: 1px solid #0062cc;
    color: #0062cc !important;
}

.btn-google {
    background: #D44638;
    border-radius: 0;
    color: #fff;
    border-width: 1px;
    border-style: solid;
    border-color: #D44638;
    padding: 0.8rem !important;
}
.btn-google:link, .btn-google:visited {
    color: #fff;
}
.btn-google:active, .btn-google:hover {
    background: #B23121;
    color: #fff !important;
}
.btn-social {
    background: #fff !important;
    border-radius: 0;
    color: #333 !important;
    border: 1px solid #333;
    padding: 0.8rem !important;
}
.btn-social:link, .btn-social:visited {
    color: #333;
}
.btn-social:active, .btn-social:hover {
    background: #333 !important;
    color: #fff !important;
    border: 1px solid transparent;
}

.text-hover-dark{
    color: #333;
    transition: 0.4s ease-in-out;
}
.text-hover-dark:hover{
    color: rgb(126, 126, 126);
}

.s-btn {
    -moz-user-select: none;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 0;
    padding: 0.5rem 2rem;
    text-align: center;
    text-transform: capitalize;
    touch-action: manipulation;
    transition: all 0.3s ease 0s;
    vertical-align: middle;
    white-space: nowrap;
}

/* Input Box */
.inputBox{
    position: relative;
    width: 100%;
    height: 60px;
}
.inputBox input{
    outline: none;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    padding: 0 20px;
    font-size: 20px;
    box-sizing: border-box;
    border-radius: 50px;
    box-shadow: -4px -4px 10px rgba(255, 255, 255, 1),
    inset 4px 4px 10px rgba(0, 0, 0, 0.05),
    inset -4px -4px 10px rgba(255, 255, 255, 1),
    4px 4px 10px rgba(0, 0, 0, 0.05) !important;
    transition: 0.5s ease-in-out;
}
.inputBox input:hover{
    box-shadow:
    inset 8px 8px 10px rgba(0, 0, 0, 0.05),
    inset -8px -8px 10px rgba(255, 255, 255, 1),
    -8px -8px 10px rgba(255, 255, 255, 1),
    8px 8px 10px rgba(0, 0, 0, 0.05) !important;
}
.inputBox input:focus{
    box-shadow:
    inset 8px 8px 10px rgba(0, 0, 0, 0.05),
    inset -8px -8px 10px rgba(255, 255, 255, 1),
    -8px -8px 10px rgba(255, 255, 255, 1),
    8px 8px 10px rgba(0, 0, 0, 0.05) !important;
}
.inputBox input::placeholder{
    color: rgba(143, 143, 143, 0.863);
}


/* Custom Padding And Margin */
.c-pb-50{
    padding: 50px;
}

.c-mb-70{
    margin-bottom: 70px;
}


/* Content And Detail */
.img-health{
    max-height: 130px;
    width: 100%;
    object-fit: contain;
}

.img-health2{
    max-height: 150px;
    width: 100%;
    object-fit: contain;
}

.img-fire{
    max-height: 150px;
    width: 100%;
    object-fit: contain;
}

.img-icon-fire{
    width: 100px;
    height: 100px;
}
.img-icon-fire.thunder{
    height: 100px;
}

.text-responsive-8{
    font-size: 20px;
    line-height: 30px;
}

.img-accident-money{
    max-height: 120px;
    width: 100%;
    object-fit: contain;
}


.img-icon-insure{
    width: 100%;
    height: 120px;
    position: relative;
}
.img-icon-insure img{
    width: 100%;
    height: 100%;
}

.content-box{
    width: 100%;
    height: 80px;
}

.c-single-about {
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    padding: 1rem 1rem;
    transform: translateY(0);
    transition: .3s;
}

.modal-overflow-y{
    height: 500px;
    overflow-y: scroll;
}

.bootstrap-datetimepicker-widget.dropdown-menu:hover{
    background-color:none !important ;
}


/* Payment Css */
.btn-pay{
    padding: 10px 37px;
    outline: none !important;
    border:none !important;
    cursor: pointer;
    color: #fff;
    text-align: center;
    border-radius: 25px;
    transition: 0.5s;
    background-size: 200% auto;
}
.btn-bg-linear{
    /* background: #FDC830 !important;
    background: -webkit-linear-gradient(to right, #F37335, #FDC830) !important;
    background: linear-gradient(to right, #F37335, #FDC830) !important; */
    background-image: linear-gradient(to right, #FF8008 0%, #FFC837 51%, #FF8008 100%);
}

.btn-pay:hover{
    background-size: 100% auto;
}

.fz-pay{
    font-size: 0.8rem;
    color: #333;;
}

.fz-price{
    font-size: 1rem;
}
@media screen and (min-width:500px){
    .fz-pay{
        font-size: 1.5rem;
        color: #333;;
    }
    .fz-price{
        font-size: 2.5rem;
        color: tomato;
    }
}

.icon_login{
    font-size: 60px;
    width: 100px;
    height: 100px;
    background: #ff6347;
    border-radius: 50%;
    align-self: center;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin: 0 auto;
    color: #fff;
}

.icon_user{
    border-radius: 50%;
    position: relative;
    padding: 3%;
    overflow: hidden;
    display: flex;
    margin-right: 0.5rem;
}

.icon_user img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}


@media screen and (min-width:1000px){
    .navbar{
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    /* Icon User */
    .icon_user{
        border-radius: 50%;
        position: relative;
        width: 40px;
        height: 40px;
        overflow: hidden;
        display: flex;
        margin-left: 0rem;
        margin-right: 0.5rem;
        box-shadow: 0 0px 20px #ff8d4a;
    }


    .icon_user img{
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    .btn_login {
        -moz-user-select: none;
        background: #F4492F;
        border: 2px solid #F4492F;
        border-radius: 50px;
        color: #fff !important;
        cursor: pointer;
        display: inline-block;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 1;
        margin-bottom: 0;
        padding: 5px 10px !important;
        text-align: center;
        text-transform: capitalize;
        touch-action: manipulation;
        transition: all 0.3s ease 0s;
        vertical-align: middle;
        white-space: nowrap;
    }
    .btn_login:hover {
        color: #fff;
        background-color: #007bff;
        border-color: #007bff;
    }
}


label.error {
    color: #fff !important;
    background: #ff5050;
    padding: 0 1rem;
    border-radius: 5px;
    width: 100%;
}

.c-img-round{
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

@media screen and (max-width:992px){
    .c-div-1-1.responsive-img-c{
            background-color: transparent;
            width: 50% !important;
            padding: 25% !important;
            position: relative;
            margin: 0 auto;
    }
}


.mockup_shadow ~ .select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 45px;
    user-select: none;
    -webkit-user-select: none;
}

.mockup_shadow ~ .select2-container--default .select2-selection--single {
    background-color: #fff;
    border: transparent;
    border-radius: 5px;
    box-shadow: 0 5px 11px -3px rgb(0 0 0 / 40%);
}

.mockup_shadow ~ .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 45px;
}

.mockup_shadow ~ .select2 {
    width: 100% !important;
}

.mockup_shadow ~ .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 45px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
}

.select2-dropdown {
    background-color: white;
    border: transparent !important;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
    box-shadow: 0 5px 15px -3px rgb(0 0 0 / 40%);
}



/* Form Custom */
.form-control.mockup_shadow .select2{
    display: block;
    width: 100%;
    padding: 0.375rem .75rem;
    height: 50px !important;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    border-radius: 3.25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    box-shadow: 0 5px 15px -5px rgba(0,0,0,0.4);
    max-width: 100%;
}

/* @media screen and (min-width:992px){

    .form-control.mockup_shadow .select2{
        display: block;
        width: 100%;
        padding: 0.375rem .75rem;
        height: 50px !important;
        font-size: 1rem;
        line-height: 1.5;
        color: #495057;
        background-color: #fff;
        background-clip: padding-box;
        border: none;
        border-radius: 3.25rem;
        transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
        box-shadow: 0 5px 15px -5px rgba(0,0,0,0.4);
        max-width: 300px;
    }
} */


.custom-control-label::before {
    position: absolute;
    top: 0px;
    left: 0;
    display: block;
    width: 1.2rem;
    height: 1.2rem;
    pointer-events: none;
    content: "";
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #dee2e6;
}

.custom-control-label::after {
    position: absolute;
    top: 0px;
    left: 0;
    display: block;
    width: 1.2rem;
    height: 1.2rem;
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.nice-select.shop-select {
    border: 1px solid #f4492f;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 16px;
    color: #788892;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    padding-right: 45px;
}

/* car product page css */
.header_search_car{
    background: #f5932e;
    padding: 2rem;
}
.header_search_car h1{
    color: #fff !important;
}

.shadow-box{
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    background-color: rgba(255, 255, 255, 1);
}

.stepwizard-row:before {
    top: 50% !important;
    transform: translateY(-50%) !important;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 98% !important;
    height: 3px !important;
    background-color: rgb(255, 255, 255) !important;
    z-index: 0;
}

.stepwizard-row {
    display: flex !important;
    justify-content: space-between !important;
    width: 100% !important;
}

.stepwizard-step {
    display: flex;
    text-align: center;
    position: relative;
    /* justify-content: space-between; */
    align-items: center;
    flex-direction: column;
    margin-top: 40px !important;
}

.bg-sunkist{
    background: #ffe259;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to top, #ffa751, #ffe259);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to top, #ffa751, #ffe259); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}


@media screen and (min-width:992px){
    /* .btn-circle {
        width: 70px !important;
        height: 70px !important;
        text-align: center;
        padding: 6px 0;
        font-size: 24px !important;
        line-height: 2.428571 !important;
        margin-top: -20px !important;
        border-radius: 50% !important;
    } */
    .fz-small{
        font-size: 1.2rem;
    }
}

.text-yellow{
    color: #f4492f !important;
}

.max-height-900{
    height: auto;
    max-height: 1340px;
    min-height: 850px;
}

.bg-juicy{
    background: #FF8008;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to top, #FFC837, #FF8008);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to top, #FFC837, #FF8008); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

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


.img-people{
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 100%;
    overflow: hidden;
}
.img-people img{
    position: absolute;
    width: 100%;
    height: 100%;
}
.img-people-56{
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 100%;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 1);
}
.img-people-56 img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: -10px;
    left: 0;
    object-fit: contain;
}



.inner_input {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    user-select: none;
}

.edit-profile{
    padding: 0.3rem 1rem;
    background: #f4492f;
    border: 1px solid transparent;
    color: white;
    border-radius: 25px;
}
.edit-profile:hover{
    background: #942717;
    color: #fff;
}



/* Table */
.btn-action{
    background: transparent;
    border: 1px solid #f4492f;
    border-radius: 25px;
    padding: 0.5rem 1rem;
    color: #f4492f;
    transition: 0.2s ease-in;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-action:hover{
    background: #f4492f;
    border: 1px solid transparent;
    color: #fff;;
}

.dataTables_filter input{
    display: inline-block;
    border: 1px solid rgb(244, 73, 47);
    padding: 0.3rem 1rem;
}
.dataTables_filter input:focus{
    display: inline-block;
    border: 1px solid rgb(244, 73, 47) !important;
    padding: 0.3rem 1rem;
}

.dataTables_length label select{
    border: 1px solid rgb(244, 73, 47) !important;
    outline: none;
    padding: 0.3rem 1rem;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current{
    color: #fff !important;
    border-radius: 50% !important;
    background: #FF4B36 !important;
    border: 1px solid transparent !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{
    color: #333 !important;
    border-radius: 50% !important;
    background: transparent !important;
    border: 1px solid #FF4B36 !important;
}

button.dt-button, div.dt-button, a.dt-button {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    margin-right: 0.333em;
    margin-bottom: 0.333em;
    padding: 0.5em 1em;
    border: 1px solid transparent !important;
    border-radius: 2px;
    cursor: pointer;
    font-size: 0.88em;
    line-height: 1.6em;
    color: #ffffff !important;
    white-space: nowrap;
    overflow: hidden;
    background-color: #f4492f !important;
    background-image: none !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-decoration: none;
    outline: none;
    text-overflow: ellipsis;
}


table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>td:first-child:before, table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>th:first-child:before {
    top: 50% !important;
    left: 4px;
    height: 14px;
    width: 14px;
    transform: translateY(-50%) !important;
    display: block;
    position: absolute;
    color: white;
    border: 2px solid white;
    border-radius: 14px;
    box-shadow: 0 0 3px #444;
    box-sizing: content-box;
    text-align: center;
    text-indent: 0 !important;
    font-family: 'Courier New', Courier, monospace;
    line-height: 14px;
    content: '+';
    background-color: #f4492f !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td:first-child:before, table.dataTable.dtr-inline.collapsed>tbody>tr.parent>th:first-child:before {
    content: '-';
    background-color: #3548e4 !important;
}

#toggle_searh_insurance{
    padding: 1rem 0;
    cursor: pointer;
    user-select: none;
}


.search_insu_box{
    display: none;
}

.seach_insurance{
    display: block;
}
@media screen and (max-width:992px){
    .seach_insurance{
        display: none;
    }
    .search_insu_box{
        display: block !important;
    }
}

.w-50px{
    width: 50px;
    text-align: center;
}


.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff !important;
    background-color: #f4492f !important;
    position: relative;
}
.nav-pills .nav-link:hover{
    color: #fff !important;
    background-color: #f4492f !important;
}
.nav-pills .nav-link {
    border-radius: .25rem;
    display: flex !important;
    align-items: center !important;
}
.nav-pills a.nav-link{
    color: #333 !important;
}

.nav-pills .nav-link.active::before{
    content: "";
    background-color: sandybrown;
    position: absolute;
    width: 10px;
    height: 100%;
    background-color: #3548e4;
    left: 0;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}

.shadow-img-avatar{
    box-shadow: 0 0px 30px #f7a576;
}

.c-div-3-3{
    background-color: transparent;
    width: 150px;
    height: 150px;
    position: relative;
}



.border-top{
    border-top-left-radius:25px;
    border-top-right-radius:25px;
}


.modal-agree-scroll{
    max-height: 518px;
    height: auto;
    overflow-y: auto;
}

@media screen and (max-width:500px){
    .fz-20{
        font-size: 13px !important;
    }
    .backBtn,.nextBtn{
        padding: 0.3rem 1.5rem !important;
    }
}
@media screen and (max-width:461px){
    .stepwizard-row:before {
        top: 41% !important;
        transform: translateY(-50%) !important;
        bottom: 0;
        position: absolute;
        content: " ";
        width: 96% !important;
        height: 3px !important;
        background-color: rgb(255, 255, 255) !important;
        z-index: 0;
    }
}

@media screen and (max-width:320px){
    .fz-20{
        font-size: 10px !important;
    }
    .backBtn,.nextBtn{
        padding: 0.3rem 1.5rem !important;
    }
}

.s-blog-post.s-blog-post-c{
    box-shadow: 0px 0px 10px rgb(0, 0, 0,0.2) !important;
    transition: .3s;
}

h2.fz-40px{
    font-size: 24px !important;
}

@media screen and (min-width:768px){
    .text-option{
        font-size: 24px;
        color: #333;
    }
    .icon-check-shield{
        max-height:50px;
        object-fit: contain;
    }
    h2.fz-40px{
        font-size: 40px !important;
        letter-spacing: -3px;
        line-height: 1.1;
    }
}



.text-option{
    color: #333;
}

.icon-check-shield{
    max-height:30px;
    object-fit: contain;
    margin-right: 0.5rem;
}

@media screen and (min-width:768px){
    .border-line-bottom{
        border-bottom: 2px solid #dee2e6;
        padding: 0.3rem;
    }

    .border-line-right{
        border-right:2px solid #dee2e6;
    }
}


.name-insurance-truncate{
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
}

.img-wrapper-preview{
    overflow: hidden;
    position: relative;
    /* border: 1px solid #333; */
    width: 270px;
    height: 185px;
    margin: 0 auto;
}

@media screen and (max-width:500px){
    .img-wrapper-preview{
        overflow: hidden;
        position: relative;
        /* border: 1px solid #333; */
        width: 185px;
        height: 128px;
        margin: 0 auto;
    }
}


.img-wrapper-preview img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: ease-in-out 0.3s;
}

.img-wrapper-preview img:hover{
    transform: scale(1.1);
}

ol.number-ol li{
    list-style: unset !important;
}
#content{
    background-color: #fff;
}
hr.custome {
    border-bottom: 4px solid #e9ecef !important;
}
.bg-green{
    background: #a3b996 !important;
}
ol.number-ol li{
    list-style: unset !important;
}
ol.number-ol {
    list-style-type: none;
    counter-reset: item;
    margin: 0;
    padding: 0;
}

ol.number-ol > li {
    display: table;
    counter-increment: item;
    margin-bottom: 0.6em;
}

ol.number-ol > li:before {
    content: counters(item, ".") ". ";
    display: table-cell;
    padding-right: 0.6em;
}

li ol.number-ol > li {
    margin: 0;
}

li ol.number-ol > li:before {
    content: counters(item, ".") " ";
}

.warpper-img-bank{
    width: 40px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid #e6e5e5;
    position: relative;
    overflow: hidden;
}
.warpper-img-bank img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
}

.badge-custome-orange{
    border: 1px solid rgb(252, 102, 76);
    background: transparent;
    color: #007bff;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 10px;
}

.badge_noti-pst{
    position: absolute;
    right: 19px;
    top: 12px;
}
.badge-custome-orange.noti-badge{
border: 1px solid transparent !important;
background: red !important;
color: #fdfeff !important;
}

@media screen and (max-width:1000px){
    .badge-custome-orange{
        border: 1px solid #f9f9f9;
        background: #f9f9f9;
        color: #f4492f;
    }
}

.bg-org{
    background: #FDC830;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to bottom, #F37335, #FDC830);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to bottom, #F37335, #FDC830); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.image-insure-wrapper{
    width: 100%;
    height: 140px;
    position: relative;
}

.select-compare {
    width: 100%;
    height: auto;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 15px 20px;
    background: #fff;
    z-index: 10000;
    -webkit-box-shadow: 0 -1px 3px 0 rgba(150,150,150,.25);
    -moz-box-shadow: 0 -1px 3px 0 rgba(150,150,150,.25);
    box-shadow: 0 -1px 3px 0 rgba(150,150,150,.25);
}
.select-compare ul {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}
.select-compare ul>li .icon-close {
    top: 0;
    right: 0;
    position: absolute;
    z-index: 100;
}
.select-compare .item {
    height: 75px;
    padding: 10px;
    border: 1px solid #ccc;
    position: relative;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.select-compare .item img {
    width: 26px;
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-block;
}

.select-compare .item .detail {
    width: 100%;
    display: block;
    padding-left: 35px;
}

.select-compare .item .detail p {
    font-size: 15px;
    line-height: 18px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}
.color-orage {
    color: rgb(255, 45, 8)!important;
}

@media only screen and (min-width: 768px){
    .select-compare ul>li:last-child, .select-compare ul>li:nth-child(1), .select-compare ul>li:nth-child(2), .select-compare ul>li:nth-child(3) {
        display: block;
    }
}

.select-compare ul>li:last-child {
    float: right;
}
@media only screen and (min-width: 1024px){
    .select-compare ul>li {
        width: 17.66% !important;
    }
}

@media only screen and (min-width: 1024px){
    .select-compare ul>li {
        display: block;
    }
}

@media only screen and (min-width: 768px){
    .select-compare ul>li {
        width: 25%;
    }
    .select-compare ul>li {
        display: none;
    }
    .select-compare ul>li {
        float: left;
        width: 33.33%;
        margin: 0;
        padding: 10px;
        position: relative;
    }
}

@media only screen and (max-width: 767px){
    .select-compare ul>li:last-child {
        display: block;
        width: 100%;
    }
}



/* ----------------------------------------------------------------
	Owl Carousel CSS
-----------------------------------------------------------------*/

.owl-carousel .animated {
	-webkit-animation-duration: 1000ms;
	animation-duration: 1000ms;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.owl-carousel .owl-animated-in { z-index: 0; }

.owl-carousel .owl-animated-out { z-index: 1; }

.owl-carousel .fadeOut  {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
	0% { opacity: 1; }
	100% { opacity: 0; }
}

@keyframes fadeOut {
	0% { opacity: 1; }
	100% { opacity: 0; }
}

.owl-height {
	-webkit-transition:height 500ms ease-in-out;
	-o-transition:height 500ms ease-in-out;
	transition:height 500ms ease-in-out
}

.owl-carousel {
	display:none;
	-webkit-tap-highlight-color:transparent;
	position:relative;
	z-index:1;
	width: 100%;
}

.owl-carousel .owl-stage {
	position:relative;
	-ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
	content:".";
	display:block;
	clear:both;
	visibility:hidden;
	line-height:0;
	height:0
}

.owl-carousel .owl-stage-outer {
	position:relative;
	overflow:hidden;
	-webkit-transform:translate3d(0,0,0);
}

.owl-carousel.owl-loaded { display:block }

.owl-carousel.owl-loading {
	display:block;
	min-height: 100px;
	/* background: url('images/preloader.gif') no-repeat center center */
}

.owl-carousel .owl-refresh .owl-item { display:none }

.owl-carousel .owl-item {
	position: relative;
	min-height: 1px;
	float: left;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
	display:block;
	width:100%;
	-webkit-transform-style:preserve-3d;
}

.slider-element .owl-carousel .owl-item img { -webkit-transform-style: preserve-3d; }

.owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled { display: none; }

.owl-nav .owl-prev,
.owl-nav .owl-next,
.owl-dot,
.owl-dots button {
	cursor: pointer;
	cursor: hand;
	padding: 0;
	border: 0;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-loaded { display: block; }

.owl-carousel.owl-loading {
	opacity: 0;
	display: block;
}

.owl-carousel.owl-hidden { opacity: 0; }

.mega-menu-content .owl-carousel.owl-hidden { opacity: 1; }

.owl-carousel.owl-refresh .owl-item { display: none; }

.owl-carousel.owl-drag .owl-item {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-grab {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -o-grab;
	cursor: -ms-grab;
	cursor: grab;
}

.owl-carousel.owl-rtl { direction: rtl; }

.owl-carousel.owl-rtl .owl-item { float: right; }

.no-js .owl-carousel { display: block; }

.owl-carousel .owl-item .owl-lazy {
	opacity:0;
	-webkit-transition:opacity 400ms ease;
	-o-transition:opacity 400ms ease;
	transition:opacity 400ms ease
}

.owl-carousel .owl-item img { transform-style:preserve-3d }

.owl-carousel .owl-video-wrapper {
	position:relative;
	height:100%;
	background:#111
}

.owl-carousel .owl-video-play-icon {
	position: absolute;
	height: 64px;
	width: 64px;
	left: 50%;
	top: 50%;
	margin-left: -32px;
	margin-top: -32px;
	background: url("images/icons/play.png") no-repeat;
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-webkit-transition: scale 100ms ease;
	-o-transition: scale 100ms ease;
	transition: scale 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
	-webkit-transition:scale(1.3,1.3);
	-o-transition:scale(1.3,1.3);
	transition:scale(1.3,1.3)
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn { display:none }

.owl-carousel .owl-video-tn {
	opacity:0;
	height:100%;
	background-position:center center;
	background-repeat:no-repeat;
	-webkit-background-size:contain;
	-moz-background-size:contain;
	-o-background-size:contain;
	background-size:contain;
	-webkit-transition:opacity 400ms ease;
	-o-transition:opacity 400ms ease;
	transition:opacity 400ms ease
}

.owl-carousel .owl-video-frame {
	position:relative;
	z-index:1;
	height: 100%;
	width: 100%;
}


/* Owl Carousel - Controls
-----------------------------------------------------------------*/

.owl-carousel .owl-dots,
.owl-carousel .owl-nav {
	text-align: center;
	-webkit-tap-highlight-color: transparent;
	line-height: 1;
}

/* Owl Carousel - Controls - Arrows
-----------------------------------------------------------------*/

.owl-carousel .owl-nav [class*=owl-] {
	position: absolute;
	top: 50%;
	margin-top: -18px;
	left: -36px;
	zoom: 1;
	width: 36px;
	height: 36px;
	line-height: 32px;
	border: 1px solid rgba(0,0,0,0.2);
	color: #666;
	background-color: #FFF;
	font-size: 18px;
	border-radius: 50%;
	opacity: 0;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
    display: block !important;
}

.owl-carousel.with-carousel-dots .owl-nav [class*=owl-] { margin-top: -38px; }

.slider-element .owl-nav [class*=owl-],
.owl-carousel-full .owl-nav [class*=owl-] {
	margin-top: -30px;
	left: 0 !important;
	height: 60px;
	line-height: 60px;
	border: none;
	color: #EEE;
	background-color: rgba(0,0,0,0.4);
	font-size: 28px;
	border-radius: 0 3px 3px 0;
}

.owl-carousel-full .with-carousel-dots .owl-nav [class*=owl-] { margin-top: -50px; }

.owl-carousel .owl-nav .owl-next {
	left: auto;
	right: -36px;
}

.slider-element .owl-nav .owl-next,
.owl-carousel-full  .owl-nav .owl-next {
	left: auto !important;
	right: 0 !important;
	border-radius: 3px 0 0 3px;
}

.owl-carousel:hover .owl-nav [class*=owl-] {
	opacity: 1;
	left: -18px;
}

.owl-carousel:hover .owl-nav .owl-next {
	left: auto;
	right: -18px;
}

.owl-carousel .owl-nav [class*=owl-]:hover {
	background-color: #f4492f !important;
	color: #FFF !important;
	text-decoration: none;
}

.owl-carousel .owl-nav .disabled { display: none !important; }


/* Owl Carousel - Controls - Dots
-----------------------------------------------------------------*/

.owl-carousel .owl-dots .owl-dot {
	display: inline-block;
	zoom: 1;
	width: 8px;
	height: 8px;
	margin: 30px 4px 0 4px;
	opacity: 0.5;
	border-radius: 50%;
	background-color: #f4492f;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.owl-prev span,.owl-next span{
    font-size: 2rem !important;
}

.owl-carousel .owl-dots .owl-dot.active,
.owl-carousel .owl-dots .owl-dot:hover {
    opacity: 1;
    width: 16px;
    border-radius: 15px;
}


/* Text Datatable */
.text-whitespace-none{
    white-space: nowrap;
}


.height-s_blog::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

.height-s_blog::-webkit-scrollbar
{
	width: 10px;
	background-color: #F5F5F5;
}

.height-s_blog::-webkit-scrollbar-thumb
{
	background-color: #F4492F;
	background-image: -webkit-gradient(linear, 0 0, 0 100%,
    color-stop(.5, rgba(255, 255, 255, .2)),
    color-stop(.5, transparent), to(transparent));
}

.height-s_blog{
    padding: 25px 30px;
    padding-bottom: 10px;
    min-height: 215px;
}

.s-blog-content h4 {
    font-size: 22px !important;
}

a.text-share{
    color: rgb(244, 73, 47);
    transition: 0.3s ease-in-out;
}

a.text-share:hover{
   color: #3548E4;
}

.btn-noborder{
    border-radius: unset !important;
    padding: 1rem !important;
    border: unset !important;
}

.button-modal{
    padding: 0.3rem 1rem;
    background: #f4492f;
    border: 1px solid transparent;
    color: white;
    border-radius: 25px;
}

.card {
    overflow: hidden;
}

.card-block{
    padding: 14px 25px;
}
.card-block .rotate {
    z-index: 8;
    float: right;
    height: 100%;
}

.card-block .rotate i {
    color: rgba(20, 20, 20, 0.15);
    position: absolute;
    left: 0;
    left: auto;
    right: -10px;
    bottom: 0;
    display: block;
    -webkit-transform: rotate(-44deg);
    -moz-transform: rotate(-44deg);
    -o-transform: rotate(-44deg);
    -ms-transform: rotate(-44deg);
    transform: rotate(-44deg);
}

.c-display-1 {
    font-size: 1.4rem !important;
    font-weight: 400;
}

.card-shadow{
    box-shadow: 0 6px 6px rgba(0,0,0,0.2);
}

.nowrap{
    white-space: nowrap;
}

.modal-share-size{
    max-width: 60vw;
    margin: auto;
}

@media screen and (max-width:1578px){
    .modal-share-size{
        max-width: 90vw;
        margin: auto;
    }
}
@media screen and (max-width:400px){
    .modal-share-size{
        max-width: 100vw !important;
        margin: auto;
    }
}

.cpy-lk{
    height: 35px;
    line-height: 37px;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    background: #FF5722;
    padding: 0 0.5rem;
    color: #fff;
}

.sc-button{
    transition:all 0.3s ease-in-out;
    opacity: 1;
}

.sc-button:hover{
    opacity: 0.8;
}

@media screen and (max-width:768px){
    .btn-d-block{
        display: block !important;
        width: 100%;
    }
    .btn-d-block:not(:last-child){
        margin-bottom: .5rem;
    }
    .qr_shared  img{
        width: 220px !important;
    }
}

@media screen and (max-width:570px){
    .btn-block-modal
    {
        display: block;
        width: 90%;
        margin-bottom: .5rem !important;
        margin: 0 auto;
    }
}

.maw-w-btn{
    max-width: 170px;
    width: 100%;
}


img.avatar{
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 100%;
}
.pst-rlt{
    position: relative;
}

.badge-custome-org{
    border: 1px solid rgb(252, 102, 76);
    background:rgb(252, 102, 76);
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    font-size: 10px;
    position: absolute;
    display: block;
    top: -5px;
    right: 0;
    text-align: center;
    line-height: 170%;
}

.flt-r{
    float: right !important;
}

@media screen and (max-width:1000px){
    .badge-custome-org{
        background: #3F51B5 !important;
        border: 1px solid #3F51B5;
    }
    .badge_noti-pst {
        position: absolute;
        right: 0 !important;
        top: -7px !important;
    }
    .mean-container .mean-nav ul li a.mean-expand {
        -moz-border-bottom-colors: none;
        -moz-border-left-colors: none;
        -moz-border-right-colors: none;
        -moz-border-top-colors: none;
        background: rgba(255, 255, 255, 0.1) none repeat scroll 0 0;
        border-color: currentcolor currentcolor rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.4);
        border-image: none;
        border-style: none none solid solid;
        border-width: medium medium 1px 1px;
        font-weight: 700;
        height: 100% !important;
        margin-top: 1px;
        padding: 0px 12px !important;
        position: absolute;
        right: 0;
        text-align: center;
        top: 0;
        width: 26px;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .count-number-badges{
        display: flex !important;
        align-items: center;
    }
}


.btn-login{
    -moz-user-select: none;
    background: #F4492F;
    border-radius: 50px;
    color: #fff !important;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 0;
    padding: 12px 24px !important;
    text-align: center;
    text-transform: capitalize;
    touch-action: manipulation;
    transition: all 0.3s ease 0s;
    vertical-align: middle;
    white-space: nowrap;
}
.btn-login:hover{
    background: rgb(194, 57, 36);
    color: #fff !important;
}

@media screen and (max-width:1000px){
    .btn-login{
        border-radius: unset !important;
        border-top: 1px solid rgba(255, 255, 255, 0.5);
        padding: 10px 5% !important;
    }
    .btn-login:hover{
        color: #fff !important;
    }
}

@media screen and (max-width:340px){
    .register-btn{
        display: block;
    }
    .header-login-text{
        font-size: 20px;
    }
}

.line-space-org{
    width: 100px;
    height: 5px;
    background: #FF4B36;
    border-radius: 5px;
    margin: 1rem 0;
}

@media screen and (max-width:991px){
    .line-space-org{
        width: 100px;
        height: 5px;
        background: #FF4B36;
        border-radius: 5px;
        margin: 1rem auto;
    }
}

.fa-2x-custom{
    font-size: 1em !important;
}

body{
    padding: 0 !important;
    overflow-x: hidden !important;
}

@media screen and (max-width:425px){
    .mob-block-small{
        display: block !important;
        font-size: 11px;
    }
    .features-icon {
        width: 100px;
        height: 100px;
    }
    .features-icon .services-img-2{
        width: 80px;
    }
}

#compare li{
    position: relative;
}

@media screen and (max-width:768px){
    #compar{
        margin-top: 12px;
    }
    #compare li:not(:last-child){
        margin-bottom: 1rem;
    }
    .commisstion-show h3{
        font-size: 16px !important;
    }
}

.commisstion-show{
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 300;
    left: 0;
    right: 0;
}

.text-truncate{
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
}

.card-agent{
    background: #fff;
    border-radius: 25px;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.2);
    padding: 2rem 1rem;
    min-height: 333px;
}
.card-agent h5{
    line-height: 1.5;
}

.btn-register-agent{
    background: linear-gradient(90deg, #FF640D 2%, #FE8C00 100%);
    border-radius: 50px;
    font-size: 30px;
    padding: 1rem 4rem;
    color: #fff;
}
.btn-register-agent:hover{
    color: #fff;
}

.list-it-main{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

.it-sc{
    width: 20%;
    padding: 1rem;
    margin-bottom: 1rem;
}

.it-sc .card-it-sc{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #fff;
    box-shadow: 0px 0px 24px 0px rgba(0,0,0,0.1);
    padding: 3rem 1rem;
}

.color-1{
    color: #f84b2d;
}
.color-2{
    color: #00B900;
}
.color-3{
    color: #3b5998;
}
.color-4{
    color: #e97a12;
}
.color-5{
    color: #2086fa;
}

.bd-color-org{
    height: 3px;
    background: #FF8008;
    width: 100%;
    max-width: 500px;
    display: inline-block;
}

.bd-org-txt{
    border-bottom: 2px solid #FF8008;
}

@media screen  and (max-width:1024px){
    .it-sc{
        width: 33.3333% !important;
        padding: 1rem;
    }
}

@media screen  and (max-width:560px){
    .it-sc{
        width:50% !important;
        padding: .7rem;
    }
}

@media screen  and (max-width:400px){
    .it-sc{
        width:100% !important;
        padding: .7rem;
    }
}

.img-people-agent{
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 100%;
    overflow: hidden;
}

.img-people-agent img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-agent-digital{
    background: #fff;
    border-radius: 25px;
    box-shadow: 0px 10px 15px -3px rgb(0 0 0 / 20%);
    padding: 1rem 1rem;
    display: flex;
    align-items: center;
}
.card-agent-digital- h5{
    line-height: 1.5;
}

.avatar-agent{
    width: 185px;
    position: relative;
    height: 250px;
    overflow: hidden;
}

.avatar-agent img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}



table.dataTable thead tr{
    background: #f4492f;
    color: #fff;
}

th.sticky-top {
    z-index: 1 !important;
}

.main-org-loading{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0f0f0fc7;
    z-index: 999999;
}

.text-loading{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 3rem;
    color: #fff;
}

.loading-overlay {
    opacity: 1 !important;
}

.main-menu ul li {
	display: inline-block;
	margin-left: 30px;
	position: relative;
}

.btn-register-blue{
    background: #3548e4 !important;
}

.panel-header-img .img-avatar{
    display: inline-block;
    max-width: 30px;
    object-fit: contain;
}

.price-panel{
    display: inline-block;
    width: 90px;
    font-size: 0.8em;
    color: white;
    padding: 0 10px 1px 10px;
    border-radius: 200px;
    text-align: center;
}

.st-badge.w-auto{
    min-width: 150px !important;
    margin-bottom: 0.5rem;
}
.st-badge{
    display: inline-flex;
    border-radius: 25px;
    width: 45px;
    height: 30px;
    align-items: center;
    justify-content: center;
}

.st-badge.bg-primary{
    background-color: #FE8C00 !important;
    color: #fff;
}

.st-badge.bg-secondary{
    background-color: #022873 !important;
    color: #fff;
}


.fix1{
    background-color: #ffffff;
    border: 1px solid #022873;
    color: #022873;
}
.fix2{
    background-color: #ffffff;
    border: 1px solid #FE8C00;
    color: #FE8C00;
}

.user-select-none{
    user-select: none;
}

.prict-sm{
    color: #555555;
    font-size: 18px;
}
.prict-primary-lg{
    color: #FF640D;
    font-size: 24px;
    font-weight: bold;
}

.prict-primary-xl{
    color: #FF640D;
    font-size: 46px;
    font-weight: normal;
}

.price-discount-text{
    text-decoration: line-through;
}

.btn.btn-outline-default{
    border: 1px solid #A1A1A1;
    padding: 1rem;
    background: #fff;
    display: inline-block;
    color: #333 !important;
    border-radius: 0% !important;
    transition: 0.3s ease-in-out;
}
.btn.btn-outline-default:hover{
    border: 1px solid #ededed;
    padding: 1rem;
    background: #ededed;
    display: inline-block;
    color: #333 !important;
    border-radius: 0% !important;
}

.pl-3rem{
    padding-left: 3rem;
}

.bg-org.collapsed{
    background: #fff !important;
}

.bg-org.collapsed p.text-c-color {
    color: #333;
}

p.text-c-color {
    color: #fff;
}

.filter-header-txt{
    background: #022873;
    color: #fff;
    padding: 8px 5px;
    font-size: 16px;
    font-weight: bold;
}

.btn-filter-list{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.btn-filter-list li.col-w-3{
    width: 33.33%;
}
.btn-filter-list li.col-w-6{
    width: 50%;
}
.btn-filter-list li.col-w-4{
    width: 33.33%;
}

.main-card-filter{
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}

.btn-filter-list li a{
    display: block;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    margin: 0;
    padding: 0;
    border: solid 1px #ddd;
    padding: 7px 0;
    background: #fff;
    text-align: center;
}

.btn-filter-list li a.active{
    display: block;
    text-decoration: none;
    color: #fff;
    background: #3266CC;
}

.main-card-filter-header{
    color: #3266CC;
    font-weight: bold;
    font-size: 22px;
    background: #fff;
    padding: 1rem;
}

.bd-bt-grey{
    border-bottom: 3px solid #dcdcdc;
}

.radio-toolbar{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.radio-toolbar input[type="radio"] {
    display: none;
}

.radio-toolbar label {
    display: block;
    background-color: #fff;
    padding: 8px 11px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    margin: 0;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.radio-toolbar .col--6 {
    width: 50%;
}
.radio-toolbar .col--4 {
    width: 33.33%;
}

.radio-toolbar input[type="radio"]:checked+label {
    background-color: #3266CC;
    color: #fff;
}

.text-org{
    color: #FF640D !important;
}

.slider {
    border: 2px solid #FF640D !important;
    background: #FF640D !important;
}

.slider .handle {
    border: 1px solid #FF640D !important;
    background: #FF640D !important;
    height: 15px !important;
    width: 15px !important;
}

#slider-container .slider-container {
    background-color: #D8D8D8;
    height: 15px !important;
    border-radius: 25px !important;
}

.slider .EE, .slider .WW {
    margin-top: -8px !important;
}
.slider .WW {
    left: -12px !important;
}

.slider .EE {
    right: -12px !important;
}

.btn-flat{
    display: inline-block;
    padding: 1rem;
    background: #3548E4;
    border: transparent;
    color: #fff;
}

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

.card-insure{
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 7px 4px 56px -12px rgba(0,0,0,0.1),
                -13px 10px 43px -16px rgba(0,0,0,0.1);
}

.card-box-shadow{
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 7px 4px 56px -12px rgba(0,0,0,0.1),
                -13px 10px 43px -16px rgba(0,0,0,0.1);
    padding: 1rem;
}

.card-insure-head{
    background: #FF640D;
    padding: 1rem;
    text-align: center;
}

ul.item-insure{
    display: flex;
    flex-direction: column;
    width: 100%;
}
ul.item-insure li{
    padding: 0.8rem 0.5rem;
}
ul.item-insure li:nth-child(even){
    background: #fff;
}
ul.item-insure li:nth-child(odd){
    background: #F5F2F2;
}

.img-in-boxshadow img{
    height: 165px;
    width: 100%;
    object-fit: contain;
}

.card-payment{
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 7px 4px 56px -12px rgba(0,0,0,0.1),
                -13px 10px 43px -16px rgba(0,0,0,0.1);
}

.shadow--custom{
    box-shadow: 7px 4px 56px -12px rgba(0,0,0,0.1),
                -13px 10px 43px -16px rgba(0,0,0,0.1) !important;
    border: none !important;
}

.card-payment-header{
    padding: 1rem;
    background: #022873;
    color: #fff;
    font-size: 18px;
}

.card-payment-body{
    background: #fff;
    padding: 1rem;
}
.card-payment-body p{
    color: #333 !important;
    margin-bottom: 13px;
}

.divider-bottom{
    background: #eee;
    height: 1px;
    width: 100%;
    margin-bottom: 1rem;
}


.wrapper-img-promote{
    padding-top: 56.25%;
    position: relative;
    overflow: hidden;
    width: 100%;
    border: 1px solid #eee;
}

.wrapper-img-promote img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.text-blue{
   color: #022873;
}

.img-thumbnail-promote{
    width: 100%;
    height: 100%;
}
/* .container-thumbnail-promote{
    height: 500px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.img-thumbnail-promote{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
} */
#promotion{
    padding: 3rem 0;
    background: #FFF7F2;
}

#promotion .slick-dots li button {
    text-indent: -99999px;
    padding: 0;
    border: none;
    line-height: 1;
    height: 10px !important;
    width: 10px !important;
    background: #93979f !important;
    border-radius: 30px;
    margin: 0 5px;
    cursor: pointer;
}

#promotion .slick-dots li.slick-active button {
    background: #f4492f !important;
}

#promotion .slick-dots {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    bottom: -25px !important;
    line-height: 1;
}

.slide-arrow{
    background: #FFD7C0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
}
.slide-arrow i{
    color: #FF640D;
    font-size: 1rem;
}
#promotion .slide-arrow.prev-arrow,
#promotion .slide-arrow.next-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

#promotion .slide-arrow.prev-arrow{
    left: -30px;
    z-index: 999;
}
#promotion .slide-arrow.next-arrow{
    right: -30px;
    z-index: 999;
}

.promotion-item{
    margin: 0 10px;
}
.promotion-thumb{
    width: 100%;
    height: 285px;
    position: relative;
    overflow: hidden;
}

.promotion-thumb img{
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Feature */
.features-icon .services-img{
    width: 200px !important;
}

.features-icon .services-img-2{
    position: absolute;
    object-fit: contain;
    top: 50%;
    left: 50%;
    width: 110px;
    margin: auto;
    text-align: center;
    transform: translate(-50%,-50%);
}

.features-icon {
    position: relative;
    overflow: hidden;
    width: 160px;
    height: 160px;
    margin: auto;
    border: 4px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card--feature-shadow{
    background: #fff;
    box-shadow: -27px 7px 49px -11px rgb(0 0 0 / 10%), 0px 4px 16px -2px rgb(0 0 0 / 10%);
    border-radius: 20px;
    padding: 1rem 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.card--feature-shadow:hover .features-icon {
    border: 4px solid #f4492f;
}

.card--feature-shadow:hover {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    box-shadow: rgb(0 0 0 / 20%) 0px 60px 40px -7px;
}

.promotion--card{
    background: #fff;
    box-shadow: 0 0 1px rgb(0 0 0 / 15%);
    border-radius: 5px;
    border: 2px solid #eee;
}
.promotion--thumb{
    padding-top: 56.25%;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.promotion--thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.promotion--content{
    padding: 1rem;
}
.promotion--content h2{
    font-size: 16px;
    color: #f4492f;
}

.promotion--meta ul li span{
    font-size: 12px;
}

.promotion--readmore a{
    color: #f4492f;
}

.promotion--view {
    background: #FF4C60;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    color: #FFF;
    font-size: 14px;
    padding: 2px 8px;
    position: absolute;
    left: 20px;
    top: 0;
    z-index: 1;
}


.radio-toolbar .custom-control-label::before {
    content: "";
    display: none !important;
}

.text--primary{
    color: #FF4C60;
}
.bg--primary{
    background-color:#082c4c;
}

/* loading oat */
.loader--in-body { margin: 20px auto; border: 10px solid #f3f3f3; border-radius: 50%; border-top: 10px solid #F4492F; width: 80px; height: 80px; -webkit-animation: spin 2s linear infinite; /* Safari */ animation: spin 2s linear infinite; }

@-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); } } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }



.card-label-input{
  position: relative;
  cursor: pointer;
}

.card-label-input .label-inner-input + span{
    background: #fff;
    background-color: #fff;
    border: 3px solid #fff;
    border-radius: 5px;
    box-shadow: 0 5px 11px -3px rgb(0 0 0 / 40%);
    width: 120px;
    padding: 0.8rem 0;
    text-align: center;
    font-size: 15px;
    color: #606060;
    display: inline-block;
}


.card-label-input .label-inner-input:checked + span{
    background: #fff;
    background-color: #0000ff2b;
    border: transparent;
    border-radius: 5px;
    box-shadow: 0 5px 11px -3px rgb(0 0 0 / 40%);
    width: 120px;
    padding: 0.8rem 0;
    text-align: center;
    font-size: 15px;
    color: #606060;
    display: inline-block;
    border: 3px solid #3548e4;
}

.label-inner-input{
    display: none
}

.semi-title{
    color: #555555;
    font-size: 20px;
    text-align: center;
}


table.table--primary{
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 7px 4px 56px -12px rgb(0 0 0 / 10%), -13px 10px 43px -16px rgb(0 0 0 / 10%);
}

table.table--primary thead{
    background: #FF640D;
    color: #fff;
}

table.table--primary thead{
    background: #FF640D;
    color: #fff;
}

table.table--primary .bg-tbl-col{
    background: #EFF5FF;
}


.sc-15{
    transform: scale(1.5);
}

@media screen and (max-width:1380px) {
    .main-menu ul li {
        display: inline-block;
        margin-left: 15px !important;
        position: relative;
    }

    .main-menu ul li a {
        font-size: 15px !important;
        color: #000;
        display: block;
        padding: 20px 0;
    }

    .btn-login {
        padding: 12px 15px !important;
    }

}

@media screen and (max-width:768px) {
    .main-menu ul li {
        display: inline-block;
        margin-left: 5px !important;
        position: relative;
    }

    .main-menu ul li a {
        font-size: 13px !important;
        color: #000;
        display: block;
        padding: 20px 0;
    }
}



.card-list-main--life{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.card-list-main--life .card-list-inner__item{
    width: 20%;
    padding: 1rem;
    cursor: pointer;
    user-select: none;
}

.card-list-main--life .card-list-inner__item .card-list-life{
   width: 100%;
   height: 200px;
   background: #042974cc;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   transition: 0.3s ease-in-out;
}

.card-list-main--life .card-list-inner__item.active .card-list-life{
    background: #022873;
}

.card-list-main--life .card-list-inner__item:hover .card-list-life{
    background: #022873;
}

.card-list-main--life .card-list-inner__item .card-list-life i{
    font-size: 65px;
    margin-bottom: 2rem;
}

.card-list-main--life .card-list-inner__item .card-list-life h5,
.card-list-main--life .card-list-inner__item .card-list-life i{
    color: #fff;
}


/* Flipter */

#quote{
    background: #FFF7F2 !important;
}
.flipster-carousel{
    display: none;
    color: #333;
    font-family: 'Roboto Condensed', sans-serif;
}


.flip-item{
    width: 420px;
}

.flip-item .item-inner{
    padding: 2rem;
    border: 1px solid #efefef;
    background: white;
}


.flip-item .source-profile{
    width: 80px;
    height: 80px;
}

.flip-item .source-info{
    font-size: 1rem;
    margin-left: 20px;
}

.flipster--coverflow .flipster__item__content{
    -webkit-box-reflect:unset !important;
}


.flipster__button{
    width: 40px;
    height: 40px;
    margin-top: -3rem;
    background: #212b35;
    border-radius: 50%;

}

.flipster__button svg{
    width: 1rem;
    stroke:white;
}


.flipster__button svg:hover{
    stroke:white;
}

.card-pet{
    width: 100%;
    height: 250px;
    position: relative;
    border: 1px solid #7e7e7e;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-img-pet{
    width: 80%;
    position: relative;
    padding: 1rem;
    border: 1px dashed;
}

.warpper-pet{
    padding-top: 56.25%;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.img-pet-preview{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.icon-photo-input{
    text-align: center;
    font-size: 1.5rem;
    margin-top: 1rem;
}

.slider .EE, .slider .WW {
    top: 50%;
    margin-top: -7px !important;
}
.slider .WW {
    cursor: w-resize;
    left: -8px !important;
}
.slider .EE {
    right: -8px !important;
    cursor: e-resize;
}


.linear_blue_bg{
    background: linear-gradient(to left, #0575e6, #021b79);
    padding: 60px 0;
}

.btn_aff {
    background: #fff;
    padding: 1.3rem 1.2rem;
    font-size: 1rem;
    color: #ff640d;
    border-radius: 50px;
    text-align: center;
    font-weight: bold;
    display: inline-block;
}

.text-aff-head{
    font-weight: bold;
    color: #fff;
}

@media screen and (max-width:768px) {
    .btn_aff {
        background: #fff;
        padding: 1.3rem 1.2rem;
        font-size: 1rem;
        color: #ff640d;
        border-radius: 50px;
        text-align: center;
        font-weight: bold;
    }

    .text-aff-head{
        font-weight: bold;
        color: #fff;
        font-size: 20px;
        text-align: center;
    }

    .text-res-xs{
        font-size: 17px;
    }
}

.card-shadow__save-phone{
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    padding: 2rem;
}

.btn-linear__bule{
    background: linear-gradient(180deg, #0072FF 0%, #00C6FF 100%);
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    padding: 0.8rem 1rem;
    white-space: nowrap;
    display: inline-block;
    width: 100%;
}
