/*-- font integration ---*/
@font-face {
    font-family: 'Tondo Web Regular';
    src: url('../Fonts/Tondo_W_Rg.woff') format('woff'), url('../Fonts/Tondo_W_Rg.woff2') format('woff2');
}

@font-face {
    font-family: 'Tondo Web Light';
    src: url('../Fonts/Tondo_W_Lt.woff') format('woff'), url('../Fonts/Tondo_W_Lt.woff2') format('woff2');
}

@font-face {
    font-family: 'Tondo Web Bold';
    src: url('../Fonts/Tondo_W_Bd.woff') format('woff'), url('../Fonts/Tondo_W_Bd.woff2') format('woff2');
}

/*------- Usual web font -------*/
@font-face {
    font-family: 'Usual Web Regular';
    src: url('../Fonts/Usual-Regular.woff') format('woff'), url('../Fonts/Usual-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Usual Web Light';
    src: url('../Fonts/Usual-Light.woff') format('woff'), url('../Fonts/Usual-Light.woff2') format('woff2');
}

@font-face {
    font-family: 'Usual Web Medium';
    src: url('../Fonts/Usual-Medium.woff') format('woff'), url('../Fonts/Usual-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Usual Web Bold';
    src: url('../Fonts/Usual-Bold.woff') format('woff'), url('../Fonts/Usual-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Usual Web ExtraBold';
    src: url('../Fonts/Usual-ExtraBold.woff') format('woff'), url('../Fonts/Usual-ExtraBold.woff2') format('woff2');
}

/*----- Common CSS -----*/
body {
    font-family: 'Usual Web Regular';
    font-size: 1.5rem;
    color: #000033 !important;
    font-weight: 400;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    line-height: 1.4;
}

*,
*:focus {
    outline: none;
}

ol, ul {
    list-style-type: none;
    padding: 0;
    margin: 0 !important;
}

/*------ reset default cursor for disabled elements -------*/

button[disabled],
html input[disabled] {
    cursor: default;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
}

input {
    color: #707070;
}

    input:focus {
        color: #000033;
    }

option:hover {
    background-color: red;
}
.error-message {
    color: #ff0000;
    font-family: 'Usual Web Regular';
    font-size: 1rem;
}

/*------ heading style ------*/
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem 0;
    color: #000033;
    line-height: 1.4;
}

h1 {
    font-size: 2.5rem;
    font-family: 'Tondo Web Regular';
}

h2 {
    font-size: 2.125rem;
    font-family: 'Tondo Web Bold';
}

h3 {
    font-size: 2.125rem;
    font-family: 'Usual Web Light';
}

h4 {
    font-size: 1.875rem;
    font-family: 'Usual Web Bold';
}

h5 {
    font-size: 1.75rem;
    font-family: 'Usual Web Regular';
}
h6 {
    font-size: 1.625rem;
    font-family: 'Tondo Web Bold';
}
.width100 {
    width: 100%;
}

.plr-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.ptop-10 {
    padding-top: 10px !important;
}

.pright-10 {
    padding-right: 10px !important;
}

.pbottom-10 {
    padding-bottom: 10px !important;
}

.pleft-10 {
    padding-left: 10px !important;
}

.pr-116 {
    padding-right: 116px;
}

/*----- common class for margin ------*/
.mtop-10 {
    margin-top: 10px !important;
}

.mright-10 {
    margin-right: 10px !important;
}

.mbottom-10 {
    margin-bottom: 10px !important;
}

.mleft-10 {
    margin-left: 10px !important;
}

.mleft-15 {
    margin-left: 15px !important;
}

.mtopbottom-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.mtop-30 {
    margin-top: 30px !important;
}

.mtop-60 {
    margin-top: 60px !important;
}

.mbottom-15 {
    margin-bottom: 15px !important;
}

.mbottom-20 {
    margin-bottom: 20px !important;
}

.mbottom-30 {
    margin-bottom: 30px !important;
}

.top-0 {
    top: 0 !important;
}

.top-10 {
    top: 10px !important;
}

.top-20 {
    top: 20px !important;
}

.right-0 {
    right: 0 !important;
}

.right-10 {
    right: 10px !important;
}

.right-20 {
    right: 20px !important;
}

.bottom-0 {
    bottom: 0 !important;
}

/*-------------- common CSS ---------------*/
a {
    color: #3366ff;
}
a:hover,
a:focus {
    color: #3366ff;
    text-decoration: none;
}

/* ----- variables defined ----- */

.navy-color {
    color: #000033;
}


/*--- button styling ---*/
.btn {
    border-radius: 2.25rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 1.25rem;
    padding: 6px 16px;
    transition: all 0.4s ease 0s;
    min-width: 220px;
    font-family: 'Tondo Web Regular';
}

    .btn img {
        margin: 0 0 0 16px;
    }

/*--- blue button ---*/
.blue-button {
    /* background-color: var(--blue-button); */
    border: 1px solid #3366ff;
    color: #3366ff !important;
    padding: 10px 24px;
    min-width: 250px;
}
.blue-buttonplsh {
    min-width: 290px !important;
}

    .blue-button:hover,
    .blue-button:focus {
        background-color: #3366ff !important;
        outline: none;
        box-shadow: none;
        color: #ffffff !important;
    }

.navyBlue-button {
    background-color: transparent !important;
    border: 1px solid #000033;
    color: #000033 !important;
}

    .navyBlue-button:hover,
    .navyBlue-button:focus, .navyBlue-button:active {
        background-color: #000033 !important;
        outline: none;
        box-shadow: none;
        color: #ffffff !important;
    }

.dropdown-item.active {
    transform: scale(1.2);
    background-color: unset;
}

.white-button {
    background-color: transparent !important;
    border: 1px solid #ffffff;
    color: #ffffff !important;
}

    .white-button:hover, .white-button:focus, .white-button:active {
        background-color: #ffffff !important;
        outline: none;
        box-shadow: none;
        color: #000033 !important;
    }

.acc-dropd-btn {
    background-color: transparent !important;
    border: 1px solid #ffffff;
    color: #ffffff !important;
}

    .acc-dropd-btn:hover {
        background-color: #fff !important;
        color: #000033 !important;
    }

.green-button {
    background-color: none;
    border: 1px solid #00ff99;
    color: #00ff99 !important;
}

    .green-button:hover,
    .green-button:focus, .green-button:active {
        background-color: #00ff99 !important;
        outline: none;
        box-shadow: none;
    }

/*----   Page Layout common structure  ---*/
.gray-bg {
    background-color: #f8f8f8;
}

/*--- header top bar ---*/
.header-top-bar {
    background: #00ff99;
    font-size: 0.875rem;
    padding: 10px 0px;
    color: #000033 !important;
    box-shadow: 0 1px 2px rgb(0 0 0 / 5%);
    transition: all 0.5s;
    position: relative;
    z-index: 999;
    display: none;
}

.top-content {
    font-size: 1.875rem;
    color: #000033 !important;
}

.close-icon {
    display: flex;
    align-items: center;
}

    .close-icon a {
        color: #000033;
        font-size: 24px;
        cursor: pointer;
    }
/*---- header hero image section ---*/
.header-hero {
    width: 100%;
    height: 75vh;
    background: #000 url("../images/hero-bg.jpg") no-repeat top right;
    background-size: cover;
    justify-content: center;
}

.hero-content {
    font-family: 'Usual Web Light';
    width: 60%;
    text-align: center;
    padding: 0 3rem;
    color: #fff;
    font-size: 2rem;
}

    .hero-content h1 {
        font-family: 'Tondo Web Regular';
        margin: 0 0 30px 0;
        font-size: 3rem;
        font-weight: 700;
        line-height: 56px;
        color: #FFF;
    }

/*------ Main header seciton ------*/
.main-header {
    width: 100%;
    transition: all .6s;
    z-index: 101;
    background: #fff;
}

.header-section {
    position: relative;
    background-color: #fff;
    box-shadow: 0 0 65px -19px rgb(0 0 0 / 17%);
}

.header {
    position: relative;
}

.logoM {
    display: none;
}

.logo-white {
    display: none;
}

.logoD {
    display: block;
}

.iRefer-Logo {
    width: 15rem;
}

/*--- main navigation section -----*/
.navbar-nav {
    padding-top: 1.5rem;
    z-index: 999;
}

.navbar-expand-lg .navbar-nav .nav-link {
    font-family: 'Tondo Web Regular';
    font-size: 2rem !important;
    color: #000033;
    margin: 0 0 0 1.5rem;
    border-bottom: 2px solid transparent;
}

    .navbar-expand-lg .navbar-nav .nav-link:first-child {
        margin-left: 1rem;
    }

    .navbar-expand-lg .navbar-nav .nav-link:hover {
        color: #000033 !important;
        border-bottom: 2px solid #000033;
    }

    .navbar-expand-lg .navbar-nav .nav-link.active {
        color: #000033 !important;
        border-bottom: 2px solid #000033;
    }

    .navbar-expand-lg .navbar-nav .nav-link.activeM {
        color: #00ff99 !important;
    }

/*--- triangle section -----*/
.triangle {
    width: 50%;
    padding: 60% 0 0;
    overflow: hidden;
    position: absolute;
    top: -7px;
    right: 0;
    z-index: 99;
    /* display: none; */
}

    .triangle:after {
        content: "";
        display: block;
        position: absolute;
        right: 0px;
        top: 65%;
        width: 0;
        height: 0;
        border-top: 1370px solid transparent;
        margin-left: -500px;
        margin-top: -800px;
        border-left: 650px solid transparent;
        border-top: 950px solid #3366ff !important;
    }



/*------ Sub-header---------*/
.sub_menu .dropdown-menu.show {
    display: flex;
    margin-bottom:5px;
}

.sub_menu .dropdown-toggle::after {
    display: none;
}

.sub_menu .dropdown:hover .dropdown-menu {
    display: flex;
    padding-top: 30px;
}

.sub_menu .dropdown-menu li:hover {
    transform: scale(1.1);
}

.sub_menu .dropdown-menu li a:hover {
    color: #3366ff !important;
    transform: scale(1.1);
}

.sub_menu .dropdown-menu li:hover a {
    color: #3366ff !important;
}

.sub_menu .dropdown-menu li {
    transition: transform .2s;
    text-align: center;
    width: 210px;
    height: auto;
    padding: 10px;
    color: #000033 !important;
    background-color: #F8F8F8;
    border: 1px solid #fff;
    border-radius: 10px;
    margin-right: 2px;
}

    .sub_menu .dropdown-menu li a {
        font-family: 'Tondo Web Regular';
        color: #000033 !important;
    }

.sub_menu li .dropdown-menu {
    background-color: unset !important;
    border: none !important;
}

.sub_menu li img {
    width: 70px;
    height: 70px;
}
.submenu-wrap div {
    white-space: initial;
}

.img-about img {
    width: 77px !important;
}

.sub_menu p {
    font-size: 1.45rem;
    margin-bottom:0;
}

.sub_menu li:nth-child(2) .dropdown-menu {
    left: -204px;
}

/*------END OF Sub-header ---------*/

/*------ Main content section ---------*/
.main-content {
    position: relative;
    z-index: 100;
    padding: 40px 0 0 0;
}
section {
    padding: 80px 0 48px 0;
    font-family: 'Usual Web Light';
    line-height: 1.5;
}
.section-content {
    color: #000033;
    margin: 0;
    font-size: 2.125rem;
}
.impact-section {
    position: relative;
    padding-top: 60px;
}
    .impact-section h2 {
        text-align: left;
    }
.impact-section-bg {
    background: url(../images/left-clip-bg.svg) no-repeat;
    position: absolute;
    top: -290px;
    left: -320px;
    width: 1050px;
    height: 710px;
    z-index: -1;
    /* display: none; */
}

.benifit-section {
    position: relative;
    overflow: hidden;
}

.benifit-section-bg {
    background: url(../images/right-clip-bg.svg) no-repeat;
    position: absolute;
    top: 0;
    right: -297px;
    width: 952px;
    height: 654px;
    overflow: hidden;
}

.benifit-section-bgM {
    display: none;
}

.impact-content {
    font-size: 1.875rem;
    color: #3366ff;
}

.info-persent {
    font-family: 'Tondo Web Bold';
    font-size: 5.25rem;
    color: #3366ff !important;
    line-height: 0.9;
    margin-bottom: 0;
}

.impact-section .blue-button {
    width: 100px;
}

/*------- footer section --------*/
.footer-section {
    font-size: 1.20rem;
    color: #000033 !important;
    padding: 20px 0 0 0;
    position: relative;
    font-family: 'Usual Web Light';
    z-index: 100;
}

    .footer-section .container {
        position: relative;
        /*padding: 0 15px;*/
    }

    .footer-section .bg-image {
        background-color: #fff;
        position: absolute;
        bottom: 0;
        right: 0;
    }

        .footer-section .bg-image img {
            width: 305px;
        }

    .footer-section .footer-top {
        border-top: 1px solid #a5a5a5;
        padding: 25px 0 10px 0;
    }

        .footer-section .footer-top .iRefer-Logo {
            width: 200px;
        }

.footer-contact {
    padding-left: 0;
}

    .footer-contact p {
        width: 63%;
        margin-top: 13px;
    }

.footer_active h4 a {
    color: #000033;
}

.footer-links h4 {
    font-family: 'Usual Web Bold';
    font-size: 1.25rem;
}

.footer-section .footer-top .footer-links ul li {
    padding: 0 0 10px 0;
    display: flex;
    align-items: center;
     max-width: 250px;
}

    .footer-section .footer-top .footer-links ul li a {
        color: #000033 !important;
        font-family: 'Usual Web Light';
        font-size: 1.125rem;
    }

        .footer-section .footer-top .footer-links ul li a:hover {
            text-decoration: none;
            color: #3366ff !important;
        }

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid #404066;
}
    /*--- footer navigation -----*/
    .footer-bottom .footer-nav li {
        display: inline-block;
    }

        .footer-bottom .footer-nav li a {
            color: #000033 !important;
            padding: 0 1.875rem 0 0;
        }


            .footer-bottom .footer-nav li a:hover {
                color: #3366ff !important;
            }


/*---------- login page ---------*/

/*-- main navigation----*/

.navbar {
    /* background: #FFF; */
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.navbar-dark .navbar-nav {
    font-size: 0.938rem;
    color: #fff;
    text-transform: uppercase;
}

.navbar-dark .navbar-toggler {
    border-color: transparent;
    position: relative;
    position: absolute;
    z-index: 99999;
    right: -10px;
    top: 35px;
}

    .navbar-dark .navbar-toggler:focus {
        background: none;
        outline: 0;
    }

    .navbar-dark .navbar-toggler span {
        display: block;
        width: 30px;
        height: 2px;
        margin: 6px auto;
        background: #fff;
        transition: all .6s cubic-bezier(0.250, 0.100, 0.250, 1.000);
    }

    .navbar-dark .navbar-toggler:hover span,
    .navbar-dark .navbar-toggler:focus span {
        background: #ccc;
    }

.navbar-brand {
    cursor: pointer;
    position: relative;
    z-index: 1000;
}

/* rotate first span */
.navbar-dark .navbar-toggler[aria-expanded="true"] span:first-of-type {
    transform: rotate(45deg) translate(6px, 6px);
}
/* hide second span */
.navbar-dark .navbar-toggler[aria-expanded="true"] span:nth-of-type(2) {
    opacity: 0;
}
/* rotate third span */
.navbar-dark .navbar-toggler[aria-expanded="true"] span:last-of-type {
    transform: rotate(-45deg) translate(5px, -5px);
}

.navbar-dark .navbar-toggler[aria-expanded="false"] span {
    transform: none;
    opacity: 1;
}

.login-button {
    position: fixed;
    top: 1rem;
    right: 8.3rem;
    z-index: 9999;
}

.login-button-header .white-button {
    background-color: transparent !important;
    border: 1px solid #000033;
    color: #000033 !important;
}

.login-button-header .acc-dropd-btn {
    background-color: transparent !important;
    border: 1px solid #000033;
    color: #000033 !important;
}



.acc-support-btn {
    background-color: transparent !important;
    border: 1px solid #ffffff;
    color: #ffffff !important;
}


.login-button-header .acc-support-btn {
    background-color: transparent !important;
    border: 1px solid #000033;
    color: #000033 !important;
}

.acc-support-btn:hover {
    background-color: #fff !important;
    border: 1px solid #fff;
    color: #000033 !important;
}

header-main {
    position: relative;
    width: 100%;
    color: #fff;
}

    header-main.header-navbar {
        position: fixed;
        top: -160px;
        left: 0;
        right: 0;
        z-index: 9999;
        transition: 0.8s top cubic-bezier(.165,.84,.44,1);
    }

body.down header-main.header-navbar {
    top: 0;
}

.triangle-fixed {
    width: 50%;
    padding: 0 0;
    overflow: hidden;
    position: unset;
    top: -7px;
    right: 0;
    z-index: 99;
}

#menu {
    display: flex;
}

.login-buttonM {
    display: none;
}

.nav_pin::before {
    content: "";
    position: absolute;
    top: 0px;
    left: -440px;
    width: 100%;
    height: 100%;
    background-image: url("../images/pin.svg");
    transform: rotate(180deg);
    z-index: 999;
}

.triangle:after {
    z-index: 101;
}

.login-buttonM {
    display: none;
}

/*--- Moving top button style ---*/
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #999;
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    font-size: 16px;
}

    #myBtn:hover {
        background-color: #666;
    }

