@-webkit-keyframes showSweetAlert {
    0% {
        transform: scale(0.7);
        -webkit-transform: scale(0.7);
    }
    45% {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
    }
    80% {
        transform: scale(0.95);
        -webkit-tranform: scale(0.95);
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}
@keyframes showSweetAlert {
    0% {
        transform: scale(0.7);
        -webkit-transform: scale(0.7);
    }
    45% {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
    }
    80% {
        transform: scale(0.95);
        -webkit-tranform: scale(0.95);
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}
@-webkit-keyframes hideSweetAlert {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
    100% {
        transform: scale(0.5);
        -webkit-transform: scale(0.5);
    }
}
@keyframes hideSweetAlert {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
    100% {
        transform: scale(0.5);
        -webkit-transform: scale(0.5);
    }
}
.showSweetAlert {
    -webkit-animation: showSweetAlert 0.3s;
    animation: showSweetAlert 0.3s;
}
.hideSweetAlert {
    -webkit-animation: hideSweetAlert 0.2s;
    animation: hideSweetAlert 0.2s;
}
@-webkit-keyframes animateSuccessTip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}
@keyframes animateSuccessTip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}
@-webkit-keyframes animateSuccessLong {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}
@keyframes animateSuccessLong {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}
@-webkit-keyframes rotatePlaceholder {
    0% {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }
    5% {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }
    12% {
        transform: rotate(-405deg);
        -webkit-transform: rotate(-405deg);
    }
    100% {
        transform: rotate(-405deg);
        -webkit-transform: rotate(-405deg);
    }
}
@keyframes rotatePlaceholder {
    0% {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }
    5% {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }
    12% {
        transform: rotate(-405deg);
        -webkit-transform: rotate(-405deg);
    }
    100% {
        transform: rotate(-405deg);
        -webkit-transform: rotate(-405deg);
    }
}
.animateSuccessTip {
    -webkit-animation: animateSuccessTip 0.75s;
    animation: animateSuccessTip 0.75s;
}
.animateSuccessLong {
    -webkit-animation: animateSuccessLong 0.75s;
    animation: animateSuccessLong 0.75s;
}
.icon.success.animate::after {
    -webkit-animation: rotatePlaceholder 4.25s ease-in;
    animation: rotatePlaceholder 4.25s ease-in;
}
@-webkit-keyframes animateErrorIcon {
    0% {
        transform: rotateX(100deg);
        -webkit-transform: rotateX(100deg);
        opacity: 0;
    }
    100% {
        transform: rotateX(0);
        -webkit-transform: rotateX(0);
        opacity: 1;
    }
}
@keyframes animateErrorIcon {
    0% {
        transform: rotateX(100deg);
        -webkit-transform: rotateX(100deg);
        opacity: 0;
    }
    100% {
        transform: rotateX(0);
        -webkit-transform: rotateX(0);
        opacity: 1;
    }
}
.animateErrorIcon {
    -webkit-animation: animateErrorIcon 0.5s;
    animation: animateErrorIcon 0.5s;
}
@-webkit-keyframes animateXMark {
    0% {
        transform: scale(0.4);
        -webkit-transform: scale(0.4);
        margin-top: 26px;
        opacity: 0;
    }
    50% {
        transform: scale(0.4);
        -webkit-transform: scale(0.4);
        margin-top: 26px;
        opacity: 0;
    }
    80% {
        transform: scale(1.15);
        -webkit-transform: scale(1.15);
        margin-top: -6px;
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        margin-top: 0;
        opacity: 1;
    }
}
@keyframes animateXMark {
    0% {
        transform: scale(0.4);
        -webkit-transform: scale(0.4);
        margin-top: 26px;
        opacity: 0;
    }
    50% {
        transform: scale(0.4);
        -webkit-transform: scale(0.4);
        margin-top: 26px;
        opacity: 0;
    }
    80% {
        transform: scale(1.15);
        -webkit-transform: scale(1.15);
        margin-top: -6px;
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        margin-top: 0;
        opacity: 1;
    }
}
.animateXMark {
    -webkit-animation: animateXMark 0.5s;
    animation: animateXMark 0.5s;
}
@-webkit-keyframes pulseWarning {
    0% {
        border-color: #f8d486;
    }
    100% {
        border-color: #f8bb86;
    }
}
@keyframes pulseWarning {
    0% {
        border-color: #f8d486;
    }
    100% {
        border-color: #f8bb86;
    }
}
.pulseWarning {
    -webkit-animation: pulseWarning 0.75s infinite alternate;
    animation: pulseWarning 0.75s infinite alternate;
}
@-webkit-keyframes pulseWarningIns {
    0% {
        background-color: #f8d486;
    }
    100% {
        background-color: #f8bb86;
    }
}
@keyframes pulseWarningIns {
    0% {
        background-color: #f8d486;
    }
    100% {
        background-color: #f8bb86;
    }
}
.pulseWarningIns {
    -webkit-animation: pulseWarningIns 0.75s infinite alternate;
    animation: pulseWarningIns 0.75s infinite alternate;
}
.sweet-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: none;
    z-index: 1040;
}
.sweet-alert {
    background-color: #fff;
    width: 478px;
    padding: 17px;
    border-radius: 5px;
    text-align: center;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -256px;
    margin-top: -200px;
    overflow: hidden;
    display: none;
    z-index: 2000;
}
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    max-width: 1280px;
}
.desktop-how-it-works-sec {
    margin: 80px 0 40px;
    overflow: hidden;
    clear: both;
    color: #232323 !important;
}
.desktop-how-it-works-sec .heading-color,
.desktop-why-talk-to-lawyer-sec .heading-color {
    color: #232323 !important;
    display: block !important;
    font-size: 24px;
}
.desktop-how-it-works-sec h3 {
    font-size: 15px;
    margin-top: 20px;
    font-weight: 700;
    margin-left: 30px;
}
.desktop-how-it-works-sec .how-it-works-content {
    position: relative;
    display: flex;
    justify-content: center;
    text-align: center;
}
.desktop-how-it-works-sec .how-it-works-content:before {
    position: absolute;
    content: "";
    background: #ded9e2;
    height: 1px;
    width: 80%;
    top: 30px;
    left: 10%;
}
.desktop-how-it-works-sec .how-it-works-content .common-item {
    z-index: 1000;
    position: relative;
    display: block !important;
    text-align: center;
    width: 25%;
}
.desktop-how-it-works-sec .how-it-works-content .common-item .icon-circle {
    background-color: #e1dce5;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: block;
    align-items: center;
    float: none;
    justify-content: center;
    margin: 0 auto;
    line-height: 80px;
}
.desktop-how-it-works-sec .how-it-works-content .common-item .text-content {
    float: none;
    width: 100%;
    margin-top: 10px;
}
.desktop-how-it-works-sec .how-it-works-content .common-item .text-content p {
    font-size: 14px;
}
.desktop-how-it-works-sec .how-it-works-content .common-item .icon-circle img {
    height: 30px;
    width: 30px;
}
.desktop-how-it-works-sec .font-semi,
.desktop-why-talk-to-lawyer-sec .font-semi {
    font-weight: 600 !important;
}
.desktop-why-talk-to-lawyer-sec {
    color: #232323 !important;
    padding: 16px;
}
.desktop-why-talk-to-lawyer-sec .why-talk-to-lawyer-sec-content .circle-img img {
    width: 80px;
    height: 80px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
.desktop-why-talk-to-lawyer-sec .why-talk-to-lawyer-sec-content .d-flex {
    flex-wrap: wrap;
    margin-right: -16px;
    margin-left: -16px;
}
.desktop-why-talk-to-lawyer-sec .why-talk-to-lawyer-sec-content .col-50 {
    -ms-flex: 50%;
    flex: 0 0 25%;
    max-width: 25%;
    padding-left: 16px;
    padding-right: 16px;
}
.desktop-why-talk-to-lawyer-sec .why-talk-to-lawyer-sec-content .col-50 p {
    line-height: 20px;
    font-size: 18px !important;
}
.desktop-why-talk-to-lawyer-sec .why-talk-box {
    display: flex;
    height: 100%;
    -webkit-box-shadow: 0 3px 6px 0 rgba(45, 45, 51, 0.08);
    -moz-box-shadow: 0 3px 6px 0 rgba(45, 45, 51, 0.08);
    -ms-box-shadow: 0 3px 6px 0 rgba(45, 45, 51, 0.08);
    -o-box-shadow: 0 3px 6px 0 rgba(45, 45, 51, 0.08);
    box-shadow: 0 3px 6px 0 rgba(45, 45, 51, 0.08);
    border: 1px solid #f0f0f5;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    flex-direction: column;
    padding: 20px 10px;
}
.desktop-why-talk-to-lawyer-sec .why-talk-box-body {
    flex: 1 1 auto;
}
.talkalwyer-price-offer .discountoffer {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #b91228;
    line-height: 16px;
    width: 80%;
    padding: 15px !important;
}
.talkalwyer-price-offer .discountoffer span {
    font-size: 22px !important;
}
.talkalwyer-price-offer .discountoffer .covid-dashedline {
    margin-bottom: 10px !important;
    font-size: 16px !important;
    padding-bottom: 10px !important;
}
.talkalwyer-pricetext h2,
.talkalwyer-pricetext span {
    color: #234d94;
}
.why-should .disc_price {
    margin-top: 20px;
    margin-bottom: 20px;
}
.strike-off {
    text-decoration: line-through;
}
.talklawyer-priceamt .color9 {
    color: #747474;
}
.covid-text {
    color: #747474 !important;
}
a.cntus-link {
    background-color: transparent !important;
    color: #ff7e00 !important;
    font-size: 20px;
    border-right: 2px solid #ff7e00 !important;
    padding-right: 15px;
    text-decoration: none !important;
    outline: 0 !important;
    margin-right: 0;
}
.disc_price.card-active {
    border: 1px solid #82b440 !important;
    background: #eff4e8;
}
.price-offer-block .price-txt {
    position: relative;
    margin-right: 0;
}
.price-offer-block .price-txt .disc-percent-50,
.price-offer-block .price-txt .disc-percent-70 {
    position: absolute;
    right: 10px;
    top: 5px;
}
.price-offer-block .price-txt .disc-percent-50 img,
.price-offer-block .price-txt .disc-percent-70 img {
    width: 70px;
    height: 70px;
}
.price-last.price-last-brdr {
    border-bottom: 0;
}
p.freedomvalid-txt {
    font-size: 10px;
    color: #212121;
    margin-top: 10px;
}


/* Deliverables Card */
.deliverables-box {
    text-align: left;
    border: 1px solid#dedfdf;
    margin: 20px 0;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 0px 9px 0px rgba(128, 167, 230, 0.16);
    -webkit-box-shadow: 0px 0px 9px 0px rgba(128, 167, 230, 0.16);
    -ms-box-shadow: 0px 0px 9px 0px rgba(128, 167, 230, 0.16);
    -o-box-shadow: 0px 0px 9px 0px rgba(128, 167, 230, 0.16);
    -moz-box-shadow: 0px 0px 9px 0px rgba(128, 167, 230, 0.16);
    border: 1px solid #7ab0ff;
    background: #f2f7ff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding: 15px;
}

.deliverables-box h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1f3353;
}

.deliverables-box h4 sup {
    font-size: 20px;
    font-weight: 600;
    top: 0px;
}

.deliverables-box p {
    font-size: 12px;
    font-weight: normal;
    color: #1f3353;
    line-height: 22px;
    margin-top: 0 !important;
}

.deliverables-box .para-100 {
    height: 70px;
    overflow: hidden;
}

.deliverables-box .show-more {
    cursor: pointer;
    display: none;
    margin-top: 5px;
    background: #ffffff;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    box-shadow: 0px 0px 9px 0px rgb(128 167 230 / 80%);
    -webkit-box-shadow: 0px 0px 9px 0px rgb(128 167 230 / 80%);
    -moz-box-shadow: 0px 0px 9px 0px rgba(128, 167, 230, 0.8);
    -ms-box-shadow: 0px 0px 9px 0px rgba(128, 167, 230, 0.8);
    -o-box-shadow: 0px 0px 9px 0px rgba(128, 167, 230, 0.8);
    font-size: 14px;
    color: #0065f8;
    padding: 6px 0px;
    width: 125px;
    text-align: center;
}

.deliverables-box .show-less {
    cursor: pointer;
    display: none;
    margin-top: 5px;
    background: #ffffff;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    box-shadow: 0px 0px 9px 0px rgb(128 167 230 / 80%);
    -webkit-box-shadow: 0px 0px 9px 0px rgb(128 167 230 / 80%);
    -moz-box-shadow: 0px 0px 9px 0px rgba(128, 167, 230, 0.8);
    -ms-box-shadow: 0px 0px 9px 0px rgba(128, 167, 230, 0.8);
    -o-box-shadow: 0px 0px 9px 0px rgba(128, 167, 230, 0.8);
    font-size: 14px;
    color: #0065f8;
    padding: 6px 0px;
    width: 125px;
    text-align: center;
}

