

.notification {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 40px;
    display: none;
    position: fixed;
    top: 17%;
    right: 50px;
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    width: 300px;
    height: 60px;
    border-radius: 50px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}


.cards {
    width: 100%;
    padding: 50px 0;
    margin: 0;
    box-sizing: border-box;
}
.site_container {
    padding: 50px 100px;
    margin: auto;
}
.cards h2 {
    color: #000000;
    font-size: 50px;
    font-weight: 600;
    text-decoration: none;
    text-transform: capitalize;
    text-align: center;
    line-height: 80px;
}
.cards p {
    color: #0e0d0d;
    font-size: 22px;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    line-height: 30px;
}
.cards .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
}
.row .col-md-3 {
    display: grid;
    align-items: center;
    justify-content: center;
}

.row .col-md-3 a:hover img {
    transform: scale(1.1);
}

.row .col-md-3 img {
    margin: 0px 0px 20px 0px;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

/* Basic reset */
/* * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    height: 100%;
} */
/* Sub-header styles */
.sub-header {
    width: 100%;
    height: 60px;
    background-color: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 120px;
}

.sub-header a {
    margin: 0 15px;
    color: black;
    text-decoration: none;
    font-size: 16px;
    line-height: 80px;
}

/* Responsive styling for smaller screens */

/* Sidebar styles */

.list-group.panel > .list-group-item {
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px
  }

.sidebar {
    /* height: calc(100% - 80px); */
    width: 250px;
    position: absolute;
    top: 300px;
    left: 50px;
    background-color: #FFFFFF;
    overflow-y: auto;
    padding-top: 20px;
    z-index: 1;
}
.sidebar-top {
    padding: 0px 15px;
}

.sidebar-subheading {
    margin-bottom: 10px;
    color: #000000;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 40px;
}

.sidebar-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    border: none;
    cursor: pointer;
}
.sidebar-button .free {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: capitalize;
    line-height: 30px;
    padding: 5px 15px 5px 15px;
    background-color: #FFFFFF;
    border-radius: 5px;
    border: 1px solid #cfd9e0;
}
.sidebar-button .premium {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: capitalize;
    line-height: 30px;
    padding: 5px 35px 5px 35px;
    background-color: #FFFFFF;
    border-radius: 5px;
    border: 1px solid #cfd9e0;
}

.sidebar-button.premium img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.menu_list {
    list-style-type: none;
    padding: 0;
    /* border: 1px solid #555; */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);

}
/* .menu_list .sub_menu_list {
    border-bottom: 1px solid #555;
} */
.menu_list .sub_menu_list .accordion {
    background-color: #f1f1f1;
    color: black;
    padding: 10px;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu_list .sub_menu_list .accordion a {
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    text-transform: capitalize;
    line-height: 30px;
    color: #000;
}
.menu_list .sub_menu_list .accordion span {
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    text-transform: capitalize;
    line-height: 30px;
    color: #000;
}

.menu_list .sub_menu_list .accordion .active {
    background-color: #bb473e;
    color: white;
}
.sub_menu_list .sub_menu_li {
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
}
.sub_menu_list .sub_menu_li a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 30px;
}
.menu_list .panel {
    display: none;
    background-color: white;
    overflow: hidden;
    transition: 0.4s;
}
.sub_menu_list .sub_menu_ul {
    list-style-type: none;
    padding: 0;
}
/* .sidebar-item {
    display: block;
    color: #000000 !important;
    text-decoration: none;
    border: 1px solid #cfd9e0;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
}

.accordion {
    background-color: #f2f2f2;
    color: #000000 !important;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

.active, .accordion:hover {
    background-color: #ddd;
}

.panel {
    display: none;
    background-color: #f9f9f9;
    overflow: hidden;
    padding: 0 18px;
}

.panel a {
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    transition: 0.3s;
    color: #000000;
}

.panel a:hover {
    background-color: #ddd;
    color: #000000;
} */

.main_content {
    margin-left: 60px;
    padding: 20px;
    margin-top: 20px;
}
.right_section {
    width: calc(100% - 250px);
    margin-left: 250px;
    padding: 20px;
    box-sizing: border-box;
}

.right_section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    text-decoration: none;
    line-height: 40px;
    margin-bottom: 10px;
    padding: 0 50px;
}

