﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  height: 100%;
}
.header-area .navbar {
    padding: 0px;
}
.header-area a {
    color: #333;
}
.header-area a:hover {
    color: #036FB7;
}
.footer {
    width: 100%;
    line-height: 60px; /* Vertically center the text there */
    background-color: #036FB7;
    color:#fff;
    text-align:center;
}
.footer a {
    color: #059FFF;
}
.footer a:hover {
    color: #fff;
}

.page-content {
    padding: 50px 0px;
    min-height: 500px;
}
/*bof login page */

.body-header {
    font-family: Roboto,-apple-system,system-ui,BlinkMacSystemFont,Segoe UI,Helvetica Neue,Arial,sans-serif;
    margin: 0;
}
body {
    width:100%;
    height:100%;
    margin:0px;
    padding:0px;
}
body.login-page {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
}
.login-area {
    background: #0462e5; /* Old browsers */
    background: -moz-linear-gradient(top, #0462e5 0%, #036fb7 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #0462e5 0%,#036fb7 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #0462e5 0%,#036fb7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0462e5', endColorstr='#036fb7',GradientType=0 ); /* IE6-9 */
    display: flex;
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 100%;
}
.login-block {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.3);
    padding: 30px;
    margin: auto;
    max-width: 400px;
}
.login-logo {
    text-align:center;
    padding-bottom:15px;
}
.login-logo img{
    max-width:100px;
}
.login-submit {
    display:flex;
}
.sub-btn {
    margin-left:auto;
}
.login-area .form-control {
    height: 44px;
}
.login-submit {
    padding-top:15px;
}
h2.page-title  {
    font-size:32px;
    color:#333;
    margin-bottom:20px;
}
.form-area label {
    color:#333;
}
.result-area{
    padding-top:30px;
}
.result-area h4{
    color: #333;
    font-size:24px;
    margin-bottom:15px;
}

/*eof login page */


@media only screen and (max-width: 991px) {
    .login-area {
        padding: 30px 15px;
        position: static;
    }
    .page-content {
        padding: 30px 0px;
        min-height: 100px;
    }
}


/*bof Loaing....*/
.loader-block {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0,0,0,0.90);
    display: none;
}

.loader-block.active {
    display: block;
}

.loader-block .spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: 0px;
    margin-top: -20px;
    margin-left: -20px;
}

.spinner {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 100px auto;
    color: #fff;
    font-size: 20px;
}

.double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #333;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0)
    }

    50% {
        transform: scale(0.0);
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}
/*eof Loaing....*/


/*Payment Process*/

.main-wrapper {
    max-width: 1024px;
    margin: 0px auto;
}

.rech-btn, .btn-submit {
    font-size: 14px;
    padding: 10px 30px;
    border-radius: 4px;
    background-color: #236bce;
    margin-top: 15px;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: .35s;
    display: inline-block;
    text-align: center;
}

    .rech-btn:hover,
    .rech-btn:focus,
    .btn-submit:hover,
    .btn-submit:focus {
        background-color: #517fff;
        text-decoration: none;
        color: #fff;
    }

.btn-submit {
    padding: 10px 20px;
}

