@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a,button{
    transition: all 0.4s ease-in-out;
}
:root{
    --primary--color: #1d38c6;
    --secondary--color: #333;
    --text-color: #555;
    --white-color: #fff;
}
h1,h2,h3,h4,h5,h6{
    font-family: "Inter", sans-serif;
}
body{
    font-size: 16px;
    /* font-weight: 300; */
    color: var(--text-color);
    font-family: "Inter", sans-serif !important;
}
/* BANNER SECTION */
.banner-con{
    width: 100%;
    float: left;
    padding: 120px 0 124px;
    background: url(../images/banner-img.jpg) no-repeat center;
    background-size: cover;
}
.banner-title {
    width: 50%;
}
.banner-title h1{
    font-size: 60px;
    font-weight: 800;
    line-height: 72px;
    margin-bottom: 15px;
    color: var(--white-color);
}
.banner-title ul{
    list-style: none;
    margin-bottom: 37px;
}
.banner-title ul li {
    font-size: 18px;
    line-height: 24px;
    padding-left: 41px;
    margin-bottom: 12px;
    color: var(--white-color);
    background: url(../images/check-icon.png) no-repeat top left;
}
.banner-title ul li:last-child{
    margin-bottom: 0;
}
.started-btn a {
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    line-height: 18px;
    display: inline-block;
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 20px 37px;
}
.started-btn a:hover{
    color: var(--secondary--color);
    background: var(--white-color);
}
/* BANNER SECTION */
/*  CHECKOUT SECTION */
.checkout-outer-box {
    width: 100%;
    float: left;
}
.checkout-box {
    gap: 30px;
    display: grid;
    grid-template-columns: 65.766% 31.5%;
}