/*---- Benifit iRefer section---*/
.benifit-section .benifit-info {
    margin-bottom: 1rem;
}

.benifit-section .blue-button {
    margin-top: 3rem;
    width: 230px;
}

.benifit-section .benifit-row {
    margin-bottom: 1.5rem;
}

    .benifit-section .benifit-row:last-child {
        margin-bottom: 0;
    }

    .benifit-section .benifit-row img {
        margin-right: 2rem;
    }

.user-img img {
    width: 75px;
}

/*------ Caraousel testimonial section -------*/
.carousel-arrow {
    position: absolute;
    left: 15px;
    top: 180px;
}

.testimonial-section1 .toSay {
    color: #3366ff;
    font-family: 'Tondo Web Bold';
}

.testimonial-section1 .section-content {
    font-size: 1.5rem;
    position: relative;
    font-family: 'Usual Web Regular';
}

.carousel-control-next, .carousel-control-prev {
    position: relative;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15%;
    height: 40px;
    padding: 20px;
    margin-right: 15px;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 1px solid #3366ff !important;
    border-radius: 50%;
    opacity: .5;
    transition: opacity .15s ease;
}

.name {
    font-family: 'Usual Web Bold';
}

/*------------ Testimonial logo section------------*/
.logo-section {
    padding-top: 30px;
}

    .logo-section .section-content {
        width: 1480px;
        margin: 0 auto;
    }

.navbar-light .navbar-toggler {
    position: absolute;
    right: 20px;
    top: 20px;
    border: none;
}

/*-- sign up by Prudvi ---*/
#complete_account .email-error {
    padding-top: 0px;
}

#complete_account .form-item {
    margin-bottom: 15px;
}

.sign-up {
    font-size: 1.25rem;
    margin-top: 0.5rem;
    font-family: 'Usual Web Light';
}

.form-item {
    position: relative;
    display: block;
    margin-bottom: 16px;
}

    .form-item a {
        color: #3366ff;
        font-family: 'Tondo Web Regular';
    }

.email-error {
    display: block;
    color: #ff0000;
    font-size: 1rem;
    padding: 6px 0 0 30px;
    font-family: 'Usual Web Regular';
    align-items: center;
}

    .email-error p {
        margin-bottom: 0;
        color: #ff0000 !important;
    }

.email-error-border {
    border: 1px solid red !important;
}

.get-started {
    min-height: 690px;
}

    .get-started input.form-style, .create-account input.form-style {
        color: #000033;
        font-family: "Tondo Web Light";
        display: block;
        width: 100%;
        padding: 20px;
        border: 1px solid #000033;
        border-radius: 50px;
        padding-left: 27px;
        padding-right: 70px;
        font-size: 1.25rem;
        position: relative;
        z-index: 99;
    }

    .get-started .form-style {
        color: #000033;
        font-family: "Tondo Web Light";
        display: block;
        width: 100%;
        padding: 20px;
        border: 1px solid #000033;
        border-radius: 50px;
        padding-left: 27px;
        padding-right: 50px;
        font-size: 1.25rem;
        position: relative;
        z-index: 99;
        background: #fff;
        line-height: initial;
    }

.form-item .form-style:focus {
    outline: none;
    border: 1px solid #000033;
    color: #000033;
}

.form-item p.formLabel {
    font-family: "Tondo Web Light";
    position: absolute;
    left: 26px;
    font-size: 1.25rem;
    margin-bottom: 0;
    top: 20px;
    transition: all .4s ease;
    color: #707070;
    z-index: 9999;
}

.formTop {
    top: -11px !important;
    left: 26px;
    background-color: #fff;
    padding: 0 5px;
    font-size: 0.875rem;
    color: #000033 !important;
}

.btn:focus {
    box-shadow: none;
}

/* password Strength */
#popover-password .fa-check:before {
    content: "\f00c";
    color: #01DE34;
}

#popover-password .fa-times {
    color: #FF0000
}

.list-unstyled p {
    margin-bottom: 0;
}

.progress {
    height: 1.6rem;
    color: #fff;
    border-radius: 20px;
    margin-top: 18px;
}

.progress-bar {
    font-size: 0.938rem;
    font-family: "Usual Web Bold";
    width: 30%;
    background-color: rgb(255, 0, 0);
}

.list-unstyled {
    font-size: 1.063rem;
    font-family: 'Usual Web Regular';
    margin-top: 21px !important;
    margin-left: 26px !important;
    margin-bottom: 30px !important;
    color: #000033;
}

/*END OF password Strength */

/* right side image */
.bgimg_right_signup {
    text-align: center;
    width: 100%;
    height: 696px;
    background: url(../images/Group-14.svg);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 99;
}

    .bgimg_right_signup img {
        width: 65%;
        padding: 55px 0px;
    }

.get-started .bgimg_right_signup img {
    padding: 0;
}

.imgcircle .socail_icon {
    background: #fff;
    width: 44px;
    margin-right: 4px;
    height: 44px;
    border-radius: 50%;
    line-height: 2;
}

.imgcircle, .socail_icon {
    display: flex;
    align-items: center;
}

    .imgcircle .socail_icon img {
        margin-left: 5px;
        width: 32px;
    }

.social_media_btn .btn {
    padding: 10px 24px 10px 4px !important;
}

.Verify_email a {
    text-decoration: none;
}

/* 6th wireframe  */
.verity_link p {
    color: #FF0000;
    font-size: 0.875rem;
    font-weight: 500;
}

.resend_btn {
    border: 1px solid #007bff;
    color: #3366FF;
    border-radius: 27px;
}

.btn:focus {
    box-shadow: none;
}

.resend_email button {
    min-width: 280px;
}

.verify {
    margin-bottom: 0px;
    color: #01DE34;
    font-size: 1rem;
    font-family: "Usual Web Regular";
}

    .verify i {
        margin-right: 10px;
    }

.create-account h2 {
    font-family: "Tondo Web Regular";
    color: #000033;
}

.create-account .complt-ltr, .retrun-login {
    font-family: "Tondo Web Regular";
    color: #3366FF;
    font-size: 1.25rem;
}

.verity_link {
    padding: 12px 0 8px 0;
}

.btn_img_create {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 27px;
}

    .btn_img_create:hover {
        color: #3366FF;
    }

.btn_google, .btn_facebook {
    border: 1px solid #3366FF;
    color: #3366FF;
    border-radius: 50px;
    height: 54px;
    font-size: 1.25rem;
}

.btn_img_create > span > img {
    width: 26px;
    margin-top: -4px !important;
    margin-right: 12px !important;
    margin-left: 0;
}

.social_media_btn a {
    text-decoration: none;
}

.create-account {
    margin-bottom: 28px;
}

.blue-btn-bg {
    padding: 10px 24px;
    background-color: #3366ff;
    color: #ffffff;
    font-size: 1.25rem;
    border-radius: 50px;
}

    .blue-btn-bg:hover {
        background-color: #fff;
        color: #3366ff !important;
        border: 1px solid #3366ff;
    }
    .blue-btn-bg:focus {
        background-color: #3366ff;
        color: #ffffff !important;
        border: 1px solid #3366ff;
    }

.create-account .btn {
    width: 100%;
    padding: 15px 24px;
    font-family: "Tondo Web Regular";
    height: 54px;
    border-radius: 50px;
    font-size: 1.5rem;
}

.create-account p {
    color: #000033;
    font-size: 1.4375rem;
    font-family: "Usual Web Light";
}

.rcr-login .btn {
    width: auto;
}

.password_eveimg {
    position: relative;
}

    .password_eveimg img {
        position: absolute;
        width: 26px;
        right: 22px;
        top: 22px;
        z-index: 999;
    }

.terms-policy {
    font-size: 1.125rem;
    color: #000033;
}

.try_again {
    color: #FF0000 !important;
}

    .try_again h1 {
        font-weight: 400;
        color: #FF0000 !important;
    }

/*---Login screens ----*/
.forgot-pass {
    color: #3366ff;
    font-family: 'Tondo Web Light';
    font-size: 1.25rem;
}

.form-right-content {
    padding-left: 6rem;
}

    .form-right-content label {
        font-size: 1.5rem;
        font-family: 'Usual Web Light';
    }

    .form-right-content button {
        min-width: 380px;
    }

.login-attempt {
    font-size: 1.25rem;
    width: 490px;
    font-family: 'Usual Web Light';
}

.sign-up .receive-email, .sign-up .Verify_email {
    font-family: 'Usual Web Light';
    font-size: 1.25rem;
}

.sign-up .recive-wth, .sign-up .resend_email {
    width: 80%;
}

.account-yet label {
    font-size: 2rem;
    font-family: 'Usual Web Light';
}

.fa-check {
    color: #01DE34
}

.dropdown-menu {
    border-radius: 1.5rem;
    min-width: 14rem;
    margin-top: 8px;
    padding: 12px 0 !important;
}

.dropdown-item img {
    margin-right: 8px;
    vertical-align: sub;
}

.dropdown-item {
    padding: 0.35rem 1rem;
}

    .dropdown-item:focus, .dropdown-item {
        color: #000033;
        font-family: 'Tondo Web Regular';
        font-size: 1.25rem;
    }

        .dropdown-item:focus, .dropdown-item:hover {
            color: #000033 !important;
            text-decoration: none;
            background: none;
        }

/* new login page */

.pin_bg img {
    position: relative;
    top: -270px;
    left: -7px;
    z-index: -1;
}

.img_143 {
    position: initial;
}

    .img_143 img {
        position: absolute;
        top: -44px;
        left: 104px;
        z-index: -1;
    }

.log_img_pin {
    position: relative;
}

/* login page */

/*------ static pages style common ------*/
.static-pages-content {
    font-size: 1.5rem;
    font-family: "Usual Web Light";
    color: #000033;
}

/*--------- About iRefer page style--------------*/
.overflow_h {
    overflow: hidden;
}

