
.invoice-container {
    background-color: #ffffffd6;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}
.company-logo img {
    object-fit: contain;
    height: auto;
}

.company-logo {
    max-width: 150px;
}
.invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 20px;
    margin-bottom: 20px;
    background: transparent;
    margin: 0px;
    gap: 30px;
}

.invoice-title h1 {
    font-size: 28px;
    color: #008000;
    margin: 0;
}

.invoice-title span {
    color: #008000;
}

.company-logo img {
    height: 50px;
}

.invoice-details {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #f1f1f1;
}

.from-section, .to-section, .invoice-info {
    width: 30%;
}

.invoice-summary {
    padding: 20px 20px 0;
}

.invoice-summary h2 {
    font-size: 20px;
    color: #d1272b;
    margin: 0;
    margin-bottom: 20px;
}

.invoice-summary p {
    font-size: 14px;
    color: #555;
}

.invoice-items table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0px;
    border-radius: 5px;
    overflow: hidden;
}

.invoice-items th, .invoice-items td {
    padding: 20px;
    text-align: left;
}

.invoice-items th {
    background-color: #230607;
    color: #fff;
}

.invoice-items td {
    background-color: #f3f3f3;
}

.invoice-footer {
    text-align: center;
    font-size: 12px;
    color: #555;
    padding: 20px;
    border: none;
}

@media (max-width: 768px) {
    .invoice-details {
        flex-direction: column;
    }

    .from-section, .to-section, .invoice-info {
        width: 100%;
        margin-bottom: 20px;
    }
}


.form-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    position: relative;
}

.payment-methods {
    display: flex;
    justify-content: space-between;
    margin-top: 0px;
    flex-direction: column;
    gap: 15px;
}
.payment-methods div{
    width:100%;
    flex:1;
}
.method {
    background-color: #eaeaea;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px;
    flex: 1;
    margin-right: 5px;
}

.method:last-child {
    margin-right: 0;
}

.method.active {
    background-color: #007bff;
    color: #fff;
}

.notification {
    background-color: #f2dede;
    border: 1px solid #f2dede;
    border-radius: 5px;
    color: #155724;
    padding: 10px;
    margin-bottom: 20px;
    text-align: center;
}
.notification p {
    font-size: 14px;
}
.form-container form {
    display: flex;
    flex-direction: column;
}
.form-container form h3 {
    font-size: 22px;
    margin-bottom: 15px;
}
.form-container label {
    font-weight: 500;
    font-size: 14px;
    color: #1b1b1b;
    margin-bottom: 15px !important;
    display: block;
}

.form-container .styled_input {
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    padding: 15px 10px;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
    background: #f7f7f7;
}