.content p {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    color: #000000;

}
.main_content .right_section .content ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
}
.main_content .right_section .content li {
    padding: 2px 10px;
    background-color: #000;
    color: #fff;
    border-radius: 4px;
    width: 150px;
    text-align: center;
}

.right_section .content li a {
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    text-transform: capitalize;
    line-height: 22px;
    text-wrap: nowrap;
    color: #fff;
}
.right_section .content ul span {
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-transform: capitalize;
    color: #fff;
    background-color: #000;
    width: 250px;
    height: 50px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
 }
.content p a {
    color: #000000;
}
.button-section {
    background-color: #F5F5F5;
    height: 80px;
    text-align: center;
    width: 350px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.button-section .regular {
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: capitalize;
    padding: 10px 15px;
    background-color: #000000;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
}
.button-section .animated {
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: capitalize;
    padding: 10px 15px;
    color: #000000;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.button-section button:hover {
    background-color: #555;
}

.main_content .right_section .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

.main_content .right_section .col-md-3 {
    display: grid;
    align-items: center;
    justify-content: center;
}
.line-container {
    position: relative;
    height: 20px; /* Adjust as needed */
    width: 50%;
    border-bottom: 2px solid #FF4C3B; /* Line color */
    margin: 30px auto;
}

.dot {
    position: absolute;
    top: 95%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.dot_text {
    position: absolute;
    top: 100%;
    transform: translateY(-50%);
    width: 80px;
    left: -25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 22px;
    color: #000;
    font-size: 13px;
}
.dot_text1 {
    position: absolute;
    top: 100%;
    transform: translateY(-50%);
    width: 80px;
    left: 46%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 22px;
    color: #000;
    font-size: 13px;
}
.dot_text2 {
    position: absolute;
    top: 100%;
    transform: translateY(-50%);
    width: 100px;
    right: -48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 22px;
    color: #000;
    font-size: 13px;
}

.dot.black {
    background-color: #FF4C3B;
    left: 50%;
}

.dot.red {
    background-color: #FF4C3B;
}

/* .dot.red:first-of-type {
    left: 25%;
} */

/* .dot.red:last-of-type {
    left: 50%;
} */

.dot.white {
    background-color: white;
    border: 1px solid #cfd9e0;
    right: -1%;
}

/* .dot.black:last-of-type {
    right: 0;
} */

.two-aside-section {
    display: flex;
    width: 100%;
    /* align-items: center; */
    justify-content: space-between;
    padding: 60px 190px;
}

.left-aside {
    width: 66%;
    padding: 20px;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.left-aside h2 {
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    text-transform: capitalize;
}
form label {
    font-size: 14px;
}
.left-aside span {
    font-size: 14px;
}
.right-aside {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 32%;
}
.right-aside .top_side {
    width: 100%;
    padding: 15px;
    position: relative;
    height: 480px;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}
.right-aside .bottom_side {
    width: 100%;
    padding: 20px;
    position: relative;
    height: 400px;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-container img {
    width: 100%;
    height: auto;
}

.image-text {
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    text-align: center;
    padding: 5px;
}
.upload-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}
.upload-label {
    display: inline-block;
    color: #000000;
    border: 1px solid #000000;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 8px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.upload-label:hover {
    background-color: #000000;
    color: #FFFFFF;
}


.icon-text-container {
    display: flex;
    align-items: center;
    margin-top: 20px; /* Adjust spacing as needed */
}

.icon-text-container .icon {
    width: 50px; /* Adjust icon size as needed */
    margin-right: 15px; /* Space between icon and text */
}
/* Container */
/* .toggle {
    display: flex;
    align-items: center;
} */

/* Toggle Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 15px;
  margin-top: 7px;
  margin-right: 10px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: -1px;
  top: -3px;
  bottom: 0;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #FF4C3B;
}

input:focus + .slider {
  box-shadow: 0 0 1px #FF4C3B;
}

input:checked + .slider:before {
  transform: translateX(26px);
  background-color: #FF4C3B;
}
.delivery_input {
    padding: 15px 0;
}
.delivery_input .music_button {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    text-transform: capitalize;
    line-height: 40px;
    padding: 8px 25px 8px 25px;
    background: linear-gradient(0deg,#ff4c3b,#bb473e);
    border-radius: 5px;
    margin: 10px 0;
}
.delivery_input p {
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-transform: capitalize;
    line-height: 35px;
}

/* ... Rest of your CSS ... */
.modal .modal-dialog {
    max-width: 85%;
}
.music_thumbnail {
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-body .row {
    display: flex;
    justify-content: center;
}
.modal-body .row .col-md-3 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #EEFFF1;
    margin: 30px;
}

@keyframes pulseAnimation {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.modal-body .row .col-md-3.selected {
    border: 2px solid #FF4C3B;
}

.modal-body .row .col-md-3.playing img {
    animation: pulseAnimation 2s infinite;
}




.logofile {
    height: 50px;
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Toggle Text */
#toggle-text {
  margin-left: 10px;
}

.row {
    display: flex;
    justify-content: space-evenly;
}
.bordered-section {
    border: 2px solid #cfd9e0;
    padding: 20px;
    position: relative;
    margin: 20px;
    background: linear-gradient(180deg, #e2f1ff 0%, #fff 100%);
}
.selected {
    border-color: #FF4C3B;
}

.top-right-text {
    color: #FFFFFF;
    position: absolute;
    top: 0;
    right: 50px;
    transform: translate(50%, -50%);
    background-color: #FF4C3B;
    padding: 1px 10px;
    border-radius: 5px;
}

.true-false-list {
    list-style: none;
    padding: 0;
}

.true-false-list li {
    margin-bottom: 10px;
}

.bundle_credit {
    width: 80%;
    height: 40px;
    background-color: #F9F9F9;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
}
.bundle_credit p {
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    line-height: 30px;
}
.bundle_credit p a {
    color: #FF4C3B;
}

.pay_button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.pay_button .pay {
    color: #FFFFFF;
    background-color: #FF4C3B;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    line-height: 30px;
    margin: 10px;
    padding: 5px 35px 5px 35px;
    border-radius: 5px;
}
.pay_button .cansel {
    color: #FFFFFF;
    background-color: #000000;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    line-height: 30px;
    margin: 10px;
    padding: 5px 20px 5px 20px;
    border-radius: 5px;
}

.book {
    width: 200px;
    height: 300px;
    perspective: 1000px;
    margin: 50px;
}

.page {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: white;
    border: 1px solid black;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: transform 1s;
}

.page:nth-child(2) { transform: rotateY(0deg); }
.page:nth-child(3) { transform: rotateY(-180deg); }
/* Repeat for more pages, alternating the transform */


.content_area {
    margin: 40px auto;
    padding: 20px;
    background-color: white;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    /* border: 1px solid #3737; */
    width: 60%;
}
.content_area .copies {
    width: 100%;
    margin: auto;
    border: 1px solid #3737;
}
.content_area .copies h2 {
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: capitalize;
    line-height: 40px;
    border-bottom: 1px solid #3737;
}
.content_area .copies .col-md-12 h3 {
    font-size: 24px;
    font-weight: 400;
    text-decoration: none;
    text-transform: capitalize;
    line-height: 50px;
}
.content_area .copies .col-md-12 p {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}
.content_area .copies .col-md-12 .btn {
    width: 80px;
}
.content_area .copies .col-md-12 .input-group {
    padding: 20px 0;
}
.image_text_section {
    display: flex;
    align-items: center;
    margin: 20px 0;
    padding: 20px 0;
}
.image_text_section img {
    width: 70px;
    height: 70px;
}

.text_section {
    flex-grow: 1;
    margin-left: 20px;
}
.text_section .sub_heading {
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    text-transform: capitalize;
    line-height: 30px;
}
.text_section p {
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    line-height: 25px;
}
.content_area a {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: capitalize;
    line-height: 30px;
    padding: 10px 25px;
    color: #fff;
    background-color: #000;
    border-radius: 5px;
}


/* Responsive styling */
@media screen and (max-width: 600px) {
    .sub-header a {
        font-size: 14px;
        margin: 0 10px;
    }
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }
    .sidebar-item {
        float: left;
    }
    .accordion {
        display: block;
    }
    .right-section {
        width: 100%;
        margin-left: 0;
    }
    .row {
        flex-direction: column;
    }
    .column {
        margin-bottom: 10px;
    }
}