.swatch-mobileL, .swatch-mobileR {
    display: none;
}

.introduction, .guidelines, .determined, .benefits-accordion, .Radiology-Service, .radiation-dose {
    position: relative;
}

    .radiation-dose .impact-section-swatchRight {
        top: -264px;
        right: -254px;
        width: 952px;
        height: 654px;
        z-index: 0;
    }

    .introduction .impact-section-bg {
        position: absolute;
        top: -311px;
        left: -388px;
        width: 933px;
        height: 692px;
    }

.impact-section-swatchRight {
    background: url(../images/right-clip-bg.svg) no-repeat;
    position: absolute;
    top: -501px;
    right: -297px;
    width: 952px;
    height: 654px;
    z-index: -1;
}

.determined .impact-section-bg {
    background: url(../images/left-clip-bg.svg) no-repeat;
    position: absolute;
    top: -166px;
    left: -402px;
    width: 1050px;
    height: 710px;
}

.benefits-accordion .impact-section-swatchRight {
    background: url(../images/right-clip-bg.svg) no-repeat;
    position: absolute;
    top: 230px;
    right: -708px;
    width: 955px;
    height: 654px;
    z-index: -1;
}

.benefits-accordion .impact-section-bg {
    background: url(../images/left-clip-bg.svg) no-repeat;
    position: absolute;
    top: -366px;
    left: -533px;
    width: 1050px;
    height: 710px;
    z-index: -1;
}

.Radiology-Service .impact-section-swatchRight {
    position: absolute;
    top: 239px;
    left: -271px;
    width: 1062px;
    height: 654px;
    z-index: -1;
}

.determined .impact-section-swatchRight {
    top: -544px;
}

.mt-50 {
    margin-top: 50px;
}

.img-with img {
    width: 90%;
}

.about-right p {
    padding-bottom: 0;
    margin-bottom: 0;
}

/*.about-irefer .about p {
    font-size: 1.875rem;
}*/

.about-right {
    font-size: 0.938rem !important;
}

.bg-Gray {
    background-color: #f7f7f7;
    border-radius: 15px;
    padding: 20px;
}

.about-irefer .mt-50 {
    margin-top: 50px;
}

.about-irefer .p-20 {
    margin-top: 20px;
}

.bookmark-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .bookmark-btn span {
        font-size: 1rem;
    }

    .bookmark-btn .btn {
        padding: 4px 17px;
        min-width: 99px;
        font-size: 0.938rem;
    }

.guidelines .h-120 {
    height: 120px;
    display: flex;
    align-items: center;
}

    .guidelines .h-120 img {
        width: 75px;
        margin: 0 auto;
    }

.introduction h2, .guidelines h2, .Radiology-Service h2, .developed h2 {
    margin-bottom: 25px;
}

/*.introduction p, .guidelines p, .Radiology-Service p {
    font-size: 1.5rem;
    font-family: "Usual Web Light";
    color: #000033;
    margin-bottom: 25px;
}*/

.intent p, .determined, .developed p {
/*    font-size: 1.5rem;
    font-family: "Usual Web Light";
    color: #000033;*/
    margin-bottom: 25px;
}

.intent {
    padding: 90px 0 90px 0;
}

.developed {
    padding-top: 90px;
}

.intent h2 {
    margin-bottom: 72px;
}

.guidelines-img img {
    width: 90%;
}

.pt-72 {
    padding-top: 72px;
}

.introduction a {
    text-decoration: underline;
}

.guidelines h3 {
    font-size: 1.6875rem;
    color: #000033;
    font-family: "Usual Web Regular";
}

.shadow-box {
    box-shadow: 0px 3px 6px #00000029
}

.intent, .investigation {
    background-color: #99CCFF;
}

    .intent h2 {
        text-align: center;
    }

.determined {
    padding-bottom: 20px;
}

    .determined ol {
        list-style-type: decimal;
        padding-left: 25px;
        margin-bottom: 25px !important;
    }

.references-bg {
    padding-bottom: 80px;
    background-color: #F4F4F4;
    margin: 0 0 80px 0px;
}

.references p {
    width: 52%;
    margin: 0 auto;
    font-size: 1.49rem;
}

.references h2 {
    margin-bottom: 26px;
}

.references .p-30 {
    padding: 30px;
}

.references .btn {
    margin: 0 auto;
    min-width: 362px;
}

.time-login {
    color: #FF0000 !important;
    font-size: 2.5rem;
    font-family: 'Tondo Web Regular';
    margin: 0 0 1rem 0;
    line-height: 1.4;
}
/*---------END OF About iRefer page Style--------------*/

/*--------- Benefits page style--------------*/
.Benefits {
    margin-bottom: 40px;
}

.benefits-accordion-text {
    padding: 38px 0 60px 0;
}

.Benefits .guidelines p {
    color: #000033;
    font-size: 1.8rem;
    font-family: "Usual Web Light";
    color: #000033;
    width: 73%;
}

/*.benefits-accordion {
    font-size: 1.5rem;
    font-family: "Usual Web Light";
    color: #000033;
}*/

    .benefits-accordion .btn {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        color: #000033;
    }

    .benefits-accordion .btn-link {
        font-weight: 800;
    }

    .benefits-accordion .card-body p {
        width: 90%;
    }

    .benefits-accordion .card {
        border: none;
        border-bottom: 1px solid #aeaeae;
        border-radius: 0;
        background-color: transparent;
    }

    .benefits-accordion .card-header {
        background-color: rgba(0,0,0,.0);
        padding: 25px 0px;
    }

.card-header {
    border-bottom: none;
}

.investigation {
    padding-bottom: 80px;
}

    .investigation p, .list-services p {
        margin-bottom: 25px;
    }

    .investigation h2 {
        text-align: center;
        margin-bottom: 72px;
    }

.benefits-accordion .card-body {
    padding-left: 0;
    padding-right: 0;
}

.panel-title > button::after {
    float: right !important;
    font-family: FontAwesome;
    content: "\f068";
    width: 29px;
    height: 29px;
    display: flex;
    border-radius: 50%;
    background-color: #000033;
    color: #fff;
    align-items: center;
    line-height: 2;
    justify-content: center;
}

.panel-title > button.collapsed::after {
    float: right !important;
    content: "\f067";
}

.panel-title > button:hover,
.panel-title > button:active,
.panel-title > button:focus {
    text-decoration: none;
}

.Radiology-Service h2 {
    font-size: 2.45rem;
}

.list-services .p-16 {
    padding-right: 16px;
}

.list-services .p-50 {
    padding-right: 50px;
    margin-top: 9px;
}

.list-services .p-56 {
    padding-right: 56px;
    margin-top: 9px;
}

    .list-services .p-56 img {
        margin-left: 22px;
    }

.Radiology-Service-center p {
/*    font-size: 1.5rem;
    color: #000033;*/
    margin-bottom: 25px;
}

.Radiology-Service-center {
    margin-top: 55px;
}

.radiation-dose {
    background-color: #F4F4F4;
    padding: 105px 0 60px 0;
}

    .radiation-dose p {
/*        font-size: 1.55rem;
        color: #000033;*/
        margin-bottom: 25px;
    }

/*.radiation-dose-center p, .radiation-dose-center h2 {
    font-size: 1.5rem;
    color: #000033;
}
*/
.radiation-table {
    font-size: 1.1875rem;
    font-family: 'Usual Web Regular';
    color: #000033;
}

.radiation-dose-text {
    margin-bottom: 43px;
}

    .radiation-dose-text p {
        margin-bottom: 25px;
    }



    .radiation-table.table-bordered th {
        vertical-align: baseline;
    }

.table-bordered td, .table-bordered th {
    border: 1px solid #707070 !important;
}

.radiation-table thead {
    background-color: #99CCFF;
}

table td, .table th {
    padding: 1.2rem;
}

.calculations {
    font-size: 1.25rem !important;
    font-family: 'Usual Web Regular';
}
.imgrespnve {
    text-align:right;
}
.imgrespnve img {
    width: 90%;
}

/*---------END OF Benefits page Style--------------*/

/* references-page */
.references-page ol {
    list-style-type: decimal;
    font-size: 1.5rem;
    font-family: "Usual Web Light";
    color: #000033 !important;
    padding-left: 25px;
}

    .references-page ol li {
        margin-bottom: 15px;
    }
        .references-page ol li a {
            color: #3366ff !important;
        }

        .references-page a:hover, .references-page a:focus {
            color: #3366ff !important;
            text-decoration: none;
        }
/*END OF references-page */

/* Using the guidelines */
.guidelines-section-text div {
    padding-bottom: 75px;
}

.list_guidelines_heading, #Typesrecommendations {
    position: relative;
}

    .list_guidelines_heading .impact-section-bg {
        top: -75px;
        left: -348px;
        width: 1050px;
        z-index: -1;
        height: 710px;
    }

.guidelines-section .impact-section-swatchRight {
    top: -487px;
    right: -150px;
    width: 771px;
    height: 654px;
    z-index: -1;
}

#ImagingTechniques div:last-child, #considerations div:last-child {
    padding-bottom: 0;
}

.guidelines-section h2 {
    padding-bottom: 30px;
}

.guidelines-section {
    font-size: 1.5rem;
    font-family: "Usual Web Light";
    color: #000033;
}

    #Grades h3, .guidelines-section h3 {
        font-size: 1.75rem;
        margin-bottom: 0;
        color: #3366ff;
    }

.gerneral-info h2, #ContrastAgents h3 {
    font-size: 2.05rem;
    padding-bottom: 15px;
    color: #3366ff;
}

#ContrastAgents h2 {
    color: #3366ff;
    font-size: 2.05rem;
}

.guidelines-section ul {
    padding-left: 17px;
    margin-bottom: 25px !important;
}

.guidelines-section p {
    margin-bottom: 25px;
}

.guidelines-section ul li {
    list-style-type: initial;
}

.overflow-clip {
    overflow-x: clip;
}
/*END OF Using the guidelines */

/* API PAGE */

.Api img {
    width: auto;
    height: 171px;
    margin-top: 15px;
    margin: 0 auto;
    margin-bottom: 15px !important;
}

.api-guidlines p {
    font-size: 1.75rem !important;
    font-family: "Usual Web Light";
}

.api_swatch {
    z-index: 2;
}

.Api .card {
    text-align: center;
    border: none;
    box-shadow: 2px 2px 5px 2px rgb(0 0 0 / 13%);
    margin-bottom: 5px;
    padding: 25px 0 15px 0px;
}

.Api p {
    padding: 10px;
    height: 140px;
    font-size: 1.75rem;
}

.Api {
    margin-bottom: 80px;
}

.Api_bg {
    background-color: #f8f8f8;
    margin-bottom: 5%;
    position: relative;
}

    .Api_bg .impact-section-bg {
        top: -431px;
        z-index: 0;
    }

    .Api_bg .impact-section-swatchRight {
        top: 251px;
        z-index: 0;
    }

.searchFilter-form {
    display: flex;
}

/*---- full subscription -----*/

/*---search and filter section --*/

@media screen and (min-width: 768px) {
    .dropdown.dropdown-lg {
        position: static !important;
    }

        .dropdown.dropdown-lg .dropdown-menu {
            min-width: 500px;
        }
}

/*--- Search result section ---*/
.search-result {
    position: relative;
    padding-right: 0;
}

.search-result-heading {
    font-family: 'Usual Web Light';
    font-size: 1.25rem;
    color: #000033;
    margin-bottom: 22px;
}

#searchGuidelinesCount {
    width: 70%;
}

.trial-user {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.trial-user-icon {
    padding: 0 !important;
}

    .trial-user-icon img {
        width: 100%;
    }

.trial-user h4 {
    margin-bottom: 5px;
}

.trial-user .title {
    text-transform: capitalize;
}

.trial-user-content {
    /* width: 592px; */
    margin-left: 8px;
}

    .trial-user-content .description {
        margin-bottom: 20px;
    }

.rcr-overlay {
    min-height: 200px;
}

.rcr-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    font-size: 3.125rem;
    color: white;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
}

    .rcr-overlay-content p {
        font-family: 'Usual Web Regular';
        font-size: 1.25rem;
        color: #000033;
        margin-bottom: 0 !important;
    }

    .rcr-overlay-content .blue-button {
        margin: 20px auto 0;
    }

.overlay-img {
    width: 100%;
    height: 420px;
}

.result-widget {
    background-color: #F7F7F7;
    border-radius: 10px;
    margin-bottom: 14px;
    font-family: 'Usual Web Light';
    font-size: 1rem;
    color: #000033;
    position: relative;
}

    .result-widget .title {
        border-radius: 10px;
        padding: 15px 20px;
        font-family: 'Usual Web Regular';
        font-size: 1.25rem;
        position: relative;
        z-index: 9;
    }

.adult-guideline .title {
    background-color: #00ff99;
    color: #000033;
}

.Paediatric-guideline {
    position: relative;
}

    .Paediatric-guideline .title {
        background-color: #000033;
        border-radius: 10px;
        color: #fff;
    }

.bookmark-section {
    background-color: #F0EFEF;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 20px;
}

.quantity {
    font-family: 'Usual Web Regular';
    font-size: 1rem;
    display: flex;
    flex-direction: column;
}

.bookmark-link {
    position: absolute;
    bottom: 20px;
}

    .bookmark-link a {
        color: #3366FF;
    }

.result-info {
    padding: 15px 25px;
}

.fa-bookmark {
    color: #3366ff;
    margin-right: 8px;
}

.result-des {
    font-family: 'Usual Web Light';
    font-size: 1rem;
    margin-bottom: 15px;
}

    .result-des ul li {
        list-style-type: disc;
        margin-left: 20px;
    }
    .result-des ol li {
        list-style-type: decimal !important;
        margin-left: 20px !important;
    }

