@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
body {
    font-family: 'Montserrat', sans-serif;
}

.errormsg .sb-msg {
    color: red;
    text-shadow: 0 0 black;
}

.body-container {
    margin-top: 70px;
}

.payment-wrap {
    background-color: #FAFAFA;
}

.payment-wrapper {
    display: grid;
    grid-template-columns: minmax(calc(100% - 450px), 100%) 420px;
    column-gap: 30px;
    align-items: flex-start;
    min-height: calc(100dvh - 310px);
}

.payment-wrapper .leftbar {
    /* width: calc(100% - 450px);
    float: left; */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.payment-wrapper .leftbar .payment-block-wrap {
    padding-top: 6rem;
}

.payment-block-wrap .payment-header {
    border-bottom: 1px solid #DBDBDB;
    padding: 0 0 20px;
}

.payment-block-wrap .payment-header h2 {
    margin: 0;
    font-size: 34px;
    font-weight: 700;
    color: #252B42;
}

.payment-block-wrap .payment-methods-check {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin: 25px 0 20px;
}

.payment-methods-check .method-card {
    width: 330px;
    height: 80px;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid #596289;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-methods-check .method-card:hover {
    border: 1px solid #E35D11;
}

.payment-methods-check .custom-indicator {
    position: relative;
}

.payment-methods-check .method-card .payment-tittle {
    position: absolute;
    top: -10px;
    left: 11px;
    background: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 0px 6px;
}

.payment-methods-check .method-card.active {
    border: 1px solid #E35D11;
}


/* ===========================
 custom block payment Start leftbar
=========================== */

.payment-block-wrap .custom-block {
    background-color: #fff;
    border: 1px solid #DBDBDB;
    border-radius: 4px;
    margin-bottom: 35px;
}

.custom-block .custom-block-heade {
    background-color: #F5F5F5;
    border-radius: 4px 4px 0 0;
    min-height: 60px;
    display: flex;
    align-items: center;
    padding: 20px;
}

.custom-block .custom-block-heade span {
    color: #252B42;
    font-size: 16px;
    font-weight: 600;
}

.custom-block .form-block {
    padding: 30px 95px 30px;
}

.custom-block .form-block .form-control {
    font-size: 14px;
    color: #969696;
    height: 44px;
    border-radius: 4px;
    border-color: #DBDBDB;
    padding: 0 25px 0px 15px;
}

.custom-block .form-block label {
    color: #252B42;
    font-size: 14px;
    font-weight: 500;
}

.hr-line {
    background-color: #DBDBDB;
    height: 1px;
    float: left;
    width: 100%;
    margin: 10px 0 30px;
}

.hr-line.full-width {
    width: calc(100% + 120px);
    left: -60px;
    position: relative;
}

.asterisk {
    font-weight: 500;
    color: #ff0000;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.input-date {
    background: url(../images/calendar_bg.svg) no-repeat right 10px center/14px;
}


/* payment button Start*/

.payment-action-btn {
    text-align: center;
    margin-top: 10px;
}

.payment-action-btn .btn {
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    padding: 17px 45px;
    outline: none !important;
    border: none;
    text-transform: capitalize;
}

.payment-action-btn .btn.btn-anchor {
    font-weight: 600;
}

.payment-action-btn .btn.btn-anchor>svg {
    margin: 0 0 -3px;
}

.payment-action-btn .money-back-tittle {
    color: #252B42;
    font-size: 13px;
    font-weight: 400;
    margin: 5px 0 0 0;
}


/* payment button End*/

.form-control:hover,
.form-control:focus {
    border-color: #E35D11 !important;
    outline: 0;
    box-shadow: 0px 0px 0px 3px rgb(216 94 26 / 25%);
}

.form-control:focus {
    border-color: #E35D11 !important;
    box-shadow: 0px 0px 0px 3px rgb(216 94 26 / 25%);
}

.btn-primary {
    background-color: #E35D11;
    color: #FFF;
    box-shadow: none;
    outline: none !important;
    border: none;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
    background-color: #c54c07 !important;
    color: #FFF;
    border: none;
}

.btn-blue {
    background-color: #3B7BBF;
    color: #FFF;
    box-shadow: none;
    outline: none !important;
    border: none;
}

.btn-blue:hover,
.btn-blue:focus,
.btn-blue:active,
.btn-blue:active:focus {
    background-color: #2b629c !important;
    color: #FFF;
    border: none;
}

.btn-primary.disabled {
    background-color: #D9D9D9;
    color: #888A8B;
    cursor: not-allowed;
    opacity: 1;
    -webkit-box-shadow: none;
    box-shadow: none;
    pointer-events: none;
}
.btn-primary.disabled.focus,
.btn-primary.disabled:focus,
.btn-primary.disabled:hover,
.btn-primary[disabled].focus,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary.focus,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary:hover {
    background-color: #D9D9D9 !important;
    border-color: none !important;
}

.mt-0 {
    margin-top: 0;
}

.border-top {
    border-top: 1px solid #DBDBDB;
    padding: 30px 0 0;
}


/* ===========================
 Rightbar Start
=========================== */

.payment-wrapper .rightbar {
    /* width: 420px;
    float: right; */
    background-color: #F5F5F5;
    height: 100%;
    padding: 6rem 20px;
}

.payment-wrapper .rightbar .order-summary {}

.order-summary .summary-header {
    margin: 0 0 20px;
}

.order-summary .summary-header h2 {
    color: #252B42;
    font-size: 34px;
    font-weight: 700;
    margin: 0;
}

.order-summary .payment-meta {
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.08);
    min-height: 80px;
    padding: 15px;
    display: flex;
    align-items: center;
    margin: 0 0 25px;
}

