.left{
    padding-right: 40px;
}
.left .cart{
    margin-top: 30px;
}
.left .cart .header p{
    border-bottom: 1px solid #b9b5b5;
    font-weight: 600;
    font-size: 16px;
    padding-bottom: 9px;
    margin-bottom: 24px;
}
.left .cart .body h2{
    font-size: 23px;
    margin-bottom: 20px;
}
.left .cart .body .packages p{
    margin-bottom: 0px;
}
.left .cart .body .item{
    margin-bottom: 25px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 20px;
}
.left .cart .body .item:last-of-type{
    border-bottom: 0px solid;
    margin-bottom: 0px;
}
.left .cart .item .action{
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: end;
}
.left .cart .item .action input{
    width: 90px;
    height: 30px;
}
.left .cart .item .action span:first-child{
    font-weight: 900;
}
.left .cart .item .action span:last-child{
    color: var(--hover-color);
}


.right{
    background: #f1f1f1;
    border: 1px solid #e2e2e2;
    color: black;
    padding: 0px;
    border-radius: 8px;
    margin-top: 60px;
}
.right .coupon{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
.right .coupon p{
    margin-bottom: 0px;
}
.right .coupon div{
    display: flex;
    gap: 6px;
}
.right .coupon div .input{
    border-radius: 2px;
}
.right .coupon div button{
    background: black;
    color: white;
    border-radius: 5px;
}
.right .summary{
    margin-top: 25px;
    padding: 20px;
    padding-top: 0px;
}
.right .summary p{
    margin-bottom: 0px;
    display: flex;
    justify-content: space-between;
}
.right .summary p.total{
    font-size: 20px;
    color: var(--primary-bg);
    margin-top: 10px;
    padding-top: 9px;
    font-weight: 800;
    margin-bottom: 0px;
    border-top: 1px solid #cacaca;
}

.right .steps{
    display: none;
}
.right .steps .header{
    background: black;
    color: white;
    font-size: 18px;
    display: flex;
    padding: 0;
    justify-content: space-between;
}
.right .steps .header span{
    padding: 18px;
}
.right .steps .header span span{
    cursor: pointer;
}
.right .steps .header span.nav{
    background-color: #d1d1d1;
    color: black;
}
.right .steps .body{
    padding: 20px;
}
.right .steps input,
.right .steps button{
    border-radius: 2px;
}
.right .steps a{
    color: var(--hover-color);
}
.right .steps button:hover,
.right .steps a.btn:hover{
    background: #282828;
}
.right .steps h3{
    font-size: 18px;
    color: white;
}
.right .steps .register h4{
    font-size: 18px;
}
.right .steps .register label{
    font-size: 15px;
}
.right .steps div.step-buttons{
    display: flex;
    justify-content: space-between;
}
.right .steps .register p{
    font-size: 13px;
}
.right .steps .payments .row .col-7 label{
    font-size: 15px;
}
.right .steps .payments .row .col-5{
    display: flex;
    justify-content: end;
}
.right .steps .payments .row .col-5 input{
    width: 88px;
    font-size: 13px;
    height: 25px;
    margin-left: 10px;
}
.right .steps .methods .method{
    background: white;
    padding: 10px 15px;
}
.right .steps .methods .method a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: black;
    text-decoration: none;
}
.right .steps .methods .method a.active p i{
    color: green
}
.right .steps .methods .method a p{
    margin-bottom: 0px;
    font-weight: 600;
}
.right .steps .methods .method a p i{
    color: #e5e5e5;
    margin-right: 5px;
}
.right .steps .methods .method a img{
    width: 80px;
}

@media only screen and (max-width: 767px){
    .left {
        padding-right: 12px;
    }
}
@media only screen and (max-width: 512px){
    .right {
        margin-bottom: -40px;
        margin-top: 0px;
    }
}

.form.card-form{
    background: #ededed;
    padding: 10px;
}


/* course carousel area start */

.course-carousel .swiper-wrapper{
    height: auto;
}
.course-carousel .swiper-wrapper .swiper-slide{
    border: none;
    height: fit-content;
}
.course-carousel .swiper-wrapper .swiper-slide a{
    text-decoration: none;
}
.course-carousel .swiper-wrapper .swiper-slide img{
    width: 100%;
}
.course-carousel .swiper-wrapper .swiper-slide h2{
    font-size: 18px;
    text-align: center;
    color: black;
    margin-top: 15px;
    font-weight: 500;
    letter-spacing: 0.4px;
}
.course-carousel .swiper-pagination-bullet-active{
    background: var(--hover-color);
}
.course-carousel h2.button{
    text-align: center;
    margin: 0;
    margin-top: 30px;
}
.course-carousel h2.button a{
    text-decoration: none;
    color: black;
    text-transform: uppercase;
    font-weight: 900;
}
.course-carousel h2.button a i{
    margin-top: -17px;
    vertical-align: middle;
    color: var(--primary-bg);
    font-size: 22px;
}

@media only screen and (max-width: 1024px){
    .course-carousel {
        padding: 0px 39px;
    }
}
@media only screen and (max-width: 767px){
    .course-carousel {
        padding: 0px 29px;
    }
    .course-carousel .swiper-button-prev:after, 
    .course-carousel .swiper-button-next:after{
        font-size: 24px;
    }
    .course-carousel h2.button a{
        font-size: 20px;
    }
}