.result-des-content {
    margin-bottom: 15px;
}

    .result-des-content p {
        margin-bottom: 0;
    }
/*---------- result table ------------*/
.list-result {
    width: 100%;
}

    .list-result .table th sup {
        position: relative;
    }

    .list-result .table th:first-child {
        width: 10%;
    }

    .list-result .table th:nth-child(2) {
        width: 18%;
    }

    .list-result .table th:nth-child(3) {
        width: 25%;
    }

    .list-result .table th:last-child {
        width: 47%;
    }

    .list-result .table td, .list-result .table th {
        border-top: none !important;
        padding: 0 1.25rem 10px 0;
    }

    .list-result .table-hover tbody tr:hover {
        background-color: transparent !important;
    }

    .list-result .table th {
        border-top: none !important;
        font-family: 'Usual Web Bold';
        font-size: 1rem;
    }

    .list-result .table td {
        font-family: 'Usual Web Light';
        font-size: 1rem;
        padding-top: 10px;
        padding-bottom: 10px;
    }


.summary {
    clear: both;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-top: 16px;
    display: none;
}

    .summary .blue-button {
        font-size: 16px;
        margin-bottom: 10px;
        width: 100%;
        padding: 8px 12px 8px 15px !important;
        display: flex;
        justify-content: space-between;
        position: relative;
    }

.summary-button-content {
    text-align: left;
}

.summary .collapsed, .summary:last-child a {
    border: 1px solid #3366ff;
    border-radius: 28px;
    padding: 6px 20px;
    float: right;
}

    .summary .collapsed a:hover, .summary:last-child > a:hover {
        background-color: #3366ff;
        color: #fff !important;
    }

.summary a.collapsed:after:hover {
    color: #fff;
}

i {
    margin: 0 5px;
}

.key-ref {
    margin-top: 30px;
}

    .key-ref ul li {
        margin-bottom: 10px;
        display: flex;
        border: none;
    }

        .key-ref ul li a {
            border: none !important;
            padding: 0 !important;
            font-family: 'Usual Web Regular';
            font-size: 0.875rem;
        }

    .related-guidelines h6, .key-ref h6 {
        font-family: 'Tondo Web Bold';
        font-size: 1.10rem;
    }

.sort-by li {
    margin-left: 20px;
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
    cursor: pointer;
    display: flex;
}

    .sort-by li:hover {
        border-bottom: 1px solid #000033;
    }

    .sort-by li.active {
        border-bottom: 1px solid #000033;
    }

    .sort-by li:first-child {
        margin-left: 0;
        border-bottom: none;
    }

    .sort-by li img {
        max-width:26px;
    }

.search-bg-wrapper {
    position: absolute;
    width: 100%;
    margin: auto;
    left: 0;
    right: 0;
    display: none;
}

.search-bg {
    background: #F4F4F4;
    height: 660px;
    width: 100%;
}

.list-result section {
    padding: 10px;
    position: absolute;
    right: -2px;
    top: -22px;
    cursor: pointer;
    display: block;
    width: 100%;
}

.guidelines-section ul li::marker {
    font-size: 0.75rem;
}

.list_guidelines {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 16%;
}

.table_name {
    font-size: 1.4rem;
    font-family: 'Tondo Web Bold';
}

.guidelines-section sup {
    position: relative;
    font-size: 0.875rem;
    line-height: 0;
    top: -12px;
    vertical-align: baseline;
}

.guidelines-section h4 {
    font-size: 1.54rem;
    font-family: 'Tondo Web Bold';
}

.guidelines-section .list-group-item {
    color: #000033 !important;
    border: none;
    font-size: 1.25rem;
    font-family: 'Usual Web Regular';
    padding: 1.2rem 0;
    background-color: transparent;
    border-bottom: 1px solid #000;
}

.radiation-table {
    color: #202020;
    overflow-x: auto;
    max-width: 100%;
    border-collapse: collapse;
}

.more_menu {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-around;
}

    .more_menu img {
        display: none;
    }

.add {
    background-color: #fff;
    padding-top: 15px;
    border-bottom: 1px solid rgb(9, 8, 8);
}

.addmore {
    background-image: url(../images/more.png);
    background-repeat: no-repeat;
    background-position: 100%;
}


.guidelines-section .list-group-item.active, .guidelines-section .list-group-item-action:hover {
    font-weight: bold !important;
    color: #000033 !important;
}

.guidelines-section .list-group-item-action:focus {
    color: #000033 !important;
    font-weight: unset;
}
/*END OF Using the guidelines */

/* privacy-policy */
.privacy-policy {
    color: #000033 !important;
    font-size: 1.5rem;
    font-family: "Usual Web Light";
}

.privacy-policy-text h2 {
    margin-left: -30px;
    padding-top: 25px;
}

.privacy-policy-text h3, .coockies h3 {
    padding-bottom: 15px;
    font-size: 1.75rem;
    margin-bottom: 0;
    color: #3366ff;
}

.privacy-policy p {
    font-size: 1.47rem !important;
}

.privacy-policy ol {
    list-style-type: decimal;
    padding-left: 40px;
    margin-bottom: 25px !important;
}

.privacy-policy ul {
    list-style-type: initial;
    padding-left: 50px;
}

    .privacy-policy ul li, .privacy-policy ol li {
        padding-bottom: 15px;
    }

.privacy-policy .impact-section-bg {
    left: -550px;
    top: -180px;
    z-index: -5;
}

.privacy-policy .impact-section-swatchRight {
    top: 550px;
    right: -730px;
}

.privacy-policy span {
    font-weight: 700;
}
/*END of privacy-policy */

/* cookie Policy footer */
.footer-section {
    position: relative;
}

.cookies-policy-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #00FF99;
    padding: 40px 0 16px 0;
}

.cookies-text {
    width: 90%;
    margin: 0 auto;
}

.cookies-policy-footer p {
    font-size: 1.5rem;
    font-family: "Usual Web Regular";
}

.cookies-policy-footer h2 {
    font-family: "Usual Web Bold";
    color: #000033;
    font-size: 2rem;
}

.cookies-policy-footer a {
    font-family: "Usual Web Bold";
    color: #000033;
}

.cookies-btn {
    padding-top: 20px;
}

.green-btn {
    border: 2px solid #000033;
    margin-bottom: 15px;
    border-radius: 25px;
    font-family: "Tondo Web Regular" !important;
}

    .green-btn:hover {
        background-color: #000033;
        color: #fff !important;
    }

/*END OF cookie Policy footer */

/*--- Using guideline page ---*/
.guidelines-result h1 {
    margin-bottom: 28px;
}
/*------rcr tooltip ------*/
.result-info table th {
    position: relative;
}

.reco {
    cursor: pointer;
}

.tooltip-placement {
    position: relative;
    display: inline-block;
}

.rcr-tooltip {
    cursor: default;
    margin: 0;
    padding: 30px 28px;
    background: #fff;
    width: 300px;
    position: absolute;
    z-index: 99;
    left: -18px;
    bottom: 36px;
    box-shadow: 0 5px 10px 8px #00000029;
    font-family: 'Usual Web Light';
    font-size: 0.875rem;
    display: none;
}

.dropdown-menu .rcr-tooltip .arrow-down {
    left: 0;
    right: 0;
    margin: auto;
}

.dropdown-menu .rcr-tooltip {
    left: -86px;
    top: -99px;
    bottom: auto;
}

.arrow-down {
    position: absolute;
    left: 8px;
    bottom: -12px;
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 20px solid #fff;
}

.close-icon {
    position: absolute;
    top: 0;
    right: 0;
    margin: 5px;
}

.tooptip-close {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 1.3rem;
    color: #3366ff;
    cursor: pointer;
}


/*--Pagination updated ---*/

.rcr-pagination-wrapper {
    display: flex;
    justify-content: center;
}
.page-item.active .page-link {
    color: #fff !important;
}
.page-item.active .page-link:hover {
    color: #fff !important;
}

.pagination-sm .page-link {
    padding: 10px 15px;
    font-size: .875rem;
    line-height: 1.5;
    margin: 0 8px;
    border-radius: 50%;
}

.page-item:first-child .page-link, .page-item:last-child .page-link {
    border-radius: 50% !important;
    padding: 10px !important;
}

.show-guidelines {
    margin-left: 20px;
    padding-top:2px;
}

    .show-guidelines select {
        width: 90px;
        border: 1px solid #3366ff !important;
        color: #3366ff !important;
        font-family: 'Tondo Web Regular';
        font-size: 1rem;
        padding: 3px 8px;
    }

/*------ search-filter section ------*/
.filter-section {
    margin-bottom: 10px;
}

.sf-input-group {
    padding: 8px 10px 8px 20px;
    border-radius: 50rem;
    display: flex;
    justify-content: space-between;
    background: #fff;
    font-family: 'Tondo Web Regular';
    font-size: 1.5rem;
    position: relative;
    z-index: 99;
    width: 100%;
    line-height: initial;
}

.sf-content {
    background: #F4F4F4;
    padding: 15px;
    position: sticky;
    top: 156px;
    /* width: 100%; */
    border-radius: 10px;
    margin-left: -15px;
}

.sf-input-group input {
    border: none;
    background: none;
    font-family: 'Tondo Web Regular';
    font-size: 1.125rem;
    width: 100%;
}

.sf-input-group label {
    font-family: 'Tondo Web Regular';
    font-size: 1.125rem;
    margin-bottom: 0;
    line-height: 1.7;
    color: #000033;
}

.sf-input-group button {
    border: none;
    background: none;
}

.filter-content {
    background: #fff;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 10px;
    border-radius: 28px;
    border-bottom-right-radius: 28px;
    margin-top: -42px !important;
}

.filter-section .btn {
    min-width: auto;
    padding: 6px 20px;
    margin-top: 16px;
    font-size: 1rem;
    display: inline-block;
    margin-left: 4px;
}

.search-iconT {
    padding-right: 0;
}

/*-------------- Checkbox styling ------------*/
.filter-checkbox {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: 'Tondo Web Regular';
    font-size: 1.125rem;
}

    /*--- hide default checkbox ---*/
    .filter-checkbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/*--- custom checkbox styling ---*/
.checkmark {
    position: absolute;
    top: 2px;
    right: 40px;
    height: 25px;
    width: 25px;
    border: 1px solid #000033;
}
.remember-login {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 25px;
}

.remember-me {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .remember-me .checkmark1 {
        cursor: pointer;
        height: 22px;
        width: 22px;
        border: 3px solid #000033;
        margin-top: 3px;
    }

.remembre-text {
    padding-left: 5px;
    margin-bottom: 0;
    font-family: 'Tondo Web Light';
    font-size: 1.25rem;
}

.remember-me .rcr-tooltip {
    width: 210px;
    left: 176px;
    top: -70px;
    bottom: auto !important;
    padding: 15px 30px 15px 15px;
    display: none;
    z-index: 999;
}

.remembre-text sup {
    top: -12px;
    left: 1px;
}

/*--- Create the checkmark/indicator (hidden when not checked) ---*/
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/*--- Show the checkmark when checked ---*/
.filter-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/*--- Style the checkmark/indicator ---*/
.filter-checkbox .checkmark:after {
    left: 9px;
    top: 5px;
    width: 6px;
    height: 12px;
    border: solid #000033;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.form-check .filter-checkbox {
    padding: 0.75rem 0 0 3.5rem !important;
}

.form-check .checkmark {
    left: 0;
    width: 2.75rem;
    height: 2.75rem;
    background-color: #fff;
    border: none;
}

.form-check .filter-checkbox .checkmark:after {
    left: 1.15rem;
    top: 0.75rem;
    width: 0.6rem;
    height: 1.10rem;
}

/*--- Bookmark page CSS ---*/
.bookmark .bookmark-section {
    display: flex;
    justify-content: space-between;
}

.bookmark-list .description {
    margin-bottom: 30px;
}

.filter-iconM {
    display: none;
}

.search-filter-control h1 {
    display: none;
}

.bookmark-sectionM {
    display: none;
}

.result-widget .title {
    padding: 15px 20px;
}

.drag-dropicon {
    position: absolute;
    top: 0;
    right: 0px;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 22px;
    height: 45px;
}

.bookmark .quantity {
    flex-direction: row;
}

    .bookmark .quantity div:first-child {
        margin-right: 5px;
    }

.bookmark .bookmark-section {
    display: flex;
    justify-content: space-between;
    background-color: #F0EFEF;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 23px 20px 20px 20px;
    margin-top: -8px;
}

#Bookmarks .title, .drag-dropicon {
    cursor: move;
}

.more-btn {
    margin-top: 10px;
}

    .more-btn .blue-button-more {
        border: 1px solid #3366ff;
        color: #3366ff !important;
        padding: 5px 14px;
        min-width: 92px;
        float: right;
        margin-right: 10px;
        font-size: 1rem;
        display: flex;
        justify-content: space-between;
    }

        .more-btn .blue-button-more i {
            font-size: 0.875rem;
        }

        .more-btn .blue-button-more:hover {
            background-color: #3366ff !important;
            outline: none;
            box-shadow: none;
            color: #ffffff !important;
        }
/* Product-Wesbite page */
.subscriptions-cards {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 20px auto 20px auto 20px auto 20px auto;
    grid-template-columns: auto auto auto auto auto;
    gap: 20px;
    padding: 10px;
}

.subscriptions {
    text-align: center;
    min-width: 315px;
    padding: 20px 20px;
    background-color: #eff7ff;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.function-include > div {
    margin-bottom: 50px;
}

    .function-include > div div {
        width: 110px;
    }