.title-area {
    background-color: #236bce;
    color: #fff;
    padding: 10px 15px;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.payment-area {
    padding: 0px 15px 15px;
}

.recharge-status {
    display: flex;
    font-size: 18px;
    padding: 10px 0px;
    justify-content: space-between;
}

    .recharge-status span {
        line-height: 26px;
        width: 49%;
        color: #777777;
        position: relative;
        border: 1px solid #EBEBEB;
        box-shadow: 1px 1px 4px 0px rgba(200,200,200,0.2);
        border-radius: 5px;
        padding: 5px 15px;
        font-size: 16px;
    }

    .recharge-status strong {
        font-weight: 600;
        color: #202020;
        font-size: 20px;
    }

    .recharge-status span:last-child {
        text-align: right;
    }

.recharge-form-block {
    background-color: #F3F3F3;
    color: #202020;
    padding: 30px;
    border-radius: 5px;
}

    .recharge-form-block label {
        font-weight: 500;
        font-size: 16px;
        margin-bottom: 5px;
    }

    .recharge-form-block .form-control {
        height: 46px;
    }

.minRecharge-area {
    display: flex;
    padding-top: 5px;
}

.minRecharge {
    color: #517fff;
    font-size: 13px;
    text-align: right;
    margin-left: auto;
}

.recharge-form-block .form-group {
    margin-bottom: 20px;
}

    .recharge-form-block .form-group:last-child {
        margin-bottom: 0px;
    }

.rechBtn-area {
    display: flex;
    align-items: center;
}

    .rechBtn-area .rechBtn-Block {
        margin-left: auto;
    }

        .rechBtn-area .rechBtn-Block .rech-btn {
            margin-top: 0px;
        }

.recharge-help-btn {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}

    .recharge-help-btn .rech-btn {
        background-color: #2F2E54;
        width: 49%;
        font-size: 18px;
        padding: 10px 15px;
    }

        .recharge-help-btn .rech-btn:hover,
        .recharge-help-btn .rech-btn:focus {
            background-color: #236bce;
        }


.loader-block {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0,0,0,0.55);
    display: none;
}

    .loader-block.active {
        display: block;
    }

    .loader-block .spinner {
        position: absolute;
        left: 50%;
        top: 50%;
        margin: 0px;
        margin-top: -20px;
        margin-left: -20px;
    }

.spinner {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 100px auto;
    color: #fff;
    font-size: 20px;
}