.order-summary .payment-meta .left {
    flex: 1;
}

.order-summary .payment-meta .left span {
    font-size: 16px;
    font-weight: 600;
    color: #3A4367;
}

.order-summary .payment-meta .left p {
    font-size: 14px;
    font-weight: 500;
    color: #596289;
    margin: 0;
}

.order-summary .payment-meta .right {
    border-left: 1px solid #D9D9D9;
    padding: 0 0 0 20px;
    position: relative;
}

.order-summary .payment-meta .right span {
    font-size: 30px;
    font-weight: 500;
    color: #252B42;
}

.order-summary .payment-meta .right span small {
    color: #252B42;
    font-size: 16px;
    font-weight: 500;
    position: absolute;
    left: 8px;
    top: 7px;
}

.order-summary .summary-panel {
    background-color: #fff;
    border-radius: 4px;
    padding: 20px 15px;
    margin: 0 0 10px;
}

.summary-panel .promo-wrapper {
    margin: 0 0 20px;
}

.summary-panel .promo-wrapper label {
    color: #252B42;
    font-size: 14px;
    font-weight: 500;
}

.summary-panel .promo-wrapper .input-group {
    display: flex;
    gap: 10px;
}

.summary-panel .promo-wrapper .input-group .form-control {
    height: 44px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.summary-panel .summary-order-body {}

.summary-panel .summary-order-body ul {
    margin: 0;
    padding: 0;
}

.summary-panel .summary-order-body ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 18px;
}

.summary-panel .summary-order-body ul li span {
    color: #596289;
    font-size: 16px;
    font-weight: 400;
}

.summary-panel .summary-order-body ul li p {
    color: #596289;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.summary-panel .summary-order-body ul li.li-total span {
    color: #252B42;
    font-size: 16px;
    font-weight: 600;
}

.summary-panel .summary-order-body ul li.li-total p {
    color: #252B42;
    font-size: 20px;
    font-weight: 600;
}

.summary-panel .summary-order-body ul li:last-child {
    margin: 0;
}

.chat-wrap {
    text-align: center;
    margin-top: 10px;
}

.chat-wrap span {
    color: #3A4367;
    font-size: 13px;
    font-weight: 400;
}

.chat-wrap span a {
    color: #E35D11;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}


/* payment data none */
#paypal-method {
    display: none;
}


/* ===========================
Secure Payment Badge Style
=========================== */
.secure-badge {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    border: 1px solid #dbdbdb;
    background-color: #f5f5f5;
    border-radius: 4px 4px 0 0;
    padding: 44px;
    margin-bottom: 35px;
  }
  
  .colImages {
    align-items: center;
    gap: 8px;
  }

  .moneyBackText {
    width: 100%;
    text-align: center;
    padding: 14px;
    margin: 0px;
    color: #e35d11;
    font-weight: 700;
  }
  
  .badge-heading {
    border-right: 1px solid #dbdbdb;
    padding-right: 20px;
    font-size: 19px;
    font-weight: 600;
  }


/* ===========================
Payment successful Modal Style
=========================== */