.function-include p {
    margin-bottom: 0;
}

.product-website h2:last-child, .free-acount h2 {
    font-size: 1.875rem;
}

.subscriptions-title {
    display: -ms-grid;
    display: grid;
    height: 90px;
    vertical-align: bottom;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    line-height: 1;
}

.subscriptions-price-icon {
    color: #3366ff;
    font-size: 2.125rem;
    font-family: 'Tondo Web Bold';
    margin-bottom: 0;
}

.subscriptions-year {
    color: #3366ff;
    font-size: 1.1rem;
    position: relative;
    top: -10px;
}

.subscriptions:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    border-radius: 20px;
    background-color: #fff;
    -webkit-box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.free-acount p {
    font-size: 1.5rem;
    font-family: "Usual Web Light";
}

.subscriptions-cards .blue-button {
    padding: 10px 15px;
    width: 200px;
    margin: auto;
    margin-top: 40px;
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
}
.subscriptions-cards .unavailable-button {
    padding: 10px 15px;
    width: 200px;
    margin: auto;
    margin-top: 40px;
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
}
.subscriptions:hover .blue-button {
    background-color: #3366ff !important;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #ffffff !important;
}

.underline {
    border-bottom: 1px solid #43456c;
    margin: 30px auto 20px auto;
}

.subscriptions-concurrent, .subscription-user {
    margin-bottom: 0;
    font-size: 1rem;
}

.product-website .impact-section-bg {
    top: -236px;
    left: -484px;
}

.product-website {
    position: relative;
    padding-top: 30px;
}

.free-acount {
    position: relative;
}

    .free-acount .impact-section-swatchRight {
        top: -120px;
        right: -395px;
        width: 813px;
        height: 603px;
    }

.update-clear-btn {
    display: none;
}

.update-clear-btn-free-user {
    display: block;
}

/* product-wesbite page END */
/* spinner loader */
.spinner-overlay {
    position: absolute;
    top: 27%;
    left: 0;
    right: 0;
    margin: 0 auto;
    align-items: center;
    width: 60px;
    height: 60px;
    justify-content: center;
    display: flex;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    z-index: 99999999999;
    opacity: 1;
    transition: all 0.5s;
}

    .spinner-overlay.hidden {
        display: none;
    }

.spinner-custom img {
    width: 100%;
}

#codeSort .down-arrow {
    display: none;
}

.filter-relevance .up-arrow {
    margin-right: 0;
}

.checkbox-section {
    margin-right: 8px;
}

.filter-checkbox .checkbox-label {
    display: block;
    width: 72%;
    word-break: break-word;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
.filter-main-content {
    scrollbar-width: auto;
    scrollbar-color: #dfdfdf #ffffff;
    padding-right: 6px;
}

    /* Chrome, Edge, and Safari */
    .filter-main-content::-webkit-scrollbar {
        width: 12px;
    }

    .filter-main-content::-webkit-scrollbar-track {
        background: transparent;
    }

    .filter-main-content::-webkit-scrollbar-thumb {
        background-color: #dfdfdf;
        border-radius: 10px;
        border: 2px solid transparent;
    }
/* END Of spinner Loader */

.triangle-blue {
    width: 0;
    height: 0;
    border-left: 620px solid transparent;
    border-right: 0px solid transparent;
    border-top: 860px solid #3366ff;
    position: absolute;
    right: 0;
    top: 0;
}
/* Success page */
.success-intro {
    color: #000033;
    font-family: "Usual Web Light";
}

.success-intro-p {
    font-size: 1.8rem;
}

.success {
    padding: 60px 0px;
    background-color: #c4ffd6;
    display: flex;
    border-radius: 25px;
}

.Nhs_trust {
    width: 45%;
}

.Nhs_border p {
    font-family: 'Usual Web Bold' !important;
    font-size: 1.27rem !important;
    margin-bottom: 5px;
    line-height: 1.1;
}

    .Nhs_border p:nth-child(3) {
        color: #0362b8;
        font-size: 0.75rem !important;
    }

.Nhs_border {
    border-right: 2px solid #000033;
    padding: 15px 15px 25px 0px;
}

.success-img {
    width: 190px;
}

.success-text {
    flex: auto;
}

.success-tex-p {
    padding: 45px 0;
}

    .success-tex-p p:first-child {
        padding-bottom: 15px;
    }

.success-text h2 {
    font-family: "Tondo Web Regular";
    padding-top: 20px;
}

.success_btns .btn {
    min-width: 210px;
    padding: 7px 24px;
    margin-right: 20px;
    margin-bottom: 10px;
}

.success-img {
    position: relative;
    display: flex;
    justify-content: center;
}

    .success-img img {
        position: absolute;
        transform: rotateY(180deg);
        bottom: -45px;
    }

.success-swatch {
    position: relative;
}

    .success-swatch .impact-section-bg {
        position: absolute;
        top: -170px;
        left: -377px;
    }

.success_btns .blue-button i {
    padding-left: 15px;
}
/* END of Success page */

.support_topic_section h4 {
    color: #000033;
    font-family: 'Tondo Web Bold';
    font-size: 1.625rem;
}

.supportcontact_details input.form-style {
    color: #000033;
    font-family: "Tondo Web Light";
    display: block;
    width: 100%;
    padding: 20px;
    border: 1px solid #000033;
    border-radius: 50px;
    padding-left: 27px;
    padding-right: 54px;
    font-size: 1.5rem;
}

.giveus_details textarea.form-control {
    resize: none;
    border-radius: 24px;
    border: 1px solid #000033;
    box-shadow: none;
    padding: 15px 30px;
    font-size: 1.5rem;
    font-family: 'Tondo Web light';
}

.support_topic_section select {
    width: 100%;
    padding: 15px 25px;
    border-radius: 39px;
    position: relative;
    appearance: none;
    border: 1px solid #000033;
    background-color: transparent;
}

    .support_topic_section select option {
        font-family: 'Tondo Web Light';
        font-size: 1.625rem;
    }


.support_topic_section .clear_filter {
    padding: 0 15px;
}

.support_topic_section .giveus_details {
    padding-top: 25px;
}
.support_topic_section .attach-file {
    padding-top: 25px;
}
.down_arrow_select {
    background: url(../images/downarrow.PNG) no-repeat right #fff;
    top: 85px;
    z-index: 99;
    position: absolute;
    right: 42px;
    width: 17px;
    height: 25px;
    z-index: -1;
}

.send_btn {
    float: right;
    margin-top: 12px;
    clear: both;
}

    .send_btn .Gray-button {
        background-color: #707070;
        border: 1px solid #707070;
        color: #fff !important;
    }

        .send_btn .Gray-button:enabled {
            color: #fff;
            background-color: #3366FF;
        }

        .send_btn .Gray-button:hover:enabled {
            color: #fff;
            background-color: #000033;
        }


.clear_filter span {
    color: #3366FF;
    float: right;
    font-family: 'Usual Web Regular';
    font-size: 1.375rem;
    cursor: pointer;  
}

.capcha {
    display: flex;
    align-items: center;
    font-family: 'Tondo Web Light';
    font-size: 1.5rem;
    margin-top: 30px;
    float: right;
}

.invalid-captcha {
    padding: 12px 0;
}

.invalid-captcha-error {
    clear: both;
    padding-top: 5px;
}

.support_topic {
    display: flex;
    align-items: center;
}

.support_topic_section .impact-section-bg {
    position: absolute;
    top: -128px;
    left: -501px;
    width: 933px;
    height: 692px;
}

.support_topic_section {
    position: relative;
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: #000033 !important;
}

.dropdown-menu.account-dropd .dropdown-item {
    color: #000033 !important;
}

    .dropdown-menu.account-dropd .dropdown-item:hover {
        color: #3366ff !important;
    }

/*-------- complete account new  --------*/
.keeping-touch {
    margin-top: 30px;
}

    .keeping-touch h2 {
        font-size: 1.75rem;
        padding-bottom: 0;
    }

.mrk-preference {
    display: flex;
    justify-content: space-between;
    padding: 0 12px 10px 0;
}

.kt-gray-sec {
    background-color: #F0F0F0;
    padding: 14px;
    font-family: 'Tondo Web Regular';
    font-size: 1.125rem;
    color: #000033;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 20px;
}

.kt-text, .preference-text {
    width: 80%;
}

.preference-text {
    font-family: 'Usual Web Light';
    font-size: 1.25rem;
}

.kt-text {
    font-family: 'Tondo Web Regular';
    font-size: 1.25rem;
}

.preference-yesno {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-family: 'Tondo Web Bold';
    font-size: 1.125rem;
}

.kt-radio-btn-sec {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-family: 'Tondo Web Bold';
    font-size: 1.125rem;
}

.change_password_section h3 {
    color: #000033;
    font-size: 1.5rem;
    font-family: 'Usual Web Medium';
    padding-bottom: 20px;
}

.new_password .list-unstyled {
    padding-left: 0 !important;
    height: auto;
}

    .new_password .list-unstyled li {
        list-style-type: none !important;
    }

.newpassword {
    margin: 15px 0 0 0;
}

.Update_password .Gray-button {
    background-color: #707070;
    border: 1px solid #707070;
    color: #fff !important;
    width: 100%;
    padding: 15px 24px;
    border-radius: 50px;
    margin: 15px 0 0 0;
}

    .Update_password .Gray-button:enabled {
        color: #fff;
        background-color: #3366FF;
    }

    .Update_password .Gray-button:hover:enabled {
        color: #fff;
        background-color: #000033;
    }

.change_password_section h2 {
    padding-bottom: 0%;
}

.kt_email {
    width: 48%;
}

.kt_phone {
    width: 48%;
}

.kt_emial_phone {
    justify-content: space-between;
    display: flex;
}

.here-us {
    width: 100%;
}

.kt_emial_phone .preference-text {
    width: 50%;
}

.kt_emial_phone .mrk-preference {
    padding-right: 0;
}

.kt_emial_phone .kt-gray-sec .kt-text {
    width: 50%;
}

.kt_emial_phone .kt-radio-btn-sec {
    width: 50%;
}

.kt_emial_phone .preference-yesno {
    width: 50%;
}

.kt_emial_phone .kt-gray-sec {
    padding: 30px 10px 30px 15px;
}

.round {
    position: relative;
    width: 40px;
    height: 40px;
}

    .round label {
        border: 2px solid #000033;
        background-color: #fff;
        border-radius: 50%;
        cursor: pointer;
        height: 40px;
        left: 0;
        position: absolute;
        top: 0;
        width: 40px;
    }

        .round label:after {
            border: 4px solid #000033;
            border-top: none;
            border-right: none;
            content: "";
            height: 10px;
            left: 8px;
            opacity: 0;
            position: absolute;
            top: 11px;
            transform: rotate(-45deg);
            width: 20px;
        }


    .round input[type="checkbox"] {
        visibility: hidden;
    }

        .round input[type="checkbox"]:checked + label {
            background-color: #fff;
            border-color: #000033;
        }

            .round input[type="checkbox"]:checked + label:after {
                opacity: 1;
            }

.pl-kt {
    padding-right: 35px;
}

.myaccount .down_arrow_select {
    top: 20px;
    right: 20px;
}

.swatch_right_info {
    position: relative;
}

    .swatch_right_info .impact-section-swatchRight {
        position: absolute;
        top: -335px;
        right: -679px;
        width: 881px;
    }

.infographic-pin {
    position: relative;
    text-align: center;
}

    .infographic-pin img {
        width: 64%;
    }

    .infographic-pin > img {
        position: relative;
        z-index: 9
    }

.info-pin {
    position: absolute;
    top: 0;
    right: 0;
}

    .info-pin img {
        width: 100%;
    }

.country-ddown {
    position: relative;
    z-index: 9999999;
}

    .country-ddown.country-ddownA {
        position: relative;
        z-index: 99999;
    }

    .country-ddown .icon-wrapper {
        position: absolute;
        top: 20px;
        right: 10px;
        z-index: 9999;
    }

        .country-ddown .icon-wrapper button {
            background: none;
            border: none;
        }

        .country-ddown .icon-wrapper button {
            background: none;
            border: none;
        }

        .country-ddown .icon-wrapper .search-iconT {
            color: #3366ff !important;
        }

.list-area-work {
    border: 1px solid #000033;
    border-radius: 35px;
    padding: 70px 20px 20px 20px;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 9;
    background: #fff;
    display:none;
}

    .list-area-work li {
        padding: 6px 0;
    }

        .list-area-work li a {
            color: #000033;
            display: block;
            font-family: "Tondo Web Light";
            font-size: 1.25rem;
        }
            .list-area-work li a:hover {
                color: #3366ff;
            }

            .ui-widget {
                font-family: 'Usual Web Regular' !important;
                font-size: 1rem !important;
            }

    .ui-widget.ui-widget-content {
        border: 1px solid #000033 !important;
        border-radius: 35px;
        padding: 20px 20px 20px 20px;
    }

.ui-menu .ui-menu-item {
    padding: 10px;
}

.ui-state-focus {
    background: none !important;
    border: 1px solid #fff !important;
    color: #3366ff !important;
}

.comp-account .get-started {
    min-height: auto;
}

.flabel-disabled span, .fstyle-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

#list-example1 {
    display: none;
}

#list-example1 {
    background-color: #fff;
    z-index: 99999999;
    top: 154px;
    border-top: 1px solid #000;
    padding-bottom: 0;
}

    #list-example1 .list-group-item.active {
        display: none !important;
    }
/* Hide password reveal button in MS Edge */
::-ms-reveal {
    display: none
}

.thank-varify-message {
    color: #01DE34;
    font-family: 'Usual Web Regular';
    font-size: 1rem;
    margin-bottom: 24px;
}

    .thank-varify-message span {
        margin-left: 3px;
    }