.deliverables-box .show-less img {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.deliverables-box  img {
    vertical-align: middle;
}

/*... Deliverables Card */







@media all and (max-width: 767px) {
    .sweet-alert {
        width: auto;
        margin-left: 0;
        margin-right: 0;
        left: 15px;
        right: 15px;
    }
}
.sweet-alert .icon {
    width: 80px;
    height: 80px;
    border: 4px solid gray;
    border-radius: 50%;
    margin: 20px auto;
    position: relative;
    box-sizing: content-box;
}
.sweet-alert .icon.error {
    border-color: #d43f3a;
}
.sweet-alert .icon.error .x-mark {
    position: relative;
    display: block;
}
.sweet-alert .icon.error .line {
    position: absolute;
    height: 5px;
    width: 47px;
    background-color: #d9534f;
    display: block;
    top: 37px;
    border-radius: 2px;
}
.sweet-alert .icon.error .line.left {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 17px;
}
.sweet-alert .icon.error .line.right {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 16px;
}
.sweet-alert .icon.warning {
    border-color: #eea236;
}
.sweet-alert .icon.warning .body {
    position: absolute;
    width: 5px;
    height: 47px;
    left: 50%;
    top: 10px;
    border-radius: 2px;
    margin-left: -2px;
    background-color: #f0ad4e;
}
.sweet-alert .icon.warning .dot {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-left: -3px;
    left: 50%;
    bottom: 10px;
    background-color: #f0ad4e;
}
.sweet-alert .icon.info {
    border-color: #46b8da;
}
.sweet-alert .icon.info::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 29px;
    left: 50%;
    bottom: 17px;
    border-radius: 2px;
    margin-left: -2px;
    background-color: #5bc0de;
}
.sweet-alert .icon.info::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-left: -3px;
    top: 19px;
    background-color: #5bc0de;
}
.sweet-alert .icon.success {
    border-color: #4cae4c;
}
.sweet-alert .icon.success::after,
.sweet-alert .icon.success::before {
    content: "";
    border-radius: 50%;
    position: absolute;
    width: 60px;
    height: 120px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.sweet-alert .icon.success::before {
    border-radius: 120px 0 0 120px;
    top: -7px;
    left: -33px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 60px 60px;
    transform-origin: 60px 60px;
}
.sweet-alert .icon.success::after {
    border-radius: 0 120px 120px 0;
    top: -11px;
    left: 30px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 0 60px;
    transform-origin: 0 60px;
}
.sweet-alert .icon.success .placeholder {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(92, 184, 92, 0.2);
    border-radius: 50%;
    box-sizing: content-box;
    position: absolute;
    left: -4px;
    top: -4px;
    z-index: 2;
}
.sweet-alert .icon.success .fix {
    width: 5px;
    height: 90px;
    background-color: #fff;
    position: absolute;
    left: 28px;
    top: 8px;
    z-index: 1;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.sweet-alert .icon.success .line {
    height: 5px;
    background-color: #5cb85c;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 2;
}
.sweet-alert .icon.success .line.tip {
    width: 25px;
    left: 14px;
    top: 46px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.sweet-alert .icon.success .line.long {
    width: 47px;
    right: 8px;
    top: 38px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.sweet-alert .icon.custom {
    background-size: contain;
    border-radius: 0;
    border: none;
    background-position: center center;
    background-repeat: no-repeat;
}
.sweet-alert .btn-default:focus {
    border-color: #ccc;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(204, 204, 204, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(204, 204, 204, 0.6);
}
.sweet-alert .btn-success:focus {
    border-color: #4cae4c;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(76, 174, 76, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(76, 174, 76, 0.6);
}
.sweet-alert .btn-info:focus {
    border-color: #46b8da;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(70, 184, 218, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(70, 184, 218, 0.6);
}
.sweet-alert .btn-danger:focus {
    border-color: #d43f3a;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(212, 63, 58, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(212, 63, 58, 0.6);
}
.sweet-alert .btn-warning:focus {
    border-color: #eea236;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(238, 162, 54, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(238, 162, 54, 0.6);
}
.sweet-alert button::-moz-focus-inner {
    border: 0;
}
body {
    font-family: 'Roboto', sans-serif !important;
    font-size: 16px;
    color: #313131;
    text-rendering: optimizeLegibility;
    text-rendering: geometricPrecision;
    font-smooth: always;
    font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -webkit-font-smoothing: subpixel-antialiased;
    background: #f1f3f6;
}
* {
    outline: 0 none !important;
}
.m-0 {
    margin: 0 !important;
}
.m-t-0 {
    margin-top: 0 !important;
}
.m-t-5 {
    margin-top: 5px !important;
}
.m-t-10 {
    margin-top: 10px !important;
}
.m-t-15 {
    margin-top: 15px !important;
}
.m-t-20 {
    margin-top: 20px !important;
}
.m-t-50 {
    margin-top: 50px !important;
}
.m-b-0 {
    margin-bottom: 0 !important;
}
.m-b-5 {
    margin-bottom: 5px !important;
}
.m-b-10 {
    margin-bottom: 10px !important;
}
.m-b-20 {
    margin-bottom: 20px !important;
}
.m-b-30 {
    margin-bottom: 30px !important;
}
.m-b-40 {
    margin-bottom: 40px !important;
}
.m-b-50 {
    margin-bottom: 50px !important;
}
.m-l-40 {
    margin-left: 40px !important;
}
.m-r-20 {
    margin-right: 20px !important;
}
.m-r-30 {
    margin-right: 30px !important;
}
.m-r-40 {
    margin-right: 40px !important;
}
.margin-auto {
    margin: 0 auto;
    display: table;
}
.p-0 {
    padding: 0 !important;
}
.p-10 {
    padding: 10px !important;
}
.p-20 {
    padding: 20px !important;
}
.p-l-0 {
    padding-left: 0 !important;
}
.p-r-0 {
    padding-right: 0 !important;
}
.p-t-5 {
    padding-top: 5px !important;
}
.p-t-10 {
    padding-top: 10px !important;
}
.p-t-20 {
    padding-top: 20px !important;
}
.p-t-40 {
    padding-top: 40px !important;
}
.p-b-5 {
    padding-bottom: 5px !important;
}
.p-b-10 {
    padding-bottom: 10px !important;
}
.p-b-40 {
    padding-bottom: 40px !important;
}
.p-l-5 {
    padding-left: 5px !important;
}
.p-l-10 {
    padding-left: 10px !important;
}
.p-l-20 {
    padding-left: 20px !important;
}
.p-r-5 {
    padding-right: 5px !important;
}
.p-r-20 {
    padding-right: 20px !important;
}
.font-10 {
    font-size: 10px !important;
}
.font-12 {
    font-size: 12px !important;
}
.font-14 {
    font-size: 14px !important;
}
.font-15 {
    font-size: 15px !important;
}
.font-16 {
    font-size: 16px !important;
}
.font-18 {
    font-size: 18px !important;
}
.font-30 {
    font-size: 30px !important;
}
.font-40 {
    font-size: 40px !important;
}
.font-55 {
    font-size: 55px !important;
}
.color1 {
    color: #82b440 !important;
}
.color2 {
    color: #747474 !important;
}
.colordiff4 {
    color: #232323 !important;
}
.colordiff5 {
    color: #f52424 !important;
}
.border-radius-5 {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.border-radius-10 {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}
.font-bold {
    font-weight: 700;
}
input:focus,
select:focus,
textarea:focus {
    /* border: 1px solid #82b440 !important; */
}
.common-heading:before {
    position: absolute;
    content: "";
    width: 125px;
    height: 2px;
    background: #82b440;
    bottom: -10px;
    margin: 0 auto;
    left: 0;
    right: 0;
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    -o-border-radius: 50px;
    -ms-border-radius: 50px;
    overflow: hidden;
}
.common-left-heading:before {
    position: absolute;
    content: "";
    width: 50px;
    height: 3px;
    background: #82b440;
    bottom: -10px;
    left: 0;
    right: 0;
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    -o-border-radius: 50px;
    -ms-border-radius: 50px;
    overflow: hidden;
}
a {
    text-decoration: none !important;
    transition: all 0.3s ease 0;
    -webkit-transition: all 0.3s ease 0;
    -moz-transition: all 0.3s ease 0;
    -ms-transition: all 0.3s ease 0;
    -o-transition: all 0.3s ease 0;
}
a:hover {
    text-decoration: none !important;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}
.vertical-middle {
    vertical-align: middle !important;
}
.clear {
    clear: both !important;
    overflow: hidden !important;
}
.common-action-btn {
    color: #fff;
    background-color: #82b440;
    border-color: #82b440;
    font-size: 18px;
    padding: 6px 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.common-action-btn:focus,
.common-action-btn:hover {
    color: #82b440;
    background-color: transparent !important;
    border-color: #82b440 !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -ms-box-shadow: none !important;
    -o-box-shadow: none !important;
}
.cursor-pointer {
    cursor: pointer !important;
}
.font-weight-600 {
    font-weight: 600;
}
.mob-navs {
    display: none;
}
.mob-navs ul li a img {
    width: 100%;
    margin-top: 10px;
}
.menu-bar img {
    height: 25px !important;
    width: 25px !important;
}
.main-header.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 111;
}
.main-header {
    padding: 16px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.main-header .logo img {
    width: 225px;
}
img.navber {
    display: none;
}
.looking-for .common-heading span {
    font-weight: 600;
}
.looking-for p {
    margin-top: 50px;
}
.legal-expert .expert-tile {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    overflow: hidden;
    height: 100%;
}
.legal-expert .number-count {
    background: #e9e9e9;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    right: -3px;
    top: -3px;
}
.legal-expert .number-count span {
    line-height: 40px;
    font-size: 22px;
}
.about-legal {
    border-top: 1px solid #d6d7dd;
    border-bottom: 1px solid #d6d7dd;
}
.testimonials-say .testimonial-content {
    padding-right: 50px;
}
.testimonials-say .testimonial-content h4 {
    font-weight: 600;
    z-index: 2;
    position: relative;
    top: 5px;
    left: 50px;
    line-height: 34px;
}
.testimonials-say .quote-icon {
    top: 0;
    left: 20px;
}
.testimonials-say .quote-icon img {
    width: 100px !important;
}
.testimonials-say .avatar-circle {
    height: 190px;
    width: 190px;
    position: absolute;
    left: -200px;
    top: 0;
}
.testimonials-say .avatar-circle img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.testimonials-say p {
    line-height: 32px;
    position: relative;
    left: 55px;
    top: 15px;
    border-top: 1px solid #ccc;
    display: table;
    padding: 15px 0;
}
.testimonial-carousel button.owl-next,
.testimonial-carousel button.owl-prev {
    padding: 0 !important;
    margin: 0 !important;
}
.testimonial-carousel button:hover {
    background: 0 0 !important;
}
.testimonial-carousel .owl-nav:hover {
    background: 0 0 !important;
}
.testimonial-carousel button.owl-prev {
    position: absolute;
    left: -60px;
    top: 50px;
}
.testimonial-carousel button.owl-next {
    position: absolute;
    right: -60px;
    top: 50px;
}
.testimonial-carousel button img {
    width: 20px;
}
.featured-in .cmp-logo {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    padding: 20px;
}
.main-footer .footertop-links {
    background: #202020;
}
.main-footer .footer-copyright {
    background: #414141;
}
.main-footer .footer-copyright ul li a img {
    width: 26px;
    height: 26px;
}
.footertop-links ul li a:hover {
    color: #82b440 !important;
}
.category-panel {
    overflow: hidden;
    clear: both;
}
.category-panel ul li {
    line-height: 32px;
    text-align: center;
    width: 33.3333333333%;
    float: left;
    margin-bottom: 20px;
}
.category-panel ul li:nth-child(4),
.category-panel ul li:nth-child(5),
.category-panel ul li:nth-child(6) {
    margin-bottom: 0;
}
.category-panel ul li img {
    display: block;
    margin: 0 auto;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    width: 50%;
}
.category-panel ul li a:hover {
    color: #82b440;
}
.frb-group {
    margin: 15px 0;
}
.frb ~ .frb {
    margin-top: 15px;
}
.frb input[type="checkbox"]:empty,
.frb input[type="radio"]:empty {
    display: none;
}
.frb input[type="checkbox"] ~ label,
.frb input[type="radio"] ~ label {
    position: relative;
    cursor: pointer;
    width: 100%;
    margin-bottom: 0;
}
.frb input[type="checkbox"]:checked ~ label,
.frb input[type="radio"]:checked ~ label {
    color: #fafafa;
    background-color: #f2f2f2;
}
.frb.frb-success input[type="checkbox"]:checked ~ label,
.frb.frb-success input[type="radio"]:checked ~ label {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    -ms-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    -o-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    border-color: #82b440 !important;
    color: #82b440;
    background-color: #fff;
}
.frb.frb-info input[type="checkbox"]:checked ~ label,
.frb.frb-info input[type="radio"]:checked ~ label {
    background-color: #5bc0de;
}
.frb input[type="checkbox"]:empty ~ label span,
.frb input[type="radio"]:empty ~ label span {
    display: inline-block;
}
.frb input[type="checkbox"]:empty ~ label span.frb-title,
.frb input[type="radio"]:empty ~ label span.frb-title {
    font-size: 14px;
    font-weight: 600;
    padding: 8px;
}
.frb input[type="checkbox"]:empty ~ label span.frb-description,
.frb input[type="radio"]:empty ~ label span.frb-description {
    font-weight: 400;
    color: #fff;
    margin: 5px 5px 5px 50px;
}
.frb input[type="checkbox"]:empty:checked ~ label span.frb-description,
.frb input[type="radio"]:empty:checked ~ label span.frb-description {
    color: #fafafa;
}
.frb.frb-default input[type="checkbox"]:empty:checked ~ label span.frb-description,
.frb.frb-default input[type="radio"]:empty:checked ~ label span.frb-description {
    color: #999;
}
.gradient-button:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    -ms-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    -o-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.gradient-button-1 {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all 0.3s ease 0;
    -webkit-transition: all 0.3s ease 0;
    -moz-transition: all 0.3s ease 0;
    -ms-transition: all 0.3s ease 0;
    -o-transition: all 0.3s ease 0;
    text-align: center;
    width: 40%;
    border: 1px solid #82b440;
    overflow: hidden;
    background: #82b440;
    color: #fff;
}
.gradient-button-1:hover {
    background-position: right center;
}
.featured-in.talk .common-heading.font-30,
.looking-for.talk .common-heading.font-30 {
    font-size: 24px !important;
}
.about-legal.talk .font-30.text-uppercase {
    font-size: 24px !important;
}
.talk-advice {
    transition: all 0.3s ease 0;
    -webkit-transition: all 0.3s ease 0;
    -moz-transition: all 0.3s ease 0;
    -ms-transition: all 0.3s ease 0;
    -o-transition: all 0.3s ease 0;
    padding: 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
}
.talk-advice:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}
.lk-steps img.img-fluid {
    width: 80%;
}
.why-should .recharge-mins {
    overflow: hidden;
    clear: both;
    padding: 20px 0;
    border-top: 5px solid #82b440;
}
.why-should.m-t-50.m-b-50.header.sticky .recharge-mins {
    padding: 20px 0;
    overflow-y: auto;
}
.why-should .disc_price {
    width: 22%;
    float: left;
    -webkit-box-shadow: 0 0 9px 0 rgba(2, 3, 3, 0.29);
    -moz-box-shadow: 0 0 9px 0 rgba(2, 3, 3, 0.29);
    -ms-box-shadow: 0 0 9px 0 rgba(2, 3, 3, 0.29);
    -o-box-shadow: 0 0 9px 0 rgba(2, 3, 3, 0.29);
    box-shadow: 0 0 9px 0 rgba(2, 3, 3, 0.29);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    margin-right: 10px;
    text-align: left;
    border: 1px solid #fff;
}
.disc_price.card-active span.text-uppercase {
    color: #82b440 !important;
}
.why-should .disc_price span {
    display: block;
    line-height: 18px;
}
.why-should .disc_price span.disc {
    text-decoration: line-through;
}
.why-should .disc_price:nth-child(1) {
    border: 0;
}
.why-should button {
    display: table;
    margin: 0 auto;
}
.why-should .disc_price .radio-gap {
    height: 0;
}
.why-should [type="radio"]:checked,
.why-should [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.why-should [type="radio"]:checked + label,
.why-should [type="radio"]:not(:checked) + label {
    position: relative;
    padding: 10px !important;
    cursor: pointer;
    color: #666;
    text-align: center;
    display: block !important;
    margin: 0;
    line-height: 1 !important;
}
.why-should [type="radio"]:checked + label:before,
.why-should [type="radio"]:not(:checked) + label:before {
    content: "";
    position: absolute;
    left: auto !important;
    right: 5px !important;
    top: 12px !important;
    width: 12px !important;
    height: 12px !important;
    border: 1px solid #afafaf;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    background: #fff;
}
.why-should [type="radio"]:checked + label:after,
.why-should [type="radio"]:not(:checked) + label:after {
    content: "";
    width: 6px !important;
    height: 6px !important;
    background: #82b440;
    position: absolute;
    top: 15px !important;
    right: 8px !important;
    left: auto !important;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.why-should [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.why-should [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.freedom-talktolawyer [type="radio"]:checked + label:before,
.freedom-talktolawyer [type="radio"]:not(:checked) + label:before {
    left: 5px !important;
    right: auto !important;
}
.freedom-talktolawyer [type="radio"]:checked + label:after,
.freedom-talktolawyer [type="radio"]:not(:checked) + label:after {
    right: auto !important;
    left: 8px !important;
}
.faq-acc .card,
.faq-acc .card:last-child .card-header {
    border: none;
}
.faq-acc .card-header {
    background: 0 0;
}
.faq-acc .square {
    background: #82b440;
    height: 15px;
    width: 15px;
    float: left;
    margin-right: 20px;
    position: relative;
    top: 2px;
}
.faq-acc .text-para {
    float: left;
    width: -webkit-calc(100% - 35px);
    width: -moz-calc(100% - 35px);
    width: -ms-calc(100% - 35px);
    width: -o-calc(100% - 35px);
    width: calc(100% - 35px);
}
.faq-acc h4.clearfix {
    width: 100%;
}
.faq-acc .card-body p.m-l-40.m-r-40.text-left {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.faq-acc span.fa-icon {
    position: absolute;
    right: 0;
    top: 12px;
}
.why-should [type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.why-should [type="checkbox"]:checked + label,
.why-should [type="checkbox"]:not(:checked) + label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
.why-should [type="checkbox"]:checked + label:before,
.why-should [type="checkbox"]:not(:checked) + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #afafaf;
    background: #fff;
}
.why-should [type="checkbox"]:checked + label:after,
.why-should [type="checkbox"]:not(:checked) + label:after {
    content: "";
    width: 12px;
    height: 12px;
    background: #82b440;
    position: absolute;
    top: 3px;
    left: 3px;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.why-should [type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.why-should [type="checkbox"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.why-should.sticky {
    position: fixed;
    top: 0;
    width: 33%;
}
.why-should.m-t-50.m-b-50.header.sticky {
    margin: 0 !important;
    margin-top: 10px !important;
}
.item-price {
    overflow: hidden;
    clear: both;
}
.testi-panel {
    border-top: 1px solid #ccc;
    margin-top: 30px;
    padding-top: 30px;
}
.talk-testi-carousel .item {
    padding: 0 30px;
    overflow: hidden;
}
.testi-panel .talk-testi-carousel .owl-nav .owl-prev {
    position: absolute;
    left: 90px;
    top: -38px;
    margin: 0 !important;
}
.testi-panel .talk-testi-carousel .owl-nav .owl-next {
    position: absolute;
    right: 90px;
    top: -38px;
    margin: 0 !important;
}
.testi-panel .talk-testi-carousel .owl-nav img {
    width: 10px;
}
.testi-panel .talk-testi-carousel .owl-nav .owl-next:hover,
.testi-panel .talk-testi-carousel .owl-nav .owl-prev:hover {
    background: 0 0;
}
.looking-for.talk.text-center.m-t-50.m-b-50 {
    margin-bottom: 30px !important;
}
.top-price span.offertext {
    background: #ed3d47;
    border-radius: 45px;
    -webkit-border-radius: 45px;
    -moz-border-radius: 45px;
    -ms-border-radius: 45px;
    -o-border-radius: 45px;
    color: #fff;
    font-size: 18px;
    height: 70px;
    line-height: normal;
    padding: 5px 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 70px;
    left: 0;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    border: 2px solid #fff;
}
.offertext span.off {
    display: block;
    font-size: 11px;
}
.buy-lk-footer {
    display: none;
}
.faq-accordion ul {
    margin: 0;
    list-style-type: none;
    text-align: left;
    clear: both;
}
.faq-accordion ul li {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    border-right: 1px solid #ccc;
    padding-right: 5px;
}
.faq-accordion ul li:last-child {
    display: inline-block;
    border-right: 0;
    padding-right: 0;
}
ul.lk-talk-faq li {
    border-right: 0;
    font-weight: 500;
}
.banner.about-page p {
    line-height: 26px;
}
.banner.about-page .right-side img {
    width: auto;
}
.banner.about-page .left-side {
    padding: 160px 20px 0 130px;
}
.abt-tile {
    background: #fcfcfc;
    box-shadow: 10px 60px 35px -64px hsla(0, 0%, 73.3%, 0.5);
    -webkit-box-shadow: 10px 60px 35px -64px hsla(0, 0%, 73.3%, 0.5);
    -moz-box-shadow: 10px 60px 35px -64px hsla(0, 0%, 73.3%, 0.5);
    -ms-box-shadow: 10px 60px 35px -64px hsla(0, 0%, 73.3%, 0.5);
    -o-shadow: 10px 60px 35px -64px hsla(0, 0%, 73.3%, 0.5);
    padding: 20px;
    margin-bottom: 20px;
    transition: margin-top 1s;
    -webkit-transition: margin-top 1s;
    -moz-transition: margin-top 1s;
    -ms-transition: margin-top 1s;
    -o-transition: margin-top 1s;
    cursor: default;
}
.abt-tile:hover {
    margin-top: -10px;
}
span.text {
    display: none;
}
span.text1 {
    display: none;
}
span.text2 {
    display: none;
}
.abt-tile button {
    border: 0 none;
    color: #82b440;
    margin-top: 20px;
    background: 0 0;
}
.leader-left img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ccc;
    padding: 5px;
    width: 150px;
    height: 150px;
    overflow: hidden;
    display: table;
    margin: 0 auto;
    background: #fff;
}
.common-heading.font-30.display-block.text-uppercase.text-center.font-weight-600.position-relative {
    display: none;
}
.looking-for.leader-ship.m-t-50.m-b-50 {
    overflow: hidden;
}
.minutes-tile .card {
    border: 0 none;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    height: 100% !important;
    min-height: 340px;
    border-radius: 0 !important;
}
.price-table {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}
.price-middle-box {
    padding-top: 20px;
}
.price-table img {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-border-radius: 5px;
}
.price-middle-box {
    padding-top: 20px;
    text-transform: uppercase;
}
.price-last {
    padding-top: 20px;
    text-transform: uppercase;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}
.price-table img.img-fluid {
    width: 80%;
}
.minutes-tile .card-header {
    background: 0 0;
}
.price-table select {
    border: 0 none;
    color: #234d94;
    padding: 6px 0;
    font-weight: 600;
}
.price-table select:focus {
    color: #234d94;
    border: 0 none !important;
}
.featured-in.all-blog {
    overflow: hidden;
}
.blog-section .common-heading:before {
    margin: 0;
}
.looking-for.blog .search-box {
    background: #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    height: 50px;
    line-height: 50px;
    border: 1px solid #d3d3d3;
    margin-top: 50px;
}
.looking-for.blog .search-box input {
    float: left;
    width: -webkit-calc(100% - 100px);
    width: -moz-calc(100% - 100px);
    width: -ms-calc(100% - 100px);
    width: -o-calc(100% - 100px);
    width: calc(100% - 100px);
    background: 0 0;
    height: 50px;
    border: 1px solid #82b440;
    border-top-left-radius: 5px;
    -webkit-border-top-left-radius: 5px;
    -moz-border-top-left-radius: 5px;
    -ms-border-top-left-radius: 5px;
    -o-border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-bottom-left-radius: 5px;
    -ms-border-bottom-left-radius: 5px;
    -o-border-bottom-left-radius: 5px;
}
.looking-for.blog .search-box .common-action-btn {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background: #82b440;
}
.looking-for.blog .search-box .common-action-btn:focus,
.looking-for.blog .search-box .common-action-btn:hover {
    color: #82b440 !important;
    background: #82b440 !important;
}
.looking-for.blog .search-box .common-action-btn .fas {
    color: #fff;
}
.looking-for.blog .search-box button {
    float: left;
    width: 100px;
}
.all-blog .blog-tile {
    margin-bottom: 40px;
}
.blog-tile h3 {
    line-height: 28px;
}
.blog-tile ul {
    padding: 0;
    list-style-type: none;
}
.blog-tile ul li {
    display: inline-block;
    font-size: 14px;
    padding-right: 5px;
}
.blog-tile ul li:last-child {
    padding-right: 0;
    border-right: 0 none;
}
.blog-tile a.blog-more {
    right: 15px;
    bottom: 10px;
}
.recenttag-sec .recent-topics ul li {
    margin-bottom: 10px;
    clear: both;
    overflow: hidden;
}
.recenttag-sec .recent-topics ul li a:hover {
    color: #82b440;
}
.recenttag-sec .recent-topics ul li a span.left {
    float: left;
    width: 20px;
    margin-right: 10px;
}
.recenttag-sec .recent-topics ul li a span.right {
    float: left;
    width: -webkit-calc(100% - 30px);
    width: -moz-calc(100% - 30px);
    width: -ms-calc(100% - 30px);
    width: -o-calc(100% - 30px);
    width: calc(100% - 30px);
}
.practice-tags .row {
    margin-left: 0;
    margin-right: 0;
}
.practice-tags .col-md-2,
.practice-tags .col-md-6 {
    padding-left: 5px;
    padding-right: 5px;
}
.practice-tags a {
    border: 1px solid #9a9a9a;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    text-align: center;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    line-height: 40px;
}
.practice-tags a:hover {
    border: 1px solid #82b440;
    color: #fff !important;
    background: #82b440;
}
.blog-banner img.img-fluid {
    margin-top: 50px;
}
.looking-for.blog .search-box {
    margin-top: 30px;
}
.blog-banner img.img-fluid {
    margin-top: 20px;
}
.font-30.text-uppercase.font-weight-600 {
    margin-top: 0;
}
.all-blog .blog-tile h2 {
    font-size: 20px;
}
.all-blog .blog-tile h1 {
    font-size: 20px;
}
.all-blog .blog-tile {
    margin-bottom: 40px;
    height: 550px !important;
    overflow: hidden;
}
.all-blog .blog-tile p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.all-blog .blog-tile img {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.blog-details .common-heading:before {
    margin: 0;
}
.blog-details .blog-tile ul.blog-list li {
    border-right: 1px solid #ccc;
}
.blog-details .blog-tile h3 {
    font-size: 20px;
    line-height: 30px;
}
.blog-details .blog-tile ul.blog-list li:last-child {
    border-right: 0;
}
.blog-details .blog-tile ul li {
    display: inline-block;
    font-size: 20px;
    padding-right: 5px;
}
.blog-details .blog-tile ul.share li {
    border: 0 none;
    display: inline-block;
}
.blog-details .blog-tile ul.share {
    margin-top: 20px !important;
}
.blog-details img {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.blog-details ul li:last-child {
    padding-right: 0;
    border-right: 0 none;
}
.blog-details ul li a img {
    width: 26px;
    height: 26px;
}
.blog-details ul li p {
    color: #747474;
    margin-top: 5px;
    max-width: 100%;
}
.blog-details .blog-tile {
    margin-bottom: 25px;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 25px;
}
.blog-details p {
    margin-bottom: 0;
    margin-top: 10px;
}
.blog-details .blog-tile h2 {
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 10px;
}
.blog-details .blog-tile h1 {
    font-size: 20px;
}
.contact-form .card {
    border: 0 none;
}
.address-tile .card {
    border: 0 none;
    margin-top: 25px;
}
.address-tile p.font-weight-600.font-18.position-relative:after {
    position: absolute;
    content: "";
    border: 1px solid #82b440;
    width: 50px;
    height: 2px;
    margin: 0 auto;
    left: -50%;
    top: 30px;
    right: -50%;
}
.address-tile img.img-fluid.position-absolute.one {
    width: 18px;
    left: 14px;
    top: 2px;
}
.address-tile img.img-fluid.position-absolute.two {
    width: 18px;
    left: 32px;
    top: 2px;
}
.address-tile img.img-fluid.position-absolute.three {
    width: 18px;
    left: 22px;
    top: 2px;
}
.address-tile img.img-fluid.position-absolute.fore {
    width: 18px;
    left: 34px;
    top: 2px;
}
.contact-banner input {
    height: 42px;
    border: 1px solid #82b440;
    color: #82b440;
}
.contact-banner textarea {
    border: 1px solid #82b440;
}
.contact-banner input::placeholder,
.contact-banner textarea::placeholder {
    color: #82b440;
    opacity: 1;
}
.contact-banner input:-ms-input-placeholder,
.contact-banner textarea:-ms-input-placeholder {
    color: #82b440;
}
.contact-banner input::-ms-input-placeholder,
.contact-banner textarea::-ms-input-placeholder {
    color: #82b440;
}
.banner.about-page.contact-banner .left-side {
    padding: 0 20px 0 130px;
}
.modal-header {
    padding: 8px 16px;
}
.function .form-group select {
    width: 40%;
    border: 1px solid #82b440;
    height: 42px;
    color: #82b440;
    font-weight: 600;
    font-size: 14px;
}
.function .col-md-6 .form-group .fas {
    position: absolute;
    left: 200px;
    top: 9px;
    color: #82b440;
}
.function .form-group input {
    border: 1px solid #82b440;
    height: 42px;
    color: #82b440;
    font-weight: 600;
    font-size: 14px;
}
.function .form-group input::placeholder {
    color: #82b440;
    opacity: 1;
}
.function .form-group input:-ms-input-placeholder {
    color: #82b440;
}
.function .form-group input::-ms-input-placeholder {
    color: #82b440;
}
.function .col-md-6 input,
.function .col-md-6 select {
    width: 100%;
}
.form-control:focus {
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
}
.function .form-group .fas {
    position: absolute;
    left: 170px;
    top: 9px;
    color: #82b440;
    display: none;
}
.date-picker .gj-datepicker-bootstrap [role="right-icon"] button .gj-icon,
.gj-datepicker-bootstrap [role="right-icon"] button .material-icons {
    position: absolute;
    font-size: 21px;
    top: 9px;
    left: 9px;
    color: #82b440 !important;
}
input#datepicker,
input#datepicker1,
input#datepicker2,
input#datepicker3 {
    border: 1px solid #82b440;
}
.date-picker .gj-datepicker-bootstrap [role="right-icon"] button .gj-icon,
.gj-datepicker-bootstrap [role="right-icon"] button:hover .material-icons {
    color: #fff !important;
}
.date-picker .gj-datepicker-bootstrap [role="right-icon"] button {
    width: 38px;
    position: relative;
    border: 1px solid #82b440 !important;
    background: #82b440 !important;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.date-picker .btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
    color: #fff !important;
    background-color: #82b440 !important;
    border-color: #82b440 !important;
}
.date-picker .gj-datepicker-bootstrap [role="right-icon"] button:hover {
    color: #fff !important;
    background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.date-picker .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
}
.w3-sidebar {
    width: 90% !important;
}
.w3-overlay {
    background-color: #787887 !important;
}
.banner.success .left-side.check {
    padding: 0 0 0 130px;
}
.banner.success .left-side.check p {
    font-size: 28px;
}
.bottom-success img {
    width: 24px;
    margin-right: 5px;
}
.bottom-success .common-action-btn:focus img,
.bottom-success .common-action-btn:hover img,
.bottom-success .common-action-btn:visited img {
    filter: invert(100%);
    -webkit-filter: invert(100%);
}
.bottom-success .common-action-btn-success:focus img,
.bottom-success .common-action-btn-success:hover img,
.bottom-success .common-action-btn-success:visited img {
    filter: invert(100%);
    -webkit-filter: invert(100%);
}
.modal.success .modal-header {
    border: 0 none;
    padding: 5px 10px;
}
.modal.success .modal-body .category-panel input {
    border: 1px solid #82b440 !important;
    color: #82b440;
}
.modal.success .modal-body .category-panel .btn-outline-secondary {
    color: #82b440;
    border-color: #82b440;
}
.modal.success .modal-body .category-panel .btn-outline-secondary:hover {
    color: #fff;
    background-color: #82b440;
    border-color: #82b440;
}
.modal.success .modal-body .category-panel .btn-outline-secondary:not(:disabled):not(.disabled).active,
.modal.success .modal-body .category-panel .btn-outline-secondary:not(:disabled):not(.disabled):active,
.show > .btn-outline-secondary.dropdown-toggle {
    color: #fff;
    background-color: #82b440;
    border-color: #82b440;
}
.modal.success .modal-body .category-panel .gj-datepicker-bootstrap [role="right-icon"] button:hover {
    color: #82b440;
    background-color: transparent;
}
.modal.success .modal-body .category-panel .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.modal.success .modal-body .category-panel .btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
    box-shadow: none;
}
.modal.success .modal-body .category-panel .gj-datepicker-bootstrap [role="right-icon"] button .gj-icon,
.modal.success .modal-body .category-panel .gj-datepicker-bootstrap [role="right-icon"] button .material-icons {
    color: #82b440;
}
.ask-question-form textarea {
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -ms-box-shadow: none !important;
    -o-box-shadow: none !important;
}
.modal.ask-question input {
    border: 1px solid #82b440;
    color: #82b440;
}
.modal.ask-question select {
    border: 1px solid #82b440;
    color: #82b440;
}
.modal.ask-question input::placeholder {
    color: #82b440;
    opacity: 1;
}
.modal.ask-question input:-ms-input-placeholder {
    color: #82b440;
}
.modal.ask-question input::-ms-input-placeholder {
    color: #82b440;
}
.ask-question-form textarea {
    border: 1px solid #82b440;
}
.ask-question-form select {
    border: 1px solid #82b440;
    color: #82b440;
    height: 42px;
}
.ask-question-form select:focus {
    color: #82b440;
}
.ask-question-form select::placeholder {
    color: #82b440;
    opacity: 1;
}
.ask-question-form select:-ms-input-placeholder {
    color: #82b440;
}
.ask-question-form select::-ms-input-placeholder {
    color: #82b440;
}
.faq-accordion.ask p {
    margin-left: 40px;
    margin-right: 40px;
    text-align: left;
}
.faq-accordion.ask ul li {
    display: list-item;
    border-right: 0;
    font-weight: 400;
}
.faq-accordion.ask ul {
    list-style-type: initial;
}
.faq-accordion.ask ul.qstn li {
    display: inline-block;
    border-right: 1px solid #ccc;
    font-weight: 600;
}
.faq-accordion.ask ul.qstn {
    list-style-type: none;
}
.faq-accordion.ask ul.qstn li:last-child {
    border-right: 0;
}
.benefits ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.benefits ul li {
    line-height: 32px;
}
.benefits ul li .fas {
    color: #82b440;
    margin-right: 8px;
    font-size: 13px;
}
.faq-acc.lk-pay .text-para {
    float: left;
    width: -webkit-calc(100% - 35px);
    width: -moz-calc(100% - 35px);
    width: -ms-calc(100% - 35px);
    width: -o-calc(100% - 35px);
    width: calc(100% - 35px);
}
.dose-work {
    position: relative;
}
.dose-work img {
    width: 40%;
}
.dose-work .fas {
    font-size: 30px;
    color: #ff9800;
    position: absolute;
    right: 0;
    top: 45px;
    border: 2px solid #ff9800;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    width: 42px;
    height: 42px;
    padding: 5px;
}
.login-panel {
    height: calc(100vh);
    width: 100%;
}
.login-wrap {
    padding-top: 200px;
}
.login-panel input {
    height: 50px;
}
.login-text h2 {
    color: #fff;
    text-transform: uppercase;
    line-height: 110px;
    border-left: 1px solid #fff;
    padding-left: 15px;
    font-size: 42px;
    text-align: center;
}
.login-panel .btn-primary {
    color: #fff;
    background-color: #ff9800;
    border-color: #ff9800;
}
.login-panel .btn-primary:active {
    color: #fff;
    background-color: #ff9800 !important;
    border-color: #ff9800 !important;
}
.login-panel .btn-primary:focus {
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -ms-box-shadow: none !important;
    -o-box-shadow: none !important;
}
.tile {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    padding: 20px;
    border: 2px solid #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    background: #82b440;
    background: -moz-radial-gradient(center, ellipse cover, #82b440 1%, #6fc300 100%);
    background: -webkit-gradient(radial, center center, 0, center center, 100%, color-stop(1%, #82b440), color-stop(100%, #6fc300));
    background: -webkit-radial-gradient(center, ellipse cover, #82b440 1%, #6fc300 100%);
    background: -o-radial-gradient(center, ellipse cover, #82b440 1%, #6fc300 100%);
    background: -ms-radial-gradient(center, ellipse cover, #82b440 1%, #6fc300 100%);
    background: radial-gradient(ellipse at center, #82b440 1%, #6fc300 100%);
}
.summary-table .table th {
    text-transform: uppercase;
    font-weight: 500;
}
.summary-table .table td.color5 {
    font-weight: 500;
}
.summary-table .common-heading:before {
    position: absolute;
    content: "";
    width: 80px;
    height: 2px;
    background: #82b440;
    bottom: -10px;
    margin: 0;
    left: 0;
    right: 0;
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    -o-border-radius: 50px;
    -ms-border-radius: 50px;
    overflow: hidden;
}
.buy-tile hr {
    margin: 40px 0;
}
.summary-table .table td {
    border-top: 0 none;
}
.summary-table .table th,
.summary-table .table thead th {
    border-bottom: 1px solid;
    border-top: 0 none !important;
}
.my-account .common-action-btn {
    width: 200px;
}
.my-account .table span.color5 {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 320px;
    margin-top: 0;
    display: block;
    font-weight: 500;
}
.my-account .table span.color1 {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 170px;
    display: inline-block;
    font-weight: 500;
}
.my-account .table span.more {
    display: inline-block;
    margin-left: 5px;
    font-weight: 500;
    vertical-align: text-bottom;
}
.my-account .table thead {
    background: #82b440;
    color: #fff;
}
.my-account .common-action-btn {
    width: auto;
}
.contact-footer {
    background: #202020;
    padding: 10px 0;
    text-align: center;
}
.contact-footer .foot-contact ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.contact-footer .foot-contact ul li {
    display: inline-block;
    margin-right: 20px;
    color: #fff;
}
.contact-footer .foot-contact ul li a {
    color: #fff;
}
.contact-footer .foot-contact ul li:last-child {
    margin-right: 0;
}
.contact-footer .foot-contact ul li img {
    width: 18px;
    margin-right: 5px;
}
.contact-footer p {
    color: #fff;
    margin-top: 5px;
}
.looking-for.terms p {
    margin-top: 15px;
}
.looking-for.terms h3 {
    margin-top: 20px;
    font-size: 22px;
}
.looking-for.terms .common-heading:before {
    margin: 0;
}
.shared-on ul li a img {
    width: 26px;
    height: 26px;
}
.ask-content .left-part {
    margin-top: 200px !important;
}
.label-info .border-vertical {
    height: 16px;
    background: #747474;
    width: 2px;
    display: inline-block;
    border-left: 1px solid #747474;
    vertical-align: middle;
    border-radius: 50px;
    margin: 0 10px;
}
.chatbox {
    position: fixed;
    bottom: 0;
    right: 30px;
    width: 300px;
    height: 400px;
    background-color: #fff;
    -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    -moz-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    -ms-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 999;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}
.chatbox--tray {
    bottom: -350px;
}
.chatbox--closed {
    bottom: -400px;
}
.chatbox .form-control:focus {
    border-color: #1f2836;
}
.chatbox__body,
.chatbox__title {
    border-bottom: none;
}
.chatbox__title {
    min-height: 50px;
    padding-right: 10px;
    background-color: #1f2836;
    cursor: pointer;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.chatbox__title h5 {
    height: 50px;
    margin: 0 0 0 15px;
    line-height: 50px;
    position: relative;
    padding-left: 20px;
    -webkit-flex-grow: 1;
    flex-grow: 1;
}
.chatbox__title h5 a {
    color: #fff;
    max-width: 195px;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
}
.chatbox__title h5:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 12px;
    height: 12px;
    background: #4caf50;
    border-radius: 6px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.chatbox__title__close,
.chatbox__title__tray {
    width: 24px;
    height: 24px;
    outline: 0;
    border: none;
    background-color: transparent;
    opacity: 0.5;
    cursor: pointer;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
.chatbox__title__close:hover,
.chatbox__title__tray:hover {
    opacity: 1;
}
.chatbox__title__tray span .fas {
    color: #fff;
}
.chatbox__title__close svg {
    vertical-align: middle;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.2px;
}
.chatbox__body,
.chatbox__credentials {
    padding: 15px;
    border-top: 0;
    background-color: #fff;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    -webkit-flex-grow: 1;
    flex-grow: 1;
}
.chatbox__credentials {
    display: none;
}
.chatbox__credentials .form-control {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.chatbox__body {
    overflow-y: auto;
}
.chatbox__body__message p {
    padding: 15px;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
    -webkit-box-shadow: 1px 1px rgba(100, 100, 100, 0.1);
    box-shadow: 1px 1px rgba(100, 100, 100, 0.1);
}
.chatbox--empty {
    height: 262px;
}
.chatbox--empty.chatbox--tray {
    bottom: -212px;
}
.chatbox--empty.chatbox--closed {
    bottom: -262px;
}
.chatbox--empty .chatbox__body,
.chatbox--empty .chatbox__message {
    display: none;
}
.chatbox--empty .chatbox__credentials {
    display: block;
}
.chat_set_height {
    height: 40px;
    margin-top: 1px;
}
.chatbox22 .form-control:focus {
    border-color: #dcdcdc;
}
.chat_field.chat_message {
    height: 30px;
    resize: none;
    font-size: 13px;
    font-weight: 400;
    width: 80%;
    border: 0 none;
    padding: 0;
    line-height: 28px;
}
.chat_field.chat_message:focus {
    border: 0 none !important;
}
.panel-footer {
    border-top: 1px solid #dcdcdc;
    padding: 10px 0;
}
.panel-footer span.input-group-btn .btn {
    background: #fff;
    border: 0;
}
.panel-footer span.input-group-btn .btn:focus {
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
}
.panel-footer span.input-group-btn .btn .fas {
    color: #82b440;
}
.message_check {
    padding-top: 10px;
}
.messsade_date {
    text-align: left;
    padding-top: 9px;
}
.messsade_date a {
    color: #000;
}
.padleftright0 {
    padding-left: 0;
    padding-right: 0;
}
.message_box_area {
    color: #000;
    cursor: pointer;
}
.create_m {
    border: 1px solid #ccc !important;
}
.fileinput-button {
    float: left;
    margin-right: 4px;
    overflow: hidden;
    position: relative;
    background: none repeat scroll 0 0 #eee;
    border: 1px solid #e6e6e6;
    margin-top: 15px;
    float: left;
    margin-right: 4px;
    overflow: hidden;
    position: relative;
}
.fileinput-button input {
    cursor: pointer;
    direction: ltr;
    font-size: 23px;
    margin: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(-300px, 0) scale(4);
}
.fileupload-buttonbar .btn,
.fileupload-buttonbar .toggle {
    margin-bottom: 5px;
}
.create_m:focus {
    border-color: #66afe9 !important;
    outline: 0 !important;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6) !important;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6) !important;
}
.col-lg-3.control-label {
    text-align: left;
}
.status2 {
    margin: -10px 20px 0 0;
    float: right;
    display: block;
    font-size: 11px;
    opacity: 0.6;
}
.chat_converse .chat_msg_item.chat_msg_item_admin {
    margin-left: 60px;
    float: left;
    background: rgba(0, 0, 0, 0.03);
    color: #666;
    font-size: 13px;
}
.chat_converse .chat_msg_item {
    position: relative;
    margin: 8px 0 15px;
    padding: 8px 10px;
    max-width: 60%;
    display: block;
    word-wrap: break-word;
    border-radius: 3px;
    -webkit-animation: zoomIn 0.5s cubic-bezier(0.42, 0, 0.58, 1);
    animation: zoomIn 0.5s cubic-bezier(0.42, 0, 0.58, 1);
    clear: both;
    z-index: 999;
}
.chat_converse .chat_msg_item.chat_msg_item_admin:before {
    content: "";
    position: absolute;
    top: 15px;
    left: -12px;
    z-index: 998;
    border: 6px solid transparent;
    border-right-color: rgba(255, 255, 255, 0.4);
}
.chat_converse .chat_msg_item.chat_msg_item_admin .chat_avatar {
    left: -52px;
    background: rgba(0, 0, 0, 0.03);
}
.chat_avatar img,
.chat_converse .chat_msg_item .chat_avatar {
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
}
.chat_converse .chat_msg_item .chat_avatar {
    position: absolute;
    top: 0;
}
.chat_avatar img,
.chat_converse .chat_msg_item .chat_avatar {
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
}
.chat_converse .chat_msg_item.chat_msg_item_user {
    margin-right: 20px;
    float: right;
    background: #82b440;
    color: #eceff1;
    font-size: 13px;
}
.status {
    margin: 50px -50px 0 0;
    float: right;
    font-size: 11px;
    opacity: 0.6;
}
.panel-footer span.input-group-btn {
    width: 10%;
}
.error {
    color: red;
}
.loading-centered {
    position: fixed;
    top: 0;
    left: 0;
    transform: -webkit-translate(-50%, -50%);
    transform: -moz-translate(-50%, -50%);
    transform: -ms-translate(-50%, -50%);
    color: #8b0000;
    z-index: 99999 !important;
    height: 100%;
    width: 100%;
    display: flex;
    background-color: rgba(0, 0, 0, 0.2);
    align-items: center;
    justify-content: center;
}
.form-group.otpDiv img#cheque_bounce_otp_nonverified,
.form-group.otpDiv img#cheque_bounce_otp_verified,
.form-group.otpDiv img#cons_matter_otp_nonverified,
.form-group.otpDiv img#cons_matter_otp_verified,
.form-group.otpDiv img#criminal_matter_otp_nonverified,
.form-group.otpDiv img#criminal_matter_otp_verified,
.form-group.otpDiv img#dowry_otp_nonverified,
.form-group.otpDiv img#dowry_otp_verified,
.form-group.otpDiv img#otp_nonverified,
.form-group.otpDiv img#otp_verified,
.form-group.otpDiv img#property_disputes_otp_nonverified,
.form-group.otpDiv img#property_disputes_otp_verified,
.otp_nonverified_class,
.otp_verified_class {
    position: absolute;
    height: 20px;
    width: 20px;
    right: 24px;
    top: -39px;
}
.talk-testi-static {
    box-shadow: 0 0 10px 0 rgba(85, 47, 47, 0.15);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    padding: 20px;
    margin-top: 60px;
    background: #fdfaf2;
    border: 1px solid #e3e1bd;
    position: relative;
}
.testi-panel.text-center.web-view .talk-testi-static {
    height: 100%;
}
.testi-panel.text-center.web-view .talk-testi-static p {
    line-height: 32px;
    margin-top: 50px;
}
.testi-panel.text-center.web-view .talk-testi-static h5 {
    margin-top: 50px;
    margin-bottom: 15px;
}
.testi-panel.text-center.web-view {
    margin-bottom: 50px !important;
}
.testi-panel.text-center.mobile-view {
    display: none;
}
.talk-expert.m-t-30 p {
    margin-top: 20px !important;
}
.talk-testi-static img {
    width: 80px;
    margin-bottom: 15px;
    position: absolute;
    top: 10px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    left: 50%;
    right: 50%;
}
.money-back {
    padding: 10px;
    background: #fdfaf2;
    border: 1px solid #e3e1bd;
    text-align: left;
    padding: 10px;
    background: #fdfaf2;
    border: 1px solid #e3e1bd;
    text-align: left;
    cursor: pointer;
}
.money-back h4 {
    color: #c55b21;
}
.money-back .fas {
    right: 10px;
    border: 1px solid #234d94;
    color: #234d94;
    width: 25px;
    height: 25px;
    text-align: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    line-height: 24px;
    cursor: pointer;
    top: 15px;
}
.modal.money-back .modal-body ul {
    padding: 0 0 0 20px;
    margin: 0;
    list-style: none;
}
.modal.money-back .modal-body ul li {
    margin-bottom: 10px;
}
.modal.money-back .modal-body ul li:last-child {
    margin-bottom: 0;
}
.modal.money-back .modal-body ul li:before {
    content: "\2022";
    color: #82b440;
    font-weight: 700;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    font-size: 24px;
}
.recharge-mins .testi-panel.text-center p {
    line-height: 28px;
    margin-top: 50px;
}
.money-back-guarantee {
    display: block;
}
.money-back-guarantee .banner {
    padding: 50px 16px;
    background-color: #f8e9e6;
    position: relative;
}
.avatars-online .img-circle {
    border: 3px solid #fff;
    height: 35px;
    overflow: hidden;
    position: relative;
    width: 35px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
.avatars-online .img-circle:nth-child(3) {
    left: -10px;
    z-index: 1;
}
.avatars-online .img-circle:nth-child(2) {
    left: -5px;
    z-index: 2;
}
.avatars-online .img-circle:nth-child(1) {
    z-index: 3;
}
.avatars-online .img-circle img {
    height: 100%;
    width: 100%;
}
.avatars-online .pulse {
    margin-left: 10px;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #388e3c;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(56, 142, 60, 0.4);
    animation: pulse 2s infinite;
}
.avatars-online .pulse:hover {
    animation: none;
}
@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(56, 142, 60, 0.4);
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(56, 142, 60, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(56, 142, 60, 0);
    }
}
@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(56, 142, 60, 0.4);
        box-shadow: 0 0 0 0 rgba(56, 142, 60, 0.4);
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(56, 142, 60, 0);
        box-shadow: 0 0 0 10px rgba(56, 142, 60, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(56, 142, 60, 0);
        box-shadow: 0 0 0 0 rgba(56, 142, 60, 0);
    }
}
.cta-btn {
    border: none;
    text-align: center;
    outline: 0;
    overflow: hidden;
    position: relative;
    background: #254985;
    display: inline-block;
    line-height: 1.56;
    padding: 10px 32px;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
}
.money-back-guarantee .banner .heading {
    font-size: 32px;
    font-weight: 600;
    color: #254985;
}
.money-back-guarantee .banner .content {
    padding: 0 0 0 35px;
}
.money-back-guarantee .banner .heading h1 {
    font-size: inherit;
    font-weight: 700;
    color: #2d2d32;
}
.money-back-guarantee .banner p.font-16 {
    color: #3f3f40;
    font-size: 24px !important;
}
.money-back-guarantee .banner .description span {
    color: #f52424;
    font-size: 32px;
    font-weight: 600;
}
.catg-info.mw-d-none {
    display: none;
}
.money-back-guarantee .money-back-info {
    top: 20px;
    right: 20px;
    cursor: pointer;
}
.money-back-guarantee .money-back-info img {
    width: 30px;
    height: 30px;
}
.orphan-ctg .span-price {
    color: #ed3d47;
}
.orphan-ctg ul li {
    line-height: 25px;
    font-weight: 400 !important;
    font-size: 16px !important;
}
.mobile-faq {
    display: none;
}
.common-action-btn-fontbig,
.orphan-ctg .common-action-btn {
    background-color: #234d94;
    border-color: #234d94;
    font-size: 22px;
    padding: 10px 25px;
}
.common-action-btn-fontbig:focus,
.common-action-btn-fontbig:hover,
.orphan-ctg .common-action-btn:focus,
.orphan-ctg .common-action-btn:hover {
    color: #234d94;
    border-color: #234d94 !important;
}
.accept-payment {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-top: 1px solid #ccc !important;
    padding-top: 10px;
}
.cust-care {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.minutes-tile .common-action-btn .fa,
.minutes-tile .common-action-btn .fas {
    font-size: 16px;
    vertical-align: 2px;
}
.lazyload {
    opacity: 0;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
}
.lazyloaded {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    -ms-transition: all 0.7s;
    -o-transition: all 0.7s;
    transition: all 0.7s;
}
.main-header .whatsapp-list li a {
    border: 1px solid #82b440;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    padding: 5px 20px 5px 15px;
    color: #82b440;
    -webkit-transition: all 180ms;
    -moz-transition: all 180ms;
    -ms-transition: all 180ms;
    -o-transition: all 180ms;
    transition: all 180ms;
    display: block;
    text-decoration: none;
}
.main-header .whatsapp-list li a:hover {
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    transform: translateY(-3px);
}
.main-header .whatsapp-list li a img {
    height: 25px;
    width: 25px;
    vertical-align: middle;
}
.moneyback-clear {
    clear: both;
    overflow: hidden;
}
.moneyback-clear .left-cnt {
    float: left;
    width: 70px;
    margin-right: 10px;
}
.moneyback-clear .center-cnt {
    float: left;
    width: -webkit-calc(100% - 120px);
    width: -moz-calc(100% - 120px);
    width: -ms-calc(100% - 120px);
    width: -o-calc(100% - 120px);
    width: calc(100% - 120px);
}
.moneyback-clear .right-cnt {
    float: left;
    width: 30px;
    margin-left: 10px;
}
.faqreadmore-link,
.resendotp-link {
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    padding: 8px 10px;
    color: #82b440;
    font-size: 12px;
    font-weight: 700;
}
.sticky-accept-payment h2 {
    display: none;
}
.sticky-cust-care,
.sticky-secure {
    display: none;
}
span.apply-code {
    border-left: 1px solid #747474;
    padding-left: 5px;
}
.code-area-border {
    border: 1px dashed #747474;
    color: #7aaf34;
    padding: 10px 15px;
    cursor: pointer;
    position: relative;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    font-size: 14px !important;
    font-weight: 700;
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.code-area-border .fas {
    top: -9px;
    left: 10px;
}
.code-area button.common-action-btn {
    margin: 0 !important;
    border-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.price-offer-block .discountoffer {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #b91228;
    line-height: 16px;
}
.price-offer-block .discountoffer .covid-dashedline {
    border-bottom: 1px dashed #fff;
    padding-bottom: 2px;
    margin-left: -5px;
    margin-right: -5px;
}
.stickypercent-badge {
    background: #f52424;
    display: inline-block;
    border-radius: 5px;
    padding: 5px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    margin-top: 5px;
}
.code-area button.common-action-btn:focus,
.code-area button.common-action-btn:hover {
    background-color: #234d94 !important;
    border-color: #234d94 !important;
    color: #fff !important;
}
.strike-off {
    text-decoration: line-through;
}
h1.heading-color {
    display: none;
}
.why-talk-to-lawyer-sec.p-16 {
    display: none;
}
.how-it-works-sec.bg-color1.mw-bg-transparent {
    display: none;
}
.money-back-guarantee .banner .hero-image {
    margin: 0;
    display: block;
    height: 320px;
    right: 0;
    bottom: 0;
    position: absolute;
}
.money-back-guarantee .banner .banner .catg-info {
    margin: 0 -16px;
    padding: 12px 16px;
    display: flex;
    font-size: 14px;
    align-items: center;
}
.money-back-guarantee .banner .catg-info img {
    float: left;
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
.money-back-guarantee .banner .catg-info.mw-border-0 p {
    font-size: 13px;
    color: #343333;
}
.why-should.m-t-50.m-b-50.header.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 10px;
    padding: 0;
    width: 100%;
}
.flex-grid {
    display: flex;
}
.align-items-center {
    align-items: center;
}
.flex-grid .col-30 {
    width: 30%;
}
.flex-grid .col-70 {
    width: 70%;
}
.flex-grid .col-70 h1 {
    font-weight: 600;
}
.flex-grid .col-70 img {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-left: 5px;
    cursor: pointer;
}
.triangle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: #eb0202;
    padding: 14px;
    box-shadow: 0 0 8px 0 rgba(2, 3, 3, 0.36);
    -webkit-box-shadow: 0 0 8px 0 rgba(2, 3, 3, 0.36);
    -moz-box-shadow: 0 0 8px 0 rgba(2, 3, 3, 0.36);
    -ms-box-shadow: 0 0 8px 0 rgba(2, 3, 3, 0.36);
    -o-box-shadow: 0 0 8px 0 rgba(2, 3, 3, 0.36);
}
.triangle span.top-heading {
    font-size: 20px;
    font-weight: bolder;
    color: #fff;
}
.triangle span {
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    text-align: right;
}
.triangle:before {
    content: "";
    height: 60px;
    width: 32px;
    border-radius: 0 120px 120px 0;
    background: #eb0202;
    position: absolute;
    top: 20px;
    right: 9px;
    z-index: -1;
}
.moneyback-gurantee {
    display: none;
}
.minites-head {
    text-align: left;
}
.freedom-offer {
    background: url(/frontend/client_base_web/buy_lk_mins_from_social_ad/buy_lkm_social_ads/images/freedom-banner.jpg);
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
    width: 100%;
    padding: 50px 20px;
}
.freedom-offer .col-50 {
    -ms-flex: 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 16px;
    padding-right: 16px;
}
.freedom-offer .color-black {
    color: #333;
}
.freedom-offer .color-red {
    color: #fd2818;
}
.freedom-offer-img {
    position: relative;
    top: -20px;
    left: -90px;
}
.freedom-offer .get-offer-btn {
    text-decoration: none;
    background: #be7516;
    padding: 10px 15px;
    border: 0;
    color: #fff;
}
.freedom-offer .valid-upto {
    background: #dbdfde;
    display: inline-block;
    padding: 10px;
    font-size: 18px;
    color: #82b440;
    position: absolute;
    left: 0;
    right: 0;
    width: 250px;
    bottom: -40px;
    margin: 0 auto;
}
.freedom-offer .position-relative {
    position: relative;
}
.freedom-talktolawyer .disc_price {
    width: 28%;
    text-align: center !important;
    min-height: 102px;
}
.freedom-talktolawyer .box-lbl {
    text-align: center !important;
}
.freedom-talktolawyer .card-active p.text-uppercase {
    color: #82b440 !important;
}
.freedom-talktolawyer p.color4 {
    color: #3f3f40 !important;
}
.freedom-talktolawyer .pricing-amt-color {
    color: #282828 !important;
}
.freedom-talktolawyer .minites-head {
    text-align: center !important;
}
.freedom-talktolawyer p.font-14.font-weight-600.color4.m-b-20.text-uppercase.minites-head.lh-20 {
    font-size: 14px !important;
}
.freedom-talktolawyer .price-offer-block .discountoffer .font-14 {
    font-size: 14px !important;
}
.freedom-talktolawyer .talkalwyer-price-offer .discountoffer .covid-dashedline {
    font-size: 12px !important;
}
p.valid-upto-mob {
    margin-top: 10px;
    text-align: center;
    color: #2d2d32;
    font-weight: 600;
    font-size: 12px !important;
    display: none;
}
.freedom-offer-mob-img {
    display: none;
}

/* Starts on css */
/* .col-md-6.column-text {
    background: #cee3ff;
    padding: 20px;
} */

.col-md-6.column-text .minutes-tile .card {
    /* background: #f6f9ff; */
}
.col-md-6.column-text .minutes-tile input {
    border: 1px solid #e0e0e0;
    height: 45px;
}

.select2-container .select2-selection--single {
    height: 45px !important;
    border: 1px solid #ebf3ff !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    top: 80% !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #313131 !important;
    line-height: 34px !important;
}

.col-md-6.column-text .minutes-tile .card button {
    text-decoration: none !important;
    color: #278cf3;
    cursor: pointer;
    padding: 12px 60px;
    outline: 0;
    position: relative;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
    font-size: 16px;
    text-transform: capitalize;
    border: 3px solid #278cf3;
    background: transparent;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.5s linear;
}

.col-md-6.column-text .minutes-tile .card button:hover {
    background: #278cf3 !important;
    color: #fff;
    border: 3px solid #278cf3 !important;
}

.col-md-6.column-text .minutes-tile .card button .fas {
    margin-right: 5px;
}

.row.m-t-20 {
    background: #f7f7f7;
    padding: 12px 0;
    border-top: 1px solid #f1f1f1;
}

.col-md-6.column-text img {
    display: table;
    margin: 0 auto;
    margin-top: 50px;
}

.col-md-6.column-image .card-body form {
    padding: 10px 10px 0 10px;
}

/* .col-md-6.column-text .card .card-body {
    padding: 20px 20px 0 20px;
} */

.accept-payment h2, 
.cust-care h2,
.cust-care p {
    color: #878787 !important;
}

.price-last p {
    color: #878787;
}

.buy-lk-minutes .font-30,
.buy-lk-minutes .font-30 span {
    text-transform: uppercase !important;
    font-weight: bold;
}

.coupon-apply-panel {
    display: none;
}

a.promo-click:hover {
    text-decoration: underline !important;
}

.code-panels {
    margin-bottom: 10px;
}

.code-panels span {
    color: #9e9e9e;
}

.coupon-apply-panel span {
    color: #878787;
    font-size: 12px;
    display: block;
    margin-bottom: 5px;
}

/* .appli-coupon {
    top: 23px !important;
} */

/* .col-md-6.column-image .card-body {
    padding: 20px 20px 0 20px;
} */

.price-table .col-md-6.col-sm-6.col-6.p-l-0 .col-md-8 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.price-table .col-md-6.col-sm-6.col-6.p-l-0 .col-md-4.mint {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}



@media screen and (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1280px;
    }
}
@media screen and (max-width: 1200px) {
    .why-should [type="radio"]:checked + label,
    .why-should [type="radio"]:not(:checked) + label {
        padding-left: 18px;
    }
    .testi-panel .talk-testi-carousel .owl-nav .owl-prev {
        left: 0;
    }
    .testi-panel .talk-testi-carousel .owl-nav .owl-next {
        right: 0;
    }
    .why-should .recharge-mins {
        padding: 30px 10px;
    }
    .why-should [type="radio"]:checked + label:before,
    .why-should [type="radio"]:not(:checked) + label:before {
        width: 15px;
        height: 15px;
    }
    .why-should [type="radio"]:checked + label:after,
    .why-should [type="radio"]:not(:checked) + label:after {
        top: 3px;
        left: 3px;
        width: 9px;
        height: 9px;
    }
    .why-should .disc_price label {
        font-size: 14px;
    }
    .why-should [type="radio"]:checked + label,
    .why-should [type="radio"]:not(:checked) + label {
        line-height: 16px;
    }
}
@media screen and (max-width: 1199px) {
    .banner .left-side {
        padding: 60px 0 0 130px;
    }
    .main-header ul li.m-r-20 {
        margin-right: 10px !important;
    }
    .about-legal.question .font-30.text-uppercase.font-weight-600.m-t-140 {
        margin-top: 120px !important;
        font-size: 24px !important;
    }
    .about-legal.question .common-action-btn.btn.m-t-140 {
        margin-top: 120px !important;
    }
    .blog-section.m-b-50.m-t-50 {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }
    .featured-in.all-blog.m-t-50.m-b-20.position-relative {
        margin-top: 20px !important;
    }
    .blog-tile ul li {
        display: block;
        border-right: 0;
    }
    .price-table p {
        font-size: 14px;
    }
}
@media screen and (max-width: 991px) {
    .freedom-offer-img {
        left: -60px;
    }
    a.cntus-link {
        border: 2px solid #ff7e00 !important;
        margin-bottom: 10px !important;
        display: inline-block;
        padding: 10px 20px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        border-radius: 5px;
    }
    .talkalwyer-price-offer .discountoffer {
        margin: 0 !important;
        width: auto !important;
        padding: 10px !important;
    }
    .talkalwyer-price-offer .discountoffer .covid-dashedline {
        font-size: 12px !important;
    }
    .recharge-mins .clear.d-flex.align-items-center.justify-content-center {
        padding: 0 0 0 5px;
    }
    .desktop-how-it-works-sec,
    .desktop-why-talk-to-lawyer-sec {
        display: none;
    }
    .money-back-guarantee .banner {
        background-color: #f8e9e6;
        padding: 30px 16px 0;
    }
    .money-back-guarantee .banner .content {
        padding: 0;
    }
    .money-back-guarantee .banner .heading {
        line-height: 1.42;
        font-size: 24px;
        font-weight: 700;
        color: #254985;
    }
    .money-back-guarantee .banner .heading h1 {
        font-size: inherit;
        font-weight: 700;
        color: #2d2d32;
    }
    .money-back-guarantee .banner .description {
        line-height: 1.63;
    }
    .money-back-guarantee .banner .description span {
        color: #f52424;
        font-size: 22px;
        font-weight: 600;
    }
    .money-back-guarantee .banner p.font-16 {
        color: #3f3f40;
        font-size: 16px !important;
    }
    .money-back-guarantee .banner .cta-btn {
        background: #254985;
        display: inline-block;
        line-height: 1.56;
        padding: 10px 32px;
        border-radius: 4px;
        color: #fff;
        text-decoration: none;
    }
    .money-back-guarantee .banner .hero-image {
        margin: 31px auto 0;
        display: table;
        height: 150px;
        position: relative;
        width: auto;
    }
    .money-back-guarantee .banner .container {
        padding: 0;
    }
    .catg-info {
        padding: 18px 16px;
        font-size: 14px;
        align-items: center;
        background: #fbf2f0;
        color: #343333;
    }
    .catg-info.mw-d-none {
        display: block;
    }
    .catg-info img {
        float: left;
        width: 20px;
        height: 20px;
        margin-right: 5px;
        vertical-align: middle;
    }
    .catg-info.mw-border-0 {
        display: none;
    }
    .catg-info p.m-r-10 {
        margin-right: 10px;
    }
    .looking-for.talk .common-heading:before {
        background: 0 0;
    }
    .looking-for.talk.text-center.m-t-50.m-b-50 {
        text-align: left !important;
    }
    .looking-for.talk .common-heading.font-30 {
        font-size: 18px !important;
        margin-top: 20px !important;
        text-transform: capitalize !important;
        color: #232323;
    }
    .lk-should-expert.buyLkMinutesPart1 {
        display: none;
    }
    .why-should .recharge-mins {
        overflow: hidden;
        clear: both;
        box-shadow: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        -ms-box-shadow: none;
        -o-box-shadow: none;
        padding: 10px 20px;
        border-top: 0;
    }
    h1.heading-color {
        display: block;
        color: #232323;
        font-size: 16px !important;
        margin-bottom: 20px;
        margin-top: 20px;
        font-weight: 600;
        text-align: left;
    }
    .price-offer-block h2 {
        color: #234d94;
        font-weight: 600;
        font-size: 40px !important;
    }
    .price-offer-block span.color2.font-12 {
        color: #234d94 !important;
    }
    .money-back.m-b-10 {
        display: none;
    }
    .price-last.text-left.p-0.p-b-10.m-b-10.sticky-secure {
        margin-top: 25px;
    }
    .row.mobile-faq.m-t-20 {
        display: none;
    }
    .testi-panel.text-center.mobile-view {
        display: none !important;
    }
    .why-talk-to-lawyer-sec.p-16 {
        text-align: left;
        display: block;
    }
    .why-talk-to-lawyer-sec h1 {
        margin-bottom: 0;
        margin-top: 0;
        font-size: 16px;
        font-weight: 600;
        color: #232323;
        text-align: left;
    }
    .why-talk-to-lawyer-sec-content.m-b-10.mw-mb-0 {
        margin-bottom: 10px;
        margin-left: 10px;
    }
    .why-talk-to-lawyer-sec-content.m-b-10.mw-mb-0 .col-md-12 {
        padding: 0;
    }
    .why-talk-box-body img {
        width: 50px;
        height: 50px;
        margin-right: 5px;
    }
    .why-talk-box-body p {
        display: inline-block;
        font-size: 14px;
        font-weight: 400;
        color: #343333;
    }
    .why-talk-box-body {
        margin-top: 30px;
    }
    .how-it-works-sec.bg-color1.mw-bg-transparent {
        text-align: left;
        background: #f3f1ee;
        position: relative;
        padding: 20px 25px 40px;
        width: 100%;
        display: block;
    }
    .how-it-works-content:before {
        position: absolute;
        content: "";
        background: #ded9e2;
        height: 70%;
        width: 1px;
        top: 80px;
        left: 55px;
    }
    .how-it-works-sec h3 {
        font-size: 15px;
        margin-top: 20px;
        font-weight: 700;
        margin-left: 82px;
    }
    .how-it-works-sec h3 span {
        position: absolute;
        left: 98px;
    }
    .how-it-works-sec .common-item:last-child {
        margin-bottom: 0;
    }
    .how-it-works-sec .common-item {
        position: relative;
        margin-bottom: 40px;
    }
    .how-it-works-sec .common-item .icon-circle {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        margin-right: 20px;
        float: left;
        background-color: #e1dce5;
    }
    .how-it-works-sec .common-item .icon-circle img {
        height: 30px;
        width: 30px;
    }
    .how-it-works-sec .common-item .text-content {
        float: left;
        width: -webkit-calc(100% - 80px);
        width: -moz-calc(100% - 80px);
        width: -ms-calc(100% - 80px);
        width: -o-calc(100% - 80px);
        width: calc(100% - 80px);
    }
    .how-it-works-sec .common-item .text-content p {
        color: #141212;
        font-weight: 400;
        font-size: 14px;
    }
    .contact-footer {
        background: #2b2524;
        margin-bottom: 25px;
        padding: 20px;
    }
    .contact-footer .foot-contact ul li {
        display: block;
        margin-right: 0;
        margin-bottom: 5px;
    }
    .talk-expert.m-t-50 {
        text-align: center;
    }
    .looking-for.talk.text-center.m-t-50.m-b-50 {
        margin-bottom: 0 !important;
    }
    .looking-for.talk .common-heading {
        margin-top: 10px !important;
    }
    .money-back-guarantee {
        display: block;
    }
    .common-action-btn-fontbig,
    .orphan-ctg .common-action-btn {
        padding: 10px 15px;
    }
    .main-header .top-links ul li select {
        padding-left: 10px;
    }
    .main-header .text-right.top-links.m-t-5 ul {
        display: none;
        position: absolute;
        top: 57px;
        background: rgba(255, 255, 255, 0.9);
        width: 100%;
        right: 0;
        padding: 15px;
        z-index: 111;
        box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
        -webkit-box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
        -ms-box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
        -o-box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
    }
    .main-header .text-right.top-links.m-t-5 ul li.d-inline-block.m-r-10 {
        display: block !important;
        text-align: left !important;
        padding: 10px;
        margin-right: 0 !important;
    }
    .main-header .text-right.top-links.m-t-5 ul li.d-inline-block.m-r-10 a {
        text-align: left !important;
        align-items: baseline !important;
        justify-content: normal !important;
        display: block !important;
    }
    .main-header img.navber {
        display: block;
        width: 25px;
        float: right;
    }
    .main-header .top-links ul li.law {
        padding: 0;
    }
    .testimonial-carousel button.owl-prev {
        left: -40px;
    }
    .testimonial-carousel button.owl-next {
        right: -40px;
    }
    .about-legal.question .font-30.text-uppercase.font-weight-600.m-t-140 {
        margin-top: 60px !important;
    }
    .about-legal.question .common-action-btn.btn.m-t-140 {
        margin-top: 80px !important;
        padding: 6px 20px;
    }
    .leaderhhip .leader-left img {
        width: auto;
    }
    .banner.about-page .right-side img {
        width: 100%;
    }
    .common-heading.display-none {
        display: none;
    }
    .banner.about-page .left-side {
        padding: 0 20px;
    }
    .banner.about-page .left-side p.font-16.m-t-20.m-r-80 {
        margin-right: 0 !important;
    }
    .leaderhhip .leader-right {
        margin-top: 0;
    }
    .common-heading.font-30.display-block {
        display: block !important;
    }
    .banner.about-page .col-md-12.p-0 {
        padding-right: 15px !important;
        padding-left: 15px !important;
    }
    .blog-tile a.blog-more {
        right: 25px;
    }
    .why-should .disc_price span {
        display: block;
    }
    .summary-table .table-responsive-block tbody tr {
        display: block;
        border: 1px solid rgba(230, 230, 230, 0.7);
        margin-bottom: 15px;
        margin-top: 25px;
    }
    .table-responsive-block tr {
        border: 1px solid rgba(230, 230, 230, 0.7);
        margin-bottom: 15px;
    }
    .table-responsive-block table,
    .table-responsive-block tbody,
    .table-responsive-block td,
    .table-responsive-block th,
    .table-responsive-block thead,
    .table-responsive-block tr {
        display: block;
    }
    .table-responsive-block td {
        border-bottom: 1px solid #eee;
    }
    .testimonial-carousel .item {
        padding: 0 25px;
    }
    .flex-grid .col-70 h1 {
        margin-left: 15px;
    }
    .price-last {
        border-bottom: 0;
    }
    .accept-payment {
        border-bottom: 0;
        border-top: 0 !important;
    }
    .contact-footer.buy-lk-page {
        margin-bottom: 0;
    }

    .col-md-6.column-text .minutes-tile .card button {
        padding: 12px 20px;
    }
}
@media screen and (max-width: 767px) {
    .freedom-offer {
        padding: 20px;
    }
    .freedom-offer .d-flex {
        flex-direction: column;
    }
    .freedom-offer .col-50 {
        -ms-flex: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .freedom-offer-img {
        left: 0;
        top: 0;
    }
    .freedom-offer .valid-upto {
        display: block;
        position: relative;
        left: auto;
        right: auto;
        width: 250px;
        bottom: auto;
        margin: 20px auto;
    }
    .freedom-talktolawyer .minites-head {
        text-align: center !important;
    }
    .freedom-offer {
        background: url(/frontend/client_base_web/buy_lk_mins_from_social_ad/buy_lkm_social_ads/images/mobile-freedom-banner-small.png);
        background-repeat: no-repeat;
        background-position: center center;
        width: 100%;
        padding: 10px;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -ms-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }
    .freedom-offer .color-black {
        font-size: 16px !important;
        margin-bottom: 8px !important;
        color: #333;
    }
    .freedom-offer-desktop-img {
        display: none;
    }
    .freedom-offer-img {
        left: 0;
        top: 0;
        margin: 0 auto 10px;
    }
    .freedom-offer-mob-img {
        display: block;
        float: right;
        position: relative;
        left: 20px;
    }
    .freedom-offer .valid-upto {
        display: none;
    }
    p.valid-upto-mob {
        display: block;
    }
    .freedom-offer .get-offer-btn {
        padding: 6px 10px;
        font-size: 12px !important;
        margin-top: 5px;
    }
    .mobprice-sticky {
        display: flex;
        flex-direction: column;
    }
    .mobprice-sticky .item-price {
        order: 1;
    }
    .mobprice-sticky .money-back {
        order: 3;
    }
    .mobprice-sticky .price-last {
        order: 4;
    }
    .mobprice-sticky .accept-payment {
        order: 5;
    }
    .mobprice-sticky .cust-care {
        order: 6;
    }
    .mobprice-sticky .buy-btn {
        order: 2;
        margin-top: 10px;
    }
    .why-should .disc_price .code-area {
        margin: 0 10px;
    }
    .why-should .disc_price .code-area button,
    .why-should .disc_price .code-area-border {
        display: block !important;
        margin: 5px 0 !important;
    }
    .price-offer-block {
        margin-bottom: 15px;
    }
    .price-offer-block .offset-2 {
        margin-left: 0;
    }
    .price-offer-block .col-4 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .price-offer-block .discountoffer {
        display: table;
        margin: 0 auto;
        padding: 10px 20px !important;
    }
    .price-offer-block .discountoffer .font-14 {
        font-size: 16px !important;
    }
    .price-offer-block .discountoffer .covid-dashedline {
        padding-bottom: 5px;
        margin-bottom: 10px !important;
    }
    .why-should .disc_price {
        text-align: center;
    }
    .moneyback-clear {
        display: block !important;
    }
    .moneyback-clear .left-cnt {
        width: 100%;
        text-align: center;
        float: none;
    }
    .moneyback-clear .center-cnt {
        width: -webkit-calc(100% - 40px);
        width: -moz-calc(100% - 40px);
        width: -ms-calc(100% - 40px);
        width: -o-calc(100% - 40px);
        width: calc(100% - 40px);
    }
    .sticky-accept-payment h2 {
        display: block;
    }
    .sticky-cust-care,
    .sticky-secure {
        display: block;
    }
    .satisfactory-text p {
        padding-left: 0 !important;
        font-size: 14px !important;
    }
    .money-back {
        margin-bottom: 20px !important;
        margin-top: 20px !important;
    }
    .main-header .text-right.top-links.m-t-5 ul {
        width: 500px;
        right: 15px;
    }
    .main-header img.navber {
        margin-top: 5px;
    }
    .mob-navs {
        display: table;
        margin: 0 auto;
    }
    .buy-lk-footer .common-action-btn {
        background-color: #254985;
        border-color: #254985;
    }
    .buy-lk-footer .common-action-btn:focus,
    .buy-lk-footer .common-action-btn:hover {
        color: #254985;
        background-color: transparent !important;
        border-color: #254985 !important;
    }
    .main-header .col-md-6.offset-3.text-center .mob-navs img {
        width: 220px;
    }
    .mob-navs ul li a img {
        margin-top: 0;
    }
    .banner .right-side img {
        width: 100%;
        max-width: 500px;
        display: table;
        margin: 0 auto;
    }
    .banner .left-side {
        padding: 30px 20px 0;
    }
    .banner .container-fluid .col-md-7.p-0 {
        padding: 0 15px !important;
    }
    .banner .container-fluid .col-md-5.p-0 {
        padding: 0 15px !important;
    }
    .column-image {
        order: 1 !important;
    }
    .column-text {
        order: 2;
    }
    .banner {
        text-align: center;
    }
    .banner .left-side h2 {
        font-size: 24px;
        line-height: 32px;
    }
    .banner button.common-action-btn.btn.m-t-50 {
        margin-top: 20px !important;
    }
    .about-legal.text-center.p-t-40.p-b-40.m-t-50.m-b-50,
    .featured-in.text-center.m-t-50.m-b-80,
    .legal-ask.m-t-50.m-b-50,
    .legal-expert.m-t-50.m-b-50,
    .legal-talk.m-t-50.m-b-50,
    .looking-for.text-center.m-t-50.m-b-50,
    .testimonials-say.p-t-30.p-b-30.m-t-50.m-b-50,
    .why-legal.text-center.m-t-50.m-b-50 {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
        text-align: center;
        padding-bottom: 15px !important;
        padding-top: 0 !important;
        overflow: hidden !important;
        overflow-x: hidden !important;
    }
    .common-heading.font-30 {
        font-size: 18px !important;
        margin-bottom: 0 !important;
    }
    .orphan-ctg {
        margin-top: 20px !important;
    }
    .orphan-ctg .common-heading {
        font-size: 24px !important;
        margin-bottom: 30px !important;
    }
    .orphan-ctg h2 {
        font-size: 20px !important;
    }
    .orphan-ctg p {
        font-size: 20px !important;
    }
    .orphan-ctg ul {
        font-size: 16px !important;
    }
    .desktop-faq {
        display: none;
    }
    .mobile-faq {
        display: block;
    }
    .cust-care {
        margin-bottom: 30px;
    }
    .looking-for p {
        margin-top: 30px;
    }
    .font-30.text-uppercase.font-weight-600 {
        font-size: 18px !important;
        margin-top: 25px;
    }
    .legal-ask .part-text,
    .legal-talk .part-text {
        margin-top: 10px;
    }
    .legal-expert .expert-tile {
        height: auto;
        margin-bottom: 20px !important;
    }
    .why-legal .col-md-10.offset-1 {
        margin-left: 0 !important;
    }
    .testimonials-say .testimonial-content {
        position: relative;
        min-height: 190px;
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
        overflow: hidden;
    }
    .testimonials-say .avatar-circle {
        position: relative;
        left: auto;
        top: 40px;
        display: table;
        margin: 30px auto;
    }
    .testimonials-say h4.font-36.font-wight-600 {
        font-size: 18px !important;
    }
    .testimonials-say .testimonial-content h4 {
        left: 0;
    }
    .testimonials-say .quote-icon {
        left: 10px;
    }
    .testimonials-say p {
        left: auto;
        display: table;
        margin: 0 auto;
    }
    .main-footer .footertop-links ul li {
        position: relative;
        border-bottom: 1px solid #424856;
    }
    .main-footer .footertop-links ul {
        flex-direction: column;
    }
    .main-footer .footertop-links ul li a {
        padding: 10px 15px 10px 0;
        font-size: 16px;
        display: block;
        padding: 10px 15px 10px 0;
        font-size: 16px;
        display: block;
    }
    .main-footer .footertop-links ul li::before {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f105";
        display: inline-block;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: \f105;
        position: absolute;
        right: 0;
        top: 10px;
    }
    .footer-copyright {
        text-align: center;
    }
    ul.list-unstyled.m-0.d-flex.justify-content-end.text-white {
        justify-content: center !important;
    }
    .footer-copyright p {
        font-size: 14px;
    }
    .footer-copyright p.text-white {
        margin-bottom: 5px;
    }
    .testimonial-carousel button.owl-prev {
        display: none !important;
    }
    .testimonial-carousel button.owl-next {
        display: none !important;
    }
    .why-middle-section.m-t-50 {
        margin-top: 20px !important;
    }
    .divorce.m-t-50.m-b-50 {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
        overflow: hidden !important;
        overflow-x: hidden !important;
    }
    .divorce .col-md-8.offset-2 {
        margin-left: 0;
    }
    .divorce .font-30.text-uppercase.font-weight-600 {
        font-size: 18px !important;
        margin-top: 0;
    }
    .talk-advice {
        margin-bottom: 0;
    }
    .legal-ask.m-t-50.m-b-50.aos-init.aos-animate {
        margin-bottom: 0 !important;
    }
    .why-should.m-t-50.m-b-50 {
        margin-bottom: 20px !important;
        margin-top: 20px !important;
    }
    .why-should .btn.m-t-50 {
        margin-top: 20px !important;
    }
    .featured-in.text-center.m-t-50.m-b-20 {
        margin-top: 20px !important;
    }
    .faq-accordion.m-t-50 {
        margin-top: 20px !important;
    }
    img.faq-icon {
        width: 65%;
    }
    .about-legal.question .font-30.text-uppercase.font-weight-600.m-t-140 {
        margin-top: 0 !important;
        font-size: 18px !important;
    }
    .about-legal.question .col-md-4.col-sm-12.col-12.text-left {
        text-align: center !important;
    }
    .about-legal.question .common-action-btn.btn.m-t-140 {
        margin-top: 20px !important;
        padding: 6px 45px;
    }
    .looking-for.leader-ship.m-t-50.m-b-50 {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }
    .featured-in.all-blog.m-t-50.m-b-20.position-relative {
        margin-top: 0 !important;
    }
    .featured-in.all-blog .common-heading.font-30.m-b-40 {
        margin-bottom: 25px !important;
        text-align: center;
    }
    .blog-tile h3 {
        line-height: 24px;
        font-size: 16px !important;
    }
    .blog-section .common-heading:before {
        margin: 0 auto;
    }
    .common-left-heading:before {
        margin: 0 auto;
    }
    .common-left-heading {
        text-align: center;
        margin-top: 20px;
    }
    .recenttag-sec .recent-topics ul li {
        display: table;
        margin: 0 auto;
    }
    .all-blog .blog-tile {
        margin-bottom: 20px;
    }
    .blog-tile a.blog-more {
        right: 15px;
        bottom: 0;
    }
    .why-should.m-t-50.m-b-50.header.sticky .recharge-mins {
        height: auto;
        overflow-y: initial;
        padding-top: 0 !important;
    }
    .why-should.sticky {
        position: relative;
        top: auto;
        width: 100%;
    }
    .why-should .recharge-mins {
        margin-bottom: 25px;
    }
    .why-should [type="radio"]:checked + label:before,
    .why-should [type="radio"]:not(:checked) + label:before {
        width: 12px;
        height: 12px;
    }
    .why-should [type="radio"]:checked + label:after,
    .why-should [type="radio"]:not(:checked) + label:after {
        top: 3px;
        left: 3px;
        width: 6px;
        height: 6px;
    }
    .why-should [type="radio"]:checked + label,
    .why-should [type="radio"]:not(:checked) + label {
        padding-left: 28px;
        line-height: 20px;
    }
    .blog-details .common-heading.text-center.font-30.m-b-40 {
        margin-top: 0;
        margin-bottom: 20px !important;
    }
    .address-tile img.img-fluid.position-absolute.one {
        left: 8px;
    }
    .address-tile img.img-fluid.position-absolute.two {
        left: 22px;
    }
    .address-tile img.img-fluid.position-absolute.three {
        left: 12px;
    }
    .address-tile img.img-fluid.position-absolute.fore {
        left: 24px;
    }
    .banner.about-page.contact-banner .left-side {
        padding: 0;
    }
    .featured-in.blog-details.m-t-50.m-b-20.position-relative {
        margin-top: 20px !important;
    }
    .blog-details .blog-section.m-b-50.m-t-50 {
        margin-top: 0 !important;
    }
    .blog-details .common-heading.font-30.m-b-40 {
        margin-top: 0;
        margin-bottom: 20px !important;
        text-align: center;
    }
    .blog-details img {
        margin-top: 0 !important;
    }
    .blog-details .blog-tile ul li {
        display: block;
        font-size: 20px;
        border-right: 0 none;
        padding-right: 0;
    }
    .blog-details .blog-tile h3 {
        text-align: center;
    }
    .blog-details h3.font-24.m-b-20 {
        margin-bottom: 10px !important;
        text-align: center;
    }
    .blog-details .blog-tile ul li {
        font-size: 16px;
        border: 0 none;
    }
    .blog-details .blog-tile {
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .blog-details ul.blog-list {
        display: table;
        margin: 0 auto;
        margin-bottom: 10px;
        text-align: center;
    }
    .blog-details p {
        text-align: center;
    }
    .blog-details ul.list-unstyled.m-0.d-flex.text-white.share {
        display: table !important;
        margin: 0 auto !important;
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }
    .function .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .looking-for.buy-lk-minutes.m-t-50.m-b-50 {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }
    .buy-lk-footer {
        display: block;
        position: fixed;
        width: 100%;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 8;
    }
    .buy-lk-footer .buy-fixed span {
        text-transform: uppercase;
        display: block;
        font-size: 14px;
        color: #2d2d32;
    }
    .stickypercent-badge span {
        color: #fff !important;
    }
    .buy-lk-footer .buy-fixed a {
        background: #eefbfe;
        display: block;
        padding: 10px;
        color: #fff;
    }
    .buy-lk-footer .left-side img {
        width: 25px;
        float: left;
        margin-right: 5px;
    }
    .buy-lk-footer .common-action-btn {
        font-size: 14px;
        padding: 14px 12px;
        float: right;
    }
    .buy-lk-minutes .common-heading.font-30.text-center {
        margin-bottom: 30px !important;
    }
    .minutes-tile .card-header {
        text-align: center;
    }
    .price-table p {
        font-size: 16px;
    }
    .price-customer {
        margin-bottom: 20px;
    }
    .buy-lk-minutes .common-action-btn-fill.btn.m-t-20 {
        margin-top: 0 !important;
        font-size: 16px;
    }
    .contact-form.m-t-50 {
        margin-top: 25px !important;
    }
    .banner.success .common-heading.font-30.text-center.font-weight-600.text-uppercase.position-relative.m-b-20 {
        margin-bottom: 30px !important;
        margin-top: 0;
    }
    .banner.success .left-side.check {
        padding: 0 0 20px;
    }
    .banner.success .col-md-7.text-left {
        text-align: center !important;
        margin-top: 20px;
    }
    .banner.success .left-side.check {
        padding: 0;
    }
    .bottom-success.m-t-30.m-b-50 {
        margin-top: 10px !important;
        margin-bottom: 0 !important;
    }
    .banner.success .left-side.check p {
        font-size: 24px;
    }
    .ask-question-form.m-t-40 {
        margin-top: 20px !important;
    }
    .ask-question-form .common-action-btn {
        font-size: 14px;
    }
    .benefits ul {
        margin-top: 20px;
    }
    .ask-lawyer .left-side p {
        margin-top: 20px;
    }
    .dose-work img {
        width: 30%;
    }
    .dose-work .fas {
        display: none;
    }
    .dose-work .col-md-3 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 15px;
    }
    .dose-work.m-t-50 {
        margin-top: 25px !important;
    }
    .login-wrap {
        padding-top: 120px;
    }
    .login-panel .col-md-8.offset-2 {
        margin-left: 0;
    }
    .login-text h2 {
        border-left: 0;
        padding-left: 0;
    }
    .login-panel .btn-primary {
        display: table;
        margin: 0 auto;
    }
    .common-heading.font-22 {
        font-size: 18px !important;
        margin-bottom: 0 !important;
        text-align: center;
    }
    .summary-table .common-heading:before {
        margin: 0 auto;
    }
    .table-responsive.m-t-40 {
        margin-top: 25px !important;
    }
    .buy-tile hr {
        margin: 20px 0;
    }
    .my-account button.common-action-btn.btn.m-t-20 {
        display: table;
        margin: 0 auto !important;
    }
    .summary-table.m-t-50 {
        margin-top: 20px !important;
    }
    .looking-for.my-account.m-t-50.m-b-50 {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }
    .common-heading.font-30.display-block.text-uppercase.text-center.font-weight-600.position-relative {
        margin-bottom: 25px !important;
    }
    .about-page .left-side h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .about-page .left-side h2 {
        font-size: 18px;
    }
    .why-should.m-t-50.m-b-50.header.sticky {
        margin: 0 !important;
        margin-top: 15px !important;
        padding: 0;
    }
    .looking-for.terms .common-heading:before {
        margin: 0 auto;
    }
    .looking-for.terms {
        text-align: center;
    }
    .looking-for.terms.m-t-50.m-b-50 {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }
    .terms-panel.m-t-50 {
        margin-top: 20px !important;
    }
    .question .ask-content.m-t-50 {
        margin-top: 20px !important;
    }
    .question .qa-sec.text-left.m-t-50.m-b-50 {
        margin-top: 20px !important;
        margin-bottom: 0 !important;
        text-align: center !important;
    }
    .question .qa-sec h4 {
        font-size: 18px !important;
        line-height: 24px;
    }
    .question .label-info.m-t-20.m-b-20 {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }
    .question .qa-item {
        margin-bottom: 0 !important;
    }
    .question .qa-item p {
        margin-top: 10px;
    }
    .shared-on.m-t-50.m-b-50 {
        display: table;
        margin: 30px auto !important;
    }
    .question .practice-tags .row.m-b-50 {
        margin-bottom: 0 !important;
    }
    .question .qa-sec h4 a.common-action-btn.btn.m-l-20 {
        margin-left: 0 !important;
        margin-top: 15px;
    }
    .question .ask-content .left-part {
        margin-top: 0 !important;
    }
    .question .ask-content .left-part h3 {
        font-size: 22px;
        text-align: center !important;
    }
    .question .ask-content .left-part h4 {
        text-align: center !important;
        font-size: 22px !important;
        margin-top: 10px !important;
    }
    .success .bottom-success .col-md-6.text-left {
        text-align: center !important;
        margin-top: 10px;
    }
    .minutes-tile .price-table .form-group {
        margin-bottom: 0;
    }
    .minutes-tile .price-table {
        padding: 15px 0;
    }
    .minutes-tile .card .card-body {
        /* padding: 0; */
    }
    .minutes-tile .card {
        min-height: auto;
        box-shadow: none;
    }
    .price-table .col-md-6.col-sm-6.col-6.mint {
        padding-right: 10px;
    }
    .main-header .col-md-6.offset-3.text-center {
        margin-left: 0;
    }
    .recharge-mins .testi-panel.text-center p {
        line-height: 28px;
        margin-bottom: 5px;
    }
    .testi-panel.text-center.web-view {
        display: none;
    }
    .testi-panel.text-center.mobile-view {
        display: block;
    }
    .testi-panel.text-center.mobile-view h5 {
        margin-top: 50px;
        margin-bottom: 15px;
    }
    .foot-contact {
        margin-bottom: 60px;
    }
    .faq-acc .card-body p {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
    .full-border {
        border-top: 10px solid #f4f4f4;
        position: relative;
        margin-right: -15px;
        margin-left: -15px;
    }
    .why-should p.font-15 {
        margin-top: 6px;
        font-size: 16px !important;
    }
    .why-should .price-details p {
        margin-top: 10px;
    }
    .select2-container {
        width: 100% !important;
    }
    .code-panels {
        text-align: left !important;
    }

    .purchased-listed ul {
        margin: 0;
        padding: 10px 0 0 0 !important;
        list-style-type: none;
    }
    
    .purchased-listed ul li {
        font-size: 12px !important;
        line-height: 20px !important;
    }

    .minutes-tile .price-table .col-md-2:nth-child(1) {
        padding-left: 0;
    }

    .minutes-tile .price-table .col-md-6 {
        padding-right: 0;
    }

    .purchased-listed {
        margin-bottom: 10px;
    }

    .price-table .col-md-6.col-sm-6.col-6.p-l-0 .row {
        margin-right: -40px;
        margin-left: -13px;
    }
    .price-table .col-md-6.col-sm-6.col-6.p-l-0 .col-md-8 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .price-table .col-md-6.col-sm-6.col-6.p-l-0 .col-md-4.mint {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}
@media screen and (max-width: 575px) {
    .looking-for.talk .common-heading.font-30 {
        font-size: 16px !important;
    }
    .talk-advice p {
        font-size: 14px !important;
    }
    .leader-right {
        margin-top: 20px !important;
    }
    .legal-ask.abt-mid p {
        line-height: 26px;
        font-size: 18px !important;
    }
    .looking-for.leader-ship.m-t-50.m-b-50 {
        text-align: center;
    }
    .blog-tile h3 {
        margin-bottom: 10px !important;
    }
    .blog-tile a.blog-more {
        right: 12px;
    }
    .blog-details .blog-tile {
        padding-bottom: 0;
    }
    .contact-address .col-md-3.col-sm-6.col-12 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .function .col-md-6 .form-group .fas {
        left: 224px;
    }
    .price-table .col-md-6.col-sm-6.col-6.mint {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .ask-question-form .dropdown {
        margin-bottom: 20px;
    }
    .ask-question-form .col-md-3.col-sm-3 .common-action-btn {
        margin-top: 20px;
    }
    .ask-question-form select {
        margin-bottom: 20px;
    }
    .my-account .table span.color5 {
        width: 90px;
    }
    .summary-table .table td,
    .summary-table .table th {
        font-size: 12px;
    }
    .my-account .table span.color1 {
        width: 100px;
    }
    .testimonials-say .testimonial-content h4 {
        font-size: 18px !important;
        line-height: 28px;
    }
    .looking-for.terms h3 {
        font-size: 18px;
    }
    .banner.terms-condition p {
        margin-top: 5px !important;
    }
    .price-table .col-md-6.col-sm-6.col-6.mint {
        padding-right: 15px;
    }
    .recharge-mins .clear.d-flex.align-items-center.justify-content-center {
        display: block !important;
    }
    .why-should .disc_price {
        width: 46%;
        margin-bottom: 0;
    }
    .why-should .price-txt span {
        font-size: 12px !important;
    }
    .why-should .triangle span {
        font-size: 20px !important;
    }
    .why-should .triangle span.off {
        font-size: 12px !important;
    }
    .minites-head {
        text-align: center;
    }
    .freedom-talktolawyer .disc_price {
        min-height: 110px;
    }
}
@media screen and (max-width: 530px) {
    .main-header img.navber {
        margin-top: 0;
    }
    .main-header .text-right.top-links.m-t-5 ul {
        width: 400px;
        top: 50px;
    }
    .banner .right-side img {
        width: 75%;
    }
    .legal-ask img,
    .legal-talk img {
        width: 75%;
    }
    .legal-expert .col-md-3.co-sm-3.col-6 {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .legal-expert .expert-tile {
        height: 100%;
        margin-bottom: 0 !important;
    }
    .legal-expert .col-md-3.co-sm-3.col-6:nth-child(3),
    .legal-expert .col-md-3.co-sm-3.col-6:nth-child(4) {
        margin-top: 0;
        margin-bottom: 20px;
    }
    .about-legal.text-center.p-t-40.p-b-40.m-t-50.m-b-50,
    .featured-in.text-center.m-t-50.m-b-80,
    .legal-ask.m-t-50.m-b-50,
    .legal-expert.m-t-50.m-b-50,
    .legal-talk.m-t-50.m-b-50,
    .looking-for.text-center.m-t-50.m-b-50,
    .testimonials-say.p-t-30.p-b-30.m-t-50.m-b-50,
    .why-legal.text-center.m-t-50.m-b-50 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-bottom: 8px !important;
    }
    .featured-in .cmp-logo {
        margin-bottom: 20px;
    }
    .testimonials-say .testimonial-content h4 {
        left: 0;
        font-size: 18px !important;
        line-height: 28px;
    }
    .part-text span {
        display: block;
    }
    .divorce h4.font-18.color3.m-b-30 {
        margin-bottom: 10px !important;
    }
    .function .form-group.m-b-10 {
        margin-bottom: 0 !important;
    }
    .category-panel ul li a {
        font-size: 13px;
    }
    .category-panel ul li {
        line-height: normal;
    }
    .looking-for.talk .common-heading {
        margin-top: 20px;
    }
    .about-legal.question.text-center.p-t-40.p-b-40.m-t-50.m-b-50 {
        margin-bottom: 20px !important;
    }
    .about-legal.question .common-action-btn.btn.m-t-140 {
        margin-bottom: 20px;
    }
    .faq-accordion ul li {
        font-size: 14px;
        display: block;
        border-right: 0;
    }
    .faq-accordion ul {
        padding-top: 10px;
    }
    .looking-for.blog.m-t-50.m-b-50 {
        margin-top: 20px !important;
    }
    .blog-section.m-b-50.m-t-50 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    .blog-section .col-md-6.col-sm-6.col-6 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .blog-tile img {
        width: 100%;
    }
    .blog-tile ul li {
        display: inline-block;
        border-right: 1px solid #ccc;
    }
    .blog-tile h3 {
        margin-bottom: 0 !important;
        text-align: center;
    }
    .all-blog .blog-tile p.m-t-20.position-relative {
        display: none;
    }
    .all-blog .blog-tile {
        height: 560px !important;
    }
    .blog-details .blog-tile ul li {
        font-size: 18px;
    }
    .all-blog .col-md-12.text-center.m-t-20 {
        margin-top: 0 !important;
    }
    .all-blog .col-md-12.text-center.m-t-20 button.common-action-btn.btn.m-t-20 {
        margin-top: 0 !important;
    }
    .practice-tags .row.m-t-30.m-b-30 {
        margin-bottom: 0 !important;
    }
    .recent-topics ul.list-unstyled.p-0.m-0.m-t-30.m-b-30 {
        margin-bottom: 0 !important;
    }
    .function .col-md-6 .form-group .fas {
        left: 200px;
    }
    .looking-for.talk-minits.text-center.m-t-50.m-b-50 {
        margin-top: 20px !important;
    }
    .price-table .col-md-6.col-sm-6.col-6.mint {
        -ms-flex: 0 0 55%;
        flex: 0 0 55%;
        max-width: 55%;
    }
    .banner.success .left-side.check p {
        font-size: 18px;
    }
    .testimonials-say .testimonial-carousel {
        margin-top: 20px;
    }
    .summary-table .table td,
    .summary-table .table th,
    .summary-table .table thead th {
        white-space: nowrap;
    }
    .contact-footer .foot-contact ul li {
        display: block;
        margin-right: 0;
    }
    .looking-for.question.text-center.m-t-50.m-b-50 {
        margin-top: 20px !important;
        margin-bottom: 30px !important;
    }
    .faq-accordion.ask ul.qstn li {
        border-right: 0;
    }
    .img-secure img {
        width: 52px;
        height: 35px;
    }
    .freedom-offers.m-t-20.m-b-20 img {
        width: 200px;
        height: auto;
    }
}
@media screen and (max-width: 480px) {
    .freedom-offer {
        background: url(/frontend/client_base_web/buy_lk_mins_from_social_ad/buy_lkm_social_ads/images/freedom-offer-flag-extrasmall.png);
        background-repeat: no-repeat;
        background-position: center center;
        width: 100%;
        padding: 10px;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -ms-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }
    .freedom-talktolawyer .disc_price {
        min-height: 105px;
    }
    .price-offer-block .price-txt .disc-percent-50,
    .price-offer-block .price-txt .disc-percent-70 {
        right: 10px;
        top: 0;
    }
    .main-header .logo {
        margin-right: 0 !important;
    }
    .code-area-border {
        padding: 10px 15px;
    }
    .code-area.code-area-price {
        padding: 10px 6px;
        font-size: 12px !important;
    }
    .why-should .disc_price .code-area-border {
        padding: 10px 15px;
    }
    .main-header .row .col-md-10.offset-1 {
        margin-left: 0;
    }
    .main-header .whatsapp-list li {
        margin-left: 10px !important;
    }
    .main-header .logo img {
        width: 165px;
    }
    .recharge-mins .guarantee-tile h4 {
        margin-right: 25px;
    }
    .looking-for.talk p.font-18 {
        font-size: 14px !important;
    }
    .expert-tile img {
        width: 50%;
    }
    .legal-expert .expert-tile {
        padding: 10px !important;
    }
    .expert-tile p.font-20.m-t-20 {
        font-size: 16px !important;
    }
    .why-should .disc_price {
        width: 46%;
        -webkit-box-shadow: 0 0 9px 0 rgba(2, 3, 3, 0.29);
        -moz-box-shadow: 0 0 9px 0 rgba(2, 3, 3, 0.29);
        -ms-box-shadow: 0 0 9px 0 rgba(2, 3, 3, 0.29);
        -o-box-shadow: 0 0 9px 0 rgba(2, 3, 3, 0.29);
        box-shadow: 0 0 9px 0 rgba(2, 3, 3, 0.29);
        border-left: 0 none;
        padding: 0;
        margin-top: 10px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
        border-radius: 4px;
        margin-bottom: 10px;
    }
    .why-should .disc_price:nth-child(1) {
        -webkit-box-shadow: 0 0 9px 0 rgba(2, 3, 3, 0.15);
        -moz-box-shadow: 0 0 9px 0 rgba(2, 3, 3, 0.15);
        -ms-box-shadow: 0 0 9px 0 rgba(2, 3, 3, 0.15);
        -o-box-shadow: 0 0 9px 0 rgba(2, 3, 3, 0.15);
        box-shadow: 0 0 9px 0 rgba(2, 3, 3, 0.15);
        margin-left: 0;
    }
    .clear.d-flex.align-items-center.justify-content-center {
        margin-bottom: 20px;
        overflow: visible !important;
        clear: initial;
    }
    span.font-12.covid-text {
        font-weight: 600;
    }
    .lk-steps .col-md-4.col-sm-4.col-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .lk-steps img {
        width: 50% !important;
    }
    .why-should .recharge-mins {
        margin-bottom: 20px !important;
    }
    .why-should .disc_price span:not(.covid-text) {
        font-size: 14px !important;
    }
    .banner.about-page p.font-16 {
        line-height: 26px;
    }
    .blog-tile a.blog-more {
        right: 15px;
        bottom: -5px;
    }
    .blog-tile h3 {
        text-align: center;
    }
    .blog-tile ul {
        margin: 0 auto;
        display: table;
        margin-bottom: 10px;
    }
    .blog-tile ul li {
        padding-left: 5px;
    }
    .blog-tile p.m-t-20 {
        text-align: center;
    }
    .blog-tile {
        margin-bottom: 0;
    }
    .all-blog .blog-tile {
        margin-bottom: 10px;
    }
    .why-should .recharge-mins {
        padding: 0;
    }
    .address-tile img {
        display: none;
    }
    .address-tile p.font-weight-600.font-18 {
        font-size: 16px !important;
    }
    .address-tile .card p {
        font-size: 16px;
    }
    .contact-address .col-md-3.col-sm-6.col-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .address-tile {
        border: 1px solid #ccc;
        margin-bottom: 25px;
        padding: 10px;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
    }
    .why-should [type="radio"]:checked + label,
    .why-should [type="radio"]:not(:checked) + label {
        padding-left: 22px;
    }
    .why-should .recharge-mins {
        margin-bottom: 0;
    }
    .why-should.m-t-50.m-b-50.header.sticky .recharge-mins {
        padding: 20px 0;
    }
    .blog-details .blog-tile ul li {
        font-size: 16px;
    }
    .function .form-group select {
        width: 100%;
    }
    .gradient-button-1 {
        width: 100%;
    }
    .function .col-md-6 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .function .col-md-6 .form-group .fas {
        left: auto;
    }
    .function button.common-action-btn-fill.btn.m-t-20 {
        margin-top: 0 !important;
    }
    h4.modal-title.font-18 {
        font-size: 16px !important;
    }
    .date-picker .gj-datepicker.gj-datepicker-bootstrap.gj-unselectable.input-group {
        width: 100% !important;
    }
    .price-table .col-md-6.col-sm-6.col-6.mint {
        -ms-flex: 0 0 60%;
        flex: 0 0 60%;
        max-width: 60%;
    }
    .bottom-success button.common-action-btn.btn.m-r-20 {
        margin-right: 0 !important;
    }
    .bottom-success button.common-action-btn.btn {
        padding: 6px 20px;
    }
    .bottom-success button.common-action-btn-success.btn {
        padding: 6px 20px;
    }
    .modal.success h4.font-20.font-weight-600.m-b-20 {
        font-size: 16px !important;
        margin-bottom: 10px !important;
    }
    .modal.success .common-action-btn {
        padding: 6px 20px;
    }
    .modal.ask-question .col-6 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .ask-lawyer .left-side p {
        font-size: 20px;
        line-height: 28px;
    }
    .all-blog .blog-tile {
        height: 530px !important;
    }
    .blog-details .blog-tile ul.share li {
        margin-right: 10px !important;
    }
    .price-customer {
        text-align: center;
    }
    .talk-testi-static {
        margin-left: 5px;
        margin-right: 5px;
        margin-bottom: 10px;
    }
    .why-should.m-t-50.m-b-50 {
        margin-bottom: 0 !important;
    }
    .recharge-mins .item-price {
        margin-bottom: 0;
    }
    .money-back {
        margin-left: 5px;
        margin-right: 4px;
    }
    .buy-lk-footer .common-action-btn {
        margin-top: 5px;
    }
    .recharge-mins .testi-panel.text-center h5 {
        margin-bottom: 8px;
    }
    .legal-ask .col-md-8.column-text p {
        margin-bottom: 10px;
    }
    .talk .lk-steps p {
        margin-bottom: 10px;
    }
    .faq-acc span.fa-icon {
        position: absolute;
        right: 0;
        top: 12px;
    }
}

@media screen and (max-width: 460px) {
    .mob-navs ul li a img {
        margin-top: 3px;
    }
    .all-blog .blog-tile {
        height: 510px !important;
    }
}
@media screen and (max-width: 454px) {
    .payment-selection-list button {
        padding: 0 5px !important;
    }

    .payment-selection-list .m-r-10 {
        margin-right: 5px !important;
    }
}
@media screen and (max-width: 450px) {
    .price-table .col-md-6.col-sm-6.col-6.mint {
        -ms-flex: 0 0 65%;
        flex: 0 0 65%;
        max-width: 65%;
    }
    .my-account .table span.color5 {
        width: 60px;
        width: 60px;
    }
}
@media screen and (max-width: 440px) {
    .price-table .col-md-6.col-sm-6.col-6.mint {
        -ms-flex: 0 0 68%;
        flex: 0 0 68%;
        max-width: 68%;
    }
    .all-blog .blog-tile {
        height: 500px !important;
    }
}
@media screen and (max-width: 420px) {
    .main-header .text-right.top-links.m-t-5 ul {
        width: 350px;
    }
    .address-tile img.img-fluid {
        display: none;
    }
    .price-table .col-md-6.col-sm-6.col-6.mint {
        -ms-flex: 0 0 70%;
        flex: 0 0 70%;
        max-width: 70%;
    }
    .all-blog .blog-tile {
        height: 500px !important;
    }
    .question .label-info span.color1.font-18.font-weight-600 {
        display: block;
    }
    .question .label-info span.border-vertical {
        display: none !important;
    }
    .money-back .fas {
        right: 10px !important;
        top: 0 !important;
    }
    .buy-lk-footer .common-action-btn {
        margin-top: 3px;
    }
    .coupon-apply-panel input {
        padding: 6px;
        font-size: 12px !important;
    }
    .appli-coupon {
        height: 32px !important;
    }
}
@media screen and (max-width: 408px) {
    .blog-details .blog-tile ul li {
        font-size: 14px;
    }
    .question .ask-content .left-part h4 a.common-action-btn.btn.m-l-20 {
        margin: 10px auto 0 !important;
        text-align: center;
        display: table;
    }
    .buy-lk-footer .buy-fixed span {
        font-size: 12px;
        display: block;
    }
    .buy-lk-footer .col-8 {
        padding: 0;
    }
    .buy-lk-footer .col-4 {
        padding: 0;
    }
    .buy-lk-footer .left-side img {
        width: 20px;
    }
    .buy-lk-footer .common-action-btn {
        margin-top: 1px;
    }
    .payment-selection-list button {
        font-size: 14px !important;
    }
}
@media screen and (max-width: 387px) {
    .guarantee-tile.m-t-20 {
        margin-top: 10px !important;
    }
}
@media screen and (max-width: 380px) {
    .main-header .text-right.top-links.m-t-5 ul {
        width: 300px;
    }
    .font-30.text-uppercase.font-weight-600 {
        font-size: 16px !important;
        margin-top: 25px;
    }
    .talk-advice {
        min-height: 200px;
    }
    .about-legal.question .font-30.text-uppercase.font-weight-600.m-t-140 {
        font-size: 16px !important;
    }
    .about-legal.question .common-action-btn.btn.m-t-140 {
        margin-bottom: 10px;
        margin-top: 10px !important;
    }
    .blog-tile ul li {
        border-right: 0;
        display: block;
    }
    .banner .left-side h2 {
        font-size: 20px;
        line-height: 28px;
    }
    .about-page .left-side h2 {
        font-size: 18px;
    }
    .banner .left-side p {
        font-size: 18px;
        line-height: 24px;
    }
    .all-blog .blog-tile {
        height: 470px !important;
    }
    .mob-navs ul li a img {
        margin-top: 6px;
    }
    .price-table .col-md-6.col-sm-6.col-6.mint {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .buy-lk-footer .common-action-btn {
        margin-top: 0;
    }
}

@media screen and (max-width: 373px) {
    .payment-selection-list button {
        font-size: 11px !important;
        min-height: 60px !important;
    }
    .payment-selection-list button img {
        width: 60px !important;
        height: 20px !important;
    }
}

@media screen and (max-width: 368px) {
    .money-back .fas {
        top: 0 !important;
    }
    .guarantee-tile.m-t-20 {
        margin-top: 3px !important;
    }
}
@media screen and (max-width: 360px) {
    .why-should .recharge-mins .top-price + .d-flex {
        display: block !important;
    }
    .all-blog .blog-tile {
        height: 460px !important;
    }
    .price-table .col-md-6.col-sm-6.col-6.mint {
        -ms-flex: 0 0 80%;
        flex: 0 0 80%;
        max-width: 80%;
    }
    .money-back .fas {
        top: 0 !important;
    }
}
@media screen and (max-width: 359px) {
    .main-header .whatsapp-list li a {
        padding: 5px;
        font-size: 12px;
    }
    .price-offer-block .discountoffer {
        padding: 10px 20px !important;
    }
    .common-action-btn-fontbig,
    .orphan-ctg .common-action-btn {
        padding: 10px;
        font-size: 20px;
    }
    .minutes-tile .common-action-btn .fa,
    .minutes-tile .common-action-btn .fas {
        font-size: 12px;
        vertical-align: 2px;
    }
    .code-area.code-area-price {
        padding: 10px 5px;
    }
    .col-md-6.column-text .minutes-tile .card button {
        padding: 12px 15px;
    }
}
@media screen and (max-width: 345px) {
    .modal.success h4.font-20.font-weight-600.m-b-20 {
        font-size: 14px !important;
    }
    .all-blog .blog-tile {
        height: 460px !important;
    }
    .main-header ul li.m-r-20 {
        margin-right: 5px !important;
    }
    .modal.money-back .modal-header h5 {
        font-size: 16px;
    }
    .money-back {
        margin-left: 0;
        margin-right: 0;
    }
    .top-price span.offertext {
        top: 0;
        height: 65px;
        width: 65px;
    }
    .offertext span.off {
        font-size: 9px;
    }
    .price-table select {
        font-size: 15px;
    }
    .col-md-4.col-sm-4.col-12.mint + .col-md-8.col-sm-8.col-12 {
        padding-right: 0;
    }
}
@media screen and (max-width: 320px) {
    .main-header .text-right.top-links.m-t-5 ul {
        width: 280px;
    }
    .talk-advice {
        min-height: 180px;
    }
    .price-table .col-md-6.col-sm-6.col-6.mint {
        -ms-flex: 0 0 90%;
        flex: 0 0 90%;
        max-width: 90%;
    }
    .mob-navs ul li a img {
        margin-top: 8px;
    }
    .triangle {
        width: 60px;
        height: 60px;
        padding: 9px;
    }
    .triangle:before {
        top: 10px;
    }
    .price-table select {
        font-size: 12px;
    }
}
.payment-selection-list {
    display: table;
    margin: 0 auto;
}
.payment-selection-list .m-r-10 {
    margin-right: 10px;
}
.payment-selection-list button {
    min-height: 70px;
    background: 0 0;
    border: 1px solid #a1a1a1;
    padding: 0 12px;
    font-size: 16px;
    color: #234d94;
    font-weight: 600;
    -webkit-box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03);
    -moz-box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03);
    -ms-box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03);
    -o-box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03);
    box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03);
    outline: 0;
}
.payment-selection-list button img {
    width: 80px;
    height: 27px;
}
