/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 .upgrade-dialog-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.upgrade-dialog-box {
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	width: 70%;
	position: relative;
	max-height: 90vh;
	overflow-y: auto;
}

.close-upgrade-dialog {
	position: absolute;
	top: 10px;
	right: 20px;
	font-size: 24px;
	cursor: pointer;
}


.upgrade-container {
    margin-bottom: 20px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
  }

  .upgrade-container .icon {
    font-size: 48px;
    color: #ff9800;
  }

  .upgrade-container h2 {
    font-size: 24px;
    margin: 0 0 10px;
    color: #333;
  }

  .upgrade-container p {
    font-size: 16px;
    color: #666;
  }

.wpee-lr-tab .wpee-lr-tab-title {
    width : 100% !important;
    background-color : #E5E5E5 !important;
}

.wpee-custom-register-form {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 85;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0);
}
.wpee-custom-register-form.is-open{
    transform: scaleY(1);
}
.wpee-custom-register-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color: rgb(0 0 0 / 85%);
    opacity: 0;
    transform: scale(0.90);
    transition: all 400ms ease-in-out;
    visibility: hidden;
}

.wpee-custom-register-form.is-open,
.wpee-custom-register-form.is-open::after,
.wpee-custom-register-form.is-open .wpee-register-form-wrap{
    opacity: 1;
    visibility: visible;
}
.wpee-custom-register-form.is-open .wpee-register-form-wrap{
    transform: translateY(0);
}
.wpee-custom-register-form.is-open::after{
    transform: scale(1);
}

.wpee-custom-register-form form input[type="submit"] {
    height: 50px;
    border: 1px solid #DF1756;
    background-color: #DF1756;
    padding: 12px 45px;
    font-size: 16px;
}

.wpee-custom-register-form form input[type="submit"]:hover {
    color:  #DF1756;
    background-color: transparent;
}

 .total-sub-price{
    font-size: 16px !important;
 }