.notfound h1 {
    font-family: 'Tondo Web Regular';
    font-size: 2.875rem;
}

.notfound p {
    font-family: 'Usual Web Light';
    font-size: 2.125rem;
}

.notfound {
    display: flex;
    align-items: end;
    margin-bottom: 100px;
}

.char-Range {
    padding-top: 8px;
    text-align: right;
    font-size: 1rem;
}

.supportcontact_details {
    margin-top: 45px;
}

.guidelines-section .list-area-work li {
    list-style-type: none;
}
.list-wrapper ul {
    height: 204px;
    overflow: auto;
    margin-bottom: 0 !important;
    padding-left: 10px !important;
    margin-top: 6px !important;
}

/*--- sitemap ---*/
.sitemap {
    padding: 15px 0 20px 0;
    margin-left: 100px;
}

    .sitemap h2 {
        margin-bottom: 15px;
        font-size: 1.75rem;
    }

        .sitemap h2 a {
            color: #000033;
        }

.sitemap-sec {
    margin-bottom: 15px;
    margin-top: -10px;
}

    .sitemap-sec h2 {
        margin-bottom: 0 !important;
    }

    .sitemap-sec ul li {
        line-height: 1.4;
        font-size: 1.5rem;
    }

.sitemap .impact-section-bg {
    top: 250px;
}

.sitemap ul {
    margin-left: 64px !important;
}

    .sitemap ul li {
        list-style-type: disc;
    }

        .sitemap ul li a {
            font-family: 'Usual Web Light';
            font-size: 1.25rem;
            color: #000033;
            bottom: 3px;
            position: relative;
        }

            .sitemap ul li a:hover {
                color: #3366FF;
            }

.bookmark-tooltip a {
    cursor: pointer;
}

.area-text {
    color: #707070 !important;
}

.selected-text {
    color: #000033 !important;
}

.login-button-header .acc-support-btn {
    border: 1px solid #000033;
}

.send-btn-disaled {
    pointer-events: none;
}

.area-workd > span {
    cursor: pointer;
}
.login-error-msg .email-error {
    display: none;
}

.error-b {
    margin-bottom: 12px;
    margin-top: -12px;
    padding-left: 18px;
}

/*------------------show mbs comments css --------------*/
.mbs-show-btn {
    font-family: 'Usual Web Light';
    font-size: 14px;
    color: #000033;
    margin-top: 10px;
}

.mbs-show-btn2 {
    padding: 10px;
    padding-left: 0;
}

.mbs-circle-status {
    border-radius: 50%;
    width: 48px;
    height: 44px;
    padding: 8px;
    background: #fff;
    display: inline-block;
    margin-right: 10px;
}

.mbs-show-btn a {
    font-family: 'Usual Web Light';
    font-size: 14px;
    color: #3366FF !important;
}

    .mbs-show-btn a:hover {
        color: #3366FF !important;
    }

.mbs-content {
    clear: both;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-top: 16px;
    display: block;
}

.mbs-item-list {
    margin-bottom: 16px;
}

    .mbs-item-list h4 {
        font-family: 'Tondo Web Bold';
        font-size: 14px;
        color: #000033;
        margin-bottom: 8px;
    }

.clear-filter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/*------- account information page css  --------*/
#countryList, #codeList {
    position: relative;
    z-index: 999;
}

.arrow-disp {
    position: absolute;
    top: 18px;
    right: 16px;
    padding: 2px 15px;
    z-index: 99999999;
    background: none;
    border: none;
}

.country-ddown .icon-wrapper {
    position: absolute;
    top: 20px;
    right: 10px;
    z-index: 9999;
}

    .country-ddown .icon-wrapper button {
        background: none;
        border: none;
        color:#000033 !important;
    }

    .country-ddown .icon-wrapper .search-iconT {
        color: #3366ff !important;
    }

.autocomplete {
    position: relative;
    display: inline-block;
    width: 100%;
}

.autocomplete-items {
    position: absolute;
    border: 1px solid #000033 !important;
    z-index: 99;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 40px;
    background: #fff;
    padding: 70px 16px 30px 30px;
}
.autocomplete-items-inner {
    max-height: 240px;
    overflow: auto;
    margin-bottom: 0 !important;
}
.country-code-items {
    padding: 10px 0;
    cursor: pointer;
}

    .country-code-items:hover {
        color: #3366ff;
    }

.autocomplete-active {
    color: #3366ff !important;
}
.submenu-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.about-irefer a {
    color: #3366ff;
}

.placeholder-areaWwork {
    position: absolute;
    width: 90%;
    display: block;
    cursor: pointer;
}

.contact-details {
    margin-top: 40px;
}

.related-article-section {
    margin-top: 60px;
}
p.placeholder-areaWwork.formLabel.formTop {
    position: absolute;
}

.placeholder-areaWwork.formTop {
    display: contents;
    position: absolute;
}

p.placeholder-areaWwork.formLabel {
    position: initial;
    width: auto;
    display: block;
    cursor: pointer;
}


.search-btn-disabled {
    opacity: 0.4;
    cursor: initial;
}
.sortBy-title {
    margin-right:4px;
}
.pagination {
    align-items: center;
}
.radiation-dose h2 {
    margin-bottom:2rem;
}
.internal-page-content {
    margin-top:40px;
}
.manage-team-sec {
    margin-left:60px;
}
.filter-iconMSwap {
    display: none;
}
.dis-content {
    display: contents;
}
.need-help {
    margin-top: 40px;
}

    .need-help .searchFilter-form {
        border: 1px solid #000033;
        border-radius: 50px;
        padding: 10px;
        background: #fff;
    }

.need-help-search .icon-search, #Topic {
    font-family: 'Tondo Web Regular';
    font-size: 1.25rem;
    color: #000033;
}

.need-help-search .search-iconT {
    color: #3366ff !important;
}

.need-help .filter-section {
    margin-bottom: 0;
}

.need-help-search i::before {
    font-size: 1.5rem;
}

.need-help-search input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #000033;
}

.contact-accordion-container .contact-accordion-title {
    position: relative;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Usual Web Medium';
    font-size: 1.4rem;
    cursor: pointer;
    background: #f4f4f4;
    padding: 1rem 1.5rem;
    margin-bottom: 0.6rem;
}

    .contact-accordion-container .contact-accordion-title:hover,
    .contact-accordion-container .contact-accordion-title:active,
    .contact-accordion-title.open {
        background-color: #00ff99;
    }

    .contact-accordion-container .contact-accordion-title::after {
        float: right !important;
        font-family: FontAwesome;
        content: "\f067";
        width: 20px;
        height: 20px;
        display: flex;
        color: #000033;
        align-items: center;
        justify-content: center;
        margin-left: 40px;
    }

    .contact-accordion-container .contact-accordion-title.open::after {
        content: "\f068";
    }

/*CSS for CodePen*/

.contact-accordion-container .contact-accordion-content {
    padding: 15px 25px 15px 30px;
    font-family: 'Usual Web Light';
    font-size: 1.5rem;
    margin-bottom: 30px;
    background-color: rgba(255, 255, 255, 0.6);
}

.contact-accordion-container {
    width: 100%;
}

.articles-content li {
    margin-bottom: 12px;
    list-style-type: none;
}
    .articles-content li a {
        font-size: 1.625rem;
        color: #3366FF
    }
    .articles-content li img {
        margin-left: 8px;
    }

.attach-file {
}

    .attach-file .form-control {
        resize: none;
        border-radius: 24px;
        border: 1px dashed #000033;
        box-shadow: none;
        padding: 30px 30px;
        font-size: 1.25rem;
        font-family: 'Tondo Web light';
        height: auto;
    }


.attach-file-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
    padding-top: 15px;
}

.uploaded-images {
    margin: 20px 0 20px 0 !important;
}

    .uploaded-images li {
        margin-bottom: 10px;
        color: #000000 !important;
        font-family: 'Tondo Web Regular';
        font-size: 24px;
    }

        .uploaded-images li a {
            color: #3366ff !important;
        }

.support_topic {
    margin-bottom: 30px;
}

.list-area-work-sec {
    max-height: 240px;
    overflow: auto;
}

.disabled-div {
    background: #fff;
    position: absolute;
    width: 100%;
    height: 150px;
    z-index: 99999999;
    opacity: 0.2;
    display: none;
}
.dis-content {
    display: contents;
}

.contact-accordion-content {
    display: none;
}

.ans-list ul li {
    list-style-type: disc;
    margin-left: 20px;
}

.ans-list ol li {
    list-style-type: decimal;
    margin-left: 60px;
}
.ans-list ol li ul {
    margin-bottom: 10px !important;
}

.ans-list ol li ul li {
   list-style-type: disc;
   margin-left: 25px;
}

.ans-list ol li ol li {
    list-style-type: decimal;
    margin-left: 25px;
}

.rcr-tooltip a {
    color: #3366ff !important;
    cursor: pointer;
}

.delete-file-icon i {
    color: red;
    margin-left: 15px;
    cursor: pointer;
    font-weight: 500;
    font-size: 22px;
}

.attachment-icon i {
    color: #3366ff;
    margin-right: 15px;
    font-size: 22px;
}

.supported-files {
    font-family: 'Tondo Web Bold';
    font-size: 16px;
    color: #000033;
}

.browse-file {
    opacity: 0;
    position: absolute;
    width: 100%;
    cursor: pointer;
    padding: 130px 0;
}
.radiation-table-grade th {
    background-color: #99CCFF;
    font-weight: unset;
    width: 25%;
}
.attach-file-mobile p {
    font-family: 'Usual Web Light';
    font-size: 16px;
}

.attach-file-mobile .browse-file {
    padding: 30px 0;
}

.attach-file-mobile .uploaded-images li {
    font-size: 17px;
    display: flex;
}

.attach-file-mobile .blue-button {
    width: 100%;
}

#uploadFileMobile {
    display: none;
}
.need-help-search .icon-search, #Topic, .drag-text {
    font-family: 'Tondo Web Regular';
    font-size: 1.25rem;
    color: #000033;
}
/*--------- Media query start here--------------*/
@media (max-width: 1900px) {
    html {
        font-size: 88%;
    }

    .result-des {
        font-size: 1.10rem;
    }

    .rcr-tooltip {
        font-size: 1rem;
    }
    .list-result .table td {
        font-size: 1.10rem;
    }
    .mbs-content {
        font-size: 1rem;
    }
    .key-ref ul li a {
        font-size: 1rem;
    }
}
@media (max-width: 1780px) {
    .triangle-blue {
        border-left: 460px solid transparent;
        border-top: 620px solid #3366ff;
    }

    .nav_pin::before {
        left: -330px;
    }

    .login-button {
        right: 4rem;
    }
}
@media (max-width: 1680px) {
    html {
        font-size: 85%;
    }
    .nav_pin::before {
        left: -290px;
        width: 100%;
    }

    .login-button {
        right: 3.4rem;
    }

    .subscriptions-cards {
        display: -ms-grid;
        display: grid;
        grid-gap: 16px;
        -ms-grid-columns: 1fr 16px 1fr 16px 1fr;
        grid-template-columns: repeat(3, 1fr);
    }

    .down_arrow_select {
        top: 65px;
    }
}


@media (min-width: 1480px) {
    .container {
        max-width: 100%;
    }

    .nav_pin::before {
        left: -340px;
    }
}

@media (min-width: 1680px) {
    .nav_pin::before {
        left: -440px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 100%;
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 1480px) {
    .logo-section .section-content {
        width: 100%;
    }
    html {
        font-size: 80%;
    }
}

@media (min-width: 1681px) {
    .container {
        max-width: 1640px;
        padding-left: 0;
        padding-right: 0;
    }
}
@media (max-width: 1680px) {
    .container {
        max-width: 100%;
        padding-left: 40px;
        padding-right: 40px;
    }
    .remember-me .rcr-tooltip {
        left: 156px;
        top: -62px;
    }
}

@media (max-width: 1366px) {
/*    .container {
        max-width: 1280px !important;
        padding: 0;
    }*/
    .hero-content {
        top: 120px;
    }

    .footer-section .bg-image img {
        width: 200px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        margin: 0 0 0 0.5rem;
    }

        .navbar-expand-lg .navbar-nav .nav-link:first-child {
            margin-left: 0.5rem;
        }

/*    .nav_pin::before {
        left: -290px;
        width: 100%;
    }*/

    .header {
        padding: 10px 0;
    }

    .dropdown-menu {
        border-radius: 1rem;
        min-width: 10rem;
    }

    .list-result .table {
        width: 100%;
    }

    .result-info {
        padding: 15px 15px;
    }

    .filter-checkbox {
        padding-left: 15px;
    }

    .sf-input-group {
        padding-left: 15px;
    }

    .forgot-infographic .info-pin {
        top: 0;
    }

    .checkmark {
        right: 25px;
    }

    .sitemap {
        margin-left: 80px;
    }
        .sitemap h2 {
            margin-bottom: 15px;
        }
    .remember-me .rcr-tooltip {
        width: 215px;
        left: 148px;
        top: -62px;
    }

    .remember-me .checkmark1 {
        margin-top: 0;
    }

    .password_eveimg img {
        top: 20px;
    }



/*    .sitemap ul li {
        font-size: 24px;
    }

        .sitemap ul li a {
            font-size: 18px;
        }*/

    /*.login-button {
        right: 60px;
    }

        .login-button .btn {
            min-width: 180px;
        }

    .triangle-blue {
        border-left: 460px solid transparent;
        border-top: 620px solid #3366ff;
    }*/
}

@media (max-width: 1280px) {
    .container {
        max-width: 100% !important;
        padding: 0 30px;
    }

    .login-button .btn {
        min-width: 180px;
    }

    .login-button {
        right: 2.6rem;
    }

    .hero-content {
        width: 60%;
        text-align: center;
        padding: 0 1rem;
    }

    .nav_pin::before {
        left: -275px;
    }
    s
    .footer-section .container {
        padding: 0 30px;
    }

    .info-pin {
        top: -66px;
    }

    .remember-me .rcr-tooltip {
        left: 148px;
    }
    .sub_menu p {
        font-size: 1.750rem;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 1.60rem;
    }
}

@media (max-width: 1200px) {

    .login-button {
        right: 2rem;
    }
    .mbottom-10 {
        margin-bottom: 6px !important;
    }

    .down_arrow_select {
        top: 54px;
    }

    .list-result .table th:first-child {
        width: 10%;
    }

    .list-result .table th:nth-child(2) {
        width: 20%;
    }

    .list-result .table th:nth-child(3) {
        width: 32%;
    }

    .list-result .table th:last-child {
        width: 38%;
    }

    .list-result .table  {
        width: 690px;
    }

    .rcr-form-textbox .ddown-arrow {
        padding: 0;
    }

    .save-canclebtn {
        float: right;
    }

    .triangle-blue {
        border-left: 360px solid transparent;
        border-top: 440px solid #3366ff;
    }

    .nav_pin::before {
        left: -190px;
    }
}
@media (max-width: 1140px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 1.5rem;
    }

    .subscriptions-cards {
        display: -ms-grid;
        display: grid;
        grid-gap: 6px;
        -ms-grid-columns: 1fr 16px 1fr 16px 1fr;
        grid-template-columns: repeat(3, 1fr);
        padding: 15px !important;
    }
}
@media (max-width: 1080px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 1.25rem;
    }

    .footer-bottom .footer-nav li a {
        padding: 0 1rem 0 0;
    }
    .rcr-tooltip {
        padding: 20px 25px;
        width: 260px;
    }
}

