.pricing {
    margin: 25px 0 40px;
}

.pricing_inner {
    display: flex;
    padding-bottom: 20px;
}

.swiper-scrollbar-drag {
    background: #CC5732;
}

.swiper-scrollbar {
    opacity: 1 !important;
    background: #CC573270;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    min-width: 275px;
    height: auto;
    padding: 35px 31px 35px 32px;
    background: #fff;
    border-radius: 8px;
    color: #000;
}

.pricing-card_title {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 147%;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-family: 'Noto Sans Regular', sans-serif;
    text-align: center;
}

.pricing-card_price {
    margin-bottom: 35px;
    font-family: 'Noto Sans Regular', sans-serif;
    font-size: 30px;
    line-height: 107%;
    text-align: center;
}

.pricing-card_price span {
    margin-right: 10px;
    font-size: 18px;
    line-height: 107%;
}

.pricing-card_list {
    flex: 1 1 auto;
}

.pricing-card_list ul {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin: 0 0 35px 0;
    padding: 0;
    font-family: 'Noto Sans Regular', sans-serif;
    font-size: 14px;
    line-height: 147%;
    list-style: none;
}

.pricing-card_list ul li {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-left: 30px;
    position: relative;
}

.pricing-card_list ul li:before {
    content: '';
    position: absolute;
    background-image: url('../../assets/images/check-mark.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 17px;
    height: 14px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.pricing-card_more {
    color: #ACACAC;
    text-decoration: underline;
}

.pricing-card_btn {
    max-width: 170px;
    width: 100%;
    margin: 0 auto;
    padding: 13px 28px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.hidden {
    display: none;
}

.show-more-btn {
    color: #ACACAC;
    cursor: pointer;
    margin-left: 5px;
}

.modalProductMoreInfo {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    overflow-y: scroll;
}

.modalProductMoreInfo-content {
    background-color: #FBFBFB;
    margin: 70px auto;
    padding: 25px 50px;
    border-radius: 8px;
    max-width: 1196px;
    width: 100%;
    color: #000;
    position: relative;
}

.modalProductMoreInfo-selected-name {
    margin-bottom: 15px;
    font-size: 18px;
    letter-spacing: 0.05em;
}

.modalProductMoreInfo-selected-price {
    margin-bottom: 25px;
    font-size: 30px;
    line-height: 107%;
    letter-spacing: 0.05em;
}

.modalProductMoreInfo-content-heading {
    display: block;
    margin-bottom: 17px;
    font-size: 16px;
    line-height: 147%;
    color: #000;
    letter-spacing: 0.05em;
    text-align: center;
}

.modalProductMoreInfo-content p {
    margin-bottom: 15px;
}

.modalProductMoreInfo-content p:last-child {
    margin-bottom: 0;
}

.modalProductMoreInfo-content ul {
    margin: 0;
    padding: 0 0 10px 0;
    list-style: none;
}

.modalProductMoreInfo-content ul:last-child {
    margin-bottom: 0;
}

.modalProductMoreInfo-content ul li {
    margin: 0;
    padding: 0;
    position: relative;
    font-weight: 600;
}

.modalProductMoreInfo-content ul li:before {
    content: '';
    position: absolute;
    background-image: url('../../assets/images/check-mark.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 17px;
    height: 14px;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
}

.close {
    float: right;
    font-size: 28px;
    cursor: pointer;
}

.modalProductMoreInfo form {
    display: flex;
    flex-direction: column;
    max-width: 438px;
    width: 100%;
    margin: 35px auto 0;
    padding: 25px 40px;
    background: #fff;
    border-radius: 8px;
}

.modalProductMoreInfo form h2 {
    margin-bottom: 45px;
    font-size: 16px;
    font-weight: 500;
    line-height: 147%;
    letter-spacing: 0.05em;
    text-align: center;
}

.modalProductMoreInfo form input {
    width: 100%;
    margin-bottom: 25px;
    padding: 10px;
    background: #EDEDED;
    border: 1px solid #CBCBCB;
    border-radius: 5px;
    outline: none;
    font-size: 12px;
    font-family: 'Noto Sans Regular', sans-serif;
    line-height: 147%;
    letter-spacing: 0.05em;
}

.modalProductMoreInfo form input:last-of-type {
    margin-bottom: 45px;
}

.modalProductMoreInfo form button {
    background-color: #CC5732;
    color: white;
    padding: 15px 37px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 5px;
    letter-spacing: 0.05em;
}

.modalProductMoreInfo form button:hover {
    background-color: #a3371c;
}

.modalProductMoreInfo .close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 35px;
    font-weight: 200;
    cursor: pointer;
    color: #484848;
}

.modalProductMoreInfo-selected {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #484848;
}

.modalProductMoreInfo-selected-name {
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .pricing_inner {
        padding-top: 15px;
    }
}