.custom-modal .close {
    background-color: #e8e8e8;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    color: #3A4367;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.custom-modal .modal-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    /* min-height: 65px; */
    border-radius: 4px 4px 0 0;
    border: none;
    padding: 10px 10px;
}

.payment-successful {
    text-align: center;
    margin: 0 0 25px;
}

.payment-successful .payment-check {
    margin-bottom: 15px;
}

.payment-successful-wrap span {
    color: #252B42;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 5px;
    display: block;
}

.payment-successful-wrap p {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.custom-modal .modal-dialog.w-530 {
    width: 530px !important;
}


/*====================================
	Custom checkbox & Radio  
======================================*/

.custom-control a {
    color: #000;
    text-decoration: underline;
    display: inline-block;
}

.custom-control {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    position: relative;
    display: block;
    margin-bottom: 10px;
    padding-left: 20px;
    cursor: pointer;
    line-height: 20px;
}

.custom-control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    width: auto;
}

.custom-indicator {
    position: absolute;
    top: 1px;
    left: 0;
    width: 20px;
    height: 20px;
    background: #FFF;
    border: 1px solid #888A8B;
    border-radius: 3px;
}

.custom-radio strong {
    color: #000;
}

.custom-radio .custom-indicator {
    border-radius: 50%;
}


/* Hover and focus states */

.custom-control:hover input~.custom-indicator,
.custom-control input:focus~.custom-indicator {
    border-color: #E35D11;
    /* box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.10); */
}


/* Checked state */

.custom-control input:checked~.custom-indicator {
    border: 1px solid #E35D11;
    background-color: #E35D11;
}


/* Hover state whilst checked */

.custom-control:hover input:not([disabled]):checked~.custom-indicator,
.custom-control input:checked:focus~.custom-indicator {
    outline: 0;
    /* box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25); */
}


/* Disabled state */

.custom-control input:disabled~.custom-indicator {
    pointer-events: none;
    background: #e6e6e6;
    border-color: #999;
    opacity: .6;
}


/* Check mark */

.custom-indicator:after {
    position: absolute;
    display: none;
    content: '';
}


/* Show check mark */

.custom-control input:checked~.custom-indicator:after {
    display: block;
}


/* Checkbox tick */

.custom-checkbox .custom-indicator:after {
    top: 1px;
    left: 5px;
    width: 6px;
    height: 10px;
    transform: rotate(45deg);
    border: solid #FFF;
    border-width: 0 2px 2px 0;
}


/* Disabled tick colour */

.custom-checkbox input:disabled~.custom-indicator:after {
    border-color: #FFF;
}


/* Radio button inner circle */

.custom-radio .custom-indicator:after {
    top: 3px;
    left: 3px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #FFF;
}


/* Disabled circle colour */

.custom-radio input:disabled~.custom-indicator:after {
    background: #FFF;
}

.sb-msg {
    margin: 0 0 20px;
}
.sb-msg span {
    color: red;
    font-weight: 600;
}

#braintree-paypal-loggedin {
    max-width: 100% !important;
    margin-bottom: 20px !important;
}

a#braintree-paypal-button {
    margin: 0 auto;
    margin-bottom: 20px;
}
.pricing-title {
    padding: 15px 0;
    background-color: #f9f9f9;
    border-radius: 3px 3px 0 0;
    text-shadow: 1px 1px 1px #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .pricing-title h3 {
    margin: 0;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: bold;
    text-transform: uppercase;
    color: #555;
  }
  
  .pricing-title span {
    display: block;
    color: #999;
    font-weight: 300;
    font-size: 14px;
    margin-top: 3px;
    text-transform: uppercase;
  }
  
  .pricing-price {
    position: relative;
    padding: 25px 0;
    color: #333;
    font-weight: 300;
    font-size: 64px;
    line-height: 1;
  }
  
  .pricing-price span {
    display: inline-block;
    vertical-align: top;
    margin: 7px 3px 0 0;
    font-size: 28px;
    font-weight: normal;
  }
  
  .pricing-features {
    border-bottom: 1px solid rgba(0, 0, 0, 0.075);
    background-color: #fff;
    border-radius: 4px;
    padding: 20px 15px;
  }
  
  .pricing-features ul {
    padding: 10px 0 0 25px;
  }
  
  .pricing-features ul li {
    padding: 0.3em 0px;
    list-style-type: disc !important;
  }
  
  .feature-title{
      font-size: 28px;
      font-weight: 600;
  }