@media (max-width: 1024px) {
    .login-button {
        right: 30px;
    }
    .nav_pin::before {
        left: -200px;
        width: 100%;
    }
    .triangle-blue {
        border-left: 360px solid transparent;
        border-top: 440px solid #3366ff;
    }

    .list-result .table {
        width: 100%;
    }

    .checkmark {
        right: 10px;
    }

    .myaccount .down_arrow_select {
        top: 15px;
        right: 25px;
    }

    .kt_information .kt-text {
        width: 75%;
    }

    .remember-me .rcr-tooltip {
        left: 148px;
        top: -62px;
    }

    .password_eveimg img {
        top: 18px;
    }
    .round {
        width: 44px;
        height: 44px;
    }
}
@media (min-width: 992px) {
    .accordion-container {
        display: none;
    }

}
@media (max-width: 991px) {
    .list-result .table {
        width: 100%;
    }

    .container {
        max-width: 100%;
        padding: 0 36px;
    }

    .costum-navbar {
        box-shadow: 0 0 65px -19px rgb(0 0 0 / 17%);
        position: sticky;
        top: 0;
    }

    .hero-content {
        width: 80%;
        text-align: center;
    }

    .main-header {
        background-color: #000033 !important;
        height: 104px;
    }

    .logoD {
        display: none;
    }

    .logoM {
        display: block;
        position: absolute;
    }

    .logo-white {
        display: block;
        position: relative;
        z-index: 999;
        margin-left: 17px;
        top: 0;
    }

    .navbar-collapse {
        background-color: #3366ff !important;
        position: absolute;
        width: 100%;
        left: 0;
        top: 0;
        z-index: 1000;
        padding-bottom: 30px;
    }

    .footer-section .footer-top {
        padding-bottom: 15px;
    }

        .footer-section .footer-top .footer-links {
            padding-left: 0;
            z-index: 1;
        }

            .footer-section .footer-top .footer-links ul li, .footer-nav ul li {
                padding: 0 0 10px 0;
            }

    .footer-bottom .footer-nav li a {
        padding-left: 0;
    }

    .login-button {
        display: none !important;
    }

    .login-buttonM {
        display: block;
        padding-top: 10px;
        margin: 0 auto;
        width: 70%;
    }

        .login-buttonM button {
            min-width: auto;
            width: 100%;
        }

        .login-buttonM .dropdownM {
            margin-bottom: 1rem;
            position: relative;
        }

        .login-buttonM .dropdown-item {
            padding: 0.6rem 1rem;
            font-size: 1.5rem;
            text-align: left;
        }

    .navbar-toggler {
        z-index: 9999;
    }

    .navbar-nav {
        text-align: center;
        padding: 30px 36px 16px 36px;
        position: relative;
        z-index: 999;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        color: #fff !important;
        padding: 0 0 36px 0;
    }

    .nav_pin::before {
        display: none;
    }

    .header {
        padding: 0;
    }

    .impact-section-bg, .impact-section-swatchRight, .determined .impact-section-swatchRight, .introduction .impact-section-bg,
    .determined .impact-section-swatchRight {
        display: none;
    }

    .navbar-expand-lg .navbar-nav .nav-link.active {
        color: #00ff99 !important;
    }

    .user-img img {
        width: 60px;
    }

    .benifit-section-bg {
        display: none;
    }

    .impact-section-bgM {
        background: url(../images/left-clip-bgM.png) no-repeat;
        position: absolute;
        top: -206px;
        left: -270px;
        width: 510px;
        height: 710px;
    }

    .impact-section .info-persent, .impact-section .impact-content {
        text-align: center;
        margin-top: 10px;
    }

    .impact-section img {
        margin-bottom: 10px;
    }

    .logo-section .section-content {
        width: 100%;
        margin: 0 auto;
    }

    .logo-section img {
        max-width: 75%;
    }

    .carousel-arrow {
        right: -20px;
        left: auto;
        bottom: 0;
        top: auto;
    }

    .form-right-content {
        padding-left: 0;
    }

        .form-right-content button {
            min-width: 100%;
        }

    .bgimg_right_signup {
        padding-top: 30px;
    }

        .bgimg_right_signup img {
            display: none;
        }

    .pr-116 {
        padding-right: 0;
    }

    .footer-contact p {
        width: 100%;
    }

    .footer-links ul {
        margin-top: 10px !important;
    }

    .dropdown-menu {
        border-radius: 1rem;
        min-width: 10rem;
    }

    .login-attempt {
        width: 100%;
    }

    .navbar-expand-lg .navbar-nav .nav-link, .navbar-expand-lg .navbar-nav .nav-link:hover, .navbar-expand-lg .navbar-nav .nav-link.active {
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer-bottom .footer-nav li {
        display: block;
    }

    .bookmark-sectionM {
        display: flex;
        justify-content: space-between;
        background-color: #F0EFEF;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        padding: 23px 20px 20px 20px;
        margin-top: -8px;
    }

    .bookmark-link {
        position: initial;
    }

    .result-info {
        padding: 15px 15px;
    }

    .sf-content {
        padding: 0;
        margin: 0;
    }

    .filter-iconM {
        margin-left: 10px;
        display: block;
    }
    .filter-iconMSwap {
        display: block;
    }

        .filter-iconM img {
            width: 96%;
            display:none;
        }

    .filter-iconMSwap img {
        width: 96%;
    }

    .search-result {
        padding: 0 !important;
        margin-top: 25px;
    }

    .trial-user-content {
        margin-left: 8px;
    }

    .sf-input-group {
        margin-bottom: 15px;
    }

    .quantity {
        flex-direction: row;
    }

        .quantity div:first-child {
            margin-right: 5px;
        }

    .guidelines-result.container > h1 {
        display: none;
    }

    .search-filter-control h1 {
        display: block;
    }

    .guidelines-result.container {
        padding: 0;
    }

        .guidelines-result.container .search-filter-control {
            background-color: #F4F4F4;
            padding: 40px 36px 0 36px !important;
        }

        .guidelines-result.container .search-result {
            padding-left: 36px !important;
            padding-right: 36px !important;
        }

    .bookmark-section {
        display: none;
    }

    .rcr-pagination-wrapper {
        flex-direction: column;
    }

    .show-guidelines {
        margin: 15px auto 8px;
    }

        .show-guidelines select {
            width: auto;
        }

    .pagination-sm .page-link {
        padding: 4px 8px;
        margin: 0 4px;
    }

    .filter-wrapper {
        padding-bottom: 14px;
    }

    .result-widget .title {
        padding: 10px 15px;
    }

    .bookmark-sectionM {
        padding-left: 15px;
    }

    .subscriptions-cards {
        display: -ms-grid;
        display: grid;
        grid-gap: 16px;
        -ms-grid-columns: 1fr 16px 1fr;
        grid-template-columns: repeat(2, 1fr);
    }

    .sub_menu .dropdown:hover .dropdown-menu, .sub_menu .dropdown-menu.show {
        display: block;
        margin-top: 0;
        font-size: 1.25rem !important;
        text-align: center;
    }

    .ireferM .navbar-nav .nav-link:hover {
        color: #00ff99 !important;
    }

    .sub_menu li .dropdown-menu.show a {
        padding-bottom: 20px !important;
        background: none;
    }

    .dropdown-item:focus, .dropdown-item {
        color: #fff !important;
    }

    #menu {
        display: flex;
        flex-direction: column;
    }

    .down_arrow_select {
        top: 58px;
    }

    .more-btn .blue-button-more:hover {
        background-color: transparent !important;
        color: #3366ff !important;
    }

    .list-result-col {
        padding: 10px;
        display: inline-block;
    }

    .list-result-cell {
        padding: 6px 0;
    }

    .list-result .list-result-col:nth-child(1), .list-result .list-result-col:nth-child(2), .list-result .list-result-col:nth-child(3), .list-result .list-result-col:nth-child(4) {
        width: auto;
    }

    .list-result-header {
        padding: 6px 0;
        font-family: 'Usual Web Bold';
        border-bottom: none;
    }

    .down_arrow_select {
        top: 50px;
    }

    .filter-checkbox .checkbox-label {
        width: 82%;
    }

    .filter-section .blue-button:hover, .filter-section .blue-button:focus {
        background-color: transparent !important;
        color: #3366ff !important;
    }

    .infographic-pin {
        display: none;
    }

    .support_img {
        display: none;
    }

    .autocomplete-items {
        min-width: 100% !important;
    }

    .list-area-work li a {
        font-size: 1.5rem;
    }

    get-started .form-style {
        font-size: 1.5rem;
    }

    .giveus_details textarea.form-control {
        font-size: 1.5rem;
    }

    #Typesrecommendations h2, #Grades h2, #RadiationDosage h2, #Introduction h2, #ImagingTechniques h2, #ContrastAgents h2, #considerations h2, #account-info-text h2 {
        position: sticky;
        background-color: #fff;
        top: 100px;
        padding: 15px 0px;
        z-index: 555;
    }

    #account-info-text > h2 {
        z-index: 99999999 !important;
    }

    .account-underline {
        border-bottom: 1px solid #000;
    }

    .more_menu img {
        display: block;
    }

    .more_menu {
        border-bottom: 1px solid #000;
    }

        .more_menu .list-group-item {
            border-bottom: none;
        }

    .remember-me .rcr-tooltip {
        left: 148px;
        top: -60px;
    }

    .sitemap .swatch-mobileR {
        display: none;
    }

    .supportcontact_details input.form-style {
        font-size: 1.5rem;
    }

    .testimonial-section1 .carousel {
        padding-bottom: 45px;
    }

    .password_eveimg img {
        top: 20px;
    }

    .triangle-blue {
        border-left: 220px solid transparent;
        border-top: 290px solid #3366ff;
    }

    .remember-me .checkmark1 {
        height: 20px;
        width: 20px;
    }

    .remember-me .rcr-tooltip {
        width: 210px;
    }

    .gr-top0 {
        margin-top: -40px;
    }

    .footer-section .bg-image img {
        width: 305px;
    }

    .footer-section .bg-image img {
        width: 305px;
    }

    .keeping-touch {
        margin-top: 0;
    }

    .sf-input-group input {
        font-size: 1.25rem;
    }

    .sf-input-group label {
        font-size: 1.25rem;
    }

    .filter-checkbox {
        font-size: 1.25rem;
    }