.checkout-title{
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    padding: 18px 30px;
    color: var(--white-color);
    background: var(--primary--color);
}
.form-con input[type=email][required]:valid + label{
	display:none;
}
.checkout-generic-box{
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid #e0e2eb;
}
.special-txt{
    font-weight: 700;
    margin-bottom: 31px;
    font-size: 18px;
    line-height: 22px;
    display: inline-block;
    color: var(--secondary--color);
}
.domain-box ul{
    list-style: none;
}
.domain-box ul li input[type="radio"]:checked,
.domain-box ul li input[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.domain-box ul li input[type="radio"]:checked + label,
.domain-box ul li input[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 34px;
    cursor: pointer;
    display: inline-block;
	line-height: 28px;
}
.domain-box ul li input[type="radio"]:checked + label:before, .domain-box ul li input[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 18px;
    height: 18px;
    border: 1px solid var(--primary--color);
    border-radius: 100%;
    background: #fff;
    transform: translateY(-50%);
}
.order-box {
    position: sticky;
    top: 40px;
}
.domain-box ul li input[type="radio"]:checked + label:after,
.domain-box ul li input[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--primary--color);
    position: absolute;
       top: 8px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.order-inner-title h4 {
    font-size: 18px;
    margin-bottom: 30px;
}
.domain-box ul li input[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.domain-box ul li input[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.domain-box ul{
    margin-bottom: 35px;
}
.domain-box ul li{
    margin-bottom: 20px;
}
.domain-box ul li:last-child{
    margin-bottom: 0;
}
.domain-input-con {
    gap: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 36px;
}
.domain-input-con small {
    font-weight: 400;
    font-size: 16px;
    display: inline-block;
    color: var(--primary--color);
}
.domain-input input::placeholder{
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: var(--secondary--color);
}
.domain-input {
    width: 70%;
    padding: 14px;
    border-radius: 4px;
    border: 1px solid var(--primary--color);
    box-shadow: 20px 20px 20px rgb(88 95 133 / 10%);
    display: flex;
    align-items: center;
    height: 60px;
}

.domain-input input{
    border: none;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: var(--secondary--color);
}
.modal {
    background: rgb(0 0 0 / 80%);
  }
.modal-header button.modal-close {
    outline: none;
    border: 1px solid var(--primary--color);
    background: var(--primary--color);
    width: 30px;
    height: 30px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    opacity: 1;
    color: #fff;
}
.modal-header button.modal-close:hover{
	background: #fff;
	color: var(--primary--color);
}
.modal-header button.modal-close span{
    font-size: 21px;
    margin-top: -3px;
}
.modal-title {
    color: #000;
    font-size: 18px;
    font-weight: 600;
}
.modal-body select {  
    width: 100%;
    font-size: 14px;
    padding: 10px 10px;
    border-radius: 4px;
    border: 1px solid #e0e2eb;
    color: #000;
    text-indent: 0;
}
.modal-footer .whmcs-product-domain {
    color: var(--white-color);
    background: var(--primary--color) !important;
    border-bottom: 4px;
    border-color: var(--primary--color) !important;
    padding: 12px 20px 14px;
    font-size: 14px;
    line-height: 14px;
}
.modal-footer button.btn{
	height: 46px;
	line-height: 18px;
}
.checkout-box .modal-dialog {
	width:100%;
    margin: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.modal-footer .modal-close{
	    color: var(--white-color);
    background: #000;
    border-bottom: 4px;
    border-color: #000;
    padding: 12px 20px 14px;
    font-size: 14px;
    line-height: 14px;
}
.modal-dialog {
    margin: 12.75rem auto;
}
.checkout-box input:focus,
.checkout-box button:focus,
.checkout-box select:focus{
	border: 1px solid var(--primary--color) !important;
}
.checkout-box .domain-input-con input:focus,
.checkout-box .domain-input-con select:focus{
	border: 0 !important;
}
.checkout-box .checkout-generic-box h4{
	font-size:18px !important;
}
.checkout-box .plus-icon a{
	height: 18px;
    width: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
	border: 1px solid var(--primary--color)
}
.checkout-box .plus-icon a i.fa-plus{
	color: var(--primary--color);
	background: transparent;
}
.checkout-box .plus-icon a i.fa-check{
	color: #fff;
	background: var(--primary--color);
}
.checkout-box .plus-icon a:hover, .checkout-box .plus-icon a:focus{
	text-decoration: none;
	outline: none;
}
.input-group.login-info {
    flex-direction: column;
}
.login-client-info {
    display: grid;
    grid-template-columns: 50% 50%;
}
.checkout-box .btn{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 46px;
}
.checkout-box .btn.btn-danger.logout{
	width: 120px;
}
.checkout-box .btn.btn-danger.logout:focus{
	border: 1px solid red;
}
.checkout-box .input-group.login-info .btn{
	width: 120px;
}
.domain-input select {
  border: none;
  width: 40%;
  font-size: 18px;
  line-height: 18px;
  color: var(--text-color);
  appearance: none;
  background: url(../images/down-angle.png) no-repeat 97% 50%;
  text-indent: 0;
}
.domain-input input:focus,
.domain-input select:focus{
    outline: none;
}
.domain-input-con button{
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    line-height: 18px;
    border-radius: 4px;
    padding: 21px 21px;
    color: var(--white-color);
    background: var(--primary--color);
}
.domain-input-con button:hover,
.promo-code button:hover,
.place-order-btn a:hover{
    background: transparent;
    box-shadow: 0 0 0px 1px var(--primary--color);
    color: var(--primary--color);
}
.domain-input-con button:focus{
	outline: none !important;
}
.domain-table {
    width: 100%;
    text-align: left;
    border-spacing: 0; 
    border-collapse: separate;
}
.domain-table thead tr th {
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    background: #eff0f5;
    padding: 18px 12px;
    color: var(--secondary--color);
}
.domain-table thead tr th:first-child,
.domain-table tbody tr td:first-child{
    border-radius: 4px 0 0 4px;
}
.domain-table tbody tr:nth-child(even) td:first-child{
    font-size: 16px;
    font-weight: 600;
    border-left: 1px solid #e0e2eb;
}
.domain-table tbody tr:nth-child(even) td:last-child{
    padding-left: 0;
    border-right: 1px solid #e0e2eb;
}
.domain-table thead tr th:last-child,
.domain-table tbody tr td:last-child{
    border-radius: 0 4px 4px 0;
} 
.domain-table tbody tr:nth-child(even) td{
    padding: 19px 12px;
    color: var(--secondary--color);
    border-top: 1px solid #e0e2eb;
    border-bottom: 1px solid #e0e2eb;
}
.domain-table tbody tr td:nth-child(3){
    padding-right: 10px;
}
.domain-table tbody tr:nth-child(odd) td {
    height: 11px;
}
.select-period {
    font-size: 14px;
    font-weight: 600;
    line-height: 14px;
    border-radius: 4px;
    width: 178px;
    padding: 11px 14px 12px;
    border: 1px solid #e0e2eb;
    color: var(--secondary--color);
    appearance: none;
	text-indent: 0;
    background: url(../images/down-angle.png) no-repeat 91% 50%;
}
.select-period:focus{
    outline: none;
}
.domin-btn a {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    border-radius: 4px;
    padding: 13px 17px 14px 18px;
    width: 121px;
    text-align: center;
}
.cart-btn a{
    color: var(--primary--color);
    border: 1px solid var(--primary--color);
}
.cart-btn a:hover,.plan-btn a:hover{
    color: var(--white-color);
    background: var(--primary--color);
}
.whois-btn a{
    color: #c61d1d;
    border: 1px solid #c61d1d;
}
.whois-btn a:hover{
    background: #c61d1d;
    color: var(--white-color);
}
.domain-table tbody tr td.not-available{
    color: #c61d1d;
}
.domain-table tbody tr td.available{
    color: #10a825;
}
.plan-box {
    padding: 30px 24px;
    border-radius: 4px;
    border: 1px solid #e0e2eb;
}
.plan-box h3{
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 21px;
    text-align: center;
    color: var(--secondary--color);
}
.select_value {
    width: 100%;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    padding: 16px 14px;
    border-radius: 4px;
    margin-bottom: 26px;
    color: var(--secondary--color);
    border: 1px solid #e0e2eb;
    appearance: none;
    background: url(../images/down-angle.png) no-repeat 94% 19px;
    display: block;
}
.select_menu_con {
    position: relative;
}
.plan-box ul.select_menu li{
    padding: 0;
    margin-bottom: 10px;
}
.plan-box ul.select_menu li span,
.select_value span
{
    color: var(--primary--color);
}
.plan-box select:focus{
    outline: none;
}
.plan-box ul {
    margin-bottom: 26px;
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}
.plan-box ul li {
    position: relative;
    margin-bottom: 16px;
    padding-left: 23px;
    padding-right: 13px;
}

ul.select_menu {
    position: absolute;
    margin-bottom: 0 !important;
    top: 44px;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 5px rgb(0 0 0 / 47%);
    z-index: 1;
    border-radius: 4px;
    padding: 14px 16px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
}
.plan-box > ul li:after {
    left: 0;
    top: 1px;
    font-size: 12px;
    content: "\f00c";
    font-weight: 700;
    position: absolute;
    color: var(--primary--color);
    font-family: "Font Awesome 5 free";
}
.plan-box ul li:last-child{
    margin-bottom: 0;
}
.plan-box ul li span{
    font-weight: 700;
}
.plan-slider {
    width: 89.824%;
    margin: 0 auto;
}
.plan-btn input{
    text-decoration: none;
    display: inline-block;
    border: 1px solid var(--primary--color);
    color: var(--primary--color);
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    width: 100%;
    text-align: center;
    border-radius: 4px;
	    background: transparent;
    padding: 16px 10px;
}
.plan-btn input:hover{
	background: var(--primary--color);
	color: #fff;
	cursor: pointer;
}
.checkout-box .plan-slider .owl-nav button:focus,
.checkout-box .plan-slider .owl-dots button:focus{
	outline: none !important;
	border: none !important;
}
.plan-box2{
    border-color: var(--primary--color);
}
.plan-btn2 a{
    color: var(--white-color);
    background: var(--primary--color);
}
.plan-slider .owl-theme .owl-dots .owl-dot span{
    width: 14px;
    height: 14px;
    margin: 0 3px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--primary--color);
}
.plan-slider .owl-theme .owl-dots .owl-dot.active span,
.plan-slider .owl-theme .owl-dots .owl-dot:hover span{
    background: var(--primary--color);
}
.plan-slider .owl-theme .owl-nav [class*=owl-] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}
.plan-slider .owl-prev{
    left: -34px;
}
.plan-slider .owl-next{
    right: -34px;
}
.plan-slider .owl-theme .owl-nav [class*=owl-]:hover{
    background: transparent;
}
.plan-slider .owl-carousel .owl-stage-outer{
    margin-bottom: 35px;
}
.service-con > span{
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    display: inline-block;
    margin-bottom: 20px;
    color: var(--secondary--color);
}
.service-box {
    list-style: none;
}
.service-box ul{
	padding-left: 0;
}
.service-box li{
    padding: 30px;
    border-radius: 4px;
    border: 1px solid #e0e2eb;
}
.service-item-top {
    display: flex;
    justify-content: space-between;
}
.service-item-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.service-item-title h6{
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
	margin-bottom: 0;
    color: var(--secondary--color);
}
.service-free-txt span{
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    padding-right: 32px;
    display: inline-block;
    color: var(--secondary--color);
}
.service-free-txt span small{
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    color: var(--primary--color);
}
.service-free-txt {
    position: relative;
}
/* .service-free-txt:after{
    top: 0;
    right: 0;
    font-weight: 700;
    content: "\f067";
    position: absolute;
    font-family: "Font Awesome 5 free";
} */
/* .service-box li:first-child .service-free-txt:after{
    content: "\f00c";
    color: var(--white-color);
    background: var(--primary--color);
} */
/* .service-free-txt:after {
    top: 1px;
    right: 0;
    font-weight: 700;
    content: "\f067";
    position: absolute;
    font-family: "Font Awesome 5 free";
    width: 18px;
    height: 18px;
    color: var(--primary--color);
    border-radius: 50%;
    border: 1px solid var(--primary--color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
} */
.service-box li:last-child{
    margin-bottom: 0;
}
.service-box li{
    margin-bottom: 15px;
}
.service-box li p{
    font-size: 14px;
    line-height: 24px;
}
.login-con{
    padding: 25px 30px 40px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid var(--primary--color);
    margin-bottom: 30px;
}
.login-con span,
.login-link span{
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    /* margin-bottom: 27px; */
    display: inline-block;
    color: var(--secondary--color);
}
.login-con > span a,
.login-link > span a{
    text-decoration: none;
    display: inline-block;
    color: var(--primary--color);
	margin-bottom: 0 !important;
}
.login-link{
	text-align: center;
}
.facebook-btn{
    color:#fff; 
    background: #2e77ef;
}
.facebook-btn:hover{
    background: #09499b;
}
.google-btn{
    color: var(--secondary--color);
    border: 1px solid #e0e2eb;
}
.google-btn:hover{
    border-color: #eee;
    background: #eee;
}

.login-btn a img {
    position: absolute;
    left: 40px;
    top: 14px;
}
.login-btn a {
    position: relative;
    font-size: 16px;
    line-height: 16px;
    display: inline-block;
    border-radius: 4px;
    text-decoration: none;
    padding: 17px 46px 17px 78px;
}
.login-btn {
    gap: 20px;
    display: flex;
    justify-content: center;
}
.form-con ul{
    list-style: none;
}
.form-con input,.form-con select{
    width: 100%;
    font-size: 16px;
    line-height: 16px;
    padding: 18px 18px;
    border-radius: 4px;
    color: var(--text-color);
    border: 1px solid #e0e2eb;
}
.form-con input + label {
    left: 20px;
    top: 20px;
    cursor: text;
    position: absolute;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    color: var(--text-color);
}
.form-con input[required] + label:after {
    content:'*';
    color: var(--primary--color);
}
.form-con input[required]:invalid + label {
    display: inline-block;
}
.form-con ul li{
    position: relative;
}
.form-con input[required]:valid + label{
    display: none;
}
.form-con input:focus,
.form-con select:focus{
    outline: none;
    border-color: var(--primary--color);
}
.form-con select {
  appearance: none;
  background: url(../images/down-angle.png) no-repeat 97% 50%;
  height: 58px !important;
  text-indent: 0;
}
.form-con .contact-info select{
    appearance: none;
    background:url(../images/down-angle.png) no-repeat 91% 50%;
}
.form-con input::placeholder{
    font-size: 16px;
    line-height: 16px;
    color: var(--text-color);
}
.personal-info ul {
    margin-bottom: 10px;
    grid-template-columns: 49.2% 49.2%;
}
.contact-info ul{
    gap: 10px;
    display: grid;
    grid-template-columns: 31% 31% 31%;
}
form.form-con ul {
    display: grid;
    gap: 10px;
}
.contact-info ul {
    margin-top: 10px;
    margin-bottom: 10px;
    grid-template-columns: 32.3% 32.3% 32.3%;
}
.domain-box .payment-con{
    gap: 50px;
    display: flex;
    margin-bottom: 0;
}
.domain-box .payment-con li{
    margin-bottom: 0;
}
.note-check input {
    display: none;
}
.note-check{
    position: relative;
}  
.note-check label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid var(--primary--color);
    padding: 10px;
    display: inline-block;
    position: absolute;
    vertical-align: middle;
    cursor: pointer;
    top: 4px;
}
.note-check input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 6px;
    left: 8px;
    width: 6px;
    height: 14px;
    border: solid var(--primary--color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.note-check label span {
    padding-left: 43px;
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
}
.note-check label span a{
    font-weight: 700;
    text-decoration: none;
    color: var(--primary--color);
}
.note-check label span a:hover{
    color: var(--secondary--color);
}
.checkout-lft-box .checkout-generic-box:last-child{
    margin-bottom: 0;
}
.order-box .checkout-generic-box{
    margin-bottom: 0;
}
.order-box .checkout-generic-box ul {
    list-style: none;
    padding-left: 0;
}
.order-item-content {
    display: flex;
    justify-content: space-between;
}
.order-item h3
{
    font-size: 18px !important;
    line-height: 18px !important;
    font-weight: 700 !important;
    color: var(--secondary--color) !important;
}

.order-item h4,
.order-item h5{
    color: var(--secondary--color) !important;
}
.order-item h3 {
    margin-bottom: 16px;
}
.order-item h3 a{
    margin-left: 10px;
    display: inline-block;
    text-decoration: none;
}
.order-value{
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    text-align: end;
    color: var(--secondary--color);
}
.order-value small{
    display: block;
    font-size: 12px;
    line-height: 12px;
    font-weight: 300;
    padding-top: 7px;
    color: var(--text-color);
}
.order-item{
    position: relative;
}
.order-item .close-btn{
    top: 0;
    right: 0;
    border: none;
    cursor: pointer;
    position: absolute;
    background: transparent;
}
.order-item .close-btn:focus{
	border: 0 !important;
}
.order-item button i{
    font-size: 16px;
    color: var(--primary--color);
}
.order-box .checkout-generic-box > ul li{
    padding-bottom: 24px;
    margin-bottom: 18px;
    border-bottom: 1px solid #f5f5f8;
}
.shared-title h5{
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}
.order-item-content .service-free-txt:after{
    display: none;
}
.promo-code input{
    font-size: 16px;
    line-height: 16px;
    border-radius: 4px;
    color: var(--text-color);
    border: 1px solid #e0e2eb;
    padding: 13px 5px 13px;
	    width: 72%;
}
.login-link.whmcs-register a{
    margin-bottom: 16px;
    color: var(--primary--color);
    display: inline-block !important;
    font-weight: 600;
}
.whmcs-login-btn {
    padding: 7px 30px;
    background: var(--primary--color);
    border-color: var(--primary--color);
}
/* .plan-slider .owl-stage{
	display:flex;
} */
.login-info .whmcs-login-btn{
    text-align: center;
    margin: 20px auto 0;
}
.login-client-info span {
    display: block;
    margin-bottom: 20px;
}
.login-client-info h5 {
    font-size: 16px;
    color: var(--primary--color);
    margin-bottom: 10px;
}
.whmcs-login-fields input {
    color: var(--text-color) !important;
    border: 1px solid #e0e2eb;
    background: #fff;
    box-shadow: none !important;
	border-radius: 4px !important;
    font-size: 16px;
    line-height: 16px;
    padding: 18px 18px;
}
.whmcs-login-fields .input-group-text {
    background: var(--primary--color);
    color: #fff;
    border: 0;
    border-radius: 0;
}
.whmcs-login-fields input:focus {
    border-color:var(--primary--color);
}
.promo-code input:focus{
    border-color: var(--primary--color);
}
.promo-code input:focus{
    outline: 1px solid #e0e2eb !important;
}
.promo-code{
    display: flex;
}
.promo-code button{
    border: none;
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
    margin-left: 10px;
    line-height: 14px;
    border-radius: 4px;
    padding: 14px 16px 15px;
    color: var(--white-color);
    background: var(--primary--color);
}
.checkout-box .order-item a{
	margin-left: 10px;
}
.total-price-box ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    justify-content: space-between;
}
.total-price-box ul li:last-child{
    margin-bottom: 0;
    padding-top: 14px;
}
.sub-total,.total-txt,.total-price{
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    color: var(--secondary--color);
}
.discount-price{
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    color: var(--secondary--color);
}
.total-price{
    color: var(--primary--color);
}
.place-order-btn a {
    width: 100%;
    font-size: 18px;
    line-height: 18px;
    padding: 20px 10px;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    color: var(--white-color);
    background: var(--primary--color);
}
.total-price-box ul{
    margin-bottom: 30px;
}
.footer-con{
    width: 100%;
    float: left;
    text-align: center;
    padding: 28px 0 29px;
    background: var(--primary--color);
}
.footer-con span{
    font-size: 14px;
    line-height: 14px;
    display: inline-block;
    color: var(--white-color);
}
.plan-btn {
    margin-top: 20px;
}
/*  CHECKOUT SECTION  */