.expiration-cvv {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.expiration-fields {
    display: flex;
    justify-content: space-between;
}
.expiration {
    flex: 1;
}

.cvv {
    flex: 1;
}
.expiration-fields input {
    width: 48%;
}

.confirm-btn {
    background-color: #d1272b;
    box-shadow: 0px 4px 8px #d1272b9e;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    padding: 15px;
    font-size: 16px;
    width: 100%;
}

.confirm-btn:hover {
    background-color: #d1272b;
}


.lds-roller,
.lds-roller div,
.lds-roller div:after {
  box-sizing: border-box;
}
.lds-roller {
  display: none;
  position: relative;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d1272b;
  box-shadow: 0 0 2px #d1272b;
  margin: -3.6px 0 0 -3.6px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 62.62742px;
  left: 62.62742px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 67.71281px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 70.90963px;
  left: 48.28221px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 70.90963px;
  left: 31.71779px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 67.71281px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 62.62742px;
  left: 17.37258px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12.28719px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.payment_details {
    display: flex;
    font-size: 16px;
    gap: 15px;
    font-weight: 600;
    color: #585858;
    margin: 0px;
    width: 100%;
    align-items: center;
}

.payment_details strong {
    color: #d1272b;
    font-size: 18px;
}
.checkout_wrapper {
    display: flex;
    gap: 30px;
    flex-flow: wrap-reverse;
    padding: 0px;
    /* flex-direction: column-reverse; */
}

.checkout_col {
    flex: 1;
}

.checkout_col_main {
    flex: 1;
    max-width: 500px;
    padding: 0px;
}

.checkout_wrapper .heading {
    text-transform: uppercase;
    font-size: clamp(1.625rem, 1.0508rem + 2.4176vw, 4.375rem);
}
.checkout_wrapper .caption {
    font-size: clamp(1rem, 0.8173rem + 0.7692vw, 1.875rem);
    text-transform: uppercase;
}
.checkout_wrapper .heading strong{
    text-transform: uppercase;
}
.divided {
    display: flex;
    margin: 20px 0;
    align-items: center;
    justify-content: center;
    position: relative;
}

.divided:before {
    content: "OR";
    background: #fff;
    z-index: 2;
    padding: 0 10px;
    font-size: 14px;
    font-weight: 500;
    color: #4b4b4b;
}

.divided:after {
    position: absolute;
    width: 100%;
    height: 1.5px;
    background: #f1f1f1;
    content: "";
    z-index: 1;
    left: 0px;
    right: 0px;
}

.failed_action {
    border-radius: 10px;
    max-width: 500px;
    padding: 20px;
    margin: 0 auto;
    background-color: #ffffffa8;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.failed_action .icon {
    font-size: 50px;
    color: #000;
    margin-bottom: 10px;
    width: 100px;
    height: 100px;
    margin: 10px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.failed_action .icon svg {
    width: 100%;
    height: 100%;
    flex: 1;
}
.failed_action h1 {
    font-size: 24px;
    color: #000;
    margin-bottom: 10px;
}

.failed_action p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.failed_action .update_button {
    background-color: #d1272b;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 20px;
}

.failed_action .update_button:hover {
    background-color: #333;
}

.failed_action .support {
    font-size: 14px;
    color: #555;
}

.failed_action .support a {
    color: #d1272b;
    text-decoration: none !important;
}

.failed_action .support a:hover {
    text-decoration: underline;
}
.payment-form {
    flex: 0 0 180px;
}

.pay_btn {
    background: #d1272b;
    border: none;
}

.pay_btn svg {
    stroke: #fff;
}

.pay_btn .txt {
    color: #fff;
}
.invoice-items {
    padding: 30px 20px;
    border: none;
}

.invoice-details > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.invoice-details strong {
    color: #d1272b;
}

.invoice-details p a {
    color: #d1272b;
    text-transform: capitalize;
}

.invoice-details p {
    color: #292929;
    line-height: 1.5;
    font-size: 15px;
}
@media(max-width:768px){
    .checkout_wrapper {
    flex-direction: column;
    gap: 10px;
}
.checkout_col_main {
    width: 100%;
    max-width: 100%;
}
 .payment_details strong {
    font-size: 16px;
}
.payment_details {
    font-size: 14px;
    margin-bottom: 10px;
}
.form-container {
    padding: 15px;
}
.form-container label {
    font-size: 12px;
    margin-bottom: 10px !important;
}
.form-container .styled_input {
    font-size: 13px;
    padding: 10px 10px;
}

.confirm-btn {
    padding: 12px 15px;
    font-size: 13px !important;
}
}


.panel.with-nav-tabs .panel-heading{
    padding: 5px 5px 0 5px;
}
.panel.with-nav-tabs .nav-tabs{
	border-bottom: none;
}
.panel.with-nav-tabs .nav-justified{
	margin-bottom: -1px;
}
/********************************************************************/
/*** PANEL DEFAULT ***/
.with-nav-tabs.panel-default .nav-tabs > li > a,
.with-nav-tabs.panel-default .nav-tabs > li > a:hover,
.with-nav-tabs.panel-default .nav-tabs > li > a:focus {
    color: #777;
}
.with-nav-tabs.panel-default .nav-tabs > .open > a,
.with-nav-tabs.panel-default .nav-tabs > .open > a:hover,
.with-nav-tabs.panel-default .nav-tabs > .open > a:focus,
.with-nav-tabs.panel-default .nav-tabs > li > a:hover,
.with-nav-tabs.panel-default .nav-tabs > li > a:focus {
    color: #777;
	background-color: #ddd;
	border-color: transparent;
}
.with-nav-tabs.panel-default .nav-tabs > li.active > a,
.with-nav-tabs.panel-default .nav-tabs > li.active > a:hover,
.with-nav-tabs.panel-default .nav-tabs > li.active > a:focus {
	color: #555;
	background-color: #fff;
	border-color: #ddd;
	border-bottom-color: transparent;
}
.with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu {
    background-color: #f5f5f5;
    border-color: #ddd;
}
.with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu > li > a {
    color: #777;   
}
.with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu > li > a:hover,
.with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu > li > a:focus {
    background-color: #ddd;
}
.with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu > .active > a,
.with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu > .active > a:hover,
.with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #555;
}
/********************************************************************/
/*** PANEL PRIMARY ***/
.with-nav-tabs.panel-primary .nav-tabs > li > a,
.with-nav-tabs.panel-primary .nav-tabs > li > a:hover,
.with-nav-tabs.panel-primary .nav-tabs > li > a:focus {
    color: #fff;
}
.with-nav-tabs.panel-primary .nav-tabs > .open > a,
.with-nav-tabs.panel-primary .nav-tabs > .open > a:hover,
.with-nav-tabs.panel-primary .nav-tabs > .open > a:focus,
.with-nav-tabs.panel-primary .nav-tabs > li > a:hover,
.with-nav-tabs.panel-primary .nav-tabs > li > a:focus {
	color: #fff;
	background-color: #3071a9;
	border-color: transparent;
}
.with-nav-tabs.panel-primary .nav-tabs > li.active > a,
.with-nav-tabs.panel-primary .nav-tabs > li.active > a:hover,
.with-nav-tabs.panel-primary .nav-tabs > li.active > a:focus {
	color: #428bca;
	background-color: #fff;
	border-color: #428bca;
	border-bottom-color: transparent;
}
.with-nav-tabs.panel-primary .nav-tabs > li.dropdown .dropdown-menu {
    background-color: #428bca;
    border-color: #3071a9;
}
.with-nav-tabs.panel-primary .nav-tabs > li.dropdown .dropdown-menu > li > a {
    color: #fff;   
}
.with-nav-tabs.panel-primary .nav-tabs > li.dropdown .dropdown-menu > li > a:hover,
.with-nav-tabs.panel-primary .nav-tabs > li.dropdown .dropdown-menu > li > a:focus {
    background-color: #3071a9;
}
.with-nav-tabs.panel-primary .nav-tabs > li.dropdown .dropdown-menu > .active > a,
.with-nav-tabs.panel-primary .nav-tabs > li.dropdown .dropdown-menu > .active > a:hover,
.with-nav-tabs.panel-primary .nav-tabs > li.dropdown .dropdown-menu > .active > a:focus {
    background-color: #4a9fe9;
}
/********************************************************************/
/*** PANEL SUCCESS ***/
.with-nav-tabs.panel-success .nav-tabs > li > a,
.with-nav-tabs.panel-success .nav-tabs > li > a:hover,
.with-nav-tabs.panel-success .nav-tabs > li > a:focus {
	color: #3c763d;
}
.with-nav-tabs.panel-success .nav-tabs > .open > a,
.with-nav-tabs.panel-success .nav-tabs > .open > a:hover,
.with-nav-tabs.panel-success .nav-tabs > .open > a:focus,
.with-nav-tabs.panel-success .nav-tabs > li > a:hover,
.with-nav-tabs.panel-success .nav-tabs > li > a:focus {
	color: #3c763d;
	background-color: #d6e9c6;
	border-color: transparent;
}
.with-nav-tabs.panel-success .nav-tabs > li.active > a,
.with-nav-tabs.panel-success .nav-tabs > li.active > a:hover,
.with-nav-tabs.panel-success .nav-tabs > li.active > a:focus {
	color: #3c763d;
	background-color: #fff;
	border-color: #d6e9c6;
	border-bottom-color: transparent;
}
.with-nav-tabs.panel-success .nav-tabs > li.dropdown .dropdown-menu {
    background-color: #dff0d8;
    border-color: #d6e9c6;
}
.with-nav-tabs.panel-success .nav-tabs > li.dropdown .dropdown-menu > li > a {
    color: #3c763d;   
}
.with-nav-tabs.panel-success .nav-tabs > li.dropdown .dropdown-menu > li > a:hover,
.with-nav-tabs.panel-success .nav-tabs > li.dropdown .dropdown-menu > li > a:focus {
    background-color: #d6e9c6;
}
.with-nav-tabs.panel-success .nav-tabs > li.dropdown .dropdown-menu > .active > a,
.with-nav-tabs.panel-success .nav-tabs > li.dropdown .dropdown-menu > .active > a:hover,
.with-nav-tabs.panel-success .nav-tabs > li.dropdown .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #3c763d;
}
/********************************************************************/
/*** PANEL INFO ***/
.with-nav-tabs.panel-info .nav-tabs > li > a,
.with-nav-tabs.panel-info .nav-tabs > li > a:hover,
.with-nav-tabs.panel-info .nav-tabs > li > a:focus {
	color: #31708f;
}
.with-nav-tabs.panel-info .nav-tabs > .open > a,
.with-nav-tabs.panel-info .nav-tabs > .open > a:hover,
.with-nav-tabs.panel-info .nav-tabs > .open > a:focus,
.with-nav-tabs.panel-info .nav-tabs > li > a:hover,
.with-nav-tabs.panel-info .nav-tabs > li > a:focus {
	color: #31708f;
	background-color: #bce8f1;
	border-color: transparent;
}
.with-nav-tabs.panel-info .nav-tabs > li.active > a,
.with-nav-tabs.panel-info .nav-tabs > li.active > a:hover,
.with-nav-tabs.panel-info .nav-tabs > li.active > a:focus {
	color: #31708f;
	background-color: #fff;
	border-color: #bce8f1;
	border-bottom-color: transparent;
}
.with-nav-tabs.panel-info .nav-tabs > li.dropdown .dropdown-menu {
    background-color: #d9edf7;
    border-color: #bce8f1;
}
.with-nav-tabs.panel-info .nav-tabs > li.dropdown .dropdown-menu > li > a {
    color: #31708f;   
}
.with-nav-tabs.panel-info .nav-tabs > li.dropdown .dropdown-menu > li > a:hover,
.with-nav-tabs.panel-info .nav-tabs > li.dropdown .dropdown-menu > li > a:focus {
    background-color: #bce8f1;
}
.with-nav-tabs.panel-info .nav-tabs > li.dropdown .dropdown-menu > .active > a,
.with-nav-tabs.panel-info .nav-tabs > li.dropdown .dropdown-menu > .active > a:hover,
.with-nav-tabs.panel-info .nav-tabs > li.dropdown .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #31708f;
}
/********************************************************************/
/*** PANEL WARNING ***/
.with-nav-tabs.panel-warning .nav-tabs > li > a,
.with-nav-tabs.panel-warning .nav-tabs > li > a:hover,
.with-nav-tabs.panel-warning .nav-tabs > li > a:focus {
	color: #8a6d3b;
}
.with-nav-tabs.panel-warning .nav-tabs > .open > a,
.with-nav-tabs.panel-warning .nav-tabs > .open > a:hover,
.with-nav-tabs.panel-warning .nav-tabs > .open > a:focus,
.with-nav-tabs.panel-warning .nav-tabs > li > a:hover,
.with-nav-tabs.panel-warning .nav-tabs > li > a:focus {
	color: #8a6d3b;
	background-color: #faebcc;
	border-color: transparent;
}
.with-nav-tabs.panel-warning .nav-tabs > li.active > a,
.with-nav-tabs.panel-warning .nav-tabs > li.active > a:hover,
.with-nav-tabs.panel-warning .nav-tabs > li.active > a:focus {
	color: #8a6d3b;
	background-color: #fff;
	border-color: #faebcc;
	border-bottom-color: transparent;
}
.with-nav-tabs.panel-warning .nav-tabs > li.dropdown .dropdown-menu {
    background-color: #fcf8e3;
    border-color: #faebcc;
}
.with-nav-tabs.panel-warning .nav-tabs > li.dropdown .dropdown-menu > li > a {
    color: #8a6d3b; 
}
.with-nav-tabs.panel-warning .nav-tabs > li.dropdown .dropdown-menu > li > a:hover,
.with-nav-tabs.panel-warning .nav-tabs > li.dropdown .dropdown-menu > li > a:focus {
    background-color: #faebcc;
}
.with-nav-tabs.panel-warning .nav-tabs > li.dropdown .dropdown-menu > .active > a,
.with-nav-tabs.panel-warning .nav-tabs > li.dropdown .dropdown-menu > .active > a:hover,
.with-nav-tabs.panel-warning .nav-tabs > li.dropdown .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #8a6d3b;
}
/********************************************************************/
/*** PANEL DANGER ***/
.with-nav-tabs.panel-danger .nav-tabs > li > a,
.with-nav-tabs.panel-danger .nav-tabs > li > a:hover,
.with-nav-tabs.panel-danger .nav-tabs > li > a:focus {
	color: #a94442;
}
.with-nav-tabs.panel-danger .nav-tabs > .open > a,
.with-nav-tabs.panel-danger .nav-tabs > .open > a:hover,
.with-nav-tabs.panel-danger .nav-tabs > .open > a:focus,
.with-nav-tabs.panel-danger .nav-tabs > li > a:hover,
.with-nav-tabs.panel-danger .nav-tabs > li > a:focus {
	color: #a94442;
	background-color: #ebccd1;
	border-color: transparent;
}
.with-nav-tabs.panel-danger .nav-tabs > li.active > a,
.with-nav-tabs.panel-danger .nav-tabs > li.active > a:hover,
.with-nav-tabs.panel-danger .nav-tabs > li.active > a:focus {
	color: #a94442;
	background-color: #fff;
	border-color: #ebccd1;
	border-bottom-color: transparent;
}
.with-nav-tabs.panel-danger .nav-tabs > li.dropdown .dropdown-menu {
    background-color: #f2dede; /* bg color */
    border-color: #ebccd1; /* border color */
}
.with-nav-tabs.panel-danger .nav-tabs > li.dropdown .dropdown-menu > li > a {
    color: #a94442; /* normal text color */  
}
.with-nav-tabs.panel-danger .nav-tabs > li.dropdown .dropdown-menu > li > a:hover,
.with-nav-tabs.panel-danger .nav-tabs > li.dropdown .dropdown-menu > li > a:focus {
    background-color: #ebccd1; /* hover bg color */
}
.with-nav-tabs.panel-danger .nav-tabs > li.dropdown .dropdown-menu > .active > a,
.with-nav-tabs.panel-danger .nav-tabs > li.dropdown .dropdown-menu > .active > a:hover,
.with-nav-tabs.panel-danger .nav-tabs > li.dropdown .dropdown-menu > .active > a:focus {
    color: #fff; /* active text color */
    background-color: #a94442; /* active bg color */
}