.double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #333;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0)
    }

    50% {
        transform: scale(0.0);
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

/* Home Page Checkbox*/

.recAmount-label {
    position: relative;
    padding: 0 0 0 24px;
}

input[type="checkbox"].recAmount-input + label.recAmount-label::before {
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 8px;
    content: "";
    background-size: 90% auto;
    border: 1px solid #236bce;
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
}

input[type="checkbox"].recAmount-input:checked + label.recAmount-label::before {
    background-image: url(assets/images/checks-white.svg);
    background-color: #236bce;
}


/* Attractive Page */

.callRate-inner {
    padding: 20px 15px;
}

.attractive-call-area {
    text-align: center;
}

.attractive-call-icon {
    display: inline-block;
    background-color: #f1f1f1;
    height: 166px;
    width: 166px;
    line-height: 166px;
    border-radius: 50%;
    margin-bottom: 50px;
}

    .attractive-call-icon img {
        max-width: 110px;
    }

.attractive-call-area h1 {
    color: #236bce;
    margin-bottom: 30px;
}


/* Call Rates Page */

.callRates-area {
    background-color: #fafafa;
}

.callRates-top {
    padding-bottom: 5px;
    border-bottom: 1px solid #e3e3e3;
}

.callRates-block {
    margin-top: 30px;
}

    .callRates-block h3 {
        font-size: 24px;
        color: #294f56;
    }

.callRates-item {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.callRates-item-img img {
    width: 100%;
    border: 1px solid #ccc;
}

.callRates-item-img {
    width: 70px;
    flex-shrink: 0;
    margin-right: 20px;
}

.callRates-item-tk h6 img {
    width: 20px;
    margin: -3px 3px 0 0;
}

.callRates-item-tk {
    margin-right: auto;
}

.callRates-item-time h6 img {
    width: 30px;
}

/* call Settings Page */

.callSettings-top {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #f0eded;
    padding-bottom: 15px;
}

.callSettings-img {
    height: 80px;
    width: 80px;
    border: 4px solid #eff2fb;
    border-radius: 50%;
    overflow: hidden;
    background-color: #eff2fb;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-shrink: 0;
    margin-right: 20px;
}

    .callSettings-img img {
        max-width: 62px;
    }

.callSettings-txt h5 {
    margin: 0;
    color: #1e1e1e;
}

.callSettings-txt p:last-child {
    margin: 0;
}

.callSettings-item {
    display: flex;
    margin-top: 15px;
}

.callSettings-icon {
    width: 32px;
    flex-shrink: 0;
    margin-right: 20px;
}

    .callSettings-icon img {
        width: 100%;
    }

.callSettings-item-txt {
    border-bottom: 1px solid #f0eded;
    width: 100%;
    padding-top: 7px;
}

    .callSettings-item-txt h6 {
        font-weight: bold;
        color: #1e1e1e;
    }

    .callSettings-item-txt p {
        line-height: 1.3;
    }

/* My Balance Page */

.myBalance-top {
    display: flex;
    justify-content: space-between;
    color: #202020;
}

    .myBalance-top h4 {
        margin: 0 5px 0 0;
    }

    .myBalance-top span {
        font-size: 1.5rem;
        color: #6c6c6c;
        line-height: 1.2;
    }

.balance-btn {
    width: 100%;
    max-width: 518px;
    border-radius: 30px;
    background-color: #236bce;
    font-weight: 600;
    padding: 14px 25px;
}

.myBalance-details .balance-btn {
    margin: 15px auto 20px;
}

.myBalance-details ul {
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
}

    .myBalance-details ul li {
        margin-top: 20px;
    }

        .myBalance-details ul li a {
            font-size: 1.5rem;
            color: #202020;
            transition: .3s;
        }

            .myBalance-details ul li a:hover {
                color: #1a909a;
                text-decoration: none;
            }


/* Call List Page */

.callList-item {
    border-bottom: 1px solid #e7e5e5;
    padding-bottom: 14px;
    margin-bottom: 14px;
}

.callList-item-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.callList-item-value {
    text-align: right;
}

.callList-item-top h4 {
    color: #202020;
    margin: 0 0 2px;
}

.callList-item-country {
    display: flex;
}

    .callList-item-country span {
        width: 50px;
        flex-shrink: 0;
        margin-right: 15px;
    }

    .callList-item-country p:last-child,
    .callList-item-top p:last-child {
        margin: 0;
    }

    .callList-item-country p span {
        text-transform: uppercase;
    }

/* Credit Page */

.credit-details {
    display: flex;
    margin-top: 20px;
}

.credit-icon {
    height: 65px;
    width: 65px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #dae6f9;
    flex-shrink: 0;
    margin-right: 20px;
    line-height: 65px;
    text-align: center;
}

    .credit-icon img {
        max-width: 40px;
    }

/* Privacy Page */

.privacy-check-area {
    display: flex;
    /*! align-items: center; */
    margin: 0 0 25px;
}

    .privacy-check-area h4 {
        margin: 0;
        color: #202020;
    }

.privacy-check-txt {
    padding-right: 15px;
}

.privacy-check {
    width: 30px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 8px;
    border-radius: 15px;
    position: relative;
    display: inline-block;
}

.nidRegistration .btn-submit {
    padding: 8px 12px;
    font-size: 13px;
}

.privacy-check input {
    opacity: 0;
    width: 0;
    height: 0;
}

.privacy-check .switcher {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: .4s;
    transition: .4s;
    width: 30px;
    height: 14px;
    flex-shrink: 0;
    margin-right: 10px;
    border-radius: 15px;
    margin-left: 3px;
    background-color: #DEDEDE;
}

    .privacy-check .switcher::before {
        content: "";
        -webkit-transition: .4s;
        transition: .4s;
        height: 20px;
        width: 20px;
        display: inline-block;
        border: 0;
        line-height: 18px;
        border-radius: 50%;
        background-color: #888888;
        position: absolute;
        left: -3px;
        top: -3px;
        padding: 0;
        box-shadow: 0 0 2px #CACACA;
    }

.privacy-check input:checked + .switcher {
    background-color: #BFD9FF;
}

    .privacy-check input:checked + .switcher::before {
        -webkit-transform: translateX(16px);
        -ms-transform: translateX(16px);
        transform: translateX(16px);
        background-color: #0056CD;
    }

.langCheckbox-label p:last-child,
.privacy-check-txt p:last-child {
    margin: 0;
}

.ml-auto {
    margin-left: auto;
}


/* Language Page */

.language-block {
    position: relative;
}

    .language-block:not(:first-child) {
        margin: 24px 0 0;
    }

.langCheckbox-label h4 {
    color: #202020;
    margin: 0;
}

input[type="checkbox"].recAmount-input,
input[type="radio"].langCheckbox-input {
    position: absolute;
    left: 15px;
    top: 15px;
    opacity: 0;
    height: 0;
    width: 0;
}

.langCheckbox-label {
    position: relative;
    padding: 0 80px 5px 0;
    width: 100%;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}

input[type="radio"].langCheckbox-input + label.langCheckbox-label::before {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 40px;
    top: 7px;
    content: "";
    background-size: 100% auto;
}

input[type="radio"].langCheckbox-input:checked + label.langCheckbox-label::before {
    background-image: url(assets/images/check.svg);
}

.payment-top {
    background-color: #11245e;
    color: #fff;
    padding: 15px;
    border-bottom: 8px solid #034ea1;
    border-radius: 5px 5px 0px 0px;
    margin-top: 15px;
}

    .payment-top h5 {
        margin: 0;
        text-align: right;
    }

.payment-items {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 -15px;
}

    .payment-items > div {
        width: 25%;
        margin: 15px 0;
        padding: 0 15px;
        cursor: pointer;
    }

    .payment-items span {
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 5px;
        overflow: hidden;
        height: 150px;
        padding: 20px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #fff;
        -webkit-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
    }

    .payment-items > div:hover span {
        box-shadow: 2px 4px 6px 0px rgba(200,200,200,0.6);
    }

    .payment-items span img {
        max-width: 100%;
    }

/*popup*/
.blackOverlayPopup {
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 1001;
    opacity: .80;
    filter: alpha(opacity=80);
}

.popupContentCircle {
    display: none;
    position: absolute;
    top: 30%;
    left: 10%;
    width: 75%;
    height: auto;
    padding: 16px;
    /*border: 10px solid;
    border-color: #2F949B;
    background-color: #FCFCFC;*/
    z-index: 1002;
    overflow: auto;
    color: #FFFFFF;
}

.loadingImage {
    width: 30%;
    display: block;
    margin: auto;
}

/*Extension DIV Style by Isruk */
@media only screen and (max-width: 600px) {
    #ExtensionNoDiv {
        margin-left: -18px;
    }
}
/*popup*/

@media (min-width:100px) and (max-width: 991px) {
    .payment-items span {
        height: 130px;
    }

    h1, h2 {
        font-size: 22px;
        line-height: 1.1;
    }

    h3, h4, h5, .callRates-block h3, .myBalance-top span, .myBalance-details ul li a {
        font-size: 18px;
        line-height: 1.2;
    }

    p, h6 {
        font-size: 16px;
        line-height: 1.4;
    }

    .attractive-call-icon {
        height: 120px;
        width: 120px;
        line-height: 120px;
        margin-bottom: 30px;
    }

        .attractive-call-icon img {
            max-width: 70px;
        }

    .attractive-call-area h1 {
        margin-bottom: 16px;
    }

    .langCheckbox-label {
        padding: 0 80px 10px 0;
    }

    .balance-btn {
        max-width: 400px;
    }
}

@media (min-width:100px) and (max-width: 640px) {
    .recharge-help-btn {
        flex-wrap: wrap;
    }

        .recharge-help-btn .rech-btn {
            width: 100%;
        }

    .payment-items > div {
        width: 33.33%;
    }

    .payment-items span {
        height: 100px;
    }

    .balance-btn {
        max-width: 280px;
    }
}

@media (min-width:100px) and (max-width: 480px) {
    h1, h2, .callRates-block h3 {
        font-size: 18px;
        line-height: 1.1;
    }

    h3, h4, h5, .myBalance-top span, .myBalance-details ul li a {
        font-size: 16px;
        line-height: 1.2;
    }

    p, h6 {
        font-size: 14px;
        line-height: 1.4;
    }

    .agreement-check img {
        max-width: 80px;
    }

    .recharge-form-block {
        padding: 15px;
    }

    .minRecharge-area {
        flex-direction: column;
    }

        .minRecharge-area .checkbox-Block {
            order: 2;
        }

    .minRecharge {
        margin-left: 0px;
        margin-bottom: 5px;
        text-align: left;
    }

    .rechBtn-area .rechBtn-Block {
        margin: 0px auto;
    }

    .recharge-status strong {
        font-size: 18px;
    }

    .payment-items span {
        padding: 10px;
    }

    .attractive-call-icon {
        height: 90px;
        width: 90px;
        line-height: 90px;
        margin-bottom: 20px;
    }

        .attractive-call-icon img {
            max-width: 50px;
        }

    .callRates-item-img {
        width: 60px;
        margin-right: 15px;
    }

    .attractive-call-area h1 {
        margin-bottom: 15px;
    }

    .balance-btn {
        max-width: 110px;
        padding: 8px;
        font-size: 12px;
    }

    .myBalance-details ul li {
        margin-top: 4px;
    }

    .btn-submit {
        padding: 6px 12px;
        font-size: 12px;
        margin-top: 0;
    }

    .nidRegistration .privacy-check-area .privacy-check {
        margin-top: 3px;
    }
}

@media (min-width:100px) and (max-width: 380px) {
    p, h6 {
        font-size: 12px;
    }

    .recharge-status {
        flex-direction: column;
        padding: 5px 0px;
    }

        .recharge-status span {
            width: 100%;
            margin: 5px 0px;
        }

            .recharge-status span:last-child {
                text-align: left;
            }

    .callList-item-country span, .callRates-item-img {
        width: 40px;
        margin-right: 10px;
    }

    .callRates-item-tk h6 img {
        width: 15px;
    }

    .callRates-item-tk h5 {
        margin: 0 0 2px;
    }

    .callRates-item-time h6 img {
        width: 20px;
    }

    .callSettings-img {
        height: 60px;
        width: 60px;
        margin-right: 15px;
    }

        .callSettings-img img {
            max-width: 46px;
        }

    .credit-icon {
        height: 50px;
        width: 50px;
        margin-right: 15px;
        line-height: 50px;
    }

        .credit-icon img {
            max-width: 24px;
        }

    .language-block:not(:first-child) {
        margin: 10px 0 0;
    }

    .langCheckbox-label {
        padding: 0 40px 10px 0;
    }

    input[type="radio"].langCheckbox-input + label.langCheckbox-label::before {
        width: 24px;
        height: 24px;
        right: 7px;
    }

    .nidRegistration .privacy-check-area {
        flex-direction: column;
        padding-right: 70px;
        position: relative;
    }

    .nidRegistration .privacy-check-txt {
        padding-right: 0;
        margin: 0 0 5px;
    }

    .nidRegistration .btn-submit {
        padding: 6px 12px;
        font-size: 12px;
        position: absolute;
        right: 0;
        top: 0;
    }

    
}

.tdstyle {
text-align: right;
}

.custom-file-upload {
   /* border: 0px solid #ccc;
    background-color: #024da1;*/
    color: #fff;
    display: inline-block;
    padding: 8px 15px;
    cursor: pointer;
}


    .custom-file-upload:active {
        background-color: #024da1;
    }

.error {
    color: red;
    padding: 10px 0px 0px 20px;
    font-size: 20px;
    margin-bottom: 0px;
}

.success {
    color: rgb(3, 111, 183);
    padding: 10px 0px 0px 20px;
    font-size: 20px;
    margin-bottom: 0px;
}

.migration-img-thumbnail {
    padding: .25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: .25rem;
    max-width: 100%;
    height: 100px;
}

#ShowActiveCalls table tr td {
    padding: 10px;
}

    #ShowActiveCalls table tr td.card-header {
        font-weight: bold;
        width: 60%;
    }