/*    section {
        font-size: 2rem;
    }
*/
    .footer-section {
        font-size: 1.4rem;
    }

        .footer-section .footer-top .footer-links ul li a {
            font-size: 1.4rem;
        }

    .btn, .filter-section .btn {
        font-size: 1.4rem;
    }

    .get-started input.form-style, .create-account input.form-style, .get-started .form-style {
        padding:16px 20px;
    }
    .filter-iconM img {
        display: block;
    }
    .header .iRefer-Logo {
        margin-left: -20px;
        width:13.5rem;
    }
    .iRefer-Logo {
        width: 13.5rem;
        margin-left: 12px;
    }
    .manage-team-sec {
        margin-left: 0;
    }
    .blue-btn-bg:focus {
        background-color: #3366ff;
        color: #ffffff !important;
        border: 1px solid #3366ff;
    }
    .need-help, .contact-details {
        margin-top: 20px;
    }

    .related-article-section {
        margin-top: 30px;
    }

    .articles-content li a {
        font-size: 1.5rem;
    }

    .support_topic_section .giveus_details {
        padding-top: 0;
    }

    .supportcontact_details {
        margin-top: 30px;
    }
    .blue-btn-bg:hover {
        background-color: #3366ff !important;
        color: #ffffff !important;
        border: 1px solid #3366ff !important;
    }

    .radiation-table {
        font-size: initial;
    }

    .usergudelines_table {
        font-size: inherit;
    }

    #uploadFileMobile {
        display: block;
    }

    #uploadFileDiv {
        display: none;
    }

    .attach-file-mobile .uploaded-images li {
        font-size: 14px;
        display: flex;
    }

    #searchGuidelinesCount {
        width: 100%;
    }
}
@media (max-width: 900px) {
    .footer-section .bg-image img {
        width: 240px;
    }

    .footer-section .bg-image {
        bottom: 40px;
        background-color: #fff;
    }
}
@media (max-width: 768px) {
    html {
        font-size: 82%;
    }

    .costum-navbar {
        box-shadow: 0 0 65px -19px rgb(0 0 0 / 17%);
        position: sticky;
        top: 0;
    }

    header-main.header-navbar {
        top: 0;
    }

    section {
        padding: 30px 0 30px 0;
    }

    .info1 {
        width: 100%;
    }

    .footer-bottom .footer-nav li a {
        padding-left: 0;
    }

    .footer-section .bg-image {
        bottom: 100px;
        background-color: #fff;
    }

    .footer-nav {
        padding-left: 0 !important;
    }

    .testimonial-section1 .toSay {
        margin-bottom: 2rem;
    }

    .navbar-dark .navbar-toggler {
        right: 0px;
        top: 35px;
    }

    .Verify_email > h2, .create-account > h2 {
        font-size: 1.5rem;
    }

    .log_img_pin {
        display: none;
    }
    /* benifits page */
    .references {
        width: 100%;
    }

    .sign-up .recive-wth, .sign-up .resend_email {
        width: 100%;
    }

    .Benefits .guidelines p {
        width: 100%;
    }

    .panel-title .btn {
        font-size: 1.25rem;
        text-align: initial;
    }

    .panel-title > button::after {
        text-align: center;
    }

    .panel-title > button.collapsed::after {
        float: right !important;
        content: "\f067";
        width: 22px;
        height: 22px;
        padding-right: 1px;
        font-size: 0.938rem;
    }

    .panel-title > button::after {
        width: 22px;
        height: 22px;
    }

    .calculations {
        font-size: 1rem !important;
    }

    .references p {
        width: 100%;
    }

    .references .btn {
        min-width: 300px;
    }

    .img-with img, .guidelines-img img {
        width: 100%;
    }

    .shadow-box {
        margin-bottom: 15px;
    }

    .log_img_pin {
        display: none;
    }

    .create-account {
        margin-bottom: 15px;
    }

    .benefits-accordion .swatch-mobileL {
        top: 0;
        z-index: -5;
    }

    #headingfive p {
        width: 80%;
    }
    /* benifits page */
    .swatch-mobileL {
        display: none;
        position: absolute;
    }

    .swatch-mobileR {
        display: block;
        position: absolute;
        bottom: 26px;
    }

    .radiation-dose .swatch-mobileR {
        top: 26px;
    }

    .Radiology-Service .swatch-mobileR {
        top: 71px;
    }

    .swatch-mobileR img, .swatch-mobileL img {
        width: 100%;
    }

    .guidelines {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .intent, .developed, .radiation-dose {
        padding: 30px 0 20px 0;
    }

        .intent h2 {
            margin-bottom: 30px;
        }

    .references-bg {
        margin: 0 0 2px 0px;
        padding-bottom: 20px;
    }

    .radiation-table {
        display: block;
    }

    .guidelines-section-text div {
        padding-bottom: 20px;
    }

    .guidelines-section p {
        margin-bottom: 10px;
    }

    .guidelines-section h2 {
        padding-bottom: 15px;
    }

    .mt-50 {
        margin-top: 0%;
    }

    .list_guidelines_heading {
        margin-bottom: 30px;
    }

    .guidelines-section .swatch-mobileL {
        top: -90px;
        left: -273px;
        z-index: -1;
    }

    .guidelines-section .list-group-item {
        background-color: #fff;
    }

    .more_menu img {
        display: block;
    }

    .more_menu .list-group-item {
        border-bottom: none;
    }

    .more_menu {
        border-bottom: 1px solid #000;
    }

    .list-group-item + .list-group-item.active {
        margin-top: 0;
    }

    #Typesrecommendations h2, #Grades h2, #RadiationDosage h2, #Introduction h2, #ImagingTechniques h2, #ContrastAgents h2, #considerations h2, #account-info-text h2 {
        position: -webkit-sticky;
        position: sticky;
        background-color: #fff;
        top: 100px;
        padding: 15px 0px;
        z-index: 555;
    }

    #account-info-text > h2 {
        z-index: 99999999 !important;
    }

    #ContrastAgents h2 {
        color: #3366ff;
        font-size: 2.05rem;
        padding-bottom: 15px;
    }

    #considerations h2 {
        font-size: 1.125rem;
        padding: 21px 0px;
    }

    #RadiationDosage img {
        padding-right: 5px;
        padding-bottom: 5px;
    }

    .guidelines-section {
        border-bottom: none;
    }

    /* privacy policy */
    .privacy-policy h2 {
        font-size: 1.4rem;
    }

    .privacy-policy h3 {
        font-size: 1.35rem;
    }

    /* footer new*/
    .footer-bottom .pl-3, .footer-bottom .px-3 {
        padding-left: 0;
    }

    /*------ Sub-header Mobile ---------*/

    .ireferM .nav-link {
        padding-bottom: 20px !important;
    }

    .sub_menu li .dropdown:hover .dropdown-menu {
        display: block;
    }

    .triangle-fixed {
        display: unset;
    }

    .sub_menu li .dropdown-menu li {
        width: 100%;
        color: #fff !important;
        background-color: unset;
    }

    .subscriptions-cards {
        display: -ms-grid;
        display: grid;
        grid-gap: 16px;
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
    }

    .triangle-blue {
        border-left: 160px solid transparent;
        border-top: 210px solid #3366ff;
        z-index: 999;
    }

    .sort-by li {
        margin-left: 20px;
    }

    .search-result-heading {
        font-size: 1.4rem;
    }

    #menu {
        display: unset;
    }

    .rcr-tooltip {
        left: -140px;
    }

        .rcr-tooltip .arrow-down {
            left: 0;
            right: 0;
            margin: auto;
        }

    .remember-Tooltip .arrow-down {
        left: auto;
        right: auto;
    }

    .list-result-cell img {
        margin-right: 2px;
    }



    .support_topic h1 {
        margin-top: 25px;
    }

    .send_btn {
        margin-top: 15px;
    }

    .kt_emial_phone {
        display: inline;
    }

    .kt_email, .kt_phone {
        width: 100%;
    }

    .radio_yes_m {
        padding-right: 30px;
    }

    .kt_information .mrk-preference {
        padding: 0 18px 5px 0;
    }

    .kt_information .preference-text {
        font-size: 1.25rem;
    }

    .kt_information h2 {
        font-size: 1.25rem;
        padding-bottom: 0;
    }

    .kt_information .kt-gray-sec {
        justify-content: space-between;
        padding: 16px 5px 16px 10px;
    }

    .kt_information .kt-text {
        width: 60%;
    }

    .kt_emial_phone .preference-yesno {
        width: 20%;
    }

    .kt_emial_phone .kt-radio-btn-sec {
        width: 23%;
    }

    .kt-radio-btn-sec {
        width: 23%;
    }

    .guidelines {
        padding-top: 50px;
    }

    .notfound {
        margin: auto;
        margin-bottom: 60px;
    }

        .notfound h1 {
            font-size: 2.25rem;
        }

        .notfound p {
            font-size: 1.25rem;
        }
    .hero-content {
        width: 85%;
    }
    .remember-me .rcr-tooltip {
        left: 142px;
        top: -62px;
    }
    .result-des {
        font-size: 1rem;
    }
    /*------END OF Sub-header Mobile---------*/
}

@media (max-width: 714px) {
    .footer-bottom .footer-nav li {
        display: block;
    }

    .footer-section .bg-image {
        bottom: 100px;
    }
}

@media (max-width: 575px) {
    .drag-dropicon {
        left: initial;
    }

    .drag-dropicon1 {
        width: auto;
    }

    .sort-by li {
        flex-direction: column;
    }

    .rele-img {
        display: block;
    }

    .capcha {
        display: flex;
        flex-direction: column;
        text-align: right;
        float: right;
    }

    .tick-box {
        padding-left: 12px;
        float: left;
        width: 100%;
        text-align: left;
        font-family: 'Tondo Web Light';
        font-size: 1.25rem;
    }

    .support_topic_section {
        width: 100%;
    }

    .sitemap {
        margin-left: 0;
    }

    .kt-radio-btn-sec {
        width: 35%;
    }

    .preference-yesno {
        width: 30%;
    }

    .kt_emial_phone .kt-radio-btn-sec {
        width: 35%;
    }

    .kt_emial_phone .preference-yesno {
        width: 30%;
    }

    .remember-me .checkmark1 {
        height: 18px;
        width: 18px;
    }

    .myaccount-leftsidemenu .list-group-item {
        padding-left: 10px;
        padding-right: 10px;
    }

    .footer-bottom .footer-nav li {
        display: block;
    }

    .rcr-tooltip {
        font-size: 1rem;
    }
    .sf-input-group {
        padding: 10px 10px 10px 20px;
    }
    .api-guidlines p {
        font-size: 1.60rem !important;
    }

    .container {
        padding: 0 30px;
    }

    .logo-white {
        margin-left: 22px;
    }

    .support_topic_section h2 {
        font-size: 1.5rem
    }

    .footer-section {
        margin-top: 60px;
    }

    .list-area-work-sec {
        height: 260px;
        overflow: auto;
    }
 }

@media (max-width: 480px) {
    .hero-content {
        font-size: 1.5rem;
    }

    .impact-section {
        position: relative;
        padding-top: 35px;
    }

    .footer-section .bg-image img {
        width: 200px;
    }

    .footer-section .bg-image {
        bottom: 60px;
    }

    .navbar-dark .navbar-toggler {
        right: -24px;
        top: 30px;
    }

    .rcr-overlay-content {
        width: 90%;
    }

    .guidelines-result h1 {
        font-size: 46px;
        line-height: 1.2;
    }

    .triangle-blue {
        border-left: 130px solid transparent;
        border-top: 180px solid #3366ff;
    }

    .success {
        display: block;
        padding: 30px 0px;
    }

    .success-img {
        display: none;
    }

    .Nhs_border {
        border: none;
    }

    .success_btns .btn {
        width: 100%;
    }

    .hero-content {
        width: 85%;
    }

    #Typesrecommendations h2, #Grades h2, #RadiationDosage h2, #Introduction h2, #ImagingTechniques h2, #ContrastAgents h2, #considerations h2, #account-info-text h2 {
        top: 100px;
        padding: 18px 8px 18px 0;
    }

    #list-example1 {
        top: 158px;
    }

    #considerations h2 {
        top: 100px;
    }
    .kt-radio-btn-sec {
        width: 35%;
    }

    #account-info-text h2 {
        font-size: 1.75rem;
    }

    .password_eveimg img {
        top: 18px;
    }

    .remember-me .rcr-tooltip {
        left: 116px;       
    }
    .remember-login {
        padding-left: 0;
    }
    .sf-input-group input {
        font-size: 1.25rem;
    }

    .sf-input-group label {
        font-size: 1.125rem;
    }

    .filter-checkbox {
        font-size: 1.25rem;
    }
    .filter-iconM img {
        width: 100%;
    }
    .filter-iconMSwap img {
        width: 100%;
    }

    .navbar-dark .navbar-toggler {
        right: -10px;
        top: 30px;
    }
}

@media (max-width: 479px) {
    .footer-section {
        font-size: 1.10rem;
    }
}


@media (max-width: 390px) {
    .sort-by li {
        margin-left: 10px;
    }

    .preference-text {
        width: 60%;
    }

    .kt_emial_phone .preference-yesno {
        width: 32%;
    }

    .preference-yesno {
        width: 28%;
    }

    .kt_emial_phone .kt-radio-btn-sec {
        width: 40%;
    }

    .email-error {
        padding: 6px 0 0 10px
    }

    .remember-login {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 5px;
    }

        .footer-section .footer-top .footer-links ul li a {
            font-size: 1.10rem;
        }

    .rcr-tooltip {
        padding: 20px 18px;
        width: 260px;
        left: -128px;
    }
    .forgot-pass {
        font-size: 1.10rem;
    }
    .create-account .btn {
        font-size:1.25rem;
    }
}

@media (max-width: 389px) {
    .container {
        padding: 0 24px;
    }
    .email-error {
        padding: 6px 0 0 0
    }
    .forgot-pass {
        font-size: 1rem;
    }
    .iRefer-Logo {
        margin-left: 0;
    }
}

@media (min-width: 320px) {
    .footer-section .footer-top .footer-links {
        margin-top: 15px;
    }

    .remember-me .rcr-tooltip {
        width: 216px;
    }
}

@media (min-width: 768px) {
    .footer-section .footer-top .footer-links {
        margin-top: 48px;
    }
}

@media only screen and (max-width:1300px) {
    .img_143 img {
        left: 0px;
    }

    .impact-section-bg, .impact-section-swatchRight, .determined .impact-section-swatchRight, .introduction .impact-section-bg,
    .determined .impact-section-swatchRight, .benefits-accordion .impact-section-swatchRight, .benefits-accordion .impact-section-bg,
    .Radiology-Service .impact-section-swatchRight, .radiation-dose .impact-section-swatchRight {
        display: none;
    }
}

#bookMarkSection {
    position: relative;
}

    #bookMarkSection .dropdown-item {
        color: #929292 !important;
    }

.filter-main-content {
    max-height: calc(100vh - 410px);
    overflow: hidden;
    overflow-y: auto;
}
